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