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