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/gpio/consumer.h>
14 #include <linux/gpio.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
20 #include <linux/backlight.h>
21 #include <linux/err.h>
22 #include <linux/pwm.h>
23 #include <linux/pwm_backlight.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/slab.h>
28 struct pwm_device
*pwm
;
31 unsigned int lth_brightness
;
34 struct regulator
*power_supply
;
35 struct gpio_desc
*enable_gpio
;
38 int (*notify
)(struct device
*,
40 void (*notify_after
)(struct device
*,
42 int (*check_fb
)(struct device
*, struct fb_info
*);
43 void (*exit
)(struct device
*);
46 static void pwm_backlight_power_on(struct pwm_bl_data
*pb
, int brightness
)
53 err
= regulator_enable(pb
->power_supply
);
55 dev_err(pb
->dev
, "failed to enable power supply\n");
58 gpiod_set_value_cansleep(pb
->enable_gpio
, 1);
64 static void pwm_backlight_power_off(struct pwm_bl_data
*pb
)
69 pwm_config(pb
->pwm
, 0, pb
->period
);
73 gpiod_set_value_cansleep(pb
->enable_gpio
, 0);
75 regulator_disable(pb
->power_supply
);
79 static int compute_duty_cycle(struct pwm_bl_data
*pb
, int brightness
)
81 unsigned int lth
= pb
->lth_brightness
;
85 duty_cycle
= pb
->levels
[brightness
];
87 duty_cycle
= brightness
;
89 duty_cycle
*= pb
->period
- lth
;
90 do_div(duty_cycle
, pb
->scale
);
92 return duty_cycle
+ lth
;
95 static int pwm_backlight_update_status(struct backlight_device
*bl
)
97 struct pwm_bl_data
*pb
= bl_get_data(bl
);
98 int brightness
= bl
->props
.brightness
;
101 if (bl
->props
.power
!= FB_BLANK_UNBLANK
||
102 bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
||
103 bl
->props
.state
& BL_CORE_FBBLANK
)
107 brightness
= pb
->notify(pb
->dev
, brightness
);
109 if (brightness
> 0) {
110 duty_cycle
= compute_duty_cycle(pb
, brightness
);
111 pwm_config(pb
->pwm
, duty_cycle
, pb
->period
);
112 pwm_backlight_power_on(pb
, brightness
);
114 pwm_backlight_power_off(pb
);
116 if (pb
->notify_after
)
117 pb
->notify_after(pb
->dev
, brightness
);
122 static int pwm_backlight_check_fb(struct backlight_device
*bl
,
123 struct fb_info
*info
)
125 struct pwm_bl_data
*pb
= bl_get_data(bl
);
127 return !pb
->check_fb
|| pb
->check_fb(pb
->dev
, info
);
130 static const struct backlight_ops pwm_backlight_ops
= {
131 .update_status
= pwm_backlight_update_status
,
132 .check_fb
= pwm_backlight_check_fb
,
136 static int pwm_backlight_parse_dt(struct device
*dev
,
137 struct platform_pwm_backlight_data
*data
)
139 struct device_node
*node
= dev
->of_node
;
140 struct property
*prop
;
148 memset(data
, 0, sizeof(*data
));
150 /* determine the number of brightness levels */
151 prop
= of_find_property(node
, "brightness-levels", &length
);
155 data
->max_brightness
= length
/ sizeof(u32
);
157 /* read brightness levels from DT property */
158 if (data
->max_brightness
> 0) {
159 size_t size
= sizeof(*data
->levels
) * data
->max_brightness
;
161 data
->levels
= devm_kzalloc(dev
, size
, GFP_KERNEL
);
165 ret
= of_property_read_u32_array(node
, "brightness-levels",
167 data
->max_brightness
);
171 ret
= of_property_read_u32(node
, "default-brightness-level",
176 data
->dft_brightness
= value
;
177 data
->max_brightness
--;
180 data
->enable_gpio
= -EINVAL
;
184 static const struct of_device_id pwm_backlight_of_match
[] = {
185 { .compatible
= "pwm-backlight" },
189 MODULE_DEVICE_TABLE(of
, pwm_backlight_of_match
);
191 static int pwm_backlight_parse_dt(struct device
*dev
,
192 struct platform_pwm_backlight_data
*data
)
198 static int pwm_backlight_initial_power_state(const struct pwm_bl_data
*pb
)
200 struct device_node
*node
= pb
->dev
->of_node
;
202 /* Not booted with device tree or no phandle link to the node */
203 if (!node
|| !node
->phandle
)
204 return FB_BLANK_UNBLANK
;
207 * If the driver is probed from the device tree and there is a
208 * phandle link pointing to the backlight node, it is safe to
209 * assume that another driver will enable the backlight at the
210 * appropriate time. Therefore, if it is disabled, keep it so.
213 /* if the enable GPIO is disabled, do not enable the backlight */
214 if (pb
->enable_gpio
&& gpiod_get_value(pb
->enable_gpio
) == 0)
215 return FB_BLANK_POWERDOWN
;
217 /* The regulator is disabled, do not enable the backlight */
218 if (!regulator_is_enabled(pb
->power_supply
))
219 return FB_BLANK_POWERDOWN
;
221 /* The PWM is disabled, keep it like this */
222 if (!pwm_is_enabled(pb
->pwm
))
223 return FB_BLANK_POWERDOWN
;
225 return FB_BLANK_UNBLANK
;
228 static int pwm_backlight_probe(struct platform_device
*pdev
)
230 struct platform_pwm_backlight_data
*data
= dev_get_platdata(&pdev
->dev
);
231 struct platform_pwm_backlight_data defdata
;
232 struct backlight_properties props
;
233 struct backlight_device
*bl
;
234 struct device_node
*node
= pdev
->dev
.of_node
;
235 struct pwm_bl_data
*pb
;
236 struct pwm_args pargs
;
240 ret
= pwm_backlight_parse_dt(&pdev
->dev
, &defdata
);
242 dev_err(&pdev
->dev
, "failed to find platform data\n");
250 ret
= data
->init(&pdev
->dev
);
255 pb
= devm_kzalloc(&pdev
->dev
, sizeof(*pb
), GFP_KERNEL
);
264 for (i
= 0; i
<= data
->max_brightness
; i
++)
265 if (data
->levels
[i
] > pb
->scale
)
266 pb
->scale
= data
->levels
[i
];
268 pb
->levels
= data
->levels
;
270 pb
->scale
= data
->max_brightness
;
272 pb
->notify
= data
->notify
;
273 pb
->notify_after
= data
->notify_after
;
274 pb
->check_fb
= data
->check_fb
;
275 pb
->exit
= data
->exit
;
276 pb
->dev
= &pdev
->dev
;
279 pb
->enable_gpio
= devm_gpiod_get_optional(&pdev
->dev
, "enable",
281 if (IS_ERR(pb
->enable_gpio
)) {
282 ret
= PTR_ERR(pb
->enable_gpio
);
287 * Compatibility fallback for drivers still using the integer GPIO
288 * platform data. Must go away soon.
290 if (!pb
->enable_gpio
&& gpio_is_valid(data
->enable_gpio
)) {
291 ret
= devm_gpio_request_one(&pdev
->dev
, data
->enable_gpio
,
292 GPIOF_OUT_INIT_HIGH
, "enable");
294 dev_err(&pdev
->dev
, "failed to request GPIO#%d: %d\n",
295 data
->enable_gpio
, ret
);
299 pb
->enable_gpio
= gpio_to_desc(data
->enable_gpio
);
303 * If the GPIO is not known to be already configured as output, that
304 * is, if gpiod_get_direction returns either GPIOF_DIR_IN or -EINVAL,
305 * change the direction to output and set the GPIO as active.
306 * Do not force the GPIO to active when it was already output as it
307 * could cause backlight flickering or we would enable the backlight too
308 * early. Leave the decision of the initial backlight state for later.
310 if (pb
->enable_gpio
&&
311 gpiod_get_direction(pb
->enable_gpio
) != GPIOF_DIR_OUT
)
312 gpiod_direction_output(pb
->enable_gpio
, 1);
314 pb
->power_supply
= devm_regulator_get(&pdev
->dev
, "power");
315 if (IS_ERR(pb
->power_supply
)) {
316 ret
= PTR_ERR(pb
->power_supply
);
320 pb
->pwm
= devm_pwm_get(&pdev
->dev
, NULL
);
321 if (IS_ERR(pb
->pwm
) && PTR_ERR(pb
->pwm
) != -EPROBE_DEFER
&& !node
) {
322 dev_err(&pdev
->dev
, "unable to request PWM, trying legacy API\n");
324 pb
->pwm
= pwm_request(data
->pwm_id
, "pwm-backlight");
327 if (IS_ERR(pb
->pwm
)) {
328 ret
= PTR_ERR(pb
->pwm
);
329 if (ret
!= -EPROBE_DEFER
)
330 dev_err(&pdev
->dev
, "unable to request PWM\n");
334 dev_dbg(&pdev
->dev
, "got pwm for backlight\n");
337 * FIXME: pwm_apply_args() should be removed when switching to
338 * the atomic PWM API.
340 pwm_apply_args(pb
->pwm
);
343 * The DT case will set the pwm_period_ns field to 0 and store the
344 * period, parsed from the DT, in the PWM device. For the non-DT case,
345 * set the period from platform data if it has not already been set
346 * via the PWM lookup table.
348 pwm_get_args(pb
->pwm
, &pargs
);
349 pb
->period
= pargs
.period
;
350 if (!pb
->period
&& (data
->pwm_period_ns
> 0))
351 pb
->period
= data
->pwm_period_ns
;
353 pb
->lth_brightness
= data
->lth_brightness
* (pb
->period
/ pb
->scale
);
355 memset(&props
, 0, sizeof(struct backlight_properties
));
356 props
.type
= BACKLIGHT_RAW
;
357 props
.max_brightness
= data
->max_brightness
;
358 bl
= backlight_device_register(dev_name(&pdev
->dev
), &pdev
->dev
, pb
,
359 &pwm_backlight_ops
, &props
);
361 dev_err(&pdev
->dev
, "failed to register backlight\n");
368 if (data
->dft_brightness
> data
->max_brightness
) {
370 "invalid default brightness level: %u, using %u\n",
371 data
->dft_brightness
, data
->max_brightness
);
372 data
->dft_brightness
= data
->max_brightness
;
375 bl
->props
.brightness
= data
->dft_brightness
;
376 bl
->props
.power
= pwm_backlight_initial_power_state(pb
);
377 backlight_update_status(bl
);
379 platform_set_drvdata(pdev
, bl
);
384 data
->exit(&pdev
->dev
);
388 static int pwm_backlight_remove(struct platform_device
*pdev
)
390 struct backlight_device
*bl
= platform_get_drvdata(pdev
);
391 struct pwm_bl_data
*pb
= bl_get_data(bl
);
393 backlight_device_unregister(bl
);
394 pwm_backlight_power_off(pb
);
397 pb
->exit(&pdev
->dev
);
404 static void pwm_backlight_shutdown(struct platform_device
*pdev
)
406 struct backlight_device
*bl
= platform_get_drvdata(pdev
);
407 struct pwm_bl_data
*pb
= bl_get_data(bl
);
409 pwm_backlight_power_off(pb
);
412 #ifdef CONFIG_PM_SLEEP
413 static int pwm_backlight_suspend(struct device
*dev
)
415 struct backlight_device
*bl
= dev_get_drvdata(dev
);
416 struct pwm_bl_data
*pb
= bl_get_data(bl
);
419 pb
->notify(pb
->dev
, 0);
421 pwm_backlight_power_off(pb
);
423 if (pb
->notify_after
)
424 pb
->notify_after(pb
->dev
, 0);
429 static int pwm_backlight_resume(struct device
*dev
)
431 struct backlight_device
*bl
= dev_get_drvdata(dev
);
433 backlight_update_status(bl
);
439 static const struct dev_pm_ops pwm_backlight_pm_ops
= {
440 #ifdef CONFIG_PM_SLEEP
441 .suspend
= pwm_backlight_suspend
,
442 .resume
= pwm_backlight_resume
,
443 .poweroff
= pwm_backlight_suspend
,
444 .restore
= pwm_backlight_resume
,
448 static struct platform_driver pwm_backlight_driver
= {
450 .name
= "pwm-backlight",
451 .pm
= &pwm_backlight_pm_ops
,
452 .of_match_table
= of_match_ptr(pwm_backlight_of_match
),
454 .probe
= pwm_backlight_probe
,
455 .remove
= pwm_backlight_remove
,
456 .shutdown
= pwm_backlight_shutdown
,
459 module_platform_driver(pwm_backlight_driver
);
461 MODULE_DESCRIPTION("PWM based Backlight Driver");
462 MODULE_LICENSE("GPL");
463 MODULE_ALIAS("platform:pwm-backlight");