Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  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 "ILI Technology ILI9320 controller support"
  53. depends on SPI
  54. help
  55. If you have a panel based on the ILI9320 controller chip
  56. then say y to include a power driver for it.
  57. config LCD_TDO24M
  58. tristate "Toppoly TDO24M and TDO35S LCD Panels support"
  59. depends on SPI_MASTER
  60. help
  61. If you have a Toppoly TDO24M/TDO35S series LCD panel, say y here to
  62. include the support for it.
  63. config LCD_VGG2432A4
  64. tristate "VGG2432A4 LCM device support"
  65. depends on SPI_MASTER
  66. select LCD_ILI9320
  67. help
  68. If you have a VGG2432A4 panel based on the ILI9320 controller chip
  69. then say y to include a power driver for it.
  70. config LCD_PLATFORM
  71. tristate "Platform LCD controls"
  72. help
  73. This driver provides a platform-device registered LCD power
  74. control interface.
  75. config LCD_TOSA
  76. tristate "Sharp SL-6000 LCD Driver"
  77. depends on I2C && SPI && MACH_TOSA
  78. help
  79. If you have an Sharp SL-6000 Zaurus say Y to enable a driver
  80. for its LCD.
  81. config LCD_HP700
  82. tristate "HP Jornada 700 series LCD Driver"
  83. depends on SA1100_JORNADA720_SSP && !PREEMPT
  84. default y
  85. help
  86. If you have an HP Jornada 700 series handheld (710/720/728)
  87. say Y to enable LCD control driver.
  88. config LCD_S6E63M0
  89. tristate "S6E63M0 AMOLED LCD Driver"
  90. depends on SPI && BACKLIGHT_CLASS_DEVICE
  91. default n
  92. help
  93. If you have an S6E63M0 LCD Panel, say Y to enable its
  94. LCD control driver.
  95. config LCD_LD9040
  96. tristate "LD9040 AMOLED LCD Driver"
  97. depends on SPI && BACKLIGHT_CLASS_DEVICE
  98. default n
  99. help
  100. If you have an LD9040 Panel, say Y to enable its
  101. control driver.
  102. config LCD_AMS369FG06
  103. tristate "AMS369FG06 AMOLED LCD Driver"
  104. depends on SPI && BACKLIGHT_CLASS_DEVICE
  105. default n
  106. help
  107. If you have an AMS369FG06 AMOLED Panel, say Y to enable its
  108. LCD control driver.
  109. config LCD_LMS501KF03
  110. tristate "LMS501KF03 LCD Driver"
  111. depends on SPI
  112. default n
  113. help
  114. If you have an LMS501KF03 LCD Panel, say Y to enable its
  115. LCD control driver.
  116. config LCD_HX8357
  117. tristate "Himax HX-8357 LCD Driver"
  118. depends on SPI
  119. help
  120. If you have a HX-8357 LCD panel, say Y to enable its LCD control
  121. driver.
  122. endif # LCD_CLASS_DEVICE
  123. #
  124. # Backlight
  125. #
  126. config BACKLIGHT_CLASS_DEVICE
  127. tristate "Lowlevel Backlight controls"
  128. default m
  129. help
  130. This framework adds support for low-level control of the LCD
  131. backlight. This includes support for brightness and power.
  132. To have support for your specific LCD panel you will have to
  133. select the proper drivers which depend on this option.
  134. if BACKLIGHT_CLASS_DEVICE
  135. config BACKLIGHT_ATMEL_LCDC
  136. bool "Atmel LCDC Contrast-as-Backlight control"
  137. depends on FB_ATMEL
  138. default y if MACH_SAM9261EK || MACH_SAM9G10EK || MACH_SAM9263EK
  139. help
  140. This provides a backlight control internal to the Atmel LCDC
  141. driver. If the LCD "contrast control" on your board is wired
  142. so it controls the backlight brightness, select this option to
  143. export this as a PWM-based backlight control.
  144. If in doubt, it's safe to enable this option; it doesn't kick
  145. in unless the board's description says it's wired that way.
  146. config BACKLIGHT_ATMEL_PWM
  147. tristate "Atmel PWM backlight control"
  148. depends on ATMEL_PWM
  149. help
  150. Say Y here if you want to use the PWM peripheral in Atmel AT91 and
  151. AVR32 devices. This driver will need additional platform data to know
  152. which PWM instance to use and how to configure it.
  153. To compile this driver as a module, choose M here: the module will be
  154. called atmel-pwm-bl.
  155. config BACKLIGHT_EP93XX
  156. tristate "Cirrus EP93xx Backlight Driver"
  157. depends on FB_EP93XX
  158. help
  159. If you have a LCD backlight connected to the BRIGHT output of
  160. the EP93xx, say Y here to enable this driver.
  161. To compile this driver as a module, choose M here: the module will
  162. be called ep93xx_bl.
  163. config BACKLIGHT_GENERIC
  164. tristate "Generic (aka Sharp Corgi) Backlight Driver"
  165. default y
  166. help
  167. Say y to enable the generic platform backlight driver previously
  168. known as the Corgi backlight driver. If you have a Sharp Zaurus
  169. SL-C7xx, SL-Cxx00 or SL-6000x say y.
  170. config BACKLIGHT_LM3533
  171. tristate "Backlight Driver for LM3533"
  172. depends on BACKLIGHT_CLASS_DEVICE
  173. depends on MFD_LM3533
  174. help
  175. Say Y to enable the backlight driver for National Semiconductor / TI
  176. LM3533 Lighting Power chips.
  177. The backlights can be controlled directly, through PWM input, or by
  178. the ambient-light-sensor interface. The chip supports 256 brightness
  179. levels.
  180. config BACKLIGHT_LOCOMO
  181. tristate "Sharp LOCOMO LCD/Backlight Driver"
  182. depends on SHARP_LOCOMO
  183. default y
  184. help
  185. If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to
  186. enable the LCD/backlight driver.
  187. config BACKLIGHT_OMAP1
  188. tristate "OMAP1 PWL-based LCD Backlight"
  189. depends on ARCH_OMAP1
  190. default y
  191. help
  192. This driver controls the LCD backlight level and power for
  193. the PWL module of OMAP1 processors. Say Y if your board
  194. uses this hardware.
  195. config BACKLIGHT_HP680
  196. tristate "HP Jornada 680 Backlight Driver"
  197. depends on SH_HP6XX
  198. default y
  199. help
  200. If you have a HP Jornada 680, say y to enable the
  201. backlight driver.
  202. config BACKLIGHT_HP700
  203. tristate "HP Jornada 700 series Backlight Driver"
  204. depends on SA1100_JORNADA720_SSP && !PREEMPT
  205. default y
  206. help
  207. If you have an HP Jornada 700 series,
  208. say Y to include backlight control driver.
  209. config BACKLIGHT_CARILLO_RANCH
  210. tristate "Intel Carillo Ranch Backlight Driver"
  211. depends on LCD_CLASS_DEVICE && PCI && X86 && FB_LE80578
  212. help
  213. If you have a Intel LE80578 (Carillo Ranch) say Y to enable the
  214. backlight driver.
  215. config BACKLIGHT_PWM
  216. tristate "Generic PWM based Backlight Driver"
  217. depends on PWM
  218. help
  219. If you have a LCD backlight adjustable by PWM, say Y to enable
  220. this driver.
  221. config BACKLIGHT_DA903X
  222. tristate "Backlight Driver for DA9030/DA9034 using WLED"
  223. depends on PMIC_DA903X
  224. help
  225. If you have a LCD backlight connected to the WLED output of DA9030
  226. or DA9034 WLED output, say Y here to enable this driver.
  227. config BACKLIGHT_DA9052
  228. tristate "Dialog DA9052/DA9053 WLED"
  229. depends on PMIC_DA9052
  230. help
  231. Enable the Backlight Driver for DA9052-BC and DA9053-AA/Bx PMICs.
  232. config BACKLIGHT_MAX8925
  233. tristate "Backlight driver for MAX8925"
  234. depends on MFD_MAX8925
  235. help
  236. If you have a LCD backlight connected to the WLED output of MAX8925
  237. WLED output, say Y here to enable this driver.
  238. config BACKLIGHT_APPLE
  239. tristate "Apple Backlight Driver"
  240. depends on X86 && ACPI
  241. help
  242. If you have an Intel-based Apple say Y to enable a driver for its
  243. backlight.
  244. config BACKLIGHT_TOSA
  245. tristate "Sharp SL-6000 Backlight Driver"
  246. depends on I2C && MACH_TOSA && LCD_TOSA
  247. help
  248. If you have an Sharp SL-6000 Zaurus say Y to enable a driver
  249. for its backlight
  250. config BACKLIGHT_SAHARA
  251. tristate "Tabletkiosk Sahara Touch-iT Backlight Driver"
  252. depends on X86
  253. help
  254. If you have a Tabletkiosk Sahara Touch-iT, say y to enable the
  255. backlight driver.
  256. config BACKLIGHT_WM831X
  257. tristate "WM831x PMIC Backlight Driver"
  258. depends on MFD_WM831X
  259. help
  260. If you have a backlight driven by the ISINK and DCDC of a
  261. WM831x PMIC say y to enable the backlight driver for it.
  262. config BACKLIGHT_ADP5520
  263. tristate "Backlight Driver for ADP5520/ADP5501 using WLED"
  264. depends on PMIC_ADP5520
  265. help
  266. If you have a LCD backlight connected to the BST/BL_SNK output of
  267. ADP5520 or ADP5501, say Y here to enable this driver.
  268. To compile this driver as a module, choose M here: the module will
  269. be called adp5520_bl.
  270. config BACKLIGHT_ADP8860
  271. tristate "Backlight Driver for ADP8860/ADP8861/ADP8863 using WLED"
  272. depends on BACKLIGHT_CLASS_DEVICE && I2C
  273. select NEW_LEDS
  274. select LEDS_CLASS
  275. help
  276. If you have a LCD backlight connected to the ADP8860, ADP8861 or
  277. ADP8863 say Y here to enable this driver.
  278. To compile this driver as a module, choose M here: the module will
  279. be called adp8860_bl.
  280. config BACKLIGHT_ADP8870
  281. tristate "Backlight Driver for ADP8870 using WLED"
  282. depends on BACKLIGHT_CLASS_DEVICE && I2C
  283. select NEW_LEDS
  284. select LEDS_CLASS
  285. help
  286. If you have a LCD backlight connected to the ADP8870,
  287. say Y here to enable this driver.
  288. To compile this driver as a module, choose M here: the module will
  289. be called adp8870_bl.
  290. config BACKLIGHT_88PM860X
  291. tristate "Backlight Driver for 88PM8606 using WLED"
  292. depends on MFD_88PM860X
  293. help
  294. Say Y to enable the backlight driver for Marvell 88PM8606.
  295. config BACKLIGHT_PCF50633
  296. tristate "Backlight driver for NXP PCF50633 MFD"
  297. depends on BACKLIGHT_CLASS_DEVICE && MFD_PCF50633
  298. help
  299. If you have a backlight driven by a NXP PCF50633 MFD, say Y here to
  300. enable its driver.
  301. config BACKLIGHT_AAT2870
  302. tristate "AnalogicTech AAT2870 Backlight"
  303. depends on BACKLIGHT_CLASS_DEVICE && MFD_AAT2870_CORE
  304. help
  305. If you have a AnalogicTech AAT2870 say Y to enable the
  306. backlight driver.
  307. config BACKLIGHT_LM3630
  308. tristate "Backlight Driver for LM3630"
  309. depends on BACKLIGHT_CLASS_DEVICE && I2C
  310. select REGMAP_I2C
  311. help
  312. This supports TI LM3630 Backlight Driver
  313. config BACKLIGHT_LM3639
  314. tristate "Backlight Driver for LM3639"
  315. depends on BACKLIGHT_CLASS_DEVICE && I2C
  316. select REGMAP_I2C
  317. select NEW_LEDS
  318. select LEDS_CLASS
  319. help
  320. This supports TI LM3639 Backlight + 1.5A Flash LED Driver
  321. config BACKLIGHT_LP855X
  322. tristate "Backlight driver for TI LP855X"
  323. depends on BACKLIGHT_CLASS_DEVICE && I2C
  324. help
  325. This supports TI LP8550, LP8551, LP8552, LP8553, LP8556 and LP8557
  326. backlight driver.
  327. config BACKLIGHT_LP8788
  328. tristate "Backlight driver for TI LP8788 MFD"
  329. depends on BACKLIGHT_CLASS_DEVICE && MFD_LP8788
  330. help
  331. This supports TI LP8788 backlight driver.
  332. config BACKLIGHT_OT200
  333. tristate "Backlight driver for ot200 visualisation device"
  334. depends on BACKLIGHT_CLASS_DEVICE && CS5535_MFGPT && GPIO_CS5535
  335. help
  336. To compile this driver as a module, choose M here: the module will be
  337. called ot200_bl.
  338. config BACKLIGHT_PANDORA
  339. tristate "Backlight driver for Pandora console"
  340. depends on TWL4030_CORE
  341. help
  342. If you have a Pandora console, say Y to enable the
  343. backlight driver.
  344. config BACKLIGHT_TPS65217
  345. tristate "TPS65217 Backlight"
  346. depends on BACKLIGHT_CLASS_DEVICE && MFD_TPS65217
  347. help
  348. If you have a Texas Instruments TPS65217 say Y to enable the
  349. backlight driver.
  350. config BACKLIGHT_AS3711
  351. tristate "AS3711 Backlight"
  352. depends on BACKLIGHT_CLASS_DEVICE && MFD_AS3711
  353. help
  354. If you have an Austrian Microsystems AS3711 say Y to enable the
  355. backlight driver.
  356. endif # BACKLIGHT_CLASS_DEVICE
  357. endif # BACKLIGHT_LCD_SUPPORT