blob: 2ca3a040007bb6298c3c571b7d788900d8aa3759 [file] [log] [blame]
Kim, Milo7be865a2012-03-23 15:02:01 -07001/*
2 * TI LP855x Backlight Driver
3 *
4 * Copyright (C) 2011 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/i2c.h>
15#include <linux/backlight.h>
16#include <linux/err.h>
Kim, Milo4add0662013-04-29 16:18:06 -070017#include <linux/of.h>
Kim, Milof7f95052012-07-30 14:40:53 -070018#include <linux/platform_data/lp855x.h>
Kim, Milo8cc97642012-12-17 16:00:43 -080019#include <linux/pwm.h>
Kim, Milo7be865a2012-03-23 15:02:01 -070020
Kim, Milo26e8ccc2013-02-21 16:44:06 -080021/* LP8550/1/2/3/6 Registers */
22#define LP855X_BRIGHTNESS_CTRL 0x00
23#define LP855X_DEVICE_CTRL 0x01
24#define LP855X_EEPROM_START 0xA0
25#define LP855X_EEPROM_END 0xA7
26#define LP8556_EPROM_START 0xA0
27#define LP8556_EPROM_END 0xAF
28
Milo Kim5812c132013-11-12 15:08:57 -080029/* LP8555/7 Registers */
Kim, Milo26e8ccc2013-02-21 16:44:06 -080030#define LP8557_BL_CMD 0x00
31#define LP8557_BL_MASK 0x01
32#define LP8557_BL_ON 0x01
33#define LP8557_BL_OFF 0x00
34#define LP8557_BRIGHTNESS_CTRL 0x04
35#define LP8557_CONFIG 0x10
Milo Kim5812c132013-11-12 15:08:57 -080036#define LP8555_EPROM_START 0x10
37#define LP8555_EPROM_END 0x7A
Kim, Milo26e8ccc2013-02-21 16:44:06 -080038#define LP8557_EPROM_START 0x10
39#define LP8557_EPROM_END 0x1E
Kim, Milo7be865a2012-03-23 15:02:01 -070040
Kim, Milo7be865a2012-03-23 15:02:01 -070041#define DEFAULT_BL_NAME "lcd-backlight"
42#define MAX_BRIGHTNESS 255
43
Kim, Milo0b818572013-04-29 16:18:03 -070044enum lp855x_brightness_ctrl_mode {
45 PWM_BASED = 1,
46 REGISTER_BASED,
47};
48
Kim, Milo68853bc2013-02-21 16:44:05 -080049struct lp855x;
50
51/*
52 * struct lp855x_device_config
53 * @pre_init_device: init device function call before updating the brightness
54 * @reg_brightness: register address for brigthenss control
55 * @reg_devicectrl: register address for device control
56 * @post_init_device: late init device function call
57 */
58struct lp855x_device_config {
59 int (*pre_init_device)(struct lp855x *);
60 u8 reg_brightness;
61 u8 reg_devicectrl;
62 int (*post_init_device)(struct lp855x *);
63};
64
Kim, Milo7be865a2012-03-23 15:02:01 -070065struct lp855x {
66 const char *chipname;
67 enum lp855x_chip_id chip_id;
Kim, Milo0b818572013-04-29 16:18:03 -070068 enum lp855x_brightness_ctrl_mode mode;
Kim, Milo68853bc2013-02-21 16:44:05 -080069 struct lp855x_device_config *cfg;
Kim, Milo7be865a2012-03-23 15:02:01 -070070 struct i2c_client *client;
71 struct backlight_device *bl;
72 struct device *dev;
Kim, Milo7be865a2012-03-23 15:02:01 -070073 struct lp855x_platform_data *pdata;
Kim, Milo8cc97642012-12-17 16:00:43 -080074 struct pwm_device *pwm;
Kim, Milo7be865a2012-03-23 15:02:01 -070075};
76
Kim, Milo7be865a2012-03-23 15:02:01 -070077static int lp855x_write_byte(struct lp855x *lp, u8 reg, u8 data)
78{
Kim, Miloeaa4d022012-12-17 16:00:45 -080079 return i2c_smbus_write_byte_data(lp->client, reg, data);
Kim, Milo7be865a2012-03-23 15:02:01 -070080}
81
Kim, Milo26e8ccc2013-02-21 16:44:06 -080082static int lp855x_update_bit(struct lp855x *lp, u8 reg, u8 mask, u8 data)
83{
84 int ret;
85 u8 tmp;
86
87 ret = i2c_smbus_read_byte_data(lp->client, reg);
88 if (ret < 0) {
89 dev_err(lp->dev, "failed to read 0x%.2x\n", reg);
90 return ret;
91 }
92
93 tmp = (u8)ret;
94 tmp &= ~mask;
95 tmp |= data & mask;
96
97 return lp855x_write_byte(lp, reg, tmp);
98}
99
Kim, Milo7be865a2012-03-23 15:02:01 -0700100static bool lp855x_is_valid_rom_area(struct lp855x *lp, u8 addr)
101{
102 u8 start, end;
103
104 switch (lp->chip_id) {
105 case LP8550:
106 case LP8551:
107 case LP8552:
108 case LP8553:
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800109 start = LP855X_EEPROM_START;
110 end = LP855X_EEPROM_END;
Kim, Milo7be865a2012-03-23 15:02:01 -0700111 break;
112 case LP8556:
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800113 start = LP8556_EPROM_START;
114 end = LP8556_EPROM_END;
115 break;
Milo Kim5812c132013-11-12 15:08:57 -0800116 case LP8555:
117 start = LP8555_EPROM_START;
118 end = LP8555_EPROM_END;
119 break;
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800120 case LP8557:
121 start = LP8557_EPROM_START;
122 end = LP8557_EPROM_END;
Kim, Milo7be865a2012-03-23 15:02:01 -0700123 break;
124 default:
125 return false;
126 }
127
Jingoo Han2ce23862014-01-23 15:54:32 -0800128 return addr >= start && addr <= end;
Kim, Milo7be865a2012-03-23 15:02:01 -0700129}
130
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800131static int lp8557_bl_off(struct lp855x *lp)
132{
133 /* BL_ON = 0 before updating EPROM settings */
134 return lp855x_update_bit(lp, LP8557_BL_CMD, LP8557_BL_MASK,
135 LP8557_BL_OFF);
136}
137
138static int lp8557_bl_on(struct lp855x *lp)
139{
140 /* BL_ON = 1 after updating EPROM settings */
141 return lp855x_update_bit(lp, LP8557_BL_CMD, LP8557_BL_MASK,
142 LP8557_BL_ON);
143}
144
Kim, Milo68853bc2013-02-21 16:44:05 -0800145static struct lp855x_device_config lp855x_dev_cfg = {
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800146 .reg_brightness = LP855X_BRIGHTNESS_CTRL,
147 .reg_devicectrl = LP855X_DEVICE_CTRL,
148};
149
150static struct lp855x_device_config lp8557_dev_cfg = {
151 .reg_brightness = LP8557_BRIGHTNESS_CTRL,
152 .reg_devicectrl = LP8557_CONFIG,
153 .pre_init_device = lp8557_bl_off,
154 .post_init_device = lp8557_bl_on,
Kim, Milo68853bc2013-02-21 16:44:05 -0800155};
156
157/*
158 * Device specific configuration flow
159 *
160 * a) pre_init_device(optional)
161 * b) update the brightness register
162 * c) update device control register
163 * d) update ROM area(optional)
164 * e) post_init_device(optional)
165 *
166 */
167static int lp855x_configure(struct lp855x *lp)
Kim, Milo7be865a2012-03-23 15:02:01 -0700168{
169 u8 val, addr;
170 int i, ret;
171 struct lp855x_platform_data *pd = lp->pdata;
172
Kim, Milo68853bc2013-02-21 16:44:05 -0800173 switch (lp->chip_id) {
Milo Kim5812c132013-11-12 15:08:57 -0800174 case LP8550:
175 case LP8551:
176 case LP8552:
177 case LP8553:
178 case LP8556:
Kim, Milo68853bc2013-02-21 16:44:05 -0800179 lp->cfg = &lp855x_dev_cfg;
180 break;
Milo Kim5812c132013-11-12 15:08:57 -0800181 case LP8555:
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800182 case LP8557:
183 lp->cfg = &lp8557_dev_cfg;
184 break;
Kim, Milo68853bc2013-02-21 16:44:05 -0800185 default:
186 return -EINVAL;
187 }
188
189 if (lp->cfg->pre_init_device) {
190 ret = lp->cfg->pre_init_device(lp);
191 if (ret) {
192 dev_err(lp->dev, "pre init device err: %d\n", ret);
193 goto err;
194 }
195 }
196
Kim, Milo7be865a2012-03-23 15:02:01 -0700197 val = pd->initial_brightness;
Kim, Milo68853bc2013-02-21 16:44:05 -0800198 ret = lp855x_write_byte(lp, lp->cfg->reg_brightness, val);
Kim, Milo7be865a2012-03-23 15:02:01 -0700199 if (ret)
Kim, Milo68853bc2013-02-21 16:44:05 -0800200 goto err;
Kim, Milo7be865a2012-03-23 15:02:01 -0700201
202 val = pd->device_control;
Kim, Milo68853bc2013-02-21 16:44:05 -0800203 ret = lp855x_write_byte(lp, lp->cfg->reg_devicectrl, val);
Kim, Milo7be865a2012-03-23 15:02:01 -0700204 if (ret)
Kim, Milo68853bc2013-02-21 16:44:05 -0800205 goto err;
Kim, Milo7be865a2012-03-23 15:02:01 -0700206
Kim, Miloc365e592013-04-29 16:18:05 -0700207 if (pd->size_program > 0) {
Kim, Milo7be865a2012-03-23 15:02:01 -0700208 for (i = 0; i < pd->size_program; i++) {
209 addr = pd->rom_data[i].addr;
210 val = pd->rom_data[i].val;
211 if (!lp855x_is_valid_rom_area(lp, addr))
212 continue;
213
214 ret = lp855x_write_byte(lp, addr, val);
215 if (ret)
Kim, Milo68853bc2013-02-21 16:44:05 -0800216 goto err;
Kim, Milo7be865a2012-03-23 15:02:01 -0700217 }
218 }
219
Kim, Milo68853bc2013-02-21 16:44:05 -0800220 if (lp->cfg->post_init_device) {
221 ret = lp->cfg->post_init_device(lp);
222 if (ret) {
223 dev_err(lp->dev, "post init device err: %d\n", ret);
224 goto err;
225 }
226 }
227
228 return 0;
229
230err:
Kim, Milo7be865a2012-03-23 15:02:01 -0700231 return ret;
232}
233
Kim, Milo8cc97642012-12-17 16:00:43 -0800234static void lp855x_pwm_ctrl(struct lp855x *lp, int br, int max_br)
235{
236 unsigned int period = lp->pdata->period_ns;
237 unsigned int duty = br * period / max_br;
238 struct pwm_device *pwm;
239
240 /* request pwm device with the consumer name */
241 if (!lp->pwm) {
242 pwm = devm_pwm_get(lp->dev, lp->chipname);
243 if (IS_ERR(pwm))
244 return;
245
246 lp->pwm = pwm;
247 }
248
249 pwm_config(lp->pwm, duty, period);
250 if (duty)
251 pwm_enable(lp->pwm);
252 else
253 pwm_disable(lp->pwm);
254}
255
Kim, Milo7be865a2012-03-23 15:02:01 -0700256static int lp855x_bl_update_status(struct backlight_device *bl)
257{
258 struct lp855x *lp = bl_get_data(bl);
Kim, Milo7be865a2012-03-23 15:02:01 -0700259
Shingo Nakao9f0a5112013-07-02 14:15:54 +0200260 if (bl->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK))
Kim, Milo7be865a2012-03-23 15:02:01 -0700261 bl->props.brightness = 0;
262
Kim, Milo0b818572013-04-29 16:18:03 -0700263 if (lp->mode == PWM_BASED) {
Kim, Milo7be865a2012-03-23 15:02:01 -0700264 int br = bl->props.brightness;
265 int max_br = bl->props.max_brightness;
266
Kim, Milo8cc97642012-12-17 16:00:43 -0800267 lp855x_pwm_ctrl(lp, br, max_br);
Kim, Milo7be865a2012-03-23 15:02:01 -0700268
Kim, Milo0b818572013-04-29 16:18:03 -0700269 } else if (lp->mode == REGISTER_BASED) {
Kim, Milo7be865a2012-03-23 15:02:01 -0700270 u8 val = bl->props.brightness;
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800271 lp855x_write_byte(lp, lp->cfg->reg_brightness, val);
Kim, Milo7be865a2012-03-23 15:02:01 -0700272 }
273
274 return 0;
275}
276
277static int lp855x_bl_get_brightness(struct backlight_device *bl)
278{
Kim, Milo7be865a2012-03-23 15:02:01 -0700279 return bl->props.brightness;
280}
281
282static const struct backlight_ops lp855x_bl_ops = {
283 .options = BL_CORE_SUSPENDRESUME,
284 .update_status = lp855x_bl_update_status,
285 .get_brightness = lp855x_bl_get_brightness,
286};
287
288static int lp855x_backlight_register(struct lp855x *lp)
289{
290 struct backlight_device *bl;
291 struct backlight_properties props;
292 struct lp855x_platform_data *pdata = lp->pdata;
Kim, Milo600ffd32013-04-29 16:18:02 -0700293 const char *name = pdata->name ? : DEFAULT_BL_NAME;
Kim, Milo7be865a2012-03-23 15:02:01 -0700294
295 props.type = BACKLIGHT_PLATFORM;
296 props.max_brightness = MAX_BRIGHTNESS;
297
298 if (pdata->initial_brightness > props.max_brightness)
299 pdata->initial_brightness = props.max_brightness;
300
301 props.brightness = pdata->initial_brightness;
302
Jingoo Han6255e8e2013-11-12 15:09:19 -0800303 bl = devm_backlight_device_register(lp->dev, name, lp->dev, lp,
Kim, Milo7be865a2012-03-23 15:02:01 -0700304 &lp855x_bl_ops, &props);
305 if (IS_ERR(bl))
306 return PTR_ERR(bl);
307
308 lp->bl = bl;
309
310 return 0;
311}
312
Kim, Milo7be865a2012-03-23 15:02:01 -0700313static ssize_t lp855x_get_chip_id(struct device *dev,
314 struct device_attribute *attr, char *buf)
315{
316 struct lp855x *lp = dev_get_drvdata(dev);
Kim, Milo6a7aeb12013-04-29 16:17:52 -0700317 return scnprintf(buf, PAGE_SIZE, "%s\n", lp->chipname);
Kim, Milo7be865a2012-03-23 15:02:01 -0700318}
319
320static ssize_t lp855x_get_bl_ctl_mode(struct device *dev,
321 struct device_attribute *attr, char *buf)
322{
323 struct lp855x *lp = dev_get_drvdata(dev);
Kim, Milo7be865a2012-03-23 15:02:01 -0700324 char *strmode = NULL;
325
Kim, Milo0b818572013-04-29 16:18:03 -0700326 if (lp->mode == PWM_BASED)
Kim, Milo7be865a2012-03-23 15:02:01 -0700327 strmode = "pwm based";
Kim, Milo0b818572013-04-29 16:18:03 -0700328 else if (lp->mode == REGISTER_BASED)
Kim, Milo7be865a2012-03-23 15:02:01 -0700329 strmode = "register based";
330
Kim, Milo6a7aeb12013-04-29 16:17:52 -0700331 return scnprintf(buf, PAGE_SIZE, "%s\n", strmode);
Kim, Milo7be865a2012-03-23 15:02:01 -0700332}
333
334static DEVICE_ATTR(chip_id, S_IRUGO, lp855x_get_chip_id, NULL);
335static DEVICE_ATTR(bl_ctl_mode, S_IRUGO, lp855x_get_bl_ctl_mode, NULL);
336
337static struct attribute *lp855x_attributes[] = {
338 &dev_attr_chip_id.attr,
339 &dev_attr_bl_ctl_mode.attr,
340 NULL,
341};
342
343static const struct attribute_group lp855x_attr_group = {
344 .attrs = lp855x_attributes,
345};
346
Kim, Milo4add0662013-04-29 16:18:06 -0700347#ifdef CONFIG_OF
348static int lp855x_parse_dt(struct device *dev, struct device_node *node)
349{
350 struct lp855x_platform_data *pdata;
351 int rom_length;
352
353 if (!node) {
354 dev_err(dev, "no platform data\n");
355 return -EINVAL;
356 }
357
358 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
359 if (!pdata)
360 return -ENOMEM;
361
362 of_property_read_string(node, "bl-name", &pdata->name);
363 of_property_read_u8(node, "dev-ctrl", &pdata->device_control);
364 of_property_read_u8(node, "init-brt", &pdata->initial_brightness);
365 of_property_read_u32(node, "pwm-period", &pdata->period_ns);
366
367 /* Fill ROM platform data if defined */
368 rom_length = of_get_child_count(node);
369 if (rom_length > 0) {
370 struct lp855x_rom_data *rom;
371 struct device_node *child;
372 int i = 0;
373
374 rom = devm_kzalloc(dev, sizeof(*rom) * rom_length, GFP_KERNEL);
375 if (!rom)
376 return -ENOMEM;
377
378 for_each_child_of_node(node, child) {
379 of_property_read_u8(child, "rom-addr", &rom[i].addr);
380 of_property_read_u8(child, "rom-val", &rom[i].val);
381 i++;
382 }
383
384 pdata->size_program = rom_length;
385 pdata->rom_data = &rom[0];
386 }
387
388 dev->platform_data = pdata;
389
390 return 0;
391}
392#else
393static int lp855x_parse_dt(struct device *dev, struct device_node *node)
394{
395 return -EINVAL;
396}
397#endif
398
Kim, Milo7be865a2012-03-23 15:02:01 -0700399static int lp855x_probe(struct i2c_client *cl, const struct i2c_device_id *id)
400{
401 struct lp855x *lp;
Jingoo Hanc512794c2013-11-12 15:09:04 -0800402 struct lp855x_platform_data *pdata = dev_get_platdata(&cl->dev);
Kim, Milo4add0662013-04-29 16:18:06 -0700403 struct device_node *node = cl->dev.of_node;
Kim, Milo7be865a2012-03-23 15:02:01 -0700404 int ret;
405
406 if (!pdata) {
Kim, Milo4add0662013-04-29 16:18:06 -0700407 ret = lp855x_parse_dt(&cl->dev, node);
408 if (ret < 0)
409 return ret;
410
Jingoo Hanc512794c2013-11-12 15:09:04 -0800411 pdata = dev_get_platdata(&cl->dev);
Kim, Milo7be865a2012-03-23 15:02:01 -0700412 }
413
414 if (!i2c_check_functionality(cl->adapter, I2C_FUNC_SMBUS_I2C_BLOCK))
415 return -EIO;
416
417 lp = devm_kzalloc(&cl->dev, sizeof(struct lp855x), GFP_KERNEL);
418 if (!lp)
419 return -ENOMEM;
420
Kim, Milo0b818572013-04-29 16:18:03 -0700421 if (pdata->period_ns > 0)
422 lp->mode = PWM_BASED;
423 else
424 lp->mode = REGISTER_BASED;
425
Kim, Milo7be865a2012-03-23 15:02:01 -0700426 lp->client = cl;
427 lp->dev = &cl->dev;
428 lp->pdata = pdata;
429 lp->chipname = id->name;
430 lp->chip_id = id->driver_data;
431 i2c_set_clientdata(cl, lp);
432
Kim, Milo68853bc2013-02-21 16:44:05 -0800433 ret = lp855x_configure(lp);
Kim, Milo7be865a2012-03-23 15:02:01 -0700434 if (ret) {
Kim, Milo68853bc2013-02-21 16:44:05 -0800435 dev_err(lp->dev, "device config err: %d", ret);
Jingoo Han6255e8e2013-11-12 15:09:19 -0800436 return ret;
Kim, Milo7be865a2012-03-23 15:02:01 -0700437 }
438
439 ret = lp855x_backlight_register(lp);
440 if (ret) {
441 dev_err(lp->dev,
442 "failed to register backlight. err: %d\n", ret);
Jingoo Han6255e8e2013-11-12 15:09:19 -0800443 return ret;
Kim, Milo7be865a2012-03-23 15:02:01 -0700444 }
445
446 ret = sysfs_create_group(&lp->dev->kobj, &lp855x_attr_group);
447 if (ret) {
448 dev_err(lp->dev, "failed to register sysfs. err: %d\n", ret);
Jingoo Han6255e8e2013-11-12 15:09:19 -0800449 return ret;
Kim, Milo7be865a2012-03-23 15:02:01 -0700450 }
451
452 backlight_update_status(lp->bl);
453 return 0;
Kim, Milo7be865a2012-03-23 15:02:01 -0700454}
455
Bill Pemberton7e4b9d02012-11-19 13:26:34 -0500456static int lp855x_remove(struct i2c_client *cl)
Kim, Milo7be865a2012-03-23 15:02:01 -0700457{
458 struct lp855x *lp = i2c_get_clientdata(cl);
459
460 lp->bl->props.brightness = 0;
461 backlight_update_status(lp->bl);
462 sysfs_remove_group(&lp->dev->kobj, &lp855x_attr_group);
Kim, Milo7be865a2012-03-23 15:02:01 -0700463
464 return 0;
465}
466
Kim, Milo4add0662013-04-29 16:18:06 -0700467static const struct of_device_id lp855x_dt_ids[] = {
468 { .compatible = "ti,lp8550", },
469 { .compatible = "ti,lp8551", },
470 { .compatible = "ti,lp8552", },
471 { .compatible = "ti,lp8553", },
Milo Kim5812c132013-11-12 15:08:57 -0800472 { .compatible = "ti,lp8555", },
Kim, Milo4add0662013-04-29 16:18:06 -0700473 { .compatible = "ti,lp8556", },
474 { .compatible = "ti,lp8557", },
475 { }
476};
477MODULE_DEVICE_TABLE(of, lp855x_dt_ids);
478
Kim, Milo7be865a2012-03-23 15:02:01 -0700479static const struct i2c_device_id lp855x_ids[] = {
480 {"lp8550", LP8550},
481 {"lp8551", LP8551},
482 {"lp8552", LP8552},
483 {"lp8553", LP8553},
Milo Kim5812c132013-11-12 15:08:57 -0800484 {"lp8555", LP8555},
Kim, Milo7be865a2012-03-23 15:02:01 -0700485 {"lp8556", LP8556},
Kim, Milo26e8ccc2013-02-21 16:44:06 -0800486 {"lp8557", LP8557},
Kim, Milo7be865a2012-03-23 15:02:01 -0700487 { }
488};
489MODULE_DEVICE_TABLE(i2c, lp855x_ids);
490
491static struct i2c_driver lp855x_driver = {
492 .driver = {
493 .name = "lp855x",
Kim, Milo4add0662013-04-29 16:18:06 -0700494 .of_match_table = of_match_ptr(lp855x_dt_ids),
Kim, Milo7be865a2012-03-23 15:02:01 -0700495 },
496 .probe = lp855x_probe,
Bill Pembertond1723fa2012-11-19 13:21:09 -0500497 .remove = lp855x_remove,
Kim, Milo7be865a2012-03-23 15:02:01 -0700498 .id_table = lp855x_ids,
499};
500
501module_i2c_driver(lp855x_driver);
502
503MODULE_DESCRIPTION("Texas Instruments LP855x Backlight driver");
504MODULE_AUTHOR("Milo Kim <milo.kim@ti.com>");
505MODULE_LICENSE("GPL");