lp855x-driver.txt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Kernel driver lp855x
  2. ====================
  3. Backlight driver for LP855x ICs
  4. Supported chips:
  5. Texas Instruments LP8550, LP8551, LP8552, LP8553, LP8555, LP8556 and
  6. LP8557
  7. Author: Milo(Woogyom) Kim <milo.kim@ti.com>
  8. Description
  9. -----------
  10. * Brightness control
  11. Brightness can be controlled by the pwm input or the i2c command.
  12. The lp855x driver supports both cases.
  13. * Device attributes
  14. 1) bl_ctl_mode
  15. Backlight control mode.
  16. Value : pwm based or register based
  17. 2) chip_id
  18. The lp855x chip id.
  19. Value : lp8550/lp8551/lp8552/lp8553/lp8555/lp8556/lp8557
  20. Platform data for lp855x
  21. ------------------------
  22. For supporting platform specific data, the lp855x platform data can be used.
  23. * name : Backlight driver name. If it is not defined, default name is set.
  24. * device_control : Value of DEVICE CONTROL register.
  25. * initial_brightness : Initial value of backlight brightness.
  26. * period_ns : Platform specific PWM period value. unit is nano.
  27. Only valid when brightness is pwm input mode.
  28. * size_program : Total size of lp855x_rom_data.
  29. * rom_data : List of new eeprom/eprom registers.
  30. example 1) lp8552 platform data : i2c register mode with new eeprom data
  31. #define EEPROM_A5_ADDR 0xA5
  32. #define EEPROM_A5_VAL 0x4f /* EN_VSYNC=0 */
  33. static struct lp855x_rom_data lp8552_eeprom_arr[] = {
  34. {EEPROM_A5_ADDR, EEPROM_A5_VAL},
  35. };
  36. static struct lp855x_platform_data lp8552_pdata = {
  37. .name = "lcd-bl",
  38. .device_control = I2C_CONFIG(LP8552),
  39. .initial_brightness = INITIAL_BRT,
  40. .size_program = ARRAY_SIZE(lp8552_eeprom_arr),
  41. .rom_data = lp8552_eeprom_arr,
  42. };
  43. example 2) lp8556 platform data : pwm input mode with default rom data
  44. static struct lp855x_platform_data lp8556_pdata = {
  45. .device_control = PWM_CONFIG(LP8556),
  46. .initial_brightness = INITIAL_BRT,
  47. .period_ns = 1000000,
  48. };