11da177e4SLinus Torvalds# 21da177e4SLinus Torvalds# Video configuration 31da177e4SLinus Torvalds# 41da177e4SLinus Torvalds 51da177e4SLinus Torvaldsmenu "Graphics support" 61da177e4SLinus Torvalds 71da177e4SLinus Torvaldsconfig FB 81da177e4SLinus Torvalds tristate "Support for frame buffer devices" 91da177e4SLinus Torvalds ---help--- 101da177e4SLinus Torvalds The frame buffer device provides an abstraction for the graphics 111da177e4SLinus Torvalds hardware. It represents the frame buffer of some video hardware and 121da177e4SLinus Torvalds allows application software to access the graphics hardware through 131da177e4SLinus Torvalds a well-defined interface, so the software doesn't need to know 141da177e4SLinus Torvalds anything about the low-level (hardware register) stuff. 151da177e4SLinus Torvalds 161da177e4SLinus Torvalds Frame buffer devices work identically across the different 171da177e4SLinus Torvalds architectures supported by Linux and make the implementation of 181da177e4SLinus Torvalds application programs easier and more portable; at this point, an X 191da177e4SLinus Torvalds server exists which uses the frame buffer device exclusively. 201da177e4SLinus Torvalds On several non-X86 architectures, the frame buffer device is the 211da177e4SLinus Torvalds only way to use the graphics hardware. 221da177e4SLinus Torvalds 231da177e4SLinus Torvalds The device is accessed through special device nodes, usually located 241da177e4SLinus Torvalds in the /dev directory, i.e. /dev/fb*. 251da177e4SLinus Torvalds 261da177e4SLinus Torvalds You need an utility program called fbset to make full use of frame 271da177e4SLinus Torvalds buffer devices. Please read <file:Documentation/fb/framebuffer.txt> 281da177e4SLinus Torvalds and the Framebuffer-HOWTO at 291da177e4SLinus Torvalds <http://www.tahallah.demon.co.uk/programming/prog.html> for more 301da177e4SLinus Torvalds information. 311da177e4SLinus Torvalds 321da177e4SLinus Torvalds Say Y here and to the driver for your graphics board below if you 331da177e4SLinus Torvalds are compiling a kernel for a non-x86 architecture. 341da177e4SLinus Torvalds 351da177e4SLinus Torvalds If you are compiling for the x86 architecture, you can say Y if you 361da177e4SLinus Torvalds want to play with it, but it is not essential. Please note that 371da177e4SLinus Torvalds running graphical applications that directly touch the hardware 381da177e4SLinus Torvalds (e.g. an accelerated X server) and that are not frame buffer 391da177e4SLinus Torvalds device-aware may cause unexpected results. If unsure, say N. 401da177e4SLinus Torvalds 411da177e4SLinus Torvaldsconfig FB_CFB_FILLRECT 421da177e4SLinus Torvalds tristate 431da177e4SLinus Torvalds depends on FB 441da177e4SLinus Torvalds default n 451da177e4SLinus Torvalds ---help--- 461da177e4SLinus Torvalds Include the cfb_fillrect function for generic software rectangle 471da177e4SLinus Torvalds filling. This is used by drivers that don't provide their own 481da177e4SLinus Torvalds (accelerated) version. 491da177e4SLinus Torvalds 501da177e4SLinus Torvaldsconfig FB_CFB_COPYAREA 511da177e4SLinus Torvalds tristate 521da177e4SLinus Torvalds depends on FB 531da177e4SLinus Torvalds default n 541da177e4SLinus Torvalds ---help--- 551da177e4SLinus Torvalds Include the cfb_copyarea function for generic software area copying. 561da177e4SLinus Torvalds This is used by drivers that don't provide their own (accelerated) 571da177e4SLinus Torvalds version. 581da177e4SLinus Torvalds 591da177e4SLinus Torvaldsconfig FB_CFB_IMAGEBLIT 601da177e4SLinus Torvalds tristate 611da177e4SLinus Torvalds depends on FB 621da177e4SLinus Torvalds default n 631da177e4SLinus Torvalds ---help--- 641da177e4SLinus Torvalds Include the cfb_imageblit function for generic software image 651da177e4SLinus Torvalds blitting. This is used by drivers that don't provide their own 661da177e4SLinus Torvalds (accelerated) version. 671da177e4SLinus Torvalds 681da177e4SLinus Torvaldsconfig FB_MACMODES 691da177e4SLinus Torvalds tristate 701da177e4SLinus Torvalds depends on FB 711da177e4SLinus Torvalds default n 721da177e4SLinus Torvalds 731da177e4SLinus Torvaldsconfig FB_MODE_HELPERS 741da177e4SLinus Torvalds bool "Enable Video Mode Handling Helpers" 751da177e4SLinus Torvalds depends on FB 761da177e4SLinus Torvalds default n 771da177e4SLinus Torvalds ---help--- 781da177e4SLinus Torvalds This enables functions for handling video modes using the 791da177e4SLinus Torvalds Generalized Timing Formula and the EDID parser. A few drivers rely 801da177e4SLinus Torvalds on this feature such as the radeonfb, rivafb, and the i810fb. If 811da177e4SLinus Torvalds your driver does not take advantage of this feature, choosing Y will 821da177e4SLinus Torvalds just increase the kernel size by about 5K. 831da177e4SLinus Torvalds 841da177e4SLinus Torvaldsconfig FB_TILEBLITTING 851da177e4SLinus Torvalds bool "Enable Tile Blitting Support" 861da177e4SLinus Torvalds depends on FB 871da177e4SLinus Torvalds default n 881da177e4SLinus Torvalds ---help--- 891da177e4SLinus Torvalds This enables tile blitting. Tile blitting is a drawing technique 901da177e4SLinus Torvalds where the screen is divided into rectangular sections (tiles), whereas 911da177e4SLinus Torvalds the standard blitting divides the screen into pixels. Because the 921da177e4SLinus Torvalds default drawing element is a tile, drawing functions will be passed 931da177e4SLinus Torvalds parameters in terms of number of tiles instead of number of pixels. 941da177e4SLinus Torvalds For example, to draw a single character, instead of using bitmaps, 951da177e4SLinus Torvalds an index to an array of bitmaps will be used. To clear or move a 961da177e4SLinus Torvalds rectangular section of a screen, the rectangle will be described in 971da177e4SLinus Torvalds terms of number of tiles in the x- and y-axis. 981da177e4SLinus Torvalds 991da177e4SLinus Torvalds This is particularly important to one driver, matroxfb. If 1001da177e4SLinus Torvalds unsure, say N. 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvaldsconfig FB_CIRRUS 1031da177e4SLinus Torvalds tristate "Cirrus Logic support" 1041da177e4SLinus Torvalds depends on FB && (ZORRO || PCI) 1051da177e4SLinus Torvalds select FB_CFB_FILLRECT 1061da177e4SLinus Torvalds select FB_CFB_COPYAREA 1071da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1081da177e4SLinus Torvalds ---help--- 1091da177e4SLinus Torvalds This enables support for Cirrus Logic GD542x/543x based boards on 1101da177e4SLinus Torvalds Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum. 1111da177e4SLinus Torvalds 1121da177e4SLinus Torvalds If you have a PCI-based system, this enables support for these 1131da177e4SLinus Torvalds chips: GD-543x, GD-544x, GD-5480. 1141da177e4SLinus Torvalds 1151da177e4SLinus Torvalds Please read the file <file:Documentation/fb/cirrusfb.txt>. 1161da177e4SLinus Torvalds 1171da177e4SLinus Torvalds Say N unless you have such a graphics board or plan to get one 1181da177e4SLinus Torvalds before you next recompile the kernel. 1191da177e4SLinus Torvalds 1201da177e4SLinus Torvaldsconfig FB_PM2 1211da177e4SLinus Torvalds tristate "Permedia2 support" 1221da177e4SLinus Torvalds depends on FB && ((AMIGA && BROKEN) || PCI) 1231da177e4SLinus Torvalds select FB_CFB_FILLRECT 1241da177e4SLinus Torvalds select FB_CFB_COPYAREA 1251da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1261da177e4SLinus Torvalds help 1271da177e4SLinus Torvalds This is the frame buffer device driver for the Permedia2 AGP frame 1281da177e4SLinus Torvalds buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a 1291da177e4SLinus Torvalds product page at 1301da177e4SLinus Torvalds <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>. 1311da177e4SLinus Torvalds 1321da177e4SLinus Torvaldsconfig FB_PM2_FIFO_DISCONNECT 1331da177e4SLinus Torvalds bool "enable FIFO disconnect feature" 1341da177e4SLinus Torvalds depends on FB_PM2 && PCI 1351da177e4SLinus Torvalds help 1361da177e4SLinus Torvalds Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2). 1371da177e4SLinus Torvalds 1381da177e4SLinus Torvaldsconfig FB_ARMCLCD 1391da177e4SLinus Torvalds tristate "ARM PrimeCell PL110 support" 1401da177e4SLinus Torvalds depends on FB && ARM && ARM_AMBA 1411da177e4SLinus Torvalds select FB_CFB_FILLRECT 1421da177e4SLinus Torvalds select FB_CFB_COPYAREA 1431da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1441da177e4SLinus Torvalds help 1451da177e4SLinus Torvalds This framebuffer device driver is for the ARM PrimeCell PL110 1461da177e4SLinus Torvalds Colour LCD controller. ARM PrimeCells provide the building 1471da177e4SLinus Torvalds blocks for System on a Chip devices. 1481da177e4SLinus Torvalds 1491da177e4SLinus Torvalds If you want to compile this as a module (=code which can be 1501da177e4SLinus Torvalds inserted into and removed from the running kernel), say M 1511da177e4SLinus Torvalds here and read <file:Documentation/modules.txt>. The module 1521da177e4SLinus Torvalds will be called amba-clcd. 1531da177e4SLinus Torvalds 1541da177e4SLinus Torvaldsconfig FB_ACORN 1551da177e4SLinus Torvalds bool "Acorn VIDC support" 1561da177e4SLinus Torvalds depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500) 1571da177e4SLinus Torvalds select FB_CFB_FILLRECT 1581da177e4SLinus Torvalds select FB_CFB_COPYAREA 1591da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1601da177e4SLinus Torvalds help 1611da177e4SLinus Torvalds This is the frame buffer device driver for the Acorn VIDC graphics 1621da177e4SLinus Torvalds hardware found in Acorn RISC PCs and other ARM-based machines. If 1631da177e4SLinus Torvalds unsure, say N. 1641da177e4SLinus Torvalds 1651da177e4SLinus Torvaldsconfig FB_CLPS711X 1661da177e4SLinus Torvalds bool "CLPS711X LCD support" 1671da177e4SLinus Torvalds depends on (FB = y) && ARM && ARCH_CLPS711X 1681da177e4SLinus Torvalds select FB_CFB_FILLRECT 1691da177e4SLinus Torvalds select FB_CFB_COPYAREA 1701da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 171e65c0850SRandy.Dunlap help 172e65c0850SRandy.Dunlap Say Y to enable the Framebuffer driver for the CLPS7111 and 173e65c0850SRandy.Dunlap EP7212 processors. 1741da177e4SLinus Torvalds 1751da177e4SLinus Torvaldsconfig FB_SA1100 1761da177e4SLinus Torvalds bool "SA-1100 LCD support" 1771da177e4SLinus Torvalds depends on (FB = y) && ARM && ARCH_SA1100 1781da177e4SLinus Torvalds select FB_CFB_FILLRECT 1791da177e4SLinus Torvalds select FB_CFB_COPYAREA 1801da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1811da177e4SLinus Torvalds help 1821da177e4SLinus Torvalds This is a framebuffer device for the SA-1100 LCD Controller. 1831da177e4SLinus Torvalds See <http://www.linux-fbdev.org/> for information on framebuffer 1841da177e4SLinus Torvalds devices. 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds If you plan to use the LCD display with your SA-1100 system, say 1871da177e4SLinus Torvalds Y here. 1881da177e4SLinus Torvalds 1897c2f891cSSascha Hauerconfig FB_IMX 1907c2f891cSSascha Hauer tristate "Motorola i.MX LCD support" 1917c2f891cSSascha Hauer depends on FB && ARM && ARCH_IMX 1927c2f891cSSascha Hauer select FB_CFB_FILLRECT 1937c2f891cSSascha Hauer select FB_CFB_COPYAREA 1947c2f891cSSascha Hauer select FB_CFB_IMAGEBLIT 1957c2f891cSSascha Hauer 1961da177e4SLinus Torvaldsconfig FB_CYBER2000 1971da177e4SLinus Torvalds tristate "CyberPro 2000/2010/5000 support" 1981da177e4SLinus Torvalds depends on FB && PCI && (BROKEN || !SPARC64) 1991da177e4SLinus Torvalds select FB_CFB_FILLRECT 2001da177e4SLinus Torvalds select FB_CFB_COPYAREA 2011da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 2021da177e4SLinus Torvalds help 2031da177e4SLinus Torvalds This enables support for the Integraphics CyberPro 20x0 and 5000 2041da177e4SLinus Torvalds VGA chips used in the Rebel.com Netwinder and other machines. 2051da177e4SLinus Torvalds Say Y if you have a NetWinder or a graphics card containing this 2061da177e4SLinus Torvalds device, otherwise say N. 2071da177e4SLinus Torvalds 2081da177e4SLinus Torvaldsconfig FB_APOLLO 2091da177e4SLinus Torvalds bool 2101da177e4SLinus Torvalds depends on (FB = y) && APOLLO 2111da177e4SLinus Torvalds default y 2121da177e4SLinus Torvalds select FB_CFB_FILLRECT 2131da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 2141da177e4SLinus Torvalds 2151da177e4SLinus Torvaldsconfig FB_Q40 2161da177e4SLinus Torvalds bool 2171da177e4SLinus Torvalds depends on (FB = y) && Q40 2181da177e4SLinus Torvalds default y 2191da177e4SLinus Torvalds select FB_CFB_FILLRECT 2201da177e4SLinus Torvalds select FB_CFB_COPYAREA 2211da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 2221da177e4SLinus Torvalds 2231da177e4SLinus Torvaldsconfig FB_AMIGA 2241da177e4SLinus Torvalds tristate "Amiga native chipset support" 2251da177e4SLinus Torvalds depends on FB && AMIGA 2261da177e4SLinus Torvalds help 2271da177e4SLinus Torvalds This is the frame buffer device driver for the builtin graphics 2281da177e4SLinus Torvalds chipset found in Amigas. 2291da177e4SLinus Torvalds 2301da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 2311da177e4SLinus Torvalds module will be called amifb. 2321da177e4SLinus Torvalds 2331da177e4SLinus Torvaldsconfig FB_AMIGA_OCS 2341da177e4SLinus Torvalds bool "Amiga OCS chipset support" 2351da177e4SLinus Torvalds depends on FB_AMIGA 2361da177e4SLinus Torvalds help 2371da177e4SLinus Torvalds This enables support for the original Agnus and Denise video chips, 2381da177e4SLinus Torvalds found in the Amiga 1000 and most A500's and A2000's. If you intend 2391da177e4SLinus Torvalds to run Linux on any of these systems, say Y; otherwise say N. 2401da177e4SLinus Torvalds 2411da177e4SLinus Torvaldsconfig FB_AMIGA_ECS 2421da177e4SLinus Torvalds bool "Amiga ECS chipset support" 2431da177e4SLinus Torvalds depends on FB_AMIGA 2441da177e4SLinus Torvalds help 2451da177e4SLinus Torvalds This enables support for the Enhanced Chip Set, found in later 2461da177e4SLinus Torvalds A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If 2471da177e4SLinus Torvalds you intend to run Linux on any of these systems, say Y; otherwise 2481da177e4SLinus Torvalds say N. 2491da177e4SLinus Torvalds 2501da177e4SLinus Torvaldsconfig FB_AMIGA_AGA 2511da177e4SLinus Torvalds bool "Amiga AGA chipset support" 2521da177e4SLinus Torvalds depends on FB_AMIGA 2531da177e4SLinus Torvalds help 2541da177e4SLinus Torvalds This enables support for the Advanced Graphics Architecture (also 2551da177e4SLinus Torvalds known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T 2561da177e4SLinus Torvalds and CD32. If you intend to run Linux on any of these systems, say Y; 2571da177e4SLinus Torvalds otherwise say N. 2581da177e4SLinus Torvalds 2591da177e4SLinus Torvaldsconfig FB_CYBER 2601da177e4SLinus Torvalds tristate "Amiga CyberVision 64 support" 2611da177e4SLinus Torvalds depends on FB && ZORRO && BROKEN 2621da177e4SLinus Torvalds select FB_CFB_FILLRECT 2631da177e4SLinus Torvalds select FB_CFB_COPYAREA 2641da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 2651da177e4SLinus Torvalds help 2661da177e4SLinus Torvalds This enables support for the Cybervision 64 graphics card from 2671da177e4SLinus Torvalds Phase5. Please note that its use is not all that intuitive (i.e. if 2681da177e4SLinus Torvalds you have any questions, be sure to ask!). Say N unless you have a 2691da177e4SLinus Torvalds Cybervision 64 or plan to get one before you next recompile the 2701da177e4SLinus Torvalds kernel. Please note that this driver DOES NOT support the 2711da177e4SLinus Torvalds Cybervision 64/3D card, as they use incompatible video chips. 2721da177e4SLinus Torvalds 2731da177e4SLinus Torvaldsconfig FB_VIRGE 2741da177e4SLinus Torvalds bool "Amiga CyberVision 64/3D support " 2751da177e4SLinus Torvalds depends on (FB = y) && ZORRO && BROKEN 2761da177e4SLinus Torvalds select FB_CFB_FILLRECT 2771da177e4SLinus Torvalds select FB_CFB_COPYAREA 2781da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 2791da177e4SLinus Torvalds help 2801da177e4SLinus Torvalds This enables support for the Cybervision 64/3D graphics card from 2811da177e4SLinus Torvalds Phase5. Please note that its use is not all that intuitive (i.e. if 2821da177e4SLinus Torvalds you have any questions, be sure to ask!). Say N unless you have a 2831da177e4SLinus Torvalds Cybervision 64/3D or plan to get one before you next recompile the 2841da177e4SLinus Torvalds kernel. Please note that this driver DOES NOT support the older 2851da177e4SLinus Torvalds Cybervision 64 card, as they use incompatible video chips. 2861da177e4SLinus Torvalds 2871da177e4SLinus Torvaldsconfig FB_RETINAZ3 2881da177e4SLinus Torvalds tristate "Amiga Retina Z3 support" 2891da177e4SLinus Torvalds depends on (FB = y) && ZORRO && BROKEN 2901da177e4SLinus Torvalds help 2911da177e4SLinus Torvalds This enables support for the Retina Z3 graphics card. Say N unless 2921da177e4SLinus Torvalds you have a Retina Z3 or plan to get one before you next recompile 2931da177e4SLinus Torvalds the kernel. 2941da177e4SLinus Torvalds 2951da177e4SLinus Torvaldsconfig FB_FM2 2961da177e4SLinus Torvalds bool "Amiga FrameMaster II/Rainbow II support" 2971da177e4SLinus Torvalds depends on (FB = y) && ZORRO 2981da177e4SLinus Torvalds select FB_CFB_FILLRECT 2991da177e4SLinus Torvalds select FB_CFB_COPYAREA 3001da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3011da177e4SLinus Torvalds help 3021da177e4SLinus Torvalds This is the frame buffer device driver for the Amiga FrameMaster 3031da177e4SLinus Torvalds card from BSC (exhibited 1992 but not shipped as a CBM product). 3041da177e4SLinus Torvalds 3051154ea7dSJaya Kumarconfig FB_ARC 3061154ea7dSJaya Kumar tristate "Arc Monochrome LCD board support" 3071154ea7dSJaya Kumar depends on FB && X86 3081154ea7dSJaya Kumar select FB_CFB_FILLRECT 3091154ea7dSJaya Kumar select FB_CFB_COPYAREA 3101154ea7dSJaya Kumar select FB_CFB_IMAGEBLIT 3111154ea7dSJaya Kumar help 3121154ea7dSJaya Kumar This enables support for the Arc Monochrome LCD board. The board 3131154ea7dSJaya Kumar is based on the KS-108 lcd controller and is typically a matrix 3141154ea7dSJaya Kumar of 2*n chips. This driver was tested with a 128x64 panel. This 3151154ea7dSJaya Kumar driver supports it for use with x86 SBCs through a 16 bit GPIO 3161154ea7dSJaya Kumar interface (8 bit data, 8 bit control). If you anticpate using 3171154ea7dSJaya Kumar this driver, say Y or M; otherwise say N. You must specify the 3181154ea7dSJaya Kumar GPIO IO address to be used for setting control and data. 3191154ea7dSJaya Kumar 3201da177e4SLinus Torvaldsconfig FB_ATARI 3211da177e4SLinus Torvalds bool "Atari native chipset support" 3221da177e4SLinus Torvalds depends on (FB = y) && ATARI && BROKEN 3231da177e4SLinus Torvalds help 3241da177e4SLinus Torvalds This is the frame buffer device driver for the builtin graphics 3251da177e4SLinus Torvalds chipset found in Ataris. 3261da177e4SLinus Torvalds 3271da177e4SLinus Torvaldsconfig FB_OF 3281da177e4SLinus Torvalds bool "Open Firmware frame buffer device support" 3291da177e4SLinus Torvalds depends on (FB = y) && (PPC64 || PPC_OF) 3301da177e4SLinus Torvalds select FB_CFB_FILLRECT 3311da177e4SLinus Torvalds select FB_CFB_COPYAREA 3321da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3331da177e4SLinus Torvalds select FB_MACMODES 3341da177e4SLinus Torvalds help 3351da177e4SLinus Torvalds Say Y if you want support with Open Firmware for your graphics 3361da177e4SLinus Torvalds board. 3371da177e4SLinus Torvalds 3381da177e4SLinus Torvaldsconfig FB_CONTROL 3391da177e4SLinus Torvalds bool "Apple \"control\" display support" 3401da177e4SLinus Torvalds depends on (FB = y) && PPC_PMAC 3411da177e4SLinus Torvalds select FB_CFB_FILLRECT 3421da177e4SLinus Torvalds select FB_CFB_COPYAREA 3431da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3441da177e4SLinus Torvalds select FB_MACMODES 3451da177e4SLinus Torvalds help 3461da177e4SLinus Torvalds This driver supports a frame buffer for the graphics adapter in the 3471da177e4SLinus Torvalds Power Macintosh 7300 and others. 3481da177e4SLinus Torvalds 3491da177e4SLinus Torvaldsconfig FB_PLATINUM 3501da177e4SLinus Torvalds bool "Apple \"platinum\" display support" 3511da177e4SLinus Torvalds depends on (FB = y) && PPC_PMAC 3521da177e4SLinus Torvalds select FB_CFB_FILLRECT 3531da177e4SLinus Torvalds select FB_CFB_COPYAREA 3541da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3551da177e4SLinus Torvalds select FB_MACMODES 3561da177e4SLinus Torvalds help 3571da177e4SLinus Torvalds This driver supports a frame buffer for the "platinum" graphics 3581da177e4SLinus Torvalds adapter in some Power Macintoshes. 3591da177e4SLinus Torvalds 3601da177e4SLinus Torvaldsconfig FB_VALKYRIE 3611da177e4SLinus Torvalds bool "Apple \"valkyrie\" display support" 3621da177e4SLinus Torvalds depends on (FB = y) && (MAC || PPC_PMAC) 3631da177e4SLinus Torvalds select FB_CFB_FILLRECT 3641da177e4SLinus Torvalds select FB_CFB_COPYAREA 3651da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3661da177e4SLinus Torvalds select FB_MACMODES 3671da177e4SLinus Torvalds help 3681da177e4SLinus Torvalds This driver supports a frame buffer for the "valkyrie" graphics 3691da177e4SLinus Torvalds adapter in some Power Macintoshes. 3701da177e4SLinus Torvalds 3711da177e4SLinus Torvaldsconfig FB_CT65550 3721da177e4SLinus Torvalds bool "Chips 65550 display support" 3731da177e4SLinus Torvalds depends on (FB = y) && PPC 3741da177e4SLinus Torvalds select FB_CFB_FILLRECT 3751da177e4SLinus Torvalds select FB_CFB_COPYAREA 3761da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3771da177e4SLinus Torvalds help 3781da177e4SLinus Torvalds This is the frame buffer device driver for the Chips & Technologies 3791da177e4SLinus Torvalds 65550 graphics chip in PowerBooks. 3801da177e4SLinus Torvalds 3811da177e4SLinus Torvaldsconfig FB_ASILIANT 382e65c0850SRandy.Dunlap bool "Asiliant (Chips) 69000 display support" 3831da177e4SLinus Torvalds depends on (FB = y) && PCI 3841da177e4SLinus Torvalds select FB_CFB_FILLRECT 3851da177e4SLinus Torvalds select FB_CFB_COPYAREA 3861da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3871da177e4SLinus Torvalds 3881da177e4SLinus Torvaldsconfig FB_IMSTT 3891da177e4SLinus Torvalds bool "IMS Twin Turbo display support" 3901da177e4SLinus Torvalds depends on (FB = y) && PCI 3911da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 3921da177e4SLinus Torvalds select FB_MACMODES if PPC 3931da177e4SLinus Torvalds help 3941da177e4SLinus Torvalds The IMS Twin Turbo is a PCI-based frame buffer card bundled with 3951da177e4SLinus Torvalds many Macintosh and compatible computers. 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvaldsconfig FB_VGA16 3981da177e4SLinus Torvalds tristate "VGA 16-color graphics support" 3991da177e4SLinus Torvalds depends on FB && (X86 || PPC) 4001da177e4SLinus Torvalds select FB_CFB_FILLRECT 4011da177e4SLinus Torvalds select FB_CFB_COPYAREA 4021da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4031da177e4SLinus Torvalds help 4041da177e4SLinus Torvalds This is the frame buffer device driver for VGA 16 color graphic 4051da177e4SLinus Torvalds cards. Say Y if you have such a card. 4061da177e4SLinus Torvalds 4071da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 4081da177e4SLinus Torvalds module will be called vga16fb. 4091da177e4SLinus Torvalds 4101da177e4SLinus Torvaldsconfig FB_STI 4111da177e4SLinus Torvalds tristate "HP STI frame buffer device support" 4121da177e4SLinus Torvalds depends on FB && PARISC 4131da177e4SLinus Torvalds select FB_CFB_FILLRECT 4141da177e4SLinus Torvalds select FB_CFB_COPYAREA 4151da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4161da177e4SLinus Torvalds default y 4171da177e4SLinus Torvalds ---help--- 4181da177e4SLinus Torvalds STI refers to the HP "Standard Text Interface" which is a set of 4191da177e4SLinus Torvalds BIOS routines contained in a ROM chip in HP PA-RISC based machines. 4201da177e4SLinus Torvalds Enabling this option will implement the linux framebuffer device 4211da177e4SLinus Torvalds using calls to the STI BIOS routines for initialisation. 4221da177e4SLinus Torvalds 4231da177e4SLinus Torvalds If you enable this option, you will get a planar framebuffer device 4241da177e4SLinus Torvalds /dev/fb which will work on the most common HP graphic cards of the 4251da177e4SLinus Torvalds NGLE family, including the artist chips (in the 7xx and Bxxx series), 4261da177e4SLinus Torvalds HCRX, HCRX24, CRX, CRX24 and VisEG series. 4271da177e4SLinus Torvalds 4281da177e4SLinus Torvalds It is safe to enable this option, so you should probably say "Y". 4291da177e4SLinus Torvalds 4301da177e4SLinus Torvaldsconfig FB_MAC 4311da177e4SLinus Torvalds bool "Generic Macintosh display support" 4321da177e4SLinus Torvalds depends on (FB = y) && MAC 4331da177e4SLinus Torvalds select FB_CFB_FILLRECT 4341da177e4SLinus Torvalds select FB_CFB_COPYAREA 4351da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4361da177e4SLinus Torvalds select FB_MACMODES 4371da177e4SLinus Torvalds 4381da177e4SLinus Torvalds# bool ' Apple DAFB display support' CONFIG_FB_DAFB 4391da177e4SLinus Torvaldsconfig FB_HP300 4401da177e4SLinus Torvalds bool 4411da177e4SLinus Torvalds depends on (FB = y) && HP300 4421da177e4SLinus Torvalds select FB_CFB_FILLRECT 4431da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4441da177e4SLinus Torvalds default y 4451da177e4SLinus Torvalds 4461da177e4SLinus Torvaldsconfig FB_TGA 4471da177e4SLinus Torvalds tristate "TGA framebuffer support" 4481da177e4SLinus Torvalds depends on FB && ALPHA 4491da177e4SLinus Torvalds select FB_CFB_FILLRECT 4501da177e4SLinus Torvalds select FB_CFB_COPYAREA 4511da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4521da177e4SLinus Torvalds help 4531da177e4SLinus Torvalds This is the frame buffer device driver for generic TGA graphic 4541da177e4SLinus Torvalds cards. Say Y if you have one of those. 4551da177e4SLinus Torvalds 4561da177e4SLinus Torvaldsconfig FB_VESA 4571da177e4SLinus Torvalds bool "VESA VGA graphics support" 4580d078f6fSBrian Gerst depends on (FB = y) && X86 4591da177e4SLinus Torvalds select FB_CFB_FILLRECT 4601da177e4SLinus Torvalds select FB_CFB_COPYAREA 4611da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4621da177e4SLinus Torvalds help 4631da177e4SLinus Torvalds This is the frame buffer device driver for generic VESA 2.0 4641da177e4SLinus Torvalds compliant graphic cards. The older VESA 1.2 cards are not supported. 4651da177e4SLinus Torvalds You will get a boot time penguin logo at no additional cost. Please 4661da177e4SLinus Torvalds read <file:Documentation/fb/vesafb.txt>. If unsure, say Y. 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvaldsconfig VIDEO_SELECT 4691da177e4SLinus Torvalds bool 4701da177e4SLinus Torvalds depends on FB_VESA 4711da177e4SLinus Torvalds default y 4721da177e4SLinus Torvalds 4731da177e4SLinus Torvaldsconfig FB_HGA 4741da177e4SLinus Torvalds tristate "Hercules mono graphics support" 4751da177e4SLinus Torvalds depends on FB && X86 4761da177e4SLinus Torvalds select FB_CFB_FILLRECT 4771da177e4SLinus Torvalds select FB_CFB_COPYAREA 4781da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 4791da177e4SLinus Torvalds help 4801da177e4SLinus Torvalds Say Y here if you have a Hercules mono graphics card. 4811da177e4SLinus Torvalds 4821da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 4831da177e4SLinus Torvalds module will be called hgafb. 4841da177e4SLinus Torvalds 4851da177e4SLinus Torvalds As this card technology is 15 years old, most people will answer N 4861da177e4SLinus Torvalds here. 4871da177e4SLinus Torvalds 4881da177e4SLinus Torvaldsconfig FB_HGA_ACCEL 4891da177e4SLinus Torvalds bool "Hercules mono Acceleration functions (EXPERIMENTAL)" 4901da177e4SLinus Torvalds depends on FB_HGA && EXPERIMENTAL 4911da177e4SLinus Torvalds ---help--- 4921da177e4SLinus Torvalds This will compile the Hercules mono graphics with 4931da177e4SLinus Torvalds acceleration functions. 4941da177e4SLinus Torvalds 4951da177e4SLinus Torvalds 4961da177e4SLinus Torvaldsconfig VIDEO_SELECT 4971da177e4SLinus Torvalds bool 4981da177e4SLinus Torvalds depends on (FB = y) && X86 4991da177e4SLinus Torvalds default y 5001da177e4SLinus Torvalds 5011da177e4SLinus Torvaldsconfig FB_SGIVW 5021da177e4SLinus Torvalds tristate "SGI Visual Workstation framebuffer support" 5031da177e4SLinus Torvalds depends on FB && X86_VISWS 5041da177e4SLinus Torvalds select FB_CFB_FILLRECT 5051da177e4SLinus Torvalds select FB_CFB_COPYAREA 5061da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5071da177e4SLinus Torvalds help 5081da177e4SLinus Torvalds SGI Visual Workstation support for framebuffer graphics. 5091da177e4SLinus Torvalds 5101da177e4SLinus Torvaldsconfig FB_GBE 5111da177e4SLinus Torvalds bool "SGI Graphics Backend frame buffer support" 5121da177e4SLinus Torvalds depends on (FB = y) && (SGI_IP32 || X86_VISWS) 5131da177e4SLinus Torvalds select FB_CFB_FILLRECT 5141da177e4SLinus Torvalds select FB_CFB_COPYAREA 5151da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5161da177e4SLinus Torvalds help 5171da177e4SLinus Torvalds This is the frame buffer device driver for SGI Graphics Backend. 5181da177e4SLinus Torvalds This chip is used in SGI O2 and Visual Workstation 320/540. 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvaldsconfig FB_GBE_MEM 5211da177e4SLinus Torvalds int "Video memory size in MB" 5221da177e4SLinus Torvalds depends on FB_GBE 5231da177e4SLinus Torvalds default 8 5241da177e4SLinus Torvalds help 5251da177e4SLinus Torvalds This is the amount of memory reserved for the framebuffer, 5261da177e4SLinus Torvalds which can be any value between 1MB and 8MB. 5271da177e4SLinus Torvalds 5281da177e4SLinus Torvaldsconfig BUS_I2C 5291da177e4SLinus Torvalds bool 5301da177e4SLinus Torvalds depends on (FB = y) && VISWS 5311da177e4SLinus Torvalds default y 5321da177e4SLinus Torvalds 5331da177e4SLinus Torvaldsconfig FB_SUN3 5341da177e4SLinus Torvalds bool "Sun3 framebuffer support" 5351da177e4SLinus Torvalds depends on (FB = y) && (SUN3 || SUN3X) && BROKEN 5361da177e4SLinus Torvalds 5371a571986SMark Fortescueconfig FB_SBUS 5381a571986SMark Fortescue bool "SBUS and UPA framebuffers" 539*0b57ee9eSAdrian Bunk depends on (FB = y) && SPARC 5401a571986SMark Fortescue help 5411a571986SMark Fortescue Say Y if you want support for SBUS or UPA based frame buffer device. 5421a571986SMark Fortescue 5431da177e4SLinus Torvaldsconfig FB_BW2 5441da177e4SLinus Torvalds bool "BWtwo support" 545*0b57ee9eSAdrian Bunk depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3) 5461da177e4SLinus Torvalds select FB_CFB_FILLRECT 5471da177e4SLinus Torvalds select FB_CFB_COPYAREA 5481da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5491da177e4SLinus Torvalds help 5501da177e4SLinus Torvalds This is the frame buffer device driver for the BWtwo frame buffer. 5511da177e4SLinus Torvalds 5521da177e4SLinus Torvaldsconfig FB_CG3 5531da177e4SLinus Torvalds bool "CGthree support" 554*0b57ee9eSAdrian Bunk depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3) 5551a571986SMark Fortescue select FB_CFB_FILLRECT 5561da177e4SLinus Torvalds select FB_CFB_COPYAREA 5571da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5581da177e4SLinus Torvalds help 5591da177e4SLinus Torvalds This is the frame buffer device driver for the CGthree frame buffer. 5601da177e4SLinus Torvalds 5611da177e4SLinus Torvaldsconfig FB_CG6 5621da177e4SLinus Torvalds bool "CGsix (GX,TurboGX) support" 563*0b57ee9eSAdrian Bunk depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3) 5641da177e4SLinus Torvalds select FB_CFB_COPYAREA 5651da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5661da177e4SLinus Torvalds help 5671da177e4SLinus Torvalds This is the frame buffer device driver for the CGsix (GX, TurboGX) 5681da177e4SLinus Torvalds frame buffer. 5691da177e4SLinus Torvalds 5701da177e4SLinus Torvaldsconfig FB_PVR2 5711da177e4SLinus Torvalds tristate "NEC PowerVR 2 display support" 5721da177e4SLinus Torvalds depends on FB && SH_DREAMCAST 5731da177e4SLinus Torvalds select FB_CFB_FILLRECT 5741da177e4SLinus Torvalds select FB_CFB_COPYAREA 5751da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5761da177e4SLinus Torvalds ---help--- 5771da177e4SLinus Torvalds Say Y here if you have a PowerVR 2 card in your box. If you plan to 5781da177e4SLinus Torvalds run linux on your Dreamcast, you will have to say Y here. 5791da177e4SLinus Torvalds This driver may or may not work on other PowerVR 2 cards, but is 5801da177e4SLinus Torvalds totally untested. Use at your own risk. If unsure, say N. 5811da177e4SLinus Torvalds 5821da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 5831da177e4SLinus Torvalds module will be called pvr2fb. 5841da177e4SLinus Torvalds 5851da177e4SLinus Torvalds You can pass several parameters to the driver at boot time or at 5861da177e4SLinus Torvalds module load time. The parameters look like "video=pvr2:XXX", where 5871da177e4SLinus Torvalds the meaning of XXX can be found at the end of the main source file 5881da177e4SLinus Torvalds (<file:drivers/video/pvr2fb.c>). Please see the file 5891da177e4SLinus Torvalds <file:Documentation/fb/pvr2fb.txt>. 5901da177e4SLinus Torvalds 5911da177e4SLinus Torvaldsconfig FB_EPSON1355 5921da177e4SLinus Torvalds bool "Epson 1355 framebuffer support" 5931da177e4SLinus Torvalds depends on (FB = y) && (SUPERH || ARCH_CEIVA) 5941da177e4SLinus Torvalds select FB_CFB_FILLRECT 5951da177e4SLinus Torvalds select FB_CFB_COPYAREA 5961da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 5971da177e4SLinus Torvalds help 5981da177e4SLinus Torvalds Build in support for the SED1355 Epson Research Embedded RAMDAC 5991da177e4SLinus Torvalds LCD/CRT Controller (since redesignated as the S1D13505) as a 6001da177e4SLinus Torvalds framebuffer. Product specs at 6011da177e4SLinus Torvalds <http://www.erd.epson.com/vdc/html/products.htm>. 6021da177e4SLinus Torvalds 603ecc41d5eSRandy Dunlapconfig FB_S1D13XXX 604ecc41d5eSRandy Dunlap tristate "Epson S1D13XXX framebuffer support" 605ecc41d5eSRandy Dunlap depends on FB 606ecc41d5eSRandy Dunlap select FB_CFB_FILLRECT 607ecc41d5eSRandy Dunlap select FB_CFB_COPYAREA 608ecc41d5eSRandy Dunlap select FB_CFB_IMAGEBLIT 609ecc41d5eSRandy Dunlap help 610ecc41d5eSRandy Dunlap Support for S1D13XXX framebuffer device family (currently only 611ecc41d5eSRandy Dunlap working with S1D13806). Product specs at 612ecc41d5eSRandy Dunlap <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm> 613ecc41d5eSRandy Dunlap 6141da177e4SLinus Torvaldsconfig FB_NVIDIA 6151da177e4SLinus Torvalds tristate "nVidia Framebuffer Support" 6161da177e4SLinus Torvalds depends on FB && PCI 6171da177e4SLinus Torvalds select I2C_ALGOBIT if FB_NVIDIA_I2C 6181da177e4SLinus Torvalds select I2C if FB_NVIDIA_I2C 6191da177e4SLinus Torvalds select FB_MODE_HELPERS 6201da177e4SLinus Torvalds select FB_CFB_FILLRECT 6211da177e4SLinus Torvalds select FB_CFB_COPYAREA 6221da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 6231da177e4SLinus Torvalds help 6241da177e4SLinus Torvalds This driver supports graphics boards with the nVidia chips, TNT 6251da177e4SLinus Torvalds and newer. For very old chipsets, such as the RIVA128, then use 6261da177e4SLinus Torvalds the rivafb. 6271da177e4SLinus Torvalds Say Y if you have such a graphics board. 6281da177e4SLinus Torvalds 6291da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 6301da177e4SLinus Torvalds module will be called nvidiafb. 6311da177e4SLinus Torvalds 6321da177e4SLinus Torvaldsconfig FB_NVIDIA_I2C 6331da177e4SLinus Torvalds bool "Enable DDC Support" 63485f1503aSBenjamin Herrenschmidt depends on FB_NVIDIA 6351da177e4SLinus Torvalds help 6361da177e4SLinus Torvalds This enables I2C support for nVidia Chipsets. This is used 6371da177e4SLinus Torvalds only for getting EDID information from the attached display 6381da177e4SLinus Torvalds allowing for robust video mode handling and switching. 6391da177e4SLinus Torvalds 6401da177e4SLinus Torvalds Because fbdev-2.6 requires that drivers must be able to 6411da177e4SLinus Torvalds independently validate video mode parameters, you should say Y 6421da177e4SLinus Torvalds here. 6431da177e4SLinus Torvalds 6441da177e4SLinus Torvaldsconfig FB_RIVA 6451da177e4SLinus Torvalds tristate "nVidia Riva support" 6461da177e4SLinus Torvalds depends on FB && PCI 6471da177e4SLinus Torvalds select I2C_ALGOBIT if FB_RIVA_I2C 6481da177e4SLinus Torvalds select I2C if FB_RIVA_I2C 6491da177e4SLinus Torvalds select FB_MODE_HELPERS 6501da177e4SLinus Torvalds select FB_CFB_FILLRECT 6511da177e4SLinus Torvalds select FB_CFB_COPYAREA 6521da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 6531da177e4SLinus Torvalds help 6541da177e4SLinus Torvalds This driver supports graphics boards with the nVidia Riva/Geforce 6551da177e4SLinus Torvalds chips. 6561da177e4SLinus Torvalds Say Y if you have such a graphics board. 6571da177e4SLinus Torvalds 6581da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 6591da177e4SLinus Torvalds module will be called rivafb. 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvaldsconfig FB_RIVA_I2C 6621da177e4SLinus Torvalds bool "Enable DDC Support" 6631da177e4SLinus Torvalds depends on FB_RIVA 6641da177e4SLinus Torvalds help 6651da177e4SLinus Torvalds This enables I2C support for nVidia Chipsets. This is used 6661da177e4SLinus Torvalds only for getting EDID information from the attached display 6671da177e4SLinus Torvalds allowing for robust video mode handling and switching. 6681da177e4SLinus Torvalds 6691da177e4SLinus Torvalds Because fbdev-2.6 requires that drivers must be able to 6701da177e4SLinus Torvalds independently validate video mode parameters, you should say Y 6711da177e4SLinus Torvalds here. 6721da177e4SLinus Torvalds 6731da177e4SLinus Torvaldsconfig FB_RIVA_DEBUG 6741da177e4SLinus Torvalds bool "Lots of debug output from Riva(nVidia) driver" 6751da177e4SLinus Torvalds depends on FB_RIVA 6761da177e4SLinus Torvalds default n 6771da177e4SLinus Torvalds help 6781da177e4SLinus Torvalds Say Y here if you want the Riva driver to output all sorts 6791da177e4SLinus Torvalds of debugging informations to provide to the maintainer when 6801da177e4SLinus Torvalds something goes wrong. 6811da177e4SLinus Torvalds 6821da177e4SLinus Torvaldsconfig FB_I810 6831da177e4SLinus Torvalds tristate "Intel 810/815 support (EXPERIMENTAL)" 6840d078f6fSBrian Gerst depends on FB && EXPERIMENTAL && PCI && X86_32 6851da177e4SLinus Torvalds select AGP 6861da177e4SLinus Torvalds select AGP_INTEL 6871da177e4SLinus Torvalds select FB_MODE_HELPERS 6881da177e4SLinus Torvalds select FB_CFB_FILLRECT 6891da177e4SLinus Torvalds select FB_CFB_COPYAREA 6901da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 6911da177e4SLinus Torvalds help 6921da177e4SLinus Torvalds This driver supports the on-board graphics built in to the Intel 810 6931da177e4SLinus Torvalds and 815 chipsets. Say Y if you have and plan to use such a board. 6941da177e4SLinus Torvalds 6951da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 6961da177e4SLinus Torvalds module will be called i810fb. 6971da177e4SLinus Torvalds 6981da177e4SLinus Torvalds For more information, please read 6991da177e4SLinus Torvalds <file:Documentation/fb/intel810.txt> 7001da177e4SLinus Torvalds 7011da177e4SLinus Torvaldsconfig FB_I810_GTF 7021da177e4SLinus Torvalds bool "use VESA Generalized Timing Formula" 7031da177e4SLinus Torvalds depends on FB_I810 7041da177e4SLinus Torvalds help 7051da177e4SLinus Torvalds If you say Y, then the VESA standard, Generalized Timing Formula 7061da177e4SLinus Torvalds or GTF, will be used to calculate the required video timing values 7071da177e4SLinus Torvalds per video mode. Since the GTF allows nondiscrete timings 7081da177e4SLinus Torvalds (nondiscrete being a range of values as opposed to discrete being a 7091da177e4SLinus Torvalds set of values), you'll be able to use any combination of horizontal 7101da177e4SLinus Torvalds and vertical resolutions, and vertical refresh rates without having 7111da177e4SLinus Torvalds to specify your own timing parameters. This is especially useful 7121da177e4SLinus Torvalds to maximize the performance of an aging display, or if you just 7131da177e4SLinus Torvalds have a display with nonstandard dimensions. A VESA compliant 7141da177e4SLinus Torvalds monitor is recommended, but can still work with non-compliant ones. 7151da177e4SLinus Torvalds If you need or want this, then select this option. The timings may 7161da177e4SLinus Torvalds not be compliant with Intel's recommended values. Use at your own 7171da177e4SLinus Torvalds risk. 7181da177e4SLinus Torvalds 7191da177e4SLinus Torvalds If you say N, the driver will revert to discrete video timings 7201da177e4SLinus Torvalds using a set recommended by Intel in their documentation. 7211da177e4SLinus Torvalds 7221da177e4SLinus Torvalds If unsure, say N. 7231da177e4SLinus Torvalds 72474f6ae84SAntonino A. Daplasconfig FB_I810_I2C 72574f6ae84SAntonino A. Daplas bool "Enable DDC Support" 726db84502bSAntonino A. Daplas depends on FB_I810 && FB_I810_GTF 727db84502bSAntonino A. Daplas select I2C 72874f6ae84SAntonino A. Daplas select I2C_ALGOBIT 72974f6ae84SAntonino A. Daplas help 73074f6ae84SAntonino A. Daplas 7311da177e4SLinus Torvaldsconfig FB_INTEL 7321da177e4SLinus Torvalds tristate "Intel 830M/845G/852GM/855GM/865G support (EXPERIMENTAL)" 7330d078f6fSBrian Gerst depends on FB && EXPERIMENTAL && PCI && X86_32 7341da177e4SLinus Torvalds select AGP 7351da177e4SLinus Torvalds select AGP_INTEL 7361da177e4SLinus Torvalds select FB_MODE_HELPERS 7371da177e4SLinus Torvalds select FB_CFB_FILLRECT 7381da177e4SLinus Torvalds select FB_CFB_COPYAREA 7391da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 7401da177e4SLinus Torvalds help 7411da177e4SLinus Torvalds This driver supports the on-board graphics built in to the Intel 7421da177e4SLinus Torvalds 830M/845G/852GM/855GM/865G chipsets. 7431da177e4SLinus Torvalds Say Y if you have and plan to use such a board. 7441da177e4SLinus Torvalds 7451da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 7461da177e4SLinus Torvalds module will be called intelfb. 7471da177e4SLinus Torvalds 7481da177e4SLinus Torvaldsconfig FB_INTEL_DEBUG 7491da177e4SLinus Torvalds bool "Intel driver Debug Messages" 7501da177e4SLinus Torvalds depends on FB_INTEL 7511da177e4SLinus Torvalds ---help--- 7521da177e4SLinus Torvalds Say Y here if you want the Intel driver to output all sorts 7531da177e4SLinus Torvalds of debugging informations to provide to the maintainer when 7541da177e4SLinus Torvalds something goes wrong. 7551da177e4SLinus Torvalds 7561da177e4SLinus Torvaldsconfig FB_MATROX 7571da177e4SLinus Torvalds tristate "Matrox acceleration" 7581da177e4SLinus Torvalds depends on FB && PCI 7591da177e4SLinus Torvalds select FB_CFB_FILLRECT 7601da177e4SLinus Torvalds select FB_CFB_COPYAREA 7611da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 7621da177e4SLinus Torvalds select FB_TILEBLITTING 7631da177e4SLinus Torvalds select FB_MACMODES if PPC_PMAC 7641da177e4SLinus Torvalds ---help--- 7651da177e4SLinus Torvalds Say Y here if you have a Matrox Millennium, Matrox Millennium II, 7661da177e4SLinus Torvalds Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox 7671da177e4SLinus Torvalds Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video, 7681da177e4SLinus Torvalds Matrox G400, G450 or G550 card in your box. 7691da177e4SLinus Torvalds 7701da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 7711da177e4SLinus Torvalds module will be called matroxfb. 7721da177e4SLinus Torvalds 7731da177e4SLinus Torvalds You can pass several parameters to the driver at boot time or at 7741da177e4SLinus Torvalds module load time. The parameters look like "video=matrox:XXX", and 7751da177e4SLinus Torvalds are described in <file:Documentation/fb/matroxfb.txt>. 7761da177e4SLinus Torvalds 7771da177e4SLinus Torvaldsconfig FB_MATROX_MILLENIUM 7781da177e4SLinus Torvalds bool "Millennium I/II support" 7791da177e4SLinus Torvalds depends on FB_MATROX 7801da177e4SLinus Torvalds help 7811da177e4SLinus Torvalds Say Y here if you have a Matrox Millennium or Matrox Millennium II 7821da177e4SLinus Torvalds video card. If you select "Advanced lowlevel driver options" below, 7831da177e4SLinus Torvalds you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp 7841da177e4SLinus Torvalds packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can 7851da177e4SLinus Torvalds also use font widths different from 8. 7861da177e4SLinus Torvalds 7871da177e4SLinus Torvaldsconfig FB_MATROX_MYSTIQUE 7881da177e4SLinus Torvalds bool "Mystique support" 7891da177e4SLinus Torvalds depends on FB_MATROX 7901da177e4SLinus Torvalds help 7911da177e4SLinus Torvalds Say Y here if you have a Matrox Mystique or Matrox Mystique 220 7921da177e4SLinus Torvalds video card. If you select "Advanced lowlevel driver options" below, 7931da177e4SLinus Torvalds you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp 7941da177e4SLinus Torvalds packed pixel and 32 bpp packed pixel. You can also use font widths 7951da177e4SLinus Torvalds different from 8. 7961da177e4SLinus Torvalds 7971da177e4SLinus Torvaldsconfig FB_MATROX_G 7981da177e4SLinus Torvalds bool "G100/G200/G400/G450/G550 support" 7991da177e4SLinus Torvalds depends on FB_MATROX 8001da177e4SLinus Torvalds ---help--- 8011da177e4SLinus Torvalds Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based 8021da177e4SLinus Torvalds video card. If you select "Advanced lowlevel driver options", you 8031da177e4SLinus Torvalds should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed 8041da177e4SLinus Torvalds pixel and 32 bpp packed pixel. You can also use font widths 8051da177e4SLinus Torvalds different from 8. 8061da177e4SLinus Torvalds 8071da177e4SLinus Torvalds If you need support for G400 secondary head, you must first say Y to 8081da177e4SLinus Torvalds "I2C support" in the character devices section, and then to 8091da177e4SLinus Torvalds "Matrox I2C support" and "G400 second head support" here in the 8101da177e4SLinus Torvalds framebuffer section. G450/G550 secondary head and digital output 8111da177e4SLinus Torvalds are supported without additional modules. 8121da177e4SLinus Torvalds 8131da177e4SLinus Torvalds The driver starts in monitor mode. You must use the matroxset tool 8141da177e4SLinus Torvalds (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 8151da177e4SLinus Torvalds swap primary and secondary head outputs, or to change output mode. 8161da177e4SLinus Torvalds Secondary head driver always start in 640x480 resolution and you 8171da177e4SLinus Torvalds must use fbset to change it. 8181da177e4SLinus Torvalds 8191da177e4SLinus Torvalds Do not forget that second head supports only 16 and 32 bpp 8201da177e4SLinus Torvalds packed pixels, so it is a good idea to compile them into the kernel 8211da177e4SLinus Torvalds too. You can use only some font widths, as the driver uses generic 8221da177e4SLinus Torvalds painting procedures (the secondary head does not use acceleration 8231da177e4SLinus Torvalds engine). 8241da177e4SLinus Torvalds 8251da177e4SLinus Torvalds G450/G550 hardware can display TV picture only from secondary CRTC, 8261da177e4SLinus Torvalds and it performs no scaling, so picture must have 525 or 625 lines. 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvaldsconfig FB_MATROX_I2C 8291da177e4SLinus Torvalds tristate "Matrox I2C support" 8301da177e4SLinus Torvalds depends on FB_MATROX && I2C 8311da177e4SLinus Torvalds select I2C_ALGOBIT 8321da177e4SLinus Torvalds ---help--- 8331da177e4SLinus Torvalds This drivers creates I2C buses which are needed for accessing the 8341da177e4SLinus Torvalds DDC (I2C) bus present on all Matroxes, an I2C bus which 8351da177e4SLinus Torvalds interconnects Matrox optional devices, like MGA-TVO on G200 and 8361da177e4SLinus Torvalds G400, and the secondary head DDC bus, present on G400 only. 8371da177e4SLinus Torvalds 8381da177e4SLinus Torvalds You can say Y or M here if you want to experiment with monitor 8391da177e4SLinus Torvalds detection code. You must say Y or M here if you want to use either 8401da177e4SLinus Torvalds second head of G400 or MGA-TVO on G200 or G400. 8411da177e4SLinus Torvalds 8421da177e4SLinus Torvalds If you compile it as module, it will create a module named 8431da177e4SLinus Torvalds i2c-matroxfb. 8441da177e4SLinus Torvalds 8451da177e4SLinus Torvaldsconfig FB_MATROX_MAVEN 8461da177e4SLinus Torvalds tristate "G400 second head support" 8471da177e4SLinus Torvalds depends on FB_MATROX_G && FB_MATROX_I2C 8481da177e4SLinus Torvalds ---help--- 8491da177e4SLinus Torvalds WARNING !!! This support does not work with G450 !!! 8501da177e4SLinus Torvalds 8511da177e4SLinus Torvalds Say Y or M here if you want to use a secondary head (meaning two 8521da177e4SLinus Torvalds monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary 8531da177e4SLinus Torvalds head is not compatible with accelerated XFree 3.3.x SVGA servers - 8541da177e4SLinus Torvalds secondary head output is blanked while you are in X. With XFree 8551da177e4SLinus Torvalds 3.9.17 preview you can use both heads if you use SVGA over fbdev or 8561da177e4SLinus Torvalds the fbdev driver on first head and the fbdev driver on second head. 8571da177e4SLinus Torvalds 8581da177e4SLinus Torvalds If you compile it as module, two modules are created, 8591da177e4SLinus Torvalds matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for 8601da177e4SLinus Torvalds both G200 and G400, matroxfb_crtc2 is needed only by G400. You must 8611da177e4SLinus Torvalds also load i2c-matroxfb to get it to run. 8621da177e4SLinus Torvalds 8631da177e4SLinus Torvalds The driver starts in monitor mode and you must use the matroxset 8641da177e4SLinus Torvalds tool (available at 8651da177e4SLinus Torvalds <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to 8661da177e4SLinus Torvalds PAL or NTSC or to swap primary and secondary head outputs. 8671da177e4SLinus Torvalds Secondary head driver also always start in 640x480 resolution, you 8681da177e4SLinus Torvalds must use fbset to change it. 8691da177e4SLinus Torvalds 8701da177e4SLinus Torvalds Also do not forget that second head supports only 16 and 32 bpp 8711da177e4SLinus Torvalds packed pixels, so it is a good idea to compile them into the kernel 8721da177e4SLinus Torvalds too. You can use only some font widths, as the driver uses generic 8731da177e4SLinus Torvalds painting procedures (the secondary head does not use acceleration 8741da177e4SLinus Torvalds engine). 8751da177e4SLinus Torvalds 8761da177e4SLinus Torvaldsconfig FB_MATROX_MULTIHEAD 8771da177e4SLinus Torvalds bool "Multihead support" 8781da177e4SLinus Torvalds depends on FB_MATROX 8791da177e4SLinus Torvalds ---help--- 8801da177e4SLinus Torvalds Say Y here if you have more than one (supported) Matrox device in 8811da177e4SLinus Torvalds your computer and you want to use all of them for different monitors 8821da177e4SLinus Torvalds ("multihead"). If you have only one device, you should say N because 8831da177e4SLinus Torvalds the driver compiled with Y is larger and a bit slower, especially on 8841da177e4SLinus Torvalds ia32 (ix86). 8851da177e4SLinus Torvalds 8861da177e4SLinus Torvalds If you said M to "Matrox unified accelerated driver" and N here, you 8871da177e4SLinus Torvalds will still be able to use several Matrox devices simultaneously: 8881da177e4SLinus Torvalds insert several instances of the module matroxfb into the kernel 8891da177e4SLinus Torvalds with insmod, supplying the parameter "dev=N" where N is 0, 1, etc. 8901da177e4SLinus Torvalds for the different Matrox devices. This method is slightly faster but 8911da177e4SLinus Torvalds uses 40 KB of kernel memory per Matrox card. 8921da177e4SLinus Torvalds 8931da177e4SLinus Torvalds There is no need for enabling 'Matrox multihead support' if you have 8941da177e4SLinus Torvalds only one Matrox card in the box. 8951da177e4SLinus Torvalds 8961da177e4SLinus Torvaldsconfig FB_RADEON_OLD 8971da177e4SLinus Torvalds tristate "ATI Radeon display support (Old driver)" 8981da177e4SLinus Torvalds depends on FB && PCI 8991da177e4SLinus Torvalds select FB_CFB_FILLRECT 9001da177e4SLinus Torvalds select FB_CFB_COPYAREA 9011da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 9021da177e4SLinus Torvalds select FB_MACMODES if PPC 9031da177e4SLinus Torvalds help 9041da177e4SLinus Torvalds Choose this option if you want to use an ATI Radeon graphics card as 9051da177e4SLinus Torvalds a framebuffer device. There are both PCI and AGP versions. You 9061da177e4SLinus Torvalds don't need to choose this to run the Radeon in plain VGA mode. 9071da177e4SLinus Torvalds There is a product page at 9081da177e4SLinus Torvalds <http://www.ati.com/na/pages/products/pc/radeon32/index.html>. 9091da177e4SLinus Torvalds 9101da177e4SLinus Torvaldsconfig FB_RADEON 9111da177e4SLinus Torvalds tristate "ATI Radeon display support" 9121da177e4SLinus Torvalds depends on FB && PCI 9131da177e4SLinus Torvalds select I2C_ALGOBIT if FB_RADEON_I2C 9141da177e4SLinus Torvalds select I2C if FB_RADEON_I2C 9151da177e4SLinus Torvalds select FB_MODE_HELPERS 9161da177e4SLinus Torvalds select FB_CFB_FILLRECT 9171da177e4SLinus Torvalds select FB_CFB_COPYAREA 9181da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 9191da177e4SLinus Torvalds select FB_MACMODES if PPC_OF 9201da177e4SLinus Torvalds help 9211da177e4SLinus Torvalds Choose this option if you want to use an ATI Radeon graphics card as 9221da177e4SLinus Torvalds a framebuffer device. There are both PCI and AGP versions. You 9231da177e4SLinus Torvalds don't need to choose this to run the Radeon in plain VGA mode. 9241da177e4SLinus Torvalds 9251da177e4SLinus Torvalds If you say Y here and want DDC/I2C support you must first say Y to 9261da177e4SLinus Torvalds "I2C support" and "I2C bit-banging support" in the character devices 9271da177e4SLinus Torvalds section. 9281da177e4SLinus Torvalds 9291da177e4SLinus Torvalds If you say M here then "I2C support" and "I2C bit-banging support" 9301da177e4SLinus Torvalds can be build either as modules or built-in. 9311da177e4SLinus Torvalds 9321da177e4SLinus Torvalds There is a product page at 933f510a3c3SAntonino A. Daplas http://apps.ati.com/ATIcompare/ 9341da177e4SLinus Torvaldsconfig FB_RADEON_I2C 9351da177e4SLinus Torvalds bool "DDC/I2C for ATI Radeon support" 9361da177e4SLinus Torvalds depends on FB_RADEON 9371da177e4SLinus Torvalds default y 9381da177e4SLinus Torvalds help 9391da177e4SLinus Torvalds Say Y here if you want DDC/I2C support for your Radeon board. 9401da177e4SLinus Torvalds 9411da177e4SLinus Torvaldsconfig FB_RADEON_DEBUG 9421da177e4SLinus Torvalds bool "Lots of debug output from Radeon driver" 9431da177e4SLinus Torvalds depends on FB_RADEON 9441da177e4SLinus Torvalds default n 9451da177e4SLinus Torvalds help 9461da177e4SLinus Torvalds Say Y here if you want the Radeon driver to output all sorts 9471da177e4SLinus Torvalds of debugging informations to provide to the maintainer when 9481da177e4SLinus Torvalds something goes wrong. 9491da177e4SLinus Torvalds 9501da177e4SLinus Torvaldsconfig FB_ATY128 9511da177e4SLinus Torvalds tristate "ATI Rage128 display support" 9521da177e4SLinus Torvalds depends on FB && PCI 9531da177e4SLinus Torvalds select FB_CFB_FILLRECT 9541da177e4SLinus Torvalds select FB_CFB_COPYAREA 9551da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 9561da177e4SLinus Torvalds select FB_MACMODES if PPC_PMAC 9571da177e4SLinus Torvalds help 9581da177e4SLinus Torvalds This driver supports graphics boards with the ATI Rage128 chips. 9591da177e4SLinus Torvalds Say Y if you have such a graphics board and read 9601da177e4SLinus Torvalds <file:Documentation/fb/aty128fb.txt>. 9611da177e4SLinus Torvalds 9621da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 9631da177e4SLinus Torvalds module will be called aty128fb. 9641da177e4SLinus Torvalds 9651da177e4SLinus Torvaldsconfig FB_ATY 9661da177e4SLinus Torvalds tristate "ATI Mach64 display support" if PCI || ATARI 9671da177e4SLinus Torvalds depends on FB 9681da177e4SLinus Torvalds select FB_CFB_FILLRECT 9691da177e4SLinus Torvalds select FB_CFB_COPYAREA 9701da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 9711da177e4SLinus Torvalds select FB_MACMODES if PPC 9721da177e4SLinus Torvalds help 9731da177e4SLinus Torvalds This driver supports graphics boards with the ATI Mach64 chips. 9741da177e4SLinus Torvalds Say Y if you have such a graphics board. 9751da177e4SLinus Torvalds 9761da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 9771da177e4SLinus Torvalds module will be called atyfb. 9781da177e4SLinus Torvalds 9791da177e4SLinus Torvaldsconfig FB_ATY_CT 9801da177e4SLinus Torvalds bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support" 9811da177e4SLinus Torvalds depends on PCI && FB_ATY 9821da177e4SLinus Torvalds default y if SPARC64 && FB_PCI 9831da177e4SLinus Torvalds help 9841da177e4SLinus Torvalds Say Y here to support use of ATI's 64-bit Rage boards (or other 9851da177e4SLinus Torvalds boards based on the Mach64 CT, VT, GT, and LT chipsets) as a 9861da177e4SLinus Torvalds framebuffer device. The ATI product support page for these boards 9871da177e4SLinus Torvalds is at <http://support.ati.com/products/pc/mach64/>. 9881da177e4SLinus Torvalds 9891da177e4SLinus Torvaldsconfig FB_ATY_GENERIC_LCD 9901da177e4SLinus Torvalds bool "Mach64 generic LCD support (EXPERIMENTAL)" 9911da177e4SLinus Torvalds depends on FB_ATY_CT 9921da177e4SLinus Torvalds help 9931da177e4SLinus Torvalds Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility, 9941da177e4SLinus Torvalds Rage XC, or Rage XL chipset. 9951da177e4SLinus Torvalds 9961da177e4SLinus Torvaldsconfig FB_ATY_XL_INIT 9971da177e4SLinus Torvalds bool "Rage XL No-BIOS Init support" 9981da177e4SLinus Torvalds depends on FB_ATY_CT 9991da177e4SLinus Torvalds help 10001da177e4SLinus Torvalds Say Y here to support booting a Rage XL without BIOS support. 10011da177e4SLinus Torvalds 10021da177e4SLinus Torvaldsconfig FB_ATY_GX 10031da177e4SLinus Torvalds bool "Mach64 GX support" if PCI 10041da177e4SLinus Torvalds depends on FB_ATY 10051da177e4SLinus Torvalds default y if ATARI 10061da177e4SLinus Torvalds help 10071da177e4SLinus Torvalds Say Y here to support use of the ATI Mach64 Graphics Expression 10081da177e4SLinus Torvalds board (or other boards based on the Mach64 GX chipset) as a 10091da177e4SLinus Torvalds framebuffer device. The ATI product support page for these boards 10101da177e4SLinus Torvalds is at 10111da177e4SLinus Torvalds <http://support.ati.com/products/pc/mach64/graphics_xpression.html>. 10121da177e4SLinus Torvalds 1013e65c0850SRandy.Dunlapconfig FB_S3TRIO 1014e65c0850SRandy.Dunlap bool "S3 Trio display support" 1015e65c0850SRandy.Dunlap depends on (FB = y) && PPC && BROKEN 1016e65c0850SRandy.Dunlap help 1017e65c0850SRandy.Dunlap If you have a S3 Trio say Y. Say N for S3 Virge. 1018e65c0850SRandy.Dunlap 10191da177e4SLinus Torvaldsconfig FB_SAVAGE 10201da177e4SLinus Torvalds tristate "S3 Savage support" 10211da177e4SLinus Torvalds depends on FB && PCI && EXPERIMENTAL 10221da177e4SLinus Torvalds select I2C_ALGOBIT if FB_SAVAGE_I2C 10231da177e4SLinus Torvalds select I2C if FB_SAVAGE_I2C 10241da177e4SLinus Torvalds select FB_MODE_HELPERS 10251da177e4SLinus Torvalds select FB_CFB_FILLRECT 10261da177e4SLinus Torvalds select FB_CFB_COPYAREA 10271da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 10281da177e4SLinus Torvalds help 10291da177e4SLinus Torvalds This driver supports notebooks and computers with S3 Savage PCI/AGP 10301da177e4SLinus Torvalds chips. 10311da177e4SLinus Torvalds 10321da177e4SLinus Torvalds Say Y if you have such a graphics card. 10331da177e4SLinus Torvalds 10341da177e4SLinus Torvalds To compile this driver as a module, choose M here; the module 10351da177e4SLinus Torvalds will be called savagefb. 10361da177e4SLinus Torvalds 10371da177e4SLinus Torvaldsconfig FB_SAVAGE_I2C 10381da177e4SLinus Torvalds bool "Enable DDC2 Support" 10391da177e4SLinus Torvalds depends on FB_SAVAGE 10401da177e4SLinus Torvalds help 10411da177e4SLinus Torvalds This enables I2C support for S3 Savage Chipsets. This is used 10421da177e4SLinus Torvalds only for getting EDID information from the attached display 10431da177e4SLinus Torvalds allowing for robust video mode handling and switching. 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvalds Because fbdev-2.6 requires that drivers must be able to 10461da177e4SLinus Torvalds independently validate video mode parameters, you should say Y 10471da177e4SLinus Torvalds here. 10481da177e4SLinus Torvalds 10491da177e4SLinus Torvaldsconfig FB_SAVAGE_ACCEL 10501da177e4SLinus Torvalds bool "Enable Console Acceleration" 10511da177e4SLinus Torvalds depends on FB_SAVAGE 10521da177e4SLinus Torvalds default n 10531da177e4SLinus Torvalds help 10541da177e4SLinus Torvalds This option will compile in console acceleration support. If 10551da177e4SLinus Torvalds the resulting framebuffer console has bothersome glitches, then 10561da177e4SLinus Torvalds choose N here. 10571da177e4SLinus Torvalds 10581da177e4SLinus Torvaldsconfig FB_SIS 1059544393feSThomas Winischhofer tristate "SiS/XGI display support" 10601da177e4SLinus Torvalds depends on FB && PCI 10611da177e4SLinus Torvalds select FB_CFB_FILLRECT 10621da177e4SLinus Torvalds select FB_CFB_COPYAREA 10631da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 10641da177e4SLinus Torvalds help 1065544393feSThomas Winischhofer This is the frame buffer device driver for the SiS 300, 315, 330 1066544393feSThomas Winischhofer and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets. 1067544393feSThomas Winischhofer Specs available at <http://www.sis.com> and <http://www.xgitech.com>. 10681da177e4SLinus Torvalds 10691da177e4SLinus Torvalds To compile this driver as a module, choose M here; the module 10701da177e4SLinus Torvalds will be called sisfb. 10711da177e4SLinus Torvalds 10721da177e4SLinus Torvaldsconfig FB_SIS_300 10731da177e4SLinus Torvalds bool "SiS 300 series support" 10741da177e4SLinus Torvalds depends on FB_SIS 10751da177e4SLinus Torvalds help 10761da177e4SLinus Torvalds Say Y here to support use of the SiS 300/305, 540, 630 and 730. 10771da177e4SLinus Torvalds 10781da177e4SLinus Torvaldsconfig FB_SIS_315 1079544393feSThomas Winischhofer bool "SiS 315/330/340 series and XGI support" 10801da177e4SLinus Torvalds depends on FB_SIS 10811da177e4SLinus Torvalds help 1082544393feSThomas Winischhofer Say Y here to support use of the SiS 315, 330 and 340 series 1083544393feSThomas Winischhofer (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well 1084544393feSThomas Winischhofer as XGI V3XT, V5, V8 and Z7. 10851da177e4SLinus Torvalds 10861da177e4SLinus Torvaldsconfig FB_NEOMAGIC 10871da177e4SLinus Torvalds tristate "NeoMagic display support" 10881da177e4SLinus Torvalds depends on FB && PCI 10891da177e4SLinus Torvalds select FB_MODE_HELPERS 10901da177e4SLinus Torvalds select FB_CFB_FILLRECT 10911da177e4SLinus Torvalds select FB_CFB_COPYAREA 10921da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 10931da177e4SLinus Torvalds help 10941da177e4SLinus Torvalds This driver supports notebooks with NeoMagic PCI chips. 10951da177e4SLinus Torvalds Say Y if you have such a graphics card. 10961da177e4SLinus Torvalds 10971da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 10981da177e4SLinus Torvalds module will be called neofb. 10991da177e4SLinus Torvalds 11001da177e4SLinus Torvaldsconfig FB_KYRO 11011da177e4SLinus Torvalds tristate "IMG Kyro support" 11021da177e4SLinus Torvalds depends on FB && PCI 11031da177e4SLinus Torvalds select FB_CFB_FILLRECT 11041da177e4SLinus Torvalds select FB_CFB_COPYAREA 11051da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 11061da177e4SLinus Torvalds help 11071da177e4SLinus Torvalds Say Y here if you have a STG4000 / Kyro / PowerVR 3 based 11081da177e4SLinus Torvalds graphics board. 11091da177e4SLinus Torvalds 11101da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 11111da177e4SLinus Torvalds module will be called kyrofb. 11121da177e4SLinus Torvalds 11131da177e4SLinus Torvaldsconfig FB_3DFX 11141da177e4SLinus Torvalds tristate "3Dfx Banshee/Voodoo3 display support" 11151da177e4SLinus Torvalds depends on FB && PCI 11161da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 11171da177e4SLinus Torvalds select FB_CFB_FILLRECT 11181da177e4SLinus Torvalds select FB_CFB_COPYAREA 11191da177e4SLinus Torvalds help 11201da177e4SLinus Torvalds This driver supports graphics boards with the 3Dfx Banshee/Voodoo3 11211da177e4SLinus Torvalds chips. Say Y if you have such a graphics board. 11221da177e4SLinus Torvalds 11231da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 11241da177e4SLinus Torvalds module will be called tdfxfb. 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvaldsconfig FB_3DFX_ACCEL 11271da177e4SLinus Torvalds bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)" 11281da177e4SLinus Torvalds depends on FB_3DFX && EXPERIMENTAL 11291da177e4SLinus Torvalds ---help--- 11301da177e4SLinus Torvalds This will compile the 3Dfx Banshee/Voodoo3 frame buffer device 11311da177e4SLinus Torvalds with acceleration functions. 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds 11341da177e4SLinus Torvaldsconfig FB_VOODOO1 11351da177e4SLinus Torvalds tristate "3Dfx Voodoo Graphics (sst1) support" 11361da177e4SLinus Torvalds depends on FB && PCI 11371da177e4SLinus Torvalds select FB_CFB_FILLRECT 11381da177e4SLinus Torvalds select FB_CFB_COPYAREA 11391da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 11401da177e4SLinus Torvalds ---help--- 11411da177e4SLinus Torvalds Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or 11421da177e4SLinus Torvalds Voodoo2 (cvg) based graphics card. 11431da177e4SLinus Torvalds 11441da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 11451da177e4SLinus Torvalds module will be called sstfb. 11461da177e4SLinus Torvalds 11471da177e4SLinus Torvalds WARNING: Do not use any application that uses the 3D engine 11481da177e4SLinus Torvalds (namely glide) while using this driver. 11491da177e4SLinus Torvalds Please read the <file:Documentation/fb/README-sstfb.txt> for supported 11501da177e4SLinus Torvalds options and other important info support. 11511da177e4SLinus Torvalds 11529fa68eaeSKnut Petersenconfig FB_CYBLA 11539fa68eaeSKnut Petersen tristate "Cyberblade/i1 support" 11549fa68eaeSKnut Petersen depends on FB && PCI 11559fa68eaeSKnut Petersen select FB_CFB_IMAGEBLIT 11569fa68eaeSKnut Petersen select VIDEO_SELECT 11579fa68eaeSKnut Petersen ---help--- 11589fa68eaeSKnut Petersen This driver is supposed to support the Trident Cyberblade/i1 11599fa68eaeSKnut Petersen graphics core integrated in the VIA VT8601A North Bridge, 11609fa68eaeSKnut Petersen also known as VIA Apollo PLE133. 11619fa68eaeSKnut Petersen 11629fa68eaeSKnut Petersen Status: 11639fa68eaeSKnut Petersen - Developed, tested and working on EPIA 5000 and EPIA 800. 11649fa68eaeSKnut Petersen - Does work reliable on all systems with CRT/LCD connected to 11659fa68eaeSKnut Petersen normal VGA ports. 11669fa68eaeSKnut Petersen - Should work on systems that do use the internal LCD port, but 11679fa68eaeSKnut Petersen this is absolutely not tested. 11689fa68eaeSKnut Petersen 11699fa68eaeSKnut Petersen Character imageblit, copyarea and rectangle fill are hw accelerated, 11709fa68eaeSKnut Petersen ypan scrolling is used by default. 11719fa68eaeSKnut Petersen 11729fa68eaeSKnut Petersen Please do read <file:Documentation/fb/cyblafb/*>. 11739fa68eaeSKnut Petersen 11749fa68eaeSKnut Petersen To compile this driver as a module, choose M here: the 11759fa68eaeSKnut Petersen module will be called cyblafb. 11769fa68eaeSKnut Petersen 11771da177e4SLinus Torvaldsconfig FB_TRIDENT 11781da177e4SLinus Torvalds tristate "Trident support" 11791da177e4SLinus Torvalds depends on FB && PCI 11801da177e4SLinus Torvalds select FB_CFB_FILLRECT 11811da177e4SLinus Torvalds select FB_CFB_COPYAREA 11821da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 11831da177e4SLinus Torvalds ---help--- 11841da177e4SLinus Torvalds This driver is supposed to support graphics boards with the 11851da177e4SLinus Torvalds Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops 11861da177e4SLinus Torvalds but also on some motherboards. For more information, read 11871da177e4SLinus Torvalds <file:Documentation/fb/tridentfb.txt> 11881da177e4SLinus Torvalds 11899fa68eaeSKnut Petersen Cyberblade/i1 support will be removed soon, use the cyblafb driver 11909fa68eaeSKnut Petersen instead. 11919fa68eaeSKnut Petersen 11921da177e4SLinus Torvalds Say Y if you have such a graphics board. 11931da177e4SLinus Torvalds 11949fa68eaeSKnut Petersen 11951da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 11961da177e4SLinus Torvalds module will be called tridentfb. 11971da177e4SLinus Torvalds 11981da177e4SLinus Torvaldsconfig FB_TRIDENT_ACCEL 11991da177e4SLinus Torvalds bool "Trident Acceleration functions (EXPERIMENTAL)" 12001da177e4SLinus Torvalds depends on FB_TRIDENT && EXPERIMENTAL 12011da177e4SLinus Torvalds ---help--- 12021da177e4SLinus Torvalds This will compile the Trident frame buffer device with 12031da177e4SLinus Torvalds acceleration functions. 12041da177e4SLinus Torvalds 12051da177e4SLinus Torvaldsconfig FB_PM3 12061da177e4SLinus Torvalds tristate "Permedia3 support" 12071da177e4SLinus Torvalds depends on FB && PCI && BROKEN 12081da177e4SLinus Torvalds help 12091da177e4SLinus Torvalds This is the frame buffer device driver for the 3DLabs Permedia3 12101da177e4SLinus Torvalds chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 & 12111da177e4SLinus Torvalds similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000 12121da177e4SLinus Torvalds and maybe other boards. 12131da177e4SLinus Torvalds 12141da177e4SLinus Torvaldsconfig FB_AU1100 12151da177e4SLinus Torvalds bool "Au1100 LCD Driver" 12161da177e4SLinus Torvalds depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y 12171da177e4SLinus Torvalds 12181da177e4SLinus Torvaldssource "drivers/video/geode/Kconfig" 12191da177e4SLinus Torvalds 12201da177e4SLinus Torvaldsconfig FB_FFB 12211da177e4SLinus Torvalds bool "Creator/Creator3D/Elite3D support" 12221da177e4SLinus Torvalds depends on FB_SBUS && SPARC64 12231da177e4SLinus Torvalds select FB_CFB_COPYAREA 12241da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12251da177e4SLinus Torvalds help 12261da177e4SLinus Torvalds This is the frame buffer device driver for the Creator, Creator3D, 12271da177e4SLinus Torvalds and Elite3D graphics boards. 12281da177e4SLinus Torvalds 12291da177e4SLinus Torvaldsconfig FB_TCX 12301da177e4SLinus Torvalds bool "TCX (SS4/SS5 only) support" 12311da177e4SLinus Torvalds depends on FB_SBUS 12321da177e4SLinus Torvalds select FB_CFB_FILLRECT 12331da177e4SLinus Torvalds select FB_CFB_COPYAREA 12341da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12351da177e4SLinus Torvalds help 12361da177e4SLinus Torvalds This is the frame buffer device driver for the TCX 24/8bit frame 12371da177e4SLinus Torvalds buffer. 12381da177e4SLinus Torvalds 12391da177e4SLinus Torvaldsconfig FB_CG14 12401da177e4SLinus Torvalds bool "CGfourteen (SX) support" 12411da177e4SLinus Torvalds depends on FB_SBUS 12421da177e4SLinus Torvalds select FB_CFB_FILLRECT 12431da177e4SLinus Torvalds select FB_CFB_COPYAREA 12441da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12451da177e4SLinus Torvalds help 12461da177e4SLinus Torvalds This is the frame buffer device driver for the CGfourteen frame 12471da177e4SLinus Torvalds buffer on Desktop SPARCsystems with the SX graphics option. 12481da177e4SLinus Torvalds 12491da177e4SLinus Torvaldsconfig FB_P9100 12501da177e4SLinus Torvalds bool "P9100 (Sparcbook 3 only) support" 12511da177e4SLinus Torvalds depends on FB_SBUS 12521da177e4SLinus Torvalds select FB_CFB_FILLRECT 12531da177e4SLinus Torvalds select FB_CFB_COPYAREA 12541da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12551da177e4SLinus Torvalds help 12561da177e4SLinus Torvalds This is the frame buffer device driver for the P9100 card 12571da177e4SLinus Torvalds supported on Sparcbook 3 machines. 12581da177e4SLinus Torvalds 12591da177e4SLinus Torvaldsconfig FB_LEO 12601da177e4SLinus Torvalds bool "Leo (ZX) support" 12611da177e4SLinus Torvalds depends on FB_SBUS 12621da177e4SLinus Torvalds select FB_CFB_FILLRECT 12631da177e4SLinus Torvalds select FB_CFB_COPYAREA 12641da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12651da177e4SLinus Torvalds help 12661da177e4SLinus Torvalds This is the frame buffer device driver for the SBUS-based Sun ZX 12671da177e4SLinus Torvalds (leo) frame buffer cards. 12681da177e4SLinus Torvalds 12691da177e4SLinus Torvaldsconfig FB_PCI 12701da177e4SLinus Torvalds bool "PCI framebuffers" 1271*0b57ee9eSAdrian Bunk depends on (FB = y) && PCI && SPARC 12721da177e4SLinus Torvalds 12731da177e4SLinus Torvaldsconfig FB_IGA 12741da177e4SLinus Torvalds bool "IGA 168x display support" 12751da177e4SLinus Torvalds depends on SPARC32 && FB_PCI 12761da177e4SLinus Torvalds select FB_CFB_FILLRECT 12771da177e4SLinus Torvalds select FB_CFB_COPYAREA 12781da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12791da177e4SLinus Torvalds help 12801da177e4SLinus Torvalds This is the framebuffer device for the INTERGRAPHICS 1680 and 12811da177e4SLinus Torvalds successor frame buffer cards. 12821da177e4SLinus Torvalds 12831da177e4SLinus Torvaldsconfig FB_HIT 12841da177e4SLinus Torvalds tristate "HD64461 Frame Buffer support" 12851da177e4SLinus Torvalds depends on FB && HD64461 12861da177e4SLinus Torvalds select FB_CFB_FILLRECT 12871da177e4SLinus Torvalds select FB_CFB_COPYAREA 12881da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12891da177e4SLinus Torvalds help 12901da177e4SLinus Torvalds This is the frame buffer device driver for the Hitachi HD64461 LCD 12911da177e4SLinus Torvalds frame buffer card. 12921da177e4SLinus Torvalds 12931da177e4SLinus Torvaldsconfig FB_PMAG_AA 12941da177e4SLinus Torvalds bool "PMAG-AA TURBOchannel framebuffer support" 1295a9350003SMaciej W. Rozycki depends on (FB = y) && TC 12961da177e4SLinus Torvalds select FB_CFB_FILLRECT 12971da177e4SLinus Torvalds select FB_CFB_COPYAREA 12981da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 12991da177e4SLinus Torvalds help 13001da177e4SLinus Torvalds Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1) 13011da177e4SLinus Torvalds used mainly in the MIPS-based DECstation series. 13021da177e4SLinus Torvalds 13031da177e4SLinus Torvaldsconfig FB_PMAG_BA 13041da177e4SLinus Torvalds bool "PMAG-BA TURBOchannel framebuffer support" 1305a9350003SMaciej W. Rozycki depends on (FB = y) && TC 13061da177e4SLinus Torvalds select FB_CFB_FILLRECT 13071da177e4SLinus Torvalds select FB_CFB_COPYAREA 13081da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13091da177e4SLinus Torvalds help 13101da177e4SLinus Torvalds Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8) 13111da177e4SLinus Torvalds used mainly in the MIPS-based DECstation series. 13121da177e4SLinus Torvalds 13131da177e4SLinus Torvaldsconfig FB_PMAGB_B 13141da177e4SLinus Torvalds bool "PMAGB-B TURBOchannel framebuffer support" 1315a9350003SMaciej W. Rozycki depends on (FB = y) && TC 13161da177e4SLinus Torvalds select FB_CFB_FILLRECT 13171da177e4SLinus Torvalds select FB_CFB_COPYAREA 13181da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13191da177e4SLinus Torvalds help 13201da177e4SLinus Torvalds Support for the PMAGB-B TURBOchannel framebuffer card used mainly 13211da177e4SLinus Torvalds in the MIPS-based DECstation series. The card is currently only 13221da177e4SLinus Torvalds supported in 1280x1024x8 mode. 13231da177e4SLinus Torvalds 13241da177e4SLinus Torvaldsconfig FB_MAXINE 13251da177e4SLinus Torvalds bool "Maxine (Personal DECstation) onboard framebuffer support" 1326a9350003SMaciej W. Rozycki depends on (FB = y) && MACH_DECSTATION 13271da177e4SLinus Torvalds select FB_CFB_FILLRECT 13281da177e4SLinus Torvalds select FB_CFB_COPYAREA 13291da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13301da177e4SLinus Torvalds help 13311da177e4SLinus Torvalds Support for the onboard framebuffer (1024x768x8) in the Personal 13321da177e4SLinus Torvalds DECstation series (Personal DECstation 5000/20, /25, /33, /50, 13331da177e4SLinus Torvalds Codename "Maxine"). 13341da177e4SLinus Torvalds 13351da177e4SLinus Torvaldsconfig FB_TX3912 13361da177e4SLinus Torvalds bool "TMPTX3912/PR31700 frame buffer support" 13371da177e4SLinus Torvalds depends on (FB = y) && NINO 13381da177e4SLinus Torvalds select FB_CFB_FILLRECT 13391da177e4SLinus Torvalds select FB_CFB_COPYAREA 13401da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13411da177e4SLinus Torvalds help 13421da177e4SLinus Torvalds The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core 13431da177e4SLinus Torvalds see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>. 13441da177e4SLinus Torvalds 13451da177e4SLinus Torvalds Say Y here to enable kernel support for the on-board framebuffer. 13461da177e4SLinus Torvalds 13471da177e4SLinus Torvaldsconfig FB_G364 1348b38817ddSYoichi Yuasa bool "G364 frame buffer support" 1349b38817ddSYoichi Yuasa depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700) 13501da177e4SLinus Torvalds select FB_CFB_FILLRECT 13511da177e4SLinus Torvalds select FB_CFB_COPYAREA 13521da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13531da177e4SLinus Torvalds help 13541da177e4SLinus Torvalds The G364 driver is the framebuffer used in MIPS Magnum 4000 and 13551da177e4SLinus Torvalds Olivetti M700-10 systems. 13561da177e4SLinus Torvalds 13571da177e4SLinus Torvaldsconfig FB_68328 13581da177e4SLinus Torvalds bool "Motorola 68328 native frame buffer support" 13591da177e4SLinus Torvalds depends on FB && (M68328 || M68EZ328 || M68VZ328) 13601da177e4SLinus Torvalds select FB_CFB_FILLRECT 13611da177e4SLinus Torvalds select FB_CFB_COPYAREA 13621da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13631da177e4SLinus Torvalds help 13641da177e4SLinus Torvalds Say Y here if you want to support the built-in frame buffer of 13651da177e4SLinus Torvalds the Motorola 68328 CPU family. 13661da177e4SLinus Torvalds 13671da177e4SLinus Torvaldsconfig FB_PXA 13681da177e4SLinus Torvalds tristate "PXA LCD framebuffer support" 13691da177e4SLinus Torvalds depends on FB && ARCH_PXA 13701da177e4SLinus Torvalds select FB_CFB_FILLRECT 13711da177e4SLinus Torvalds select FB_CFB_COPYAREA 13721da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 13731da177e4SLinus Torvalds ---help--- 13741da177e4SLinus Torvalds Frame buffer driver for the built-in LCD controller in the Intel 13751da177e4SLinus Torvalds PXA2x0 processor. 13761da177e4SLinus Torvalds 13771da177e4SLinus Torvalds This driver is also available as a module ( = code which can be 13781da177e4SLinus Torvalds inserted and removed from the running kernel whenever you want). The 13791da177e4SLinus Torvalds module will be called vfb. If you want to compile it as a module, 13801da177e4SLinus Torvalds say M here and read <file:Documentation/modules.txt>. 13811da177e4SLinus Torvalds 13821da177e4SLinus Torvalds If unsure, say N. 13831da177e4SLinus Torvalds 13841da177e4SLinus Torvaldsconfig FB_PXA_PARAMETERS 13851da177e4SLinus Torvalds bool "PXA LCD command line parameters" 13861da177e4SLinus Torvalds default n 13871da177e4SLinus Torvalds depends on FB_PXA 13881da177e4SLinus Torvalds ---help--- 13891da177e4SLinus Torvalds Enable the use of kernel command line or module parameters 13901da177e4SLinus Torvalds to configure the physical properties of the LCD panel when 13911da177e4SLinus Torvalds using the PXA LCD driver. 13921da177e4SLinus Torvalds 13931da177e4SLinus Torvalds This option allows you to override the panel parameters 13941da177e4SLinus Torvalds supplied by the platform in order to support multiple 13951da177e4SLinus Torvalds different models of flatpanel. If you will only be using a 13961da177e4SLinus Torvalds single model of flatpanel then you can safely leave this 13971da177e4SLinus Torvalds option disabled. 13981da177e4SLinus Torvalds 13991da177e4SLinus Torvalds <file:Documentation/fb/pxafb.txt> describes the available parameters. 14001da177e4SLinus Torvalds 1401ecc41d5eSRandy Dunlapconfig FB_W100 1402ecc41d5eSRandy Dunlap tristate "W100 frame buffer support" 1403ecc41d5eSRandy Dunlap depends on FB && PXA_SHARPSL 14041da177e4SLinus Torvalds select FB_CFB_FILLRECT 14051da177e4SLinus Torvalds select FB_CFB_COPYAREA 14061da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 1407ecc41d5eSRandy Dunlap ---help--- 1408ecc41d5eSRandy Dunlap Frame buffer driver for the w100 as found on the Sharp SL-Cxx series. 1409ecc41d5eSRandy Dunlap 1410ecc41d5eSRandy Dunlap This driver is also available as a module ( = code which can be 1411ecc41d5eSRandy Dunlap inserted and removed from the running kernel whenever you want). The 1412ecc41d5eSRandy Dunlap module will be called vfb. If you want to compile it as a module, 1413ecc41d5eSRandy Dunlap say M here and read <file:Documentation/modules.txt>. 1414ecc41d5eSRandy Dunlap 1415ecc41d5eSRandy Dunlap If unsure, say N. 14161da177e4SLinus Torvalds 141720fd5767SArnaud Patardconfig FB_S3C2410 141820fd5767SArnaud Patard tristate "S3C2410 LCD framebuffer support" 141920fd5767SArnaud Patard depends on FB && ARCH_S3C2410 142020fd5767SArnaud Patard select FB_CFB_FILLRECT 142120fd5767SArnaud Patard select FB_CFB_COPYAREA 142220fd5767SArnaud Patard select FB_CFB_IMAGEBLIT 142320fd5767SArnaud Patard ---help--- 142420fd5767SArnaud Patard Frame buffer driver for the built-in LCD controller in the Samsung 142520fd5767SArnaud Patard S3C2410 processor. 142620fd5767SArnaud Patard 142720fd5767SArnaud Patard This driver is also available as a module ( = code which can be 142820fd5767SArnaud Patard inserted and removed from the running kernel whenever you want). The 142920fd5767SArnaud Patard module will be called s3c2410fb. If you want to compile it as a module, 143020fd5767SArnaud Patard say M here and read <file:Documentation/modules.txt>. 143120fd5767SArnaud Patard 143220fd5767SArnaud Patard If unsure, say N. 143320fd5767SArnaud Patardconfig FB_S3C2410_DEBUG 143420fd5767SArnaud Patard bool "S3C2410 lcd debug messages" 143520fd5767SArnaud Patard depends on FB_S3C2410 143620fd5767SArnaud Patard help 143720fd5767SArnaud Patard Turn on debugging messages. Note that you can set/unset at run time 143820fd5767SArnaud Patard through sysfs 143920fd5767SArnaud Patard 14401da177e4SLinus Torvaldsconfig FB_VIRTUAL 14411da177e4SLinus Torvalds tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)" 14421da177e4SLinus Torvalds depends on FB 14431da177e4SLinus Torvalds select FB_CFB_FILLRECT 14441da177e4SLinus Torvalds select FB_CFB_COPYAREA 14451da177e4SLinus Torvalds select FB_CFB_IMAGEBLIT 14461da177e4SLinus Torvalds ---help--- 14471da177e4SLinus Torvalds This is a `virtual' frame buffer device. It operates on a chunk of 14481da177e4SLinus Torvalds unswappable kernel memory instead of on the memory of a graphics 14491da177e4SLinus Torvalds board. This means you cannot see any output sent to this frame 14501da177e4SLinus Torvalds buffer device, while it does consume precious memory. The main use 14511da177e4SLinus Torvalds of this frame buffer device is testing and debugging the frame 14521da177e4SLinus Torvalds buffer subsystem. Do NOT enable it for normal systems! To protect 14531da177e4SLinus Torvalds the innocent, it has to be enabled explicitly at boot time using the 14541da177e4SLinus Torvalds kernel option `video=vfb:'. 14551da177e4SLinus Torvalds 14561da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 14571da177e4SLinus Torvalds module will be called vfb. 14581da177e4SLinus Torvalds 14591da177e4SLinus Torvalds If unsure, say N. 14601da177e4SLinus Torvaldsif VT 14611da177e4SLinus Torvalds source "drivers/video/console/Kconfig" 14621da177e4SLinus Torvaldsendif 14631da177e4SLinus Torvalds 14641da177e4SLinus Torvaldsif FB || SGI_NEWPORT_CONSOLE 14651da177e4SLinus Torvalds source "drivers/video/logo/Kconfig" 14661da177e4SLinus Torvaldsendif 14671da177e4SLinus Torvalds 14681da177e4SLinus Torvaldsif FB && SYSFS 14691da177e4SLinus Torvalds source "drivers/video/backlight/Kconfig" 14701da177e4SLinus Torvaldsendif 14711da177e4SLinus Torvalds 14721da177e4SLinus Torvaldsendmenu 14731da177e4SLinus Torvalds 1474