2 * TI LP855x Backlight Driver
4 * Copyright (C) 2011 Texas Instruments
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.
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>
18 #include <linux/platform_data/lp855x.h>
19 #include <linux/pwm.h>
20 #include <linux/regulator/consumer.h>
22 /* LP8550/1/2/3/6 Registers */
23 #define LP855X_BRIGHTNESS_CTRL 0x00
24 #define LP855X_DEVICE_CTRL 0x01
25 #define LP855X_EEPROM_START 0xA0
26 #define LP855X_EEPROM_END 0xA7
27 #define LP8556_EPROM_START 0xA0
28 #define LP8556_EPROM_END 0xAF
30 /* LP8555/7 Registers */
31 #define LP8557_BL_CMD 0x00
32 #define LP8557_BL_MASK 0x01
33 #define LP8557_BL_ON 0x01
34 #define LP8557_BL_OFF 0x00
35 #define LP8557_BRIGHTNESS_CTRL 0x04
36 #define LP8557_CONFIG 0x10
37 #define LP8555_EPROM_START 0x10
38 #define LP8555_EPROM_END 0x7A
39 #define LP8557_EPROM_START 0x10
40 #define LP8557_EPROM_END 0x1E
42 #define DEFAULT_BL_NAME "lcd-backlight"
43 #define MAX_BRIGHTNESS 255
45 enum lp855x_brightness_ctrl_mode
{
53 * struct lp855x_device_config
54 * @pre_init_device: init device function call before updating the brightness
55 * @reg_brightness: register address for brigthenss control
56 * @reg_devicectrl: register address for device control
57 * @post_init_device: late init device function call
59 struct lp855x_device_config
{
60 int (*pre_init_device
)(struct lp855x
*);
63 int (*post_init_device
)(struct lp855x
*);
68 enum lp855x_chip_id chip_id
;
69 enum lp855x_brightness_ctrl_mode mode
;
70 struct lp855x_device_config
*cfg
;
71 struct i2c_client
*client
;
72 struct backlight_device
*bl
;
74 struct lp855x_platform_data
*pdata
;
75 struct pwm_device
*pwm
;
78 static int lp855x_write_byte(struct lp855x
*lp
, u8 reg
, u8 data
)
80 return i2c_smbus_write_byte_data(lp
->client
, reg
, data
);
83 static int lp855x_update_bit(struct lp855x
*lp
, u8 reg
, u8 mask
, u8 data
)
88 ret
= i2c_smbus_read_byte_data(lp
->client
, reg
);
90 dev_err(lp
->dev
, "failed to read 0x%.2x\n", reg
);
98 return lp855x_write_byte(lp
, reg
, tmp
);
101 static bool lp855x_is_valid_rom_area(struct lp855x
*lp
, u8 addr
)
105 switch (lp
->chip_id
) {
110 start
= LP855X_EEPROM_START
;
111 end
= LP855X_EEPROM_END
;
114 start
= LP8556_EPROM_START
;
115 end
= LP8556_EPROM_END
;
118 start
= LP8555_EPROM_START
;
119 end
= LP8555_EPROM_END
;
122 start
= LP8557_EPROM_START
;
123 end
= LP8557_EPROM_END
;
129 return addr
>= start
&& addr
<= end
;
132 static int lp8557_bl_off(struct lp855x
*lp
)
134 /* BL_ON = 0 before updating EPROM settings */
135 return lp855x_update_bit(lp
, LP8557_BL_CMD
, LP8557_BL_MASK
,
139 static int lp8557_bl_on(struct lp855x
*lp
)
141 /* BL_ON = 1 after updating EPROM settings */
142 return lp855x_update_bit(lp
, LP8557_BL_CMD
, LP8557_BL_MASK
,
146 static struct lp855x_device_config lp855x_dev_cfg
= {
147 .reg_brightness
= LP855X_BRIGHTNESS_CTRL
,
148 .reg_devicectrl
= LP855X_DEVICE_CTRL
,
151 static struct lp855x_device_config lp8557_dev_cfg
= {
152 .reg_brightness
= LP8557_BRIGHTNESS_CTRL
,
153 .reg_devicectrl
= LP8557_CONFIG
,
154 .pre_init_device
= lp8557_bl_off
,
155 .post_init_device
= lp8557_bl_on
,
159 * Device specific configuration flow
161 * a) pre_init_device(optional)
162 * b) update the brightness register
163 * c) update device control register
164 * d) update ROM area(optional)
165 * e) post_init_device(optional)
168 static int lp855x_configure(struct lp855x
*lp
)
172 struct lp855x_platform_data
*pd
= lp
->pdata
;
174 switch (lp
->chip_id
) {
180 lp
->cfg
= &lp855x_dev_cfg
;
184 lp
->cfg
= &lp8557_dev_cfg
;
190 if (lp
->cfg
->pre_init_device
) {
191 ret
= lp
->cfg
->pre_init_device(lp
);
193 dev_err(lp
->dev
, "pre init device err: %d\n", ret
);
198 val
= pd
->initial_brightness
;
199 ret
= lp855x_write_byte(lp
, lp
->cfg
->reg_brightness
, val
);
203 val
= pd
->device_control
;
204 ret
= lp855x_write_byte(lp
, lp
->cfg
->reg_devicectrl
, val
);
208 if (pd
->size_program
> 0) {
209 for (i
= 0; i
< pd
->size_program
; i
++) {
210 addr
= pd
->rom_data
[i
].addr
;
211 val
= pd
->rom_data
[i
].val
;
212 if (!lp855x_is_valid_rom_area(lp
, addr
))
215 ret
= lp855x_write_byte(lp
, addr
, val
);
221 if (lp
->cfg
->post_init_device
) {
222 ret
= lp
->cfg
->post_init_device(lp
);
224 dev_err(lp
->dev
, "post init device err: %d\n", ret
);
235 static void lp855x_pwm_ctrl(struct lp855x
*lp
, int br
, int max_br
)
237 unsigned int period
= lp
->pdata
->period_ns
;
238 unsigned int duty
= br
* period
/ max_br
;
239 struct pwm_device
*pwm
;
241 /* request pwm device with the consumer name */
243 pwm
= devm_pwm_get(lp
->dev
, lp
->chipname
);
250 pwm_config(lp
->pwm
, duty
, period
);
254 pwm_disable(lp
->pwm
);
257 static int lp855x_bl_update_status(struct backlight_device
*bl
)
259 struct lp855x
*lp
= bl_get_data(bl
);
261 if (bl
->props
.state
& (BL_CORE_SUSPENDED
| BL_CORE_FBBLANK
))
262 bl
->props
.brightness
= 0;
264 if (lp
->mode
== PWM_BASED
) {
265 int br
= bl
->props
.brightness
;
266 int max_br
= bl
->props
.max_brightness
;
268 lp855x_pwm_ctrl(lp
, br
, max_br
);
270 } else if (lp
->mode
== REGISTER_BASED
) {
271 u8 val
= bl
->props
.brightness
;
273 lp855x_write_byte(lp
, lp
->cfg
->reg_brightness
, val
);
279 static const struct backlight_ops lp855x_bl_ops
= {
280 .options
= BL_CORE_SUSPENDRESUME
,
281 .update_status
= lp855x_bl_update_status
,
284 static int lp855x_backlight_register(struct lp855x
*lp
)
286 struct backlight_device
*bl
;
287 struct backlight_properties props
;
288 struct lp855x_platform_data
*pdata
= lp
->pdata
;
289 const char *name
= pdata
->name
? : DEFAULT_BL_NAME
;
291 props
.type
= BACKLIGHT_PLATFORM
;
292 props
.max_brightness
= MAX_BRIGHTNESS
;
294 if (pdata
->initial_brightness
> props
.max_brightness
)
295 pdata
->initial_brightness
= props
.max_brightness
;
297 props
.brightness
= pdata
->initial_brightness
;
299 bl
= devm_backlight_device_register(lp
->dev
, name
, lp
->dev
, lp
,
300 &lp855x_bl_ops
, &props
);
309 static ssize_t
lp855x_get_chip_id(struct device
*dev
,
310 struct device_attribute
*attr
, char *buf
)
312 struct lp855x
*lp
= dev_get_drvdata(dev
);
314 return scnprintf(buf
, PAGE_SIZE
, "%s\n", lp
->chipname
);
317 static ssize_t
lp855x_get_bl_ctl_mode(struct device
*dev
,
318 struct device_attribute
*attr
, char *buf
)
320 struct lp855x
*lp
= dev_get_drvdata(dev
);
321 char *strmode
= NULL
;
323 if (lp
->mode
== PWM_BASED
)
324 strmode
= "pwm based";
325 else if (lp
->mode
== REGISTER_BASED
)
326 strmode
= "register based";
328 return scnprintf(buf
, PAGE_SIZE
, "%s\n", strmode
);
331 static DEVICE_ATTR(chip_id
, S_IRUGO
, lp855x_get_chip_id
, NULL
);
332 static DEVICE_ATTR(bl_ctl_mode
, S_IRUGO
, lp855x_get_bl_ctl_mode
, NULL
);
334 static struct attribute
*lp855x_attributes
[] = {
335 &dev_attr_chip_id
.attr
,
336 &dev_attr_bl_ctl_mode
.attr
,
340 static const struct attribute_group lp855x_attr_group
= {
341 .attrs
= lp855x_attributes
,
345 static int lp855x_parse_dt(struct lp855x
*lp
)
347 struct device
*dev
= lp
->dev
;
348 struct device_node
*node
= dev
->of_node
;
349 struct lp855x_platform_data
*pdata
;
353 dev_err(dev
, "no platform data\n");
357 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
361 of_property_read_string(node
, "bl-name", &pdata
->name
);
362 of_property_read_u8(node
, "dev-ctrl", &pdata
->device_control
);
363 of_property_read_u8(node
, "init-brt", &pdata
->initial_brightness
);
364 of_property_read_u32(node
, "pwm-period", &pdata
->period_ns
);
366 /* Fill ROM platform data if defined */
367 rom_length
= of_get_child_count(node
);
368 if (rom_length
> 0) {
369 struct lp855x_rom_data
*rom
;
370 struct device_node
*child
;
373 rom
= devm_kzalloc(dev
, sizeof(*rom
) * rom_length
, GFP_KERNEL
);
377 for_each_child_of_node(node
, child
) {
378 of_property_read_u8(child
, "rom-addr", &rom
[i
].addr
);
379 of_property_read_u8(child
, "rom-val", &rom
[i
].val
);
383 pdata
->size_program
= rom_length
;
384 pdata
->rom_data
= &rom
[0];
387 pdata
->supply
= devm_regulator_get(dev
, "power");
388 if (IS_ERR(pdata
->supply
)) {
389 if (PTR_ERR(pdata
->supply
) == -EPROBE_DEFER
)
390 return -EPROBE_DEFER
;
391 pdata
->supply
= NULL
;
399 static int lp855x_parse_dt(struct lp855x
*lp
)
405 static int lp855x_probe(struct i2c_client
*cl
, const struct i2c_device_id
*id
)
410 if (!i2c_check_functionality(cl
->adapter
, I2C_FUNC_SMBUS_I2C_BLOCK
))
413 lp
= devm_kzalloc(&cl
->dev
, sizeof(struct lp855x
), GFP_KERNEL
);
419 lp
->chipname
= id
->name
;
420 lp
->chip_id
= id
->driver_data
;
421 lp
->pdata
= dev_get_platdata(&cl
->dev
);
424 ret
= lp855x_parse_dt(lp
);
429 if (lp
->pdata
->period_ns
> 0)
430 lp
->mode
= PWM_BASED
;
432 lp
->mode
= REGISTER_BASED
;
434 if (lp
->pdata
->supply
) {
435 ret
= regulator_enable(lp
->pdata
->supply
);
437 dev_err(&cl
->dev
, "failed to enable supply: %d\n", ret
);
442 i2c_set_clientdata(cl
, lp
);
444 ret
= lp855x_configure(lp
);
446 dev_err(lp
->dev
, "device config err: %d", ret
);
450 ret
= lp855x_backlight_register(lp
);
453 "failed to register backlight. err: %d\n", ret
);
457 ret
= sysfs_create_group(&lp
->dev
->kobj
, &lp855x_attr_group
);
459 dev_err(lp
->dev
, "failed to register sysfs. err: %d\n", ret
);
463 backlight_update_status(lp
->bl
);
467 static int lp855x_remove(struct i2c_client
*cl
)
469 struct lp855x
*lp
= i2c_get_clientdata(cl
);
471 lp
->bl
->props
.brightness
= 0;
472 backlight_update_status(lp
->bl
);
473 if (lp
->pdata
->supply
)
474 regulator_disable(lp
->pdata
->supply
);
475 sysfs_remove_group(&lp
->dev
->kobj
, &lp855x_attr_group
);
480 static const struct of_device_id lp855x_dt_ids
[] = {
481 { .compatible
= "ti,lp8550", },
482 { .compatible
= "ti,lp8551", },
483 { .compatible
= "ti,lp8552", },
484 { .compatible
= "ti,lp8553", },
485 { .compatible
= "ti,lp8555", },
486 { .compatible
= "ti,lp8556", },
487 { .compatible
= "ti,lp8557", },
490 MODULE_DEVICE_TABLE(of
, lp855x_dt_ids
);
492 static const struct i2c_device_id lp855x_ids
[] = {
502 MODULE_DEVICE_TABLE(i2c
, lp855x_ids
);
504 static struct i2c_driver lp855x_driver
= {
507 .of_match_table
= of_match_ptr(lp855x_dt_ids
),
509 .probe
= lp855x_probe
,
510 .remove
= lp855x_remove
,
511 .id_table
= lp855x_ids
,
514 module_i2c_driver(lp855x_driver
);
516 MODULE_DESCRIPTION("Texas Instruments LP855x Backlight driver");
517 MODULE_AUTHOR("Milo Kim <milo.kim@ti.com>");
518 MODULE_LICENSE("GPL");