Linux 4.19.133
[linux/fpc-iii.git] / drivers / video / backlight / pwm_bl.c
blob3a3098d4873be7b37fb68879261dd06ced5a4579
1 /*
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>
20 #include <linux/fb.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>
28 struct pwm_bl_data {
29 struct pwm_device *pwm;
30 struct device *dev;
31 unsigned int period;
32 unsigned int lth_brightness;
33 unsigned int *levels;
34 bool enabled;
35 struct regulator *power_supply;
36 struct gpio_desc *enable_gpio;
37 unsigned int scale;
38 bool legacy;
39 unsigned int post_pwm_on_delay;
40 unsigned int pwm_off_delay;
41 int (*notify)(struct device *,
42 int brightness);
43 void (*notify_after)(struct device *,
44 int brightness);
45 int (*check_fb)(struct device *, struct fb_info *);
46 void (*exit)(struct device *);
49 static void pwm_backlight_power_on(struct pwm_bl_data *pb, int brightness)
51 int err;
53 if (pb->enabled)
54 return;
56 err = regulator_enable(pb->power_supply);
57 if (err < 0)
58 dev_err(pb->dev, "failed to enable power supply\n");
60 pwm_enable(pb->pwm);
62 if (pb->post_pwm_on_delay)
63 msleep(pb->post_pwm_on_delay);
65 if (pb->enable_gpio)
66 gpiod_set_value_cansleep(pb->enable_gpio, 1);
68 pb->enabled = true;
71 static void pwm_backlight_power_off(struct pwm_bl_data *pb)
73 if (!pb->enabled)
74 return;
76 if (pb->enable_gpio)
77 gpiod_set_value_cansleep(pb->enable_gpio, 0);
79 if (pb->pwm_off_delay)
80 msleep(pb->pwm_off_delay);
82 pwm_config(pb->pwm, 0, pb->period);
83 pwm_disable(pb->pwm);
85 regulator_disable(pb->power_supply);
86 pb->enabled = false;
89 static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness)
91 unsigned int lth = pb->lth_brightness;
92 u64 duty_cycle;
94 if (pb->levels)
95 duty_cycle = pb->levels[brightness];
96 else
97 duty_cycle = brightness;
99 duty_cycle *= pb->period - lth;
100 do_div(duty_cycle, pb->scale);
102 return duty_cycle + lth;
105 static int pwm_backlight_update_status(struct backlight_device *bl)
107 struct pwm_bl_data *pb = bl_get_data(bl);
108 int brightness = bl->props.brightness;
109 int duty_cycle;
111 if (bl->props.power != FB_BLANK_UNBLANK ||
112 bl->props.fb_blank != FB_BLANK_UNBLANK ||
113 bl->props.state & BL_CORE_FBBLANK)
114 brightness = 0;
116 if (pb->notify)
117 brightness = pb->notify(pb->dev, brightness);
119 if (brightness > 0) {
120 duty_cycle = compute_duty_cycle(pb, brightness);
121 pwm_config(pb->pwm, duty_cycle, pb->period);
122 pwm_backlight_power_on(pb, brightness);
123 } else
124 pwm_backlight_power_off(pb);
126 if (pb->notify_after)
127 pb->notify_after(pb->dev, brightness);
129 return 0;
132 static int pwm_backlight_check_fb(struct backlight_device *bl,
133 struct fb_info *info)
135 struct pwm_bl_data *pb = bl_get_data(bl);
137 return !pb->check_fb || pb->check_fb(pb->dev, info);
140 static const struct backlight_ops pwm_backlight_ops = {
141 .update_status = pwm_backlight_update_status,
142 .check_fb = pwm_backlight_check_fb,
145 #ifdef CONFIG_OF
146 #define PWM_LUMINANCE_SCALE 10000 /* luminance scale */
148 /* An integer based power function */
149 static u64 int_pow(u64 base, int exp)
151 u64 result = 1;
153 while (exp) {
154 if (exp & 1)
155 result *= base;
156 exp >>= 1;
157 base *= base;
160 return result;
164 * CIE lightness to PWM conversion.
166 * The CIE 1931 lightness formula is what actually describes how we perceive
167 * light:
168 * Y = (L* / 902.3) if L* ≤ 0.08856
169 * Y = ((L* + 16) / 116)^3 if L* > 0.08856
171 * Where Y is the luminance, the amount of light coming out of the screen, and
172 * is a number between 0.0 and 1.0; and L* is the lightness, how bright a human
173 * perceives the screen to be, and is a number between 0 and 100.
175 * The following function does the fixed point maths needed to implement the
176 * above formula.
178 static u64 cie1931(unsigned int lightness, unsigned int scale)
180 u64 retval;
182 lightness *= 100;
183 if (lightness <= (8 * scale)) {
184 retval = DIV_ROUND_CLOSEST_ULL(lightness * 10, 9023);
185 } else {
186 retval = int_pow((lightness + (16 * scale)) / 116, 3);
187 retval = DIV_ROUND_CLOSEST_ULL(retval, (scale * scale));
190 return retval;
194 * Create a default correction table for PWM values to create linear brightness
195 * for LED based backlights using the CIE1931 algorithm.
197 static
198 int pwm_backlight_brightness_default(struct device *dev,
199 struct platform_pwm_backlight_data *data,
200 unsigned int period)
202 unsigned int i;
203 u64 retval;
206 * Once we have 4096 levels there's little point going much higher...
207 * neither interactive sliders nor animation benefits from having
208 * more values in the table.
210 data->max_brightness =
211 min((int)DIV_ROUND_UP(period, fls(period)), 4096);
213 data->levels = devm_kcalloc(dev, data->max_brightness,
214 sizeof(*data->levels), GFP_KERNEL);
215 if (!data->levels)
216 return -ENOMEM;
218 /* Fill the table using the cie1931 algorithm */
219 for (i = 0; i < data->max_brightness; i++) {
220 retval = cie1931((i * PWM_LUMINANCE_SCALE) /
221 data->max_brightness, PWM_LUMINANCE_SCALE) *
222 period;
223 retval = DIV_ROUND_CLOSEST_ULL(retval, PWM_LUMINANCE_SCALE);
224 if (retval > UINT_MAX)
225 return -EINVAL;
226 data->levels[i] = (unsigned int)retval;
229 data->dft_brightness = data->max_brightness / 2;
230 data->max_brightness--;
232 return 0;
235 static int pwm_backlight_parse_dt(struct device *dev,
236 struct platform_pwm_backlight_data *data)
238 struct device_node *node = dev->of_node;
239 unsigned int num_levels = 0;
240 unsigned int levels_count;
241 unsigned int num_steps = 0;
242 struct property *prop;
243 unsigned int *table;
244 int length;
245 u32 value;
246 int ret;
248 if (!node)
249 return -ENODEV;
251 memset(data, 0, sizeof(*data));
254 * These values are optional and set as 0 by default, the out values
255 * are modified only if a valid u32 value can be decoded.
257 of_property_read_u32(node, "post-pwm-on-delay-ms",
258 &data->post_pwm_on_delay);
259 of_property_read_u32(node, "pwm-off-delay-ms", &data->pwm_off_delay);
261 data->enable_gpio = -EINVAL;
264 * Determine the number of brightness levels, if this property is not
265 * set a default table of brightness levels will be used.
267 prop = of_find_property(node, "brightness-levels", &length);
268 if (!prop)
269 return 0;
271 data->max_brightness = length / sizeof(u32);
273 /* read brightness levels from DT property */
274 if (data->max_brightness > 0) {
275 size_t size = sizeof(*data->levels) * data->max_brightness;
276 unsigned int i, j, n = 0;
278 data->levels = devm_kzalloc(dev, size, GFP_KERNEL);
279 if (!data->levels)
280 return -ENOMEM;
282 ret = of_property_read_u32_array(node, "brightness-levels",
283 data->levels,
284 data->max_brightness);
285 if (ret < 0)
286 return ret;
288 ret = of_property_read_u32(node, "default-brightness-level",
289 &value);
290 if (ret < 0)
291 return ret;
293 data->dft_brightness = value;
296 * This property is optional, if is set enables linear
297 * interpolation between each of the values of brightness levels
298 * and creates a new pre-computed table.
300 of_property_read_u32(node, "num-interpolated-steps",
301 &num_steps);
304 * Make sure that there is at least two entries in the
305 * brightness-levels table, otherwise we can't interpolate
306 * between two points.
308 if (num_steps) {
309 if (data->max_brightness < 2) {
310 dev_err(dev, "can't interpolate\n");
311 return -EINVAL;
315 * Recalculate the number of brightness levels, now
316 * taking in consideration the number of interpolated
317 * steps between two levels.
319 for (i = 0; i < data->max_brightness - 1; i++) {
320 if ((data->levels[i + 1] - data->levels[i]) /
321 num_steps)
322 num_levels += num_steps;
323 else
324 num_levels++;
326 num_levels++;
327 dev_dbg(dev, "new number of brightness levels: %d\n",
328 num_levels);
331 * Create a new table of brightness levels with all the
332 * interpolated steps.
334 size = sizeof(*table) * num_levels;
335 table = devm_kzalloc(dev, size, GFP_KERNEL);
336 if (!table)
337 return -ENOMEM;
339 /* Fill the interpolated table. */
340 levels_count = 0;
341 for (i = 0; i < data->max_brightness - 1; i++) {
342 value = data->levels[i];
343 n = (data->levels[i + 1] - value) / num_steps;
344 if (n > 0) {
345 for (j = 0; j < num_steps; j++) {
346 table[levels_count] = value;
347 value += n;
348 levels_count++;
350 } else {
351 table[levels_count] = data->levels[i];
352 levels_count++;
355 table[levels_count] = data->levels[i];
358 * As we use interpolation lets remove current
359 * brightness levels table and replace for the
360 * new interpolated table.
362 devm_kfree(dev, data->levels);
363 data->levels = table;
366 * Reassign max_brightness value to the new total number
367 * of brightness levels.
369 data->max_brightness = num_levels;
372 data->max_brightness--;
375 return 0;
378 static const struct of_device_id pwm_backlight_of_match[] = {
379 { .compatible = "pwm-backlight" },
383 MODULE_DEVICE_TABLE(of, pwm_backlight_of_match);
384 #else
385 static int pwm_backlight_parse_dt(struct device *dev,
386 struct platform_pwm_backlight_data *data)
388 return -ENODEV;
391 static
392 int pwm_backlight_brightness_default(struct device *dev,
393 struct platform_pwm_backlight_data *data,
394 unsigned int period)
396 return -ENODEV;
398 #endif
400 static int pwm_backlight_initial_power_state(const struct pwm_bl_data *pb)
402 struct device_node *node = pb->dev->of_node;
404 /* Not booted with device tree or no phandle link to the node */
405 if (!node || !node->phandle)
406 return FB_BLANK_UNBLANK;
409 * If the driver is probed from the device tree and there is a
410 * phandle link pointing to the backlight node, it is safe to
411 * assume that another driver will enable the backlight at the
412 * appropriate time. Therefore, if it is disabled, keep it so.
415 /* if the enable GPIO is disabled, do not enable the backlight */
416 if (pb->enable_gpio && gpiod_get_value_cansleep(pb->enable_gpio) == 0)
417 return FB_BLANK_POWERDOWN;
419 /* The regulator is disabled, do not enable the backlight */
420 if (!regulator_is_enabled(pb->power_supply))
421 return FB_BLANK_POWERDOWN;
423 /* The PWM is disabled, keep it like this */
424 if (!pwm_is_enabled(pb->pwm))
425 return FB_BLANK_POWERDOWN;
427 return FB_BLANK_UNBLANK;
430 static int pwm_backlight_probe(struct platform_device *pdev)
432 struct platform_pwm_backlight_data *data = dev_get_platdata(&pdev->dev);
433 struct platform_pwm_backlight_data defdata;
434 struct backlight_properties props;
435 struct backlight_device *bl;
436 struct device_node *node = pdev->dev.of_node;
437 struct pwm_bl_data *pb;
438 struct pwm_state state;
439 struct pwm_args pargs;
440 unsigned int i;
441 int ret;
443 if (!data) {
444 ret = pwm_backlight_parse_dt(&pdev->dev, &defdata);
445 if (ret < 0) {
446 dev_err(&pdev->dev, "failed to find platform data\n");
447 return ret;
450 data = &defdata;
453 if (data->init) {
454 ret = data->init(&pdev->dev);
455 if (ret < 0)
456 return ret;
459 pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
460 if (!pb) {
461 ret = -ENOMEM;
462 goto err_alloc;
465 pb->notify = data->notify;
466 pb->notify_after = data->notify_after;
467 pb->check_fb = data->check_fb;
468 pb->exit = data->exit;
469 pb->dev = &pdev->dev;
470 pb->enabled = false;
471 pb->post_pwm_on_delay = data->post_pwm_on_delay;
472 pb->pwm_off_delay = data->pwm_off_delay;
474 pb->enable_gpio = devm_gpiod_get_optional(&pdev->dev, "enable",
475 GPIOD_ASIS);
476 if (IS_ERR(pb->enable_gpio)) {
477 ret = PTR_ERR(pb->enable_gpio);
478 goto err_alloc;
482 * Compatibility fallback for drivers still using the integer GPIO
483 * platform data. Must go away soon.
485 if (!pb->enable_gpio && gpio_is_valid(data->enable_gpio)) {
486 ret = devm_gpio_request_one(&pdev->dev, data->enable_gpio,
487 GPIOF_OUT_INIT_HIGH, "enable");
488 if (ret < 0) {
489 dev_err(&pdev->dev, "failed to request GPIO#%d: %d\n",
490 data->enable_gpio, ret);
491 goto err_alloc;
494 pb->enable_gpio = gpio_to_desc(data->enable_gpio);
498 * If the GPIO is not known to be already configured as output, that
499 * is, if gpiod_get_direction returns either 1 or -EINVAL, change the
500 * direction to output and set the GPIO as active.
501 * Do not force the GPIO to active when it was already output as it
502 * could cause backlight flickering or we would enable the backlight too
503 * early. Leave the decision of the initial backlight state for later.
505 if (pb->enable_gpio &&
506 gpiod_get_direction(pb->enable_gpio) != 0)
507 gpiod_direction_output(pb->enable_gpio, 1);
509 pb->power_supply = devm_regulator_get(&pdev->dev, "power");
510 if (IS_ERR(pb->power_supply)) {
511 ret = PTR_ERR(pb->power_supply);
512 goto err_alloc;
515 pb->pwm = devm_pwm_get(&pdev->dev, NULL);
516 if (IS_ERR(pb->pwm) && PTR_ERR(pb->pwm) != -EPROBE_DEFER && !node) {
517 dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
518 pb->legacy = true;
519 pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
522 if (IS_ERR(pb->pwm)) {
523 ret = PTR_ERR(pb->pwm);
524 if (ret != -EPROBE_DEFER)
525 dev_err(&pdev->dev, "unable to request PWM\n");
526 goto err_alloc;
529 dev_dbg(&pdev->dev, "got pwm for backlight\n");
531 if (!data->levels) {
532 /* Get the PWM period (in nanoseconds) */
533 pwm_get_state(pb->pwm, &state);
535 ret = pwm_backlight_brightness_default(&pdev->dev, data,
536 state.period);
537 if (ret < 0) {
538 dev_err(&pdev->dev,
539 "failed to setup default brightness table\n");
540 goto err_alloc;
544 for (i = 0; i <= data->max_brightness; i++) {
545 if (data->levels[i] > pb->scale)
546 pb->scale = data->levels[i];
548 pb->levels = data->levels;
552 * FIXME: pwm_apply_args() should be removed when switching to
553 * the atomic PWM API.
555 pwm_apply_args(pb->pwm);
558 * The DT case will set the pwm_period_ns field to 0 and store the
559 * period, parsed from the DT, in the PWM device. For the non-DT case,
560 * set the period from platform data if it has not already been set
561 * via the PWM lookup table.
563 pwm_get_args(pb->pwm, &pargs);
564 pb->period = pargs.period;
565 if (!pb->period && (data->pwm_period_ns > 0))
566 pb->period = data->pwm_period_ns;
568 pb->lth_brightness = data->lth_brightness * (pb->period / pb->scale);
570 memset(&props, 0, sizeof(struct backlight_properties));
571 props.type = BACKLIGHT_RAW;
572 props.max_brightness = data->max_brightness;
573 bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
574 &pwm_backlight_ops, &props);
575 if (IS_ERR(bl)) {
576 dev_err(&pdev->dev, "failed to register backlight\n");
577 ret = PTR_ERR(bl);
578 if (pb->legacy)
579 pwm_free(pb->pwm);
580 goto err_alloc;
583 if (data->dft_brightness > data->max_brightness) {
584 dev_warn(&pdev->dev,
585 "invalid default brightness level: %u, using %u\n",
586 data->dft_brightness, data->max_brightness);
587 data->dft_brightness = data->max_brightness;
590 bl->props.brightness = data->dft_brightness;
591 bl->props.power = pwm_backlight_initial_power_state(pb);
592 backlight_update_status(bl);
594 platform_set_drvdata(pdev, bl);
595 return 0;
597 err_alloc:
598 if (data->exit)
599 data->exit(&pdev->dev);
600 return ret;
603 static int pwm_backlight_remove(struct platform_device *pdev)
605 struct backlight_device *bl = platform_get_drvdata(pdev);
606 struct pwm_bl_data *pb = bl_get_data(bl);
608 backlight_device_unregister(bl);
609 pwm_backlight_power_off(pb);
611 if (pb->exit)
612 pb->exit(&pdev->dev);
613 if (pb->legacy)
614 pwm_free(pb->pwm);
616 return 0;
619 static void pwm_backlight_shutdown(struct platform_device *pdev)
621 struct backlight_device *bl = platform_get_drvdata(pdev);
622 struct pwm_bl_data *pb = bl_get_data(bl);
624 pwm_backlight_power_off(pb);
627 #ifdef CONFIG_PM_SLEEP
628 static int pwm_backlight_suspend(struct device *dev)
630 struct backlight_device *bl = dev_get_drvdata(dev);
631 struct pwm_bl_data *pb = bl_get_data(bl);
633 if (pb->notify)
634 pb->notify(pb->dev, 0);
636 pwm_backlight_power_off(pb);
638 if (pb->notify_after)
639 pb->notify_after(pb->dev, 0);
641 return 0;
644 static int pwm_backlight_resume(struct device *dev)
646 struct backlight_device *bl = dev_get_drvdata(dev);
648 backlight_update_status(bl);
650 return 0;
652 #endif
654 static const struct dev_pm_ops pwm_backlight_pm_ops = {
655 #ifdef CONFIG_PM_SLEEP
656 .suspend = pwm_backlight_suspend,
657 .resume = pwm_backlight_resume,
658 .poweroff = pwm_backlight_suspend,
659 .restore = pwm_backlight_resume,
660 #endif
663 static struct platform_driver pwm_backlight_driver = {
664 .driver = {
665 .name = "pwm-backlight",
666 .pm = &pwm_backlight_pm_ops,
667 .of_match_table = of_match_ptr(pwm_backlight_of_match),
669 .probe = pwm_backlight_probe,
670 .remove = pwm_backlight_remove,
671 .shutdown = pwm_backlight_shutdown,
674 module_platform_driver(pwm_backlight_driver);
676 MODULE_DESCRIPTION("PWM based Backlight Driver");
677 MODULE_LICENSE("GPL");
678 MODULE_ALIAS("platform:pwm-backlight");