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