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