blob: 9ee4c1b735b28727b7e27f2732b6328eb1e81910 [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;
eric miao42796d32008-04-14 09:35:08 +010031 unsigned int period;
Arun Murthyfef77642010-11-11 14:05:28 -080032 unsigned int lth_brightness;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +010033 unsigned int *levels;
Thierry Reding97c38432013-10-02 18:01:02 +020034 bool enabled;
Thierry Reding22ceeee2013-08-30 12:38:34 +020035 struct regulator *power_supply;
Alexandre Courbot257462d2014-02-27 14:53:34 +090036 struct gpio_desc *enable_gpio;
Mike Dunn8f43e182013-09-22 09:59:56 -070037 unsigned int scale;
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +030038 bool legacy;
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020039 unsigned int post_pwm_on_delay;
40 unsigned int pwm_off_delay;
Ben Dookscfc38992009-11-10 17:20:40 +000041 int (*notify)(struct device *,
42 int brightness);
Dilan Leecc7993f2011-08-25 15:59:17 -070043 void (*notify_after)(struct device *,
44 int brightness);
Robert Morellef0a5e82011-03-22 16:30:31 -070045 int (*check_fb)(struct device *, struct fb_info *);
Thierry Reding3e3ed6c2011-12-16 21:25:29 +010046 void (*exit)(struct device *);
eric miao42796d32008-04-14 09:35:08 +010047};
48
Mike Dunn8f43e182013-09-22 09:59:56 -070049static void pwm_backlight_power_on(struct pwm_bl_data *pb, int brightness)
Thierry Reding62b744a2013-10-07 11:32:02 +020050{
Thierry Reding73d4e2b2013-10-22 09:37:05 +020051 int err;
Thierry Reding62b744a2013-10-07 11:32:02 +020052
Thierry Reding97c38432013-10-02 18:01:02 +020053 if (pb->enabled)
54 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 Serra5fb5cae2018-03-28 19:03:23 +020060 pwm_enable(pb->pwm);
61
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020062 if (pb->post_pwm_on_delay)
63 msleep(pb->post_pwm_on_delay);
64
Alexandre Courbot257462d2014-02-27 14:53:34 +090065 if (pb->enable_gpio)
Maxime Ripard0c9501f2016-08-31 10:18:12 +020066 gpiod_set_value_cansleep(pb->enable_gpio, 1);
Thierry Reding8265b2e2013-08-30 12:32:18 +020067
Thierry Reding97c38432013-10-02 18:01:02 +020068 pb->enabled = true;
Thierry Reding62b744a2013-10-07 11:32:02 +020069}
70
71static void pwm_backlight_power_off(struct pwm_bl_data *pb)
72{
Thierry Reding97c38432013-10-02 18:01:02 +020073 if (!pb->enabled)
74 return;
75
Alexandre Courbot257462d2014-02-27 14:53:34 +090076 if (pb->enable_gpio)
Maxime Ripard0c9501f2016-08-31 10:18:12 +020077 gpiod_set_value_cansleep(pb->enable_gpio, 0);
Thierry Reding8265b2e2013-08-30 12:32:18 +020078
Enric Balletbo i Serra31576942018-03-28 19:03:25 +020079 if (pb->pwm_off_delay)
80 msleep(pb->pwm_off_delay);
81
Enric Balletbo i Serra5fb5cae2018-03-28 19:03:23 +020082 pwm_config(pb->pwm, 0, pb->period);
83 pwm_disable(pb->pwm);
84
Thierry Reding22ceeee2013-08-30 12:38:34 +020085 regulator_disable(pb->power_supply);
Thierry Reding97c38432013-10-02 18:01:02 +020086 pb->enabled = false;
Thierry Reding62b744a2013-10-07 11:32:02 +020087}
88
Thierry Redinge4bfeda2013-10-18 10:46:24 +020089static int compute_duty_cycle(struct pwm_bl_data *pb, int brightness)
90{
91 unsigned int lth = pb->lth_brightness;
Derek Basehore5d0c49a2017-08-29 13:34:34 -070092 u64 duty_cycle;
Thierry Redinge4bfeda2013-10-18 10:46:24 +020093
94 if (pb->levels)
95 duty_cycle = pb->levels[brightness];
96 else
97 duty_cycle = brightness;
98
Derek Basehore5d0c49a2017-08-29 13:34:34 -070099 duty_cycle *= pb->period - lth;
100 do_div(duty_cycle, pb->scale);
101
102 return duty_cycle + lth;
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200103}
104
eric miao42796d32008-04-14 09:35:08 +0100105static int pwm_backlight_update_status(struct backlight_device *bl)
106{
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800107 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100108 int brightness = bl->props.brightness;
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200109 int duty_cycle;
eric miao42796d32008-04-14 09:35:08 +0100110
Alexandre Courbot01322672013-01-30 15:19:15 +0900111 if (bl->props.power != FB_BLANK_UNBLANK ||
112 bl->props.fb_blank != FB_BLANK_UNBLANK ||
113 bl->props.state & BL_CORE_FBBLANK)
eric miao42796d32008-04-14 09:35:08 +0100114 brightness = 0;
115
Philipp Zabel3b731252008-05-22 14:18:40 +0100116 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000117 brightness = pb->notify(pb->dev, brightness);
Philipp Zabel3b731252008-05-22 14:18:40 +0100118
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200119 if (brightness > 0) {
120 duty_cycle = compute_duty_cycle(pb, brightness);
Alexandre Courbot9fb978b2012-07-09 15:04:23 +0900121 pwm_config(pb->pwm, duty_cycle, pb->period);
Mike Dunn8f43e182013-09-22 09:59:56 -0700122 pwm_backlight_power_on(pb, brightness);
Thierry Redinge4bfeda2013-10-18 10:46:24 +0200123 } else
Thierry Reding62b744a2013-10-07 11:32:02 +0200124 pwm_backlight_power_off(pb);
Dilan Leecc7993f2011-08-25 15:59:17 -0700125
126 if (pb->notify_after)
127 pb->notify_after(pb->dev, brightness);
128
eric miao42796d32008-04-14 09:35:08 +0100129 return 0;
130}
131
Robert Morellef0a5e82011-03-22 16:30:31 -0700132static int pwm_backlight_check_fb(struct backlight_device *bl,
133 struct fb_info *info)
134{
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800135 struct pwm_bl_data *pb = bl_get_data(bl);
Robert Morellef0a5e82011-03-22 16:30:31 -0700136
137 return !pb->check_fb || pb->check_fb(pb->dev, info);
138}
139
Emese Revfy9905a432009-12-14 00:58:57 +0100140static const struct backlight_ops pwm_backlight_ops = {
eric miao42796d32008-04-14 09:35:08 +0100141 .update_status = pwm_backlight_update_status,
Robert Morellef0a5e82011-03-22 16:30:31 -0700142 .check_fb = pwm_backlight_check_fb,
eric miao42796d32008-04-14 09:35:08 +0100143};
144
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100145#ifdef CONFIG_OF
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200146#define PWM_LUMINANCE_SCALE 10000 /* luminance scale */
147
148/* An integer based power function */
149static u64 int_pow(u64 base, int exp)
150{
151 u64 result = 1;
152
153 while (exp) {
154 if (exp & 1)
155 result *= base;
156 exp >>= 1;
157 base *= base;
158 }
159
160 return result;
161}
162
163/*
164 * CIE lightness to PWM conversion.
165 *
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
170 *
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.
174 *
175 * The following function does the fixed point maths needed to implement the
176 * above formula.
177 */
178static u64 cie1931(unsigned int lightness, unsigned int scale)
179{
180 u64 retval;
181
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));
188 }
189
190 return retval;
191}
192
193/*
194 * Create a default correction table for PWM values to create linear brightness
195 * for LED based backlights using the CIE1931 algorithm.
196 */
197static
198int pwm_backlight_brightness_default(struct device *dev,
199 struct platform_pwm_backlight_data *data,
200 unsigned int period)
201{
202 unsigned int counter = 0;
203 unsigned int i, n;
204 u64 retval;
205
206 /*
207 * Count the number of bits needed to represent the period number. The
208 * number of bits is used to calculate the number of levels used for the
209 * brightness-levels table, the purpose of this calculation is have a
210 * pre-computed table with enough levels to get linear brightness
211 * perception. The period is divided by the number of bits so for a
212 * 8-bit PWM we have 255 / 8 = 32 brightness levels or for a 16-bit PWM
213 * we have 65535 / 16 = 4096 brightness levels.
214 *
215 * Note that this method is based on empirical testing on different
216 * devices with PWM of 8 and 16 bits of resolution.
217 */
218 n = period;
219 while (n) {
220 counter += n % 2;
221 n >>= 1;
222 }
223
224 data->max_brightness = DIV_ROUND_UP(period, counter);
225 data->levels = devm_kcalloc(dev, data->max_brightness,
226 sizeof(*data->levels), GFP_KERNEL);
227 if (!data->levels)
228 return -ENOMEM;
229
230 /* Fill the table using the cie1931 algorithm */
231 for (i = 0; i < data->max_brightness; i++) {
232 retval = cie1931((i * PWM_LUMINANCE_SCALE) /
233 data->max_brightness, PWM_LUMINANCE_SCALE) *
234 period;
235 retval = DIV_ROUND_CLOSEST_ULL(retval, PWM_LUMINANCE_SCALE);
236 if (retval > UINT_MAX)
237 return -EINVAL;
238 data->levels[i] = (unsigned int)retval;
239 }
240
241 data->dft_brightness = data->max_brightness / 2;
242 data->max_brightness--;
243
244 return 0;
245}
246
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100247static int pwm_backlight_parse_dt(struct device *dev,
248 struct platform_pwm_backlight_data *data)
249{
250 struct device_node *node = dev->of_node;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200251 unsigned int num_levels = 0;
252 unsigned int levels_count;
253 unsigned int num_steps;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100254 struct property *prop;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200255 unsigned int *table;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100256 int length;
257 u32 value;
258 int ret;
259
260 if (!node)
261 return -ENODEV;
262
263 memset(data, 0, sizeof(*data));
264
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200265 /*
266 * Determine the number of brightness levels, if this property is not
267 * set a default table of brightness levels will be used.
268 */
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100269 prop = of_find_property(node, "brightness-levels", &length);
270 if (!prop)
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200271 return 0;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100272
273 data->max_brightness = length / sizeof(u32);
274
275 /* read brightness levels from DT property */
276 if (data->max_brightness > 0) {
277 size_t size = sizeof(*data->levels) * data->max_brightness;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200278 unsigned int i, j, n = 0;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100279
280 data->levels = devm_kzalloc(dev, size, GFP_KERNEL);
281 if (!data->levels)
282 return -ENOMEM;
283
284 ret = of_property_read_u32_array(node, "brightness-levels",
285 data->levels,
286 data->max_brightness);
287 if (ret < 0)
288 return ret;
289
290 ret = of_property_read_u32(node, "default-brightness-level",
291 &value);
292 if (ret < 0)
293 return ret;
294
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100295 data->dft_brightness = value;
Enric Balletbo i Serra573fe6d2018-04-09 10:33:30 +0200296
297 /*
298 * This property is optional, if is set enables linear
299 * interpolation between each of the values of brightness levels
300 * and creates a new pre-computed table.
301 */
302 of_property_read_u32(node, "num-interpolated-steps",
303 &num_steps);
304
305 /*
306 * Make sure that there is at least two entries in the
307 * brightness-levels table, otherwise we can't interpolate
308 * between two points.
309 */
310 if (num_steps) {
311 if (data->max_brightness < 2) {
312 dev_err(dev, "can't interpolate\n");
313 return -EINVAL;
314 }
315
316 /*
317 * Recalculate the number of brightness levels, now
318 * taking in consideration the number of interpolated
319 * steps between two levels.
320 */
321 for (i = 0; i < data->max_brightness - 1; i++) {
322 if ((data->levels[i + 1] - data->levels[i]) /
323 num_steps)
324 num_levels += num_steps;
325 else
326 num_levels++;
327 }
328 num_levels++;
329 dev_dbg(dev, "new number of brightness levels: %d\n",
330 num_levels);
331
332 /*
333 * Create a new table of brightness levels with all the
334 * interpolated steps.
335 */
336 size = sizeof(*table) * num_levels;
337 table = devm_kzalloc(dev, size, GFP_KERNEL);
338 if (!table)
339 return -ENOMEM;
340
341 /* Fill the interpolated table. */
342 levels_count = 0;
343 for (i = 0; i < data->max_brightness - 1; i++) {
344 value = data->levels[i];
345 n = (data->levels[i + 1] - value) / num_steps;
346 if (n > 0) {
347 for (j = 0; j < num_steps; j++) {
348 table[levels_count] = value;
349 value += n;
350 levels_count++;
351 }
352 } else {
353 table[levels_count] = data->levels[i];
354 levels_count++;
355 }
356 }
357 table[levels_count] = data->levels[i];
358
359 /*
360 * As we use interpolation lets remove current
361 * brightness levels table and replace for the
362 * new interpolated table.
363 */
364 devm_kfree(dev, data->levels);
365 data->levels = table;
366
367 /*
368 * Reassign max_brightness value to the new total number
369 * of brightness levels.
370 */
371 data->max_brightness = num_levels;
372 }
373
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100374 data->max_brightness--;
375 }
376
Enric Balletbo i Serra31576942018-03-28 19:03:25 +0200377 /*
378 * These values are optional and set as 0 by default, the out values
379 * are modified only if a valid u32 value can be decoded.
380 */
381 of_property_read_u32(node, "post-pwm-on-delay-ms",
382 &data->post_pwm_on_delay);
383 of_property_read_u32(node, "pwm-off-delay-ms", &data->pwm_off_delay);
384
Lothar Waßmann937222c2014-08-20 08:38:36 +0200385 data->enable_gpio = -EINVAL;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100386 return 0;
387}
388
Arvind Yadav62cdfe62017-06-20 13:22:15 +0530389static const struct of_device_id pwm_backlight_of_match[] = {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100390 { .compatible = "pwm-backlight" },
391 { }
392};
393
394MODULE_DEVICE_TABLE(of, pwm_backlight_of_match);
395#else
396static int pwm_backlight_parse_dt(struct device *dev,
397 struct platform_pwm_backlight_data *data)
398{
399 return -ENODEV;
400}
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200401
402static
403int pwm_backlight_brightness_default(struct device *dev,
404 struct platform_pwm_backlight_data *data,
405 unsigned int period)
406{
407 return -ENODEV;
408}
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100409#endif
410
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200411static int pwm_backlight_initial_power_state(const struct pwm_bl_data *pb)
412{
413 struct device_node *node = pb->dev->of_node;
414
415 /* Not booted with device tree or no phandle link to the node */
416 if (!node || !node->phandle)
417 return FB_BLANK_UNBLANK;
418
419 /*
420 * If the driver is probed from the device tree and there is a
421 * phandle link pointing to the backlight node, it is safe to
422 * assume that another driver will enable the backlight at the
423 * appropriate time. Therefore, if it is disabled, keep it so.
424 */
425
426 /* if the enable GPIO is disabled, do not enable the backlight */
427 if (pb->enable_gpio && gpiod_get_value(pb->enable_gpio) == 0)
428 return FB_BLANK_POWERDOWN;
429
430 /* The regulator is disabled, do not enable the backlight */
431 if (!regulator_is_enabled(pb->power_supply))
432 return FB_BLANK_POWERDOWN;
433
Peter Ujfalusid1b81292016-11-22 15:41:23 +0200434 /* The PWM is disabled, keep it like this */
435 if (!pwm_is_enabled(pb->pwm))
436 return FB_BLANK_POWERDOWN;
437
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200438 return FB_BLANK_UNBLANK;
439}
440
eric miao42796d32008-04-14 09:35:08 +0100441static int pwm_backlight_probe(struct platform_device *pdev)
442{
Jingoo Hanc512794c2013-11-12 15:09:04 -0800443 struct platform_pwm_backlight_data *data = dev_get_platdata(&pdev->dev);
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100444 struct platform_pwm_backlight_data defdata;
445 struct backlight_properties props;
eric miao42796d32008-04-14 09:35:08 +0100446 struct backlight_device *bl;
Philipp Zabel87770782015-12-10 10:09:06 +0100447 struct device_node *node = pdev->dev.of_node;
eric miao42796d32008-04-14 09:35:08 +0100448 struct pwm_bl_data *pb;
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200449 struct pwm_state state;
Boris Brezillon6cb96442016-04-14 21:17:29 +0200450 struct pwm_args pargs;
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200451 unsigned int i;
Philipp Zabel3b731252008-05-22 14:18:40 +0100452 int ret;
eric miao42796d32008-04-14 09:35:08 +0100453
Ben Dooks14563a42008-08-05 13:01:22 -0700454 if (!data) {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100455 ret = pwm_backlight_parse_dt(&pdev->dev, &defdata);
456 if (ret < 0) {
457 dev_err(&pdev->dev, "failed to find platform data\n");
458 return ret;
459 }
460
461 data = &defdata;
Ben Dooks14563a42008-08-05 13:01:22 -0700462 }
eric miao42796d32008-04-14 09:35:08 +0100463
Philipp Zabel3b731252008-05-22 14:18:40 +0100464 if (data->init) {
465 ret = data->init(&pdev->dev);
466 if (ret < 0)
467 return ret;
468 }
469
Julia Lawallce969222012-03-23 15:02:00 -0700470 pb = devm_kzalloc(&pdev->dev, sizeof(*pb), GFP_KERNEL);
Philipp Zabel3b731252008-05-22 14:18:40 +0100471 if (!pb) {
472 ret = -ENOMEM;
473 goto err_alloc;
474 }
eric miao42796d32008-04-14 09:35:08 +0100475
Philipp Zabel3b731252008-05-22 14:18:40 +0100476 pb->notify = data->notify;
Dilan Leecc7993f2011-08-25 15:59:17 -0700477 pb->notify_after = data->notify_after;
Robert Morellef0a5e82011-03-22 16:30:31 -0700478 pb->check_fb = data->check_fb;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100479 pb->exit = data->exit;
Ben Dookscfc38992009-11-10 17:20:40 +0000480 pb->dev = &pdev->dev;
Thierry Reding97c38432013-10-02 18:01:02 +0200481 pb->enabled = false;
Enric Balletbo i Serra31576942018-03-28 19:03:25 +0200482 pb->post_pwm_on_delay = data->post_pwm_on_delay;
483 pb->pwm_off_delay = data->pwm_off_delay;
eric miao42796d32008-04-14 09:35:08 +0100484
Axel Lincdaefcc2015-05-16 22:08:10 +0800485 pb->enable_gpio = devm_gpiod_get_optional(&pdev->dev, "enable",
Philipp Zabel3698d7e2015-11-18 18:12:25 +0100486 GPIOD_ASIS);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900487 if (IS_ERR(pb->enable_gpio)) {
488 ret = PTR_ERR(pb->enable_gpio);
Alexandre Courbotff9c5422014-06-25 18:18:18 +0900489 goto err_alloc;
Alexandre Courbot257462d2014-02-27 14:53:34 +0900490 }
Thierry Reding8265b2e2013-08-30 12:32:18 +0200491
Alexandre Courbot257462d2014-02-27 14:53:34 +0900492 /*
493 * Compatibility fallback for drivers still using the integer GPIO
494 * platform data. Must go away soon.
495 */
496 if (!pb->enable_gpio && gpio_is_valid(data->enable_gpio)) {
497 ret = devm_gpio_request_one(&pdev->dev, data->enable_gpio,
498 GPIOF_OUT_INIT_HIGH, "enable");
Thierry Reding8265b2e2013-08-30 12:32:18 +0200499 if (ret < 0) {
500 dev_err(&pdev->dev, "failed to request GPIO#%d: %d\n",
Alexandre Courbot257462d2014-02-27 14:53:34 +0900501 data->enable_gpio, ret);
Thierry Reding8265b2e2013-08-30 12:32:18 +0200502 goto err_alloc;
503 }
Alexandre Courbot257462d2014-02-27 14:53:34 +0900504
505 pb->enable_gpio = gpio_to_desc(data->enable_gpio);
Thierry Reding8265b2e2013-08-30 12:32:18 +0200506 }
507
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200508 /*
Geert Uytterhoeven892c7782017-04-04 12:54:35 +0200509 * If the GPIO is not known to be already configured as output, that
Wolfram Sangbb084c02018-01-14 22:07:10 +0100510 * is, if gpiod_get_direction returns either 1 or -EINVAL, change the
511 * direction to output and set the GPIO as active.
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200512 * Do not force the GPIO to active when it was already output as it
513 * could cause backlight flickering or we would enable the backlight too
514 * early. Leave the decision of the initial backlight state for later.
515 */
516 if (pb->enable_gpio &&
Wolfram Sangbb084c02018-01-14 22:07:10 +0100517 gpiod_get_direction(pb->enable_gpio) != 0)
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200518 gpiod_direction_output(pb->enable_gpio, 1);
Philipp Zabel3698d7e2015-11-18 18:12:25 +0100519
Thierry Reding22ceeee2013-08-30 12:38:34 +0200520 pb->power_supply = devm_regulator_get(&pdev->dev, "power");
521 if (IS_ERR(pb->power_supply)) {
522 ret = PTR_ERR(pb->power_supply);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900523 goto err_alloc;
Thierry Reding22ceeee2013-08-30 12:38:34 +0200524 }
eric miao42796d32008-04-14 09:35:08 +0100525
Sachin Kamat60ce7022012-09-17 11:50:47 +0530526 pb->pwm = devm_pwm_get(&pdev->dev, NULL);
Philipp Zabel87770782015-12-10 10:09:06 +0100527 if (IS_ERR(pb->pwm) && PTR_ERR(pb->pwm) != -EPROBE_DEFER && !node) {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100528 dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +0300529 pb->legacy = true;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100530 pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
Vladimir Zapolskiydc881122015-10-12 15:29:03 +0300531 }
532
533 if (IS_ERR(pb->pwm)) {
534 ret = PTR_ERR(pb->pwm);
535 if (ret != -EPROBE_DEFER)
536 dev_err(&pdev->dev, "unable to request PWM\n");
537 goto err_alloc;
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100538 }
539
540 dev_dbg(&pdev->dev, "got pwm for backlight\n");
541
Enric Balletbo i Serra88ba95b2018-04-09 10:33:32 +0200542 if (!data->levels) {
543 /* Get the PWM period (in nanoseconds) */
544 pwm_get_state(pb->pwm, &state);
545
546 ret = pwm_backlight_brightness_default(&pdev->dev, data,
547 state.period);
548 if (ret < 0) {
549 dev_err(&pdev->dev,
550 "failed to setup default brightness table\n");
551 goto err_alloc;
552 }
553 }
554
555 for (i = 0; i <= data->max_brightness; i++) {
556 if (data->levels[i] > pb->scale)
557 pb->scale = data->levels[i];
558
559 pb->levels = data->levels;
560 }
561
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100562 /*
Boris Brezillon6cb96442016-04-14 21:17:29 +0200563 * FIXME: pwm_apply_args() should be removed when switching to
564 * the atomic PWM API.
565 */
566 pwm_apply_args(pb->pwm);
567
568 /*
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100569 * The DT case will set the pwm_period_ns field to 0 and store the
570 * period, parsed from the DT, in the PWM device. For the non-DT case,
Alexandre Belloni16fc3352014-05-19 22:42:42 +0200571 * set the period from platform data if it has not already been set
572 * via the PWM lookup table.
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100573 */
Boris Brezillon6cb96442016-04-14 21:17:29 +0200574 pwm_get_args(pb->pwm, &pargs);
575 pb->period = pargs.period;
Boris BREZILLON7f044b02016-03-30 22:03:25 +0200576 if (!pb->period && (data->pwm_period_ns > 0))
Alexandre Belloni16fc3352014-05-19 22:42:42 +0200577 pb->period = data->pwm_period_ns;
Alexandre Belloni16fc3352014-05-19 22:42:42 +0200578
Mike Dunn8f43e182013-09-22 09:59:56 -0700579 pb->lth_brightness = data->lth_brightness * (pb->period / pb->scale);
eric miao42796d32008-04-14 09:35:08 +0100580
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500581 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700582 props.type = BACKLIGHT_RAW;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500583 props.max_brightness = data->max_brightness;
584 bl = backlight_device_register(dev_name(&pdev->dev), &pdev->dev, pb,
585 &pwm_backlight_ops, &props);
eric miao42796d32008-04-14 09:35:08 +0100586 if (IS_ERR(bl)) {
587 dev_err(&pdev->dev, "failed to register backlight\n");
Philipp Zabel3b731252008-05-22 14:18:40 +0100588 ret = PTR_ERR(bl);
Vladimir Zapolskiy60d613d2015-06-14 17:32:14 +0300589 if (pb->legacy)
590 pwm_free(pb->pwm);
Alexandre Courbot257462d2014-02-27 14:53:34 +0900591 goto err_alloc;
eric miao42796d32008-04-14 09:35:08 +0100592 }
593
Peter Ujfalusi83cfd722013-01-22 14:39:54 +0100594 if (data->dft_brightness > data->max_brightness) {
595 dev_warn(&pdev->dev,
596 "invalid default brightness level: %u, using %u\n",
597 data->dft_brightness, data->max_brightness);
598 data->dft_brightness = data->max_brightness;
599 }
600
eric miao42796d32008-04-14 09:35:08 +0100601 bl->props.brightness = data->dft_brightness;
Peter Ujfalusi7613c922016-11-22 15:41:22 +0200602 bl->props.power = pwm_backlight_initial_power_state(pb);
eric miao42796d32008-04-14 09:35:08 +0100603 backlight_update_status(bl);
604
605 platform_set_drvdata(pdev, bl);
606 return 0;
Philipp Zabel3b731252008-05-22 14:18:40 +0100607
Philipp Zabel3b731252008-05-22 14:18:40 +0100608err_alloc:
609 if (data->exit)
610 data->exit(&pdev->dev);
611 return ret;
eric miao42796d32008-04-14 09:35:08 +0100612}
613
614static int pwm_backlight_remove(struct platform_device *pdev)
615{
616 struct backlight_device *bl = platform_get_drvdata(pdev);
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800617 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100618
619 backlight_device_unregister(bl);
Thierry Reding62b744a2013-10-07 11:32:02 +0200620 pwm_backlight_power_off(pb);
Thierry Reding668e63c2013-10-07 11:30:50 +0200621
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100622 if (pb->exit)
623 pb->exit(&pdev->dev);
Vladimir Zapolskiyedf387b2014-10-11 16:46:26 +0300624 if (pb->legacy)
625 pwm_free(pb->pwm);
Thierry Reding668e63c2013-10-07 11:30:50 +0200626
eric miao42796d32008-04-14 09:35:08 +0100627 return 0;
628}
629
Thierry Reding5f33b892014-04-29 17:28:59 +0200630static void pwm_backlight_shutdown(struct platform_device *pdev)
631{
632 struct backlight_device *bl = platform_get_drvdata(pdev);
633 struct pwm_bl_data *pb = bl_get_data(bl);
634
635 pwm_backlight_power_off(pb);
636}
637
Jingoo Hanc7911262013-02-25 17:15:47 +0900638#ifdef CONFIG_PM_SLEEP
Mark Browne2c17bc2012-01-10 15:09:22 -0800639static int pwm_backlight_suspend(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100640{
Mark Browne2c17bc2012-01-10 15:09:22 -0800641 struct backlight_device *bl = dev_get_drvdata(dev);
Jingoo Hane6e3dbf2013-02-21 16:43:46 -0800642 struct pwm_bl_data *pb = bl_get_data(bl);
eric miao42796d32008-04-14 09:35:08 +0100643
Marc Zyngier82e8b542009-06-19 10:50:54 +0200644 if (pb->notify)
Ben Dookscfc38992009-11-10 17:20:40 +0000645 pb->notify(pb->dev, 0);
Thierry Reding668e63c2013-10-07 11:30:50 +0200646
Thierry Reding62b744a2013-10-07 11:32:02 +0200647 pwm_backlight_power_off(pb);
Thierry Reding668e63c2013-10-07 11:30:50 +0200648
Dilan Leecc7993f2011-08-25 15:59:17 -0700649 if (pb->notify_after)
650 pb->notify_after(pb->dev, 0);
Thierry Reding668e63c2013-10-07 11:30:50 +0200651
eric miao42796d32008-04-14 09:35:08 +0100652 return 0;
653}
654
Mark Browne2c17bc2012-01-10 15:09:22 -0800655static int pwm_backlight_resume(struct device *dev)
eric miao42796d32008-04-14 09:35:08 +0100656{
Mark Browne2c17bc2012-01-10 15:09:22 -0800657 struct backlight_device *bl = dev_get_drvdata(dev);
eric miao42796d32008-04-14 09:35:08 +0100658
659 backlight_update_status(bl);
Thierry Reding668e63c2013-10-07 11:30:50 +0200660
eric miao42796d32008-04-14 09:35:08 +0100661 return 0;
662}
Jingoo Hanc7911262013-02-25 17:15:47 +0900663#endif
Mark Browne2c17bc2012-01-10 15:09:22 -0800664
Huayi Li1dea1fd2013-10-09 10:33:02 +0800665static const struct dev_pm_ops pwm_backlight_pm_ops = {
666#ifdef CONFIG_PM_SLEEP
667 .suspend = pwm_backlight_suspend,
668 .resume = pwm_backlight_resume,
669 .poweroff = pwm_backlight_suspend,
670 .restore = pwm_backlight_resume,
671#endif
672};
Mark Browne2c17bc2012-01-10 15:09:22 -0800673
eric miao42796d32008-04-14 09:35:08 +0100674static struct platform_driver pwm_backlight_driver = {
675 .driver = {
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100676 .name = "pwm-backlight",
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100677 .pm = &pwm_backlight_pm_ops,
Thierry Reding3e3ed6c2011-12-16 21:25:29 +0100678 .of_match_table = of_match_ptr(pwm_backlight_of_match),
eric miao42796d32008-04-14 09:35:08 +0100679 },
680 .probe = pwm_backlight_probe,
681 .remove = pwm_backlight_remove,
Thierry Reding5f33b892014-04-29 17:28:59 +0200682 .shutdown = pwm_backlight_shutdown,
eric miao42796d32008-04-14 09:35:08 +0100683};
684
Axel Lin81178e02012-01-10 15:09:11 -0800685module_platform_driver(pwm_backlight_driver);
eric miao42796d32008-04-14 09:35:08 +0100686
687MODULE_DESCRIPTION("PWM based Backlight Driver");
688MODULE_LICENSE("GPL");
Ben Dooks8cd68192008-08-05 13:01:24 -0700689MODULE_ALIAS("platform:pwm-backlight");