Kconfig 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. #
  2. # Backlight & LCD drivers configuration
  3. #
  4. menuconfig BACKLIGHT_LCD_SUPPORT
  5. bool "Backlight & LCD device support"
  6. help
  7. Enable this to be able to choose the drivers for controlling the
  8. backlight and the LCD panel on some platforms, for example on PDAs.
  9. if BACKLIGHT_LCD_SUPPORT
  10. #
  11. # LCD
  12. #
  13. config LCD_CLASS_DEVICE
  14. tristate "Lowlevel LCD controls"
  15. default m
  16. help
  17. This framework adds support for low-level control of LCD.
  18. Some framebuffer devices connect to platform-specific LCD modules
  19. in order to have a platform-specific way to control the flat panel
  20. (contrast and applying power to the LCD (not to the backlight!)).
  21. To have support for your specific LCD panel you will have to
  22. select the proper drivers which depend on this option.
  23. if LCD_CLASS_DEVICE
  24. config LCD_CORGI
  25. tristate "LCD Panel support for SHARP corgi/spitz model"
  26. depends on SPI_MASTER && PXA_SHARPSL
  27. help
  28. Say y here to support the LCD panels usually found on SHARP
  29. corgi (C7x0) and spitz (Cxx00) models.
  30. config LCD_L4F00242T03
  31. tristate "Epson L4F00242T03 LCD"
  32. depends on SPI_MASTER && GENERIC_GPIO
  33. help
  34. SPI driver for Epson L4F00242T03. This provides basic support
  35. for init and powering the LCD up/down through a sysfs interface.
  36. config LCD_LMS283GF05
  37. tristate "Samsung LMS283GF05 LCD"
  38. depends on SPI_MASTER && GENERIC_GPIO
  39. help
  40. SPI driver for Samsung LMS283GF05. This provides basic support
  41. for powering the LCD up/down through a sysfs interface.
  42. config LCD_LTV350QV
  43. tristate "Samsung LTV350QV LCD Panel"
  44. depends on SPI_MASTER
  45. help
  46. If you have a Samsung LTV350QV LCD panel, say y to include a
  47. power control driver for it. The panel starts up in power
  48. off state, so you need this driver in order to see any
  49. output.
  50. The LTV350QV panel is present on all ATSTK1000 boards.
  51. config LCD_ILI9320
  52. tristate
  53. help
  54. If you have a panel based on the ILI9320 controller chip
  55. then say y to include a power driver for it.
  56. config LCD_TDO24M
  57. tristate "Toppoly TDO24M and TDO35S LCD Panels support"
  58. depends on SPI_MASTER
  59. help
  60. If you have a Toppoly TDO24M/TDO35S series LCD panel, say y here to
  61. include the support for it.
  62. config LCD_VGG2432A4
  63. tristate "VGG2432A4 LCM device support"
  64. depends on SPI_MASTER
  65. select LCD_ILI9320
  66. help
  67. If you have a VGG2432A4 panel based on the ILI9320 controller chip
  68. then say y to include a power driver for it.
  69. config LCD_PLATFORM
  70. tristate "Platform LCD controls"
  71. help
  72. This driver provides a platform-device registered LCD power
  73. control interface.
  74. config LCD_TOSA
  75. tristate "Sharp SL-6000 LCD Driver"
  76. depends on SPI && MACH_TOSA
  77. help
  78. If you have an Sharp SL-6000 Zaurus say Y to enable a driver
  79. for its LCD.
  80. config LCD_HP700
  81. tristate "HP Jornada 700 series LCD Driver"
  82. depends on SA1100_JORNADA720_SSP && !PREEMPT
  83. default y
  84. help
  85. If you have an HP Jornada 700 series handheld (710/720/728)
  86. say Y to enable LCD control driver.
  87. config LCD_S6E63M0
  88. tristate "S6E63M0 AMOLED LCD Driver"
  89. depends on SPI && BACKLIGHT_CLASS_DEVICE
  90. default n
  91. help
  92. If you have an S6E63M0 LCD Panel, say Y to enable its
  93. LCD control driver.
  94. endif # LCD_CLASS_DEVICE
  95. #
  96. # Backlight
  97. #
  98. config BACKLIGHT_CLASS_DEVICE
  99. tristate "Lowlevel Backlight controls"
  100. default m
  101. help
  102. This framework adds support for low-level control of the LCD
  103. backlight. This includes support for brightness and power.
  104. To have support for your specific LCD panel you will have to
  105. select the proper drivers which depend on this option.
  106. if BACKLIGHT_CLASS_DEVICE
  107. config BACKLIGHT_ATMEL_LCDC
  108. bool "Atmel LCDC Contrast-as-Backlight control"
  109. depends on FB_ATMEL
  110. default y if MACH_SAM9261EK || MACH_SAM9G10EK || MACH_SAM9263EK
  111. help
  112. This provides a backlight control internal to the Atmel LCDC
  113. driver. If the LCD "contrast control" on your board is wired
  114. so it controls the backlight brightness, select this option to
  115. export this as a PWM-based backlight control.
  116. If in doubt, it's safe to enable this option; it doesn't kick
  117. in unless the board's description says it's wired that way.
  118. config BACKLIGHT_ATMEL_PWM
  119. tristate "Atmel PWM backlight control"
  120. depends on ATMEL_PWM
  121. help
  122. Say Y here if you want to use the PWM peripheral in Atmel AT91 and
  123. AVR32 devices. This driver will need additional platform data to know
  124. which PWM instance to use and how to configure it.
  125. To compile this driver as a module, choose M here: the module will be
  126. called atmel-pwm-bl.
  127. config BACKLIGHT_EP93XX
  128. tristate "Cirrus EP93xx Backlight Driver"
  129. depends on FB_EP93XX
  130. help
  131. If you have a LCD backlight connected to the BRIGHT output of
  132. the EP93xx, say Y here to enable this driver.
  133. To compile this driver as a module, choose M here: the module will
  134. be called ep93xx_bl.
  135. config BACKLIGHT_GENERIC
  136. tristate "Generic (aka Sharp Corgi) Backlight Driver"
  137. default y
  138. help
  139. Say y to enable the generic platform backlight driver previously
  140. known as the Corgi backlight driver. If you have a Sharp Zaurus
  141. SL-C7xx, SL-Cxx00 or SL-6000x say y.
  142. config BACKLIGHT_LOCOMO
  143. tristate "Sharp LOCOMO LCD/Backlight Driver"
  144. depends on SHARP_LOCOMO
  145. default y
  146. help
  147. If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to
  148. enable the LCD/backlight driver.
  149. config BACKLIGHT_OMAP1
  150. tristate "OMAP1 PWL-based LCD Backlight"
  151. depends on ARCH_OMAP1
  152. default y
  153. help
  154. This driver controls the LCD backlight level and power for
  155. the PWL module of OMAP1 processors. Say Y if your board
  156. uses this hardware.
  157. config BACKLIGHT_HP680
  158. tristate "HP Jornada 680 Backlight Driver"
  159. depends on SH_HP6XX
  160. default y
  161. help
  162. If you have a HP Jornada 680, say y to enable the
  163. backlight driver.
  164. config BACKLIGHT_HP700
  165. tristate "HP Jornada 700 series Backlight Driver"
  166. depends on SA1100_JORNADA720_SSP && !PREEMPT
  167. default y
  168. help
  169. If you have an HP Jornada 700 series,
  170. say Y to include backlight control driver.
  171. config BACKLIGHT_PROGEAR
  172. tristate "Frontpath ProGear Backlight Driver"
  173. depends on PCI && X86
  174. help
  175. If you have a Frontpath ProGear say Y to enable the
  176. backlight driver.
  177. config BACKLIGHT_CARILLO_RANCH
  178. tristate "Intel Carillo Ranch Backlight Driver"
  179. depends on LCD_CLASS_DEVICE && PCI && X86 && FB_LE80578
  180. help
  181. If you have a Intel LE80578 (Carillo Ranch) say Y to enable the
  182. backlight driver.
  183. config BACKLIGHT_PWM
  184. tristate "Generic PWM based Backlight Driver"
  185. depends on HAVE_PWM
  186. help
  187. If you have a LCD backlight adjustable by PWM, say Y to enable
  188. this driver.
  189. config BACKLIGHT_DA903X
  190. tristate "Backlight Driver for DA9030/DA9034 using WLED"
  191. depends on PMIC_DA903X
  192. help
  193. If you have a LCD backlight connected to the WLED output of DA9030
  194. or DA9034 WLED output, say Y here to enable this driver.
  195. config BACKLIGHT_MAX8925
  196. tristate "Backlight driver for MAX8925"
  197. depends on MFD_MAX8925
  198. help
  199. If you have a LCD backlight connected to the WLED output of MAX8925
  200. WLED output, say Y here to enable this driver.
  201. config BACKLIGHT_MBP_NVIDIA
  202. tristate "MacBook Pro Nvidia Backlight Driver"
  203. depends on X86
  204. help
  205. If you have an Apple Macbook Pro with Nvidia graphics hardware say Y
  206. to enable a driver for its backlight
  207. config BACKLIGHT_TOSA
  208. tristate "Sharp SL-6000 Backlight Driver"
  209. depends on I2C && MACH_TOSA && LCD_TOSA
  210. help
  211. If you have an Sharp SL-6000 Zaurus say Y to enable a driver
  212. for its backlight
  213. config BACKLIGHT_SAHARA
  214. tristate "Tabletkiosk Sahara Touch-iT Backlight Driver"
  215. depends on X86
  216. help
  217. If you have a Tabletkiosk Sahara Touch-iT, say y to enable the
  218. backlight driver.
  219. config BACKLIGHT_WM831X
  220. tristate "WM831x PMIC Backlight Driver"
  221. depends on MFD_WM831X
  222. help
  223. If you have a backlight driven by the ISINK and DCDC of a
  224. WM831x PMIC say y to enable the backlight driver for it.
  225. config BACKLIGHT_ADX
  226. tristate "Avionic Design Xanthos Backlight Driver"
  227. depends on ARCH_PXA_ADX
  228. default y
  229. help
  230. Say Y to enable the backlight driver on Avionic Design Xanthos-based
  231. boards.
  232. config BACKLIGHT_ADP5520
  233. tristate "Backlight Driver for ADP5520/ADP5501 using WLED"
  234. depends on PMIC_ADP5520
  235. help
  236. If you have a LCD backlight connected to the BST/BL_SNK output of
  237. ADP5520 or ADP5501, say Y here to enable this driver.
  238. To compile this driver as a module, choose M here: the module will
  239. be called adp5520_bl.
  240. config BACKLIGHT_ADP8860
  241. tristate "Backlight Driver for ADP8860/ADP8861/ADP8863 using WLED"
  242. depends on BACKLIGHT_CLASS_DEVICE && I2C
  243. select NEW_LEDS
  244. select LEDS_CLASS
  245. help
  246. If you have a LCD backlight connected to the ADP8860, ADP8861 or
  247. ADP8863 say Y here to enable this driver.
  248. To compile this driver as a module, choose M here: the module will
  249. be called adp8860_bl.
  250. config BACKLIGHT_88PM860X
  251. tristate "Backlight Driver for 88PM8606 using WLED"
  252. depends on MFD_88PM860X
  253. help
  254. Say Y to enable the backlight driver for Marvell 88PM8606.
  255. config BACKLIGHT_PCF50633
  256. tristate "Backlight driver for NXP PCF50633 MFD"
  257. depends on BACKLIGHT_CLASS_DEVICE && MFD_PCF50633
  258. help
  259. If you have a backlight driven by a NXP PCF50633 MFD, say Y here to
  260. enable its driver.
  261. endif # BACKLIGHT_CLASS_DEVICE
  262. endif # BACKLIGHT_LCD_SUPPORT