blob: f86dbfd209ad8f34d4bbd506049d3980889a8b09 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Backlight & LCD drivers configuration
3#
4
5menuconfig BACKLIGHT_LCD_SUPPORT
6 bool "Backlight & LCD device support"
7 help
8 Enable this to be able to choose the drivers for controlling the
9 backlight and the LCD panel on some platforms, for example on PDAs.
10
David Brownellfa9133c2007-05-29 23:07:10 +010011#
12# LCD
13#
Linus Torvalds1da177e2005-04-16 15:20:36 -070014config LCD_CLASS_DEVICE
15 tristate "Lowlevel LCD controls"
Antonino A. Daplas256154f2006-07-30 03:04:17 -070016 depends on BACKLIGHT_LCD_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 default m
18 help
19 This framework adds support for low-level control of LCD.
20 Some framebuffer devices connect to platform-specific LCD modules
21 in order to have a platform-specific way to control the flat panel
22 (contrast and applying power to the LCD (not to the backlight!)).
23
24 To have support for your specific LCD panel you will have to
25 select the proper drivers which depend on this option.
26
Eric Miaob18250a2008-08-29 04:21:44 +080027config LCD_CORGI
28 tristate "LCD Panel support for SHARP corgi/spitz model"
29 depends on LCD_CLASS_DEVICE && SPI_MASTER && PXA_SHARPSL
30 help
31 Say y here to support the LCD panels usually found on SHARP
32 corgi (C7x0) and spitz (Cxx00) models.
33
Haavard Skinnemoen18f65c72007-09-02 23:15:49 +010034config LCD_LTV350QV
35 tristate "Samsung LTV350QV LCD Panel"
36 depends on LCD_CLASS_DEVICE && SPI_MASTER
37 default n
38 help
39 If you have a Samsung LTV350QV LCD panel, say y to include a
40 power control driver for it. The panel starts up in power
41 off state, so you need this driver in order to see any
42 output.
43
44 The LTV350QV panel is present on all ATSTK1000 boards.
45
Ben Dookscccb6d32008-07-23 21:31:37 -070046config LCD_ILI9320
47 tristate
48 depends on LCD_CLASS_DEVICE && BACKLIGHT_LCD_SUPPORT
49 default n
50 help
51 If you have a panel based on the ILI9320 controller chip
52 then say y to include a power driver for it.
53
Eric Miaodd89ccb2008-09-01 06:50:23 +080054config LCD_TDO24M
Mike Rapoportf4f6bda2008-12-03 08:48:52 +000055 tristate "Toppoly TDO24M and TDO35S LCD Panels support"
Eric Miaodd89ccb2008-09-01 06:50:23 +080056 depends on LCD_CLASS_DEVICE && SPI_MASTER
57 default n
58 help
Mike Rapoportf4f6bda2008-12-03 08:48:52 +000059 If you have a Toppoly TDO24M/TDO35S series LCD panel, say y here to
Eric Miaodd89ccb2008-09-01 06:50:23 +080060 include the support for it.
61
Ben Dookscccb6d32008-07-23 21:31:37 -070062config LCD_VGG2432A4
63 tristate "VGG2432A4 LCM device support"
64 depends on BACKLIGHT_LCD_SUPPORT && LCD_CLASS_DEVICE && SPI_MASTER
65 select LCD_ILI9320
66 default n
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
Ben Dooksc25826a2008-07-23 21:31:38 -070071config LCD_PLATFORM
72 tristate "Platform LCD controls"
73 depends on LCD_CLASS_DEVICE
74 help
75 This driver provides a platform-device registered LCD power
76 control interface.
77
Dmitry Baryshkovfbd1b172008-09-13 20:58:51 +040078config LCD_TOSA
79 tristate "Sharp SL-6000 LCD Driver"
80 depends on LCD_CLASS_DEVICE && SPI
81 depends on MACH_TOSA
82 default n
83 help
84 If you have an Sharp SL-6000 Zaurus say Y to enable a driver
85 for its LCD.
86
Kristoffer Ericson9e124432009-02-18 11:47:26 +000087config LCD_HP700
88 tristate "HP Jornada 700 series LCD Driver"
89 depends on LCD_CLASS_DEVICE
90 depends on SA1100_JORNADA720_SSP && !PREEMPT
91 default y
92 help
93 If you have an HP Jornada 700 series handheld (710/720/728)
94 say Y to enable LCD control driver.
95
David Brownellfa9133c2007-05-29 23:07:10 +010096#
97# Backlight
98#
99config BACKLIGHT_CLASS_DEVICE
100 tristate "Lowlevel Backlight controls"
101 depends on BACKLIGHT_LCD_SUPPORT
102 default m
103 help
104 This framework adds support for low-level control of the LCD
105 backlight. This includes support for brightness and power.
106
107 To have support for your specific LCD panel you will have to
108 select the proper drivers which depend on this option.
109
David Brownella9a84c32008-02-06 01:39:26 -0800110config BACKLIGHT_ATMEL_LCDC
111 bool "Atmel LCDC Contrast-as-Backlight control"
112 depends on BACKLIGHT_CLASS_DEVICE && FB_ATMEL
113 default y if MACH_SAM9261EK || MACH_SAM9263EK
114 help
115 This provides a backlight control internal to the Atmel LCDC
116 driver. If the LCD "contrast control" on your board is wired
117 so it controls the backlight brightness, select this option to
118 export this as a PWM-based backlight control.
119
120 If in doubt, it's safe to enable this option; it doesn't kick
121 in unless the board's description says it's wired that way.
122
Hans-Christian Egtvedt3e074052008-07-23 21:31:48 -0700123config BACKLIGHT_ATMEL_PWM
124 tristate "Atmel PWM backlight control"
125 depends on BACKLIGHT_CLASS_DEVICE && ATMEL_PWM
126 default n
127 help
128 Say Y here if you want to use the PWM peripheral in Atmel AT91 and
129 AVR32 devices. This driver will need additional platform data to know
130 which PWM instance to use and how to configure it.
131
132 To compile this driver as a module, choose M here: the module will be
133 called atmel-pwm-bl.
134
Richard Purdied00ba722009-01-08 20:52:37 +0000135config BACKLIGHT_GENERIC
136 tristate "Generic (aka Sharp Corgi) Backlight Driver"
Richard Purdiec3f8f652007-09-03 00:27:00 +0100137 depends on BACKLIGHT_CLASS_DEVICE
Richard Purdied00ba722009-01-08 20:52:37 +0000138 default y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 help
Richard Purdiec3f8f652007-09-03 00:27:00 +0100140 Say y to enable the generic platform backlight driver previously
141 known as the Corgi backlight driver. If you have a Sharp Zaurus
Richard Purdied00ba722009-01-08 20:52:37 +0000142 SL-C7xx, SL-Cxx00 or SL-6000x say y.
Eric Miao45e2a9b2008-10-21 11:36:19 +0800143
Richard Purdiee4423782006-06-26 00:26:27 -0700144config BACKLIGHT_LOCOMO
145 tristate "Sharp LOCOMO LCD/Backlight Driver"
Richard Purdie34f18a72007-02-09 09:40:30 +0000146 depends on BACKLIGHT_CLASS_DEVICE && SHARP_LOCOMO
Richard Purdiee4423782006-06-26 00:26:27 -0700147 default y
148 help
149 If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to
150 enable the LCD/backlight driver.
151
Andrzej Zaborowskiec072b02008-01-13 23:15:43 +0000152config BACKLIGHT_OMAP1
153 tristate "OMAP1 PWL-based LCD Backlight"
154 depends on BACKLIGHT_CLASS_DEVICE && ARCH_OMAP1
155 default y
156 help
157 This driver controls the LCD backlight level and power for
158 the PWL module of OMAP1 processors. Say Y if your board
159 uses this hardware.
160
Andriy Skulysh06c6f902006-02-01 03:06:53 -0800161config BACKLIGHT_HP680
162 tristate "HP Jornada 680 Backlight Driver"
Richard Purdie34f18a72007-02-09 09:40:30 +0000163 depends on BACKLIGHT_CLASS_DEVICE && SH_HP6XX
Andriy Skulysh06c6f902006-02-01 03:06:53 -0800164 default y
165 help
166 If you have a HP Jornada 680, say y to enable the
167 backlight driver.
168
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000169config BACKLIGHT_HP700
170 tristate "HP Jornada 700 series Backlight Driver"
171 depends on BACKLIGHT_CLASS_DEVICE
172 depends on SA1100_JORNADA720_SSP && !PREEMPT
173 default y
174 help
175 If you have an HP Jornada 700 series,
176 say Y to include backlight control driver.
177
Marcin Juszkiewicz7a208462007-02-07 22:24:01 +0000178config BACKLIGHT_PROGEAR
179 tristate "Frontpath ProGear Backlight Driver"
Richard Purdie34f18a72007-02-09 09:40:30 +0000180 depends on BACKLIGHT_CLASS_DEVICE && PCI && X86
Marcin Juszkiewicz7a208462007-02-07 22:24:01 +0000181 default n
182 help
183 If you have a Frontpath ProGear say Y to enable the
184 backlight driver.
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700185
186config BACKLIGHT_CARILLO_RANCH
187 tristate "Intel Carillo Ranch Backlight Driver"
188 depends on BACKLIGHT_CLASS_DEVICE && LCD_CLASS_DEVICE && PCI && X86 && FB_LE80578
189 default n
190 help
191 If you have a Intel LE80578 (Carillo Ranch) say Y to enable the
192 backlight driver.
eric miao42796d32008-04-14 09:35:08 +0100193
194config BACKLIGHT_PWM
195 tristate "Generic PWM based Backlight Driver"
196 depends on BACKLIGHT_CLASS_DEVICE && HAVE_PWM
197 help
198 If you have a LCD backlight adjustable by PWM, say Y to enable
199 this driver.
Matthew Garrett7be35c72008-06-09 21:56:16 +0100200
Mike Rapoport923ae482008-10-13 09:03:44 +0100201config BACKLIGHT_DA903X
202 tristate "Backlight Driver for DA9030/DA9034 using WLED"
203 depends on BACKLIGHT_CLASS_DEVICE && PMIC_DA903X
204 help
205 If you have a LCD backlight connected to the WLED output of DA9030
206 or DA9034 WLED output, say Y here to enable this driver.
207
Matthew Garrett7be35c72008-06-09 21:56:16 +0100208config BACKLIGHT_MBP_NVIDIA
209 tristate "MacBook Pro Nvidia Backlight Driver"
210 depends on BACKLIGHT_CLASS_DEVICE && X86
211 default n
212 help
213 If you have an Apple Macbook Pro with Nvidia graphics hardware say Y
214 to enable a driver for its backlight
215
Dmitry Baryshkovfbd1b172008-09-13 20:58:51 +0400216config BACKLIGHT_TOSA
217 tristate "Sharp SL-6000 Backlight Driver"
218 depends on BACKLIGHT_CLASS_DEVICE && I2C
219 depends on MACH_TOSA && LCD_TOSA
220 default n
221 help
222 If you have an Sharp SL-6000 Zaurus say Y to enable a driver
223 for its backlight
224
Claudio Niederd03ebb12008-10-20 23:35:40 +0100225config BACKLIGHT_SAHARA
226 tristate "Tabletkiosk Sahara Touch-iT Backlight Driver"
227 depends on BACKLIGHT_CLASS_DEVICE && X86
228 default n
229 help
230 If you have a Tabletkiosk Sahara Touch-iT, say y to enable the
231 backlight driver.
Mark Browna4f3d552009-09-05 14:09:20 +0100232
233config BACKLIGHT_WM831X
234 tristate "WM831x PMIC Backlight Driver"
235 depends on BACKLIGHT_CLASS_DEVICE && MFD_WM831X
236 help
237 If you have a backlight driven by the ISINK and DCDC of a
238 WM831x PMIC say y to enable the backlight driver for it.