Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Video configuration |
| 3 | # |
| 4 | |
| 5 | menu "Graphics support" |
| 6 | |
Richard Purdie | 8f27489 | 2007-02-20 12:27:25 +0000 | [diff] [blame] | 7 | source "drivers/video/backlight/Kconfig" |
Antonino A. Daplas | ba70710 | 2006-06-26 00:26:37 -0700 | [diff] [blame] | 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | config FB |
| 10 | tristate "Support for frame buffer devices" |
| 11 | ---help--- |
| 12 | The frame buffer device provides an abstraction for the graphics |
| 13 | hardware. It represents the frame buffer of some video hardware and |
| 14 | allows application software to access the graphics hardware through |
| 15 | a well-defined interface, so the software doesn't need to know |
| 16 | anything about the low-level (hardware register) stuff. |
| 17 | |
| 18 | Frame buffer devices work identically across the different |
| 19 | architectures supported by Linux and make the implementation of |
| 20 | application programs easier and more portable; at this point, an X |
| 21 | server exists which uses the frame buffer device exclusively. |
| 22 | On several non-X86 architectures, the frame buffer device is the |
| 23 | only way to use the graphics hardware. |
| 24 | |
| 25 | The device is accessed through special device nodes, usually located |
| 26 | in the /dev directory, i.e. /dev/fb*. |
| 27 | |
| 28 | You need an utility program called fbset to make full use of frame |
| 29 | buffer devices. Please read <file:Documentation/fb/framebuffer.txt> |
| 30 | and the Framebuffer-HOWTO at |
| 31 | <http://www.tahallah.demon.co.uk/programming/prog.html> for more |
| 32 | information. |
| 33 | |
| 34 | Say Y here and to the driver for your graphics board below if you |
| 35 | are compiling a kernel for a non-x86 architecture. |
| 36 | |
| 37 | If you are compiling for the x86 architecture, you can say Y if you |
| 38 | want to play with it, but it is not essential. Please note that |
| 39 | running graphical applications that directly touch the hardware |
| 40 | (e.g. an accelerated X server) and that are not frame buffer |
| 41 | device-aware may cause unexpected results. If unsure, say N. |
| 42 | |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 43 | config FIRMWARE_EDID |
| 44 | bool "Enable firmware EDID" |
| 45 | depends on FB |
| 46 | default n |
| 47 | ---help--- |
| 48 | This enables access to the EDID transferred from the firmware. |
| 49 | On the i386, this is from the Video BIOS. Enable this if DDC/I2C |
| 50 | transfers do not work for your driver and if you are using |
| 51 | nvidiafb, i810fb or savagefb. |
| 52 | |
| 53 | In general, choosing Y for this option is safe. If you |
| 54 | experience extremely long delays while booting before you get |
| 55 | something on your display, try setting this to N. Matrox cards in |
| 56 | combination with certain motherboards and monitors are known to |
| 57 | suffer from this problem. |
| 58 | |
Dennis Munsie | fc5891c | 2006-10-03 01:14:42 -0700 | [diff] [blame] | 59 | config FB_DDC |
| 60 | tristate |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 61 | depends on FB |
| 62 | select I2C_ALGOBIT |
| 63 | select I2C |
Dennis Munsie | fc5891c | 2006-10-03 01:14:42 -0700 | [diff] [blame] | 64 | default n |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | config FB_CFB_FILLRECT |
| 67 | tristate |
| 68 | depends on FB |
| 69 | default n |
| 70 | ---help--- |
| 71 | Include the cfb_fillrect function for generic software rectangle |
| 72 | filling. This is used by drivers that don't provide their own |
| 73 | (accelerated) version. |
| 74 | |
| 75 | config FB_CFB_COPYAREA |
| 76 | tristate |
| 77 | depends on FB |
| 78 | default n |
| 79 | ---help--- |
| 80 | Include the cfb_copyarea function for generic software area copying. |
| 81 | This is used by drivers that don't provide their own (accelerated) |
| 82 | version. |
| 83 | |
| 84 | config FB_CFB_IMAGEBLIT |
| 85 | tristate |
| 86 | depends on FB |
| 87 | default n |
| 88 | ---help--- |
| 89 | Include the cfb_imageblit function for generic software image |
| 90 | blitting. This is used by drivers that don't provide their own |
| 91 | (accelerated) version. |
| 92 | |
Ondrej Zajicek | a268422 | 2007-02-12 00:54:49 -0800 | [diff] [blame] | 93 | config FB_SVGALIB |
| 94 | tristate |
| 95 | depends on FB |
| 96 | default n |
| 97 | ---help--- |
| 98 | Common utility functions useful to fbdev drivers of VGA-based |
| 99 | cards. |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | config FB_MACMODES |
| 102 | tristate |
| 103 | depends on FB |
| 104 | default n |
| 105 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 106 | config FB_BACKLIGHT |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 107 | bool |
| 108 | depends on FB |
| 109 | select BACKLIGHT_LCD_SUPPORT |
| 110 | select BACKLIGHT_CLASS_DEVICE |
| 111 | default n |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | config FB_MODE_HELPERS |
| 114 | bool "Enable Video Mode Handling Helpers" |
| 115 | depends on FB |
| 116 | default n |
| 117 | ---help--- |
| 118 | This enables functions for handling video modes using the |
| 119 | Generalized Timing Formula and the EDID parser. A few drivers rely |
| 120 | on this feature such as the radeonfb, rivafb, and the i810fb. If |
| 121 | your driver does not take advantage of this feature, choosing Y will |
| 122 | just increase the kernel size by about 5K. |
| 123 | |
| 124 | config FB_TILEBLITTING |
| 125 | bool "Enable Tile Blitting Support" |
| 126 | depends on FB |
| 127 | default n |
| 128 | ---help--- |
| 129 | This enables tile blitting. Tile blitting is a drawing technique |
| 130 | where the screen is divided into rectangular sections (tiles), whereas |
| 131 | the standard blitting divides the screen into pixels. Because the |
| 132 | default drawing element is a tile, drawing functions will be passed |
| 133 | parameters in terms of number of tiles instead of number of pixels. |
| 134 | For example, to draw a single character, instead of using bitmaps, |
| 135 | an index to an array of bitmaps will be used. To clear or move a |
| 136 | rectangular section of a screen, the rectangle will be described in |
| 137 | terms of number of tiles in the x- and y-axis. |
| 138 | |
| 139 | This is particularly important to one driver, matroxfb. If |
| 140 | unsure, say N. |
| 141 | |
Miguel Ojeda | 10ccaf4 | 2007-04-23 14:41:09 -0700 | [diff] [blame] | 142 | comment "Frame buffer hardware drivers" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 143 | depends on FB |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | config FB_CIRRUS |
| 146 | tristate "Cirrus Logic support" |
| 147 | depends on FB && (ZORRO || PCI) |
| 148 | select FB_CFB_FILLRECT |
| 149 | select FB_CFB_COPYAREA |
| 150 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | ---help--- |
| 152 | This enables support for Cirrus Logic GD542x/543x based boards on |
| 153 | Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum. |
| 154 | |
| 155 | If you have a PCI-based system, this enables support for these |
| 156 | chips: GD-543x, GD-544x, GD-5480. |
| 157 | |
| 158 | Please read the file <file:Documentation/fb/cirrusfb.txt>. |
| 159 | |
| 160 | Say N unless you have such a graphics board or plan to get one |
| 161 | before you next recompile the kernel. |
| 162 | |
| 163 | config FB_PM2 |
| 164 | tristate "Permedia2 support" |
| 165 | depends on FB && ((AMIGA && BROKEN) || PCI) |
| 166 | select FB_CFB_FILLRECT |
| 167 | select FB_CFB_COPYAREA |
| 168 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | help |
| 170 | This is the frame buffer device driver for the Permedia2 AGP frame |
| 171 | buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a |
| 172 | product page at |
| 173 | <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>. |
| 174 | |
| 175 | config FB_PM2_FIFO_DISCONNECT |
| 176 | bool "enable FIFO disconnect feature" |
| 177 | depends on FB_PM2 && PCI |
| 178 | help |
| 179 | Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2). |
| 180 | |
| 181 | config FB_ARMCLCD |
| 182 | tristate "ARM PrimeCell PL110 support" |
| 183 | depends on FB && ARM && ARM_AMBA |
| 184 | select FB_CFB_FILLRECT |
| 185 | select FB_CFB_COPYAREA |
| 186 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | help |
| 188 | This framebuffer device driver is for the ARM PrimeCell PL110 |
| 189 | Colour LCD controller. ARM PrimeCells provide the building |
| 190 | blocks for System on a Chip devices. |
| 191 | |
| 192 | If you want to compile this as a module (=code which can be |
| 193 | inserted into and removed from the running kernel), say M |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 194 | here and read <file:Documentation/kbuild/modules.txt>. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | will be called amba-clcd. |
| 196 | |
Marc Singer | 903e2bb | 2006-05-16 11:41:30 +0100 | [diff] [blame] | 197 | choice |
| 198 | |
| 199 | depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X) |
| 200 | prompt "LCD Panel" |
| 201 | default FB_ARMCLCD_SHARP_LQ035Q7DB02 |
| 202 | |
| 203 | config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT |
| 204 | bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC" |
| 205 | help |
| 206 | This is an implementation of the Sharp LQ035Q7DB02, a 3.5" |
Matt LaPlante | cab0089 | 2006-10-03 22:36:44 +0200 | [diff] [blame] | 207 | color QVGA, HRTFT panel. The LogicPD device includes |
Marc Singer | 903e2bb | 2006-05-16 11:41:30 +0100 | [diff] [blame] | 208 | an integrated HRTFT controller IC. |
| 209 | The native resolution is 240x320. |
| 210 | |
| 211 | config FB_ARMCLCD_SHARP_LQ057Q3DC02 |
| 212 | bool "LogicPD LCD 5.7\" QVGA" |
| 213 | help |
| 214 | This is an implementation of the Sharp LQ057Q3DC02, a 5.7" |
| 215 | color QVGA, TFT panel. The LogicPD device includes an |
| 216 | The native resolution is 320x240. |
| 217 | |
| 218 | config FB_ARMCLCD_SHARP_LQ64D343 |
| 219 | bool "LogicPD LCD 6.4\" VGA" |
| 220 | help |
| 221 | This is an implementation of the Sharp LQ64D343, a 6.4" |
| 222 | color VGA, TFT panel. The LogicPD device includes an |
| 223 | The native resolution is 640x480. |
| 224 | |
| 225 | config FB_ARMCLCD_SHARP_LQ10D368 |
| 226 | bool "LogicPD LCD 10.4\" VGA" |
| 227 | help |
| 228 | This is an implementation of the Sharp LQ10D368, a 10.4" |
| 229 | color VGA, TFT panel. The LogicPD device includes an |
| 230 | The native resolution is 640x480. |
| 231 | |
| 232 | |
| 233 | config FB_ARMCLCD_SHARP_LQ121S1DG41 |
| 234 | bool "LogicPD LCD 12.1\" SVGA" |
| 235 | help |
| 236 | This is an implementation of the Sharp LQ121S1DG41, a 12.1" |
| 237 | color SVGA, TFT panel. The LogicPD device includes an |
| 238 | The native resolution is 800x600. |
| 239 | |
| 240 | This panel requires a clock rate may be an integer fraction |
| 241 | of the base LCDCLK frequency. The driver will select the |
| 242 | highest frequency available that is lower than the maximum |
| 243 | allowed. The panel may flicker if the clock rate is |
| 244 | slower than the recommended minimum. |
| 245 | |
| 246 | config FB_ARMCLCD_AUO_A070VW01_WIDE |
| 247 | bool "AU Optronics A070VW01 LCD 7.0\" WIDE" |
| 248 | help |
| 249 | This is an implementation of the AU Optronics, a 7.0" |
| 250 | WIDE Color. The native resolution is 234x480. |
| 251 | |
| 252 | config FB_ARMCLCD_HITACHI |
| 253 | bool "Hitachi Wide Screen 800x480" |
| 254 | help |
| 255 | This is an implementation of the Hitachi 800x480. |
| 256 | |
| 257 | endchoice |
| 258 | |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | config FB_ACORN |
| 261 | bool "Acorn VIDC support" |
| 262 | depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500) |
| 263 | select FB_CFB_FILLRECT |
| 264 | select FB_CFB_COPYAREA |
| 265 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | help |
| 267 | This is the frame buffer device driver for the Acorn VIDC graphics |
| 268 | hardware found in Acorn RISC PCs and other ARM-based machines. If |
| 269 | unsure, say N. |
| 270 | |
| 271 | config FB_CLPS711X |
| 272 | bool "CLPS711X LCD support" |
| 273 | depends on (FB = y) && ARM && ARCH_CLPS711X |
| 274 | select FB_CFB_FILLRECT |
| 275 | select FB_CFB_COPYAREA |
| 276 | select FB_CFB_IMAGEBLIT |
Randy.Dunlap | e65c085 | 2005-11-07 01:00:28 -0800 | [diff] [blame] | 277 | help |
| 278 | Say Y to enable the Framebuffer driver for the CLPS7111 and |
| 279 | EP7212 processors. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
| 281 | config FB_SA1100 |
| 282 | bool "SA-1100 LCD support" |
| 283 | depends on (FB = y) && ARM && ARCH_SA1100 |
| 284 | select FB_CFB_FILLRECT |
| 285 | select FB_CFB_COPYAREA |
| 286 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | help |
| 288 | This is a framebuffer device for the SA-1100 LCD Controller. |
| 289 | See <http://www.linux-fbdev.org/> for information on framebuffer |
| 290 | devices. |
| 291 | |
| 292 | If you plan to use the LCD display with your SA-1100 system, say |
| 293 | Y here. |
| 294 | |
Sascha Hauer | 7c2f891c | 2005-05-01 08:59:24 -0700 | [diff] [blame] | 295 | config FB_IMX |
| 296 | tristate "Motorola i.MX LCD support" |
| 297 | depends on FB && ARM && ARCH_IMX |
| 298 | select FB_CFB_FILLRECT |
| 299 | select FB_CFB_COPYAREA |
| 300 | select FB_CFB_IMAGEBLIT |
Sascha Hauer | 7c2f891c | 2005-05-01 08:59:24 -0700 | [diff] [blame] | 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | config FB_CYBER2000 |
| 303 | tristate "CyberPro 2000/2010/5000 support" |
| 304 | depends on FB && PCI && (BROKEN || !SPARC64) |
| 305 | select FB_CFB_FILLRECT |
| 306 | select FB_CFB_COPYAREA |
| 307 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | help |
| 309 | This enables support for the Integraphics CyberPro 20x0 and 5000 |
| 310 | VGA chips used in the Rebel.com Netwinder and other machines. |
| 311 | Say Y if you have a NetWinder or a graphics card containing this |
| 312 | device, otherwise say N. |
| 313 | |
| 314 | config FB_APOLLO |
| 315 | bool |
| 316 | depends on (FB = y) && APOLLO |
| 317 | default y |
| 318 | select FB_CFB_FILLRECT |
| 319 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | config FB_Q40 |
| 322 | bool |
| 323 | depends on (FB = y) && Q40 |
| 324 | default y |
| 325 | select FB_CFB_FILLRECT |
| 326 | select FB_CFB_COPYAREA |
| 327 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | config FB_AMIGA |
| 330 | tristate "Amiga native chipset support" |
| 331 | depends on FB && AMIGA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | help |
| 333 | This is the frame buffer device driver for the builtin graphics |
| 334 | chipset found in Amigas. |
| 335 | |
| 336 | To compile this driver as a module, choose M here: the |
| 337 | module will be called amifb. |
| 338 | |
| 339 | config FB_AMIGA_OCS |
| 340 | bool "Amiga OCS chipset support" |
| 341 | depends on FB_AMIGA |
| 342 | help |
| 343 | This enables support for the original Agnus and Denise video chips, |
| 344 | found in the Amiga 1000 and most A500's and A2000's. If you intend |
| 345 | to run Linux on any of these systems, say Y; otherwise say N. |
| 346 | |
| 347 | config FB_AMIGA_ECS |
| 348 | bool "Amiga ECS chipset support" |
| 349 | depends on FB_AMIGA |
| 350 | help |
| 351 | This enables support for the Enhanced Chip Set, found in later |
| 352 | A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If |
| 353 | you intend to run Linux on any of these systems, say Y; otherwise |
| 354 | say N. |
| 355 | |
| 356 | config FB_AMIGA_AGA |
| 357 | bool "Amiga AGA chipset support" |
| 358 | depends on FB_AMIGA |
| 359 | help |
| 360 | This enables support for the Advanced Graphics Architecture (also |
| 361 | known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T |
| 362 | and CD32. If you intend to run Linux on any of these systems, say Y; |
| 363 | otherwise say N. |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | config FB_FM2 |
| 366 | bool "Amiga FrameMaster II/Rainbow II support" |
| 367 | depends on (FB = y) && ZORRO |
| 368 | select FB_CFB_FILLRECT |
| 369 | select FB_CFB_COPYAREA |
| 370 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | help |
| 372 | This is the frame buffer device driver for the Amiga FrameMaster |
| 373 | card from BSC (exhibited 1992 but not shipped as a CBM product). |
| 374 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 375 | config FB_ARC |
| 376 | tristate "Arc Monochrome LCD board support" |
| 377 | depends on FB && X86 |
| 378 | select FB_CFB_FILLRECT |
| 379 | select FB_CFB_COPYAREA |
| 380 | select FB_CFB_IMAGEBLIT |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 381 | help |
| 382 | This enables support for the Arc Monochrome LCD board. The board |
| 383 | is based on the KS-108 lcd controller and is typically a matrix |
| 384 | of 2*n chips. This driver was tested with a 128x64 panel. This |
| 385 | driver supports it for use with x86 SBCs through a 16 bit GPIO |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 386 | interface (8 bit data, 8 bit control). If you anticipate using |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 387 | this driver, say Y or M; otherwise say N. You must specify the |
| 388 | GPIO IO address to be used for setting control and data. |
| 389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | config FB_ATARI |
| 391 | bool "Atari native chipset support" |
Michael Schmitz | a100501 | 2007-05-01 22:32:39 +0200 | [diff] [blame] | 392 | depends on (FB = y) && ATARI |
| 393 | select FB_CFB_FILLRECT |
| 394 | select FB_CFB_COPYAREA |
| 395 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | help |
| 397 | This is the frame buffer device driver for the builtin graphics |
| 398 | chipset found in Ataris. |
| 399 | |
| 400 | config FB_OF |
| 401 | bool "Open Firmware frame buffer device support" |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 402 | depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | select FB_CFB_FILLRECT |
| 404 | select FB_CFB_COPYAREA |
| 405 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | select FB_MACMODES |
| 407 | help |
| 408 | Say Y if you want support with Open Firmware for your graphics |
| 409 | board. |
| 410 | |
| 411 | config FB_CONTROL |
| 412 | bool "Apple \"control\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 413 | depends on (FB = y) && PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | select FB_CFB_FILLRECT |
| 415 | select FB_CFB_COPYAREA |
| 416 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | select FB_MACMODES |
| 418 | help |
| 419 | This driver supports a frame buffer for the graphics adapter in the |
| 420 | Power Macintosh 7300 and others. |
| 421 | |
| 422 | config FB_PLATINUM |
| 423 | bool "Apple \"platinum\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 424 | depends on (FB = y) && PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | select FB_CFB_FILLRECT |
| 426 | select FB_CFB_COPYAREA |
| 427 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | select FB_MACMODES |
| 429 | help |
| 430 | This driver supports a frame buffer for the "platinum" graphics |
| 431 | adapter in some Power Macintoshes. |
| 432 | |
| 433 | config FB_VALKYRIE |
| 434 | bool "Apple \"valkyrie\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 435 | depends on (FB = y) && (MAC || (PPC_PMAC && PPC32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | select FB_CFB_FILLRECT |
| 437 | select FB_CFB_COPYAREA |
| 438 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | select FB_MACMODES |
| 440 | help |
| 441 | This driver supports a frame buffer for the "valkyrie" graphics |
| 442 | adapter in some Power Macintoshes. |
| 443 | |
| 444 | config FB_CT65550 |
| 445 | bool "Chips 65550 display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 446 | depends on (FB = y) && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | select FB_CFB_FILLRECT |
| 448 | select FB_CFB_COPYAREA |
| 449 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | help |
| 451 | This is the frame buffer device driver for the Chips & Technologies |
| 452 | 65550 graphics chip in PowerBooks. |
| 453 | |
| 454 | config FB_ASILIANT |
Randy.Dunlap | e65c085 | 2005-11-07 01:00:28 -0800 | [diff] [blame] | 455 | bool "Asiliant (Chips) 69000 display support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | depends on (FB = y) && PCI |
| 457 | select FB_CFB_FILLRECT |
| 458 | select FB_CFB_COPYAREA |
| 459 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | 4de0b1e | 2006-04-27 18:40:47 -0700 | [diff] [blame] | 460 | help |
| 461 | This is the frame buffer device driver for the Asiliant 69030 chipset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | config FB_IMSTT |
| 464 | bool "IMS Twin Turbo display support" |
| 465 | depends on (FB = y) && PCI |
| 466 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | select FB_MACMODES if PPC |
| 468 | help |
| 469 | The IMS Twin Turbo is a PCI-based frame buffer card bundled with |
| 470 | many Macintosh and compatible computers. |
| 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | config FB_VGA16 |
| 473 | tristate "VGA 16-color graphics support" |
| 474 | depends on FB && (X86 || PPC) |
| 475 | select FB_CFB_FILLRECT |
| 476 | select FB_CFB_COPYAREA |
| 477 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | help |
| 479 | This is the frame buffer device driver for VGA 16 color graphic |
| 480 | cards. Say Y if you have such a card. |
| 481 | |
| 482 | To compile this driver as a module, choose M here: the |
| 483 | module will be called vga16fb. |
| 484 | |
| 485 | config FB_STI |
| 486 | tristate "HP STI frame buffer device support" |
| 487 | depends on FB && PARISC |
| 488 | select FB_CFB_FILLRECT |
| 489 | select FB_CFB_COPYAREA |
| 490 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | default y |
| 492 | ---help--- |
| 493 | STI refers to the HP "Standard Text Interface" which is a set of |
| 494 | BIOS routines contained in a ROM chip in HP PA-RISC based machines. |
| 495 | Enabling this option will implement the linux framebuffer device |
| 496 | using calls to the STI BIOS routines for initialisation. |
| 497 | |
| 498 | If you enable this option, you will get a planar framebuffer device |
| 499 | /dev/fb which will work on the most common HP graphic cards of the |
| 500 | NGLE family, including the artist chips (in the 7xx and Bxxx series), |
| 501 | HCRX, HCRX24, CRX, CRX24 and VisEG series. |
| 502 | |
| 503 | It is safe to enable this option, so you should probably say "Y". |
| 504 | |
| 505 | config FB_MAC |
| 506 | bool "Generic Macintosh display support" |
| 507 | depends on (FB = y) && MAC |
| 508 | select FB_CFB_FILLRECT |
| 509 | select FB_CFB_COPYAREA |
| 510 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | select FB_MACMODES |
| 512 | |
| 513 | # bool ' Apple DAFB display support' CONFIG_FB_DAFB |
| 514 | config FB_HP300 |
| 515 | bool |
| 516 | depends on (FB = y) && HP300 |
| 517 | select FB_CFB_FILLRECT |
| 518 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | default y |
| 520 | |
| 521 | config FB_TGA |
| 522 | tristate "TGA framebuffer support" |
| 523 | depends on FB && ALPHA |
| 524 | select FB_CFB_FILLRECT |
| 525 | select FB_CFB_COPYAREA |
| 526 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 527 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | help |
| 529 | This is the frame buffer device driver for generic TGA graphic |
| 530 | cards. Say Y if you have one of those. |
| 531 | |
| 532 | config FB_VESA |
| 533 | bool "VESA VGA graphics support" |
Brian Gerst | 0d078f6 | 2005-10-30 14:59:20 -0800 | [diff] [blame] | 534 | depends on (FB = y) && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | select FB_CFB_FILLRECT |
| 536 | select FB_CFB_COPYAREA |
| 537 | select FB_CFB_IMAGEBLIT |
James Simmons | c9b2ec4 | 2006-12-08 02:40:57 -0800 | [diff] [blame] | 538 | select VIDEO_SELECT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | help |
| 540 | This is the frame buffer device driver for generic VESA 2.0 |
| 541 | compliant graphic cards. The older VESA 1.2 cards are not supported. |
| 542 | You will get a boot time penguin logo at no additional cost. Please |
| 543 | read <file:Documentation/fb/vesafb.txt>. If unsure, say Y. |
| 544 | |
Edgar Hucek | 90b4f9a | 2006-06-26 00:26:59 -0700 | [diff] [blame] | 545 | config FB_IMAC |
| 546 | bool "Intel-based Macintosh Framebuffer Support" |
Edgar Hucek | b64ef8a | 2006-08-13 23:24:16 -0700 | [diff] [blame] | 547 | depends on (FB = y) && X86 && EFI |
Edgar Hucek | 90b4f9a | 2006-06-26 00:26:59 -0700 | [diff] [blame] | 548 | select FB_CFB_FILLRECT |
| 549 | select FB_CFB_COPYAREA |
| 550 | select FB_CFB_IMAGEBLIT |
| 551 | help |
| 552 | This is the frame buffer device driver for the Intel-based Macintosh |
| 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | config FB_HGA |
| 555 | tristate "Hercules mono graphics support" |
| 556 | depends on FB && X86 |
| 557 | select FB_CFB_FILLRECT |
| 558 | select FB_CFB_COPYAREA |
| 559 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | help |
| 561 | Say Y here if you have a Hercules mono graphics card. |
| 562 | |
| 563 | To compile this driver as a module, choose M here: the |
| 564 | module will be called hgafb. |
| 565 | |
| 566 | As this card technology is 15 years old, most people will answer N |
| 567 | here. |
| 568 | |
| 569 | config FB_HGA_ACCEL |
| 570 | bool "Hercules mono Acceleration functions (EXPERIMENTAL)" |
| 571 | depends on FB_HGA && EXPERIMENTAL |
| 572 | ---help--- |
| 573 | This will compile the Hercules mono graphics with |
| 574 | acceleration functions. |
| 575 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | config FB_SGIVW |
| 577 | tristate "SGI Visual Workstation framebuffer support" |
| 578 | depends on FB && X86_VISWS |
| 579 | select FB_CFB_FILLRECT |
| 580 | select FB_CFB_COPYAREA |
| 581 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | help |
| 583 | SGI Visual Workstation support for framebuffer graphics. |
| 584 | |
| 585 | config FB_GBE |
| 586 | bool "SGI Graphics Backend frame buffer support" |
| 587 | depends on (FB = y) && (SGI_IP32 || X86_VISWS) |
| 588 | select FB_CFB_FILLRECT |
| 589 | select FB_CFB_COPYAREA |
| 590 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | help |
| 592 | This is the frame buffer device driver for SGI Graphics Backend. |
| 593 | This chip is used in SGI O2 and Visual Workstation 320/540. |
| 594 | |
| 595 | config FB_GBE_MEM |
| 596 | int "Video memory size in MB" |
| 597 | depends on FB_GBE |
Martin Michlmayr | 80c410d | 2006-02-24 13:04:16 -0800 | [diff] [blame] | 598 | default 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | help |
| 600 | This is the amount of memory reserved for the framebuffer, |
| 601 | which can be any value between 1MB and 8MB. |
| 602 | |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 603 | config FB_SBUS |
| 604 | bool "SBUS and UPA framebuffers" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 605 | depends on (FB = y) && SPARC |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 606 | help |
| 607 | Say Y if you want support for SBUS or UPA based frame buffer device. |
| 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | config FB_BW2 |
| 610 | bool "BWtwo support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 611 | depends on (FB = y) && (SPARC && FB_SBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | select FB_CFB_FILLRECT |
| 613 | select FB_CFB_COPYAREA |
| 614 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | help |
| 616 | This is the frame buffer device driver for the BWtwo frame buffer. |
| 617 | |
| 618 | config FB_CG3 |
| 619 | bool "CGthree support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 620 | depends on (FB = y) && (SPARC && FB_SBUS) |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 621 | select FB_CFB_FILLRECT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | select FB_CFB_COPYAREA |
| 623 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | help |
| 625 | This is the frame buffer device driver for the CGthree frame buffer. |
| 626 | |
| 627 | config FB_CG6 |
| 628 | bool "CGsix (GX,TurboGX) support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 629 | depends on (FB = y) && (SPARC && FB_SBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | select FB_CFB_COPYAREA |
| 631 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | help |
| 633 | This is the frame buffer device driver for the CGsix (GX, TurboGX) |
| 634 | frame buffer. |
| 635 | |
| 636 | config FB_PVR2 |
| 637 | tristate "NEC PowerVR 2 display support" |
| 638 | depends on FB && SH_DREAMCAST |
| 639 | select FB_CFB_FILLRECT |
| 640 | select FB_CFB_COPYAREA |
| 641 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | ---help--- |
| 643 | Say Y here if you have a PowerVR 2 card in your box. If you plan to |
| 644 | run linux on your Dreamcast, you will have to say Y here. |
| 645 | This driver may or may not work on other PowerVR 2 cards, but is |
| 646 | totally untested. Use at your own risk. If unsure, say N. |
| 647 | |
| 648 | To compile this driver as a module, choose M here: the |
| 649 | module will be called pvr2fb. |
| 650 | |
| 651 | You can pass several parameters to the driver at boot time or at |
| 652 | module load time. The parameters look like "video=pvr2:XXX", where |
| 653 | the meaning of XXX can be found at the end of the main source file |
| 654 | (<file:drivers/video/pvr2fb.c>). Please see the file |
| 655 | <file:Documentation/fb/pvr2fb.txt>. |
| 656 | |
| 657 | config FB_EPSON1355 |
| 658 | bool "Epson 1355 framebuffer support" |
| 659 | depends on (FB = y) && (SUPERH || ARCH_CEIVA) |
| 660 | select FB_CFB_FILLRECT |
| 661 | select FB_CFB_COPYAREA |
| 662 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | help |
| 664 | Build in support for the SED1355 Epson Research Embedded RAMDAC |
| 665 | LCD/CRT Controller (since redesignated as the S1D13505) as a |
| 666 | framebuffer. Product specs at |
| 667 | <http://www.erd.epson.com/vdc/html/products.htm>. |
| 668 | |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 669 | config FB_S1D13XXX |
| 670 | tristate "Epson S1D13XXX framebuffer support" |
| 671 | depends on FB |
| 672 | select FB_CFB_FILLRECT |
| 673 | select FB_CFB_COPYAREA |
| 674 | select FB_CFB_IMAGEBLIT |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 675 | help |
| 676 | Support for S1D13XXX framebuffer device family (currently only |
| 677 | working with S1D13806). Product specs at |
| 678 | <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm> |
| 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | config FB_NVIDIA |
| 681 | tristate "nVidia Framebuffer Support" |
| 682 | depends on FB && PCI |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 683 | select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | select FB_MODE_HELPERS |
| 685 | select FB_CFB_FILLRECT |
| 686 | select FB_CFB_COPYAREA |
| 687 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 688 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | help |
| 690 | This driver supports graphics boards with the nVidia chips, TNT |
| 691 | and newer. For very old chipsets, such as the RIVA128, then use |
| 692 | the rivafb. |
| 693 | Say Y if you have such a graphics board. |
| 694 | |
| 695 | To compile this driver as a module, choose M here: the |
| 696 | module will be called nvidiafb. |
| 697 | |
| 698 | config FB_NVIDIA_I2C |
| 699 | bool "Enable DDC Support" |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 700 | depends on FB_NVIDIA |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 701 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | help |
| 703 | This enables I2C support for nVidia Chipsets. This is used |
| 704 | only for getting EDID information from the attached display |
| 705 | allowing for robust video mode handling and switching. |
| 706 | |
| 707 | Because fbdev-2.6 requires that drivers must be able to |
| 708 | independently validate video mode parameters, you should say Y |
| 709 | here. |
| 710 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 711 | config FB_NVIDIA_BACKLIGHT |
| 712 | bool "Support for backlight control" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 713 | depends on FB_NVIDIA |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 714 | default y |
| 715 | help |
| 716 | Say Y here if you want to control the backlight of your display. |
| 717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | config FB_RIVA |
| 719 | tristate "nVidia Riva support" |
| 720 | depends on FB && PCI |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 721 | select FB_BACKLIGHT if FB_RIVA_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | select FB_MODE_HELPERS |
| 723 | select FB_CFB_FILLRECT |
| 724 | select FB_CFB_COPYAREA |
| 725 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 726 | select BITREVERSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | help |
| 728 | This driver supports graphics boards with the nVidia Riva/Geforce |
| 729 | chips. |
| 730 | Say Y if you have such a graphics board. |
| 731 | |
| 732 | To compile this driver as a module, choose M here: the |
| 733 | module will be called rivafb. |
| 734 | |
| 735 | config FB_RIVA_I2C |
| 736 | bool "Enable DDC Support" |
| 737 | depends on FB_RIVA |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 738 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | help |
| 740 | This enables I2C support for nVidia Chipsets. This is used |
| 741 | only for getting EDID information from the attached display |
| 742 | allowing for robust video mode handling and switching. |
| 743 | |
| 744 | Because fbdev-2.6 requires that drivers must be able to |
| 745 | independently validate video mode parameters, you should say Y |
| 746 | here. |
| 747 | |
| 748 | config FB_RIVA_DEBUG |
| 749 | bool "Lots of debug output from Riva(nVidia) driver" |
| 750 | depends on FB_RIVA |
| 751 | default n |
| 752 | help |
| 753 | Say Y here if you want the Riva driver to output all sorts |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 754 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | something goes wrong. |
| 756 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 757 | config FB_RIVA_BACKLIGHT |
| 758 | bool "Support for backlight control" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 759 | depends on FB_RIVA |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 760 | default y |
| 761 | help |
| 762 | Say Y here if you want to control the backlight of your display. |
| 763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | config FB_I810 |
| 765 | tristate "Intel 810/815 support (EXPERIMENTAL)" |
Brian Gerst | 0d078f6 | 2005-10-30 14:59:20 -0800 | [diff] [blame] | 766 | depends on FB && EXPERIMENTAL && PCI && X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | select AGP |
| 768 | select AGP_INTEL |
| 769 | select FB_MODE_HELPERS |
| 770 | select FB_CFB_FILLRECT |
| 771 | select FB_CFB_COPYAREA |
| 772 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | help |
| 774 | This driver supports the on-board graphics built in to the Intel 810 |
| 775 | and 815 chipsets. Say Y if you have and plan to use such a board. |
| 776 | |
| 777 | To compile this driver as a module, choose M here: the |
| 778 | module will be called i810fb. |
| 779 | |
| 780 | For more information, please read |
| 781 | <file:Documentation/fb/intel810.txt> |
| 782 | |
| 783 | config FB_I810_GTF |
| 784 | bool "use VESA Generalized Timing Formula" |
| 785 | depends on FB_I810 |
| 786 | help |
| 787 | If you say Y, then the VESA standard, Generalized Timing Formula |
| 788 | or GTF, will be used to calculate the required video timing values |
| 789 | per video mode. Since the GTF allows nondiscrete timings |
| 790 | (nondiscrete being a range of values as opposed to discrete being a |
| 791 | set of values), you'll be able to use any combination of horizontal |
| 792 | and vertical resolutions, and vertical refresh rates without having |
| 793 | to specify your own timing parameters. This is especially useful |
| 794 | to maximize the performance of an aging display, or if you just |
| 795 | have a display with nonstandard dimensions. A VESA compliant |
| 796 | monitor is recommended, but can still work with non-compliant ones. |
| 797 | If you need or want this, then select this option. The timings may |
| 798 | not be compliant with Intel's recommended values. Use at your own |
| 799 | risk. |
| 800 | |
| 801 | If you say N, the driver will revert to discrete video timings |
| 802 | using a set recommended by Intel in their documentation. |
| 803 | |
| 804 | If unsure, say N. |
| 805 | |
Antonino A. Daplas | 74f6ae8 | 2005-09-09 13:10:04 -0700 | [diff] [blame] | 806 | config FB_I810_I2C |
| 807 | bool "Enable DDC Support" |
Antonino A. Daplas | db84502 | 2005-09-13 01:25:02 -0700 | [diff] [blame] | 808 | depends on FB_I810 && FB_I810_GTF |
Antonino A. Daplas | e80987f | 2006-10-03 01:14:44 -0700 | [diff] [blame] | 809 | select FB_DDC |
Antonino A. Daplas | 74f6ae8 | 2005-09-09 13:10:04 -0700 | [diff] [blame] | 810 | help |
| 811 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | config FB_INTEL |
Christian Merkle | d463d34 | 2006-08-22 10:07:01 +1000 | [diff] [blame] | 813 | tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)" |
Dave Airlie | 0c187ad | 2006-03-23 11:20:08 +1100 | [diff] [blame] | 814 | depends on FB && EXPERIMENTAL && PCI && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | select AGP |
| 816 | select AGP_INTEL |
| 817 | select FB_MODE_HELPERS |
| 818 | select FB_CFB_FILLRECT |
| 819 | select FB_CFB_COPYAREA |
| 820 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | help |
| 822 | This driver supports the on-board graphics built in to the Intel |
Christian Merkle | d463d34 | 2006-08-22 10:07:01 +1000 | [diff] [blame] | 823 | 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | Say Y if you have and plan to use such a board. |
| 825 | |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 826 | If you say Y here and want DDC/I2C support you must first say Y to |
| 827 | "I2C support" and "I2C bit-banging support" in the character devices |
| 828 | section. |
| 829 | |
| 830 | If you say M here then "I2C support" and "I2C bit-banging support" |
| 831 | can be build either as modules or built-in. |
| 832 | |
| 833 | To compile this driver as a module, choose M here: the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | module will be called intelfb. |
| 835 | |
Christian Merkle | d463d34 | 2006-08-22 10:07:01 +1000 | [diff] [blame] | 836 | For more information, please read <file:Documentation/fb/intelfb.txt> |
| 837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | config FB_INTEL_DEBUG |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 839 | bool "Intel driver Debug Messages" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | depends on FB_INTEL |
| 841 | ---help--- |
| 842 | Say Y here if you want the Intel driver to output all sorts |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 843 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | something goes wrong. |
| 845 | |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 846 | config FB_INTEL_I2C |
| 847 | bool "DDC/I2C for Intel framebuffer support" |
| 848 | depends on FB_INTEL |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 849 | select FB_DDC |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 850 | default y |
| 851 | help |
| 852 | Say Y here if you want DDC/I2C support for your on-board Intel graphics. |
| 853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | config FB_MATROX |
| 855 | tristate "Matrox acceleration" |
| 856 | depends on FB && PCI |
| 857 | select FB_CFB_FILLRECT |
| 858 | select FB_CFB_COPYAREA |
| 859 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | select FB_TILEBLITTING |
| 861 | select FB_MACMODES if PPC_PMAC |
| 862 | ---help--- |
| 863 | Say Y here if you have a Matrox Millennium, Matrox Millennium II, |
| 864 | Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox |
| 865 | Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video, |
| 866 | Matrox G400, G450 or G550 card in your box. |
| 867 | |
| 868 | To compile this driver as a module, choose M here: the |
| 869 | module will be called matroxfb. |
| 870 | |
| 871 | You can pass several parameters to the driver at boot time or at |
| 872 | module load time. The parameters look like "video=matrox:XXX", and |
| 873 | are described in <file:Documentation/fb/matroxfb.txt>. |
| 874 | |
| 875 | config FB_MATROX_MILLENIUM |
| 876 | bool "Millennium I/II support" |
| 877 | depends on FB_MATROX |
| 878 | help |
| 879 | Say Y here if you have a Matrox Millennium or Matrox Millennium II |
| 880 | video card. If you select "Advanced lowlevel driver options" below, |
| 881 | you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp |
| 882 | packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can |
| 883 | also use font widths different from 8. |
| 884 | |
| 885 | config FB_MATROX_MYSTIQUE |
| 886 | bool "Mystique support" |
| 887 | depends on FB_MATROX |
| 888 | help |
| 889 | Say Y here if you have a Matrox Mystique or Matrox Mystique 220 |
| 890 | video card. If you select "Advanced lowlevel driver options" below, |
| 891 | you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp |
| 892 | packed pixel and 32 bpp packed pixel. You can also use font widths |
| 893 | different from 8. |
| 894 | |
| 895 | config FB_MATROX_G |
| 896 | bool "G100/G200/G400/G450/G550 support" |
| 897 | depends on FB_MATROX |
| 898 | ---help--- |
| 899 | Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based |
| 900 | video card. If you select "Advanced lowlevel driver options", you |
| 901 | should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed |
| 902 | pixel and 32 bpp packed pixel. You can also use font widths |
| 903 | different from 8. |
| 904 | |
| 905 | If you need support for G400 secondary head, you must first say Y to |
| 906 | "I2C support" in the character devices section, and then to |
| 907 | "Matrox I2C support" and "G400 second head support" here in the |
| 908 | framebuffer section. G450/G550 secondary head and digital output |
| 909 | are supported without additional modules. |
| 910 | |
| 911 | The driver starts in monitor mode. You must use the matroxset tool |
| 912 | (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to |
| 913 | swap primary and secondary head outputs, or to change output mode. |
| 914 | Secondary head driver always start in 640x480 resolution and you |
| 915 | must use fbset to change it. |
| 916 | |
| 917 | Do not forget that second head supports only 16 and 32 bpp |
| 918 | packed pixels, so it is a good idea to compile them into the kernel |
| 919 | too. You can use only some font widths, as the driver uses generic |
| 920 | painting procedures (the secondary head does not use acceleration |
| 921 | engine). |
| 922 | |
| 923 | G450/G550 hardware can display TV picture only from secondary CRTC, |
| 924 | and it performs no scaling, so picture must have 525 or 625 lines. |
| 925 | |
| 926 | config FB_MATROX_I2C |
| 927 | tristate "Matrox I2C support" |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 928 | depends on FB_MATROX |
| 929 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | ---help--- |
| 931 | This drivers creates I2C buses which are needed for accessing the |
| 932 | DDC (I2C) bus present on all Matroxes, an I2C bus which |
| 933 | interconnects Matrox optional devices, like MGA-TVO on G200 and |
| 934 | G400, and the secondary head DDC bus, present on G400 only. |
| 935 | |
| 936 | You can say Y or M here if you want to experiment with monitor |
| 937 | detection code. You must say Y or M here if you want to use either |
| 938 | second head of G400 or MGA-TVO on G200 or G400. |
| 939 | |
| 940 | If you compile it as module, it will create a module named |
| 941 | i2c-matroxfb. |
| 942 | |
| 943 | config FB_MATROX_MAVEN |
| 944 | tristate "G400 second head support" |
| 945 | depends on FB_MATROX_G && FB_MATROX_I2C |
| 946 | ---help--- |
| 947 | WARNING !!! This support does not work with G450 !!! |
| 948 | |
| 949 | Say Y or M here if you want to use a secondary head (meaning two |
| 950 | monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary |
| 951 | head is not compatible with accelerated XFree 3.3.x SVGA servers - |
| 952 | secondary head output is blanked while you are in X. With XFree |
| 953 | 3.9.17 preview you can use both heads if you use SVGA over fbdev or |
| 954 | the fbdev driver on first head and the fbdev driver on second head. |
| 955 | |
| 956 | If you compile it as module, two modules are created, |
| 957 | matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for |
| 958 | both G200 and G400, matroxfb_crtc2 is needed only by G400. You must |
| 959 | also load i2c-matroxfb to get it to run. |
| 960 | |
| 961 | The driver starts in monitor mode and you must use the matroxset |
| 962 | tool (available at |
| 963 | <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to |
| 964 | PAL or NTSC or to swap primary and secondary head outputs. |
| 965 | Secondary head driver also always start in 640x480 resolution, you |
| 966 | must use fbset to change it. |
| 967 | |
| 968 | Also do not forget that second head supports only 16 and 32 bpp |
| 969 | packed pixels, so it is a good idea to compile them into the kernel |
| 970 | too. You can use only some font widths, as the driver uses generic |
| 971 | painting procedures (the secondary head does not use acceleration |
| 972 | engine). |
| 973 | |
| 974 | config FB_MATROX_MULTIHEAD |
| 975 | bool "Multihead support" |
| 976 | depends on FB_MATROX |
| 977 | ---help--- |
| 978 | Say Y here if you have more than one (supported) Matrox device in |
| 979 | your computer and you want to use all of them for different monitors |
| 980 | ("multihead"). If you have only one device, you should say N because |
| 981 | the driver compiled with Y is larger and a bit slower, especially on |
| 982 | ia32 (ix86). |
| 983 | |
| 984 | If you said M to "Matrox unified accelerated driver" and N here, you |
| 985 | will still be able to use several Matrox devices simultaneously: |
| 986 | insert several instances of the module matroxfb into the kernel |
| 987 | with insmod, supplying the parameter "dev=N" where N is 0, 1, etc. |
| 988 | for the different Matrox devices. This method is slightly faster but |
| 989 | uses 40 KB of kernel memory per Matrox card. |
| 990 | |
| 991 | There is no need for enabling 'Matrox multihead support' if you have |
| 992 | only one Matrox card in the box. |
| 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | config FB_RADEON |
| 995 | tristate "ATI Radeon display support" |
| 996 | depends on FB && PCI |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 997 | select FB_BACKLIGHT if FB_RADEON_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | select FB_MODE_HELPERS |
| 999 | select FB_CFB_FILLRECT |
| 1000 | select FB_CFB_COPYAREA |
| 1001 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | select FB_MACMODES if PPC_OF |
| 1003 | help |
| 1004 | Choose this option if you want to use an ATI Radeon graphics card as |
| 1005 | a framebuffer device. There are both PCI and AGP versions. You |
| 1006 | don't need to choose this to run the Radeon in plain VGA mode. |
| 1007 | |
| 1008 | If you say Y here and want DDC/I2C support you must first say Y to |
| 1009 | "I2C support" and "I2C bit-banging support" in the character devices |
| 1010 | section. |
| 1011 | |
| 1012 | If you say M here then "I2C support" and "I2C bit-banging support" |
| 1013 | can be build either as modules or built-in. |
| 1014 | |
| 1015 | There is a product page at |
Antonino A. Daplas | f510a3c | 2005-09-09 13:04:41 -0700 | [diff] [blame] | 1016 | http://apps.ati.com/ATIcompare/ |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1017 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | config FB_RADEON_I2C |
| 1019 | bool "DDC/I2C for ATI Radeon support" |
| 1020 | depends on FB_RADEON |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1021 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | default y |
| 1023 | help |
| 1024 | Say Y here if you want DDC/I2C support for your Radeon board. |
| 1025 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1026 | config FB_RADEON_BACKLIGHT |
| 1027 | bool "Support for backlight control" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1028 | depends on FB_RADEON |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1029 | default y |
| 1030 | help |
| 1031 | Say Y here if you want to control the backlight of your display. |
| 1032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | config FB_RADEON_DEBUG |
| 1034 | bool "Lots of debug output from Radeon driver" |
| 1035 | depends on FB_RADEON |
| 1036 | default n |
| 1037 | help |
| 1038 | Say Y here if you want the Radeon driver to output all sorts |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 1039 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | something goes wrong. |
| 1041 | |
| 1042 | config FB_ATY128 |
| 1043 | tristate "ATI Rage128 display support" |
| 1044 | depends on FB && PCI |
| 1045 | select FB_CFB_FILLRECT |
| 1046 | select FB_CFB_COPYAREA |
| 1047 | select FB_CFB_IMAGEBLIT |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1048 | select FB_BACKLIGHT if FB_ATY128_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | select FB_MACMODES if PPC_PMAC |
| 1050 | help |
| 1051 | This driver supports graphics boards with the ATI Rage128 chips. |
| 1052 | Say Y if you have such a graphics board and read |
| 1053 | <file:Documentation/fb/aty128fb.txt>. |
| 1054 | |
| 1055 | To compile this driver as a module, choose M here: the |
| 1056 | module will be called aty128fb. |
| 1057 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1058 | config FB_ATY128_BACKLIGHT |
| 1059 | bool "Support for backlight control" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1060 | depends on FB_ATY128 |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1061 | default y |
| 1062 | help |
| 1063 | Say Y here if you want to control the backlight of your display. |
| 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | config FB_ATY |
| 1066 | tristate "ATI Mach64 display support" if PCI || ATARI |
Andrew Morton | f2e782e | 2006-04-10 22:55:45 -0700 | [diff] [blame] | 1067 | depends on FB && !SPARC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | select FB_CFB_FILLRECT |
| 1069 | select FB_CFB_COPYAREA |
| 1070 | select FB_CFB_IMAGEBLIT |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1071 | select FB_BACKLIGHT if FB_ATY_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | select FB_MACMODES if PPC |
| 1073 | help |
| 1074 | This driver supports graphics boards with the ATI Mach64 chips. |
| 1075 | Say Y if you have such a graphics board. |
| 1076 | |
| 1077 | To compile this driver as a module, choose M here: the |
| 1078 | module will be called atyfb. |
| 1079 | |
| 1080 | config FB_ATY_CT |
| 1081 | bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support" |
| 1082 | depends on PCI && FB_ATY |
| 1083 | default y if SPARC64 && FB_PCI |
| 1084 | help |
| 1085 | Say Y here to support use of ATI's 64-bit Rage boards (or other |
| 1086 | boards based on the Mach64 CT, VT, GT, and LT chipsets) as a |
| 1087 | framebuffer device. The ATI product support page for these boards |
| 1088 | is at <http://support.ati.com/products/pc/mach64/>. |
| 1089 | |
| 1090 | config FB_ATY_GENERIC_LCD |
| 1091 | bool "Mach64 generic LCD support (EXPERIMENTAL)" |
| 1092 | depends on FB_ATY_CT |
| 1093 | help |
| 1094 | Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility, |
| 1095 | Rage XC, or Rage XL chipset. |
| 1096 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | config FB_ATY_GX |
| 1098 | bool "Mach64 GX support" if PCI |
| 1099 | depends on FB_ATY |
| 1100 | default y if ATARI |
| 1101 | help |
| 1102 | Say Y here to support use of the ATI Mach64 Graphics Expression |
| 1103 | board (or other boards based on the Mach64 GX chipset) as a |
| 1104 | framebuffer device. The ATI product support page for these boards |
| 1105 | is at |
| 1106 | <http://support.ati.com/products/pc/mach64/graphics_xpression.html>. |
| 1107 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1108 | config FB_ATY_BACKLIGHT |
| 1109 | bool "Support for backlight control" |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1110 | depends on FB_ATY |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1111 | default y |
| 1112 | help |
| 1113 | Say Y here if you want to control the backlight of your display. |
| 1114 | |
Ondrej Zajicek | a268422 | 2007-02-12 00:54:49 -0800 | [diff] [blame] | 1115 | config FB_S3 |
| 1116 | tristate "S3 Trio/Virge support" |
| 1117 | depends on FB && PCI |
| 1118 | select FB_CFB_FILLRECT |
| 1119 | select FB_CFB_COPYAREA |
| 1120 | select FB_CFB_IMAGEBLIT |
| 1121 | select FB_TILEBLITTING |
| 1122 | select FB_SVGALIB |
| 1123 | ---help--- |
| 1124 | Driver for graphics boards with S3 Trio / S3 Virge chip. |
| 1125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | config FB_SAVAGE |
| 1127 | tristate "S3 Savage support" |
| 1128 | depends on FB && PCI && EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | select FB_MODE_HELPERS |
| 1130 | select FB_CFB_FILLRECT |
| 1131 | select FB_CFB_COPYAREA |
| 1132 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | help |
| 1134 | This driver supports notebooks and computers with S3 Savage PCI/AGP |
| 1135 | chips. |
| 1136 | |
| 1137 | Say Y if you have such a graphics card. |
| 1138 | |
| 1139 | To compile this driver as a module, choose M here; the module |
| 1140 | will be called savagefb. |
| 1141 | |
| 1142 | config FB_SAVAGE_I2C |
| 1143 | bool "Enable DDC2 Support" |
| 1144 | depends on FB_SAVAGE |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1145 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | help |
| 1147 | This enables I2C support for S3 Savage Chipsets. This is used |
| 1148 | only for getting EDID information from the attached display |
| 1149 | allowing for robust video mode handling and switching. |
| 1150 | |
| 1151 | Because fbdev-2.6 requires that drivers must be able to |
| 1152 | independently validate video mode parameters, you should say Y |
| 1153 | here. |
| 1154 | |
| 1155 | config FB_SAVAGE_ACCEL |
| 1156 | bool "Enable Console Acceleration" |
| 1157 | depends on FB_SAVAGE |
| 1158 | default n |
| 1159 | help |
| 1160 | This option will compile in console acceleration support. If |
| 1161 | the resulting framebuffer console has bothersome glitches, then |
| 1162 | choose N here. |
| 1163 | |
| 1164 | config FB_SIS |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1165 | tristate "SiS/XGI display support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | depends on FB && PCI |
| 1167 | select FB_CFB_FILLRECT |
| 1168 | select FB_CFB_COPYAREA |
| 1169 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | help |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1171 | This is the frame buffer device driver for the SiS 300, 315, 330 |
| 1172 | and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets. |
| 1173 | Specs available at <http://www.sis.com> and <http://www.xgitech.com>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | |
| 1175 | To compile this driver as a module, choose M here; the module |
| 1176 | will be called sisfb. |
| 1177 | |
| 1178 | config FB_SIS_300 |
| 1179 | bool "SiS 300 series support" |
| 1180 | depends on FB_SIS |
| 1181 | help |
| 1182 | Say Y here to support use of the SiS 300/305, 540, 630 and 730. |
| 1183 | |
| 1184 | config FB_SIS_315 |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1185 | bool "SiS 315/330/340 series and XGI support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | depends on FB_SIS |
| 1187 | help |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1188 | Say Y here to support use of the SiS 315, 330 and 340 series |
| 1189 | (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well |
| 1190 | as XGI V3XT, V5, V8 and Z7. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | |
| 1192 | config FB_NEOMAGIC |
| 1193 | tristate "NeoMagic display support" |
| 1194 | depends on FB && PCI |
| 1195 | select FB_MODE_HELPERS |
| 1196 | select FB_CFB_FILLRECT |
| 1197 | select FB_CFB_COPYAREA |
| 1198 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | help |
| 1200 | This driver supports notebooks with NeoMagic PCI chips. |
| 1201 | Say Y if you have such a graphics card. |
| 1202 | |
| 1203 | To compile this driver as a module, choose M here: the |
| 1204 | module will be called neofb. |
| 1205 | |
| 1206 | config FB_KYRO |
| 1207 | tristate "IMG Kyro support" |
| 1208 | depends on FB && PCI |
| 1209 | select FB_CFB_FILLRECT |
| 1210 | select FB_CFB_COPYAREA |
| 1211 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | help |
| 1213 | Say Y here if you have a STG4000 / Kyro / PowerVR 3 based |
| 1214 | graphics board. |
| 1215 | |
| 1216 | To compile this driver as a module, choose M here: the |
| 1217 | module will be called kyrofb. |
| 1218 | |
| 1219 | config FB_3DFX |
| 1220 | tristate "3Dfx Banshee/Voodoo3 display support" |
| 1221 | depends on FB && PCI |
| 1222 | select FB_CFB_IMAGEBLIT |
| 1223 | select FB_CFB_FILLRECT |
| 1224 | select FB_CFB_COPYAREA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | help |
| 1226 | This driver supports graphics boards with the 3Dfx Banshee/Voodoo3 |
| 1227 | chips. Say Y if you have such a graphics board. |
| 1228 | |
| 1229 | To compile this driver as a module, choose M here: the |
| 1230 | module will be called tdfxfb. |
| 1231 | |
| 1232 | config FB_3DFX_ACCEL |
| 1233 | bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)" |
| 1234 | depends on FB_3DFX && EXPERIMENTAL |
| 1235 | ---help--- |
| 1236 | This will compile the 3Dfx Banshee/Voodoo3 frame buffer device |
| 1237 | with acceleration functions. |
| 1238 | |
| 1239 | |
| 1240 | config FB_VOODOO1 |
| 1241 | tristate "3Dfx Voodoo Graphics (sst1) support" |
| 1242 | depends on FB && PCI |
| 1243 | select FB_CFB_FILLRECT |
| 1244 | select FB_CFB_COPYAREA |
| 1245 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | ---help--- |
| 1247 | Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or |
| 1248 | Voodoo2 (cvg) based graphics card. |
| 1249 | |
| 1250 | To compile this driver as a module, choose M here: the |
| 1251 | module will be called sstfb. |
| 1252 | |
| 1253 | WARNING: Do not use any application that uses the 3D engine |
| 1254 | (namely glide) while using this driver. |
| 1255 | Please read the <file:Documentation/fb/README-sstfb.txt> for supported |
| 1256 | options and other important info support. |
| 1257 | |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1258 | config FB_CYBLA |
| 1259 | tristate "Cyberblade/i1 support" |
Knut Petersen | 44637a1 | 2006-01-09 15:04:20 +0100 | [diff] [blame] | 1260 | depends on FB && PCI && X86_32 && !64BIT |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1261 | select FB_CFB_IMAGEBLIT |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1262 | select VIDEO_SELECT |
| 1263 | ---help--- |
| 1264 | This driver is supposed to support the Trident Cyberblade/i1 |
| 1265 | graphics core integrated in the VIA VT8601A North Bridge, |
| 1266 | also known as VIA Apollo PLE133. |
| 1267 | |
| 1268 | Status: |
| 1269 | - Developed, tested and working on EPIA 5000 and EPIA 800. |
| 1270 | - Does work reliable on all systems with CRT/LCD connected to |
| 1271 | normal VGA ports. |
| 1272 | - Should work on systems that do use the internal LCD port, but |
| 1273 | this is absolutely not tested. |
| 1274 | |
| 1275 | Character imageblit, copyarea and rectangle fill are hw accelerated, |
| 1276 | ypan scrolling is used by default. |
| 1277 | |
| 1278 | Please do read <file:Documentation/fb/cyblafb/*>. |
| 1279 | |
| 1280 | To compile this driver as a module, choose M here: the |
| 1281 | module will be called cyblafb. |
| 1282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | config FB_TRIDENT |
| 1284 | tristate "Trident support" |
| 1285 | depends on FB && PCI |
| 1286 | select FB_CFB_FILLRECT |
| 1287 | select FB_CFB_COPYAREA |
| 1288 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | ---help--- |
| 1290 | This driver is supposed to support graphics boards with the |
| 1291 | Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops |
| 1292 | but also on some motherboards. For more information, read |
| 1293 | <file:Documentation/fb/tridentfb.txt> |
| 1294 | |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1295 | Cyberblade/i1 support will be removed soon, use the cyblafb driver |
| 1296 | instead. |
| 1297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | Say Y if you have such a graphics board. |
| 1299 | |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 1300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | To compile this driver as a module, choose M here: the |
| 1302 | module will be called tridentfb. |
| 1303 | |
| 1304 | config FB_TRIDENT_ACCEL |
| 1305 | bool "Trident Acceleration functions (EXPERIMENTAL)" |
| 1306 | depends on FB_TRIDENT && EXPERIMENTAL |
| 1307 | ---help--- |
| 1308 | This will compile the Trident frame buffer device with |
| 1309 | acceleration functions. |
| 1310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | config FB_PM3 |
| 1312 | tristate "Permedia3 support" |
| 1313 | depends on FB && PCI && BROKEN |
| 1314 | help |
| 1315 | This is the frame buffer device driver for the 3DLabs Permedia3 |
| 1316 | chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 & |
| 1317 | similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000 |
| 1318 | and maybe other boards. |
| 1319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | config FB_AU1100 |
| 1321 | bool "Au1100 LCD Driver" |
| 1322 | depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y |
| 1323 | |
Ralf Baechle | f95ec3c | 2006-03-27 01:17:27 -0800 | [diff] [blame] | 1324 | config FB_AU1200 |
| 1325 | bool "Au1200 LCD Driver" |
Geert Uytterhoeven | 833f806 | 2007-03-16 13:38:23 -0800 | [diff] [blame] | 1326 | depends on (FB = y) && MIPS && SOC_AU1200 |
Ralf Baechle | f95ec3c | 2006-03-27 01:17:27 -0800 | [diff] [blame] | 1327 | select FB_CFB_FILLRECT |
| 1328 | select FB_CFB_COPYAREA |
| 1329 | select FB_CFB_IMAGEBLIT |
| 1330 | help |
| 1331 | This is the framebuffer driver for the AMD Au1200 SOC. It can drive |
| 1332 | various panels and CRTs by passing in kernel cmd line option |
| 1333 | au1200fb:panel=<name>. |
| 1334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | source "drivers/video/geode/Kconfig" |
| 1336 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | config FB_FFB |
| 1338 | bool "Creator/Creator3D/Elite3D support" |
| 1339 | depends on FB_SBUS && SPARC64 |
| 1340 | select FB_CFB_COPYAREA |
| 1341 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | help |
| 1343 | This is the frame buffer device driver for the Creator, Creator3D, |
| 1344 | and Elite3D graphics boards. |
| 1345 | |
| 1346 | config FB_TCX |
| 1347 | bool "TCX (SS4/SS5 only) support" |
| 1348 | depends on FB_SBUS |
| 1349 | select FB_CFB_FILLRECT |
| 1350 | select FB_CFB_COPYAREA |
| 1351 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | help |
| 1353 | This is the frame buffer device driver for the TCX 24/8bit frame |
| 1354 | buffer. |
| 1355 | |
| 1356 | config FB_CG14 |
| 1357 | bool "CGfourteen (SX) support" |
| 1358 | depends on FB_SBUS |
| 1359 | select FB_CFB_FILLRECT |
| 1360 | select FB_CFB_COPYAREA |
| 1361 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | help |
| 1363 | This is the frame buffer device driver for the CGfourteen frame |
| 1364 | buffer on Desktop SPARCsystems with the SX graphics option. |
| 1365 | |
| 1366 | config FB_P9100 |
| 1367 | bool "P9100 (Sparcbook 3 only) support" |
| 1368 | depends on FB_SBUS |
| 1369 | select FB_CFB_FILLRECT |
| 1370 | select FB_CFB_COPYAREA |
| 1371 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | help |
| 1373 | This is the frame buffer device driver for the P9100 card |
| 1374 | supported on Sparcbook 3 machines. |
| 1375 | |
| 1376 | config FB_LEO |
| 1377 | bool "Leo (ZX) support" |
| 1378 | depends on FB_SBUS |
| 1379 | select FB_CFB_FILLRECT |
| 1380 | select FB_CFB_COPYAREA |
| 1381 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | help |
| 1383 | This is the frame buffer device driver for the SBUS-based Sun ZX |
| 1384 | (leo) frame buffer cards. |
| 1385 | |
David S. Miller | 453e93b | 2007-05-06 22:45:08 -0700 | [diff] [blame] | 1386 | config FB_XVR500 |
| 1387 | bool "Sun XVR-500 3DLABS Wildcat support" |
| 1388 | depends on FB && PCI && SPARC64 |
| 1389 | select FB_CFB_FILLRECT |
| 1390 | select FB_CFB_COPYAREA |
| 1391 | select FB_CFB_IMAGEBLIT |
| 1392 | help |
| 1393 | This is the framebuffer device for the Sun XVR-500 and similar |
| 1394 | graphics cards based upon the 3DLABS Wildcat chipset. The driver |
| 1395 | only works on sparc64 systems where the system firwmare has |
| 1396 | mostly initialized the card already. It is treated as a |
| 1397 | completely dumb framebuffer device. |
| 1398 | |
David S. Miller | 7122752 | 2007-05-06 22:45:50 -0700 | [diff] [blame] | 1399 | config FB_XVR2500 |
| 1400 | bool "Sun XVR-2500 3DLABS Wildcat support" |
| 1401 | depends on FB && PCI && SPARC64 |
| 1402 | select FB_CFB_FILLRECT |
| 1403 | select FB_CFB_COPYAREA |
| 1404 | select FB_CFB_IMAGEBLIT |
| 1405 | help |
| 1406 | This is the framebuffer device for the Sun XVR-2500 and similar |
| 1407 | graphics cards based upon the 3DLABS Wildcat chipset. The driver |
| 1408 | only works on sparc64 systems where the system firwmare has |
| 1409 | mostly initialized the card already. It is treated as a |
| 1410 | completely dumb framebuffer device. |
| 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | config FB_PCI |
| 1413 | bool "PCI framebuffers" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 1414 | depends on (FB = y) && PCI && SPARC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | |
| 1416 | config FB_IGA |
| 1417 | bool "IGA 168x display support" |
| 1418 | depends on SPARC32 && FB_PCI |
| 1419 | select FB_CFB_FILLRECT |
| 1420 | select FB_CFB_COPYAREA |
| 1421 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | help |
| 1423 | This is the framebuffer device for the INTERGRAPHICS 1680 and |
| 1424 | successor frame buffer cards. |
| 1425 | |
| 1426 | config FB_HIT |
| 1427 | tristate "HD64461 Frame Buffer support" |
| 1428 | depends on FB && HD64461 |
| 1429 | select FB_CFB_FILLRECT |
| 1430 | select FB_CFB_COPYAREA |
| 1431 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | help |
| 1433 | This is the frame buffer device driver for the Hitachi HD64461 LCD |
| 1434 | frame buffer card. |
| 1435 | |
| 1436 | config FB_PMAG_AA |
| 1437 | bool "PMAG-AA TURBOchannel framebuffer support" |
Maciej W. Rozycki | a935000 | 2005-06-13 19:50:42 +0000 | [diff] [blame] | 1438 | depends on (FB = y) && TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | select FB_CFB_FILLRECT |
| 1440 | select FB_CFB_COPYAREA |
| 1441 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | help |
| 1443 | Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1) |
| 1444 | used mainly in the MIPS-based DECstation series. |
| 1445 | |
| 1446 | config FB_PMAG_BA |
Maciej W. Rozycki | 335dc50 | 2007-02-05 16:28:28 -0800 | [diff] [blame] | 1447 | tristate "PMAG-BA TURBOchannel framebuffer support" |
| 1448 | depends on FB && TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | select FB_CFB_FILLRECT |
| 1450 | select FB_CFB_COPYAREA |
| 1451 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | help |
| 1453 | Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8) |
| 1454 | used mainly in the MIPS-based DECstation series. |
| 1455 | |
| 1456 | config FB_PMAGB_B |
Maciej W. Rozycki | 9084b00 | 2007-02-05 16:28:29 -0800 | [diff] [blame] | 1457 | tristate "PMAGB-B TURBOchannel framebuffer support" |
| 1458 | depends on TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | select FB_CFB_FILLRECT |
| 1460 | select FB_CFB_COPYAREA |
| 1461 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | help |
| 1463 | Support for the PMAGB-B TURBOchannel framebuffer card used mainly |
| 1464 | in the MIPS-based DECstation series. The card is currently only |
| 1465 | supported in 1280x1024x8 mode. |
| 1466 | |
| 1467 | config FB_MAXINE |
| 1468 | bool "Maxine (Personal DECstation) onboard framebuffer support" |
Maciej W. Rozycki | a935000 | 2005-06-13 19:50:42 +0000 | [diff] [blame] | 1469 | depends on (FB = y) && MACH_DECSTATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | select FB_CFB_FILLRECT |
| 1471 | select FB_CFB_COPYAREA |
| 1472 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | help |
| 1474 | Support for the onboard framebuffer (1024x768x8) in the Personal |
| 1475 | DECstation series (Personal DECstation 5000/20, /25, /33, /50, |
| 1476 | Codename "Maxine"). |
| 1477 | |
| 1478 | config FB_TX3912 |
| 1479 | bool "TMPTX3912/PR31700 frame buffer support" |
| 1480 | depends on (FB = y) && NINO |
| 1481 | select FB_CFB_FILLRECT |
| 1482 | select FB_CFB_COPYAREA |
| 1483 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | help |
| 1485 | The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core |
| 1486 | see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>. |
| 1487 | |
| 1488 | Say Y here to enable kernel support for the on-board framebuffer. |
| 1489 | |
| 1490 | config FB_G364 |
Yoichi Yuasa | b38817d | 2005-07-27 11:43:28 -0700 | [diff] [blame] | 1491 | bool "G364 frame buffer support" |
| 1492 | depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | select FB_CFB_FILLRECT |
| 1494 | select FB_CFB_COPYAREA |
| 1495 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | help |
| 1497 | The G364 driver is the framebuffer used in MIPS Magnum 4000 and |
| 1498 | Olivetti M700-10 systems. |
| 1499 | |
| 1500 | config FB_68328 |
| 1501 | bool "Motorola 68328 native frame buffer support" |
Geert Uytterhoeven | 833f806 | 2007-03-16 13:38:23 -0800 | [diff] [blame] | 1502 | depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | select FB_CFB_FILLRECT |
| 1504 | select FB_CFB_COPYAREA |
| 1505 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | help |
| 1507 | Say Y here if you want to support the built-in frame buffer of |
| 1508 | the Motorola 68328 CPU family. |
| 1509 | |
| 1510 | config FB_PXA |
| 1511 | tristate "PXA LCD framebuffer support" |
| 1512 | depends on FB && ARCH_PXA |
| 1513 | select FB_CFB_FILLRECT |
| 1514 | select FB_CFB_COPYAREA |
| 1515 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | ---help--- |
| 1517 | Frame buffer driver for the built-in LCD controller in the Intel |
| 1518 | PXA2x0 processor. |
| 1519 | |
| 1520 | This driver is also available as a module ( = code which can be |
| 1521 | inserted and removed from the running kernel whenever you want). The |
YOSHIFUJI Hideaki | 74b4f04 | 2006-01-09 20:53:46 -0800 | [diff] [blame] | 1522 | module will be called pxafb. If you want to compile it as a module, |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 1523 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
| 1525 | If unsure, say N. |
| 1526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | config FB_PXA_PARAMETERS |
| 1528 | bool "PXA LCD command line parameters" |
| 1529 | default n |
| 1530 | depends on FB_PXA |
| 1531 | ---help--- |
| 1532 | Enable the use of kernel command line or module parameters |
| 1533 | to configure the physical properties of the LCD panel when |
| 1534 | using the PXA LCD driver. |
| 1535 | |
| 1536 | This option allows you to override the panel parameters |
| 1537 | supplied by the platform in order to support multiple |
| 1538 | different models of flatpanel. If you will only be using a |
| 1539 | single model of flatpanel then you can safely leave this |
| 1540 | option disabled. |
| 1541 | |
| 1542 | <file:Documentation/fb/pxafb.txt> describes the available parameters. |
| 1543 | |
Mike Rapoport | 22caf04 | 2006-07-14 00:24:34 -0700 | [diff] [blame] | 1544 | config FB_MBX |
| 1545 | tristate "2700G LCD framebuffer support" |
| 1546 | depends on FB && ARCH_PXA |
| 1547 | select FB_CFB_FILLRECT |
| 1548 | select FB_CFB_COPYAREA |
| 1549 | select FB_CFB_IMAGEBLIT |
| 1550 | ---help--- |
| 1551 | Framebuffer driver for the Intel 2700G (Marathon) Graphics |
| 1552 | Accelerator |
| 1553 | |
| 1554 | config FB_MBX_DEBUG |
| 1555 | bool "Enable debugging info via debugfs" |
| 1556 | depends on FB_MBX && DEBUG_FS |
| 1557 | default n |
| 1558 | ---help--- |
| 1559 | Enable this if you want debugging information using the debug |
| 1560 | filesystem (debugfs) |
| 1561 | |
| 1562 | If unsure, say N. |
| 1563 | |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1564 | config FB_W100 |
| 1565 | tristate "W100 frame buffer support" |
| 1566 | depends on FB && PXA_SHARPSL |
| 1567 | select FB_CFB_FILLRECT |
| 1568 | select FB_CFB_COPYAREA |
| 1569 | select FB_CFB_IMAGEBLIT |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1570 | ---help--- |
| 1571 | Frame buffer driver for the w100 as found on the Sharp SL-Cxx series. |
| 1572 | |
| 1573 | This driver is also available as a module ( = code which can be |
| 1574 | inserted and removed from the running kernel whenever you want). The |
YOSHIFUJI Hideaki | 74b4f04 | 2006-01-09 20:53:46 -0800 | [diff] [blame] | 1575 | module will be called w100fb. If you want to compile it as a module, |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 1576 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1577 | |
| 1578 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 1580 | config FB_S3C2410 |
| 1581 | tristate "S3C2410 LCD framebuffer support" |
| 1582 | depends on FB && ARCH_S3C2410 |
| 1583 | select FB_CFB_FILLRECT |
| 1584 | select FB_CFB_COPYAREA |
| 1585 | select FB_CFB_IMAGEBLIT |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 1586 | ---help--- |
| 1587 | Frame buffer driver for the built-in LCD controller in the Samsung |
| 1588 | S3C2410 processor. |
| 1589 | |
| 1590 | This driver is also available as a module ( = code which can be |
| 1591 | inserted and removed from the running kernel whenever you want). The |
| 1592 | module will be called s3c2410fb. If you want to compile it as a module, |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 1593 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 1594 | |
| 1595 | If unsure, say N. |
| 1596 | config FB_S3C2410_DEBUG |
| 1597 | bool "S3C2410 lcd debug messages" |
| 1598 | depends on FB_S3C2410 |
| 1599 | help |
| 1600 | Turn on debugging messages. Note that you can set/unset at run time |
| 1601 | through sysfs |
| 1602 | |
Ben Dooks | 5fc404e | 2007-02-20 13:58:21 -0800 | [diff] [blame] | 1603 | config FB_SM501 |
| 1604 | tristate "Silicon Motion SM501 framebuffer support" |
| 1605 | depends on FB && MFD_SM501 |
| 1606 | select FB_CFB_FILLRECT |
| 1607 | select FB_CFB_COPYAREA |
| 1608 | select FB_CFB_IMAGEBLIT |
| 1609 | ---help--- |
| 1610 | Frame buffer driver for the CRT and LCD controllers in the Silicon |
| 1611 | Motion SM501. |
| 1612 | |
| 1613 | This driver is also available as a module ( = code which can be |
| 1614 | inserted and removed from the running kernel whenever you want). The |
| 1615 | module will be called sm501fb. If you want to compile it as a module, |
| 1616 | say M here and read <file:Documentation/modules.txt>. |
| 1617 | |
| 1618 | If unsure, say N. |
| 1619 | |
| 1620 | |
Vitaly Wool | 36c9366 | 2006-07-03 00:24:19 -0700 | [diff] [blame] | 1621 | config FB_PNX4008_DUM |
| 1622 | tristate "Display Update Module support on Philips PNX4008 board" |
| 1623 | depends on FB && ARCH_PNX4008 |
| 1624 | ---help--- |
| 1625 | Say Y here to enable support for PNX4008 Display Update Module (DUM) |
| 1626 | |
| 1627 | config FB_PNX4008_DUM_RGB |
| 1628 | tristate "RGB Framebuffer support on Philips PNX4008 board" |
| 1629 | depends on FB_PNX4008_DUM |
| 1630 | select FB_CFB_FILLRECT |
| 1631 | select FB_CFB_COPYAREA |
| 1632 | select FB_CFB_IMAGEBLIT |
| 1633 | ---help--- |
| 1634 | Say Y here to enable support for PNX4008 RGB Framebuffer |
| 1635 | |
Paul Mackerras | a3d8998 | 2006-12-10 02:20:42 -0800 | [diff] [blame] | 1636 | config FB_IBM_GXT4500 |
| 1637 | tristate "Framebuffer support for IBM GXT4500P adaptor" |
| 1638 | depends on PPC |
| 1639 | select FB_CFB_FILLRECT |
| 1640 | select FB_CFB_COPYAREA |
| 1641 | select FB_CFB_IMAGEBLIT |
| 1642 | ---help--- |
| 1643 | Say Y here to enable support for the IBM GXT4500P display |
| 1644 | adaptor, found on some IBM System P (pSeries) machines. |
| 1645 | |
Geert Uytterhoeven | 310d8c1 | 2007-02-12 00:55:23 -0800 | [diff] [blame] | 1646 | config FB_PS3 |
| 1647 | bool "PS3 GPU framebuffer driver" |
Geert Uytterhoeven | 833f806 | 2007-03-16 13:38:23 -0800 | [diff] [blame] | 1648 | depends on (FB = y) && PS3_PS3AV |
Geert Uytterhoeven | 310d8c1 | 2007-02-12 00:55:23 -0800 | [diff] [blame] | 1649 | select FB_CFB_FILLRECT |
| 1650 | select FB_CFB_COPYAREA |
| 1651 | select FB_CFB_IMAGEBLIT |
| 1652 | ---help--- |
| 1653 | Include support for the virtual frame buffer in the PS3 platform. |
| 1654 | |
| 1655 | config FB_PS3_DEFAULT_SIZE_M |
| 1656 | int "PS3 default frame buffer size (in MiB)" |
| 1657 | depends on FB_PS3 |
| 1658 | default 18 |
| 1659 | ---help--- |
| 1660 | This is the default size (in MiB) of the virtual frame buffer in |
| 1661 | the PS3. |
| 1662 | The default value can be overridden on the kernel command line |
| 1663 | using the "ps3fb" option (e.g. "ps3fb=9M"); |
| 1664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | config FB_VIRTUAL |
| 1666 | tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)" |
| 1667 | depends on FB |
| 1668 | select FB_CFB_FILLRECT |
| 1669 | select FB_CFB_COPYAREA |
| 1670 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | ---help--- |
| 1672 | This is a `virtual' frame buffer device. It operates on a chunk of |
| 1673 | unswappable kernel memory instead of on the memory of a graphics |
| 1674 | board. This means you cannot see any output sent to this frame |
| 1675 | buffer device, while it does consume precious memory. The main use |
| 1676 | of this frame buffer device is testing and debugging the frame |
| 1677 | buffer subsystem. Do NOT enable it for normal systems! To protect |
| 1678 | the innocent, it has to be enabled explicitly at boot time using the |
| 1679 | kernel option `video=vfb:'. |
| 1680 | |
| 1681 | To compile this driver as a module, choose M here: the |
Mike Frysinger | 66cf751 | 2006-10-03 01:14:41 -0700 | [diff] [blame] | 1682 | module will be called vfb. In order to load it, you must use |
| 1683 | the vfb_enable=1 option. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | |
| 1685 | If unsure, say N. |
James Simmons | e0e34ef7 | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | if VT |
| 1688 | source "drivers/video/console/Kconfig" |
| 1689 | endif |
| 1690 | |
| 1691 | if FB || SGI_NEWPORT_CONSOLE |
| 1692 | source "drivers/video/logo/Kconfig" |
| 1693 | endif |
| 1694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | endmenu |
| 1696 | |