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