1 // SPDX-License-Identifier: GPL-2.0-only
3 * TI LP855x Backlight Driver
5 * Copyright (C) 2011 Texas Instruments
8 #include <linux/acpi.h>
9 #include <linux/module.h>
10 #include <linux/slab.h>
11 #include <linux/i2c.h>
12 #include <linux/backlight.h>
13 #include <linux/delay.h>
14 #include <linux/err.h>
16 #include <linux/platform_data/lp855x.h>
17 #include <linux/pwm.h>
18 #include <linux/regulator/consumer.h>
20 /* LP8550/1/2/3/6 Registers */
21 #define LP855X_BRIGHTNESS_CTRL 0x00
22 #define LP855X_DEVICE_CTRL 0x01
23 #define LP855X_EEPROM_START 0xA0
24 #define LP855X_EEPROM_END 0xA7
25 #define LP8556_EPROM_START 0xA0
26 #define LP8556_EPROM_END 0xAF
28 /* LP8555/7 Registers */
29 #define LP8557_BL_CMD 0x00
30 #define LP8557_BL_MASK 0x01
31 #define LP8557_BL_ON 0x01
32 #define LP8557_BL_OFF 0x00
33 #define LP8557_BRIGHTNESS_CTRL 0x04
34 #define LP8557_CONFIG 0x10
35 #define LP8555_EPROM_START 0x10
36 #define LP8555_EPROM_END 0x7A
37 #define LP8557_EPROM_START 0x10
38 #define LP8557_EPROM_END 0x1E
40 #define DEFAULT_BL_NAME "lcd-backlight"
41 #define MAX_BRIGHTNESS 255
43 enum lp855x_brightness_ctrl_mode
{
51 * struct lp855x_device_config
52 * @pre_init_device: init device function call before updating the brightness
53 * @reg_brightness: register address for brigthenss control
54 * @reg_devicectrl: register address for device control
55 * @post_init_device: late init device function call
57 struct lp855x_device_config
{
58 int (*pre_init_device
)(struct lp855x
*);
61 int (*post_init_device
)(struct lp855x
*);
66 enum lp855x_chip_id chip_id
;
67 enum lp855x_brightness_ctrl_mode mode
;
68 struct lp855x_device_config
*cfg
;
69 struct i2c_client
*client
;
70 struct backlight_device
*bl
;
72 struct lp855x_platform_data
*pdata
;
73 struct pwm_device
*pwm
;
75 struct regulator
*supply
; /* regulator for VDD input */
76 struct regulator
*enable
; /* regulator for EN/VDDIO input */
79 static int lp855x_write_byte(struct lp855x
*lp
, u8 reg
, u8 data
)
81 return i2c_smbus_write_byte_data(lp
->client
, reg
, data
);
84 static int lp855x_update_bit(struct lp855x
*lp
, u8 reg
, u8 mask
, u8 data
)
89 ret
= i2c_smbus_read_byte_data(lp
->client
, reg
);
91 dev_err(lp
->dev
, "failed to read 0x%.2x\n", reg
);
99 return lp855x_write_byte(lp
, reg
, tmp
);
102 static bool lp855x_is_valid_rom_area(struct lp855x
*lp
, u8 addr
)
106 switch (lp
->chip_id
) {
111 start
= LP855X_EEPROM_START
;
112 end
= LP855X_EEPROM_END
;
115 start
= LP8556_EPROM_START
;
116 end
= LP8556_EPROM_END
;
119 start
= LP8555_EPROM_START
;
120 end
= LP8555_EPROM_END
;
123 start
= LP8557_EPROM_START
;
124 end
= LP8557_EPROM_END
;
130 return addr
>= start
&& addr
<= end
;
133 static int lp8557_bl_off(struct lp855x
*lp
)
135 /* BL_ON = 0 before updating EPROM settings */
136 return lp855x_update_bit(lp
, LP8557_BL_CMD
, LP8557_BL_MASK
,
140 static int lp8557_bl_on(struct lp855x
*lp
)
142 /* BL_ON = 1 after updating EPROM settings */
143 return lp855x_update_bit(lp
, LP8557_BL_CMD
, LP8557_BL_MASK
,
147 static struct lp855x_device_config lp855x_dev_cfg
= {
148 .reg_brightness
= LP855X_BRIGHTNESS_CTRL
,
149 .reg_devicectrl
= LP855X_DEVICE_CTRL
,
152 static struct lp855x_device_config lp8557_dev_cfg
= {
153 .reg_brightness
= LP8557_BRIGHTNESS_CTRL
,
154 .reg_devicectrl
= LP8557_CONFIG
,
155 .pre_init_device
= lp8557_bl_off
,
156 .post_init_device
= lp8557_bl_on
,
160 * Device specific configuration flow
162 * a) pre_init_device(optional)
163 * b) update the brightness register
164 * c) update device control register
165 * d) update ROM area(optional)
166 * e) post_init_device(optional)
169 static int lp855x_configure(struct lp855x
*lp
)
173 struct lp855x_platform_data
*pd
= lp
->pdata
;
175 if (lp
->cfg
->pre_init_device
) {
176 ret
= lp
->cfg
->pre_init_device(lp
);
178 dev_err(lp
->dev
, "pre init device err: %d\n", ret
);
183 val
= pd
->initial_brightness
;
184 ret
= lp855x_write_byte(lp
, lp
->cfg
->reg_brightness
, val
);
188 val
= pd
->device_control
;
189 ret
= lp855x_write_byte(lp
, lp
->cfg
->reg_devicectrl
, val
);
193 if (pd
->size_program
> 0) {
194 for (i
= 0; i
< pd
->size_program
; i
++) {
195 addr
= pd
->rom_data
[i
].addr
;
196 val
= pd
->rom_data
[i
].val
;
197 if (!lp855x_is_valid_rom_area(lp
, addr
))
200 ret
= lp855x_write_byte(lp
, addr
, val
);
206 if (lp
->cfg
->post_init_device
) {
207 ret
= lp
->cfg
->post_init_device(lp
);
209 dev_err(lp
->dev
, "post init device err: %d\n", ret
);
220 static int lp855x_pwm_ctrl(struct lp855x
*lp
, int br
, int max_br
)
222 struct pwm_state state
;
224 if (lp
->needs_pwm_init
) {
225 pwm_init_state(lp
->pwm
, &state
);
226 /* Legacy platform data compatibility */
227 if (lp
->pdata
->period_ns
> 0)
228 state
.period
= lp
->pdata
->period_ns
;
229 lp
->needs_pwm_init
= false;
231 pwm_get_state(lp
->pwm
, &state
);
234 state
.duty_cycle
= div_u64(br
* state
.period
, max_br
);
235 state
.enabled
= state
.duty_cycle
;
237 return pwm_apply_might_sleep(lp
->pwm
, &state
);
240 static int lp855x_bl_update_status(struct backlight_device
*bl
)
242 struct lp855x
*lp
= bl_get_data(bl
);
243 int brightness
= bl
->props
.brightness
;
245 if (bl
->props
.state
& (BL_CORE_SUSPENDED
| BL_CORE_FBBLANK
))
248 if (lp
->mode
== PWM_BASED
)
249 return lp855x_pwm_ctrl(lp
, brightness
,
250 bl
->props
.max_brightness
);
251 else if (lp
->mode
== REGISTER_BASED
)
252 return lp855x_write_byte(lp
, lp
->cfg
->reg_brightness
,
257 static const struct backlight_ops lp855x_bl_ops
= {
258 .options
= BL_CORE_SUSPENDRESUME
,
259 .update_status
= lp855x_bl_update_status
,
262 static int lp855x_backlight_register(struct lp855x
*lp
)
264 struct backlight_device
*bl
;
265 struct backlight_properties props
;
266 struct lp855x_platform_data
*pdata
= lp
->pdata
;
267 const char *name
= pdata
->name
? : DEFAULT_BL_NAME
;
269 memset(&props
, 0, sizeof(props
));
270 props
.type
= BACKLIGHT_PLATFORM
;
271 props
.max_brightness
= MAX_BRIGHTNESS
;
273 if (pdata
->initial_brightness
> props
.max_brightness
)
274 pdata
->initial_brightness
= props
.max_brightness
;
276 props
.brightness
= pdata
->initial_brightness
;
278 bl
= devm_backlight_device_register(lp
->dev
, name
, lp
->dev
, lp
,
279 &lp855x_bl_ops
, &props
);
288 static ssize_t
lp855x_get_chip_id(struct device
*dev
,
289 struct device_attribute
*attr
, char *buf
)
291 struct lp855x
*lp
= dev_get_drvdata(dev
);
293 return scnprintf(buf
, PAGE_SIZE
, "%s\n", lp
->chipname
);
296 static ssize_t
lp855x_get_bl_ctl_mode(struct device
*dev
,
297 struct device_attribute
*attr
, char *buf
)
299 struct lp855x
*lp
= dev_get_drvdata(dev
);
300 char *strmode
= NULL
;
302 if (lp
->mode
== PWM_BASED
)
303 strmode
= "pwm based";
304 else if (lp
->mode
== REGISTER_BASED
)
305 strmode
= "register based";
307 return scnprintf(buf
, PAGE_SIZE
, "%s\n", strmode
);
310 static DEVICE_ATTR(chip_id
, S_IRUGO
, lp855x_get_chip_id
, NULL
);
311 static DEVICE_ATTR(bl_ctl_mode
, S_IRUGO
, lp855x_get_bl_ctl_mode
, NULL
);
313 static struct attribute
*lp855x_attributes
[] = {
314 &dev_attr_chip_id
.attr
,
315 &dev_attr_bl_ctl_mode
.attr
,
319 static const struct attribute_group lp855x_attr_group
= {
320 .attrs
= lp855x_attributes
,
324 static int lp855x_parse_dt(struct lp855x
*lp
)
326 struct device
*dev
= lp
->dev
;
327 struct device_node
*node
= dev
->of_node
;
328 struct lp855x_platform_data
*pdata
= lp
->pdata
;
332 dev_err(dev
, "no platform data\n");
336 of_property_read_string(node
, "bl-name", &pdata
->name
);
337 of_property_read_u8(node
, "dev-ctrl", &pdata
->device_control
);
338 of_property_read_u8(node
, "init-brt", &pdata
->initial_brightness
);
339 /* Deprecated, specify period in pwms property instead */
340 of_property_read_u32(node
, "pwm-period", &pdata
->period_ns
);
342 /* Fill ROM platform data if defined */
343 rom_length
= of_get_child_count(node
);
344 if (rom_length
> 0) {
345 struct lp855x_rom_data
*rom
;
346 struct device_node
*child
;
349 rom
= devm_kcalloc(dev
, rom_length
, sizeof(*rom
), GFP_KERNEL
);
353 for_each_child_of_node(node
, child
) {
354 of_property_read_u8(child
, "rom-addr", &rom
[i
].addr
);
355 of_property_read_u8(child
, "rom-val", &rom
[i
].val
);
359 pdata
->size_program
= rom_length
;
360 pdata
->rom_data
= &rom
[0];
366 static int lp855x_parse_dt(struct lp855x
*lp
)
372 static int lp855x_parse_acpi(struct lp855x
*lp
)
377 * On ACPI the device has already been initialized by the firmware
378 * and is in register mode, so we can read back the settings from
381 ret
= i2c_smbus_read_byte_data(lp
->client
, lp
->cfg
->reg_brightness
);
385 lp
->pdata
->initial_brightness
= ret
;
387 ret
= i2c_smbus_read_byte_data(lp
->client
, lp
->cfg
->reg_devicectrl
);
391 lp
->pdata
->device_control
= ret
;
395 static int lp855x_probe(struct i2c_client
*cl
)
397 const struct i2c_device_id
*id
= i2c_client_get_device_id(cl
);
398 const struct acpi_device_id
*acpi_id
= NULL
;
399 struct device
*dev
= &cl
->dev
;
403 if (!i2c_check_functionality(cl
->adapter
, I2C_FUNC_SMBUS_I2C_BLOCK
))
406 lp
= devm_kzalloc(dev
, sizeof(struct lp855x
), GFP_KERNEL
);
412 lp
->pdata
= dev_get_platdata(dev
);
415 lp
->chipname
= id
->name
;
416 lp
->chip_id
= id
->driver_data
;
418 acpi_id
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
422 lp
->chipname
= acpi_id
->id
;
423 lp
->chip_id
= acpi_id
->driver_data
;
426 switch (lp
->chip_id
) {
432 lp
->cfg
= &lp855x_dev_cfg
;
436 lp
->cfg
= &lp8557_dev_cfg
;
443 lp
->pdata
= devm_kzalloc(dev
, sizeof(*lp
->pdata
), GFP_KERNEL
);
448 ret
= lp855x_parse_dt(lp
);
452 ret
= lp855x_parse_acpi(lp
);
458 lp
->supply
= devm_regulator_get(dev
, "power");
459 if (IS_ERR(lp
->supply
)) {
460 if (PTR_ERR(lp
->supply
) == -EPROBE_DEFER
)
461 return -EPROBE_DEFER
;
465 lp
->enable
= devm_regulator_get_optional(dev
, "enable");
466 if (IS_ERR(lp
->enable
)) {
467 ret
= PTR_ERR(lp
->enable
);
471 return dev_err_probe(dev
, ret
, "getting enable regulator\n");
474 lp
->pwm
= devm_pwm_get(lp
->dev
, lp
->chipname
);
475 if (IS_ERR(lp
->pwm
)) {
476 ret
= PTR_ERR(lp
->pwm
);
477 if (ret
== -ENODEV
|| ret
== -EINVAL
)
480 return dev_err_probe(dev
, ret
, "getting PWM\n");
482 lp
->needs_pwm_init
= false;
483 lp
->mode
= REGISTER_BASED
;
484 dev_dbg(dev
, "mode: register based\n");
486 lp
->needs_pwm_init
= true;
487 lp
->mode
= PWM_BASED
;
488 dev_dbg(dev
, "mode: PWM based\n");
492 ret
= regulator_enable(lp
->supply
);
494 dev_err(dev
, "failed to enable supply: %d\n", ret
);
500 ret
= regulator_enable(lp
->enable
);
502 dev_err(dev
, "failed to enable vddio: %d\n", ret
);
507 * LP8555 datasheet says t_RESPONSE (time between VDDIO and
510 usleep_range(1000, 2000);
513 i2c_set_clientdata(cl
, lp
);
515 ret
= lp855x_configure(lp
);
517 dev_err(dev
, "device config err: %d", ret
);
521 ret
= lp855x_backlight_register(lp
);
523 dev_err(dev
, "failed to register backlight. err: %d\n", ret
);
527 ret
= sysfs_create_group(&dev
->kobj
, &lp855x_attr_group
);
529 dev_err(dev
, "failed to register sysfs. err: %d\n", ret
);
533 backlight_update_status(lp
->bl
);
539 regulator_disable(lp
->enable
);
542 regulator_disable(lp
->supply
);
547 static void lp855x_remove(struct i2c_client
*cl
)
549 struct lp855x
*lp
= i2c_get_clientdata(cl
);
551 lp
->bl
->props
.brightness
= 0;
552 backlight_update_status(lp
->bl
);
554 regulator_disable(lp
->enable
);
556 regulator_disable(lp
->supply
);
557 sysfs_remove_group(&lp
->dev
->kobj
, &lp855x_attr_group
);
560 static const struct of_device_id lp855x_dt_ids
[] __maybe_unused
= {
561 { .compatible
= "ti,lp8550", },
562 { .compatible
= "ti,lp8551", },
563 { .compatible
= "ti,lp8552", },
564 { .compatible
= "ti,lp8553", },
565 { .compatible
= "ti,lp8555", },
566 { .compatible
= "ti,lp8556", },
567 { .compatible
= "ti,lp8557", },
570 MODULE_DEVICE_TABLE(of
, lp855x_dt_ids
);
572 static const struct i2c_device_id lp855x_ids
[] = {
582 MODULE_DEVICE_TABLE(i2c
, lp855x_ids
);
585 static const struct acpi_device_id lp855x_acpi_match
[] = {
586 /* Xiaomi specific HID used for the LP8556 on the Mi Pad 2 */
587 { "XMCC0001", LP8556
},
590 MODULE_DEVICE_TABLE(acpi
, lp855x_acpi_match
);
593 static struct i2c_driver lp855x_driver
= {
596 .of_match_table
= of_match_ptr(lp855x_dt_ids
),
597 .acpi_match_table
= ACPI_PTR(lp855x_acpi_match
),
599 .probe
= lp855x_probe
,
600 .remove
= lp855x_remove
,
601 .id_table
= lp855x_ids
,
604 module_i2c_driver(lp855x_driver
);
606 MODULE_DESCRIPTION("Texas Instruments LP855x Backlight driver");
607 MODULE_AUTHOR("Milo Kim <milo.kim@ti.com>");
608 MODULE_LICENSE("GPL");