2 * linux/drivers/video/backlight/pwm_bl.c
4 * simple PWM based backlight control, board code has to setup
5 * 1) pin configuration so PWM waveforms can output
6 * 2) platform_data being correctly configured
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/delay.h>
14 #include <linux/gpio/consumer.h>
15 #include <linux/gpio.h>
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
21 #include <linux/backlight.h>
22 #include <linux/err.h>
23 #include <linux/pwm.h>
24 #include <linux/pwm_backlight.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/slab.h>
29 struct pwm_device *pwm;
31 unsigned int lth_brightness;
34 struct regulator *power_supply;
35 struct gpio_desc *enable_gpio;
38 unsigned int post_pwm_on_delay;
39 unsigned int pwm_off_delay;
40 int (*notify)(struct device *,
42 void (*notify_after)(struct device *,
44 int (*check_fb)(struct device *, struct fb_info *);
45 void (*exit)(struct device *);
48 static void pwm_backlight_power_on(struct pwm_bl_data *pb)
50 struct pwm_state state;
53 pwm_get_state(pb->pwm, &state);
57 err = regulator_enable(pb->power_supply);
59 dev_err(pb->dev, "failed to enable power supply\n");
62 pwm_apply_state(pb->pwm, &state);
64 if (pb->post_pwm_on_delay)
65 msleep(pb->post_pwm_on_delay);
68 gpiod_set_value_cansleep(pb->enable_gpio, 1);
73 static void pwm_backlight_power_off(struct pwm_bl_data *pb)
75 struct pwm_state state;
77 pwm_get_state(pb->pwm, &state);
82 gpiod_set_value_cansleep(pb->enable_gpio, 0);
84 if (pb->pwm_off_delay)
85 msleep(pb->pwm_off_delay);
87 state.enabled = false;
89 pwm_apply_state(pb->pwm, &state);
91 regulator_disable(pb->power_supply);
95 static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness)
97 unsigned int lth = pb->lth_brightness;
98 struct pwm_state state;
101 pwm_get_state(pb->pwm, &state);
104 duty_cycle = pb->levels[brightness];
106 duty_cycle = brightness;
108 duty_cycle *= state.period - lth;
109 do_div(duty_cycle, pb->scale);
111 return duty_cycle + lth;
114 static int pwm_backlight_update_status(struct backlight_device *bl)
116 struct pwm_bl_data *pb = bl_get_data(bl);
117 int brightness = bl->props.brightness;
118 struct pwm_state state;
120 if (bl->props.power != FB_BLANK_UNBLANK ||
121 bl->props.fb_blank != FB_BLANK_UNBLANK ||
122 bl->props.state & BL_CORE_FBBLANK)
126 brightness = pb->notify(pb->dev, brightness);
128 if (brightness > 0) {
129 pwm_get_state(pb->pwm, &state);
130 state.duty_cycle = compute_duty_cycle(pb, brightness);
131 pwm_apply_state(pb->pwm, &state);
132 pwm_backlight_power_on(pb);
134 pwm_backlight_power_off(pb);
136 if (pb->notify_after)
137 pb->notify_after(pb->dev, brightness);
142 static int pwm_backlight_check_fb(struct backlight_device *bl,
143 struct fb_info *info)
145 struct pwm_bl_data *pb = bl_get_data(bl);
147 return !pb->check_fb || pb->check_fb(pb->dev, info);
150 static const struct backlight_ops pwm_backlight_ops = {
151 .update_status = pwm_backlight_update_status,
152 .check_fb = pwm_backlight_check_fb,
156 #define PWM_LUMINANCE_SCALE 10000 /* luminance scale */
159 * CIE lightness to PWM conversion.
161 * The CIE 1931 lightness formula is what actually describes how we perceive
163 * Y = (L* / 902.3) if L* ≤ 0.08856
164 * Y = ((L* + 16) / 116)^3 if L* > 0.08856
166 * Where Y is the luminance, the amount of light coming out of the screen, and
167 * is a number between 0.0 and 1.0; and L* is the lightness, how bright a human
168 * perceives the screen to be, and is a number between 0 and 100.
170 * The following function does the fixed point maths needed to implement the
173 static u64 cie1931(unsigned int lightness, unsigned int scale)
178 if (lightness <= (8 * scale)) {
179 retval = DIV_ROUND_CLOSEST_ULL(lightness * 10, 9023);
181 retval = int_pow((lightness + (16 * scale)) / 116, 3);
182 retval = DIV_ROUND_CLOSEST_ULL(retval, (scale * scale));
189 * Create a default correction table for PWM values to create linear brightness
190 * for LED based backlights using the CIE1931 algorithm.
193 int pwm_backlight_brightness_default(struct device *dev,
194 struct platform_pwm_backlight_data *data,
197 unsigned int counter = 0;
202 * Count the number of bits needed to represent the period number. The
203 * number of bits is used to calculate the number of levels used for the
204 * brightness-levels table, the purpose of this calculation is have a
205 * pre-computed table with enough levels to get linear brightness
206 * perception. The period is divided by the number of bits so for a
207 * 8-bit PWM we have 255 / 8 = 32 brightness levels or for a 16-bit PWM
208 * we have 65535 / 16 = 4096 brightness levels.
210 * Note that this method is based on empirical testing on different
211 * devices with PWM of 8 and 16 bits of resolution.
219 data->max_brightness = DIV_ROUND_UP(period, counter);
220 data->levels = devm_kcalloc(dev, data->max_brightness,
221 sizeof(*data->levels), GFP_KERNEL);
225 /* Fill the table using the cie1931 algorithm */
226 for (i = 0; i < data->max_brightness; i++) {
227 retval = cie1931((i * PWM_LUMINANCE_SCALE) /
228 data->max_brightness, PWM_LUMINANCE_SCALE) *
230 retval = DIV_ROUND_CLOSEST_ULL(retval, PWM_LUMINANCE_SCALE);
231 if (retval > UINT_MAX)
233 data->levels[i] = (unsigned int)retval;
236 data->dft_brightness = data->max_brightness / 2;
237 data->max_brightness--;
242 static int pwm_backlight_parse_dt(struct device *dev,
243 struct platform_pwm_backlight_data *data)
245 struct device_node *node = dev->of_node;
246 unsigned int num_levels = 0;
247 unsigned int levels_count;
248 unsigned int num_steps = 0;
249 struct property *prop;
258 memset(data, 0, sizeof(*data));
261 * These values are optional and set as 0 by default, the out values
262 * are modified only if a valid u32 value can be decoded.
264 of_property_read_u32(node, "post-pwm-on-delay-ms",
265 &data->post_pwm_on_delay);
266 of_property_read_u32(node, "pwm-off-delay-ms", &data->pwm_off_delay);
268 data->enable_gpio = -EINVAL;
271 * Determine the number of brightness levels, if this property is not
272 * set a default table of brightness levels will be used.
274 prop = of_find_property(node, "brightness-levels", &length);
278 data->max_brightness = length / sizeof(u32);
280 /* read brightness levels from DT property */
281 if (data->max_brightness > 0) {
282 size_t size = sizeof(*data->levels) * data->max_brightness;
283 unsigned int i, j, n = 0;
285 data->levels = devm_kzalloc(dev, size, GFP_KERNEL);
289 ret = of_property_read_u32_array(node, "brightness-levels",
291 data->max_brightness);
295 ret = of_property_read_u32(node, "default-brightness-level",
300 data->dft_brightness = value;
303 * This property is optional, if is set enables linear
304 * interpolation between each of the values of brightness levels
305 * and creates a new pre-computed table.
307 of_property_read_u32(node, "num-interpolated-steps",
311 * Make sure that there is at least two entries in the
312 * brightness-levels table, otherwise we can't interpolate
313 * between two points.
316 if (data->max_brightness < 2) {
317 dev_err(dev, "can't interpolate\n");
322 * Recalculate the number of brightness levels, now
323 * taking in consideration the number of interpolated
324 * steps between two levels.
326 for (i = 0; i < data->max_brightness - 1; i++) {
327 if ((data->levels[i + 1] - data->levels[i]) /
329 num_levels += num_steps;
334 dev_dbg(dev, "new number of brightness levels: %d\n",
338 * Create a new table of brightness levels with all the
339 * interpolated steps.
341 size = sizeof(*table) * num_levels;
342 table = devm_kzalloc(dev, size, GFP_KERNEL);
346 /* Fill the interpolated table. */
348 for (i = 0; i < data->max_brightness - 1; i++) {
349 value = data->levels[i];
350 n = (data->levels[i + 1] - value) / num_steps;
352 for (j = 0; j < num_steps; j++) {
353 table[levels_count] = value;
358 table[levels_count] = data->levels[i];
362 table[levels_count] = data->levels[i];
365 * As we use interpolation lets remove current
366 * brightness levels table and replace for the
367 * new interpolated table.
369 devm_kfree(dev, data->levels);
370 data->levels = table;
373 * Reassign max_brightness value to the new total number
374 * of brightness levels.
376 data->max_brightness = num_levels;
379 data->max_brightness--;
385 static const struct of_device_id pwm_backlight_of_match[] = {
386 { .compatible = "pwm-backlight" },
390 MODULE_DEVICE_TABLE(of, pwm_backlight_of_match);
392 static int pwm_backlight_parse_dt(struct device *dev,
393 struct platform_pwm_backlight_data *data)
399 int pwm_backlight_brightness_default(struct device *dev,
400 struct platform_pwm_backlight_data *data,
407 static int pwm_backlight_initial_power_state(const struct pwm_bl_data *pb)
409 struct device_node *node = pb->dev->of_node;
411 /* Not booted with device tree or no phandle link to the node */
412 if (!node || !node->phandle)
413 return FB_BLANK_UNBLANK;
416 * If the driver is probed from the device tree and there is a
417 * phandle link pointing to the backlight node, it is safe to
418 * assume that another driver will enable the backlight at the
419 * appropriate time. Therefore, if it is disabled, keep it so.
422 /* if the enable GPIO is disabled, do not enable the backlight */
423 if (pb->enable_gpio && gpiod_get_value_cansleep(pb->enable_gpio) == 0)
424 return FB_BLANK_POWERDOWN;
426 /* The regulator is disabled, do not enable the backlight */
427 if (!regulator_is_enabled(pb->power_supply))
428 return FB_BLANK_POWERDOWN;
430 /* The PWM is disabled, keep it like this */
431 if (!pwm_is_enabled(pb->pwm))
432 return FB_BLANK_POWERDOWN;
434 return FB_BLANK_UNBLANK;
437 static int pwm_backlight_probe(struct platform_device *pdev)
439 struct platform_pwm_backlight_data *data = dev_get_platdata(&pdev->dev);
440 struct platform_pwm_backlight_data defdata;
441 struct backlight_properties props;
442 struct backlight_device *bl;
443 struct device_node *node = pdev->dev.of_node;
444 struct pwm_bl_data *pb;
445 struct pwm_state state;
450 ret = pwm_backlight_parse_dt(&pdev->dev, &defdata);
452 dev_err(&pdev->dev, "failed to find platform data\n");
460 ret = data->init(&pdev->dev);
465 pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
471 pb->notify = data->notify;
472 pb->notify_after = data->notify_after;
473 pb->check_fb = data->check_fb;
474 pb->exit = data->exit;
475 pb->dev = &pdev->dev;
477 pb->post_pwm_on_delay = data->post_pwm_on_delay;
478 pb->pwm_off_delay = data->pwm_off_delay;
480 pb->enable_gpio = devm_gpiod_get_optional(&pdev->dev, "enable",
482 if (IS_ERR(pb->enable_gpio)) {
483 ret = PTR_ERR(pb->enable_gpio);
488 * Compatibility fallback for drivers still using the integer GPIO
489 * platform data. Must go away soon.
491 if (!pb->enable_gpio && gpio_is_valid(data->enable_gpio)) {
492 ret = devm_gpio_request_one(&pdev->dev, data->enable_gpio,
493 GPIOF_OUT_INIT_HIGH, "enable");
495 dev_err(&pdev->dev, "failed to request GPIO#%d: %d\n",
496 data->enable_gpio, ret);
500 pb->enable_gpio = gpio_to_desc(data->enable_gpio);
504 * If the GPIO is not known to be already configured as output, that
505 * is, if gpiod_get_direction returns either 1 or -EINVAL, change the
506 * direction to output and set the GPIO as active.
507 * Do not force the GPIO to active when it was already output as it
508 * could cause backlight flickering or we would enable the backlight too
509 * early. Leave the decision of the initial backlight state for later.
511 if (pb->enable_gpio &&
512 gpiod_get_direction(pb->enable_gpio) != 0)
513 gpiod_direction_output(pb->enable_gpio, 1);
515 pb->power_supply = devm_regulator_get(&pdev->dev, "power");
516 if (IS_ERR(pb->power_supply)) {
517 ret = PTR_ERR(pb->power_supply);
521 pb->pwm = devm_pwm_get(&pdev->dev, NULL);
522 if (IS_ERR(pb->pwm) && PTR_ERR(pb->pwm) != -EPROBE_DEFER && !node) {
523 dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
525 pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
528 if (IS_ERR(pb->pwm)) {
529 ret = PTR_ERR(pb->pwm);
530 if (ret != -EPROBE_DEFER)
531 dev_err(&pdev->dev, "unable to request PWM\n");
535 dev_dbg(&pdev->dev, "got pwm for backlight\n");
537 /* Sync up PWM state. */
538 pwm_init_state(pb->pwm, &state);
541 * The DT case will set the pwm_period_ns field to 0 and store the
542 * period, parsed from the DT, in the PWM device. For the non-DT case,
543 * set the period from platform data if it has not already been set
544 * via the PWM lookup table.
546 if (!state.period && (data->pwm_period_ns > 0))
547 state.period = data->pwm_period_ns;
549 ret = pwm_apply_state(pb->pwm, &state);
551 dev_err(&pdev->dev, "failed to apply initial PWM state: %d\n",
558 * For the DT case, only when brightness levels is defined
559 * data->levels is filled. For the non-DT case, data->levels
560 * can come from platform data, however is not usual.
562 for (i = 0; i <= data->max_brightness; i++) {
563 if (data->levels[i] > pb->scale)
564 pb->scale = data->levels[i];
566 pb->levels = data->levels;
568 } else if (!data->max_brightness) {
570 * If no brightness levels are provided and max_brightness is
571 * not set, use the default brightness table. For the DT case,
572 * max_brightness is set to 0 when brightness levels is not
573 * specified. For the non-DT case, max_brightness is usually
577 /* Get the PWM period (in nanoseconds) */
578 pwm_get_state(pb->pwm, &state);
580 ret = pwm_backlight_brightness_default(&pdev->dev, data,
584 "failed to setup default brightness table\n");
588 for (i = 0; i <= data->max_brightness; i++) {
589 if (data->levels[i] > pb->scale)
590 pb->scale = data->levels[i];
592 pb->levels = data->levels;
596 * That only happens for the non-DT case, where platform data
597 * sets the max_brightness value.
599 pb->scale = data->max_brightness;
602 pb->lth_brightness = data->lth_brightness * (state.period / pb->scale);
604 memset(&props, 0, sizeof(struct backlight_properties));
605 props.type = BACKLIGHT_RAW;
606 props.max_brightness = data->max_brightness;
607 bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
608 &pwm_backlight_ops, &props);
610 dev_err(&pdev->dev, "failed to register backlight\n");
617 if (data->dft_brightness > data->max_brightness) {
619 "invalid default brightness level: %u, using %u\n",
620 data->dft_brightness, data->max_brightness);
621 data->dft_brightness = data->max_brightness;
624 bl->props.brightness = data->dft_brightness;
625 bl->props.power = pwm_backlight_initial_power_state(pb);
626 backlight_update_status(bl);
628 platform_set_drvdata(pdev, bl);
633 data->exit(&pdev->dev);
637 static int pwm_backlight_remove(struct platform_device *pdev)
639 struct backlight_device *bl = platform_get_drvdata(pdev);
640 struct pwm_bl_data *pb = bl_get_data(bl);
642 backlight_device_unregister(bl);
643 pwm_backlight_power_off(pb);
646 pb->exit(&pdev->dev);
653 static void pwm_backlight_shutdown(struct platform_device *pdev)
655 struct backlight_device *bl = platform_get_drvdata(pdev);
656 struct pwm_bl_data *pb = bl_get_data(bl);
658 pwm_backlight_power_off(pb);
661 #ifdef CONFIG_PM_SLEEP
662 static int pwm_backlight_suspend(struct device *dev)
664 struct backlight_device *bl = dev_get_drvdata(dev);
665 struct pwm_bl_data *pb = bl_get_data(bl);
668 pb->notify(pb->dev, 0);
670 pwm_backlight_power_off(pb);
672 if (pb->notify_after)
673 pb->notify_after(pb->dev, 0);
678 static int pwm_backlight_resume(struct device *dev)
680 struct backlight_device *bl = dev_get_drvdata(dev);
682 backlight_update_status(bl);
688 static const struct dev_pm_ops pwm_backlight_pm_ops = {
689 #ifdef CONFIG_PM_SLEEP
690 .suspend = pwm_backlight_suspend,
691 .resume = pwm_backlight_resume,
692 .poweroff = pwm_backlight_suspend,
693 .restore = pwm_backlight_resume,
697 static struct platform_driver pwm_backlight_driver = {
699 .name = "pwm-backlight",
700 .pm = &pwm_backlight_pm_ops,
701 .of_match_table = of_match_ptr(pwm_backlight_of_match),
703 .probe = pwm_backlight_probe,
704 .remove = pwm_backlight_remove,
705 .shutdown = pwm_backlight_shutdown,
708 module_platform_driver(pwm_backlight_driver);
710 MODULE_DESCRIPTION("PWM based Backlight Driver");
711 MODULE_LICENSE("GPL");
712 MODULE_ALIAS("platform:pwm-backlight");