Kconfig 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Backlight & LCD drivers configuration
  4. #
  5. menu "Backlight & LCD device support"
  6. #
  7. # LCD
  8. #
  9. config LCD_CLASS_DEVICE
  10. tristate "Lowlevel LCD controls"
  11. help
  12. This framework adds support for low-level control of LCD.
  13. Some framebuffer devices connect to platform-specific LCD modules
  14. in order to have a platform-specific way to control the flat panel
  15. (contrast and applying power to the LCD (not to the backlight!)).
  16. To have support for your specific LCD panel you will have to
  17. select the proper drivers which depend on this option.
  18. if LCD_CLASS_DEVICE
  19. config LCD_CORGI
  20. tristate "LCD Panel support for SHARP corgi/spitz model"
  21. depends on SPI_MASTER && PXA_SHARPSL && BACKLIGHT_CLASS_DEVICE
  22. help
  23. Say y here to support the LCD panels usually found on SHARP
  24. corgi (C7x0) and spitz (Cxx00) models.
  25. config LCD_L4F00242T03
  26. tristate "Epson L4F00242T03 LCD"
  27. depends on SPI_MASTER
  28. depends on GPIOLIB || COMPILE_TEST
  29. help
  30. SPI driver for Epson L4F00242T03. This provides basic support
  31. for init and powering the LCD up/down through a sysfs interface.
  32. config LCD_LMS283GF05
  33. tristate "Samsung LMS283GF05 LCD"
  34. depends on SPI_MASTER
  35. depends on GPIOLIB || COMPILE_TEST
  36. help
  37. SPI driver for Samsung LMS283GF05. This provides basic support
  38. for powering the LCD up/down through a sysfs interface.
  39. config LCD_LTV350QV
  40. tristate "Samsung LTV350QV LCD Panel"
  41. depends on SPI_MASTER
  42. help
  43. If you have a Samsung LTV350QV LCD panel, say y to include a
  44. power control driver for it. The panel starts up in power
  45. off state, so you need this driver in order to see any
  46. output.
  47. The LTV350QV panel is present on all ATSTK1000 boards.
  48. config LCD_ILI922X
  49. tristate "ILI Technology ILI9221/ILI9222 support"
  50. depends on SPI
  51. help
  52. If you have a panel based on the ILI9221/9222 controller
  53. chip then say y to include a driver for it.
  54. config LCD_ILI9320
  55. tristate "ILI Technology ILI9320 controller support"
  56. depends on SPI
  57. help
  58. If you have a panel based on the ILI9320 controller chip
  59. then say y to include a power driver for it.
  60. config LCD_TDO24M
  61. tristate "Toppoly TDO24M and TDO35S LCD Panels support"
  62. depends on SPI_MASTER
  63. help
  64. If you have a Toppoly TDO24M/TDO35S series LCD panel, say y here to
  65. include the support for it.
  66. config LCD_VGG2432A4
  67. tristate "VGG2432A4 LCM device support"
  68. depends on SPI_MASTER
  69. select LCD_ILI9320
  70. help
  71. If you have a VGG2432A4 panel based on the ILI9320 controller chip
  72. then say y to include a power driver for it.
  73. config LCD_PLATFORM
  74. tristate "Platform LCD controls"
  75. help
  76. This driver provides a platform-device registered LCD power
  77. control interface.
  78. config LCD_HP700
  79. tristate "HP Jornada 700 series LCD Driver"
  80. depends on SA1100_JORNADA720_SSP && !PREEMPTION
  81. default y
  82. help
  83. If you have an HP Jornada 700 series handheld (710/720/728)
  84. say Y to enable LCD control driver.
  85. config LCD_AMS369FG06
  86. tristate "AMS369FG06 AMOLED LCD Driver"
  87. depends on SPI && BACKLIGHT_CLASS_DEVICE
  88. default n
  89. help
  90. If you have an AMS369FG06 AMOLED Panel, say Y to enable its
  91. LCD control driver.
  92. config LCD_LMS501KF03
  93. tristate "LMS501KF03 LCD Driver"
  94. depends on SPI
  95. default n
  96. help
  97. If you have an LMS501KF03 LCD Panel, say Y to enable its
  98. LCD control driver.
  99. config LCD_HX8357
  100. tristate "Himax HX-8357 LCD Driver"
  101. depends on SPI
  102. help
  103. If you have a HX-8357 LCD panel, say Y to enable its LCD control
  104. driver.
  105. config LCD_OTM3225A
  106. tristate "ORISE Technology OTM3225A support"
  107. depends on SPI
  108. help
  109. If you have a panel based on the OTM3225A controller
  110. chip then say y to include a driver for it.
  111. endif # LCD_CLASS_DEVICE
  112. #
  113. # Backlight
  114. #
  115. config BACKLIGHT_CLASS_DEVICE
  116. tristate "Lowlevel Backlight controls"
  117. help
  118. This framework adds support for low-level control of the LCD
  119. backlight. This includes support for brightness and power.
  120. To have support for your specific LCD panel you will have to
  121. select the proper drivers which depend on this option.
  122. if BACKLIGHT_CLASS_DEVICE
  123. config BACKLIGHT_ATMEL_LCDC
  124. bool "Atmel LCDC Contrast-as-Backlight control"
  125. depends on FB_ATMEL
  126. help
  127. This provides a backlight control internal to the Atmel LCDC
  128. driver. If the LCD "contrast control" on your board is wired
  129. so it controls the backlight brightness, select this option to
  130. export this as a PWM-based backlight control.
  131. If in doubt, it's safe to enable this option; it doesn't kick
  132. in unless the board's description says it's wired that way.
  133. config BACKLIGHT_EP93XX
  134. tristate "Cirrus EP93xx Backlight Driver"
  135. depends on FB_EP93XX
  136. help
  137. If you have a LCD backlight connected to the BRIGHT output of
  138. the EP93xx, say Y here to enable this driver.
  139. To compile this driver as a module, choose M here: the module will
  140. be called ep93xx_bl.
  141. config BACKLIGHT_IPAQ_MICRO
  142. tristate "iPAQ microcontroller backlight driver"
  143. depends on MFD_IPAQ_MICRO
  144. default y
  145. help
  146. Say y to enable the backlight driver for Compaq iPAQ handheld
  147. computers. Say yes if you have one of the h3100/h3600/h3700
  148. machines.
  149. config BACKLIGHT_KTD253
  150. tristate "Backlight Driver for Kinetic KTD253"
  151. depends on GPIOLIB || COMPILE_TEST
  152. help
  153. Say y to enabled the backlight driver for the Kinetic KTD253
  154. which is a 1-wire GPIO-controlled backlight found in some mobile
  155. phones.
  156. config BACKLIGHT_KTD2801
  157. tristate "Backlight Driver for Kinetic KTD2801"
  158. select LEDS_EXPRESSWIRE
  159. help
  160. Say Y to enable the backlight driver for the Kinetic KTD2801 1-wire
  161. GPIO-controlled backlight found in Samsung Galaxy Core Prime VE LTE.
  162. config BACKLIGHT_KTZ8866
  163. tristate "Backlight Driver for Kinetic KTZ8866"
  164. depends on I2C
  165. select REGMAP_I2C
  166. help
  167. Say Y to enable the backlight driver for the Kinetic KTZ8866
  168. found in Xiaomi Mi Pad 5 series.
  169. config BACKLIGHT_LM3533
  170. tristate "Backlight Driver for LM3533"
  171. depends on MFD_LM3533
  172. help
  173. Say Y to enable the backlight driver for National Semiconductor / TI
  174. LM3533 Lighting Power chips.
  175. The backlights can be controlled directly, through PWM input, or by
  176. the ambient-light-sensor interface. The chip supports 256 brightness
  177. levels.
  178. config BACKLIGHT_LOCOMO
  179. tristate "Sharp LOCOMO LCD/Backlight Driver"
  180. depends on SHARP_LOCOMO
  181. default y
  182. help
  183. If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to
  184. enable the LCD/backlight driver.
  185. config BACKLIGHT_OMAP1
  186. tristate "OMAP1 PWL-based LCD Backlight"
  187. depends on ARCH_OMAP1 || COMPILE_TEST
  188. default ARCH_OMAP1
  189. help
  190. This driver controls the LCD backlight level and power for
  191. the PWL module of OMAP1 processors. Say Y if your board
  192. uses this hardware.
  193. config BACKLIGHT_HP680
  194. tristate "HP Jornada 680 Backlight Driver"
  195. depends on SH_HP6XX
  196. default y
  197. help
  198. If you have a HP Jornada 680, say y to enable the
  199. backlight driver.
  200. config BACKLIGHT_HP700
  201. tristate "HP Jornada 700 series Backlight Driver"
  202. depends on SA1100_JORNADA720_SSP && !PREEMPTION
  203. default y
  204. help
  205. If you have an HP Jornada 700 series,
  206. say Y to include backlight control driver.
  207. config BACKLIGHT_PWM
  208. tristate "Generic PWM based Backlight Driver"
  209. depends on PWM
  210. help
  211. If you have a LCD backlight adjustable by PWM, say Y to enable
  212. this driver.
  213. config BACKLIGHT_DA903X
  214. tristate "Backlight Driver for DA9030/DA9034 using WLED"
  215. depends on PMIC_DA903X
  216. help
  217. If you have a LCD backlight connected to the WLED output of DA9030
  218. or DA9034 WLED output, say Y here to enable this driver.
  219. config BACKLIGHT_DA9052
  220. tristate "Dialog DA9052/DA9053 WLED"
  221. depends on PMIC_DA9052
  222. help
  223. Enable the Backlight Driver for DA9052-BC and DA9053-AA/Bx PMICs.
  224. config BACKLIGHT_MAX8925
  225. tristate "Backlight driver for MAX8925"
  226. depends on MFD_MAX8925
  227. help
  228. If you have a LCD backlight connected to the WLED output of MAX8925
  229. WLED output, say Y here to enable this driver.
  230. config BACKLIGHT_MT6370
  231. tristate "MediaTek MT6370 Backlight Driver"
  232. depends on MFD_MT6370
  233. help
  234. This enables support for Mediatek MT6370 Backlight driver.
  235. It's commonly used to drive the display WLED. There are 4 channels
  236. inside, and each channel supports up to 30mA of current capability
  237. with 2048 current steps (only for MT6370/MT6371) or 16384 current
  238. steps (only for MT6372) in exponential or linear mapping curves.
  239. This driver can also be built as a module. If so, the module
  240. will be called "mt6370-backlight".
  241. config BACKLIGHT_APPLE
  242. tristate "Apple Backlight Driver"
  243. depends on X86 && ACPI
  244. depends on ACPI_VIDEO=n || ACPI_VIDEO
  245. help
  246. If you have an Intel-based Apple say Y to enable a driver for its
  247. backlight.
  248. config BACKLIGHT_QCOM_WLED
  249. tristate "Qualcomm PMIC WLED Driver"
  250. select REGMAP
  251. help
  252. If you have the Qualcomm PMIC, say Y to enable a driver for the
  253. WLED block. Currently it supports PM8941 and PMI8998.
  254. config BACKLIGHT_RT4831
  255. tristate "Richtek RT4831 Backlight Driver"
  256. depends on MFD_RT4831
  257. help
  258. This enables support for Richtek RT4831 Backlight driver.
  259. It's commonly used to drive the display WLED. There're four channels
  260. inisde, and each channel can provide up to 30mA current.
  261. config BACKLIGHT_SAHARA
  262. tristate "Tabletkiosk Sahara Touch-iT Backlight Driver"
  263. depends on X86
  264. help
  265. If you have a Tabletkiosk Sahara Touch-iT, say y to enable the
  266. backlight driver.
  267. config BACKLIGHT_WM831X
  268. tristate "WM831x PMIC Backlight Driver"
  269. depends on MFD_WM831X
  270. help
  271. If you have a backlight driven by the ISINK and DCDC of a
  272. WM831x PMIC say y to enable the backlight driver for it.
  273. config BACKLIGHT_ADP5520
  274. tristate "Backlight Driver for ADP5520/ADP5501 using WLED"
  275. depends on PMIC_ADP5520
  276. help
  277. If you have a LCD backlight connected to the BST/BL_SNK output of
  278. ADP5520 or ADP5501, say Y here to enable this driver.
  279. To compile this driver as a module, choose M here: the module will
  280. be called adp5520_bl.
  281. config BACKLIGHT_ADP8860
  282. tristate "Backlight Driver for ADP8860/ADP8861/ADP8863 using WLED"
  283. depends on I2C
  284. select NEW_LEDS
  285. select LEDS_CLASS
  286. help
  287. If you have a LCD backlight connected to the ADP8860, ADP8861 or
  288. ADP8863 say Y here to enable this driver.
  289. To compile this driver as a module, choose M here: the module will
  290. be called adp8860_bl.
  291. config BACKLIGHT_ADP8870
  292. tristate "Backlight Driver for ADP8870 using WLED"
  293. depends on I2C
  294. select NEW_LEDS
  295. select LEDS_CLASS
  296. help
  297. If you have a LCD backlight connected to the ADP8870,
  298. say Y here to enable this driver.
  299. To compile this driver as a module, choose M here: the module will
  300. be called adp8870_bl.
  301. config BACKLIGHT_88PM860X
  302. tristate "Backlight Driver for 88PM8606 using WLED"
  303. depends on MFD_88PM860X
  304. help
  305. Say Y to enable the backlight driver for Marvell 88PM8606.
  306. config BACKLIGHT_PCF50633
  307. tristate "Backlight driver for NXP PCF50633 MFD"
  308. depends on MFD_PCF50633
  309. help
  310. If you have a backlight driven by a NXP PCF50633 MFD, say Y here to
  311. enable its driver.
  312. config BACKLIGHT_AAT2870
  313. tristate "AnalogicTech AAT2870 Backlight"
  314. depends on MFD_AAT2870_CORE
  315. help
  316. If you have a AnalogicTech AAT2870 say Y to enable the
  317. backlight driver.
  318. config BACKLIGHT_LM3509
  319. tristate "Backlight Driver for LM3509"
  320. depends on I2C
  321. select REGMAP_I2C
  322. help
  323. This supports TI LM3509 Backlight Driver
  324. config BACKLIGHT_LM3630A
  325. tristate "Backlight Driver for LM3630A"
  326. depends on I2C && PWM
  327. select REGMAP_I2C
  328. help
  329. This supports TI LM3630A Backlight Driver
  330. config BACKLIGHT_LM3639
  331. tristate "Backlight Driver for LM3639"
  332. depends on I2C
  333. select REGMAP_I2C
  334. select NEW_LEDS
  335. select LEDS_CLASS
  336. help
  337. This supports TI LM3639 Backlight + 1.5A Flash LED Driver
  338. config BACKLIGHT_LP855X
  339. tristate "Backlight driver for TI LP855X"
  340. depends on I2C && PWM
  341. help
  342. This supports TI LP8550, LP8551, LP8552, LP8553, LP8555, LP8556 and
  343. LP8557 backlight driver.
  344. config BACKLIGHT_LP8788
  345. tristate "Backlight driver for TI LP8788 MFD"
  346. depends on MFD_LP8788 && PWM
  347. help
  348. This supports TI LP8788 backlight driver.
  349. config BACKLIGHT_MP3309C
  350. tristate "Backlight Driver for MPS MP3309C"
  351. depends on I2C && PWM
  352. select REGMAP_I2C
  353. help
  354. This supports MPS MP3309C backlight WLED driver in both PWM and
  355. analog/I2C dimming modes.
  356. To compile this driver as a module, choose M here: the module will
  357. be called mp3309c.
  358. config BACKLIGHT_PANDORA
  359. tristate "Backlight driver for Pandora console"
  360. depends on TWL4030_CORE
  361. help
  362. If you have a Pandora console, say Y to enable the
  363. backlight driver.
  364. config BACKLIGHT_SKY81452
  365. tristate "Backlight driver for SKY81452"
  366. depends on MFD_SKY81452
  367. help
  368. If you have a Skyworks SKY81452, say Y to enable the
  369. backlight driver.
  370. To compile this driver as a module, choose M here: the module will
  371. be called sky81452-backlight
  372. config BACKLIGHT_TPS65217
  373. tristate "TPS65217 Backlight"
  374. depends on MFD_TPS65217
  375. help
  376. If you have a Texas Instruments TPS65217 say Y to enable the
  377. backlight driver.
  378. config BACKLIGHT_AS3711
  379. tristate "AS3711 Backlight"
  380. depends on MFD_AS3711
  381. help
  382. If you have an Austrian Microsystems AS3711 say Y to enable the
  383. backlight driver.
  384. config BACKLIGHT_GPIO
  385. tristate "Generic GPIO based Backlight Driver"
  386. depends on GPIOLIB || COMPILE_TEST
  387. help
  388. If you have a LCD backlight adjustable by GPIO, say Y to enable
  389. this driver.
  390. config BACKLIGHT_LV5207LP
  391. tristate "Sanyo LV5207LP Backlight"
  392. depends on I2C
  393. help
  394. If you have a Sanyo LV5207LP say Y to enable the backlight driver.
  395. config BACKLIGHT_BD6107
  396. tristate "Rohm BD6107 Backlight"
  397. depends on I2C
  398. help
  399. If you have a Rohm BD6107 say Y to enable the backlight driver.
  400. config BACKLIGHT_ARCXCNN
  401. tristate "Backlight driver for the Arctic Sands ARCxCnnnn family"
  402. depends on I2C
  403. help
  404. If you have an ARCxCnnnn family backlight say Y to enable
  405. the backlight driver.
  406. config BACKLIGHT_RAVE_SP
  407. tristate "RAVE SP Backlight driver"
  408. depends on RAVE_SP_CORE
  409. help
  410. Support for backlight control on RAVE SP device.
  411. config BACKLIGHT_LED
  412. tristate "Generic LED based Backlight Driver"
  413. depends on LEDS_CLASS && OF
  414. help
  415. If you have a LCD backlight adjustable by LED class driver, say Y
  416. to enable this driver.
  417. endif # BACKLIGHT_CLASS_DEVICE
  418. endmenu