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