Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Backlight & LCD drivers configuration |
| 3 | # |
| 4 | |
| 5 | menuconfig 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 Brownell | fa9133c | 2007-05-29 23:07:10 +0100 | [diff] [blame] | 11 | # |
| 12 | # LCD |
| 13 | # |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | config LCD_CLASS_DEVICE |
| 15 | tristate "Lowlevel LCD controls" |
Antonino A. Daplas | 256154f | 2006-07-30 03:04:17 -0700 | [diff] [blame] | 16 | depends on BACKLIGHT_LCD_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | 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 | |
Haavard Skinnemoen | 18f65c7 | 2007-09-02 23:15:49 +0100 | [diff] [blame] | 27 | config LCD_LTV350QV |
| 28 | tristate "Samsung LTV350QV LCD Panel" |
| 29 | depends on LCD_CLASS_DEVICE && SPI_MASTER |
| 30 | default n |
| 31 | help |
| 32 | If you have a Samsung LTV350QV LCD panel, say y to include a |
| 33 | power control driver for it. The panel starts up in power |
| 34 | off state, so you need this driver in order to see any |
| 35 | output. |
| 36 | |
| 37 | The LTV350QV panel is present on all ATSTK1000 boards. |
| 38 | |
Ben Dooks | cccb6d3 | 2008-07-23 21:31:37 -0700 | [diff] [blame] | 39 | config LCD_ILI9320 |
| 40 | tristate |
| 41 | depends on LCD_CLASS_DEVICE && BACKLIGHT_LCD_SUPPORT |
| 42 | default n |
| 43 | help |
| 44 | If you have a panel based on the ILI9320 controller chip |
| 45 | then say y to include a power driver for it. |
| 46 | |
| 47 | config LCD_VGG2432A4 |
| 48 | tristate "VGG2432A4 LCM device support" |
| 49 | depends on BACKLIGHT_LCD_SUPPORT && LCD_CLASS_DEVICE && SPI_MASTER |
| 50 | select LCD_ILI9320 |
| 51 | default n |
| 52 | help |
| 53 | If you have a VGG2432A4 panel based on the ILI9320 controller chip |
| 54 | then say y to include a power driver for it. |
| 55 | |
Ben Dooks | c25826a | 2008-07-23 21:31:38 -0700 | [diff] [blame] | 56 | config LCD_PLATFORM |
| 57 | tristate "Platform LCD controls" |
| 58 | depends on LCD_CLASS_DEVICE |
| 59 | help |
| 60 | This driver provides a platform-device registered LCD power |
| 61 | control interface. |
| 62 | |
David Brownell | fa9133c | 2007-05-29 23:07:10 +0100 | [diff] [blame] | 63 | # |
| 64 | # Backlight |
| 65 | # |
| 66 | config BACKLIGHT_CLASS_DEVICE |
| 67 | tristate "Lowlevel Backlight controls" |
| 68 | depends on BACKLIGHT_LCD_SUPPORT |
| 69 | default m |
| 70 | help |
| 71 | This framework adds support for low-level control of the LCD |
| 72 | backlight. This includes support for brightness and power. |
| 73 | |
| 74 | To have support for your specific LCD panel you will have to |
| 75 | select the proper drivers which depend on this option. |
| 76 | |
David Brownell | a9a84c3 | 2008-02-06 01:39:26 -0800 | [diff] [blame] | 77 | config BACKLIGHT_ATMEL_LCDC |
| 78 | bool "Atmel LCDC Contrast-as-Backlight control" |
| 79 | depends on BACKLIGHT_CLASS_DEVICE && FB_ATMEL |
| 80 | default y if MACH_SAM9261EK || MACH_SAM9263EK |
| 81 | help |
| 82 | This provides a backlight control internal to the Atmel LCDC |
| 83 | driver. If the LCD "contrast control" on your board is wired |
| 84 | so it controls the backlight brightness, select this option to |
| 85 | export this as a PWM-based backlight control. |
| 86 | |
| 87 | If in doubt, it's safe to enable this option; it doesn't kick |
| 88 | in unless the board's description says it's wired that way. |
| 89 | |
Hans-Christian Egtvedt | 3e07405 | 2008-07-23 21:31:48 -0700 | [diff] [blame] | 90 | config BACKLIGHT_ATMEL_PWM |
| 91 | tristate "Atmel PWM backlight control" |
| 92 | depends on BACKLIGHT_CLASS_DEVICE && ATMEL_PWM |
| 93 | default n |
| 94 | help |
| 95 | Say Y here if you want to use the PWM peripheral in Atmel AT91 and |
| 96 | AVR32 devices. This driver will need additional platform data to know |
| 97 | which PWM instance to use and how to configure it. |
| 98 | |
| 99 | To compile this driver as a module, choose M here: the module will be |
| 100 | called atmel-pwm-bl. |
| 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | config BACKLIGHT_CORGI |
Richard Purdie | c3f8f65 | 2007-09-03 00:27:00 +0100 | [diff] [blame] | 103 | tristate "Generic (aka Sharp Corgi) Backlight Driver" |
| 104 | depends on BACKLIGHT_CLASS_DEVICE |
| 105 | default n |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | help |
Richard Purdie | c3f8f65 | 2007-09-03 00:27:00 +0100 | [diff] [blame] | 107 | Say y to enable the generic platform backlight driver previously |
| 108 | known as the Corgi backlight driver. If you have a Sharp Zaurus |
| 109 | SL-C7xx, SL-Cxx00 or SL-6000x say y. Most users can say n. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 111 | config BACKLIGHT_LOCOMO |
| 112 | tristate "Sharp LOCOMO LCD/Backlight Driver" |
Richard Purdie | 34f18a7 | 2007-02-09 09:40:30 +0000 | [diff] [blame] | 113 | depends on BACKLIGHT_CLASS_DEVICE && SHARP_LOCOMO |
Richard Purdie | e442378 | 2006-06-26 00:26:27 -0700 | [diff] [blame] | 114 | default y |
| 115 | help |
| 116 | If you have a Sharp Zaurus SL-5500 (Collie) or SL-5600 (Poodle) say y to |
| 117 | enable the LCD/backlight driver. |
| 118 | |
Andrzej Zaborowski | ec072b0 | 2008-01-13 23:15:43 +0000 | [diff] [blame] | 119 | config BACKLIGHT_OMAP1 |
| 120 | tristate "OMAP1 PWL-based LCD Backlight" |
| 121 | depends on BACKLIGHT_CLASS_DEVICE && ARCH_OMAP1 |
| 122 | default y |
| 123 | help |
| 124 | This driver controls the LCD backlight level and power for |
| 125 | the PWL module of OMAP1 processors. Say Y if your board |
| 126 | uses this hardware. |
| 127 | |
Andriy Skulysh | 06c6f90 | 2006-02-01 03:06:53 -0800 | [diff] [blame] | 128 | config BACKLIGHT_HP680 |
| 129 | tristate "HP Jornada 680 Backlight Driver" |
Richard Purdie | 34f18a7 | 2007-02-09 09:40:30 +0000 | [diff] [blame] | 130 | depends on BACKLIGHT_CLASS_DEVICE && SH_HP6XX |
Andriy Skulysh | 06c6f90 | 2006-02-01 03:06:53 -0800 | [diff] [blame] | 131 | default y |
| 132 | help |
| 133 | If you have a HP Jornada 680, say y to enable the |
| 134 | backlight driver. |
| 135 | |
Marcin Juszkiewicz | 7a20846 | 2007-02-07 22:24:01 +0000 | [diff] [blame] | 136 | config BACKLIGHT_PROGEAR |
| 137 | tristate "Frontpath ProGear Backlight Driver" |
Richard Purdie | 34f18a7 | 2007-02-09 09:40:30 +0000 | [diff] [blame] | 138 | depends on BACKLIGHT_CLASS_DEVICE && PCI && X86 |
Marcin Juszkiewicz | 7a20846 | 2007-02-07 22:24:01 +0000 | [diff] [blame] | 139 | default n |
| 140 | help |
| 141 | If you have a Frontpath ProGear say Y to enable the |
| 142 | backlight driver. |
Alan Hourihane | dbe7e42 | 2007-05-08 00:39:25 -0700 | [diff] [blame] | 143 | |
| 144 | config BACKLIGHT_CARILLO_RANCH |
| 145 | tristate "Intel Carillo Ranch Backlight Driver" |
| 146 | depends on BACKLIGHT_CLASS_DEVICE && LCD_CLASS_DEVICE && PCI && X86 && FB_LE80578 |
| 147 | default n |
| 148 | help |
| 149 | If you have a Intel LE80578 (Carillo Ranch) say Y to enable the |
| 150 | backlight driver. |
eric miao | 42796d3 | 2008-04-14 09:35:08 +0100 | [diff] [blame] | 151 | |
| 152 | config BACKLIGHT_PWM |
| 153 | tristate "Generic PWM based Backlight Driver" |
| 154 | depends on BACKLIGHT_CLASS_DEVICE && HAVE_PWM |
| 155 | help |
| 156 | If you have a LCD backlight adjustable by PWM, say Y to enable |
| 157 | this driver. |
Matthew Garrett | 7be35c7 | 2008-06-09 21:56:16 +0100 | [diff] [blame] | 158 | |
| 159 | config BACKLIGHT_MBP_NVIDIA |
| 160 | tristate "MacBook Pro Nvidia Backlight Driver" |
| 161 | depends on BACKLIGHT_CLASS_DEVICE && X86 |
| 162 | default n |
| 163 | help |
| 164 | If you have an Apple Macbook Pro with Nvidia graphics hardware say Y |
| 165 | to enable a driver for its backlight |
| 166 | |