xref: /linux/drivers/video/backlight/Kconfig (revision fbd1b17b43b8783a5408ec18c293dd8ebdc7e2cd)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Backlight & LCD drivers configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds
51da177e4SLinus Torvaldsmenuconfig BACKLIGHT_LCD_SUPPORT
61da177e4SLinus Torvalds	bool "Backlight & LCD device support"
71da177e4SLinus Torvalds	help
81da177e4SLinus Torvalds	  Enable this to be able to choose the drivers for controlling the
91da177e4SLinus Torvalds	  backlight and the LCD panel on some platforms, for example on PDAs.
101da177e4SLinus Torvalds
11fa9133c2SDavid Brownell#
12fa9133c2SDavid Brownell# LCD
13fa9133c2SDavid Brownell#
141da177e4SLinus Torvaldsconfig LCD_CLASS_DEVICE
151da177e4SLinus Torvalds        tristate "Lowlevel LCD controls"
16256154fbSAntonino A. Daplas	depends on BACKLIGHT_LCD_SUPPORT
171da177e4SLinus Torvalds	default m
181da177e4SLinus Torvalds	help
191da177e4SLinus Torvalds	  This framework adds support for low-level control of LCD.
201da177e4SLinus Torvalds	  Some framebuffer devices connect to platform-specific LCD modules
211da177e4SLinus Torvalds	  in order to have a platform-specific way to control the flat panel
221da177e4SLinus Torvalds	  (contrast and applying power to the LCD (not to the backlight!)).
231da177e4SLinus Torvalds
241da177e4SLinus Torvalds	  To have support for your specific LCD panel you will have to
251da177e4SLinus Torvalds	  select the proper drivers which depend on this option.
261da177e4SLinus Torvalds
27b18250a8SEric Miaoconfig LCD_CORGI
28b18250a8SEric Miao	tristate "LCD Panel support for SHARP corgi/spitz model"
29b18250a8SEric Miao	depends on LCD_CLASS_DEVICE && SPI_MASTER && PXA_SHARPSL
30b18250a8SEric Miao	help
31b18250a8SEric Miao	  Say y here to support the LCD panels usually found on SHARP
32b18250a8SEric Miao	  corgi (C7x0) and spitz (Cxx00) models.
33b18250a8SEric Miao
3418f65c79SHaavard Skinnemoenconfig LCD_LTV350QV
3518f65c79SHaavard Skinnemoen	tristate "Samsung LTV350QV LCD Panel"
3618f65c79SHaavard Skinnemoen	depends on LCD_CLASS_DEVICE && SPI_MASTER
3718f65c79SHaavard Skinnemoen	default n
3818f65c79SHaavard Skinnemoen	help
3918f65c79SHaavard Skinnemoen	  If you have a Samsung LTV350QV LCD panel, say y to include a
4018f65c79SHaavard Skinnemoen	  power control driver for it.  The panel starts up in power
4118f65c79SHaavard Skinnemoen	  off state, so you need this driver in order to see any
4218f65c79SHaavard Skinnemoen	  output.
4318f65c79SHaavard Skinnemoen
4418f65c79SHaavard Skinnemoen	  The LTV350QV panel is present on all ATSTK1000 boards.
4518f65c79SHaavard Skinnemoen
46cccb6d3cSBen Dooksconfig LCD_ILI9320
47cccb6d3cSBen Dooks	tristate
48cccb6d3cSBen Dooks	depends on LCD_CLASS_DEVICE && BACKLIGHT_LCD_SUPPORT
49cccb6d3cSBen Dooks	default n
50cccb6d3cSBen Dooks	help
51cccb6d3cSBen Dooks	  If you have a panel based on the ILI9320 controller chip
52cccb6d3cSBen Dooks	  then say y to include a power driver for it.
53cccb6d3cSBen Dooks
54dd89ccb2SEric Miaoconfig LCD_TDO24M
55dd89ccb2SEric Miao	tristate "Toppoly TDO24M LCD Panels support"
56dd89ccb2SEric Miao	depends on LCD_CLASS_DEVICE && SPI_MASTER
57dd89ccb2SEric Miao	default n
58dd89ccb2SEric Miao	help
59dd89ccb2SEric Miao	  If you have a Toppoly TDO24M series LCD panel, say y here to
60dd89ccb2SEric Miao	  include the support for it.
61dd89ccb2SEric Miao
62cccb6d3cSBen Dooksconfig LCD_VGG2432A4
63cccb6d3cSBen Dooks	tristate "VGG2432A4 LCM device support"
64cccb6d3cSBen Dooks	depends on BACKLIGHT_LCD_SUPPORT && LCD_CLASS_DEVICE && SPI_MASTER
65cccb6d3cSBen Dooks	select LCD_ILI9320
66cccb6d3cSBen Dooks	default n
67cccb6d3cSBen Dooks	help
68cccb6d3cSBen Dooks	  If you have a VGG2432A4 panel based on the ILI9320 controller chip
69cccb6d3cSBen Dooks	  then say y to include a power driver for it.
70cccb6d3cSBen Dooks
71c25826a7SBen Dooksconfig LCD_PLATFORM
72c25826a7SBen Dooks	tristate "Platform LCD controls"
73c25826a7SBen Dooks	depends on LCD_CLASS_DEVICE
74c25826a7SBen Dooks	help
75c25826a7SBen Dooks	  This driver provides a platform-device registered LCD power
76c25826a7SBen Dooks	  control interface.
77c25826a7SBen Dooks
78*fbd1b17bSDmitry Baryshkovconfig LCD_TOSA
79*fbd1b17bSDmitry Baryshkov	tristate "Sharp SL-6000 LCD Driver"
80*fbd1b17bSDmitry Baryshkov	depends on LCD_CLASS_DEVICE && SPI
81*fbd1b17bSDmitry Baryshkov	depends on MACH_TOSA
82*fbd1b17bSDmitry Baryshkov	default n
83*fbd1b17bSDmitry Baryshkov	help
84*fbd1b17bSDmitry Baryshkov	  If you have an Sharp SL-6000 Zaurus say Y to enable a driver
85*fbd1b17bSDmitry Baryshkov	  for its LCD.
86*fbd1b17bSDmitry Baryshkov
87fa9133c2SDavid Brownell#
88fa9133c2SDavid Brownell# Backlight
89fa9133c2SDavid Brownell#
90fa9133c2SDavid Brownellconfig BACKLIGHT_CLASS_DEVICE
91fa9133c2SDavid Brownell        tristate "Lowlevel Backlight controls"
92fa9133c2SDavid Brownell	depends on BACKLIGHT_LCD_SUPPORT
93fa9133c2SDavid Brownell	default m
94fa9133c2SDavid Brownell	help
95fa9133c2SDavid Brownell	  This framework adds support for low-level control of the LCD
96fa9133c2SDavid Brownell          backlight. This includes support for brightness and power.
97fa9133c2SDavid Brownell
98fa9133c2SDavid Brownell	  To have support for your specific LCD panel you will have to
99fa9133c2SDavid Brownell	  select the proper drivers which depend on this option.
100fa9133c2SDavid Brownell
101a9a84c37SDavid Brownellconfig BACKLIGHT_ATMEL_LCDC
102a9a84c37SDavid Brownell	bool "Atmel LCDC Contrast-as-Backlight control"
103a9a84c37SDavid Brownell	depends on BACKLIGHT_CLASS_DEVICE && FB_ATMEL
104a9a84c37SDavid Brownell	default y if MACH_SAM9261EK || MACH_SAM9263EK
105a9a84c37SDavid Brownell	help
106a9a84c37SDavid Brownell	  This provides a backlight control internal to the Atmel LCDC
107a9a84c37SDavid Brownell	  driver.  If the LCD "contrast control" on your board is wired
108a9a84c37SDavid Brownell	  so it controls the backlight brightness, select this option to
109a9a84c37SDavid Brownell	  export this as a PWM-based backlight control.
110a9a84c37SDavid Brownell
111a9a84c37SDavid Brownell	  If in doubt, it's safe to enable this option; it doesn't kick
112a9a84c37SDavid Brownell	  in unless the board's description says it's wired that way.
113a9a84c37SDavid Brownell
1143e074058SHans-Christian Egtvedtconfig BACKLIGHT_ATMEL_PWM
1153e074058SHans-Christian Egtvedt	tristate "Atmel PWM backlight control"
1163e074058SHans-Christian Egtvedt	depends on BACKLIGHT_CLASS_DEVICE && ATMEL_PWM
1173e074058SHans-Christian Egtvedt	default n
1183e074058SHans-Christian Egtvedt	help
1193e074058SHans-Christian Egtvedt	  Say Y here if you want to use the PWM peripheral in Atmel AT91 and
1203e074058SHans-Christian Egtvedt	  AVR32 devices. This driver will need additional platform data to know
1213e074058SHans-Christian Egtvedt	  which PWM instance to use and how to configure it.
1223e074058SHans-Christian Egtvedt
1233e074058SHans-Christian Egtvedt	  To compile this driver as a module, choose M here: the module will be
1243e074058SHans-Christian Egtvedt	  called atmel-pwm-bl.
1253e074058SHans-Christian Egtvedt
1261da177e4SLinus Torvaldsconfig BACKLIGHT_CORGI
127c3f8f650SRichard Purdie	tristate "Generic (aka Sharp Corgi) Backlight Driver"
128c3f8f650SRichard Purdie	depends on BACKLIGHT_CLASS_DEVICE
129c3f8f650SRichard Purdie	default n
1301da177e4SLinus Torvalds	help
131c3f8f650SRichard Purdie	  Say y to enable the generic platform backlight driver previously
132c3f8f650SRichard Purdie	  known as the Corgi backlight driver. If you have a Sharp Zaurus
133c3f8f650SRichard Purdie	  SL-C7xx, SL-Cxx00 or SL-6000x say y. Most users can say n.
1341da177e4SLinus Torvalds
135e4423781SRichard Purdieconfig BACKLIGHT_LOCOMO
136e4423781SRichard Purdie	tristate "Sharp LOCOMO LCD/Backlight Driver"
13734f18a71SRichard Purdie	depends on BACKLIGHT_CLASS_DEVICE && SHARP_LOCOMO
138e4423781SRichard Purdie	default y
139e4423781SRichard Purdie	help
140e4423781SRichard Purdie	  If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to
141e4423781SRichard Purdie	  enable the LCD/backlight driver.
142e4423781SRichard Purdie
143ec072b0fSAndrzej Zaborowskiconfig BACKLIGHT_OMAP1
144ec072b0fSAndrzej Zaborowski	tristate "OMAP1 PWL-based LCD Backlight"
145ec072b0fSAndrzej Zaborowski	depends on BACKLIGHT_CLASS_DEVICE && ARCH_OMAP1
146ec072b0fSAndrzej Zaborowski	default y
147ec072b0fSAndrzej Zaborowski	help
148ec072b0fSAndrzej Zaborowski	  This driver controls the LCD backlight level and power for
149ec072b0fSAndrzej Zaborowski	  the PWL module of OMAP1 processors.  Say Y if your board
150ec072b0fSAndrzej Zaborowski	  uses this hardware.
151ec072b0fSAndrzej Zaborowski
15206c6f900SAndriy Skulyshconfig BACKLIGHT_HP680
15306c6f900SAndriy Skulysh	tristate "HP Jornada 680 Backlight Driver"
15434f18a71SRichard Purdie	depends on BACKLIGHT_CLASS_DEVICE && SH_HP6XX
15506c6f900SAndriy Skulysh	default y
15606c6f900SAndriy Skulysh	help
15706c6f900SAndriy Skulysh	  If you have a HP Jornada 680, say y to enable the
15806c6f900SAndriy Skulysh	  backlight driver.
15906c6f900SAndriy Skulysh
1607a208463SMarcin Juszkiewiczconfig BACKLIGHT_PROGEAR
1617a208463SMarcin Juszkiewicz	tristate "Frontpath ProGear Backlight Driver"
16234f18a71SRichard Purdie	depends on BACKLIGHT_CLASS_DEVICE && PCI && X86
1637a208463SMarcin Juszkiewicz	default n
1647a208463SMarcin Juszkiewicz	help
1657a208463SMarcin Juszkiewicz	  If you have a Frontpath ProGear say Y to enable the
1667a208463SMarcin Juszkiewicz	  backlight driver.
167dbe7e429SAlan Hourihane
168dbe7e429SAlan Hourihaneconfig BACKLIGHT_CARILLO_RANCH
169dbe7e429SAlan Hourihane	tristate "Intel Carillo Ranch Backlight Driver"
170dbe7e429SAlan Hourihane	depends on BACKLIGHT_CLASS_DEVICE && LCD_CLASS_DEVICE && PCI && X86 && FB_LE80578
171dbe7e429SAlan Hourihane	default n
172dbe7e429SAlan Hourihane	help
173dbe7e429SAlan Hourihane	  If you have a Intel LE80578 (Carillo Ranch) say Y to enable the
174dbe7e429SAlan Hourihane	  backlight driver.
17542796d37Seric miao
17642796d37Seric miaoconfig BACKLIGHT_PWM
17742796d37Seric miao	tristate "Generic PWM based Backlight Driver"
17842796d37Seric miao	depends on BACKLIGHT_CLASS_DEVICE && HAVE_PWM
17942796d37Seric miao	help
18042796d37Seric miao	  If you have a LCD backlight adjustable by PWM, say Y to enable
18142796d37Seric miao	  this driver.
1827be35c72SMatthew Garrett
1837be35c72SMatthew Garrettconfig BACKLIGHT_MBP_NVIDIA
1847be35c72SMatthew Garrett       tristate "MacBook Pro Nvidia Backlight Driver"
1857be35c72SMatthew Garrett       depends on BACKLIGHT_CLASS_DEVICE && X86
1867be35c72SMatthew Garrett       default n
1877be35c72SMatthew Garrett       help
1887be35c72SMatthew Garrett         If you have an Apple Macbook Pro with Nvidia graphics hardware say Y
1897be35c72SMatthew Garrett	 to enable a driver for its backlight
1907be35c72SMatthew Garrett
191*fbd1b17bSDmitry Baryshkovconfig BACKLIGHT_TOSA
192*fbd1b17bSDmitry Baryshkov	tristate "Sharp SL-6000 Backlight Driver"
193*fbd1b17bSDmitry Baryshkov	depends on BACKLIGHT_CLASS_DEVICE && I2C
194*fbd1b17bSDmitry Baryshkov	depends on MACH_TOSA && LCD_TOSA
195*fbd1b17bSDmitry Baryshkov	default n
196*fbd1b17bSDmitry Baryshkov	help
197*fbd1b17bSDmitry Baryshkov	  If you have an Sharp SL-6000 Zaurus say Y to enable a driver
198*fbd1b17bSDmitry Baryshkov	  for its backlight
199*fbd1b17bSDmitry Baryshkov
200