adp8860.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Definitions and platform data for Analog Devices
  4. * Backlight drivers ADP8860
  5. *
  6. * Copyright 2009-2010 Analog Devices Inc.
  7. */
  8. #ifndef __LINUX_I2C_ADP8860_H
  9. #define __LINUX_I2C_ADP8860_H
  10. #include <linux/leds.h>
  11. #include <linux/types.h>
  12. #define ID_ADP8860 8860
  13. #define ADP8860_MAX_BRIGHTNESS 0x7F
  14. #define FLAG_OFFT_SHIFT 8
  15. /*
  16. * LEDs subdevice platform data
  17. */
  18. #define ADP8860_LED_DIS_BLINK (0 << FLAG_OFFT_SHIFT)
  19. #define ADP8860_LED_OFFT_600ms (1 << FLAG_OFFT_SHIFT)
  20. #define ADP8860_LED_OFFT_1200ms (2 << FLAG_OFFT_SHIFT)
  21. #define ADP8860_LED_OFFT_1800ms (3 << FLAG_OFFT_SHIFT)
  22. #define ADP8860_LED_ONT_200ms 0
  23. #define ADP8860_LED_ONT_600ms 1
  24. #define ADP8860_LED_ONT_800ms 2
  25. #define ADP8860_LED_ONT_1200ms 3
  26. #define ADP8860_LED_D7 (7)
  27. #define ADP8860_LED_D6 (6)
  28. #define ADP8860_LED_D5 (5)
  29. #define ADP8860_LED_D4 (4)
  30. #define ADP8860_LED_D3 (3)
  31. #define ADP8860_LED_D2 (2)
  32. #define ADP8860_LED_D1 (1)
  33. /*
  34. * Backlight subdevice platform data
  35. */
  36. #define ADP8860_BL_D7 (1 << 6)
  37. #define ADP8860_BL_D6 (1 << 5)
  38. #define ADP8860_BL_D5 (1 << 4)
  39. #define ADP8860_BL_D4 (1 << 3)
  40. #define ADP8860_BL_D3 (1 << 2)
  41. #define ADP8860_BL_D2 (1 << 1)
  42. #define ADP8860_BL_D1 (1 << 0)
  43. #define ADP8860_FADE_T_DIS 0 /* Fade Timer Disabled */
  44. #define ADP8860_FADE_T_300ms 1 /* 0.3 Sec */
  45. #define ADP8860_FADE_T_600ms 2
  46. #define ADP8860_FADE_T_900ms 3
  47. #define ADP8860_FADE_T_1200ms 4
  48. #define ADP8860_FADE_T_1500ms 5
  49. #define ADP8860_FADE_T_1800ms 6
  50. #define ADP8860_FADE_T_2100ms 7
  51. #define ADP8860_FADE_T_2400ms 8
  52. #define ADP8860_FADE_T_2700ms 9
  53. #define ADP8860_FADE_T_3000ms 10
  54. #define ADP8860_FADE_T_3500ms 11
  55. #define ADP8860_FADE_T_4000ms 12
  56. #define ADP8860_FADE_T_4500ms 13
  57. #define ADP8860_FADE_T_5000ms 14
  58. #define ADP8860_FADE_T_5500ms 15 /* 5.5 Sec */
  59. #define ADP8860_FADE_LAW_LINEAR 0
  60. #define ADP8860_FADE_LAW_SQUARE 1
  61. #define ADP8860_FADE_LAW_CUBIC1 2
  62. #define ADP8860_FADE_LAW_CUBIC2 3
  63. #define ADP8860_BL_AMBL_FILT_80ms 0 /* Light sensor filter time */
  64. #define ADP8860_BL_AMBL_FILT_160ms 1
  65. #define ADP8860_BL_AMBL_FILT_320ms 2
  66. #define ADP8860_BL_AMBL_FILT_640ms 3
  67. #define ADP8860_BL_AMBL_FILT_1280ms 4
  68. #define ADP8860_BL_AMBL_FILT_2560ms 5
  69. #define ADP8860_BL_AMBL_FILT_5120ms 6
  70. #define ADP8860_BL_AMBL_FILT_10240ms 7 /* 10.24 sec */
  71. /*
  72. * Blacklight current 0..30mA
  73. */
  74. #define ADP8860_BL_CUR_mA(I) ((I * 127) / 30)
  75. /*
  76. * L2 comparator current 0..1106uA
  77. */
  78. #define ADP8860_L2_COMP_CURR_uA(I) ((I * 255) / 1106)
  79. /*
  80. * L3 comparator current 0..138uA
  81. */
  82. #define ADP8860_L3_COMP_CURR_uA(I) ((I * 255) / 138)
  83. struct adp8860_backlight_platform_data {
  84. u8 bl_led_assign; /* 1 = Backlight 0 = Individual LED */
  85. u8 bl_fade_in; /* Backlight Fade-In Timer */
  86. u8 bl_fade_out; /* Backlight Fade-Out Timer */
  87. u8 bl_fade_law; /* fade-on/fade-off transfer characteristic */
  88. u8 en_ambl_sens; /* 1 = enable ambient light sensor */
  89. u8 abml_filt; /* Light sensor filter time */
  90. u8 l1_daylight_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
  91. u8 l1_daylight_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
  92. u8 l2_office_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
  93. u8 l2_office_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
  94. u8 l3_dark_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
  95. u8 l3_dark_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
  96. u8 l2_trip; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */
  97. u8 l2_hyst; /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */
  98. u8 l3_trip; /* use L3_COMP_CURR_uA(I) 0 <= I <= 551 uA */
  99. u8 l3_hyst; /* use L3_COMP_CURR_uA(I) 0 <= I <= 551 uA */
  100. /**
  101. * Independent Current Sinks / LEDS
  102. * Sinks not assigned to the Backlight can be exposed to
  103. * user space using the LEDS CLASS interface
  104. */
  105. int num_leds;
  106. struct led_info *leds;
  107. u8 led_fade_in; /* LED Fade-In Timer */
  108. u8 led_fade_out; /* LED Fade-Out Timer */
  109. u8 led_fade_law; /* fade-on/fade-off transfer characteristic */
  110. u8 led_on_time;
  111. /**
  112. * Gain down disable. Setting this option does not allow the
  113. * charge pump to switch to lower gains. NOT AVAILABLE on ADP8860
  114. * 1 = the charge pump doesn't switch down in gain until all LEDs are 0.
  115. * The charge pump switches up in gain as needed. This feature is
  116. * useful if the ADP8863 charge pump is used to drive an external load.
  117. * This feature must be used when utilizing small fly capacitors
  118. * (0402 or smaller).
  119. * 0 = the charge pump automatically switches up and down in gain.
  120. * This provides optimal efficiency, but is not suitable for driving
  121. * loads that are not connected through the ADP8863 diode drivers.
  122. * Additionally, the charge pump fly capacitors should be low ESR
  123. * and sized 0603 or greater.
  124. */
  125. u8 gdwn_dis;
  126. };
  127. #endif /* __LINUX_I2C_ADP8860_H */