Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Video configuration |
| 3 | # |
| 4 | |
| 5 | menu "Graphics support" |
Martin Schwidefsky | e25df12 | 2007-05-10 15:45:57 +0200 | [diff] [blame] | 6 | depends on HAS_IOMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Nicolas Ferre | 0912e53 | 2009-06-23 16:30:56 +0200 | [diff] [blame] | 8 | config HAVE_FB_ATMEL |
| 9 | bool |
| 10 | |
Thadeu Lima de Souza Cascardo | b141335 | 2010-06-04 14:15:00 -0700 | [diff] [blame] | 11 | config HAVE_FB_IMX |
| 12 | bool |
| 13 | |
Dmitry Eremin-Solenikov | f00117a | 2011-01-12 15:19:35 +0000 | [diff] [blame] | 14 | config SH_MIPI_DSI |
| 15 | tristate |
| 16 | depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK |
| 17 | |
| 18 | config SH_LCD_MIPI_DSI |
| 19 | bool |
| 20 | |
Randy Dunlap | 179b025 | 2007-10-16 01:29:39 -0700 | [diff] [blame] | 21 | source "drivers/char/agp/Kconfig" |
| 22 | |
Benjamin Herrenschmidt | deb2d2e | 2009-08-11 15:52:06 +1000 | [diff] [blame] | 23 | source "drivers/gpu/vga/Kconfig" |
| 24 | |
Dave Airlie | c0e0920 | 2008-05-29 10:09:59 +1000 | [diff] [blame] | 25 | source "drivers/gpu/drm/Kconfig" |
Antonino A. Daplas | ba70710 | 2006-06-26 00:26:37 -0700 | [diff] [blame] | 26 | |
Lee, Chun-Yi | e26fd11 | 2010-10-20 13:51:19 +0800 | [diff] [blame] | 27 | source "drivers/gpu/stub/Kconfig" |
| 28 | |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 29 | config VGASTATE |
| 30 | tristate |
| 31 | default n |
| 32 | |
Luming Yu | 23b0f01 | 2007-05-09 21:07:05 +0800 | [diff] [blame] | 33 | config VIDEO_OUTPUT_CONTROL |
| 34 | tristate "Lowlevel video output switch controls" |
Luming Yu | 23b0f01 | 2007-05-09 21:07:05 +0800 | [diff] [blame] | 35 | help |
| 36 | This framework adds support for low-level control of the video |
| 37 | output switch. |
| 38 | |
Randy Dunlap | 179b025 | 2007-10-16 01:29:39 -0700 | [diff] [blame] | 39 | menuconfig FB |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | tristate "Support for frame buffer devices" |
| 41 | ---help--- |
| 42 | The frame buffer device provides an abstraction for the graphics |
| 43 | hardware. It represents the frame buffer of some video hardware and |
| 44 | allows application software to access the graphics hardware through |
| 45 | a well-defined interface, so the software doesn't need to know |
| 46 | anything about the low-level (hardware register) stuff. |
| 47 | |
| 48 | Frame buffer devices work identically across the different |
| 49 | architectures supported by Linux and make the implementation of |
| 50 | application programs easier and more portable; at this point, an X |
| 51 | server exists which uses the frame buffer device exclusively. |
| 52 | On several non-X86 architectures, the frame buffer device is the |
| 53 | only way to use the graphics hardware. |
| 54 | |
| 55 | The device is accessed through special device nodes, usually located |
| 56 | in the /dev directory, i.e. /dev/fb*. |
| 57 | |
| 58 | You need an utility program called fbset to make full use of frame |
| 59 | buffer devices. Please read <file:Documentation/fb/framebuffer.txt> |
| 60 | and the Framebuffer-HOWTO at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 61 | <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | information. |
| 63 | |
| 64 | Say Y here and to the driver for your graphics board below if you |
| 65 | are compiling a kernel for a non-x86 architecture. |
| 66 | |
| 67 | If you are compiling for the x86 architecture, you can say Y if you |
| 68 | want to play with it, but it is not essential. Please note that |
| 69 | running graphical applications that directly touch the hardware |
| 70 | (e.g. an accelerated X server) and that are not frame buffer |
| 71 | device-aware may cause unexpected results. If unsure, say N. |
| 72 | |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 73 | config FIRMWARE_EDID |
| 74 | bool "Enable firmware EDID" |
| 75 | depends on FB |
| 76 | default n |
| 77 | ---help--- |
| 78 | This enables access to the EDID transferred from the firmware. |
| 79 | On the i386, this is from the Video BIOS. Enable this if DDC/I2C |
| 80 | transfers do not work for your driver and if you are using |
| 81 | nvidiafb, i810fb or savagefb. |
| 82 | |
| 83 | In general, choosing Y for this option is safe. If you |
| 84 | experience extremely long delays while booting before you get |
| 85 | something on your display, try setting this to N. Matrox cards in |
| 86 | combination with certain motherboards and monitors are known to |
| 87 | suffer from this problem. |
| 88 | |
Dennis Munsie | fc5891c | 2006-10-03 01:14:42 -0700 | [diff] [blame] | 89 | config FB_DDC |
| 90 | tristate |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 91 | depends on FB |
| 92 | select I2C_ALGOBIT |
| 93 | select I2C |
Dennis Munsie | fc5891c | 2006-10-03 01:14:42 -0700 | [diff] [blame] | 94 | default n |
| 95 | |
Michal Januszewski | 4d31a2b | 2008-10-15 22:03:51 -0700 | [diff] [blame] | 96 | config FB_BOOT_VESA_SUPPORT |
| 97 | bool |
| 98 | depends on FB |
| 99 | default n |
| 100 | ---help--- |
| 101 | If true, at least one selected framebuffer driver can take advantage |
| 102 | of VESA video modes set at an early boot stage via the vga= parameter. |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | config FB_CFB_FILLRECT |
| 105 | tristate |
| 106 | depends on FB |
| 107 | default n |
| 108 | ---help--- |
| 109 | Include the cfb_fillrect function for generic software rectangle |
| 110 | filling. This is used by drivers that don't provide their own |
| 111 | (accelerated) version. |
| 112 | |
| 113 | config FB_CFB_COPYAREA |
| 114 | tristate |
| 115 | depends on FB |
| 116 | default n |
| 117 | ---help--- |
| 118 | Include the cfb_copyarea function for generic software area copying. |
| 119 | This is used by drivers that don't provide their own (accelerated) |
| 120 | version. |
| 121 | |
| 122 | config FB_CFB_IMAGEBLIT |
| 123 | tristate |
| 124 | depends on FB |
| 125 | default n |
| 126 | ---help--- |
| 127 | Include the cfb_imageblit function for generic software image |
| 128 | blitting. This is used by drivers that don't provide their own |
| 129 | (accelerated) version. |
| 130 | |
Pavel Pisa | 779121e | 2007-10-16 01:29:21 -0700 | [diff] [blame] | 131 | config FB_CFB_REV_PIXELS_IN_BYTE |
| 132 | bool |
| 133 | depends on FB |
| 134 | default n |
| 135 | ---help--- |
| 136 | Allow generic frame-buffer functions to work on displays with 1, 2 |
| 137 | and 4 bits per pixel depths which has opposite order of pixels in |
| 138 | byte order to bytes in long order. |
| 139 | |
Antonino A. Daplas | 68648ed | 2007-05-08 00:38:57 -0700 | [diff] [blame] | 140 | config FB_SYS_FILLRECT |
| 141 | tristate |
| 142 | depends on FB |
| 143 | default n |
| 144 | ---help--- |
| 145 | Include the sys_fillrect function for generic software rectangle |
| 146 | filling. This is used by drivers that don't provide their own |
| 147 | (accelerated) version and the framebuffer is in system RAM. |
| 148 | |
| 149 | config FB_SYS_COPYAREA |
| 150 | tristate |
| 151 | depends on FB |
| 152 | default n |
| 153 | ---help--- |
| 154 | Include the sys_copyarea function for generic software area copying. |
| 155 | This is used by drivers that don't provide their own (accelerated) |
| 156 | version and the framebuffer is in system RAM. |
| 157 | |
| 158 | config FB_SYS_IMAGEBLIT |
| 159 | tristate |
| 160 | depends on FB |
| 161 | default n |
| 162 | ---help--- |
| 163 | Include the sys_imageblit function for generic software image |
| 164 | blitting. This is used by drivers that don't provide their own |
| 165 | (accelerated) version and the framebuffer is in system RAM. |
| 166 | |
Anton Vorontsov | e4c690e | 2008-04-28 02:14:49 -0700 | [diff] [blame] | 167 | menuconfig FB_FOREIGN_ENDIAN |
| 168 | bool "Framebuffer foreign endianness support" |
| 169 | depends on FB |
| 170 | ---help--- |
| 171 | This menu will let you enable support for the framebuffers with |
| 172 | non-native endianness (e.g. Little-Endian framebuffer on a |
| 173 | Big-Endian machine). Most probably you don't have such hardware, |
| 174 | so it's safe to say "n" here. |
| 175 | |
| 176 | choice |
| 177 | prompt "Choice endianness support" |
| 178 | depends on FB_FOREIGN_ENDIAN |
| 179 | |
| 180 | config FB_BOTH_ENDIAN |
| 181 | bool "Support for Big- and Little-Endian framebuffers" |
| 182 | |
| 183 | config FB_BIG_ENDIAN |
| 184 | bool "Support for Big-Endian framebuffers only" |
| 185 | |
| 186 | config FB_LITTLE_ENDIAN |
| 187 | bool "Support for Little-Endian framebuffers only" |
| 188 | |
| 189 | endchoice |
| 190 | |
Antonino A. Daplas | 09aaf26 | 2007-05-08 00:39:03 -0700 | [diff] [blame] | 191 | config FB_SYS_FOPS |
| 192 | tristate |
| 193 | depends on FB |
| 194 | default n |
| 195 | |
Alexey Charkov | d6ff7d0 | 2010-11-09 02:42:39 +0300 | [diff] [blame] | 196 | config FB_WMT_GE_ROPS |
| 197 | tristate |
| 198 | depends on FB |
| 199 | default n |
| 200 | ---help--- |
| 201 | Include functions for accelerated rectangle filling and area |
| 202 | copying using WonderMedia Graphics Engine operations. |
| 203 | |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 204 | config FB_DEFERRED_IO |
| 205 | bool |
| 206 | depends on FB |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 207 | |
Jaya Kumar | 0e27aa3 | 2008-04-28 02:15:40 -0700 | [diff] [blame] | 208 | config FB_HECUBA |
| 209 | tristate |
| 210 | depends on FB |
| 211 | depends on FB_DEFERRED_IO |
| 212 | |
Ondrej Zajicek | a268422 | 2007-02-12 00:54:49 -0800 | [diff] [blame] | 213 | config FB_SVGALIB |
| 214 | tristate |
| 215 | depends on FB |
| 216 | default n |
| 217 | ---help--- |
| 218 | Common utility functions useful to fbdev drivers of VGA-based |
| 219 | cards. |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | config FB_MACMODES |
| 222 | tristate |
| 223 | depends on FB |
| 224 | default n |
| 225 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 226 | config FB_BACKLIGHT |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 227 | bool |
| 228 | depends on FB |
| 229 | select BACKLIGHT_LCD_SUPPORT |
| 230 | select BACKLIGHT_CLASS_DEVICE |
| 231 | default n |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | config FB_MODE_HELPERS |
| 234 | bool "Enable Video Mode Handling Helpers" |
| 235 | depends on FB |
| 236 | default n |
| 237 | ---help--- |
| 238 | This enables functions for handling video modes using the |
| 239 | Generalized Timing Formula and the EDID parser. A few drivers rely |
| 240 | on this feature such as the radeonfb, rivafb, and the i810fb. If |
| 241 | your driver does not take advantage of this feature, choosing Y will |
| 242 | just increase the kernel size by about 5K. |
| 243 | |
| 244 | config FB_TILEBLITTING |
| 245 | bool "Enable Tile Blitting Support" |
| 246 | depends on FB |
| 247 | default n |
| 248 | ---help--- |
| 249 | This enables tile blitting. Tile blitting is a drawing technique |
| 250 | where the screen is divided into rectangular sections (tiles), whereas |
| 251 | the standard blitting divides the screen into pixels. Because the |
| 252 | default drawing element is a tile, drawing functions will be passed |
| 253 | parameters in terms of number of tiles instead of number of pixels. |
| 254 | For example, to draw a single character, instead of using bitmaps, |
| 255 | an index to an array of bitmaps will be used. To clear or move a |
| 256 | rectangular section of a screen, the rectangle will be described in |
| 257 | terms of number of tiles in the x- and y-axis. |
| 258 | |
| 259 | This is particularly important to one driver, matroxfb. If |
| 260 | unsure, say N. |
| 261 | |
Miguel Ojeda | 10ccaf4 | 2007-04-23 14:41:09 -0700 | [diff] [blame] | 262 | comment "Frame buffer hardware drivers" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 263 | depends on FB |
| 264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | config FB_CIRRUS |
| 266 | tristate "Cirrus Logic support" |
| 267 | depends on FB && (ZORRO || PCI) |
| 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 enables support for Cirrus Logic GD542x/543x based boards on |
| 273 | Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum. |
| 274 | |
| 275 | If you have a PCI-based system, this enables support for these |
| 276 | chips: GD-543x, GD-544x, GD-5480. |
| 277 | |
| 278 | Please read the file <file:Documentation/fb/cirrusfb.txt>. |
| 279 | |
| 280 | Say N unless you have such a graphics board or plan to get one |
| 281 | before you next recompile the kernel. |
| 282 | |
| 283 | config FB_PM2 |
| 284 | tristate "Permedia2 support" |
| 285 | depends on FB && ((AMIGA && BROKEN) || PCI) |
| 286 | select FB_CFB_FILLRECT |
| 287 | select FB_CFB_COPYAREA |
| 288 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | help |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 290 | This is the frame buffer device driver for cards based on |
| 291 | the 3D Labs Permedia, Permedia 2 and Permedia 2V chips. |
| 292 | The driver was tested on the following cards: |
| 293 | Diamond FireGL 1000 PRO AGP |
| 294 | ELSA Gloria Synergy PCI |
| 295 | Appian Jeronimo PRO (both heads) PCI |
| 296 | 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI |
| 297 | Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC |
| 298 | ASK Graphic Blaster Exxtreme AGP |
| 299 | |
| 300 | To compile this driver as a module, choose M here: the |
| 301 | module will be called pm2fb. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | config FB_PM2_FIFO_DISCONNECT |
| 304 | bool "enable FIFO disconnect feature" |
| 305 | depends on FB_PM2 && PCI |
| 306 | help |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 307 | Support the Permedia2 FIFO disconnect feature. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | config FB_ARMCLCD |
| 310 | tristate "ARM PrimeCell PL110 support" |
| 311 | depends on FB && ARM && ARM_AMBA |
| 312 | select FB_CFB_FILLRECT |
| 313 | select FB_CFB_COPYAREA |
| 314 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | help |
| 316 | This framebuffer device driver is for the ARM PrimeCell PL110 |
| 317 | Colour LCD controller. ARM PrimeCells provide the building |
| 318 | blocks for System on a Chip devices. |
| 319 | |
| 320 | If you want to compile this as a module (=code which can be |
| 321 | inserted into and removed from the running kernel), say M |
Alexander E. Patrakov | 39f5fb3 | 2007-03-16 18:28:43 +0500 | [diff] [blame] | 322 | here and read <file:Documentation/kbuild/modules.txt>. The module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | will be called amba-clcd. |
| 324 | |
Marc Singer | 903e2bb | 2006-05-16 11:41:30 +0100 | [diff] [blame] | 325 | choice |
| 326 | |
| 327 | depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X) |
| 328 | prompt "LCD Panel" |
| 329 | default FB_ARMCLCD_SHARP_LQ035Q7DB02 |
| 330 | |
| 331 | config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT |
| 332 | bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC" |
| 333 | help |
| 334 | This is an implementation of the Sharp LQ035Q7DB02, a 3.5" |
Matt LaPlante | cab0089 | 2006-10-03 22:36:44 +0200 | [diff] [blame] | 335 | color QVGA, HRTFT panel. The LogicPD device includes |
Marc Singer | 903e2bb | 2006-05-16 11:41:30 +0100 | [diff] [blame] | 336 | an integrated HRTFT controller IC. |
| 337 | The native resolution is 240x320. |
| 338 | |
| 339 | config FB_ARMCLCD_SHARP_LQ057Q3DC02 |
| 340 | bool "LogicPD LCD 5.7\" QVGA" |
| 341 | help |
| 342 | This is an implementation of the Sharp LQ057Q3DC02, a 5.7" |
| 343 | color QVGA, TFT panel. The LogicPD device includes an |
| 344 | The native resolution is 320x240. |
| 345 | |
| 346 | config FB_ARMCLCD_SHARP_LQ64D343 |
| 347 | bool "LogicPD LCD 6.4\" VGA" |
| 348 | help |
| 349 | This is an implementation of the Sharp LQ64D343, a 6.4" |
| 350 | color VGA, TFT panel. The LogicPD device includes an |
| 351 | The native resolution is 640x480. |
| 352 | |
| 353 | config FB_ARMCLCD_SHARP_LQ10D368 |
| 354 | bool "LogicPD LCD 10.4\" VGA" |
| 355 | help |
| 356 | This is an implementation of the Sharp LQ10D368, a 10.4" |
| 357 | color VGA, TFT panel. The LogicPD device includes an |
| 358 | The native resolution is 640x480. |
| 359 | |
| 360 | |
| 361 | config FB_ARMCLCD_SHARP_LQ121S1DG41 |
| 362 | bool "LogicPD LCD 12.1\" SVGA" |
| 363 | help |
| 364 | This is an implementation of the Sharp LQ121S1DG41, a 12.1" |
| 365 | color SVGA, TFT panel. The LogicPD device includes an |
| 366 | The native resolution is 800x600. |
| 367 | |
| 368 | This panel requires a clock rate may be an integer fraction |
| 369 | of the base LCDCLK frequency. The driver will select the |
| 370 | highest frequency available that is lower than the maximum |
| 371 | allowed. The panel may flicker if the clock rate is |
| 372 | slower than the recommended minimum. |
| 373 | |
| 374 | config FB_ARMCLCD_AUO_A070VW01_WIDE |
| 375 | bool "AU Optronics A070VW01 LCD 7.0\" WIDE" |
| 376 | help |
| 377 | This is an implementation of the AU Optronics, a 7.0" |
| 378 | WIDE Color. The native resolution is 234x480. |
| 379 | |
| 380 | config FB_ARMCLCD_HITACHI |
| 381 | bool "Hitachi Wide Screen 800x480" |
| 382 | help |
| 383 | This is an implementation of the Hitachi 800x480. |
| 384 | |
| 385 | endchoice |
| 386 | |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | config FB_ACORN |
| 389 | bool "Acorn VIDC support" |
Russell King | 635f025 | 2008-10-28 09:43:54 +0000 | [diff] [blame] | 390 | depends on (FB = y) && ARM && ARCH_ACORN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | select FB_CFB_FILLRECT |
| 392 | select FB_CFB_COPYAREA |
| 393 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | help |
| 395 | This is the frame buffer device driver for the Acorn VIDC graphics |
| 396 | hardware found in Acorn RISC PCs and other ARM-based machines. If |
| 397 | unsure, say N. |
| 398 | |
| 399 | config FB_CLPS711X |
| 400 | bool "CLPS711X LCD support" |
| 401 | depends on (FB = y) && ARM && ARCH_CLPS711X |
| 402 | select FB_CFB_FILLRECT |
| 403 | select FB_CFB_COPYAREA |
| 404 | select FB_CFB_IMAGEBLIT |
Randy.Dunlap | e65c085 | 2005-11-07 01:00:28 -0800 | [diff] [blame] | 405 | help |
| 406 | Say Y to enable the Framebuffer driver for the CLPS7111 and |
| 407 | EP7212 processors. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | config FB_SA1100 |
| 410 | bool "SA-1100 LCD support" |
| 411 | depends on (FB = y) && ARM && ARCH_SA1100 |
| 412 | select FB_CFB_FILLRECT |
| 413 | select FB_CFB_COPYAREA |
| 414 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | help |
| 416 | This is a framebuffer device for the SA-1100 LCD Controller. |
| 417 | See <http://www.linux-fbdev.org/> for information on framebuffer |
| 418 | devices. |
| 419 | |
| 420 | If you plan to use the LCD display with your SA-1100 system, say |
| 421 | Y here. |
| 422 | |
Sascha Hauer | 7c2f891c | 2005-05-01 08:59:24 -0700 | [diff] [blame] | 423 | config FB_IMX |
Fabio Estevam | e3d5fb7 | 2011-01-10 09:47:41 -0200 | [diff] [blame] | 424 | tristate "Freescale i.MX LCD support" |
Baruch Siach | f601441 | 2010-02-17 12:33:23 +0200 | [diff] [blame] | 425 | depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2) |
Sascha Hauer | 7c2f891c | 2005-05-01 08:59:24 -0700 | [diff] [blame] | 426 | select FB_CFB_FILLRECT |
| 427 | select FB_CFB_COPYAREA |
| 428 | select FB_CFB_IMAGEBLIT |
Sascha Hauer | 7c2f891c | 2005-05-01 08:59:24 -0700 | [diff] [blame] | 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | config FB_CYBER2000 |
| 431 | tristate "CyberPro 2000/2010/5000 support" |
| 432 | depends on FB && PCI && (BROKEN || !SPARC64) |
| 433 | select FB_CFB_FILLRECT |
| 434 | select FB_CFB_COPYAREA |
| 435 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | help |
| 437 | This enables support for the Integraphics CyberPro 20x0 and 5000 |
| 438 | VGA chips used in the Rebel.com Netwinder and other machines. |
| 439 | Say Y if you have a NetWinder or a graphics card containing this |
| 440 | device, otherwise say N. |
| 441 | |
| 442 | config FB_APOLLO |
| 443 | bool |
| 444 | depends on (FB = y) && APOLLO |
| 445 | default y |
| 446 | select FB_CFB_FILLRECT |
| 447 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
| 449 | config FB_Q40 |
| 450 | bool |
| 451 | depends on (FB = y) && Q40 |
| 452 | default y |
| 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 | |
| 457 | config FB_AMIGA |
| 458 | tristate "Amiga native chipset support" |
| 459 | depends on FB && AMIGA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | help |
| 461 | This is the frame buffer device driver for the builtin graphics |
| 462 | chipset found in Amigas. |
| 463 | |
| 464 | To compile this driver as a module, choose M here: the |
| 465 | module will be called amifb. |
| 466 | |
| 467 | config FB_AMIGA_OCS |
| 468 | bool "Amiga OCS chipset support" |
| 469 | depends on FB_AMIGA |
| 470 | help |
| 471 | This enables support for the original Agnus and Denise video chips, |
| 472 | found in the Amiga 1000 and most A500's and A2000's. If you intend |
| 473 | to run Linux on any of these systems, say Y; otherwise say N. |
| 474 | |
| 475 | config FB_AMIGA_ECS |
| 476 | bool "Amiga ECS chipset support" |
| 477 | depends on FB_AMIGA |
| 478 | help |
| 479 | This enables support for the Enhanced Chip Set, found in later |
| 480 | A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If |
| 481 | you intend to run Linux on any of these systems, say Y; otherwise |
| 482 | say N. |
| 483 | |
| 484 | config FB_AMIGA_AGA |
| 485 | bool "Amiga AGA chipset support" |
| 486 | depends on FB_AMIGA |
| 487 | help |
| 488 | This enables support for the Advanced Graphics Architecture (also |
| 489 | known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T |
| 490 | and CD32. If you intend to run Linux on any of these systems, say Y; |
| 491 | otherwise say N. |
| 492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | config FB_FM2 |
| 494 | bool "Amiga FrameMaster II/Rainbow II support" |
| 495 | depends on (FB = y) && ZORRO |
| 496 | select FB_CFB_FILLRECT |
| 497 | select FB_CFB_COPYAREA |
| 498 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | help |
| 500 | This is the frame buffer device driver for the Amiga FrameMaster |
| 501 | card from BSC (exhibited 1992 but not shipped as a CBM product). |
| 502 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 503 | config FB_ARC |
| 504 | tristate "Arc Monochrome LCD board support" |
| 505 | depends on FB && X86 |
Antonino A. Daplas | 922e6f9 | 2007-05-08 00:38:58 -0700 | [diff] [blame] | 506 | select FB_SYS_FILLRECT |
| 507 | select FB_SYS_COPYAREA |
| 508 | select FB_SYS_IMAGEBLIT |
Antonino A. Daplas | d9a05f1 | 2007-05-08 00:39:04 -0700 | [diff] [blame] | 509 | select FB_SYS_FOPS |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 510 | help |
| 511 | This enables support for the Arc Monochrome LCD board. The board |
| 512 | is based on the KS-108 lcd controller and is typically a matrix |
| 513 | of 2*n chips. This driver was tested with a 128x64 panel. This |
| 514 | 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] | 515 | interface (8 bit data, 8 bit control). If you anticipate using |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 516 | this driver, say Y or M; otherwise say N. You must specify the |
| 517 | GPIO IO address to be used for setting control and data. |
| 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | config FB_ATARI |
| 520 | bool "Atari native chipset support" |
Michael Schmitz | a100501 | 2007-05-01 22:32:39 +0200 | [diff] [blame] | 521 | depends on (FB = y) && ATARI |
| 522 | select FB_CFB_FILLRECT |
| 523 | select FB_CFB_COPYAREA |
| 524 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | help |
| 526 | This is the frame buffer device driver for the builtin graphics |
| 527 | chipset found in Ataris. |
| 528 | |
| 529 | config FB_OF |
| 530 | bool "Open Firmware frame buffer device support" |
Stephen Rothwell | bed5927 | 2007-03-04 17:04:44 +1100 | [diff] [blame] | 531 | depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | select FB_CFB_FILLRECT |
| 533 | select FB_CFB_COPYAREA |
| 534 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | select FB_MACMODES |
| 536 | help |
| 537 | Say Y if you want support with Open Firmware for your graphics |
| 538 | board. |
| 539 | |
| 540 | config FB_CONTROL |
| 541 | bool "Apple \"control\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 542 | depends on (FB = y) && PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | select FB_CFB_FILLRECT |
| 544 | select FB_CFB_COPYAREA |
| 545 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | select FB_MACMODES |
| 547 | help |
| 548 | This driver supports a frame buffer for the graphics adapter in the |
| 549 | Power Macintosh 7300 and others. |
| 550 | |
| 551 | config FB_PLATINUM |
| 552 | bool "Apple \"platinum\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 553 | depends on (FB = y) && PPC_PMAC && PPC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | select FB_CFB_FILLRECT |
| 555 | select FB_CFB_COPYAREA |
| 556 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | select FB_MACMODES |
| 558 | help |
| 559 | This driver supports a frame buffer for the "platinum" graphics |
| 560 | adapter in some Power Macintoshes. |
| 561 | |
| 562 | config FB_VALKYRIE |
| 563 | bool "Apple \"valkyrie\" display support" |
Olaf Hering | a04b61d | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 564 | depends on (FB = y) && (MAC || (PPC_PMAC && PPC32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | select FB_CFB_FILLRECT |
| 566 | select FB_CFB_COPYAREA |
| 567 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | select FB_MACMODES |
| 569 | help |
| 570 | This driver supports a frame buffer for the "valkyrie" graphics |
| 571 | adapter in some Power Macintoshes. |
| 572 | |
| 573 | config FB_CT65550 |
| 574 | bool "Chips 65550 display support" |
Randy Dunlap | 0f8c0234 | 2007-11-14 16:58:45 -0800 | [diff] [blame] | 575 | depends on (FB = y) && PPC32 && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | select FB_CFB_FILLRECT |
| 577 | select FB_CFB_COPYAREA |
| 578 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | help |
| 580 | This is the frame buffer device driver for the Chips & Technologies |
| 581 | 65550 graphics chip in PowerBooks. |
| 582 | |
| 583 | config FB_ASILIANT |
Randy.Dunlap | e65c085 | 2005-11-07 01:00:28 -0800 | [diff] [blame] | 584 | bool "Asiliant (Chips) 69000 display support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | depends on (FB = y) && PCI |
| 586 | select FB_CFB_FILLRECT |
| 587 | select FB_CFB_COPYAREA |
| 588 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | 4de0b1e | 2006-04-27 18:40:47 -0700 | [diff] [blame] | 589 | help |
| 590 | This is the frame buffer device driver for the Asiliant 69030 chipset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
| 592 | config FB_IMSTT |
| 593 | bool "IMS Twin Turbo display support" |
| 594 | depends on (FB = y) && PCI |
| 595 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | select FB_MACMODES if PPC |
| 597 | help |
| 598 | The IMS Twin Turbo is a PCI-based frame buffer card bundled with |
| 599 | many Macintosh and compatible computers. |
| 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | config FB_VGA16 |
| 602 | tristate "VGA 16-color graphics support" |
| 603 | depends on FB && (X86 || PPC) |
| 604 | select FB_CFB_FILLRECT |
| 605 | select FB_CFB_COPYAREA |
| 606 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 607 | select VGASTATE |
Antonino A. Daplas | d60d2d8 | 2007-05-08 00:39:12 -0700 | [diff] [blame] | 608 | select FONT_8x16 if FRAMEBUFFER_CONSOLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | help |
| 610 | This is the frame buffer device driver for VGA 16 color graphic |
| 611 | cards. Say Y if you have such a card. |
| 612 | |
| 613 | To compile this driver as a module, choose M here: the |
| 614 | module will be called vga16fb. |
| 615 | |
Michael Hennerich | e9fa7c4 | 2007-10-16 01:29:38 -0700 | [diff] [blame] | 616 | config FB_BF54X_LQ043 |
| 617 | tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)" |
Mike Frysinger | e7a05aa | 2008-04-28 02:15:47 -0700 | [diff] [blame] | 618 | depends on FB && (BF54x) && !BF542 |
Michael Hennerich | e9fa7c4 | 2007-10-16 01:29:38 -0700 | [diff] [blame] | 619 | select FB_CFB_FILLRECT |
| 620 | select FB_CFB_COPYAREA |
| 621 | select FB_CFB_IMAGEBLIT |
| 622 | help |
| 623 | This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD |
| 624 | |
Michael Hennerich | 99eeed47a | 2008-03-10 11:44:04 -0700 | [diff] [blame] | 625 | config FB_BFIN_T350MCQB |
| 626 | tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)" |
| 627 | depends on FB && BLACKFIN |
| 628 | select BFIN_GPTIMERS |
| 629 | select FB_CFB_FILLRECT |
| 630 | select FB_CFB_COPYAREA |
| 631 | select FB_CFB_IMAGEBLIT |
| 632 | help |
| 633 | This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD |
| 634 | This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI |
| 635 | It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK. |
| 636 | |
Michael Hennerich | 9cfe4a9 | 2009-12-15 16:46:21 -0800 | [diff] [blame] | 637 | config FB_BFIN_LQ035Q1 |
| 638 | tristate "SHARP LQ035Q1DH02 TFT LCD" |
| 639 | depends on FB && BLACKFIN && SPI |
| 640 | select FB_CFB_FILLRECT |
| 641 | select FB_CFB_COPYAREA |
| 642 | select FB_CFB_IMAGEBLIT |
| 643 | select BFIN_GPTIMERS |
| 644 | help |
| 645 | This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on |
| 646 | the Blackfin Landscape LCD EZ-Extender Card. |
| 647 | This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI |
| 648 | It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK. |
| 649 | |
| 650 | To compile this driver as a module, choose M here: the |
| 651 | module will be called bfin-lq035q1-fb. |
Michael Hennerich | 99eeed47a | 2008-03-10 11:44:04 -0700 | [diff] [blame] | 652 | |
Michael Hennerich | dbcc465 | 2010-11-24 09:33:58 +0000 | [diff] [blame] | 653 | config FB_BF537_LQ035 |
| 654 | tristate "SHARP LQ035 TFT LCD (BF537 STAMP)" |
| 655 | depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI |
| 656 | select FB_CFB_FILLRECT |
| 657 | select FB_CFB_COPYAREA |
| 658 | select FB_CFB_IMAGEBLIT |
| 659 | select BFIN_GPTIMERS |
| 660 | help |
| 661 | This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD |
| 662 | attached to a BF537. |
| 663 | |
| 664 | To compile this driver as a module, choose M here: the |
| 665 | module will be called bf537-lq035. |
| 666 | |
Michael Hennerich | cffd934 | 2010-11-24 09:33:59 +0000 | [diff] [blame] | 667 | config FB_BFIN_7393 |
| 668 | tristate "Blackfin ADV7393 Video encoder" |
| 669 | depends on FB && BLACKFIN |
| 670 | select I2C |
| 671 | select FB_CFB_FILLRECT |
| 672 | select FB_CFB_COPYAREA |
| 673 | select FB_CFB_IMAGEBLIT |
| 674 | help |
| 675 | This is the framebuffer device for a ADV7393 video encoder |
| 676 | attached to a Blackfin on the PPI port. |
| 677 | If your Blackfin board has a ADV7393 select Y. |
| 678 | |
| 679 | To compile this driver as a module, choose M here: the |
| 680 | module will be called bfin_adv7393fb. |
| 681 | |
| 682 | choice |
| 683 | prompt "Video mode support" |
| 684 | depends on FB_BFIN_7393 |
| 685 | default NTSC |
| 686 | |
| 687 | config NTSC |
| 688 | bool 'NTSC 720x480' |
| 689 | |
| 690 | config PAL |
| 691 | bool 'PAL 720x576' |
| 692 | |
| 693 | config NTSC_640x480 |
| 694 | bool 'NTSC 640x480 (Experimental)' |
| 695 | |
| 696 | config PAL_640x480 |
| 697 | bool 'PAL 640x480 (Experimental)' |
| 698 | |
| 699 | config NTSC_YCBCR |
| 700 | bool 'NTSC 720x480 YCbCR input' |
| 701 | |
| 702 | config PAL_YCBCR |
| 703 | bool 'PAL 720x576 YCbCR input' |
| 704 | |
| 705 | endchoice |
| 706 | |
| 707 | choice |
| 708 | prompt "Size of ADV7393 frame buffer memory Single/Double Size" |
| 709 | depends on (FB_BFIN_7393) |
| 710 | default ADV7393_1XMEM |
| 711 | |
| 712 | config ADV7393_1XMEM |
| 713 | bool 'Single' |
| 714 | |
| 715 | config ADV7393_2XMEM |
| 716 | bool 'Double' |
| 717 | endchoice |
| 718 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | config FB_STI |
| 720 | tristate "HP STI frame buffer device support" |
| 721 | depends on FB && PARISC |
| 722 | select FB_CFB_FILLRECT |
| 723 | select FB_CFB_COPYAREA |
| 724 | select FB_CFB_IMAGEBLIT |
Alexander Beregalov | 17085a9 | 2009-04-03 13:33:32 +0000 | [diff] [blame] | 725 | select STI_CONSOLE |
| 726 | select VT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | default y |
| 728 | ---help--- |
| 729 | STI refers to the HP "Standard Text Interface" which is a set of |
| 730 | BIOS routines contained in a ROM chip in HP PA-RISC based machines. |
| 731 | Enabling this option will implement the linux framebuffer device |
| 732 | using calls to the STI BIOS routines for initialisation. |
| 733 | |
| 734 | If you enable this option, you will get a planar framebuffer device |
| 735 | /dev/fb which will work on the most common HP graphic cards of the |
| 736 | NGLE family, including the artist chips (in the 7xx and Bxxx series), |
| 737 | HCRX, HCRX24, CRX, CRX24 and VisEG series. |
| 738 | |
| 739 | It is safe to enable this option, so you should probably say "Y". |
| 740 | |
| 741 | config FB_MAC |
| 742 | bool "Generic Macintosh display support" |
| 743 | depends on (FB = y) && MAC |
| 744 | select FB_CFB_FILLRECT |
| 745 | select FB_CFB_COPYAREA |
| 746 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | select FB_MACMODES |
| 748 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | config FB_HP300 |
| 750 | bool |
Geert Uytterhoeven | ad7e484 | 2008-05-18 20:47:09 +0200 | [diff] [blame] | 751 | depends on (FB = y) && DIO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | default y |
| 754 | |
| 755 | config FB_TGA |
Maciej W. Rozycki | 86c6f7d | 2007-05-08 00:37:48 -0700 | [diff] [blame] | 756 | tristate "TGA/SFB+ framebuffer support" |
| 757 | depends on FB && (ALPHA || TC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | select FB_CFB_FILLRECT |
| 759 | select FB_CFB_COPYAREA |
| 760 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 761 | select BITREVERSE |
Maciej W. Rozycki | 86c6f7d | 2007-05-08 00:37:48 -0700 | [diff] [blame] | 762 | ---help--- |
| 763 | This is the frame buffer device driver for generic TGA and SFB+ |
| 764 | graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards, |
| 765 | also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3 |
| 766 | TURBOchannel cards, also known as PMAGD-A, -B and -C. |
| 767 | |
| 768 | Due to hardware limitations ZLX-E2 and E3 cards are not supported |
| 769 | for DECstation 5000/200 systems. Additionally due to firmware |
| 770 | limitations these cards may cause troubles with booting DECstation |
| 771 | 5000/240 and /260 systems, but are fully supported under Linux if |
| 772 | you manage to get it going. ;-) |
| 773 | |
| 774 | Say Y if you have one of those. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
Michal Januszewski | 8bdb3a2 | 2007-10-16 01:28:26 -0700 | [diff] [blame] | 776 | config FB_UVESA |
| 777 | tristate "Userspace VESA VGA graphics support" |
| 778 | depends on FB && CONNECTOR |
| 779 | select FB_CFB_FILLRECT |
| 780 | select FB_CFB_COPYAREA |
| 781 | select FB_CFB_IMAGEBLIT |
| 782 | select FB_MODE_HELPERS |
| 783 | help |
| 784 | This is the frame buffer driver for generic VBE 2.0 compliant |
| 785 | graphic cards. It can also take advantage of VBE 3.0 features, |
| 786 | such as refresh rate adjustment. |
| 787 | |
| 788 | This driver generally provides more features than vesafb but |
| 789 | requires a userspace helper application called 'v86d'. See |
| 790 | <file:Documentation/fb/uvesafb.txt> for more information. |
| 791 | |
| 792 | If unsure, say N. |
| 793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | config FB_VESA |
| 795 | bool "VESA VGA graphics support" |
Brian Gerst | 0d078f6 | 2005-10-30 14:59:20 -0800 | [diff] [blame] | 796 | depends on (FB = y) && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | select FB_CFB_FILLRECT |
| 798 | select FB_CFB_COPYAREA |
| 799 | select FB_CFB_IMAGEBLIT |
Michal Januszewski | 4d31a2b | 2008-10-15 22:03:51 -0700 | [diff] [blame] | 800 | select FB_BOOT_VESA_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | help |
| 802 | This is the frame buffer device driver for generic VESA 2.0 |
| 803 | compliant graphic cards. The older VESA 1.2 cards are not supported. |
| 804 | You will get a boot time penguin logo at no additional cost. Please |
| 805 | read <file:Documentation/fb/vesafb.txt>. If unsure, say Y. |
| 806 | |
Huang, Ying | 7c83172 | 2007-11-28 16:21:55 -0800 | [diff] [blame] | 807 | config FB_EFI |
| 808 | bool "EFI-based Framebuffer Support" |
Edgar Hucek | b64ef8a | 2006-08-13 23:24:16 -0700 | [diff] [blame] | 809 | depends on (FB = y) && X86 && EFI |
Edgar Hucek | 90b4f9a | 2006-06-26 00:26:59 -0700 | [diff] [blame] | 810 | select FB_CFB_FILLRECT |
| 811 | select FB_CFB_COPYAREA |
| 812 | select FB_CFB_IMAGEBLIT |
| 813 | help |
Peter Jones | 7c08c9a | 2008-10-15 22:03:43 -0700 | [diff] [blame] | 814 | This is the EFI frame buffer device driver. If the firmware on |
| 815 | your platform is EFI 1.10 or UEFI 2.0, select Y to add support for |
| 816 | using the EFI framebuffer as your console. |
Edgar Hucek | 90b4f9a | 2006-06-26 00:26:59 -0700 | [diff] [blame] | 817 | |
Jaya Kumar | 0e27aa3 | 2008-04-28 02:15:40 -0700 | [diff] [blame] | 818 | config FB_N411 |
| 819 | tristate "N411 Apollo/Hecuba devkit support" |
Jaya Kumar | aad09e5 | 2007-05-08 00:37:43 -0700 | [diff] [blame] | 820 | depends on FB && X86 && MMU |
Antonino A. Daplas | d677493 | 2007-05-08 00:39:00 -0700 | [diff] [blame] | 821 | select FB_SYS_FILLRECT |
| 822 | select FB_SYS_COPYAREA |
| 823 | select FB_SYS_IMAGEBLIT |
Antonino A. Daplas | 28d4564 | 2007-05-08 00:39:06 -0700 | [diff] [blame] | 824 | select FB_SYS_FOPS |
Jaya Kumar | aad09e5 | 2007-05-08 00:37:43 -0700 | [diff] [blame] | 825 | select FB_DEFERRED_IO |
Jaya Kumar | 0e27aa3 | 2008-04-28 02:15:40 -0700 | [diff] [blame] | 826 | select FB_HECUBA |
Jaya Kumar | aad09e5 | 2007-05-08 00:37:43 -0700 | [diff] [blame] | 827 | help |
Jaya Kumar | 0e27aa3 | 2008-04-28 02:15:40 -0700 | [diff] [blame] | 828 | This enables support for the Apollo display controller in its |
| 829 | Hecuba form using the n411 devkit. |
Jaya Kumar | aad09e5 | 2007-05-08 00:37:43 -0700 | [diff] [blame] | 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | config FB_HGA |
| 832 | tristate "Hercules mono graphics support" |
| 833 | depends on FB && X86 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | help |
| 835 | Say Y here if you have a Hercules mono graphics card. |
| 836 | |
| 837 | To compile this driver as a module, choose M here: the |
| 838 | module will be called hgafb. |
| 839 | |
Brent Cook | 529ed80 | 2010-12-31 05:56:50 +0000 | [diff] [blame] | 840 | As this card technology is at least 25 years old, |
| 841 | most people will answer N here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | config FB_SGIVW |
| 844 | tristate "SGI Visual Workstation framebuffer support" |
| 845 | depends on FB && X86_VISWS |
| 846 | select FB_CFB_FILLRECT |
| 847 | select FB_CFB_COPYAREA |
| 848 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | help |
| 850 | SGI Visual Workstation support for framebuffer graphics. |
| 851 | |
| 852 | config FB_GBE |
| 853 | bool "SGI Graphics Backend frame buffer support" |
| 854 | depends on (FB = y) && (SGI_IP32 || X86_VISWS) |
| 855 | select FB_CFB_FILLRECT |
| 856 | select FB_CFB_COPYAREA |
| 857 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | help |
| 859 | This is the frame buffer device driver for SGI Graphics Backend. |
| 860 | This chip is used in SGI O2 and Visual Workstation 320/540. |
| 861 | |
| 862 | config FB_GBE_MEM |
| 863 | int "Video memory size in MB" |
| 864 | depends on FB_GBE |
Martin Michlmayr | 80c410d | 2006-02-24 13:04:16 -0800 | [diff] [blame] | 865 | default 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | help |
| 867 | This is the amount of memory reserved for the framebuffer, |
| 868 | which can be any value between 1MB and 8MB. |
| 869 | |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 870 | config FB_SBUS |
| 871 | bool "SBUS and UPA framebuffers" |
Adrian Bunk | 0b57ee9 | 2005-12-22 21:03:47 -0800 | [diff] [blame] | 872 | depends on (FB = y) && SPARC |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 873 | help |
| 874 | Say Y if you want support for SBUS or UPA based frame buffer device. |
| 875 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | config FB_BW2 |
| 877 | bool "BWtwo support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 878 | depends on (FB = y) && (SPARC && FB_SBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | select FB_CFB_FILLRECT |
| 880 | select FB_CFB_COPYAREA |
| 881 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | help |
| 883 | This is the frame buffer device driver for the BWtwo frame buffer. |
| 884 | |
| 885 | config FB_CG3 |
| 886 | bool "CGthree support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 887 | depends on (FB = y) && (SPARC && FB_SBUS) |
Mark Fortescue | 1a57198 | 2005-11-29 19:34:44 -0800 | [diff] [blame] | 888 | select FB_CFB_FILLRECT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | select FB_CFB_COPYAREA |
| 890 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | help |
| 892 | This is the frame buffer device driver for the CGthree frame buffer. |
| 893 | |
| 894 | config FB_CG6 |
| 895 | bool "CGsix (GX,TurboGX) support" |
Adrian Bunk | e019630 | 2007-02-12 00:54:50 -0800 | [diff] [blame] | 896 | depends on (FB = y) && (SPARC && FB_SBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | select FB_CFB_COPYAREA |
| 898 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | help |
| 900 | This is the frame buffer device driver for the CGsix (GX, TurboGX) |
| 901 | frame buffer. |
| 902 | |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 903 | config FB_FFB |
| 904 | bool "Creator/Creator3D/Elite3D support" |
| 905 | depends on FB_SBUS && SPARC64 |
| 906 | select FB_CFB_COPYAREA |
| 907 | select FB_CFB_IMAGEBLIT |
| 908 | help |
| 909 | This is the frame buffer device driver for the Creator, Creator3D, |
| 910 | and Elite3D graphics boards. |
| 911 | |
| 912 | config FB_TCX |
| 913 | bool "TCX (SS4/SS5 only) support" |
| 914 | depends on FB_SBUS |
| 915 | select FB_CFB_FILLRECT |
| 916 | select FB_CFB_COPYAREA |
| 917 | select FB_CFB_IMAGEBLIT |
| 918 | help |
| 919 | This is the frame buffer device driver for the TCX 24/8bit frame |
| 920 | buffer. |
| 921 | |
| 922 | config FB_CG14 |
| 923 | bool "CGfourteen (SX) support" |
| 924 | depends on FB_SBUS |
| 925 | select FB_CFB_FILLRECT |
| 926 | select FB_CFB_COPYAREA |
| 927 | select FB_CFB_IMAGEBLIT |
| 928 | help |
| 929 | This is the frame buffer device driver for the CGfourteen frame |
| 930 | buffer on Desktop SPARCsystems with the SX graphics option. |
| 931 | |
| 932 | config FB_P9100 |
| 933 | bool "P9100 (Sparcbook 3 only) support" |
| 934 | depends on FB_SBUS |
| 935 | select FB_CFB_FILLRECT |
| 936 | select FB_CFB_COPYAREA |
| 937 | select FB_CFB_IMAGEBLIT |
| 938 | help |
| 939 | This is the frame buffer device driver for the P9100 card |
| 940 | supported on Sparcbook 3 machines. |
| 941 | |
| 942 | config FB_LEO |
| 943 | bool "Leo (ZX) support" |
| 944 | depends on FB_SBUS |
| 945 | select FB_CFB_FILLRECT |
| 946 | select FB_CFB_COPYAREA |
| 947 | select FB_CFB_IMAGEBLIT |
| 948 | help |
| 949 | This is the frame buffer device driver for the SBUS-based Sun ZX |
| 950 | (leo) frame buffer cards. |
| 951 | |
| 952 | config FB_IGA |
| 953 | bool "IGA 168x display support" |
David S. Miller | e11a6c2 | 2007-06-03 17:35:24 -0700 | [diff] [blame] | 954 | depends on (FB = y) && SPARC32 |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 955 | select FB_CFB_FILLRECT |
| 956 | select FB_CFB_COPYAREA |
| 957 | select FB_CFB_IMAGEBLIT |
| 958 | help |
| 959 | This is the framebuffer device for the INTERGRAPHICS 1680 and |
| 960 | successor frame buffer cards. |
| 961 | |
| 962 | config FB_XVR500 |
| 963 | bool "Sun XVR-500 3DLABS Wildcat support" |
David S. Miller | e11a6c2 | 2007-06-03 17:35:24 -0700 | [diff] [blame] | 964 | depends on (FB = y) && PCI && SPARC64 |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 965 | select FB_CFB_FILLRECT |
| 966 | select FB_CFB_COPYAREA |
| 967 | select FB_CFB_IMAGEBLIT |
| 968 | help |
| 969 | This is the framebuffer device for the Sun XVR-500 and similar |
| 970 | graphics cards based upon the 3DLABS Wildcat chipset. The driver |
Matt LaPlante | 01dd2fb | 2007-10-20 01:34:40 +0200 | [diff] [blame] | 971 | only works on sparc64 systems where the system firmware has |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 972 | mostly initialized the card already. It is treated as a |
| 973 | completely dumb framebuffer device. |
| 974 | |
| 975 | config FB_XVR2500 |
| 976 | bool "Sun XVR-2500 3DLABS Wildcat support" |
David S. Miller | e11a6c2 | 2007-06-03 17:35:24 -0700 | [diff] [blame] | 977 | depends on (FB = y) && PCI && SPARC64 |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 978 | select FB_CFB_FILLRECT |
| 979 | select FB_CFB_COPYAREA |
| 980 | select FB_CFB_IMAGEBLIT |
| 981 | help |
| 982 | This is the framebuffer device for the Sun XVR-2500 and similar |
| 983 | graphics cards based upon the 3DLABS Wildcat chipset. The driver |
Matt LaPlante | 01dd2fb | 2007-10-20 01:34:40 +0200 | [diff] [blame] | 984 | only works on sparc64 systems where the system firmware has |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 985 | mostly initialized the card already. It is treated as a |
| 986 | completely dumb framebuffer device. |
| 987 | |
David S. Miller | 2d378b9 | 2010-03-13 16:25:03 -0800 | [diff] [blame] | 988 | config FB_XVR1000 |
| 989 | bool "Sun XVR-1000 support" |
David S. Miller | f04e879 | 2010-03-16 14:40:42 -0700 | [diff] [blame] | 990 | depends on (FB = y) && SPARC64 |
David S. Miller | 2d378b9 | 2010-03-13 16:25:03 -0800 | [diff] [blame] | 991 | select FB_CFB_FILLRECT |
| 992 | select FB_CFB_COPYAREA |
| 993 | select FB_CFB_IMAGEBLIT |
| 994 | help |
| 995 | This is the framebuffer device for the Sun XVR-1000 and similar |
| 996 | graphics cards. The driver only works on sparc64 systems where |
| 997 | the system firmware has mostly initialized the card already. It |
| 998 | is treated as a completely dumb framebuffer device. |
| 999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | config FB_PVR2 |
| 1001 | tristate "NEC PowerVR 2 display support" |
| 1002 | depends on FB && SH_DREAMCAST |
| 1003 | select FB_CFB_FILLRECT |
| 1004 | select FB_CFB_COPYAREA |
| 1005 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | ---help--- |
| 1007 | Say Y here if you have a PowerVR 2 card in your box. If you plan to |
| 1008 | run linux on your Dreamcast, you will have to say Y here. |
| 1009 | This driver may or may not work on other PowerVR 2 cards, but is |
| 1010 | totally untested. Use at your own risk. If unsure, say N. |
| 1011 | |
| 1012 | To compile this driver as a module, choose M here: the |
| 1013 | module will be called pvr2fb. |
| 1014 | |
| 1015 | You can pass several parameters to the driver at boot time or at |
| 1016 | module load time. The parameters look like "video=pvr2:XXX", where |
| 1017 | the meaning of XXX can be found at the end of the main source file |
| 1018 | (<file:drivers/video/pvr2fb.c>). Please see the file |
| 1019 | <file:Documentation/fb/pvr2fb.txt>. |
| 1020 | |
| 1021 | config FB_EPSON1355 |
| 1022 | bool "Epson 1355 framebuffer support" |
Paul Mundt | 1a3f288 | 2007-07-17 04:05:48 -0700 | [diff] [blame] | 1023 | depends on (FB = y) && ARCH_CEIVA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | select FB_CFB_FILLRECT |
| 1025 | select FB_CFB_COPYAREA |
| 1026 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | help |
| 1028 | Build in support for the SED1355 Epson Research Embedded RAMDAC |
| 1029 | LCD/CRT Controller (since redesignated as the S1D13505) as a |
| 1030 | framebuffer. Product specs at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1031 | <http://vdc.epson.com/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1033 | config FB_S1D13XXX |
| 1034 | tristate "Epson S1D13XXX framebuffer support" |
| 1035 | depends on FB |
| 1036 | select FB_CFB_FILLRECT |
| 1037 | select FB_CFB_COPYAREA |
| 1038 | select FB_CFB_IMAGEBLIT |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1039 | help |
| 1040 | Support for S1D13XXX framebuffer device family (currently only |
| 1041 | working with S1D13806). Product specs at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1042 | <http://vdc.epson.com/> |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1043 | |
Nicolas Ferre | 1434058 | 2007-05-10 22:23:26 -0700 | [diff] [blame] | 1044 | config FB_ATMEL |
| 1045 | tristate "AT91/AT32 LCD Controller support" |
Nicolas Ferre | 0912e53 | 2009-06-23 16:30:56 +0200 | [diff] [blame] | 1046 | depends on FB && HAVE_FB_ATMEL |
Nicolas Ferre | 1434058 | 2007-05-10 22:23:26 -0700 | [diff] [blame] | 1047 | select FB_CFB_FILLRECT |
| 1048 | select FB_CFB_COPYAREA |
| 1049 | select FB_CFB_IMAGEBLIT |
| 1050 | help |
| 1051 | This enables support for the AT91/AT32 LCD Controller. |
| 1052 | |
| 1053 | config FB_INTSRAM |
| 1054 | bool "Frame Buffer in internal SRAM" |
| 1055 | depends on FB_ATMEL && ARCH_AT91SAM9261 |
| 1056 | help |
| 1057 | Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want |
| 1058 | to let frame buffer in external SDRAM. |
| 1059 | |
Nicolas Ferre | 250a269 | 2007-07-21 04:37:59 -0700 | [diff] [blame] | 1060 | config FB_ATMEL_STN |
| 1061 | bool "Use a STN display with AT91/AT32 LCD Controller" |
Nicolas Ferre | 915190f | 2009-07-21 11:31:29 +0100 | [diff] [blame] | 1062 | depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK) |
Nicolas Ferre | 250a269 | 2007-07-21 04:37:59 -0700 | [diff] [blame] | 1063 | default n |
| 1064 | help |
| 1065 | Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD |
| 1066 | Controller. Say N if you want to connect a TFT. |
| 1067 | |
| 1068 | If unsure, say N. |
| 1069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | config FB_NVIDIA |
| 1071 | tristate "nVidia Framebuffer Support" |
| 1072 | depends on FB && PCI |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1073 | select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | select FB_MODE_HELPERS |
| 1075 | select FB_CFB_FILLRECT |
| 1076 | select FB_CFB_COPYAREA |
| 1077 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 1078 | select BITREVERSE |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1079 | select VGASTATE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | help |
| 1081 | This driver supports graphics boards with the nVidia chips, TNT |
| 1082 | and newer. For very old chipsets, such as the RIVA128, then use |
| 1083 | the rivafb. |
| 1084 | Say Y if you have such a graphics board. |
| 1085 | |
| 1086 | To compile this driver as a module, choose M here: the |
| 1087 | module will be called nvidiafb. |
| 1088 | |
| 1089 | config FB_NVIDIA_I2C |
| 1090 | bool "Enable DDC Support" |
Benjamin Herrenschmidt | 85f1503 | 2005-11-07 01:00:30 -0800 | [diff] [blame] | 1091 | depends on FB_NVIDIA |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1092 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | help |
| 1094 | This enables I2C support for nVidia Chipsets. This is used |
| 1095 | only for getting EDID information from the attached display |
| 1096 | allowing for robust video mode handling and switching. |
| 1097 | |
| 1098 | Because fbdev-2.6 requires that drivers must be able to |
| 1099 | independently validate video mode parameters, you should say Y |
| 1100 | here. |
| 1101 | |
Jean Delvare | 647f2e7 | 2007-05-10 22:23:29 -0700 | [diff] [blame] | 1102 | config FB_NVIDIA_DEBUG |
| 1103 | bool "Lots of debug output" |
| 1104 | depends on FB_NVIDIA |
| 1105 | default n |
| 1106 | help |
| 1107 | Say Y here if you want the nVidia driver to output all sorts |
| 1108 | of debugging information to provide to the maintainer when |
| 1109 | something goes wrong. |
| 1110 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1111 | config FB_NVIDIA_BACKLIGHT |
| 1112 | bool "Support for backlight control" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1113 | depends on FB_NVIDIA |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1114 | default y |
| 1115 | help |
| 1116 | Say Y here if you want to control the backlight of your display. |
| 1117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | config FB_RIVA |
| 1119 | tristate "nVidia Riva support" |
| 1120 | depends on FB && PCI |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1121 | select FB_BACKLIGHT if FB_RIVA_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | select FB_MODE_HELPERS |
| 1123 | select FB_CFB_FILLRECT |
| 1124 | select FB_CFB_COPYAREA |
| 1125 | select FB_CFB_IMAGEBLIT |
Akinobu Mita | 1c66768 | 2006-12-08 02:36:26 -0800 | [diff] [blame] | 1126 | select BITREVERSE |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1127 | select VGASTATE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | help |
| 1129 | This driver supports graphics boards with the nVidia Riva/Geforce |
| 1130 | chips. |
| 1131 | Say Y if you have such a graphics board. |
| 1132 | |
| 1133 | To compile this driver as a module, choose M here: the |
| 1134 | module will be called rivafb. |
| 1135 | |
| 1136 | config FB_RIVA_I2C |
| 1137 | bool "Enable DDC Support" |
| 1138 | depends on FB_RIVA |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1139 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | help |
| 1141 | This enables I2C support for nVidia Chipsets. This is used |
| 1142 | only for getting EDID information from the attached display |
| 1143 | allowing for robust video mode handling and switching. |
| 1144 | |
| 1145 | Because fbdev-2.6 requires that drivers must be able to |
| 1146 | independently validate video mode parameters, you should say Y |
| 1147 | here. |
| 1148 | |
| 1149 | config FB_RIVA_DEBUG |
Jean Delvare | 647f2e7 | 2007-05-10 22:23:29 -0700 | [diff] [blame] | 1150 | bool "Lots of debug output" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | depends on FB_RIVA |
| 1152 | default n |
| 1153 | help |
| 1154 | 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] | 1155 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | something goes wrong. |
| 1157 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1158 | config FB_RIVA_BACKLIGHT |
| 1159 | bool "Support for backlight control" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1160 | depends on FB_RIVA |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1161 | default y |
| 1162 | help |
| 1163 | Say Y here if you want to control the backlight of your display. |
| 1164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | config FB_I810 |
| 1166 | tristate "Intel 810/815 support (EXPERIMENTAL)" |
Krzysztof Helt | a1a5c3b | 2009-02-18 14:48:38 -0800 | [diff] [blame] | 1167 | depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | select FB_MODE_HELPERS |
| 1169 | select FB_CFB_FILLRECT |
| 1170 | select FB_CFB_COPYAREA |
| 1171 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1172 | select VGASTATE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | help |
| 1174 | This driver supports the on-board graphics built in to the Intel 810 |
| 1175 | and 815 chipsets. Say Y if you have and plan to use such a board. |
| 1176 | |
| 1177 | To compile this driver as a module, choose M here: the |
| 1178 | module will be called i810fb. |
| 1179 | |
| 1180 | For more information, please read |
| 1181 | <file:Documentation/fb/intel810.txt> |
| 1182 | |
| 1183 | config FB_I810_GTF |
| 1184 | bool "use VESA Generalized Timing Formula" |
| 1185 | depends on FB_I810 |
| 1186 | help |
| 1187 | If you say Y, then the VESA standard, Generalized Timing Formula |
| 1188 | or GTF, will be used to calculate the required video timing values |
| 1189 | per video mode. Since the GTF allows nondiscrete timings |
| 1190 | (nondiscrete being a range of values as opposed to discrete being a |
| 1191 | set of values), you'll be able to use any combination of horizontal |
| 1192 | and vertical resolutions, and vertical refresh rates without having |
| 1193 | to specify your own timing parameters. This is especially useful |
| 1194 | to maximize the performance of an aging display, or if you just |
| 1195 | have a display with nonstandard dimensions. A VESA compliant |
| 1196 | monitor is recommended, but can still work with non-compliant ones. |
| 1197 | If you need or want this, then select this option. The timings may |
| 1198 | not be compliant with Intel's recommended values. Use at your own |
| 1199 | risk. |
| 1200 | |
| 1201 | If you say N, the driver will revert to discrete video timings |
| 1202 | using a set recommended by Intel in their documentation. |
| 1203 | |
| 1204 | If unsure, say N. |
| 1205 | |
Antonino A. Daplas | 74f6ae8 | 2005-09-09 13:10:04 -0700 | [diff] [blame] | 1206 | config FB_I810_I2C |
| 1207 | bool "Enable DDC Support" |
Antonino A. Daplas | db84502 | 2005-09-13 01:25:02 -0700 | [diff] [blame] | 1208 | depends on FB_I810 && FB_I810_GTF |
Antonino A. Daplas | e80987f | 2006-10-03 01:14:44 -0700 | [diff] [blame] | 1209 | select FB_DDC |
Antonino A. Daplas | 74f6ae8 | 2005-09-09 13:10:04 -0700 | [diff] [blame] | 1210 | help |
| 1211 | |
Alan Hourihane | dbe7e42 | 2007-05-08 00:39:25 -0700 | [diff] [blame] | 1212 | config FB_LE80578 |
| 1213 | tristate "Intel LE80578 (Vermilion) support" |
| 1214 | depends on FB && PCI && X86 |
| 1215 | select FB_MODE_HELPERS |
| 1216 | select FB_CFB_FILLRECT |
| 1217 | select FB_CFB_COPYAREA |
| 1218 | select FB_CFB_IMAGEBLIT |
| 1219 | help |
| 1220 | This driver supports the LE80578 (Vermilion Range) chipset |
| 1221 | |
| 1222 | config FB_CARILLO_RANCH |
| 1223 | tristate "Intel Carillo Ranch support" |
| 1224 | depends on FB_LE80578 && FB && PCI && X86 |
| 1225 | help |
| 1226 | This driver supports the LE80578 (Carillo Ranch) board |
| 1227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | config FB_INTEL |
Maik Broemme | 0e170c7 | 2008-04-28 02:15:43 -0700 | [diff] [blame] | 1229 | tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)" |
David Rientjes | 6a108a1 | 2011-01-20 14:44:16 -0800 | [diff] [blame] | 1230 | depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | select FB_MODE_HELPERS |
| 1232 | select FB_CFB_FILLRECT |
| 1233 | select FB_CFB_COPYAREA |
| 1234 | select FB_CFB_IMAGEBLIT |
Krzysztof Helt | 4b19828 | 2009-06-18 16:49:21 -0700 | [diff] [blame] | 1235 | select FB_BOOT_VESA_SUPPORT if FB_INTEL = y |
Jesse Barnes | ba0ab82 | 2009-07-03 11:24:46 -0700 | [diff] [blame] | 1236 | depends on !DRM_I915 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | help |
| 1238 | This driver supports the on-board graphics built in to the Intel |
Maik Broemme | 0e170c7 | 2008-04-28 02:15:43 -0700 | [diff] [blame] | 1239 | 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | Say Y if you have and plan to use such a board. |
| 1241 | |
Krzysztof Helt | 4b19828 | 2009-06-18 16:49:21 -0700 | [diff] [blame] | 1242 | To make FB_INTELFB=Y work you need to say AGP_INTEL=y too. |
| 1243 | |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 1244 | To compile this driver as a module, choose M here: the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | module will be called intelfb. |
| 1246 | |
Christian Merkle | d463d34 | 2006-08-22 10:07:01 +1000 | [diff] [blame] | 1247 | For more information, please read <file:Documentation/fb/intelfb.txt> |
| 1248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | config FB_INTEL_DEBUG |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 1250 | bool "Intel driver Debug Messages" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1251 | depends on FB_INTEL |
| 1252 | ---help--- |
| 1253 | 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] | 1254 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | something goes wrong. |
| 1256 | |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 1257 | config FB_INTEL_I2C |
| 1258 | bool "DDC/I2C for Intel framebuffer support" |
| 1259 | depends on FB_INTEL |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1260 | select FB_DDC |
Dennis Munsie | 1f6e844 | 2006-06-20 14:55:55 -0400 | [diff] [blame] | 1261 | default y |
| 1262 | help |
| 1263 | Say Y here if you want DDC/I2C support for your on-board Intel graphics. |
| 1264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | config FB_MATROX |
| 1266 | tristate "Matrox acceleration" |
| 1267 | depends on FB && PCI |
| 1268 | select FB_CFB_FILLRECT |
| 1269 | select FB_CFB_COPYAREA |
| 1270 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | select FB_TILEBLITTING |
| 1272 | select FB_MACMODES if PPC_PMAC |
| 1273 | ---help--- |
| 1274 | Say Y here if you have a Matrox Millennium, Matrox Millennium II, |
| 1275 | Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox |
| 1276 | Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video, |
| 1277 | Matrox G400, G450 or G550 card in your box. |
| 1278 | |
| 1279 | To compile this driver as a module, choose M here: the |
| 1280 | module will be called matroxfb. |
| 1281 | |
| 1282 | You can pass several parameters to the driver at boot time or at |
Vicente Jiménez | 90a4815 | 2011-01-08 00:54:26 +0000 | [diff] [blame] | 1283 | module load time. The parameters look like "video=matroxfb:XXX", and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | are described in <file:Documentation/fb/matroxfb.txt>. |
| 1285 | |
| 1286 | config FB_MATROX_MILLENIUM |
| 1287 | bool "Millennium I/II support" |
| 1288 | depends on FB_MATROX |
| 1289 | help |
| 1290 | Say Y here if you have a Matrox Millennium or Matrox Millennium II |
| 1291 | video card. If you select "Advanced lowlevel driver options" below, |
| 1292 | you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp |
| 1293 | packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can |
| 1294 | also use font widths different from 8. |
| 1295 | |
| 1296 | config FB_MATROX_MYSTIQUE |
| 1297 | bool "Mystique support" |
| 1298 | depends on FB_MATROX |
| 1299 | help |
| 1300 | Say Y here if you have a Matrox Mystique or Matrox Mystique 220 |
| 1301 | video card. If you select "Advanced lowlevel driver options" below, |
| 1302 | you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp |
| 1303 | packed pixel and 32 bpp packed pixel. You can also use font widths |
| 1304 | different from 8. |
| 1305 | |
| 1306 | config FB_MATROX_G |
| 1307 | bool "G100/G200/G400/G450/G550 support" |
| 1308 | depends on FB_MATROX |
| 1309 | ---help--- |
| 1310 | Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based |
| 1311 | video card. If you select "Advanced lowlevel driver options", you |
| 1312 | should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed |
| 1313 | pixel and 32 bpp packed pixel. You can also use font widths |
| 1314 | different from 8. |
| 1315 | |
Jean Delvare | ee83126 | 2009-05-12 13:19:41 -0700 | [diff] [blame] | 1316 | If you need support for G400 secondary head, you must say Y to |
| 1317 | "Matrox I2C support" and "G400 second head support" right below. |
| 1318 | G450/G550 secondary head and digital output are supported without |
| 1319 | additional modules. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
| 1321 | The driver starts in monitor mode. You must use the matroxset tool |
| 1322 | (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to |
| 1323 | swap primary and secondary head outputs, or to change output mode. |
| 1324 | Secondary head driver always start in 640x480 resolution and you |
| 1325 | must use fbset to change it. |
| 1326 | |
| 1327 | Do not forget that second head supports only 16 and 32 bpp |
| 1328 | packed pixels, so it is a good idea to compile them into the kernel |
| 1329 | too. You can use only some font widths, as the driver uses generic |
| 1330 | painting procedures (the secondary head does not use acceleration |
| 1331 | engine). |
| 1332 | |
| 1333 | G450/G550 hardware can display TV picture only from secondary CRTC, |
| 1334 | and it performs no scaling, so picture must have 525 or 625 lines. |
| 1335 | |
| 1336 | config FB_MATROX_I2C |
| 1337 | tristate "Matrox I2C support" |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1338 | depends on FB_MATROX |
| 1339 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | ---help--- |
| 1341 | This drivers creates I2C buses which are needed for accessing the |
| 1342 | DDC (I2C) bus present on all Matroxes, an I2C bus which |
| 1343 | interconnects Matrox optional devices, like MGA-TVO on G200 and |
| 1344 | G400, and the secondary head DDC bus, present on G400 only. |
| 1345 | |
| 1346 | You can say Y or M here if you want to experiment with monitor |
| 1347 | detection code. You must say Y or M here if you want to use either |
| 1348 | second head of G400 or MGA-TVO on G200 or G400. |
| 1349 | |
| 1350 | If you compile it as module, it will create a module named |
| 1351 | i2c-matroxfb. |
| 1352 | |
| 1353 | config FB_MATROX_MAVEN |
| 1354 | tristate "G400 second head support" |
| 1355 | depends on FB_MATROX_G && FB_MATROX_I2C |
| 1356 | ---help--- |
| 1357 | WARNING !!! This support does not work with G450 !!! |
| 1358 | |
| 1359 | Say Y or M here if you want to use a secondary head (meaning two |
| 1360 | monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary |
| 1361 | head is not compatible with accelerated XFree 3.3.x SVGA servers - |
| 1362 | secondary head output is blanked while you are in X. With XFree |
| 1363 | 3.9.17 preview you can use both heads if you use SVGA over fbdev or |
| 1364 | the fbdev driver on first head and the fbdev driver on second head. |
| 1365 | |
| 1366 | If you compile it as module, two modules are created, |
| 1367 | matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for |
| 1368 | both G200 and G400, matroxfb_crtc2 is needed only by G400. You must |
| 1369 | also load i2c-matroxfb to get it to run. |
| 1370 | |
| 1371 | The driver starts in monitor mode and you must use the matroxset |
| 1372 | tool (available at |
| 1373 | <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to |
| 1374 | PAL or NTSC or to swap primary and secondary head outputs. |
| 1375 | Secondary head driver also always start in 640x480 resolution, you |
| 1376 | must use fbset to change it. |
| 1377 | |
| 1378 | Also do not forget that second head supports only 16 and 32 bpp |
| 1379 | packed pixels, so it is a good idea to compile them into the kernel |
| 1380 | too. You can use only some font widths, as the driver uses generic |
| 1381 | painting procedures (the secondary head does not use acceleration |
| 1382 | engine). |
| 1383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | config FB_RADEON |
| 1385 | tristate "ATI Radeon display support" |
| 1386 | depends on FB && PCI |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1387 | select FB_BACKLIGHT if FB_RADEON_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | select FB_MODE_HELPERS |
| 1389 | select FB_CFB_FILLRECT |
| 1390 | select FB_CFB_COPYAREA |
| 1391 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | select FB_MACMODES if PPC_OF |
| 1393 | help |
| 1394 | Choose this option if you want to use an ATI Radeon graphics card as |
| 1395 | a framebuffer device. There are both PCI and AGP versions. You |
| 1396 | don't need to choose this to run the Radeon in plain VGA mode. |
| 1397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | There is a product page at |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1399 | http://products.amd.com/en-us/GraphicCardResult.aspx |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1400 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | config FB_RADEON_I2C |
| 1402 | bool "DDC/I2C for ATI Radeon support" |
| 1403 | depends on FB_RADEON |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1404 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | default y |
| 1406 | help |
| 1407 | Say Y here if you want DDC/I2C support for your Radeon board. |
| 1408 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1409 | config FB_RADEON_BACKLIGHT |
| 1410 | bool "Support for backlight control" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1411 | depends on FB_RADEON |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1412 | default y |
| 1413 | help |
| 1414 | Say Y here if you want to control the backlight of your display. |
| 1415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | config FB_RADEON_DEBUG |
| 1417 | bool "Lots of debug output from Radeon driver" |
| 1418 | depends on FB_RADEON |
| 1419 | default n |
| 1420 | help |
| 1421 | 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] | 1422 | of debugging information to provide to the maintainer when |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | something goes wrong. |
| 1424 | |
| 1425 | config FB_ATY128 |
| 1426 | tristate "ATI Rage128 display support" |
| 1427 | depends on FB && PCI |
| 1428 | select FB_CFB_FILLRECT |
| 1429 | select FB_CFB_COPYAREA |
| 1430 | select FB_CFB_IMAGEBLIT |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1431 | select FB_BACKLIGHT if FB_ATY128_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | select FB_MACMODES if PPC_PMAC |
| 1433 | help |
| 1434 | This driver supports graphics boards with the ATI Rage128 chips. |
| 1435 | Say Y if you have such a graphics board and read |
| 1436 | <file:Documentation/fb/aty128fb.txt>. |
| 1437 | |
| 1438 | To compile this driver as a module, choose M here: the |
| 1439 | module will be called aty128fb. |
| 1440 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1441 | config FB_ATY128_BACKLIGHT |
| 1442 | bool "Support for backlight control" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1443 | depends on FB_ATY128 |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1444 | default y |
| 1445 | help |
| 1446 | Say Y here if you want to control the backlight of your display. |
| 1447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | config FB_ATY |
| 1449 | tristate "ATI Mach64 display support" if PCI || ATARI |
Andrew Morton | f2e782e | 2006-04-10 22:55:45 -0700 | [diff] [blame] | 1450 | depends on FB && !SPARC32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | select FB_CFB_FILLRECT |
| 1452 | select FB_CFB_COPYAREA |
| 1453 | select FB_CFB_IMAGEBLIT |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1454 | select FB_BACKLIGHT if FB_ATY_BACKLIGHT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | select FB_MACMODES if PPC |
| 1456 | help |
| 1457 | This driver supports graphics boards with the ATI Mach64 chips. |
| 1458 | Say Y if you have such a graphics board. |
| 1459 | |
| 1460 | To compile this driver as a module, choose M here: the |
| 1461 | module will be called atyfb. |
| 1462 | |
| 1463 | config FB_ATY_CT |
| 1464 | bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support" |
| 1465 | depends on PCI && FB_ATY |
Krzysztof Helt | 8d74c1f | 2007-05-23 13:57:46 -0700 | [diff] [blame] | 1466 | default y if SPARC64 && PCI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | help |
| 1468 | Say Y here to support use of ATI's 64-bit Rage boards (or other |
| 1469 | boards based on the Mach64 CT, VT, GT, and LT chipsets) as a |
| 1470 | framebuffer device. The ATI product support page for these boards |
Justin P. Mattock | 631dd1a | 2010-10-18 11:03:14 +0200 | [diff] [blame] | 1471 | is at <http://support.ati.com/products/pc/mach64/mach64.html>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | |
| 1473 | config FB_ATY_GENERIC_LCD |
| 1474 | bool "Mach64 generic LCD support (EXPERIMENTAL)" |
| 1475 | depends on FB_ATY_CT |
| 1476 | help |
| 1477 | Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility, |
| 1478 | Rage XC, or Rage XL chipset. |
| 1479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | config FB_ATY_GX |
| 1481 | bool "Mach64 GX support" if PCI |
| 1482 | depends on FB_ATY |
| 1483 | default y if ATARI |
| 1484 | help |
| 1485 | Say Y here to support use of the ATI Mach64 Graphics Expression |
| 1486 | board (or other boards based on the Mach64 GX chipset) as a |
| 1487 | framebuffer device. The ATI product support page for these boards |
| 1488 | is at |
| 1489 | <http://support.ati.com/products/pc/mach64/graphics_xpression.html>. |
| 1490 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1491 | config FB_ATY_BACKLIGHT |
| 1492 | bool "Support for backlight control" |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 1493 | depends on FB_ATY |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 1494 | default y |
| 1495 | help |
| 1496 | Say Y here if you want to control the backlight of your display. |
| 1497 | |
Ondrej Zajicek | a268422 | 2007-02-12 00:54:49 -0800 | [diff] [blame] | 1498 | config FB_S3 |
| 1499 | tristate "S3 Trio/Virge support" |
| 1500 | depends on FB && PCI |
| 1501 | select FB_CFB_FILLRECT |
| 1502 | select FB_CFB_COPYAREA |
| 1503 | select FB_CFB_IMAGEBLIT |
| 1504 | select FB_TILEBLITTING |
| 1505 | select FB_SVGALIB |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1506 | select VGASTATE |
Antonino A. Daplas | 8db5166 | 2007-05-08 00:39:14 -0700 | [diff] [blame] | 1507 | select FONT_8x16 if FRAMEBUFFER_CONSOLE |
Ondrej Zajicek | a268422 | 2007-02-12 00:54:49 -0800 | [diff] [blame] | 1508 | ---help--- |
| 1509 | Driver for graphics boards with S3 Trio / S3 Virge chip. |
| 1510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | config FB_SAVAGE |
| 1512 | tristate "S3 Savage support" |
| 1513 | depends on FB && PCI && EXPERIMENTAL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | select FB_MODE_HELPERS |
| 1515 | select FB_CFB_FILLRECT |
| 1516 | select FB_CFB_COPYAREA |
| 1517 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1518 | select VGASTATE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | help |
| 1520 | This driver supports notebooks and computers with S3 Savage PCI/AGP |
| 1521 | chips. |
| 1522 | |
| 1523 | Say Y if you have such a graphics card. |
| 1524 | |
| 1525 | To compile this driver as a module, choose M here; the module |
| 1526 | will be called savagefb. |
| 1527 | |
| 1528 | config FB_SAVAGE_I2C |
| 1529 | bool "Enable DDC2 Support" |
| 1530 | depends on FB_SAVAGE |
James Simmons | 166f60d | 2007-03-06 01:42:02 -0800 | [diff] [blame] | 1531 | select FB_DDC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | help |
| 1533 | This enables I2C support for S3 Savage Chipsets. This is used |
| 1534 | only for getting EDID information from the attached display |
| 1535 | allowing for robust video mode handling and switching. |
| 1536 | |
| 1537 | Because fbdev-2.6 requires that drivers must be able to |
| 1538 | independently validate video mode parameters, you should say Y |
| 1539 | here. |
| 1540 | |
| 1541 | config FB_SAVAGE_ACCEL |
| 1542 | bool "Enable Console Acceleration" |
| 1543 | depends on FB_SAVAGE |
| 1544 | default n |
| 1545 | help |
| 1546 | This option will compile in console acceleration support. If |
| 1547 | the resulting framebuffer console has bothersome glitches, then |
| 1548 | choose N here. |
| 1549 | |
| 1550 | config FB_SIS |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1551 | tristate "SiS/XGI display support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | depends on FB && PCI |
| 1553 | select FB_CFB_FILLRECT |
| 1554 | select FB_CFB_COPYAREA |
| 1555 | select FB_CFB_IMAGEBLIT |
Krzysztof Helt | 4b19828 | 2009-06-18 16:49:21 -0700 | [diff] [blame] | 1556 | select FB_BOOT_VESA_SUPPORT if FB_SIS = y |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | help |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1558 | This is the frame buffer device driver for the SiS 300, 315, 330 |
| 1559 | and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets. |
| 1560 | Specs available at <http://www.sis.com> and <http://www.xgitech.com>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | |
| 1562 | To compile this driver as a module, choose M here; the module |
| 1563 | will be called sisfb. |
| 1564 | |
| 1565 | config FB_SIS_300 |
| 1566 | bool "SiS 300 series support" |
| 1567 | depends on FB_SIS |
| 1568 | help |
| 1569 | Say Y here to support use of the SiS 300/305, 540, 630 and 730. |
| 1570 | |
| 1571 | config FB_SIS_315 |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1572 | bool "SiS 315/330/340 series and XGI support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | depends on FB_SIS |
| 1574 | help |
Thomas Winischhofer | 544393f | 2005-09-09 13:04:45 -0700 | [diff] [blame] | 1575 | Say Y here to support use of the SiS 315, 330 and 340 series |
| 1576 | (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well |
| 1577 | as XGI V3XT, V5, V8 and Z7. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | |
Joseph Chan | 6bde3ed | 2008-10-15 22:03:20 -0700 | [diff] [blame] | 1579 | config FB_VIA |
| 1580 | tristate "VIA UniChrome (Pro) and Chrome9 display support" |
Ben Hutchings | 901b97d | 2010-07-20 00:40:16 +0100 | [diff] [blame] | 1581 | depends on FB && PCI && X86 |
Joseph Chan | 6bde3ed | 2008-10-15 22:03:20 -0700 | [diff] [blame] | 1582 | select FB_CFB_FILLRECT |
| 1583 | select FB_CFB_COPYAREA |
| 1584 | select FB_CFB_IMAGEBLIT |
Joseph Chan | 6bde3ed | 2008-10-15 22:03:20 -0700 | [diff] [blame] | 1585 | select I2C_ALGOBIT |
| 1586 | select I2C |
Jonathan Corbet | 7e0de02 | 2009-12-01 20:39:57 -0700 | [diff] [blame] | 1587 | select GPIOLIB |
Joseph Chan | 6bde3ed | 2008-10-15 22:03:20 -0700 | [diff] [blame] | 1588 | help |
| 1589 | This is the frame buffer device driver for Graphics chips of VIA |
| 1590 | UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/ |
| 1591 | CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896 |
| 1592 | /P4M900,VX800) |
| 1593 | Say Y if you have a VIA UniChrome graphics board. |
| 1594 | |
| 1595 | To compile this driver as a module, choose M here: the |
| 1596 | module will be called viafb. |
Jonathan Corbet | 7e0de02 | 2009-12-01 20:39:57 -0700 | [diff] [blame] | 1597 | |
Florian Tobias Schandinat | 2b78a96 | 2010-04-17 19:44:57 +0000 | [diff] [blame] | 1598 | if FB_VIA |
| 1599 | |
| 1600 | config FB_VIA_DIRECT_PROCFS |
| 1601 | bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)" |
| 1602 | depends on FB_VIA |
| 1603 | default n |
| 1604 | help |
| 1605 | Allow direct hardware access to some output registers via procfs. |
| 1606 | This is dangerous but may provide the only chance to get the |
| 1607 | correct output device configuration. |
| 1608 | Its use is strongly discouraged. |
| 1609 | |
Florian Tobias Schandinat | 2946294 | 2011-04-23 23:52:45 +0000 | [diff] [blame^] | 1610 | config FB_VIA_X_COMPATIBILITY |
| 1611 | bool "X server compatibility" |
| 1612 | depends on FB_VIA |
| 1613 | default n |
| 1614 | help |
| 1615 | This option reduces the functionality (power saving, ...) of the |
| 1616 | framebuffer to avoid negative impact on the OpenChrome X server. |
| 1617 | If you use any X server other than fbdev you should enable this |
| 1618 | otherwise it should be safe to disable it and allow using all |
| 1619 | features. |
| 1620 | |
Florian Tobias Schandinat | 2b78a96 | 2010-04-17 19:44:57 +0000 | [diff] [blame] | 1621 | endif |
| 1622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | config FB_NEOMAGIC |
| 1624 | tristate "NeoMagic display support" |
| 1625 | depends on FB && PCI |
| 1626 | select FB_MODE_HELPERS |
| 1627 | select FB_CFB_FILLRECT |
| 1628 | select FB_CFB_COPYAREA |
| 1629 | select FB_CFB_IMAGEBLIT |
Antonino A. Daplas | b2f594f | 2007-05-08 00:38:38 -0700 | [diff] [blame] | 1630 | select VGASTATE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | help |
| 1632 | This driver supports notebooks with NeoMagic PCI chips. |
| 1633 | Say Y if you have such a graphics card. |
| 1634 | |
| 1635 | To compile this driver as a module, choose M here: the |
| 1636 | module will be called neofb. |
| 1637 | |
| 1638 | config FB_KYRO |
| 1639 | tristate "IMG Kyro support" |
| 1640 | depends on FB && PCI |
| 1641 | select FB_CFB_FILLRECT |
| 1642 | select FB_CFB_COPYAREA |
| 1643 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | help |
| 1645 | Say Y here if you have a STG4000 / Kyro / PowerVR 3 based |
| 1646 | graphics board. |
| 1647 | |
| 1648 | To compile this driver as a module, choose M here: the |
| 1649 | module will be called kyrofb. |
| 1650 | |
| 1651 | config FB_3DFX |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 1652 | tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | depends on FB && PCI |
| 1654 | select FB_CFB_IMAGEBLIT |
| 1655 | select FB_CFB_FILLRECT |
| 1656 | select FB_CFB_COPYAREA |
Krzysztof Helt | feff388 | 2009-04-06 19:01:03 -0700 | [diff] [blame] | 1657 | select FB_MODE_HELPERS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | help |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 1659 | This driver supports graphics boards with the 3Dfx Banshee, |
| 1660 | Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have |
| 1661 | such a graphics board. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | |
| 1663 | To compile this driver as a module, choose M here: the |
| 1664 | module will be called tdfxfb. |
| 1665 | |
| 1666 | config FB_3DFX_ACCEL |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 1667 | bool "3Dfx Acceleration functions (EXPERIMENTAL)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | depends on FB_3DFX && EXPERIMENTAL |
| 1669 | ---help--- |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 1670 | This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer |
| 1671 | device driver with acceleration functions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | |
Krzysztof Helt | feff388 | 2009-04-06 19:01:03 -0700 | [diff] [blame] | 1673 | config FB_3DFX_I2C |
| 1674 | bool "Enable DDC/I2C support" |
| 1675 | depends on FB_3DFX && EXPERIMENTAL |
| 1676 | select FB_DDC |
| 1677 | default y |
| 1678 | help |
| 1679 | Say Y here if you want DDC/I2C support for your 3dfx Voodoo3. |
| 1680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | config FB_VOODOO1 |
| 1682 | tristate "3Dfx Voodoo Graphics (sst1) support" |
| 1683 | depends on FB && PCI |
| 1684 | select FB_CFB_FILLRECT |
| 1685 | select FB_CFB_COPYAREA |
| 1686 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | ---help--- |
| 1688 | Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or |
| 1689 | Voodoo2 (cvg) based graphics card. |
| 1690 | |
| 1691 | To compile this driver as a module, choose M here: the |
| 1692 | module will be called sstfb. |
| 1693 | |
| 1694 | WARNING: Do not use any application that uses the 3D engine |
| 1695 | (namely glide) while using this driver. |
Dirk Hohndel | e403149 | 2007-10-30 13:37:19 -0700 | [diff] [blame] | 1696 | Please read the <file:Documentation/fb/sstfb.txt> for supported |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | options and other important info support. |
| 1698 | |
Ondrej Zajicek | 558b7bd | 2007-05-09 02:35:31 -0700 | [diff] [blame] | 1699 | config FB_VT8623 |
| 1700 | tristate "VIA VT8623 support" |
| 1701 | depends on FB && PCI |
| 1702 | select FB_CFB_FILLRECT |
| 1703 | select FB_CFB_COPYAREA |
| 1704 | select FB_CFB_IMAGEBLIT |
| 1705 | select FB_TILEBLITTING |
| 1706 | select FB_SVGALIB |
| 1707 | select VGASTATE |
| 1708 | select FONT_8x16 if FRAMEBUFFER_CONSOLE |
| 1709 | ---help--- |
| 1710 | Driver for CastleRock integrated graphics core in the |
| 1711 | VIA VT8623 [Apollo CLE266] chipset. |
| 1712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | config FB_TRIDENT |
Krzysztof Helt | 04645fc | 2009-03-31 15:25:48 -0700 | [diff] [blame] | 1714 | tristate "Trident/CyberXXX/CyberBlade support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | depends on FB && PCI |
| 1716 | select FB_CFB_FILLRECT |
| 1717 | select FB_CFB_COPYAREA |
| 1718 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | ---help--- |
Krzysztof Helt | 4edad7f | 2008-10-15 22:03:32 -0700 | [diff] [blame] | 1720 | This is the frame buffer device driver for Trident PCI/AGP chipsets. |
| 1721 | Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D |
| 1722 | and Blade XP. |
| 1723 | There are also integrated versions of these chips called CyberXXXX, |
| 1724 | CyberImage or CyberBlade. These chips are mostly found in laptops |
Krzysztof Helt | ddb53d4 | 2009-03-31 15:25:40 -0700 | [diff] [blame] | 1725 | but also on some motherboards including early VIA EPIA motherboards. |
| 1726 | For more information, read <file:Documentation/fb/tridentfb.txt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
| 1728 | Say Y if you have such a graphics board. |
| 1729 | |
| 1730 | To compile this driver as a module, choose M here: the |
| 1731 | module will be called tridentfb. |
| 1732 | |
Ondrej Zajicek | 681e147 | 2007-05-09 02:35:31 -0700 | [diff] [blame] | 1733 | config FB_ARK |
| 1734 | tristate "ARK 2000PV support" |
| 1735 | depends on FB && PCI |
| 1736 | select FB_CFB_FILLRECT |
| 1737 | select FB_CFB_COPYAREA |
| 1738 | select FB_CFB_IMAGEBLIT |
| 1739 | select FB_TILEBLITTING |
| 1740 | select FB_SVGALIB |
| 1741 | select VGASTATE |
| 1742 | select FONT_8x16 if FRAMEBUFFER_CONSOLE |
| 1743 | ---help--- |
| 1744 | Driver for PCI graphics boards with ARK 2000PV chip |
| 1745 | and ICS 5342 RAMDAC. |
| 1746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | config FB_PM3 |
Krzysztof Helt | f23a06f | 2007-05-10 22:23:25 -0700 | [diff] [blame] | 1748 | tristate "Permedia3 support (EXPERIMENTAL)" |
| 1749 | depends on FB && PCI && EXPERIMENTAL |
| 1750 | select FB_CFB_FILLRECT |
| 1751 | select FB_CFB_COPYAREA |
| 1752 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | help |
| 1754 | This is the frame buffer device driver for the 3DLabs Permedia3 |
| 1755 | chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 & |
| 1756 | similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000 |
| 1757 | and maybe other boards. |
| 1758 | |
Sebastian Siewior | 2ece5f43 | 2008-07-23 21:30:49 -0700 | [diff] [blame] | 1759 | config FB_CARMINE |
| 1760 | tristate "Fujitsu carmine frame buffer support" |
| 1761 | depends on FB && PCI |
| 1762 | select FB_CFB_FILLRECT |
| 1763 | select FB_CFB_COPYAREA |
| 1764 | select FB_CFB_IMAGEBLIT |
| 1765 | help |
| 1766 | This is the frame buffer device driver for the Fujitsu Carmine chip. |
| 1767 | The driver provides two independent frame buffer devices. |
| 1768 | |
| 1769 | choice |
| 1770 | depends on FB_CARMINE |
| 1771 | prompt "DRAM timing" |
| 1772 | default FB_CARMINE_DRAM_EVAL |
| 1773 | |
| 1774 | config FB_CARMINE_DRAM_EVAL |
| 1775 | bool "Eval board timings" |
| 1776 | help |
| 1777 | Use timings which work on the eval card. |
| 1778 | |
| 1779 | config CARMINE_DRAM_CUSTOM |
| 1780 | bool "Custom board timings" |
| 1781 | help |
| 1782 | Use custom board timings. |
| 1783 | endchoice |
| 1784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | config FB_AU1100 |
| 1786 | bool "Au1100 LCD Driver" |
Ralf Baechle | d1709e4 | 2007-07-23 18:43:50 -0700 | [diff] [blame] | 1787 | depends on (FB = y) && MIPS && SOC_AU1100 |
| 1788 | select FB_CFB_FILLRECT |
| 1789 | select FB_CFB_COPYAREA |
| 1790 | select FB_CFB_IMAGEBLIT |
| 1791 | help |
| 1792 | This is the framebuffer driver for the AMD Au1100 SOC. It can drive |
| 1793 | various panels and CRTs by passing in kernel cmd line option |
| 1794 | au1100fb:panel=<name>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | |
Ralf Baechle | f95ec3c | 2006-03-27 01:17:27 -0800 | [diff] [blame] | 1796 | config FB_AU1200 |
| 1797 | bool "Au1200 LCD Driver" |
Geert Uytterhoeven | 833f806 | 2007-03-16 13:38:23 -0800 | [diff] [blame] | 1798 | depends on (FB = y) && MIPS && SOC_AU1200 |
Ralf Baechle | f95ec3c | 2006-03-27 01:17:27 -0800 | [diff] [blame] | 1799 | select FB_CFB_FILLRECT |
| 1800 | select FB_CFB_COPYAREA |
| 1801 | select FB_CFB_IMAGEBLIT |
| 1802 | help |
| 1803 | This is the framebuffer driver for the AMD Au1200 SOC. It can drive |
| 1804 | various panels and CRTs by passing in kernel cmd line option |
| 1805 | au1200fb:panel=<name>. |
| 1806 | |
Alexey Charkov | d6ff7d0 | 2010-11-09 02:42:39 +0300 | [diff] [blame] | 1807 | config FB_VT8500 |
| 1808 | bool "VT8500 LCD Driver" |
| 1809 | depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500 |
| 1810 | select FB_WMT_GE_ROPS |
| 1811 | select FB_SYS_IMAGEBLIT |
| 1812 | help |
| 1813 | This is the framebuffer driver for VIA VT8500 integrated LCD |
| 1814 | controller. |
| 1815 | |
| 1816 | config FB_WM8505 |
| 1817 | bool "WM8505 frame buffer support" |
| 1818 | depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505 |
| 1819 | select FB_WMT_GE_ROPS |
| 1820 | select FB_SYS_IMAGEBLIT |
| 1821 | help |
| 1822 | This is the framebuffer driver for WonderMedia WM8505 |
| 1823 | integrated LCD controller. |
| 1824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | source "drivers/video/geode/Kconfig" |
| 1826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | config FB_HIT |
| 1828 | tristate "HD64461 Frame Buffer support" |
| 1829 | depends on FB && HD64461 |
| 1830 | select FB_CFB_FILLRECT |
| 1831 | select FB_CFB_COPYAREA |
| 1832 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | help |
| 1834 | This is the frame buffer device driver for the Hitachi HD64461 LCD |
| 1835 | frame buffer card. |
| 1836 | |
| 1837 | config FB_PMAG_AA |
| 1838 | bool "PMAG-AA TURBOchannel framebuffer support" |
Maciej W. Rozycki | a935000 | 2005-06-13 19:50:42 +0000 | [diff] [blame] | 1839 | depends on (FB = y) && TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | select FB_CFB_FILLRECT |
| 1841 | select FB_CFB_COPYAREA |
| 1842 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | help |
| 1844 | Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1) |
| 1845 | used mainly in the MIPS-based DECstation series. |
| 1846 | |
| 1847 | config FB_PMAG_BA |
Maciej W. Rozycki | 335dc50c | 2007-02-05 16:28:28 -0800 | [diff] [blame] | 1848 | tristate "PMAG-BA TURBOchannel framebuffer support" |
| 1849 | depends on FB && TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | select FB_CFB_FILLRECT |
| 1851 | select FB_CFB_COPYAREA |
| 1852 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | help |
| 1854 | Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8) |
| 1855 | used mainly in the MIPS-based DECstation series. |
| 1856 | |
| 1857 | config FB_PMAGB_B |
Maciej W. Rozycki | 9084b00 | 2007-02-05 16:28:29 -0800 | [diff] [blame] | 1858 | tristate "PMAGB-B TURBOchannel framebuffer support" |
Maciej W. Rozycki | 28ea28a | 2007-10-16 01:29:28 -0700 | [diff] [blame] | 1859 | depends on FB && TC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | select FB_CFB_FILLRECT |
| 1861 | select FB_CFB_COPYAREA |
| 1862 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | help |
| 1864 | Support for the PMAGB-B TURBOchannel framebuffer card used mainly |
| 1865 | in the MIPS-based DECstation series. The card is currently only |
| 1866 | supported in 1280x1024x8 mode. |
| 1867 | |
| 1868 | config FB_MAXINE |
| 1869 | bool "Maxine (Personal DECstation) onboard framebuffer support" |
Maciej W. Rozycki | a935000 | 2005-06-13 19:50:42 +0000 | [diff] [blame] | 1870 | depends on (FB = y) && MACH_DECSTATION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | select FB_CFB_FILLRECT |
| 1872 | select FB_CFB_COPYAREA |
| 1873 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | help |
| 1875 | Support for the onboard framebuffer (1024x768x8) in the Personal |
| 1876 | DECstation series (Personal DECstation 5000/20, /25, /33, /50, |
| 1877 | Codename "Maxine"). |
| 1878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | config FB_G364 |
Yoichi Yuasa | b38817d | 2005-07-27 11:43:28 -0700 | [diff] [blame] | 1880 | bool "G364 frame buffer support" |
| 1881 | depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | select FB_CFB_FILLRECT |
| 1883 | select FB_CFB_COPYAREA |
| 1884 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | help |
| 1886 | The G364 driver is the framebuffer used in MIPS Magnum 4000 and |
| 1887 | Olivetti M700-10 systems. |
| 1888 | |
| 1889 | config FB_68328 |
| 1890 | bool "Motorola 68328 native frame buffer support" |
Geert Uytterhoeven | 833f806 | 2007-03-16 13:38:23 -0800 | [diff] [blame] | 1891 | depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | select FB_CFB_FILLRECT |
| 1893 | select FB_CFB_COPYAREA |
| 1894 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | help |
| 1896 | Say Y here if you want to support the built-in frame buffer of |
| 1897 | the Motorola 68328 CPU family. |
| 1898 | |
Lennert Buytenhek | 638772c | 2009-02-11 17:25:24 +0800 | [diff] [blame] | 1899 | config FB_PXA168 |
| 1900 | tristate "PXA168/910 LCD framebuffer support" |
| 1901 | depends on FB && (CPU_PXA168 || CPU_PXA910) |
| 1902 | select FB_CFB_FILLRECT |
| 1903 | select FB_CFB_COPYAREA |
| 1904 | select FB_CFB_IMAGEBLIT |
| 1905 | ---help--- |
| 1906 | Frame buffer driver for the built-in LCD controller in the Marvell |
| 1907 | MMP processor. |
| 1908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | config FB_PXA |
| 1910 | tristate "PXA LCD framebuffer support" |
| 1911 | depends on FB && ARCH_PXA |
| 1912 | select FB_CFB_FILLRECT |
| 1913 | select FB_CFB_COPYAREA |
| 1914 | select FB_CFB_IMAGEBLIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | ---help--- |
| 1916 | Frame buffer driver for the built-in LCD controller in the Intel |
| 1917 | PXA2x0 processor. |
| 1918 | |
| 1919 | This driver is also available as a module ( = code which can be |
| 1920 | inserted and removed from the running kernel whenever you want). The |
YOSHIFUJI Hideaki | 74b4f04 | 2006-01-09 20:53:46 -0800 | [diff] [blame] | 1921 | 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] | 1922 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | |
| 1924 | If unsure, say N. |
| 1925 | |
Eric Miao | 198fc10 | 2008-12-23 17:49:43 +0800 | [diff] [blame] | 1926 | config FB_PXA_OVERLAY |
| 1927 | bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer" |
| 1928 | default n |
| 1929 | depends on FB_PXA && (PXA27x || PXA3xx) |
| 1930 | |
Eric Miao | 3c42a44 | 2008-04-30 00:52:26 -0700 | [diff] [blame] | 1931 | config FB_PXA_SMARTPANEL |
| 1932 | bool "PXA Smartpanel LCD support" |
Eric Miao | 7f1133c | 2008-04-30 00:52:27 -0700 | [diff] [blame] | 1933 | default n |
Eric Miao | 3c42a44 | 2008-04-30 00:52:26 -0700 | [diff] [blame] | 1934 | depends on FB_PXA |
| 1935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | config FB_PXA_PARAMETERS |
| 1937 | bool "PXA LCD command line parameters" |
| 1938 | default n |
| 1939 | depends on FB_PXA |
| 1940 | ---help--- |
| 1941 | Enable the use of kernel command line or module parameters |
| 1942 | to configure the physical properties of the LCD panel when |
| 1943 | using the PXA LCD driver. |
| 1944 | |
| 1945 | This option allows you to override the panel parameters |
| 1946 | supplied by the platform in order to support multiple |
| 1947 | different models of flatpanel. If you will only be using a |
| 1948 | single model of flatpanel then you can safely leave this |
| 1949 | option disabled. |
| 1950 | |
| 1951 | <file:Documentation/fb/pxafb.txt> describes the available parameters. |
| 1952 | |
Daniel Mack | 364dbdf | 2010-11-04 14:44:00 -0400 | [diff] [blame] | 1953 | config PXA3XX_GCU |
| 1954 | tristate "PXA3xx 2D graphics accelerator driver" |
| 1955 | depends on FB_PXA |
| 1956 | help |
| 1957 | Kernelspace driver for the 2D graphics controller unit (GCU) |
| 1958 | found on PXA3xx processors. There is a counterpart driver in the |
| 1959 | DirectFB suite, see http://www.directfb.org/ |
| 1960 | |
| 1961 | If you compile this as a module, it will be called pxa3xx_gcu. |
| 1962 | |
Mike Rapoport | 22caf04 | 2006-07-14 00:24:34 -0700 | [diff] [blame] | 1963 | config FB_MBX |
| 1964 | tristate "2700G LCD framebuffer support" |
| 1965 | depends on FB && ARCH_PXA |
| 1966 | select FB_CFB_FILLRECT |
| 1967 | select FB_CFB_COPYAREA |
| 1968 | select FB_CFB_IMAGEBLIT |
| 1969 | ---help--- |
| 1970 | Framebuffer driver for the Intel 2700G (Marathon) Graphics |
| 1971 | Accelerator |
| 1972 | |
| 1973 | config FB_MBX_DEBUG |
| 1974 | bool "Enable debugging info via debugfs" |
| 1975 | depends on FB_MBX && DEBUG_FS |
| 1976 | default n |
| 1977 | ---help--- |
| 1978 | Enable this if you want debugging information using the debug |
| 1979 | filesystem (debugfs) |
| 1980 | |
| 1981 | If unsure, say N. |
| 1982 | |
York Sun | 9b53a9e | 2008-04-28 02:15:34 -0700 | [diff] [blame] | 1983 | config FB_FSL_DIU |
| 1984 | tristate "Freescale DIU framebuffer support" |
| 1985 | depends on FB && FSL_SOC |
Anatolij Gustschin | 8b856f0 | 2010-07-23 04:00:39 +0000 | [diff] [blame] | 1986 | select FB_MODE_HELPERS |
York Sun | 9b53a9e | 2008-04-28 02:15:34 -0700 | [diff] [blame] | 1987 | select FB_CFB_FILLRECT |
| 1988 | select FB_CFB_COPYAREA |
| 1989 | select FB_CFB_IMAGEBLIT |
| 1990 | select PPC_LIB_RHEAP |
| 1991 | ---help--- |
| 1992 | Framebuffer driver for the Freescale SoC DIU |
| 1993 | |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1994 | config FB_W100 |
| 1995 | tristate "W100 frame buffer support" |
Philipp Zabel | e5dd3cb | 2008-07-04 09:59:52 -0700 | [diff] [blame] | 1996 | depends on FB && ARCH_PXA |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 1997 | select FB_CFB_FILLRECT |
| 1998 | select FB_CFB_COPYAREA |
| 1999 | select FB_CFB_IMAGEBLIT |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 2000 | ---help--- |
| 2001 | Frame buffer driver for the w100 as found on the Sharp SL-Cxx series. |
Philipp Zabel | e5dd3cb | 2008-07-04 09:59:52 -0700 | [diff] [blame] | 2002 | It can also drive the w3220 chip found on iPAQ hx4700. |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 2003 | |
| 2004 | This driver is also available as a module ( = code which can be |
| 2005 | inserted and removed from the running kernel whenever you want). The |
YOSHIFUJI Hideaki | 74b4f04 | 2006-01-09 20:53:46 -0800 | [diff] [blame] | 2006 | 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] | 2007 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Randy Dunlap | ecc41d5 | 2005-11-07 01:00:29 -0800 | [diff] [blame] | 2008 | |
| 2009 | If unsure, say N. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | |
Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 2011 | config FB_SH_MOBILE_LCDC |
| 2012 | tristate "SuperH Mobile LCDC framebuffer support" |
Magnus Damm | 7278a22 | 2010-03-10 11:33:10 +0000 | [diff] [blame] | 2013 | depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK |
Magnus Damm | 2540c11 | 2008-12-17 17:29:49 +0900 | [diff] [blame] | 2014 | select FB_SYS_FILLRECT |
| 2015 | select FB_SYS_COPYAREA |
| 2016 | select FB_SYS_IMAGEBLIT |
| 2017 | select FB_SYS_FOPS |
Magnus Damm | 8564557 | 2008-12-19 15:34:41 +0900 | [diff] [blame] | 2018 | select FB_DEFERRED_IO |
Guennadi Liakhovetski | 9fd04fe | 2010-05-23 14:00:43 +0000 | [diff] [blame] | 2019 | select SH_MIPI_DSI if SH_LCD_MIPI_DSI |
Magnus Damm | cfb4f5d | 2008-07-23 21:31:24 -0700 | [diff] [blame] | 2020 | ---help--- |
| 2021 | Frame buffer driver for the on-chip SH-Mobile LCD controller. |
| 2022 | |
Guennadi Liakhovetski | 6011bde | 2010-07-21 10:13:21 +0000 | [diff] [blame] | 2023 | config FB_SH_MOBILE_HDMI |
| 2024 | tristate "SuperH Mobile HDMI controller support" |
| 2025 | depends on FB_SH_MOBILE_LCDC |
| 2026 | select FB_MODE_HELPERS |
Guennadi Liakhovetski | 630f2d4 | 2010-10-15 08:58:00 +0200 | [diff] [blame] | 2027 | select SOUND |
| 2028 | select SND |
Kuninori Morimoto | 3056c70 | 2010-09-09 16:30:18 +0900 | [diff] [blame] | 2029 | select SND_SOC |
Guennadi Liakhovetski | 6011bde | 2010-07-21 10:13:21 +0000 | [diff] [blame] | 2030 | ---help--- |
| 2031 | Driver for the on-chip SH-Mobile HDMI controller. |
| 2032 | |
Dmitry Baryshkov | b53cde3 | 2008-10-15 22:03:55 -0700 | [diff] [blame] | 2033 | config FB_TMIO |
| 2034 | tristate "Toshiba Mobile IO FrameBuffer support" |
| 2035 | depends on FB && MFD_CORE |
| 2036 | select FB_CFB_FILLRECT |
| 2037 | select FB_CFB_COPYAREA |
| 2038 | select FB_CFB_IMAGEBLIT |
| 2039 | ---help--- |
| 2040 | Frame buffer driver for the Toshiba Mobile IO integrated as found |
| 2041 | on the Sharp SL-6000 series |
| 2042 | |
| 2043 | This driver is also available as a module ( = code which can be |
| 2044 | inserted and removed from the running kernel whenever you want). The |
| 2045 | module will be called tmiofb. If you want to compile it as a module, |
| 2046 | say M here and read <file:Documentation/kbuild/modules.txt>. |
| 2047 | |
| 2048 | If unsure, say N. |
| 2049 | |
| 2050 | config FB_TMIO_ACCELL |
| 2051 | bool "tmiofb acceleration" |
| 2052 | depends on FB_TMIO |
| 2053 | default y |
| 2054 | |
Ben Dooks | ec549a0 | 2009-03-31 15:25:39 -0700 | [diff] [blame] | 2055 | config FB_S3C |
| 2056 | tristate "Samsung S3C framebuffer support" |
Ben Dooks | 45649fd | 2010-08-10 18:02:30 -0700 | [diff] [blame] | 2057 | depends on FB && S3C_DEV_FB |
Ben Dooks | ec549a0 | 2009-03-31 15:25:39 -0700 | [diff] [blame] | 2058 | select FB_CFB_FILLRECT |
| 2059 | select FB_CFB_COPYAREA |
| 2060 | select FB_CFB_IMAGEBLIT |
| 2061 | ---help--- |
| 2062 | Frame buffer driver for the built-in FB controller in the Samsung |
| 2063 | SoC line from the S3C2443 onwards, including the S3C2416, S3C2450, |
| 2064 | and the S3C64XX series such as the S3C6400 and S3C6410. |
| 2065 | |
| 2066 | These chips all have the same basic framebuffer design with the |
| 2067 | actual capabilities depending on the chip. For instance the S3C6400 |
| 2068 | and S3C6410 support 4 hardware windows whereas the S3C24XX series |
| 2069 | currently only have two. |
| 2070 | |
| 2071 | Currently the support is only for the S3C6400 and S3C6410 SoCs. |
| 2072 | |
| 2073 | config FB_S3C_DEBUG_REGWRITE |
| 2074 | bool "Debug register writes" |
| 2075 | depends on FB_S3C |
| 2076 | ---help--- |
| 2077 | Show all register writes via printk(KERN_DEBUG) |
| 2078 | |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 2079 | config FB_S3C2410 |
| 2080 | tristate "S3C2410 LCD framebuffer support" |
| 2081 | depends on FB && ARCH_S3C2410 |
| 2082 | select FB_CFB_FILLRECT |
| 2083 | select FB_CFB_COPYAREA |
| 2084 | select FB_CFB_IMAGEBLIT |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 2085 | ---help--- |
| 2086 | Frame buffer driver for the built-in LCD controller in the Samsung |
| 2087 | S3C2410 processor. |
| 2088 | |
| 2089 | This driver is also available as a module ( = code which can be |
| 2090 | inserted and removed from the running kernel whenever you want). The |
| 2091 | 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] | 2092 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Arnaud Patard | 20fd576 | 2005-09-09 13:10:07 -0700 | [diff] [blame] | 2093 | |
| 2094 | If unsure, say N. |
| 2095 | config FB_S3C2410_DEBUG |
| 2096 | bool "S3C2410 lcd debug messages" |
| 2097 | depends on FB_S3C2410 |
| 2098 | help |
| 2099 | Turn on debugging messages. Note that you can set/unset at run time |
| 2100 | through sysfs |
| 2101 | |
Wang Qiang | 8661970 | 2010-03-10 15:21:47 -0800 | [diff] [blame] | 2102 | config FB_NUC900 |
| 2103 | bool "NUC900 LCD framebuffer support" |
| 2104 | depends on FB && ARCH_W90X900 |
| 2105 | select FB_CFB_FILLRECT |
| 2106 | select FB_CFB_COPYAREA |
| 2107 | select FB_CFB_IMAGEBLIT |
| 2108 | ---help--- |
| 2109 | Frame buffer driver for the built-in LCD controller in the Nuvoton |
| 2110 | NUC900 processor |
| 2111 | |
| 2112 | config GPM1040A0_320X240 |
| 2113 | bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD" |
| 2114 | depends on FB_NUC900 |
| 2115 | |
| 2116 | config FB_NUC900_DEBUG |
| 2117 | bool "NUC900 lcd debug messages" |
| 2118 | depends on FB_NUC900 |
| 2119 | help |
| 2120 | Turn on debugging messages. Note that you can set/unset at run time |
| 2121 | through sysfs |
| 2122 | |
Ben Dooks | 5fc404e | 2007-02-20 13:58:21 -0800 | [diff] [blame] | 2123 | config FB_SM501 |
| 2124 | tristate "Silicon Motion SM501 framebuffer support" |
| 2125 | depends on FB && MFD_SM501 |
| 2126 | select FB_CFB_FILLRECT |
| 2127 | select FB_CFB_COPYAREA |
| 2128 | select FB_CFB_IMAGEBLIT |
| 2129 | ---help--- |
| 2130 | Frame buffer driver for the CRT and LCD controllers in the Silicon |
| 2131 | Motion SM501. |
| 2132 | |
| 2133 | This driver is also available as a module ( = code which can be |
| 2134 | inserted and removed from the running kernel whenever you want). The |
| 2135 | module will be called sm501fb. If you want to compile it as a module, |
Dirk Hohndel | e403149 | 2007-10-30 13:37:19 -0700 | [diff] [blame] | 2136 | say M here and read <file:Documentation/kbuild/modules.txt>. |
Ben Dooks | 5fc404e | 2007-02-20 13:58:21 -0800 | [diff] [blame] | 2137 | |
| 2138 | If unsure, say N. |
| 2139 | |
Paul Mundt | 96f8d864 | 2010-11-16 14:00:24 +0900 | [diff] [blame] | 2140 | config FB_UDL |
| 2141 | tristate "Displaylink USB Framebuffer support" |
| 2142 | depends on FB && USB |
| 2143 | select FB_MODE_HELPERS |
| 2144 | select FB_SYS_FILLRECT |
| 2145 | select FB_SYS_COPYAREA |
| 2146 | select FB_SYS_IMAGEBLIT |
| 2147 | select FB_SYS_FOPS |
| 2148 | select FB_DEFERRED_IO |
| 2149 | ---help--- |
| 2150 | This is a kernel framebuffer driver for DisplayLink USB devices. |
| 2151 | Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and |
| 2152 | mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices. |
| 2153 | To compile as a module, choose M here: the module name is udlfb. |
Ben Dooks | 5fc404e | 2007-02-20 13:58:21 -0800 | [diff] [blame] | 2154 | |
Vitaly Wool | 36c9366 | 2006-07-03 00:24:19 -0700 | [diff] [blame] | 2155 | config FB_PNX4008_DUM |
| 2156 | tristate "Display Update Module support on Philips PNX4008 board" |
| 2157 | depends on FB && ARCH_PNX4008 |
| 2158 | ---help--- |
| 2159 | Say Y here to enable support for PNX4008 Display Update Module (DUM) |
| 2160 | |
| 2161 | config FB_PNX4008_DUM_RGB |
| 2162 | tristate "RGB Framebuffer support on Philips PNX4008 board" |
| 2163 | depends on FB_PNX4008_DUM |
| 2164 | select FB_CFB_FILLRECT |
| 2165 | select FB_CFB_COPYAREA |
| 2166 | select FB_CFB_IMAGEBLIT |
| 2167 | ---help--- |
| 2168 | Say Y here to enable support for PNX4008 RGB Framebuffer |
| 2169 | |
Paul Mackerras | a3d8998 | 2006-12-10 02:20:42 -0800 | [diff] [blame] | 2170 | config FB_IBM_GXT4500 |
| 2171 | tristate "Framebuffer support for IBM GXT4500P adaptor" |
Randy Dunlap | 0058f47 | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 2172 | depends on FB && PPC |
Paul Mackerras | a3d8998 | 2006-12-10 02:20:42 -0800 | [diff] [blame] | 2173 | select FB_CFB_FILLRECT |
| 2174 | select FB_CFB_COPYAREA |
| 2175 | select FB_CFB_IMAGEBLIT |
| 2176 | ---help--- |
| 2177 | Say Y here to enable support for the IBM GXT4500P display |
| 2178 | adaptor, found on some IBM System P (pSeries) machines. |
| 2179 | |
Geert Uytterhoeven | 310d8c1 | 2007-02-12 00:55:23 -0800 | [diff] [blame] | 2180 | config FB_PS3 |
Geert Uytterhoeven | 9e6b99b | 2007-06-16 08:05:38 +1000 | [diff] [blame] | 2181 | tristate "PS3 GPU framebuffer driver" |
| 2182 | depends on FB && PS3_PS3AV |
Geert Uytterhoeven | 92c4579 | 2007-05-23 13:57:50 -0700 | [diff] [blame] | 2183 | select FB_SYS_FILLRECT |
| 2184 | select FB_SYS_COPYAREA |
| 2185 | select FB_SYS_IMAGEBLIT |
| 2186 | select FB_SYS_FOPS |
Geert Uytterhoeven | 23e9c94 | 2007-07-21 04:37:49 -0700 | [diff] [blame] | 2187 | select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE |
Geert Uytterhoeven | 310d8c1 | 2007-02-12 00:55:23 -0800 | [diff] [blame] | 2188 | ---help--- |
| 2189 | Include support for the virtual frame buffer in the PS3 platform. |
| 2190 | |
| 2191 | config FB_PS3_DEFAULT_SIZE_M |
| 2192 | int "PS3 default frame buffer size (in MiB)" |
| 2193 | depends on FB_PS3 |
Geert Uytterhoeven | 50b2529 | 2007-07-21 04:37:50 -0700 | [diff] [blame] | 2194 | default 9 |
Geert Uytterhoeven | 310d8c1 | 2007-02-12 00:55:23 -0800 | [diff] [blame] | 2195 | ---help--- |
| 2196 | This is the default size (in MiB) of the virtual frame buffer in |
| 2197 | the PS3. |
| 2198 | The default value can be overridden on the kernel command line |
| 2199 | using the "ps3fb" option (e.g. "ps3fb=9M"); |
| 2200 | |
Andrei Konovalov | 147394c | 2007-05-08 00:40:18 -0700 | [diff] [blame] | 2201 | config FB_XILINX |
| 2202 | tristate "Xilinx frame buffer support" |
Michal Simek | 6fa612b | 2009-05-11 15:49:12 +0200 | [diff] [blame] | 2203 | depends on FB && (XILINX_VIRTEX || MICROBLAZE) |
Andrei Konovalov | 147394c | 2007-05-08 00:40:18 -0700 | [diff] [blame] | 2204 | select FB_CFB_FILLRECT |
| 2205 | select FB_CFB_COPYAREA |
| 2206 | select FB_CFB_IMAGEBLIT |
| 2207 | ---help--- |
| 2208 | Include support for the Xilinx ML300/ML403 reference design |
| 2209 | framebuffer. ML300 carries a 640*480 LCD display on the board, |
| 2210 | ML403 uses a standard DB15 VGA connector. |
| 2211 | |
Yoichi Yuasa | 5abe3b4 | 2008-07-23 21:31:40 -0700 | [diff] [blame] | 2212 | config FB_COBALT |
| 2213 | tristate "Cobalt server LCD frame buffer support" |
| 2214 | depends on FB && MIPS_COBALT |
| 2215 | |
Nobuhiro Iwamatsu | 4a25e41 | 2008-07-23 21:31:46 -0700 | [diff] [blame] | 2216 | config FB_SH7760 |
Nobuhiro Iwamatsu | 5c72f30 | 2008-11-21 14:35:29 +0900 | [diff] [blame] | 2217 | bool "SH7760/SH7763/SH7720/SH7721 LCDC support" |
| 2218 | depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ |
| 2219 | || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721) |
| 2220 | select FB_CFB_FILLRECT |
| 2221 | select FB_CFB_COPYAREA |
| 2222 | select FB_CFB_IMAGEBLIT |
| 2223 | ---help--- |
| 2224 | Support for the SH7760/SH7763/SH7720/SH7721 integrated |
| 2225 | (D)STN/TFT LCD Controller. |
| 2226 | Supports display resolutions up to 1024x1024 pixel, grayscale and |
| 2227 | color operation, with depths ranging from 1 bpp to 8 bpp monochrome |
| 2228 | and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for |
| 2229 | panels <= 320 pixel horizontal resolution. |
Nobuhiro Iwamatsu | 4a25e41 | 2008-07-23 21:31:46 -0700 | [diff] [blame] | 2230 | |
Sudhakar Rajashekhara | 4ed824d | 2009-09-22 16:47:06 -0700 | [diff] [blame] | 2231 | config FB_DA8XX |
| 2232 | tristate "DA8xx/OMAP-L1xx Framebuffer support" |
| 2233 | depends on FB && ARCH_DAVINCI_DA8XX |
| 2234 | select FB_CFB_FILLRECT |
| 2235 | select FB_CFB_COPYAREA |
| 2236 | select FB_CFB_IMAGEBLIT |
| 2237 | ---help--- |
| 2238 | This is the frame buffer device driver for the TI LCD controller |
| 2239 | found on DA8xx/OMAP-L1xx SoCs. |
| 2240 | If unsure, say N. |
| 2241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | config FB_VIRTUAL |
| 2243 | tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)" |
| 2244 | depends on FB |
Antonino A. Daplas | 87b4884 | 2007-05-08 00:39:01 -0700 | [diff] [blame] | 2245 | select FB_SYS_FILLRECT |
| 2246 | select FB_SYS_COPYAREA |
| 2247 | select FB_SYS_IMAGEBLIT |
Antonino A. Daplas | 52102c0 | 2007-05-08 00:39:07 -0700 | [diff] [blame] | 2248 | select FB_SYS_FOPS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | ---help--- |
| 2250 | This is a `virtual' frame buffer device. It operates on a chunk of |
| 2251 | unswappable kernel memory instead of on the memory of a graphics |
| 2252 | board. This means you cannot see any output sent to this frame |
| 2253 | buffer device, while it does consume precious memory. The main use |
| 2254 | of this frame buffer device is testing and debugging the frame |
| 2255 | buffer subsystem. Do NOT enable it for normal systems! To protect |
| 2256 | the innocent, it has to be enabled explicitly at boot time using the |
| 2257 | kernel option `video=vfb:'. |
| 2258 | |
| 2259 | To compile this driver as a module, choose M here: the |
Mike Frysinger | 66cf751 | 2006-10-03 01:14:41 -0700 | [diff] [blame] | 2260 | module will be called vfb. In order to load it, you must use |
| 2261 | the vfb_enable=1 option. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | |
| 2263 | If unsure, say N. |
James Simmons | e0e34ef | 2007-02-10 14:15:43 +0000 | [diff] [blame] | 2264 | |
Markus Armbruster | 4ee36dc | 2008-04-02 10:54:07 -0700 | [diff] [blame] | 2265 | config XEN_FBDEV_FRONTEND |
| 2266 | tristate "Xen virtual frame buffer support" |
| 2267 | depends on FB && XEN |
| 2268 | select FB_SYS_FILLRECT |
| 2269 | select FB_SYS_COPYAREA |
| 2270 | select FB_SYS_IMAGEBLIT |
| 2271 | select FB_SYS_FOPS |
| 2272 | select FB_DEFERRED_IO |
Konrad Rzeszutek Wilk | ba69ea4 | 2009-10-08 13:23:08 -0400 | [diff] [blame] | 2273 | select XEN_XENBUS_FRONTEND |
Markus Armbruster | 4ee36dc | 2008-04-02 10:54:07 -0700 | [diff] [blame] | 2274 | default y |
| 2275 | help |
| 2276 | This driver implements the front-end of the Xen virtual |
| 2277 | frame buffer driver. It communicates with a back-end |
| 2278 | in another domain. |
| 2279 | |
Jaya Kumar | e935508 | 2008-08-19 11:17:55 +0100 | [diff] [blame] | 2280 | config FB_METRONOME |
| 2281 | tristate "E-Ink Metronome/8track controller support" |
| 2282 | depends on FB |
| 2283 | select FB_SYS_FILLRECT |
| 2284 | select FB_SYS_COPYAREA |
| 2285 | select FB_SYS_IMAGEBLIT |
| 2286 | select FB_SYS_FOPS |
| 2287 | select FB_DEFERRED_IO |
| 2288 | help |
| 2289 | This driver implements support for the E-Ink Metronome |
| 2290 | controller. The pre-release name for this device was 8track |
| 2291 | and could also have been called by some vendors as PVI-nnnn. |
| 2292 | |
Anatolij Gustschin | 17a1217 | 2008-11-06 12:53:29 -0800 | [diff] [blame] | 2293 | config FB_MB862XX |
| 2294 | tristate "Fujitsu MB862xx GDC support" |
| 2295 | depends on FB |
| 2296 | select FB_CFB_FILLRECT |
| 2297 | select FB_CFB_COPYAREA |
| 2298 | select FB_CFB_IMAGEBLIT |
| 2299 | ---help--- |
| 2300 | Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers. |
| 2301 | |
| 2302 | config FB_MB862XX_PCI_GDC |
| 2303 | bool "Carmine/Coral-P(A) GDC" |
| 2304 | depends on PCI && FB_MB862XX |
| 2305 | ---help--- |
| 2306 | This enables framebuffer support for Fujitsu Carmine/Coral-P(A) |
| 2307 | PCI graphics controller devices. |
| 2308 | |
| 2309 | config FB_MB862XX_LIME |
| 2310 | bool "Lime GDC" |
| 2311 | depends on FB_MB862XX |
| 2312 | depends on OF && !FB_MB862XX_PCI_GDC |
Julian Calaby | 336e747 | 2009-06-16 15:34:29 -0700 | [diff] [blame] | 2313 | depends on PPC |
Anatolij Gustschin | 17a1217 | 2008-11-06 12:53:29 -0800 | [diff] [blame] | 2314 | select FB_FOREIGN_ENDIAN |
| 2315 | select FB_LITTLE_ENDIAN |
| 2316 | ---help--- |
| 2317 | Framebuffer support for Fujitsu Lime GDC on host CPU bus. |
| 2318 | |
Ryan Mallon | 88017bda | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 2319 | config FB_EP93XX |
| 2320 | tristate "EP93XX frame buffer support" |
| 2321 | depends on FB && ARCH_EP93XX |
| 2322 | select FB_CFB_FILLRECT |
| 2323 | select FB_CFB_COPYAREA |
| 2324 | select FB_CFB_IMAGEBLIT |
| 2325 | ---help--- |
| 2326 | Framebuffer driver for the Cirrus Logic EP93XX series of processors. |
| 2327 | This driver is also available as a module. The module will be called |
| 2328 | ep93xx-fb. |
| 2329 | |
Anatolij Gustschin | 17a1217 | 2008-11-06 12:53:29 -0800 | [diff] [blame] | 2330 | config FB_PRE_INIT_FB |
| 2331 | bool "Don't reinitialize, use bootloader's GDC/Display configuration" |
Guennadi Liakhovetski | 93f40e6 | 2009-11-11 14:26:47 -0800 | [diff] [blame] | 2332 | depends on FB && FB_MB862XX_LIME |
Anatolij Gustschin | 17a1217 | 2008-11-06 12:53:29 -0800 | [diff] [blame] | 2333 | ---help--- |
| 2334 | Select this option if display contents should be inherited as set by |
| 2335 | the bootloader. |
| 2336 | |
Pavel Machek | d480ace | 2009-09-22 16:47:03 -0700 | [diff] [blame] | 2337 | config FB_MSM |
Pavel Machek | 4e00dc7 | 2009-12-08 11:10:28 -0800 | [diff] [blame] | 2338 | tristate "MSM Framebuffer support" |
Pavel Machek | d480ace | 2009-09-22 16:47:03 -0700 | [diff] [blame] | 2339 | depends on FB && ARCH_MSM |
| 2340 | select FB_CFB_FILLRECT |
| 2341 | select FB_CFB_COPYAREA |
| 2342 | select FB_CFB_IMAGEBLIT |
Pavel Machek | d480ace | 2009-09-22 16:47:03 -0700 | [diff] [blame] | 2343 | |
Guennadi Liakhovetski | 86528da | 2009-01-21 10:32:34 -0700 | [diff] [blame] | 2344 | config FB_MX3 |
Guennadi Liakhovetski | 6e1588cb | 2009-02-26 21:34:28 +0100 | [diff] [blame] | 2345 | tristate "MX3 Framebuffer support" |
| 2346 | depends on FB && MX3_IPU |
| 2347 | select FB_CFB_FILLRECT |
| 2348 | select FB_CFB_COPYAREA |
| 2349 | select FB_CFB_IMAGEBLIT |
| 2350 | default y |
| 2351 | help |
| 2352 | This is a framebuffer device for the i.MX31 LCD Controller. So |
| 2353 | far only synchronous displays are supported. If you plan to use |
| 2354 | an LCD display with your i.MX31 system, say Y here. |
Guennadi Liakhovetski | 86528da | 2009-01-21 10:32:34 -0700 | [diff] [blame] | 2355 | |
Jaya Kumar | 0d4ff4d | 2009-01-01 17:49:19 +0100 | [diff] [blame] | 2356 | config FB_BROADSHEET |
| 2357 | tristate "E-Ink Broadsheet/Epson S1D13521 controller support" |
| 2358 | depends on FB |
| 2359 | select FB_SYS_FILLRECT |
| 2360 | select FB_SYS_COPYAREA |
| 2361 | select FB_SYS_IMAGEBLIT |
| 2362 | select FB_SYS_FOPS |
| 2363 | select FB_DEFERRED_IO |
| 2364 | help |
| 2365 | This driver implements support for the E-Ink Broadsheet |
| 2366 | controller. The release name for this device was Epson S1D13521 |
| 2367 | and could also have been called by other names when coupled with |
| 2368 | a bridge adapter. |
| 2369 | |
Lars-Peter Clausen | 7a92d54 | 2010-07-17 11:14:34 +0000 | [diff] [blame] | 2370 | config FB_JZ4740 |
| 2371 | tristate "JZ4740 LCD framebuffer support" |
| 2372 | depends on FB && MACH_JZ4740 |
| 2373 | select FB_SYS_FILLRECT |
| 2374 | select FB_SYS_COPYAREA |
| 2375 | select FB_SYS_IMAGEBLIT |
| 2376 | help |
| 2377 | Framebuffer support for the JZ4740 SoC. |
| 2378 | |
Randy Dunlap | f08f389 | 2007-10-29 14:37:16 -0700 | [diff] [blame] | 2379 | source "drivers/video/omap/Kconfig" |
Tomi Valkeinen | afedec1 | 2009-08-07 12:01:55 +0300 | [diff] [blame] | 2380 | source "drivers/video/omap2/Kconfig" |
Randy Dunlap | 0058f47 | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 2381 | |
Randy Dunlap | 179b025 | 2007-10-16 01:29:39 -0700 | [diff] [blame] | 2382 | source "drivers/video/backlight/Kconfig" |
| 2383 | source "drivers/video/display/Kconfig" |
| 2384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | if VT |
| 2386 | source "drivers/video/console/Kconfig" |
| 2387 | endif |
| 2388 | |
| 2389 | if FB || SGI_NEWPORT_CONSOLE |
| 2390 | source "drivers/video/logo/Kconfig" |
| 2391 | endif |
| 2392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | endmenu |