blob: 678b270631983a47718d5d8d78f395e9d639ec83 [file] [log] [blame]
eric miao42796d32008-04-14 09:35:08 +01001/*
2 * linux/drivers/video/backlight/pwm_bl.c
3 *
4 * simple PWM based backlight control, board code has to setup
5 * 1) pin configuration so PWM waveforms can output
Eric Miaob8cdd872009-02-10 13:30:37 +08006 * 2) platform_data being correctly configured
eric miao42796d32008-04-14 09:35:08 +01007 *
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.
11 */
12
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020013#include <linux/delay.h>
Alexandre Courbot257462d2014-02-27 14:53:34 +090014#include <linux/gpio/consumer.h>
Thierry Reding8265b2e2013-08-30 12:32:18 +020015#include <linux/gpio.h>
eric miao42796d32008-04-14 09:35:08 +010016#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>
Thierry Reding22ceeee2013-08-30 12:38:34 +020025#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
eric miao42796d32008-04-14 09:35:08 +010027
28struct pwm_bl_data {
29 struct pwm_device *pwm;
Ben Dookscfc38992009-11-10 17:20:40 +000030 struct device *dev;
Arun Murthyfef77642010-11-11 14:05:28 -080031 unsigned int lth_brightness;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +010032 unsigned int *levels;
Thierry Reding22ceeee2013-08-30 12:38:34 +020033 struct regulator *power_supply;
Alexandre Courbot257462d2014-02-27 14:53:34 +090034 struct gpio_desc *enable_gpio;
Mike Dunn8f43e182013-09-22 09:59:56 -070035 unsigned int scale;
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +030036 bool legacy;
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020037 unsigned int post_pwm_on_delay;
38 unsigned int pwm_off_delay;
Ben Dookscfc38992009-11-10 17:20:40 +000039 int (*notify)(struct device *,
40 int brightness);
Dilan Leecc7993f2011-08-25 15:59:17 -070041 void (*notify_after)(struct device *,
42 int brightness);
Robert Morellef0a5e82011-03-22 16:30:31 -070043 int (*check_fb)(struct device *, struct fb_info *);
Thierry Reding3e3ed6c2011-12-16 21:25:29 +010044 void (*exit)(struct device *);
eric miao42796d32008-04-14 09:35:08 +010045};
46
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020047static void pwm_backlight_power_on(struct pwm_bl_data *pb)
Thierry Reding62b744a2013-10-07 11:32:02 +020048{
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020049 struct pwm_state state;
Thierry Reding73d4e2b2013-10-22 09:37:05 +020050 int err;
Thierry Reding62b744a2013-10-07 11:32:02 +020051
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020052 pwm_get_state(pb->pwm, &state);
53 if (state.enabled)
Thierry Reding97c38432013-10-02 18:01:02 +020054 return;
55
Thierry Reding22ceeee2013-08-30 12:38:34 +020056 err = regulator_enable(pb->power_supply);
57 if (err < 0)
58 dev_err(pb->dev, "failed to enable power supply\n");
59
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020060 state.enabled = true;
61 pwm_apply_state(pb->pwm, &state);
Enric Balletbo i Serra5fb5cae2018-03-28 19:03:23 +020062
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020063 if (pb->post_pwm_on_delay)
64 msleep(pb->post_pwm_on_delay);
65
Alexandre Courbot257462d2014-02-27 14:53:34 +090066 if (pb->enable_gpio)
Maxime Ripard0c9501f2016-08-31 10:18:12 +020067 gpiod_set_value_cansleep(pb->enable_gpio, 1);
Thierry Reding62b744a2013-10-07 11:32:02 +020068}
69
70static void pwm_backlight_power_off(struct pwm_bl_data *pb)
71{
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020072 struct pwm_state state;
73
74 pwm_get_state(pb->pwm, &state);
75 if (!state.enabled)
Thierry Reding97c38432013-10-02 18:01:02 +020076 return;
77
Alexandre Courbot257462d2014-02-27 14:53:34 +090078 if (pb->enable_gpio)
Maxime Ripard0c9501f2016-08-31 10:18:12 +020079 gpiod_set_value_cansleep(pb->enable_gpio, 0);
Thierry Reding8265b2e2013-08-30 12:32:18 +020080
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020081 if (pb->pwm_off_delay)
82 msleep(pb->pwm_off_delay);
83
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020084 state.enabled = false;
85 state.duty_cycle = 0;
86 pwm_apply_state(pb->pwm, &state);
Enric Balletbo i Serra5fb5cae2018-03-28 19:03:23 +020087
Thierry Reding22ceeee2013-08-30 12:38:34 +020088 regulator_disable(pb->power_supply);
Thierry Reding62b744a2013-10-07 11:32:02 +020089}
90
Thierry Redinge4bfeda2013-10-18 10:46:24 +020091static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness)
92{
93 unsigned int lth = pb->lth_brightness;
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020094 struct pwm_state state;
Derek Basehore5d0c49a2017-08-29 13:34:34 -070095 u64 duty_cycle;
Thierry Redinge4bfeda2013-10-18 10:46:24 +020096
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +020097 pwm_get_state(pb->pwm, &state);
98
Thierry Redinge4bfeda2013-10-18 10:46:24 +020099 if (pb->levels)
100 duty_cycle = pb->levels[brightness];
101 else
102 duty_cycle = brightness;
103
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200104 duty_cycle *= state.period - lth;
Derek Basehore5d0c49a2017-08-29 13:34:34 -0700105 do_div(duty_cycle, pb->scale);
106
107 return duty_cycle + lth;
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200108}
109
eric miao42796d32008-04-14 09:35:08 +0100110static int pwm_backlight_update_status(struct backlight_device *bl)
111{
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800112 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100113 int brightness = bl->props.brightness;
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200114 struct pwm_state state;
eric miao42796d32008-04-14 09:35:08 +0100115
Alexandre Courbot01322672013-01-30 15:19:15 +0900116 if (bl->props.power != FB_BLANK_UNBLANK ||
117 bl->props.fb_blank != FB_BLANK_UNBLANK ||
118 bl->props.state & BL_CORE_FBBLANK)
eric miao42796d32008-04-14 09:35:08 +0100119 brightness = 0;
120
Philipp Zabel3b731252008-05-22 14:18:40 +0100121 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000122 brightness = pb->notify(pb->dev, brightness);
Philipp Zabel3b731252008-05-22 14:18:40 +0100123
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200124 if (brightness > 0) {
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200125 pwm_get_state(pb->pwm, &state);
126 state.duty_cycle = compute_duty_cycle(pb, brightness);
127 pwm_apply_state(pb->pwm, &state);
128 pwm_backlight_power_on(pb);
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200129 } else
Thierry Reding62b744a2013-10-07 11:32:02 +0200130 pwm_backlight_power_off(pb);
Dilan Leecc7993f2011-08-25 15:59:17 -0700131
132 if (pb->notify_after)
133 pb->notify_after(pb->dev, brightness);
134
eric miao42796d32008-04-14 09:35:08 +0100135 return 0;
136}
137
Robert Morellef0a5e82011-03-22 16:30:31 -0700138static int pwm_backlight_check_fb(struct backlight_device *bl,
139 struct fb_info *info)
140{
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800141 struct pwm_bl_data *pb = bl_get_data(bl);
Robert Morellef0a5e82011-03-22 16:30:31 -0700142
143 return !pb->check_fb || pb->check_fb(pb->dev, info);
144}
145
Emese Revfy9905a432009-12-14 00:58:57 +0100146static const struct backlight_ops pwm_backlight_ops = {
eric miao42796d32008-04-14 09:35:08 +0100147 .update_status = pwm_backlight_update_status,
Robert Morellef0a5e82011-03-22 16:30:31 -0700148 .check_fb = pwm_backlight_check_fb,
eric miao42796d32008-04-14 09:35:08 +0100149};
150
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100151#ifdef CONFIG_OF
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200152#define PWM_LUMINANCE_SCALE 10000 /* luminance scale */
153
154/* An integer based power function */
155static u64 int_pow(u64 base, int exp)
156{
157 u64 result = 1;
158
159 while (exp) {
160 if (exp & 1)
161 result *= base;
162 exp >>= 1;
163 base *= base;
164 }
165
166 return result;
167}
168
169/*
170 * CIE lightness to PWM conversion.
171 *
172 * The CIE 1931 lightness formula is what actually describes how we perceive
173 * light:
174 * Y = (L* / 902.3) if L* ≤ 0.08856
175 * Y = ((L* + 16) / 116)^3 if L* > 0.08856
176 *
177 * Where Y is the luminance, the amount of light coming out of the screen, and
178 * is a number between 0.0 and 1.0; and L* is the lightness, how bright a human
179 * perceives the screen to be, and is a number between 0 and 100.
180 *
181 * The following function does the fixed point maths needed to implement the
182 * above formula.
183 */
184static u64 cie1931(unsigned int lightness, unsigned int scale)
185{
186 u64 retval;
187
188 lightness *= 100;
189 if (lightness <= (8 * scale)) {
190 retval = DIV_ROUND_CLOSEST_ULL(lightness * 10, 9023);
191 } else {
192 retval = int_pow((lightness + (16 * scale)) / 116, 3);
193 retval = DIV_ROUND_CLOSEST_ULL(retval, (scale * scale));
194 }
195
196 return retval;
197}
198
199/*
200 * Create a default correction table for PWM values to create linear brightness
201 * for LED based backlights using the CIE1931 algorithm.
202 */
203static
204int pwm_backlight_brightness_default(struct device *dev,
205 struct platform_pwm_backlight_data *data,
206 unsigned int period)
207{
208 unsigned int counter = 0;
209 unsigned int i, n;
210 u64 retval;
211
212 /*
213 * Count the number of bits needed to represent the period number. The
214 * number of bits is used to calculate the number of levels used for the
215 * brightness-levels table, the purpose of this calculation is have a
216 * pre-computed table with enough levels to get linear brightness
217 * perception. The period is divided by the number of bits so for a
218 * 8-bit PWM we have 255 / 8 = 32 brightness levels or for a 16-bit PWM
219 * we have 65535 / 16 = 4096 brightness levels.
220 *
221 * Note that this method is based on empirical testing on different
222 * devices with PWM of 8 and 16 bits of resolution.
223 */
224 n = period;
225 while (n) {
226 counter += n % 2;
227 n >>= 1;
228 }
229
230 data->max_brightness = DIV_ROUND_UP(period, counter);
231 data->levels = devm_kcalloc(dev, data->max_brightness,
232 sizeof(*data->levels), GFP_KERNEL);
233 if (!data->levels)
234 return -ENOMEM;
235
236 /* Fill the table using the cie1931 algorithm */
237 for (i = 0; i < data->max_brightness; i++) {
238 retval = cie1931((i * PWM_LUMINANCE_SCALE) /
239 data->max_brightness, PWM_LUMINANCE_SCALE) *
240 period;
241 retval = DIV_ROUND_CLOSEST_ULL(retval, PWM_LUMINANCE_SCALE);
242 if (retval > UINT_MAX)
243 return -EINVAL;
244 data->levels[i] = (unsigned int)retval;
245 }
246
247 data->dft_brightness = data->max_brightness / 2;
248 data->max_brightness--;
249
250 return 0;
251}
252
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100253static int pwm_backlight_parse_dt(struct device *dev,
254 struct platform_pwm_backlight_data *data)
255{
256 struct device_node *node = dev->of_node;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200257 unsigned int num_levels = 0;
258 unsigned int levels_count;
Daniel Thompson63378672018-07-25 08:38:30 +0100259 unsigned int num_steps = 0;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100260 struct property *prop;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200261 unsigned int *table;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100262 int length;
263 u32 value;
264 int ret;
265
266 if (!node)
267 return -ENODEV;
268
269 memset(data, 0, sizeof(*data));
270
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200271 /*
272 * Determine the number of brightness levels, if this property is not
273 * set a default table of brightness levels will be used.
274 */
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100275 prop = of_find_property(node, "brightness-levels", &length);
276 if (!prop)
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200277 return 0;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100278
279 data->max_brightness = length / sizeof(u32);
280
281 /* read brightness levels from DT property */
282 if (data->max_brightness > 0) {
283 size_t size = sizeof(*data->levels) * data->max_brightness;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200284 unsigned int i, j, n = 0;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100285
286 data->levels = devm_kzalloc(dev, size, GFP_KERNEL);
287 if (!data->levels)
288 return -ENOMEM;
289
290 ret = of_property_read_u32_array(node, "brightness-levels",
291 data->levels,
292 data->max_brightness);
293 if (ret < 0)
294 return ret;
295
296 ret = of_property_read_u32(node, "default-brightness-level",
297 &value);
298 if (ret < 0)
299 return ret;
300
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100301 data->dft_brightness = value;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200302
303 /*
304 * This property is optional, if is set enables linear
305 * interpolation between each of the values of brightness levels
306 * and creates a new pre-computed table.
307 */
308 of_property_read_u32(node, "num-interpolated-steps",
309 &num_steps);
310
311 /*
312 * Make sure that there is at least two entries in the
313 * brightness-levels table, otherwise we can't interpolate
314 * between two points.
315 */
316 if (num_steps) {
317 if (data->max_brightness < 2) {
318 dev_err(dev, "can't interpolate\n");
319 return -EINVAL;
320 }
321
322 /*
323 * Recalculate the number of brightness levels, now
324 * taking in consideration the number of interpolated
325 * steps between two levels.
326 */
327 for (i = 0; i < data->max_brightness - 1; i++) {
328 if ((data->levels[i + 1] - data->levels[i]) /
329 num_steps)
330 num_levels += num_steps;
331 else
332 num_levels++;
333 }
334 num_levels++;
335 dev_dbg(dev, "new number of brightness levels: %d\n",
336 num_levels);
337
338 /*
339 * Create a new table of brightness levels with all the
340 * interpolated steps.
341 */
342 size = sizeof(*table) * num_levels;
343 table = devm_kzalloc(dev, size, GFP_KERNEL);
344 if (!table)
345 return -ENOMEM;
346
347 /* Fill the interpolated table. */
348 levels_count = 0;
349 for (i = 0; i < data->max_brightness - 1; i++) {
350 value = data->levels[i];
351 n = (data->levels[i + 1] - value) / num_steps;
352 if (n > 0) {
353 for (j = 0; j < num_steps; j++) {
354 table[levels_count] = value;
355 value += n;
356 levels_count++;
357 }
358 } else {
359 table[levels_count] = data->levels[i];
360 levels_count++;
361 }
362 }
363 table[levels_count] = data->levels[i];
364
365 /*
366 * As we use interpolation lets remove current
367 * brightness levels table and replace for the
368 * new interpolated table.
369 */
370 devm_kfree(dev, data->levels);
371 data->levels = table;
372
373 /*
374 * Reassign max_brightness value to the new total number
375 * of brightness levels.
376 */
377 data->max_brightness = num_levels;
378 }
379
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100380 data->max_brightness--;
381 }
382
Enric Balletbo i Serra31576942018-03-28 19:03:25 +0200383 /*
384 * These values are optional and set as 0 by default, the out values
385 * are modified only if a valid u32 value can be decoded.
386 */
387 of_property_read_u32(node, "post-pwm-on-delay-ms",
388 &data->post_pwm_on_delay);
389 of_property_read_u32(node, "pwm-off-delay-ms", &data->pwm_off_delay);
390
Lothar Waßmann937222c2014-08-20 08:38:36 +0200391 data->enable_gpio = -EINVAL;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100392 return 0;
393}
394
Arvind Yadav62cdfe62017-06-20 13:22:15 +0530395static const struct of_device_id pwm_backlight_of_match[] = {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100396 { .compatible = "pwm-backlight" },
397 { }
398};
399
400MODULE_DEVICE_TABLE(of, pwm_backlight_of_match);
401#else
402static int pwm_backlight_parse_dt(struct device *dev,
403 struct platform_pwm_backlight_data *data)
404{
405 return -ENODEV;
406}
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200407
408static
409int pwm_backlight_brightness_default(struct device *dev,
410 struct platform_pwm_backlight_data *data,
411 unsigned int period)
412{
413 return -ENODEV;
414}
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100415#endif
416
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200417static int pwm_backlight_initial_power_state(const struct pwm_bl_data *pb)
418{
419 struct device_node *node = pb->dev->of_node;
420
421 /* Not booted with device tree or no phandle link to the node */
422 if (!node || !node->phandle)
423 return FB_BLANK_UNBLANK;
424
425 /*
426 * If the driver is probed from the device tree and there is a
427 * phandle link pointing to the backlight node, it is safe to
428 * assume that another driver will enable the backlight at the
429 * appropriate time. Therefore, if it is disabled, keep it so.
430 */
431
432 /* if the enable GPIO is disabled, do not enable the backlight */
433 if (pb->enable_gpio && gpiod_get_value(pb->enable_gpio) == 0)
434 return FB_BLANK_POWERDOWN;
435
436 /* The regulator is disabled, do not enable the backlight */
437 if (!regulator_is_enabled(pb->power_supply))
438 return FB_BLANK_POWERDOWN;
439
Peter Ujfalusid1b81292016-11-22 15:41:23 +0200440 /* The PWM is disabled, keep it like this */
441 if (!pwm_is_enabled(pb->pwm))
442 return FB_BLANK_POWERDOWN;
443
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200444 return FB_BLANK_UNBLANK;
445}
446
eric miao42796d32008-04-14 09:35:08 +0100447static int pwm_backlight_probe(struct platform_device *pdev)
448{
Jingoo Hanc512794c2013-11-12 15:09:04 -0800449 struct platform_pwm_backlight_data *data = dev_get_platdata(&pdev->dev);
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100450 struct platform_pwm_backlight_data defdata;
451 struct backlight_properties props;
eric miao42796d32008-04-14 09:35:08 +0100452 struct backlight_device *bl;
Philipp Zabel87770782015-12-10 10:09:06 +0100453 struct device_node *node = pdev->dev.of_node;
eric miao42796d32008-04-14 09:35:08 +0100454 struct pwm_bl_data *pb;
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200455 struct pwm_state state;
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200456 unsigned int i;
Philipp Zabel3b731252008-05-22 14:18:40 +0100457 int ret;
eric miao42796d32008-04-14 09:35:08 +0100458
Ben Dooks14563a42008-08-05 13:01:22 -0700459 if (!data) {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100460 ret = pwm_backlight_parse_dt(&pdev->dev, &defdata);
461 if (ret < 0) {
462 dev_err(&pdev->dev, "failed to find platform data\n");
463 return ret;
464 }
465
466 data = &defdata;
Ben Dooks14563a42008-08-05 13:01:22 -0700467 }
eric miao42796d32008-04-14 09:35:08 +0100468
Philipp Zabel3b731252008-05-22 14:18:40 +0100469 if (data->init) {
470 ret = data->init(&pdev->dev);
471 if (ret < 0)
472 return ret;
473 }
474
Julia Lawallce969222012-03-23 15:02:00 -0700475 pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
Philipp Zabel3b731252008-05-22 14:18:40 +0100476 if (!pb) {
477 ret = -ENOMEM;
478 goto err_alloc;
479 }
eric miao42796d32008-04-14 09:35:08 +0100480
Philipp Zabel3b731252008-05-22 14:18:40 +0100481 pb->notify = data->notify;
Dilan Leecc7993f2011-08-25 15:59:17 -0700482 pb->notify_after = data->notify_after;
Robert Morellef0a5e82011-03-22 16:30:31 -0700483 pb->check_fb = data->check_fb;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100484 pb->exit = data->exit;
Ben Dookscfc38992009-11-10 17:20:40 +0000485 pb->dev = &pdev->dev;
Enric Balletbo i Serra31576942018-03-28 19:03:25 +0200486 pb->post_pwm_on_delay = data->post_pwm_on_delay;
487 pb->pwm_off_delay = data->pwm_off_delay;
eric miao42796d32008-04-14 09:35:08 +0100488
Axel Lincdaefcc2015-05-16 22:08:10 +0800489 pb->enable_gpio = devm_gpiod_get_optional(&pdev->dev, "enable",
Philipp Zabel3698d7e2015-11-18 18:12:25 +0100490 GPIOD_ASIS);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900491 if (IS_ERR(pb->enable_gpio)) {
492 ret = PTR_ERR(pb->enable_gpio);
Alexandre Courbotff9c5422014-06-25 18:18:18 +0900493 goto err_alloc;
Alexandre Courbot257462d2014-02-27 14:53:34 +0900494 }
Thierry Reding8265b2e2013-08-30 12:32:18 +0200495
Alexandre Courbot257462d2014-02-27 14:53:34 +0900496 /*
497 * Compatibility fallback for drivers still using the integer GPIO
498 * platform data. Must go away soon.
499 */
500 if (!pb->enable_gpio && gpio_is_valid(data->enable_gpio)) {
501 ret = devm_gpio_request_one(&pdev->dev, data->enable_gpio,
502 GPIOF_OUT_INIT_HIGH, "enable");
Thierry Reding8265b2e2013-08-30 12:32:18 +0200503 if (ret < 0) {
504 dev_err(&pdev->dev, "failed to request GPIO#%d: %d\n",
Alexandre Courbot257462d2014-02-27 14:53:34 +0900505 data->enable_gpio, ret);
Thierry Reding8265b2e2013-08-30 12:32:18 +0200506 goto err_alloc;
507 }
Alexandre Courbot257462d2014-02-27 14:53:34 +0900508
509 pb->enable_gpio = gpio_to_desc(data->enable_gpio);
Thierry Reding8265b2e2013-08-30 12:32:18 +0200510 }
511
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200512 /*
Geert Uytterhoeven892c7782017-04-04 12:54:35 +0200513 * If the GPIO is not known to be already configured as output, that
Wolfram Sangbb084c02018-01-14 22:07:10 +0100514 * is, if gpiod_get_direction returns either 1 or -EINVAL, change the
515 * direction to output and set the GPIO as active.
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200516 * Do not force the GPIO to active when it was already output as it
517 * could cause backlight flickering or we would enable the backlight too
518 * early. Leave the decision of the initial backlight state for later.
519 */
520 if (pb->enable_gpio &&
Wolfram Sangbb084c02018-01-14 22:07:10 +0100521 gpiod_get_direction(pb->enable_gpio) != 0)
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200522 gpiod_direction_output(pb->enable_gpio, 1);
Philipp Zabel3698d7e2015-11-18 18:12:25 +0100523
Thierry Reding22ceeee2013-08-30 12:38:34 +0200524 pb->power_supply = devm_regulator_get(&pdev->dev, "power");
525 if (IS_ERR(pb->power_supply)) {
526 ret = PTR_ERR(pb->power_supply);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900527 goto err_alloc;
Thierry Reding22ceeee2013-08-30 12:38:34 +0200528 }
eric miao42796d32008-04-14 09:35:08 +0100529
Sachin Kamat60ce7022012-09-17 11:50:47 +0530530 pb->pwm = devm_pwm_get(&pdev->dev, NULL);
Philipp Zabel87770782015-12-10 10:09:06 +0100531 if (IS_ERR(pb->pwm) && PTR_ERR(pb->pwm) != -EPROBE_DEFER && !node) {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100532 dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +0300533 pb->legacy = true;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100534 pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
Vladimir Zapolskiydc881122015-10-12 15:29:03 +0300535 }
536
537 if (IS_ERR(pb->pwm)) {
538 ret = PTR_ERR(pb->pwm);
539 if (ret != -EPROBE_DEFER)
540 dev_err(&pdev->dev, "unable to request PWM\n");
541 goto err_alloc;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100542 }
543
544 dev_dbg(&pdev->dev, "got pwm for backlight\n");
545
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200546 /* Sync up PWM state. */
547 pwm_init_state(pb->pwm, &state);
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200548
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200549 /*
550 * The DT case will set the pwm_period_ns field to 0 and store the
551 * period, parsed from the DT, in the PWM device. For the non-DT case,
552 * set the period from platform data if it has not already been set
553 * via the PWM lookup table.
554 */
555 if (!state.period && (data->pwm_period_ns > 0))
556 state.period = data->pwm_period_ns;
557
558 ret = pwm_apply_state(pb->pwm, &state);
559 if (ret) {
560 dev_err(&pdev->dev, "failed to apply initial PWM state: %d\n",
561 ret);
562 goto err_alloc;
563 }
564
565 if (!data->levels) {
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200566 ret = pwm_backlight_brightness_default(&pdev->dev, data,
567 state.period);
568 if (ret < 0) {
569 dev_err(&pdev->dev,
570 "failed to setup default brightness table\n");
571 goto err_alloc;
572 }
573 }
574
575 for (i = 0; i <= data->max_brightness; i++) {
576 if (data->levels[i] > pb->scale)
577 pb->scale = data->levels[i];
578
579 pb->levels = data->levels;
580 }
581
Enric Balletbo i Serrae6bcca02018-08-14 18:50:59 +0200582 pb->lth_brightness = data->lth_brightness * (state.period / pb->scale);
eric miao42796d32008-04-14 09:35:08 +0100583
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500584 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700585 props.type = BACKLIGHT_RAW;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500586 props.max_brightness = data->max_brightness;
587 bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
588 &pwm_backlight_ops, &props);
eric miao42796d32008-04-14 09:35:08 +0100589 if (IS_ERR(bl)) {
590 dev_err(&pdev->dev, "failed to register backlight\n");
Philipp Zabel3b731252008-05-22 14:18:40 +0100591 ret = PTR_ERR(bl);
Vladimir Zapolskiy60d613d2015-06-14 17:32:14 +0300592 if (pb->legacy)
593 pwm_free(pb->pwm);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900594 goto err_alloc;
eric miao42796d32008-04-14 09:35:08 +0100595 }
596
Peter Ujfalusi83cfd722013-01-22 14:39:54 +0100597 if (data->dft_brightness > data->max_brightness) {
598 dev_warn(&pdev->dev,
599 "invalid default brightness level: %u, using %u\n",
600 data->dft_brightness, data->max_brightness);
601 data->dft_brightness = data->max_brightness;
602 }
603
eric miao42796d32008-04-14 09:35:08 +0100604 bl->props.brightness = data->dft_brightness;
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200605 bl->props.power = pwm_backlight_initial_power_state(pb);
eric miao42796d32008-04-14 09:35:08 +0100606 backlight_update_status(bl);
607
608 platform_set_drvdata(pdev, bl);
609 return 0;
Philipp Zabel3b731252008-05-22 14:18:40 +0100610
Philipp Zabel3b731252008-05-22 14:18:40 +0100611err_alloc:
612 if (data->exit)
613 data->exit(&pdev->dev);
614 return ret;
eric miao42796d32008-04-14 09:35:08 +0100615}
616
617static int pwm_backlight_remove(struct platform_device *pdev)
618{
619 struct backlight_device *bl = platform_get_drvdata(pdev);
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800620 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100621
622 backlight_device_unregister(bl);
Thierry Reding62b744a2013-10-07 11:32:02 +0200623 pwm_backlight_power_off(pb);
Thierry Reding668e63c2013-10-07 11:30:50 +0200624
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100625 if (pb->exit)
626 pb->exit(&pdev->dev);
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +0300627 if (pb->legacy)
628 pwm_free(pb->pwm);
Thierry Reding668e63c2013-10-07 11:30:50 +0200629
eric miao42796d32008-04-14 09:35:08 +0100630 return 0;
631}
632
Thierry Reding5f33b892014-04-29 17:28:59 +0200633static void pwm_backlight_shutdown(struct platform_device *pdev)
634{
635 struct backlight_device *bl = platform_get_drvdata(pdev);
636 struct pwm_bl_data *pb = bl_get_data(bl);
637
638 pwm_backlight_power_off(pb);
639}
640
Jingoo Hanc7911262013-02-25 17:15:47 +0900641#ifdef CONFIG_PM_SLEEP
Mark Browne2c17bc2012-01-10 15:09:22 -0800642static int pwm_backlight_suspend(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100643{
Mark Browne2c17bc2012-01-10 15:09:22 -0800644 struct backlight_device *bl = dev_get_drvdata(dev);
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800645 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100646
Marc Zyngier82e8b542009-06-19 10:50:54 +0200647 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000648 pb->notify(pb->dev, 0);
Thierry Reding668e63c2013-10-07 11:30:50 +0200649
Thierry Reding62b744a2013-10-07 11:32:02 +0200650 pwm_backlight_power_off(pb);
Thierry Reding668e63c2013-10-07 11:30:50 +0200651
Dilan Leecc7993f2011-08-25 15:59:17 -0700652 if (pb->notify_after)
653 pb->notify_after(pb->dev, 0);
Thierry Reding668e63c2013-10-07 11:30:50 +0200654
eric miao42796d32008-04-14 09:35:08 +0100655 return 0;
656}
657
Mark Browne2c17bc2012-01-10 15:09:22 -0800658static int pwm_backlight_resume(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100659{
Mark Browne2c17bc2012-01-10 15:09:22 -0800660 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100661
662 backlight_update_status(bl);
Thierry Reding668e63c2013-10-07 11:30:50 +0200663
eric miao42796d32008-04-14 09:35:08 +0100664 return 0;
665}
Jingoo Hanc7911262013-02-25 17:15:47 +0900666#endif
Mark Browne2c17bc2012-01-10 15:09:22 -0800667
Huayi Li1dea1fd2013-10-09 10:33:02 +0800668static const struct dev_pm_ops pwm_backlight_pm_ops = {
669#ifdef CONFIG_PM_SLEEP
670 .suspend = pwm_backlight_suspend,
671 .resume = pwm_backlight_resume,
672 .poweroff = pwm_backlight_suspend,
673 .restore = pwm_backlight_resume,
674#endif
675};
Mark Browne2c17bc2012-01-10 15:09:22 -0800676
eric miao42796d32008-04-14 09:35:08 +0100677static struct platform_driver pwm_backlight_driver = {
678 .driver = {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100679 .name = "pwm-backlight",
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100680 .pm = &pwm_backlight_pm_ops,
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100681 .of_match_table = of_match_ptr(pwm_backlight_of_match),
eric miao42796d32008-04-14 09:35:08 +0100682 },
683 .probe = pwm_backlight_probe,
684 .remove = pwm_backlight_remove,
Thierry Reding5f33b892014-04-29 17:28:59 +0200685 .shutdown = pwm_backlight_shutdown,
eric miao42796d32008-04-14 09:35:08 +0100686};
687
Axel Lin81178e02012-01-10 15:09:11 -0800688module_platform_driver(pwm_backlight_driver);
eric miao42796d32008-04-14 09:35:08 +0100689
690MODULE_DESCRIPTION("PWM based Backlight Driver");
691MODULE_LICENSE("GPL");
Ben Dooks8cd68192008-08-05 13:01:24 -0700692MODULE_ALIAS("platform:pwm-backlight");