18c2ecf20Sopenharmony_ci# SPDX-License-Identifier: GPL-2.0-only 28c2ecf20Sopenharmony_ci# 38c2ecf20Sopenharmony_ci# fbdev configuration 48c2ecf20Sopenharmony_ci# 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ciconfig FB_CMDLINE 78c2ecf20Sopenharmony_ci bool 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ciconfig FB_NOTIFY 108c2ecf20Sopenharmony_ci bool 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_cimenuconfig FB 138c2ecf20Sopenharmony_ci tristate "Support for frame buffer devices" 148c2ecf20Sopenharmony_ci select FB_CMDLINE 158c2ecf20Sopenharmony_ci select FB_NOTIFY 168c2ecf20Sopenharmony_ci help 178c2ecf20Sopenharmony_ci The frame buffer device provides an abstraction for the graphics 188c2ecf20Sopenharmony_ci hardware. It represents the frame buffer of some video hardware and 198c2ecf20Sopenharmony_ci allows application software to access the graphics hardware through 208c2ecf20Sopenharmony_ci a well-defined interface, so the software doesn't need to know 218c2ecf20Sopenharmony_ci anything about the low-level (hardware register) stuff. 228c2ecf20Sopenharmony_ci 238c2ecf20Sopenharmony_ci Frame buffer devices work identically across the different 248c2ecf20Sopenharmony_ci architectures supported by Linux and make the implementation of 258c2ecf20Sopenharmony_ci application programs easier and more portable; at this point, an X 268c2ecf20Sopenharmony_ci server exists which uses the frame buffer device exclusively. 278c2ecf20Sopenharmony_ci On several non-X86 architectures, the frame buffer device is the 288c2ecf20Sopenharmony_ci only way to use the graphics hardware. 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_ci The device is accessed through special device nodes, usually located 318c2ecf20Sopenharmony_ci in the /dev directory, i.e. /dev/fb*. 328c2ecf20Sopenharmony_ci 338c2ecf20Sopenharmony_ci You need an utility program called fbset to make full use of frame 348c2ecf20Sopenharmony_ci buffer devices. Please read <file:Documentation/fb/framebuffer.rst> 358c2ecf20Sopenharmony_ci and the Framebuffer-HOWTO at 368c2ecf20Sopenharmony_ci <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more 378c2ecf20Sopenharmony_ci information. 388c2ecf20Sopenharmony_ci 398c2ecf20Sopenharmony_ci Say Y here and to the driver for your graphics board below if you 408c2ecf20Sopenharmony_ci are compiling a kernel for a non-x86 architecture. 418c2ecf20Sopenharmony_ci 428c2ecf20Sopenharmony_ci If you are compiling for the x86 architecture, you can say Y if you 438c2ecf20Sopenharmony_ci want to play with it, but it is not essential. Please note that 448c2ecf20Sopenharmony_ci running graphical applications that directly touch the hardware 458c2ecf20Sopenharmony_ci (e.g. an accelerated X server) and that are not frame buffer 468c2ecf20Sopenharmony_ci device-aware may cause unexpected results. If unsure, say N. 478c2ecf20Sopenharmony_ci 488c2ecf20Sopenharmony_ciconfig FIRMWARE_EDID 498c2ecf20Sopenharmony_ci bool "Enable firmware EDID" 508c2ecf20Sopenharmony_ci depends on FB 518c2ecf20Sopenharmony_ci help 528c2ecf20Sopenharmony_ci This enables access to the EDID transferred from the firmware. 538c2ecf20Sopenharmony_ci On the i386, this is from the Video BIOS. Enable this if DDC/I2C 548c2ecf20Sopenharmony_ci transfers do not work for your driver and if you are using 558c2ecf20Sopenharmony_ci nvidiafb, i810fb or savagefb. 568c2ecf20Sopenharmony_ci 578c2ecf20Sopenharmony_ci In general, choosing Y for this option is safe. If you 588c2ecf20Sopenharmony_ci experience extremely long delays while booting before you get 598c2ecf20Sopenharmony_ci something on your display, try setting this to N. Matrox cards in 608c2ecf20Sopenharmony_ci combination with certain motherboards and monitors are known to 618c2ecf20Sopenharmony_ci suffer from this problem. 628c2ecf20Sopenharmony_ci 638c2ecf20Sopenharmony_ciconfig FB_DDC 648c2ecf20Sopenharmony_ci tristate 658c2ecf20Sopenharmony_ci depends on FB 668c2ecf20Sopenharmony_ci select I2C_ALGOBIT 678c2ecf20Sopenharmony_ci select I2C 688c2ecf20Sopenharmony_ci 698c2ecf20Sopenharmony_ciconfig FB_BOOT_VESA_SUPPORT 708c2ecf20Sopenharmony_ci bool 718c2ecf20Sopenharmony_ci depends on FB 728c2ecf20Sopenharmony_ci help 738c2ecf20Sopenharmony_ci If true, at least one selected framebuffer driver can take advantage 748c2ecf20Sopenharmony_ci of VESA video modes set at an early boot stage via the vga= parameter. 758c2ecf20Sopenharmony_ci 768c2ecf20Sopenharmony_ciconfig FB_CFB_FILLRECT 778c2ecf20Sopenharmony_ci tristate 788c2ecf20Sopenharmony_ci depends on FB 798c2ecf20Sopenharmony_ci help 808c2ecf20Sopenharmony_ci Include the cfb_fillrect function for generic software rectangle 818c2ecf20Sopenharmony_ci filling. This is used by drivers that don't provide their own 828c2ecf20Sopenharmony_ci (accelerated) version. 838c2ecf20Sopenharmony_ci 848c2ecf20Sopenharmony_ciconfig FB_CFB_COPYAREA 858c2ecf20Sopenharmony_ci tristate 868c2ecf20Sopenharmony_ci depends on FB 878c2ecf20Sopenharmony_ci help 888c2ecf20Sopenharmony_ci Include the cfb_copyarea function for generic software area copying. 898c2ecf20Sopenharmony_ci This is used by drivers that don't provide their own (accelerated) 908c2ecf20Sopenharmony_ci version. 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_ciconfig FB_CFB_IMAGEBLIT 938c2ecf20Sopenharmony_ci tristate 948c2ecf20Sopenharmony_ci depends on FB 958c2ecf20Sopenharmony_ci help 968c2ecf20Sopenharmony_ci Include the cfb_imageblit function for generic software image 978c2ecf20Sopenharmony_ci blitting. This is used by drivers that don't provide their own 988c2ecf20Sopenharmony_ci (accelerated) version. 998c2ecf20Sopenharmony_ci 1008c2ecf20Sopenharmony_ciconfig FB_CFB_REV_PIXELS_IN_BYTE 1018c2ecf20Sopenharmony_ci bool 1028c2ecf20Sopenharmony_ci depends on FB 1038c2ecf20Sopenharmony_ci help 1048c2ecf20Sopenharmony_ci Allow generic frame-buffer functions to work on displays with 1, 2 1058c2ecf20Sopenharmony_ci and 4 bits per pixel depths which has opposite order of pixels in 1068c2ecf20Sopenharmony_ci byte order to bytes in long order. 1078c2ecf20Sopenharmony_ci 1088c2ecf20Sopenharmony_ciconfig FB_SYS_FILLRECT 1098c2ecf20Sopenharmony_ci tristate 1108c2ecf20Sopenharmony_ci depends on FB 1118c2ecf20Sopenharmony_ci help 1128c2ecf20Sopenharmony_ci Include the sys_fillrect function for generic software rectangle 1138c2ecf20Sopenharmony_ci filling. This is used by drivers that don't provide their own 1148c2ecf20Sopenharmony_ci (accelerated) version and the framebuffer is in system RAM. 1158c2ecf20Sopenharmony_ci 1168c2ecf20Sopenharmony_ciconfig FB_SYS_COPYAREA 1178c2ecf20Sopenharmony_ci tristate 1188c2ecf20Sopenharmony_ci depends on FB 1198c2ecf20Sopenharmony_ci help 1208c2ecf20Sopenharmony_ci Include the sys_copyarea function for generic software area copying. 1218c2ecf20Sopenharmony_ci This is used by drivers that don't provide their own (accelerated) 1228c2ecf20Sopenharmony_ci version and the framebuffer is in system RAM. 1238c2ecf20Sopenharmony_ci 1248c2ecf20Sopenharmony_ciconfig FB_SYS_IMAGEBLIT 1258c2ecf20Sopenharmony_ci tristate 1268c2ecf20Sopenharmony_ci depends on FB 1278c2ecf20Sopenharmony_ci help 1288c2ecf20Sopenharmony_ci Include the sys_imageblit function for generic software image 1298c2ecf20Sopenharmony_ci blitting. This is used by drivers that don't provide their own 1308c2ecf20Sopenharmony_ci (accelerated) version and the framebuffer is in system RAM. 1318c2ecf20Sopenharmony_ci 1328c2ecf20Sopenharmony_ciconfig FB_PROVIDE_GET_FB_UNMAPPED_AREA 1338c2ecf20Sopenharmony_ci bool 1348c2ecf20Sopenharmony_ci depends on FB 1358c2ecf20Sopenharmony_ci help 1368c2ecf20Sopenharmony_ci Allow generic frame-buffer to provide get_fb_unmapped_area 1378c2ecf20Sopenharmony_ci function. 1388c2ecf20Sopenharmony_ci 1398c2ecf20Sopenharmony_cimenuconfig FB_FOREIGN_ENDIAN 1408c2ecf20Sopenharmony_ci bool "Framebuffer foreign endianness support" 1418c2ecf20Sopenharmony_ci depends on FB 1428c2ecf20Sopenharmony_ci help 1438c2ecf20Sopenharmony_ci This menu will let you enable support for the framebuffers with 1448c2ecf20Sopenharmony_ci non-native endianness (e.g. Little-Endian framebuffer on a 1458c2ecf20Sopenharmony_ci Big-Endian machine). Most probably you don't have such hardware, 1468c2ecf20Sopenharmony_ci so it's safe to say "n" here. 1478c2ecf20Sopenharmony_ci 1488c2ecf20Sopenharmony_cichoice 1498c2ecf20Sopenharmony_ci prompt "Choice endianness support" 1508c2ecf20Sopenharmony_ci depends on FB_FOREIGN_ENDIAN 1518c2ecf20Sopenharmony_ci 1528c2ecf20Sopenharmony_ciconfig FB_BOTH_ENDIAN 1538c2ecf20Sopenharmony_ci bool "Support for Big- and Little-Endian framebuffers" 1548c2ecf20Sopenharmony_ci 1558c2ecf20Sopenharmony_ciconfig FB_BIG_ENDIAN 1568c2ecf20Sopenharmony_ci bool "Support for Big-Endian framebuffers only" 1578c2ecf20Sopenharmony_ci 1588c2ecf20Sopenharmony_ciconfig FB_LITTLE_ENDIAN 1598c2ecf20Sopenharmony_ci bool "Support for Little-Endian framebuffers only" 1608c2ecf20Sopenharmony_ci 1618c2ecf20Sopenharmony_ciendchoice 1628c2ecf20Sopenharmony_ci 1638c2ecf20Sopenharmony_ciconfig FB_SYS_FOPS 1648c2ecf20Sopenharmony_ci tristate 1658c2ecf20Sopenharmony_ci depends on FB 1668c2ecf20Sopenharmony_ci 1678c2ecf20Sopenharmony_ciconfig FB_DEFERRED_IO 1688c2ecf20Sopenharmony_ci bool 1698c2ecf20Sopenharmony_ci depends on FB 1708c2ecf20Sopenharmony_ci 1718c2ecf20Sopenharmony_ciconfig FB_HECUBA 1728c2ecf20Sopenharmony_ci tristate 1738c2ecf20Sopenharmony_ci depends on FB 1748c2ecf20Sopenharmony_ci depends on FB_DEFERRED_IO 1758c2ecf20Sopenharmony_ci 1768c2ecf20Sopenharmony_ciconfig FB_SVGALIB 1778c2ecf20Sopenharmony_ci tristate 1788c2ecf20Sopenharmony_ci depends on FB 1798c2ecf20Sopenharmony_ci help 1808c2ecf20Sopenharmony_ci Common utility functions useful to fbdev drivers of VGA-based 1818c2ecf20Sopenharmony_ci cards. 1828c2ecf20Sopenharmony_ci 1838c2ecf20Sopenharmony_ciconfig FB_MACMODES 1848c2ecf20Sopenharmony_ci tristate 1858c2ecf20Sopenharmony_ci depends on FB 1868c2ecf20Sopenharmony_ci 1878c2ecf20Sopenharmony_ciconfig FB_BACKLIGHT 1888c2ecf20Sopenharmony_ci tristate 1898c2ecf20Sopenharmony_ci depends on FB 1908c2ecf20Sopenharmony_ci select BACKLIGHT_CLASS_DEVICE 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_ciconfig FB_MODE_HELPERS 1938c2ecf20Sopenharmony_ci bool "Enable Video Mode Handling Helpers" 1948c2ecf20Sopenharmony_ci depends on FB 1958c2ecf20Sopenharmony_ci help 1968c2ecf20Sopenharmony_ci This enables functions for handling video modes using the 1978c2ecf20Sopenharmony_ci Generalized Timing Formula and the EDID parser. A few drivers rely 1988c2ecf20Sopenharmony_ci on this feature such as the radeonfb, rivafb, and the i810fb. If 1998c2ecf20Sopenharmony_ci your driver does not take advantage of this feature, choosing Y will 2008c2ecf20Sopenharmony_ci just increase the kernel size by about 5K. 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_ciconfig FB_TILEBLITTING 2038c2ecf20Sopenharmony_ci bool "Enable Tile Blitting Support" 2048c2ecf20Sopenharmony_ci depends on FB 2058c2ecf20Sopenharmony_ci help 2068c2ecf20Sopenharmony_ci This enables tile blitting. Tile blitting is a drawing technique 2078c2ecf20Sopenharmony_ci where the screen is divided into rectangular sections (tiles), whereas 2088c2ecf20Sopenharmony_ci the standard blitting divides the screen into pixels. Because the 2098c2ecf20Sopenharmony_ci default drawing element is a tile, drawing functions will be passed 2108c2ecf20Sopenharmony_ci parameters in terms of number of tiles instead of number of pixels. 2118c2ecf20Sopenharmony_ci For example, to draw a single character, instead of using bitmaps, 2128c2ecf20Sopenharmony_ci an index to an array of bitmaps will be used. To clear or move a 2138c2ecf20Sopenharmony_ci rectangular section of a screen, the rectangle will be described in 2148c2ecf20Sopenharmony_ci terms of number of tiles in the x- and y-axis. 2158c2ecf20Sopenharmony_ci 2168c2ecf20Sopenharmony_ci This is particularly important to one driver, matroxfb. If 2178c2ecf20Sopenharmony_ci unsure, say N. 2188c2ecf20Sopenharmony_ci 2198c2ecf20Sopenharmony_cicomment "Frame buffer hardware drivers" 2208c2ecf20Sopenharmony_ci depends on FB 2218c2ecf20Sopenharmony_ci 2228c2ecf20Sopenharmony_ciconfig FB_GRVGA 2238c2ecf20Sopenharmony_ci tristate "Aeroflex Gaisler framebuffer support" 2248c2ecf20Sopenharmony_ci depends on FB && SPARC 2258c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 2268c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 2278c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 2288c2ecf20Sopenharmony_ci help 2298c2ecf20Sopenharmony_ci This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler. 2308c2ecf20Sopenharmony_ci 2318c2ecf20Sopenharmony_ciconfig FB_CIRRUS 2328c2ecf20Sopenharmony_ci tristate "Cirrus Logic support" 2338c2ecf20Sopenharmony_ci depends on FB && (ZORRO || PCI) 2348c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 2358c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 2368c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 2378c2ecf20Sopenharmony_ci help 2388c2ecf20Sopenharmony_ci This enables support for Cirrus Logic GD542x/543x based boards on 2398c2ecf20Sopenharmony_ci Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum. 2408c2ecf20Sopenharmony_ci 2418c2ecf20Sopenharmony_ci If you have a PCI-based system, this enables support for these 2428c2ecf20Sopenharmony_ci chips: GD-543x, GD-544x, GD-5480. 2438c2ecf20Sopenharmony_ci 2448c2ecf20Sopenharmony_ci Please read the file <file:Documentation/fb/cirrusfb.rst>. 2458c2ecf20Sopenharmony_ci 2468c2ecf20Sopenharmony_ci Say N unless you have such a graphics board or plan to get one 2478c2ecf20Sopenharmony_ci before you next recompile the kernel. 2488c2ecf20Sopenharmony_ci 2498c2ecf20Sopenharmony_ciconfig FB_PM2 2508c2ecf20Sopenharmony_ci tristate "Permedia2 support" 2518c2ecf20Sopenharmony_ci depends on FB && ((AMIGA && BROKEN) || PCI) 2528c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 2538c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 2548c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 2558c2ecf20Sopenharmony_ci help 2568c2ecf20Sopenharmony_ci This is the frame buffer device driver for cards based on 2578c2ecf20Sopenharmony_ci the 3D Labs Permedia, Permedia 2 and Permedia 2V chips. 2588c2ecf20Sopenharmony_ci The driver was tested on the following cards: 2598c2ecf20Sopenharmony_ci Diamond FireGL 1000 PRO AGP 2608c2ecf20Sopenharmony_ci ELSA Gloria Synergy PCI 2618c2ecf20Sopenharmony_ci Appian Jeronimo PRO (both heads) PCI 2628c2ecf20Sopenharmony_ci 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI 2638c2ecf20Sopenharmony_ci Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC 2648c2ecf20Sopenharmony_ci ASK Graphic Blaster Exxtreme AGP 2658c2ecf20Sopenharmony_ci 2668c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 2678c2ecf20Sopenharmony_ci module will be called pm2fb. 2688c2ecf20Sopenharmony_ci 2698c2ecf20Sopenharmony_ciconfig FB_PM2_FIFO_DISCONNECT 2708c2ecf20Sopenharmony_ci bool "enable FIFO disconnect feature" 2718c2ecf20Sopenharmony_ci depends on FB_PM2 && PCI 2728c2ecf20Sopenharmony_ci help 2738c2ecf20Sopenharmony_ci Support the Permedia2 FIFO disconnect feature. 2748c2ecf20Sopenharmony_ci 2758c2ecf20Sopenharmony_ciconfig FB_ARMCLCD 2768c2ecf20Sopenharmony_ci tristate "ARM PrimeCell PL110 support" 2778c2ecf20Sopenharmony_ci depends on ARM || ARM64 || COMPILE_TEST 2788c2ecf20Sopenharmony_ci depends on FB && ARM_AMBA && HAS_IOMEM 2798c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 2808c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 2818c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 2828c2ecf20Sopenharmony_ci select FB_MODE_HELPERS if OF 2838c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS if OF 2848c2ecf20Sopenharmony_ci select BACKLIGHT_CLASS_DEVICE if OF 2858c2ecf20Sopenharmony_ci help 2868c2ecf20Sopenharmony_ci This framebuffer device driver is for the ARM PrimeCell PL110 2878c2ecf20Sopenharmony_ci Colour LCD controller. ARM PrimeCells provide the building 2888c2ecf20Sopenharmony_ci blocks for System on a Chip devices. 2898c2ecf20Sopenharmony_ci 2908c2ecf20Sopenharmony_ci If you want to compile this as a module (=code which can be 2918c2ecf20Sopenharmony_ci inserted into and removed from the running kernel), say M 2928c2ecf20Sopenharmony_ci here and read <file:Documentation/kbuild/modules.rst>. The module 2938c2ecf20Sopenharmony_ci will be called amba-clcd. 2948c2ecf20Sopenharmony_ci 2958c2ecf20Sopenharmony_ciconfig FB_ACORN 2968c2ecf20Sopenharmony_ci bool "Acorn VIDC support" 2978c2ecf20Sopenharmony_ci depends on (FB = y) && ARM && ARCH_ACORN 2988c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 2998c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 3008c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3018c2ecf20Sopenharmony_ci help 3028c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Acorn VIDC graphics 3038c2ecf20Sopenharmony_ci hardware found in Acorn RISC PCs and other ARM-based machines. If 3048c2ecf20Sopenharmony_ci unsure, say N. 3058c2ecf20Sopenharmony_ci 3068c2ecf20Sopenharmony_ciconfig FB_CLPS711X 3078c2ecf20Sopenharmony_ci tristate "CLPS711X LCD support" 3088c2ecf20Sopenharmony_ci depends on FB && (ARCH_CLPS711X || COMPILE_TEST) 3098c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 3108c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 3118c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 3128c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 3138c2ecf20Sopenharmony_ci select LCD_CLASS_DEVICE 3148c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 3158c2ecf20Sopenharmony_ci help 3168c2ecf20Sopenharmony_ci Say Y to enable the Framebuffer driver for the Cirrus Logic 3178c2ecf20Sopenharmony_ci CLPS711X CPUs. 3188c2ecf20Sopenharmony_ci 3198c2ecf20Sopenharmony_ciconfig FB_SA1100 3208c2ecf20Sopenharmony_ci bool "SA-1100 LCD support" 3218c2ecf20Sopenharmony_ci depends on (FB = y) && ARM && ARCH_SA1100 3228c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 3238c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 3248c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3258c2ecf20Sopenharmony_ci help 3268c2ecf20Sopenharmony_ci This is a framebuffer device for the SA-1100 LCD Controller. 3278c2ecf20Sopenharmony_ci See <http://www.linux-fbdev.org/> for information on framebuffer 3288c2ecf20Sopenharmony_ci devices. 3298c2ecf20Sopenharmony_ci 3308c2ecf20Sopenharmony_ci If you plan to use the LCD display with your SA-1100 system, say 3318c2ecf20Sopenharmony_ci Y here. 3328c2ecf20Sopenharmony_ci 3338c2ecf20Sopenharmony_ciconfig FB_IMX 3348c2ecf20Sopenharmony_ci tristate "Freescale i.MX1/21/25/27 LCD support" 3358c2ecf20Sopenharmony_ci depends on FB && HAVE_CLK && HAS_IOMEM 3368c2ecf20Sopenharmony_ci depends on ARCH_MXC || COMPILE_TEST 3378c2ecf20Sopenharmony_ci select LCD_CLASS_DEVICE 3388c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 3398c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 3408c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3418c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 3428c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 3438c2ecf20Sopenharmony_ci 3448c2ecf20Sopenharmony_ciconfig FB_CYBER2000 3458c2ecf20Sopenharmony_ci tristate "CyberPro 2000/2010/5000 support" 3468c2ecf20Sopenharmony_ci depends on FB && PCI && (BROKEN || !SPARC64) 3478c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 3488c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 3498c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3508c2ecf20Sopenharmony_ci help 3518c2ecf20Sopenharmony_ci This enables support for the Integraphics CyberPro 20x0 and 5000 3528c2ecf20Sopenharmony_ci VGA chips used in the Rebel.com Netwinder and other machines. 3538c2ecf20Sopenharmony_ci Say Y if you have a NetWinder or a graphics card containing this 3548c2ecf20Sopenharmony_ci device, otherwise say N. 3558c2ecf20Sopenharmony_ci 3568c2ecf20Sopenharmony_ciconfig FB_CYBER2000_DDC 3578c2ecf20Sopenharmony_ci bool "DDC for CyberPro support" 3588c2ecf20Sopenharmony_ci depends on FB_CYBER2000 3598c2ecf20Sopenharmony_ci select FB_DDC 3608c2ecf20Sopenharmony_ci default y 3618c2ecf20Sopenharmony_ci help 3628c2ecf20Sopenharmony_ci Say Y here if you want DDC support for your CyberPro graphics 3638c2ecf20Sopenharmony_ci card. This is only I2C bus support, driver does not use EDID. 3648c2ecf20Sopenharmony_ci 3658c2ecf20Sopenharmony_ciconfig FB_CYBER2000_I2C 3668c2ecf20Sopenharmony_ci bool "CyberPro 2000/2010/5000 I2C support" 3678c2ecf20Sopenharmony_ci depends on FB_CYBER2000 && I2C && ARCH_NETWINDER 3688c2ecf20Sopenharmony_ci depends on I2C=y || FB_CYBER2000=m 3698c2ecf20Sopenharmony_ci select I2C_ALGOBIT 3708c2ecf20Sopenharmony_ci help 3718c2ecf20Sopenharmony_ci Enable support for the I2C video decoder interface on the 3728c2ecf20Sopenharmony_ci Integraphics CyberPro 20x0 and 5000 VGA chips. This is used 3738c2ecf20Sopenharmony_ci on the Netwinder machines for the SAA7111 video capture. 3748c2ecf20Sopenharmony_ci 3758c2ecf20Sopenharmony_ciconfig FB_APOLLO 3768c2ecf20Sopenharmony_ci bool 3778c2ecf20Sopenharmony_ci depends on (FB = y) && APOLLO 3788c2ecf20Sopenharmony_ci default y 3798c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 3808c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3818c2ecf20Sopenharmony_ci 3828c2ecf20Sopenharmony_ciconfig FB_Q40 3838c2ecf20Sopenharmony_ci bool 3848c2ecf20Sopenharmony_ci depends on (FB = y) && Q40 3858c2ecf20Sopenharmony_ci default y 3868c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 3878c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 3888c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 3898c2ecf20Sopenharmony_ci 3908c2ecf20Sopenharmony_ciconfig FB_AMIGA 3918c2ecf20Sopenharmony_ci tristate "Amiga native chipset support" 3928c2ecf20Sopenharmony_ci depends on FB && AMIGA 3938c2ecf20Sopenharmony_ci help 3948c2ecf20Sopenharmony_ci This is the frame buffer device driver for the builtin graphics 3958c2ecf20Sopenharmony_ci chipset found in Amigas. 3968c2ecf20Sopenharmony_ci 3978c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 3988c2ecf20Sopenharmony_ci module will be called amifb. 3998c2ecf20Sopenharmony_ci 4008c2ecf20Sopenharmony_ciconfig FB_AMIGA_OCS 4018c2ecf20Sopenharmony_ci bool "Amiga OCS chipset support" 4028c2ecf20Sopenharmony_ci depends on FB_AMIGA 4038c2ecf20Sopenharmony_ci help 4048c2ecf20Sopenharmony_ci This enables support for the original Agnus and Denise video chips, 4058c2ecf20Sopenharmony_ci found in the Amiga 1000 and most A500's and A2000's. If you intend 4068c2ecf20Sopenharmony_ci to run Linux on any of these systems, say Y; otherwise say N. 4078c2ecf20Sopenharmony_ci 4088c2ecf20Sopenharmony_ciconfig FB_AMIGA_ECS 4098c2ecf20Sopenharmony_ci bool "Amiga ECS chipset support" 4108c2ecf20Sopenharmony_ci depends on FB_AMIGA 4118c2ecf20Sopenharmony_ci help 4128c2ecf20Sopenharmony_ci This enables support for the Enhanced Chip Set, found in later 4138c2ecf20Sopenharmony_ci A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If 4148c2ecf20Sopenharmony_ci you intend to run Linux on any of these systems, say Y; otherwise 4158c2ecf20Sopenharmony_ci say N. 4168c2ecf20Sopenharmony_ci 4178c2ecf20Sopenharmony_ciconfig FB_AMIGA_AGA 4188c2ecf20Sopenharmony_ci bool "Amiga AGA chipset support" 4198c2ecf20Sopenharmony_ci depends on FB_AMIGA 4208c2ecf20Sopenharmony_ci help 4218c2ecf20Sopenharmony_ci This enables support for the Advanced Graphics Architecture (also 4228c2ecf20Sopenharmony_ci known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T 4238c2ecf20Sopenharmony_ci and CD32. If you intend to run Linux on any of these systems, say Y; 4248c2ecf20Sopenharmony_ci otherwise say N. 4258c2ecf20Sopenharmony_ci 4268c2ecf20Sopenharmony_ciconfig FB_FM2 4278c2ecf20Sopenharmony_ci bool "Amiga FrameMaster II/Rainbow II support" 4288c2ecf20Sopenharmony_ci depends on (FB = y) && ZORRO 4298c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4308c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 4318c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 4328c2ecf20Sopenharmony_ci help 4338c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Amiga FrameMaster 4348c2ecf20Sopenharmony_ci card from BSC (exhibited 1992 but not shipped as a CBM product). 4358c2ecf20Sopenharmony_ci 4368c2ecf20Sopenharmony_ciconfig FB_ARC 4378c2ecf20Sopenharmony_ci tristate "Arc Monochrome LCD board support" 4388c2ecf20Sopenharmony_ci depends on FB && (X86 || COMPILE_TEST) 4398c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 4408c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 4418c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 4428c2ecf20Sopenharmony_ci select FB_SYS_FOPS 4438c2ecf20Sopenharmony_ci help 4448c2ecf20Sopenharmony_ci This enables support for the Arc Monochrome LCD board. The board 4458c2ecf20Sopenharmony_ci is based on the KS-108 lcd controller and is typically a matrix 4468c2ecf20Sopenharmony_ci of 2*n chips. This driver was tested with a 128x64 panel. This 4478c2ecf20Sopenharmony_ci driver supports it for use with x86 SBCs through a 16 bit GPIO 4488c2ecf20Sopenharmony_ci interface (8 bit data, 8 bit control). If you anticipate using 4498c2ecf20Sopenharmony_ci this driver, say Y or M; otherwise say N. You must specify the 4508c2ecf20Sopenharmony_ci GPIO IO address to be used for setting control and data. 4518c2ecf20Sopenharmony_ci 4528c2ecf20Sopenharmony_ciconfig FB_ATARI 4538c2ecf20Sopenharmony_ci bool "Atari native chipset support" 4548c2ecf20Sopenharmony_ci depends on (FB = y) && ATARI 4558c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4568c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 4578c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 4588c2ecf20Sopenharmony_ci help 4598c2ecf20Sopenharmony_ci This is the frame buffer device driver for the builtin graphics 4608c2ecf20Sopenharmony_ci chipset found in Ataris. 4618c2ecf20Sopenharmony_ci 4628c2ecf20Sopenharmony_ciconfig FB_OF 4638c2ecf20Sopenharmony_ci bool "Open Firmware frame buffer device support" 4648c2ecf20Sopenharmony_ci depends on (FB = y) && PPC && (!PPC_PSERIES || PCI) 4658c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4668c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 4678c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 4688c2ecf20Sopenharmony_ci select FB_MACMODES 4698c2ecf20Sopenharmony_ci help 4708c2ecf20Sopenharmony_ci Say Y if you want support with Open Firmware for your graphics 4718c2ecf20Sopenharmony_ci board. 4728c2ecf20Sopenharmony_ci 4738c2ecf20Sopenharmony_ciconfig FB_CONTROL 4748c2ecf20Sopenharmony_ci bool "Apple \"control\" display support" 4758c2ecf20Sopenharmony_ci depends on (FB = y) && ((PPC_PMAC && PPC32) || COMPILE_TEST) 4768c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4778c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 4788c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 4798c2ecf20Sopenharmony_ci select FB_MACMODES 4808c2ecf20Sopenharmony_ci help 4818c2ecf20Sopenharmony_ci This driver supports a frame buffer for the graphics adapter in the 4828c2ecf20Sopenharmony_ci Power Macintosh 7300 and others. 4838c2ecf20Sopenharmony_ci 4848c2ecf20Sopenharmony_ciconfig FB_PLATINUM 4858c2ecf20Sopenharmony_ci bool "Apple \"platinum\" display support" 4868c2ecf20Sopenharmony_ci depends on (FB = y) && PPC_PMAC && PPC32 4878c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4888c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 4898c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 4908c2ecf20Sopenharmony_ci select FB_MACMODES 4918c2ecf20Sopenharmony_ci help 4928c2ecf20Sopenharmony_ci This driver supports a frame buffer for the "platinum" graphics 4938c2ecf20Sopenharmony_ci adapter in some Power Macintoshes. 4948c2ecf20Sopenharmony_ci 4958c2ecf20Sopenharmony_ciconfig FB_VALKYRIE 4968c2ecf20Sopenharmony_ci bool "Apple \"valkyrie\" display support" 4978c2ecf20Sopenharmony_ci depends on (FB = y) && (MAC || (PPC_PMAC && PPC32)) 4988c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 4998c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5008c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5018c2ecf20Sopenharmony_ci select FB_MACMODES 5028c2ecf20Sopenharmony_ci help 5038c2ecf20Sopenharmony_ci This driver supports a frame buffer for the "valkyrie" graphics 5048c2ecf20Sopenharmony_ci adapter in some Power Macintoshes. 5058c2ecf20Sopenharmony_ci 5068c2ecf20Sopenharmony_ciconfig FB_CT65550 5078c2ecf20Sopenharmony_ci bool "Chips 65550 display support" 5088c2ecf20Sopenharmony_ci depends on (FB = y) && PPC32 && PCI 5098c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5108c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5118c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5128c2ecf20Sopenharmony_ci help 5138c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Chips & Technologies 5148c2ecf20Sopenharmony_ci 65550 graphics chip in PowerBooks. 5158c2ecf20Sopenharmony_ci 5168c2ecf20Sopenharmony_ciconfig FB_ASILIANT 5178c2ecf20Sopenharmony_ci bool "Asiliant (Chips) 69000 display support" 5188c2ecf20Sopenharmony_ci depends on (FB = y) && PCI 5198c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5208c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5218c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5228c2ecf20Sopenharmony_ci help 5238c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Asiliant 69030 chipset 5248c2ecf20Sopenharmony_ci 5258c2ecf20Sopenharmony_ciconfig FB_IMSTT 5268c2ecf20Sopenharmony_ci bool "IMS Twin Turbo display support" 5278c2ecf20Sopenharmony_ci depends on (FB = y) && PCI 5288c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5298c2ecf20Sopenharmony_ci select FB_MACMODES if PPC_PMAC 5308c2ecf20Sopenharmony_ci help 5318c2ecf20Sopenharmony_ci The IMS Twin Turbo is a PCI-based frame buffer card bundled with 5328c2ecf20Sopenharmony_ci many Macintosh and compatible computers. 5338c2ecf20Sopenharmony_ci 5348c2ecf20Sopenharmony_ciconfig FB_VGA16 5358c2ecf20Sopenharmony_ci tristate "VGA 16-color graphics support" 5368c2ecf20Sopenharmony_ci depends on FB && (X86 || PPC) 5378c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5388c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5398c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5408c2ecf20Sopenharmony_ci select VGASTATE 5418c2ecf20Sopenharmony_ci select FONT_8x16 if FRAMEBUFFER_CONSOLE 5428c2ecf20Sopenharmony_ci help 5438c2ecf20Sopenharmony_ci This is the frame buffer device driver for VGA 16 color graphic 5448c2ecf20Sopenharmony_ci cards. Say Y if you have such a card. 5458c2ecf20Sopenharmony_ci 5468c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 5478c2ecf20Sopenharmony_ci module will be called vga16fb. 5488c2ecf20Sopenharmony_ci 5498c2ecf20Sopenharmony_ciconfig FB_STI 5508c2ecf20Sopenharmony_ci tristate "HP STI frame buffer device support" 5518c2ecf20Sopenharmony_ci depends on FB && PARISC 5528c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5538c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5548c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5558c2ecf20Sopenharmony_ci default y 5568c2ecf20Sopenharmony_ci help 5578c2ecf20Sopenharmony_ci STI refers to the HP "Standard Text Interface" which is a set of 5588c2ecf20Sopenharmony_ci BIOS routines contained in a ROM chip in HP PA-RISC based machines. 5598c2ecf20Sopenharmony_ci Enabling this option will implement the linux framebuffer device 5608c2ecf20Sopenharmony_ci using calls to the STI BIOS routines for initialisation. 5618c2ecf20Sopenharmony_ci 5628c2ecf20Sopenharmony_ci If you enable this option, you will get a planar framebuffer device 5638c2ecf20Sopenharmony_ci /dev/fb which will work on the most common HP graphic cards of the 5648c2ecf20Sopenharmony_ci NGLE family, including the artist chips (in the 7xx and Bxxx series), 5658c2ecf20Sopenharmony_ci HCRX, HCRX24, CRX, CRX24 and VisEG series. 5668c2ecf20Sopenharmony_ci 5678c2ecf20Sopenharmony_ci It is safe to enable this option, so you should probably say "Y". 5688c2ecf20Sopenharmony_ci 5698c2ecf20Sopenharmony_ciconfig FB_MAC 5708c2ecf20Sopenharmony_ci bool "Generic Macintosh display support" 5718c2ecf20Sopenharmony_ci depends on (FB = y) && MAC 5728c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5738c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5748c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5758c2ecf20Sopenharmony_ci select FB_MACMODES 5768c2ecf20Sopenharmony_ci 5778c2ecf20Sopenharmony_ciconfig FB_HP300 5788c2ecf20Sopenharmony_ci bool 5798c2ecf20Sopenharmony_ci depends on (FB = y) && DIO 5808c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5818c2ecf20Sopenharmony_ci default y 5828c2ecf20Sopenharmony_ci 5838c2ecf20Sopenharmony_ciconfig FB_TGA 5848c2ecf20Sopenharmony_ci tristate "TGA/SFB+ framebuffer support" 5858c2ecf20Sopenharmony_ci depends on FB && (ALPHA || TC) 5868c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 5878c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 5888c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 5898c2ecf20Sopenharmony_ci select BITREVERSE 5908c2ecf20Sopenharmony_ci help 5918c2ecf20Sopenharmony_ci This is the frame buffer device driver for generic TGA and SFB+ 5928c2ecf20Sopenharmony_ci graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards, 5938c2ecf20Sopenharmony_ci also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3 5948c2ecf20Sopenharmony_ci TURBOchannel cards, also known as PMAGD-A, -B and -C. 5958c2ecf20Sopenharmony_ci 5968c2ecf20Sopenharmony_ci Due to hardware limitations ZLX-E2 and E3 cards are not supported 5978c2ecf20Sopenharmony_ci for DECstation 5000/200 systems. Additionally due to firmware 5988c2ecf20Sopenharmony_ci limitations these cards may cause troubles with booting DECstation 5998c2ecf20Sopenharmony_ci 5000/240 and /260 systems, but are fully supported under Linux if 6008c2ecf20Sopenharmony_ci you manage to get it going. ;-) 6018c2ecf20Sopenharmony_ci 6028c2ecf20Sopenharmony_ci Say Y if you have one of those. 6038c2ecf20Sopenharmony_ci 6048c2ecf20Sopenharmony_ciconfig FB_UVESA 6058c2ecf20Sopenharmony_ci tristate "Userspace VESA VGA graphics support" 6068c2ecf20Sopenharmony_ci depends on FB && CONNECTOR 6078c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 6088c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 6098c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 6108c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 6118c2ecf20Sopenharmony_ci help 6128c2ecf20Sopenharmony_ci This is the frame buffer driver for generic VBE 2.0 compliant 6138c2ecf20Sopenharmony_ci graphic cards. It can also take advantage of VBE 3.0 features, 6148c2ecf20Sopenharmony_ci such as refresh rate adjustment. 6158c2ecf20Sopenharmony_ci 6168c2ecf20Sopenharmony_ci This driver generally provides more features than vesafb but 6178c2ecf20Sopenharmony_ci requires a userspace helper application called 'v86d'. See 6188c2ecf20Sopenharmony_ci <file:Documentation/fb/uvesafb.rst> for more information. 6198c2ecf20Sopenharmony_ci 6208c2ecf20Sopenharmony_ci If unsure, say N. 6218c2ecf20Sopenharmony_ci 6228c2ecf20Sopenharmony_ciconfig FB_VESA 6238c2ecf20Sopenharmony_ci bool "VESA VGA graphics support" 6248c2ecf20Sopenharmony_ci depends on (FB = y) && X86 6258c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 6268c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 6278c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 6288c2ecf20Sopenharmony_ci select FB_BOOT_VESA_SUPPORT 6298c2ecf20Sopenharmony_ci help 6308c2ecf20Sopenharmony_ci This is the frame buffer device driver for generic VESA 2.0 6318c2ecf20Sopenharmony_ci compliant graphic cards. The older VESA 1.2 cards are not supported. 6328c2ecf20Sopenharmony_ci You will get a boot time penguin logo at no additional cost. Please 6338c2ecf20Sopenharmony_ci read <file:Documentation/fb/vesafb.rst>. If unsure, say Y. 6348c2ecf20Sopenharmony_ci 6358c2ecf20Sopenharmony_ciconfig FB_EFI 6368c2ecf20Sopenharmony_ci bool "EFI-based Framebuffer Support" 6378c2ecf20Sopenharmony_ci depends on (FB = y) && !IA64 && EFI 6388c2ecf20Sopenharmony_ci select DRM_PANEL_ORIENTATION_QUIRKS 6398c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 6408c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 6418c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 6428c2ecf20Sopenharmony_ci help 6438c2ecf20Sopenharmony_ci This is the EFI frame buffer device driver. If the firmware on 6448c2ecf20Sopenharmony_ci your platform is EFI 1.10 or UEFI 2.0, select Y to add support for 6458c2ecf20Sopenharmony_ci using the EFI framebuffer as your console. 6468c2ecf20Sopenharmony_ci 6478c2ecf20Sopenharmony_ciconfig FB_N411 6488c2ecf20Sopenharmony_ci tristate "N411 Apollo/Hecuba devkit support" 6498c2ecf20Sopenharmony_ci depends on FB && X86 && MMU 6508c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 6518c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 6528c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 6538c2ecf20Sopenharmony_ci select FB_SYS_FOPS 6548c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 6558c2ecf20Sopenharmony_ci select FB_HECUBA 6568c2ecf20Sopenharmony_ci help 6578c2ecf20Sopenharmony_ci This enables support for the Apollo display controller in its 6588c2ecf20Sopenharmony_ci Hecuba form using the n411 devkit. 6598c2ecf20Sopenharmony_ci 6608c2ecf20Sopenharmony_ciconfig FB_HGA 6618c2ecf20Sopenharmony_ci tristate "Hercules mono graphics support" 6628c2ecf20Sopenharmony_ci depends on FB && X86 6638c2ecf20Sopenharmony_ci help 6648c2ecf20Sopenharmony_ci Say Y here if you have a Hercules mono graphics card. 6658c2ecf20Sopenharmony_ci 6668c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 6678c2ecf20Sopenharmony_ci module will be called hgafb. 6688c2ecf20Sopenharmony_ci 6698c2ecf20Sopenharmony_ci As this card technology is at least 25 years old, 6708c2ecf20Sopenharmony_ci most people will answer N here. 6718c2ecf20Sopenharmony_ci 6728c2ecf20Sopenharmony_ciconfig FB_GBE 6738c2ecf20Sopenharmony_ci bool "SGI Graphics Backend frame buffer support" 6748c2ecf20Sopenharmony_ci depends on (FB = y) && HAS_IOMEM 6758c2ecf20Sopenharmony_ci depends on SGI_IP32 || COMPILE_TEST 6768c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 6778c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 6788c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 6798c2ecf20Sopenharmony_ci help 6808c2ecf20Sopenharmony_ci This is the frame buffer device driver for SGI Graphics Backend. 6818c2ecf20Sopenharmony_ci This chip is used in SGI O2 and Visual Workstation 320/540. 6828c2ecf20Sopenharmony_ci 6838c2ecf20Sopenharmony_ciconfig FB_GBE_MEM 6848c2ecf20Sopenharmony_ci int "Video memory size in MB" 6858c2ecf20Sopenharmony_ci depends on FB_GBE 6868c2ecf20Sopenharmony_ci default 4 6878c2ecf20Sopenharmony_ci help 6888c2ecf20Sopenharmony_ci This is the amount of memory reserved for the framebuffer, 6898c2ecf20Sopenharmony_ci which can be any value between 1MB and 8MB. 6908c2ecf20Sopenharmony_ci 6918c2ecf20Sopenharmony_ciconfig FB_SBUS 6928c2ecf20Sopenharmony_ci bool "SBUS and UPA framebuffers" 6938c2ecf20Sopenharmony_ci depends on (FB = y) && SPARC 6948c2ecf20Sopenharmony_ci help 6958c2ecf20Sopenharmony_ci Say Y if you want support for SBUS or UPA based frame buffer device. 6968c2ecf20Sopenharmony_ci 6978c2ecf20Sopenharmony_ciconfig FB_BW2 6988c2ecf20Sopenharmony_ci bool "BWtwo support" 6998c2ecf20Sopenharmony_ci depends on (FB = y) && (SPARC && FB_SBUS) 7008c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7018c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7028c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7038c2ecf20Sopenharmony_ci help 7048c2ecf20Sopenharmony_ci This is the frame buffer device driver for the BWtwo frame buffer. 7058c2ecf20Sopenharmony_ci 7068c2ecf20Sopenharmony_ciconfig FB_CG3 7078c2ecf20Sopenharmony_ci bool "CGthree support" 7088c2ecf20Sopenharmony_ci depends on (FB = y) && (SPARC && FB_SBUS) 7098c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7108c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7118c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7128c2ecf20Sopenharmony_ci help 7138c2ecf20Sopenharmony_ci This is the frame buffer device driver for the CGthree frame buffer. 7148c2ecf20Sopenharmony_ci 7158c2ecf20Sopenharmony_ciconfig FB_CG6 7168c2ecf20Sopenharmony_ci bool "CGsix (GX,TurboGX) support" 7178c2ecf20Sopenharmony_ci depends on (FB = y) && (SPARC && FB_SBUS) 7188c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7198c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7208c2ecf20Sopenharmony_ci help 7218c2ecf20Sopenharmony_ci This is the frame buffer device driver for the CGsix (GX, TurboGX) 7228c2ecf20Sopenharmony_ci frame buffer. 7238c2ecf20Sopenharmony_ci 7248c2ecf20Sopenharmony_ciconfig FB_FFB 7258c2ecf20Sopenharmony_ci bool "Creator/Creator3D/Elite3D support" 7268c2ecf20Sopenharmony_ci depends on FB_SBUS && SPARC64 7278c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7288c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7298c2ecf20Sopenharmony_ci help 7308c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Creator, Creator3D, 7318c2ecf20Sopenharmony_ci and Elite3D graphics boards. 7328c2ecf20Sopenharmony_ci 7338c2ecf20Sopenharmony_ciconfig FB_TCX 7348c2ecf20Sopenharmony_ci bool "TCX (SS4/SS5 only) support" 7358c2ecf20Sopenharmony_ci depends on FB_SBUS 7368c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7378c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7388c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7398c2ecf20Sopenharmony_ci help 7408c2ecf20Sopenharmony_ci This is the frame buffer device driver for the TCX 24/8bit frame 7418c2ecf20Sopenharmony_ci buffer. 7428c2ecf20Sopenharmony_ci 7438c2ecf20Sopenharmony_ciconfig FB_CG14 7448c2ecf20Sopenharmony_ci bool "CGfourteen (SX) support" 7458c2ecf20Sopenharmony_ci depends on FB_SBUS 7468c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7478c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7488c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7498c2ecf20Sopenharmony_ci help 7508c2ecf20Sopenharmony_ci This is the frame buffer device driver for the CGfourteen frame 7518c2ecf20Sopenharmony_ci buffer on Desktop SPARCsystems with the SX graphics option. 7528c2ecf20Sopenharmony_ci 7538c2ecf20Sopenharmony_ciconfig FB_P9100 7548c2ecf20Sopenharmony_ci bool "P9100 (Sparcbook 3 only) support" 7558c2ecf20Sopenharmony_ci depends on FB_SBUS 7568c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7578c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7588c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7598c2ecf20Sopenharmony_ci help 7608c2ecf20Sopenharmony_ci This is the frame buffer device driver for the P9100 card 7618c2ecf20Sopenharmony_ci supported on Sparcbook 3 machines. 7628c2ecf20Sopenharmony_ci 7638c2ecf20Sopenharmony_ciconfig FB_LEO 7648c2ecf20Sopenharmony_ci bool "Leo (ZX) support" 7658c2ecf20Sopenharmony_ci depends on FB_SBUS 7668c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7678c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7688c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7698c2ecf20Sopenharmony_ci help 7708c2ecf20Sopenharmony_ci This is the frame buffer device driver for the SBUS-based Sun ZX 7718c2ecf20Sopenharmony_ci (leo) frame buffer cards. 7728c2ecf20Sopenharmony_ci 7738c2ecf20Sopenharmony_ciconfig FB_XVR500 7748c2ecf20Sopenharmony_ci bool "Sun XVR-500 3DLABS Wildcat support" 7758c2ecf20Sopenharmony_ci depends on (FB = y) && PCI && SPARC64 7768c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7778c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7788c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7798c2ecf20Sopenharmony_ci help 7808c2ecf20Sopenharmony_ci This is the framebuffer device for the Sun XVR-500 and similar 7818c2ecf20Sopenharmony_ci graphics cards based upon the 3DLABS Wildcat chipset. The driver 7828c2ecf20Sopenharmony_ci only works on sparc64 systems where the system firmware has 7838c2ecf20Sopenharmony_ci mostly initialized the card already. It is treated as a 7848c2ecf20Sopenharmony_ci completely dumb framebuffer device. 7858c2ecf20Sopenharmony_ci 7868c2ecf20Sopenharmony_ciconfig FB_XVR2500 7878c2ecf20Sopenharmony_ci bool "Sun XVR-2500 3DLABS Wildcat support" 7888c2ecf20Sopenharmony_ci depends on (FB = y) && PCI && SPARC64 7898c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 7908c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 7918c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 7928c2ecf20Sopenharmony_ci help 7938c2ecf20Sopenharmony_ci This is the framebuffer device for the Sun XVR-2500 and similar 7948c2ecf20Sopenharmony_ci graphics cards based upon the 3DLABS Wildcat chipset. The driver 7958c2ecf20Sopenharmony_ci only works on sparc64 systems where the system firmware has 7968c2ecf20Sopenharmony_ci mostly initialized the card already. It is treated as a 7978c2ecf20Sopenharmony_ci completely dumb framebuffer device. 7988c2ecf20Sopenharmony_ci 7998c2ecf20Sopenharmony_ciconfig FB_XVR1000 8008c2ecf20Sopenharmony_ci bool "Sun XVR-1000 support" 8018c2ecf20Sopenharmony_ci depends on (FB = y) && SPARC64 8028c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8038c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8048c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8058c2ecf20Sopenharmony_ci help 8068c2ecf20Sopenharmony_ci This is the framebuffer device for the Sun XVR-1000 and similar 8078c2ecf20Sopenharmony_ci graphics cards. The driver only works on sparc64 systems where 8088c2ecf20Sopenharmony_ci the system firmware has mostly initialized the card already. It 8098c2ecf20Sopenharmony_ci is treated as a completely dumb framebuffer device. 8108c2ecf20Sopenharmony_ci 8118c2ecf20Sopenharmony_ciconfig FB_PVR2 8128c2ecf20Sopenharmony_ci tristate "NEC PowerVR 2 display support" 8138c2ecf20Sopenharmony_ci depends on FB && HAS_IOMEM 8148c2ecf20Sopenharmony_ci depends on SH_DREAMCAST || COMPILE_TEST 8158c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8168c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8178c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8188c2ecf20Sopenharmony_ci help 8198c2ecf20Sopenharmony_ci Say Y here if you have a PowerVR 2 card in your box. If you plan to 8208c2ecf20Sopenharmony_ci run linux on your Dreamcast, you will have to say Y here. 8218c2ecf20Sopenharmony_ci This driver may or may not work on other PowerVR 2 cards, but is 8228c2ecf20Sopenharmony_ci totally untested. Use at your own risk. If unsure, say N. 8238c2ecf20Sopenharmony_ci 8248c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 8258c2ecf20Sopenharmony_ci module will be called pvr2fb. 8268c2ecf20Sopenharmony_ci 8278c2ecf20Sopenharmony_ci You can pass several parameters to the driver at boot time or at 8288c2ecf20Sopenharmony_ci module load time. The parameters look like "video=pvr2:XXX", where 8298c2ecf20Sopenharmony_ci the meaning of XXX can be found at the end of the main source file 8308c2ecf20Sopenharmony_ci (<file:drivers/video/pvr2fb.c>). Please see the file 8318c2ecf20Sopenharmony_ci <file:Documentation/fb/pvr2fb.rst>. 8328c2ecf20Sopenharmony_ci 8338c2ecf20Sopenharmony_ciconfig FB_OPENCORES 8348c2ecf20Sopenharmony_ci tristate "OpenCores VGA/LCD core 2.0 framebuffer support" 8358c2ecf20Sopenharmony_ci depends on FB && HAS_DMA 8368c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8378c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8388c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8398c2ecf20Sopenharmony_ci help 8408c2ecf20Sopenharmony_ci This enables support for the OpenCores VGA/LCD core. 8418c2ecf20Sopenharmony_ci 8428c2ecf20Sopenharmony_ci The OpenCores VGA/LCD core is typically used together with 8438c2ecf20Sopenharmony_ci softcore CPUs (e.g. OpenRISC or Microblaze) or hard processor 8448c2ecf20Sopenharmony_ci systems (e.g. Altera socfpga or Xilinx Zynq) on FPGAs. 8458c2ecf20Sopenharmony_ci 8468c2ecf20Sopenharmony_ci The source code and specification for the core is available at 8478c2ecf20Sopenharmony_ci <https://opencores.org/project,vga_lcd> 8488c2ecf20Sopenharmony_ci 8498c2ecf20Sopenharmony_ciconfig FB_S1D13XXX 8508c2ecf20Sopenharmony_ci tristate "Epson S1D13XXX framebuffer support" 8518c2ecf20Sopenharmony_ci depends on FB 8528c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8538c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8548c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8558c2ecf20Sopenharmony_ci help 8568c2ecf20Sopenharmony_ci Support for S1D13XXX framebuffer device family (currently only 8578c2ecf20Sopenharmony_ci working with S1D13806). Product specs at 8588c2ecf20Sopenharmony_ci <https://vdc.epson.com/> 8598c2ecf20Sopenharmony_ci 8608c2ecf20Sopenharmony_ciconfig FB_ATMEL 8618c2ecf20Sopenharmony_ci tristate "AT91 LCD Controller support" 8628c2ecf20Sopenharmony_ci depends on FB && OF && HAVE_CLK && HAS_IOMEM 8638c2ecf20Sopenharmony_ci depends on HAVE_FB_ATMEL || COMPILE_TEST 8648c2ecf20Sopenharmony_ci select FB_BACKLIGHT 8658c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8668c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8678c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8688c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 8698c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 8708c2ecf20Sopenharmony_ci help 8718c2ecf20Sopenharmony_ci This enables support for the AT91 LCD Controller. 8728c2ecf20Sopenharmony_ci 8738c2ecf20Sopenharmony_ciconfig FB_NVIDIA 8748c2ecf20Sopenharmony_ci tristate "nVidia Framebuffer Support" 8758c2ecf20Sopenharmony_ci depends on FB && PCI 8768c2ecf20Sopenharmony_ci select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT 8778c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 8788c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 8798c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 8808c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 8818c2ecf20Sopenharmony_ci select BITREVERSE 8828c2ecf20Sopenharmony_ci select VGASTATE 8838c2ecf20Sopenharmony_ci help 8848c2ecf20Sopenharmony_ci This driver supports graphics boards with the nVidia chips, TNT 8858c2ecf20Sopenharmony_ci and newer. For very old chipsets, such as the RIVA128, then use 8868c2ecf20Sopenharmony_ci the rivafb. 8878c2ecf20Sopenharmony_ci Say Y if you have such a graphics board. 8888c2ecf20Sopenharmony_ci 8898c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 8908c2ecf20Sopenharmony_ci module will be called nvidiafb. 8918c2ecf20Sopenharmony_ci 8928c2ecf20Sopenharmony_ciconfig FB_NVIDIA_I2C 8938c2ecf20Sopenharmony_ci bool "Enable DDC Support" 8948c2ecf20Sopenharmony_ci depends on FB_NVIDIA 8958c2ecf20Sopenharmony_ci select FB_DDC 8968c2ecf20Sopenharmony_ci help 8978c2ecf20Sopenharmony_ci This enables I2C support for nVidia Chipsets. This is used 8988c2ecf20Sopenharmony_ci only for getting EDID information from the attached display 8998c2ecf20Sopenharmony_ci allowing for robust video mode handling and switching. 9008c2ecf20Sopenharmony_ci 9018c2ecf20Sopenharmony_ci Because fbdev-2.6 requires that drivers must be able to 9028c2ecf20Sopenharmony_ci independently validate video mode parameters, you should say Y 9038c2ecf20Sopenharmony_ci here. 9048c2ecf20Sopenharmony_ci 9058c2ecf20Sopenharmony_ciconfig FB_NVIDIA_DEBUG 9068c2ecf20Sopenharmony_ci bool "Lots of debug output" 9078c2ecf20Sopenharmony_ci depends on FB_NVIDIA 9088c2ecf20Sopenharmony_ci help 9098c2ecf20Sopenharmony_ci Say Y here if you want the nVidia driver to output all sorts 9108c2ecf20Sopenharmony_ci of debugging information to provide to the maintainer when 9118c2ecf20Sopenharmony_ci something goes wrong. 9128c2ecf20Sopenharmony_ci 9138c2ecf20Sopenharmony_ciconfig FB_NVIDIA_BACKLIGHT 9148c2ecf20Sopenharmony_ci bool "Support for backlight control" 9158c2ecf20Sopenharmony_ci depends on FB_NVIDIA 9168c2ecf20Sopenharmony_ci default y 9178c2ecf20Sopenharmony_ci help 9188c2ecf20Sopenharmony_ci Say Y here if you want to control the backlight of your display. 9198c2ecf20Sopenharmony_ci 9208c2ecf20Sopenharmony_ciconfig FB_RIVA 9218c2ecf20Sopenharmony_ci tristate "nVidia Riva support" 9228c2ecf20Sopenharmony_ci depends on FB && PCI 9238c2ecf20Sopenharmony_ci select FB_BACKLIGHT if FB_RIVA_BACKLIGHT 9248c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 9258c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 9268c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 9278c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 9288c2ecf20Sopenharmony_ci select BITREVERSE 9298c2ecf20Sopenharmony_ci select VGASTATE 9308c2ecf20Sopenharmony_ci help 9318c2ecf20Sopenharmony_ci This driver supports graphics boards with the nVidia Riva/Geforce 9328c2ecf20Sopenharmony_ci chips. 9338c2ecf20Sopenharmony_ci Say Y if you have such a graphics board. 9348c2ecf20Sopenharmony_ci 9358c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 9368c2ecf20Sopenharmony_ci module will be called rivafb. 9378c2ecf20Sopenharmony_ci 9388c2ecf20Sopenharmony_ciconfig FB_RIVA_I2C 9398c2ecf20Sopenharmony_ci bool "Enable DDC Support" 9408c2ecf20Sopenharmony_ci depends on FB_RIVA 9418c2ecf20Sopenharmony_ci select FB_DDC 9428c2ecf20Sopenharmony_ci help 9438c2ecf20Sopenharmony_ci This enables I2C support for nVidia Chipsets. This is used 9448c2ecf20Sopenharmony_ci only for getting EDID information from the attached display 9458c2ecf20Sopenharmony_ci allowing for robust video mode handling and switching. 9468c2ecf20Sopenharmony_ci 9478c2ecf20Sopenharmony_ci Because fbdev-2.6 requires that drivers must be able to 9488c2ecf20Sopenharmony_ci independently validate video mode parameters, you should say Y 9498c2ecf20Sopenharmony_ci here. 9508c2ecf20Sopenharmony_ci 9518c2ecf20Sopenharmony_ciconfig FB_RIVA_DEBUG 9528c2ecf20Sopenharmony_ci bool "Lots of debug output" 9538c2ecf20Sopenharmony_ci depends on FB_RIVA 9548c2ecf20Sopenharmony_ci help 9558c2ecf20Sopenharmony_ci Say Y here if you want the Riva driver to output all sorts 9568c2ecf20Sopenharmony_ci of debugging information to provide to the maintainer when 9578c2ecf20Sopenharmony_ci something goes wrong. 9588c2ecf20Sopenharmony_ci 9598c2ecf20Sopenharmony_ciconfig FB_RIVA_BACKLIGHT 9608c2ecf20Sopenharmony_ci bool "Support for backlight control" 9618c2ecf20Sopenharmony_ci depends on FB_RIVA 9628c2ecf20Sopenharmony_ci default y 9638c2ecf20Sopenharmony_ci help 9648c2ecf20Sopenharmony_ci Say Y here if you want to control the backlight of your display. 9658c2ecf20Sopenharmony_ci 9668c2ecf20Sopenharmony_ciconfig FB_I740 9678c2ecf20Sopenharmony_ci tristate "Intel740 support" 9688c2ecf20Sopenharmony_ci depends on FB && PCI 9698c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 9708c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 9718c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 9728c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 9738c2ecf20Sopenharmony_ci select VGASTATE 9748c2ecf20Sopenharmony_ci select FB_DDC 9758c2ecf20Sopenharmony_ci help 9768c2ecf20Sopenharmony_ci This driver supports graphics cards based on Intel740 chip. 9778c2ecf20Sopenharmony_ci 9788c2ecf20Sopenharmony_ciconfig FB_I810 9798c2ecf20Sopenharmony_ci tristate "Intel 810/815 support" 9808c2ecf20Sopenharmony_ci depends on FB && PCI && X86_32 && AGP_INTEL 9818c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 9828c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 9838c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 9848c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 9858c2ecf20Sopenharmony_ci select VGASTATE 9868c2ecf20Sopenharmony_ci help 9878c2ecf20Sopenharmony_ci This driver supports the on-board graphics built in to the Intel 810 9888c2ecf20Sopenharmony_ci and 815 chipsets. Say Y if you have and plan to use such a board. 9898c2ecf20Sopenharmony_ci 9908c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 9918c2ecf20Sopenharmony_ci module will be called i810fb. 9928c2ecf20Sopenharmony_ci 9938c2ecf20Sopenharmony_ci For more information, please read 9948c2ecf20Sopenharmony_ci <file:Documentation/fb/intel810.rst> 9958c2ecf20Sopenharmony_ci 9968c2ecf20Sopenharmony_ciconfig FB_I810_GTF 9978c2ecf20Sopenharmony_ci bool "use VESA Generalized Timing Formula" 9988c2ecf20Sopenharmony_ci depends on FB_I810 9998c2ecf20Sopenharmony_ci help 10008c2ecf20Sopenharmony_ci If you say Y, then the VESA standard, Generalized Timing Formula 10018c2ecf20Sopenharmony_ci or GTF, will be used to calculate the required video timing values 10028c2ecf20Sopenharmony_ci per video mode. Since the GTF allows nondiscrete timings 10038c2ecf20Sopenharmony_ci (nondiscrete being a range of values as opposed to discrete being a 10048c2ecf20Sopenharmony_ci set of values), you'll be able to use any combination of horizontal 10058c2ecf20Sopenharmony_ci and vertical resolutions, and vertical refresh rates without having 10068c2ecf20Sopenharmony_ci to specify your own timing parameters. This is especially useful 10078c2ecf20Sopenharmony_ci to maximize the performance of an aging display, or if you just 10088c2ecf20Sopenharmony_ci have a display with nonstandard dimensions. A VESA compliant 10098c2ecf20Sopenharmony_ci monitor is recommended, but can still work with non-compliant ones. 10108c2ecf20Sopenharmony_ci If you need or want this, then select this option. The timings may 10118c2ecf20Sopenharmony_ci not be compliant with Intel's recommended values. Use at your own 10128c2ecf20Sopenharmony_ci risk. 10138c2ecf20Sopenharmony_ci 10148c2ecf20Sopenharmony_ci If you say N, the driver will revert to discrete video timings 10158c2ecf20Sopenharmony_ci using a set recommended by Intel in their documentation. 10168c2ecf20Sopenharmony_ci 10178c2ecf20Sopenharmony_ci If unsure, say N. 10188c2ecf20Sopenharmony_ci 10198c2ecf20Sopenharmony_ciconfig FB_I810_I2C 10208c2ecf20Sopenharmony_ci bool "Enable DDC Support" 10218c2ecf20Sopenharmony_ci depends on FB_I810 && FB_I810_GTF 10228c2ecf20Sopenharmony_ci select FB_DDC 10238c2ecf20Sopenharmony_ci help 10248c2ecf20Sopenharmony_ci Add DDC/I2C support for i810fb. This will allow the driver to get 10258c2ecf20Sopenharmony_ci display information, especially for monitors with fickle timings. 10268c2ecf20Sopenharmony_ci 10278c2ecf20Sopenharmony_ci If unsure, say Y. 10288c2ecf20Sopenharmony_ci 10298c2ecf20Sopenharmony_ciconfig FB_LE80578 10308c2ecf20Sopenharmony_ci tristate "Intel LE80578 (Vermilion) support" 10318c2ecf20Sopenharmony_ci depends on FB && PCI && X86 10328c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 10338c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 10348c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 10358c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 10368c2ecf20Sopenharmony_ci help 10378c2ecf20Sopenharmony_ci This driver supports the LE80578 (Vermilion Range) chipset 10388c2ecf20Sopenharmony_ci 10398c2ecf20Sopenharmony_ciconfig FB_CARILLO_RANCH 10408c2ecf20Sopenharmony_ci tristate "Intel Carillo Ranch support" 10418c2ecf20Sopenharmony_ci depends on FB_LE80578 && FB && PCI && X86 10428c2ecf20Sopenharmony_ci help 10438c2ecf20Sopenharmony_ci This driver supports the LE80578 (Carillo Ranch) board 10448c2ecf20Sopenharmony_ci 10458c2ecf20Sopenharmony_ciconfig FB_INTEL 10468c2ecf20Sopenharmony_ci tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support" 10478c2ecf20Sopenharmony_ci depends on FB && PCI && X86 && AGP_INTEL && EXPERT 10488c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 10498c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 10508c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 10518c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 10528c2ecf20Sopenharmony_ci select FB_BOOT_VESA_SUPPORT if FB_INTEL = y 10538c2ecf20Sopenharmony_ci depends on !DRM_I915 10548c2ecf20Sopenharmony_ci help 10558c2ecf20Sopenharmony_ci This driver supports the on-board graphics built in to the Intel 10568c2ecf20Sopenharmony_ci 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets. 10578c2ecf20Sopenharmony_ci Say Y if you have and plan to use such a board. 10588c2ecf20Sopenharmony_ci 10598c2ecf20Sopenharmony_ci To make FB_INTEL=Y work you need to say AGP_INTEL=y too. 10608c2ecf20Sopenharmony_ci 10618c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 10628c2ecf20Sopenharmony_ci module will be called intelfb. 10638c2ecf20Sopenharmony_ci 10648c2ecf20Sopenharmony_ci For more information, please read <file:Documentation/fb/intelfb.rst> 10658c2ecf20Sopenharmony_ci 10668c2ecf20Sopenharmony_ciconfig FB_INTEL_DEBUG 10678c2ecf20Sopenharmony_ci bool "Intel driver Debug Messages" 10688c2ecf20Sopenharmony_ci depends on FB_INTEL 10698c2ecf20Sopenharmony_ci help 10708c2ecf20Sopenharmony_ci Say Y here if you want the Intel driver to output all sorts 10718c2ecf20Sopenharmony_ci of debugging information to provide to the maintainer when 10728c2ecf20Sopenharmony_ci something goes wrong. 10738c2ecf20Sopenharmony_ci 10748c2ecf20Sopenharmony_ciconfig FB_INTEL_I2C 10758c2ecf20Sopenharmony_ci bool "DDC/I2C for Intel framebuffer support" 10768c2ecf20Sopenharmony_ci depends on FB_INTEL 10778c2ecf20Sopenharmony_ci select FB_DDC 10788c2ecf20Sopenharmony_ci default y 10798c2ecf20Sopenharmony_ci help 10808c2ecf20Sopenharmony_ci Say Y here if you want DDC/I2C support for your on-board Intel graphics. 10818c2ecf20Sopenharmony_ci 10828c2ecf20Sopenharmony_ciconfig FB_MATROX 10838c2ecf20Sopenharmony_ci tristate "Matrox acceleration" 10848c2ecf20Sopenharmony_ci depends on FB && PCI 10858c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 10868c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 10878c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 10888c2ecf20Sopenharmony_ci select FB_TILEBLITTING 10898c2ecf20Sopenharmony_ci select FB_MACMODES if PPC_PMAC 10908c2ecf20Sopenharmony_ci help 10918c2ecf20Sopenharmony_ci Say Y here if you have a Matrox Millennium, Matrox Millennium II, 10928c2ecf20Sopenharmony_ci Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox 10938c2ecf20Sopenharmony_ci Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video, 10948c2ecf20Sopenharmony_ci Matrox G400, G450 or G550 card in your box. 10958c2ecf20Sopenharmony_ci 10968c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 10978c2ecf20Sopenharmony_ci module will be called matroxfb. 10988c2ecf20Sopenharmony_ci 10998c2ecf20Sopenharmony_ci You can pass several parameters to the driver at boot time or at 11008c2ecf20Sopenharmony_ci module load time. The parameters look like "video=matroxfb:XXX", and 11018c2ecf20Sopenharmony_ci are described in <file:Documentation/fb/matroxfb.rst>. 11028c2ecf20Sopenharmony_ci 11038c2ecf20Sopenharmony_ciconfig FB_MATROX_MILLENIUM 11048c2ecf20Sopenharmony_ci bool "Millennium I/II support" 11058c2ecf20Sopenharmony_ci depends on FB_MATROX 11068c2ecf20Sopenharmony_ci help 11078c2ecf20Sopenharmony_ci Say Y here if you have a Matrox Millennium or Matrox Millennium II 11088c2ecf20Sopenharmony_ci video card. If you select "Advanced lowlevel driver options" below, 11098c2ecf20Sopenharmony_ci you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp 11108c2ecf20Sopenharmony_ci packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can 11118c2ecf20Sopenharmony_ci also use font widths different from 8. 11128c2ecf20Sopenharmony_ci 11138c2ecf20Sopenharmony_ciconfig FB_MATROX_MYSTIQUE 11148c2ecf20Sopenharmony_ci bool "Mystique support" 11158c2ecf20Sopenharmony_ci depends on FB_MATROX 11168c2ecf20Sopenharmony_ci help 11178c2ecf20Sopenharmony_ci Say Y here if you have a Matrox Mystique or Matrox Mystique 220 11188c2ecf20Sopenharmony_ci video card. If you select "Advanced lowlevel driver options" below, 11198c2ecf20Sopenharmony_ci you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp 11208c2ecf20Sopenharmony_ci packed pixel and 32 bpp packed pixel. You can also use font widths 11218c2ecf20Sopenharmony_ci different from 8. 11228c2ecf20Sopenharmony_ci 11238c2ecf20Sopenharmony_ciconfig FB_MATROX_G 11248c2ecf20Sopenharmony_ci bool "G100/G200/G400/G450/G550 support" 11258c2ecf20Sopenharmony_ci depends on FB_MATROX 11268c2ecf20Sopenharmony_ci help 11278c2ecf20Sopenharmony_ci Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based 11288c2ecf20Sopenharmony_ci video card. If you select "Advanced lowlevel driver options", you 11298c2ecf20Sopenharmony_ci should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed 11308c2ecf20Sopenharmony_ci pixel and 32 bpp packed pixel. You can also use font widths 11318c2ecf20Sopenharmony_ci different from 8. 11328c2ecf20Sopenharmony_ci 11338c2ecf20Sopenharmony_ci If you need support for G400 secondary head, you must say Y to 11348c2ecf20Sopenharmony_ci "Matrox I2C support" and "G400 second head support" right below. 11358c2ecf20Sopenharmony_ci G450/G550 secondary head and digital output are supported without 11368c2ecf20Sopenharmony_ci additional modules. 11378c2ecf20Sopenharmony_ci 11388c2ecf20Sopenharmony_ci The driver starts in monitor mode. You must use the matroxset tool 11398c2ecf20Sopenharmony_ci (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 11408c2ecf20Sopenharmony_ci swap primary and secondary head outputs, or to change output mode. 11418c2ecf20Sopenharmony_ci Secondary head driver always start in 640x480 resolution and you 11428c2ecf20Sopenharmony_ci must use fbset to change it. 11438c2ecf20Sopenharmony_ci 11448c2ecf20Sopenharmony_ci Do not forget that second head supports only 16 and 32 bpp 11458c2ecf20Sopenharmony_ci packed pixels, so it is a good idea to compile them into the kernel 11468c2ecf20Sopenharmony_ci too. You can use only some font widths, as the driver uses generic 11478c2ecf20Sopenharmony_ci painting procedures (the secondary head does not use acceleration 11488c2ecf20Sopenharmony_ci engine). 11498c2ecf20Sopenharmony_ci 11508c2ecf20Sopenharmony_ci G450/G550 hardware can display TV picture only from secondary CRTC, 11518c2ecf20Sopenharmony_ci and it performs no scaling, so picture must have 525 or 625 lines. 11528c2ecf20Sopenharmony_ci 11538c2ecf20Sopenharmony_ciconfig FB_MATROX_I2C 11548c2ecf20Sopenharmony_ci tristate "Matrox I2C support" 11558c2ecf20Sopenharmony_ci depends on FB_MATROX 11568c2ecf20Sopenharmony_ci select FB_DDC 11578c2ecf20Sopenharmony_ci help 11588c2ecf20Sopenharmony_ci This drivers creates I2C buses which are needed for accessing the 11598c2ecf20Sopenharmony_ci DDC (I2C) bus present on all Matroxes, an I2C bus which 11608c2ecf20Sopenharmony_ci interconnects Matrox optional devices, like MGA-TVO on G200 and 11618c2ecf20Sopenharmony_ci G400, and the secondary head DDC bus, present on G400 only. 11628c2ecf20Sopenharmony_ci 11638c2ecf20Sopenharmony_ci You can say Y or M here if you want to experiment with monitor 11648c2ecf20Sopenharmony_ci detection code. You must say Y or M here if you want to use either 11658c2ecf20Sopenharmony_ci second head of G400 or MGA-TVO on G200 or G400. 11668c2ecf20Sopenharmony_ci 11678c2ecf20Sopenharmony_ci If you compile it as module, it will create a module named 11688c2ecf20Sopenharmony_ci i2c-matroxfb. 11698c2ecf20Sopenharmony_ci 11708c2ecf20Sopenharmony_ciconfig FB_MATROX_MAVEN 11718c2ecf20Sopenharmony_ci tristate "G400 second head support" 11728c2ecf20Sopenharmony_ci depends on FB_MATROX_G && FB_MATROX_I2C 11738c2ecf20Sopenharmony_ci help 11748c2ecf20Sopenharmony_ci WARNING !!! This support does not work with G450 !!! 11758c2ecf20Sopenharmony_ci 11768c2ecf20Sopenharmony_ci Say Y or M here if you want to use a secondary head (meaning two 11778c2ecf20Sopenharmony_ci monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary 11788c2ecf20Sopenharmony_ci head is not compatible with accelerated XFree 3.3.x SVGA servers - 11798c2ecf20Sopenharmony_ci secondary head output is blanked while you are in X. With XFree 11808c2ecf20Sopenharmony_ci 3.9.17 preview you can use both heads if you use SVGA over fbdev or 11818c2ecf20Sopenharmony_ci the fbdev driver on first head and the fbdev driver on second head. 11828c2ecf20Sopenharmony_ci 11838c2ecf20Sopenharmony_ci If you compile it as module, two modules are created, 11848c2ecf20Sopenharmony_ci matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for 11858c2ecf20Sopenharmony_ci both G200 and G400, matroxfb_crtc2 is needed only by G400. You must 11868c2ecf20Sopenharmony_ci also load i2c-matroxfb to get it to run. 11878c2ecf20Sopenharmony_ci 11888c2ecf20Sopenharmony_ci The driver starts in monitor mode and you must use the matroxset 11898c2ecf20Sopenharmony_ci tool (available at 11908c2ecf20Sopenharmony_ci <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to 11918c2ecf20Sopenharmony_ci PAL or NTSC or to swap primary and secondary head outputs. 11928c2ecf20Sopenharmony_ci Secondary head driver also always start in 640x480 resolution, you 11938c2ecf20Sopenharmony_ci must use fbset to change it. 11948c2ecf20Sopenharmony_ci 11958c2ecf20Sopenharmony_ci Also do not forget that second head supports only 16 and 32 bpp 11968c2ecf20Sopenharmony_ci packed pixels, so it is a good idea to compile them into the kernel 11978c2ecf20Sopenharmony_ci too. You can use only some font widths, as the driver uses generic 11988c2ecf20Sopenharmony_ci painting procedures (the secondary head does not use acceleration 11998c2ecf20Sopenharmony_ci engine). 12008c2ecf20Sopenharmony_ci 12018c2ecf20Sopenharmony_ciconfig FB_RADEON 12028c2ecf20Sopenharmony_ci tristate "ATI Radeon display support" 12038c2ecf20Sopenharmony_ci depends on FB && PCI 12048c2ecf20Sopenharmony_ci select FB_BACKLIGHT if FB_RADEON_BACKLIGHT 12058c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 12068c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 12078c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 12088c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 12098c2ecf20Sopenharmony_ci select FB_MACMODES if PPC 12108c2ecf20Sopenharmony_ci help 12118c2ecf20Sopenharmony_ci Choose this option if you want to use an ATI Radeon graphics card as 12128c2ecf20Sopenharmony_ci a framebuffer device. There are both PCI and AGP versions. You 12138c2ecf20Sopenharmony_ci don't need to choose this to run the Radeon in plain VGA mode. 12148c2ecf20Sopenharmony_ci 12158c2ecf20Sopenharmony_ci There is a product page at 12168c2ecf20Sopenharmony_ci https://products.amd.com/en-us/GraphicCardResult.aspx 12178c2ecf20Sopenharmony_ci 12188c2ecf20Sopenharmony_ciconfig FB_RADEON_I2C 12198c2ecf20Sopenharmony_ci bool "DDC/I2C for ATI Radeon support" 12208c2ecf20Sopenharmony_ci depends on FB_RADEON 12218c2ecf20Sopenharmony_ci select FB_DDC 12228c2ecf20Sopenharmony_ci default y 12238c2ecf20Sopenharmony_ci help 12248c2ecf20Sopenharmony_ci Say Y here if you want DDC/I2C support for your Radeon board. 12258c2ecf20Sopenharmony_ci 12268c2ecf20Sopenharmony_ciconfig FB_RADEON_BACKLIGHT 12278c2ecf20Sopenharmony_ci bool "Support for backlight control" 12288c2ecf20Sopenharmony_ci depends on FB_RADEON 12298c2ecf20Sopenharmony_ci default y 12308c2ecf20Sopenharmony_ci help 12318c2ecf20Sopenharmony_ci Say Y here if you want to control the backlight of your display. 12328c2ecf20Sopenharmony_ci 12338c2ecf20Sopenharmony_ciconfig FB_RADEON_DEBUG 12348c2ecf20Sopenharmony_ci bool "Lots of debug output from Radeon driver" 12358c2ecf20Sopenharmony_ci depends on FB_RADEON 12368c2ecf20Sopenharmony_ci help 12378c2ecf20Sopenharmony_ci Say Y here if you want the Radeon driver to output all sorts 12388c2ecf20Sopenharmony_ci of debugging information to provide to the maintainer when 12398c2ecf20Sopenharmony_ci something goes wrong. 12408c2ecf20Sopenharmony_ci 12418c2ecf20Sopenharmony_ciconfig FB_ATY128 12428c2ecf20Sopenharmony_ci tristate "ATI Rage128 display support" 12438c2ecf20Sopenharmony_ci depends on FB && PCI 12448c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 12458c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 12468c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 12478c2ecf20Sopenharmony_ci select FB_BACKLIGHT if FB_ATY128_BACKLIGHT 12488c2ecf20Sopenharmony_ci select FB_MACMODES if PPC_PMAC 12498c2ecf20Sopenharmony_ci help 12508c2ecf20Sopenharmony_ci This driver supports graphics boards with the ATI Rage128 chips. 12518c2ecf20Sopenharmony_ci Say Y if you have such a graphics board and read 12528c2ecf20Sopenharmony_ci <file:Documentation/fb/aty128fb.rst>. 12538c2ecf20Sopenharmony_ci 12548c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 12558c2ecf20Sopenharmony_ci module will be called aty128fb. 12568c2ecf20Sopenharmony_ci 12578c2ecf20Sopenharmony_ciconfig FB_ATY128_BACKLIGHT 12588c2ecf20Sopenharmony_ci bool "Support for backlight control" 12598c2ecf20Sopenharmony_ci depends on FB_ATY128 12608c2ecf20Sopenharmony_ci default y 12618c2ecf20Sopenharmony_ci help 12628c2ecf20Sopenharmony_ci Say Y here if you want to control the backlight of your display. 12638c2ecf20Sopenharmony_ci 12648c2ecf20Sopenharmony_ciconfig FB_ATY 12658c2ecf20Sopenharmony_ci tristate "ATI Mach64 display support" if PCI || ATARI 12668c2ecf20Sopenharmony_ci depends on FB && !SPARC32 12678c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 12688c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 12698c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 12708c2ecf20Sopenharmony_ci select FB_BACKLIGHT if FB_ATY_BACKLIGHT 12718c2ecf20Sopenharmony_ci select FB_MACMODES if PPC 12728c2ecf20Sopenharmony_ci select FB_ATY_CT if SPARC64 && PCI 12738c2ecf20Sopenharmony_ci help 12748c2ecf20Sopenharmony_ci This driver supports graphics boards with the ATI Mach64 chips. 12758c2ecf20Sopenharmony_ci Say Y if you have such a graphics board. 12768c2ecf20Sopenharmony_ci 12778c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 12788c2ecf20Sopenharmony_ci module will be called atyfb. 12798c2ecf20Sopenharmony_ci 12808c2ecf20Sopenharmony_ciconfig FB_ATY_CT 12818c2ecf20Sopenharmony_ci bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support" 12828c2ecf20Sopenharmony_ci depends on PCI && FB_ATY 12838c2ecf20Sopenharmony_ci help 12848c2ecf20Sopenharmony_ci Say Y here to support use of ATI's 64-bit Rage boards (or other 12858c2ecf20Sopenharmony_ci boards based on the Mach64 CT, VT, GT, and LT chipsets) as a 12868c2ecf20Sopenharmony_ci framebuffer device. The ATI product support page for these boards 12878c2ecf20Sopenharmony_ci is at <http://support.ati.com/products/pc/mach64/mach64.html>. 12888c2ecf20Sopenharmony_ci 12898c2ecf20Sopenharmony_ciconfig FB_ATY_GENERIC_LCD 12908c2ecf20Sopenharmony_ci bool "Mach64 generic LCD support" 12918c2ecf20Sopenharmony_ci depends on FB_ATY_CT 12928c2ecf20Sopenharmony_ci help 12938c2ecf20Sopenharmony_ci Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility, 12948c2ecf20Sopenharmony_ci Rage XC, or Rage XL chipset. 12958c2ecf20Sopenharmony_ci 12968c2ecf20Sopenharmony_ciconfig FB_ATY_GX 12978c2ecf20Sopenharmony_ci bool "Mach64 GX support" if PCI 12988c2ecf20Sopenharmony_ci depends on FB_ATY 12998c2ecf20Sopenharmony_ci default y if ATARI 13008c2ecf20Sopenharmony_ci help 13018c2ecf20Sopenharmony_ci Say Y here to support use of the ATI Mach64 Graphics Expression 13028c2ecf20Sopenharmony_ci board (or other boards based on the Mach64 GX chipset) as a 13038c2ecf20Sopenharmony_ci framebuffer device. The ATI product support page for these boards 13048c2ecf20Sopenharmony_ci is at 13058c2ecf20Sopenharmony_ci <http://support.ati.com/products/pc/mach64/graphics_xpression.html>. 13068c2ecf20Sopenharmony_ci 13078c2ecf20Sopenharmony_ciconfig FB_ATY_BACKLIGHT 13088c2ecf20Sopenharmony_ci bool "Support for backlight control" 13098c2ecf20Sopenharmony_ci depends on FB_ATY 13108c2ecf20Sopenharmony_ci default y 13118c2ecf20Sopenharmony_ci help 13128c2ecf20Sopenharmony_ci Say Y here if you want to control the backlight of your display. 13138c2ecf20Sopenharmony_ci 13148c2ecf20Sopenharmony_ciconfig FB_S3 13158c2ecf20Sopenharmony_ci tristate "S3 Trio/Virge support" 13168c2ecf20Sopenharmony_ci depends on FB && PCI 13178c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 13188c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 13198c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 13208c2ecf20Sopenharmony_ci select FB_TILEBLITTING 13218c2ecf20Sopenharmony_ci select FB_SVGALIB 13228c2ecf20Sopenharmony_ci select VGASTATE 13238c2ecf20Sopenharmony_ci select FONT_8x16 if FRAMEBUFFER_CONSOLE 13248c2ecf20Sopenharmony_ci help 13258c2ecf20Sopenharmony_ci Driver for graphics boards with S3 Trio / S3 Virge chip. 13268c2ecf20Sopenharmony_ci 13278c2ecf20Sopenharmony_ciconfig FB_S3_DDC 13288c2ecf20Sopenharmony_ci bool "DDC for S3 support" 13298c2ecf20Sopenharmony_ci depends on FB_S3 13308c2ecf20Sopenharmony_ci select FB_DDC 13318c2ecf20Sopenharmony_ci default y 13328c2ecf20Sopenharmony_ci help 13338c2ecf20Sopenharmony_ci Say Y here if you want DDC support for your S3 graphics card. 13348c2ecf20Sopenharmony_ci 13358c2ecf20Sopenharmony_ciconfig FB_SAVAGE 13368c2ecf20Sopenharmony_ci tristate "S3 Savage support" 13378c2ecf20Sopenharmony_ci depends on FB && PCI 13388c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 13398c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 13408c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 13418c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 13428c2ecf20Sopenharmony_ci select VGASTATE 13438c2ecf20Sopenharmony_ci help 13448c2ecf20Sopenharmony_ci This driver supports notebooks and computers with S3 Savage PCI/AGP 13458c2ecf20Sopenharmony_ci chips. 13468c2ecf20Sopenharmony_ci 13478c2ecf20Sopenharmony_ci Say Y if you have such a graphics card. 13488c2ecf20Sopenharmony_ci 13498c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here; the module 13508c2ecf20Sopenharmony_ci will be called savagefb. 13518c2ecf20Sopenharmony_ci 13528c2ecf20Sopenharmony_ciconfig FB_SAVAGE_I2C 13538c2ecf20Sopenharmony_ci bool "Enable DDC2 Support" 13548c2ecf20Sopenharmony_ci depends on FB_SAVAGE 13558c2ecf20Sopenharmony_ci select FB_DDC 13568c2ecf20Sopenharmony_ci help 13578c2ecf20Sopenharmony_ci This enables I2C support for S3 Savage Chipsets. This is used 13588c2ecf20Sopenharmony_ci only for getting EDID information from the attached display 13598c2ecf20Sopenharmony_ci allowing for robust video mode handling and switching. 13608c2ecf20Sopenharmony_ci 13618c2ecf20Sopenharmony_ci Because fbdev-2.6 requires that drivers must be able to 13628c2ecf20Sopenharmony_ci independently validate video mode parameters, you should say Y 13638c2ecf20Sopenharmony_ci here. 13648c2ecf20Sopenharmony_ci 13658c2ecf20Sopenharmony_ciconfig FB_SAVAGE_ACCEL 13668c2ecf20Sopenharmony_ci bool "Enable Console Acceleration" 13678c2ecf20Sopenharmony_ci depends on FB_SAVAGE 13688c2ecf20Sopenharmony_ci help 13698c2ecf20Sopenharmony_ci This option will compile in console acceleration support. If 13708c2ecf20Sopenharmony_ci the resulting framebuffer console has bothersome glitches, then 13718c2ecf20Sopenharmony_ci choose N here. 13728c2ecf20Sopenharmony_ci 13738c2ecf20Sopenharmony_ciconfig FB_SIS 13748c2ecf20Sopenharmony_ci tristate "SiS/XGI display support" 13758c2ecf20Sopenharmony_ci depends on FB && PCI 13768c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 13778c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 13788c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 13798c2ecf20Sopenharmony_ci select FB_BOOT_VESA_SUPPORT if FB_SIS = y 13808c2ecf20Sopenharmony_ci select FB_SIS_300 if !FB_SIS_315 13818c2ecf20Sopenharmony_ci help 13828c2ecf20Sopenharmony_ci This is the frame buffer device driver for the SiS 300, 315, 330 13838c2ecf20Sopenharmony_ci and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets. 13848c2ecf20Sopenharmony_ci Specs available at <https://www.sis.com> and <http://www.xgitech.com>. 13858c2ecf20Sopenharmony_ci 13868c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here; the module 13878c2ecf20Sopenharmony_ci will be called sisfb. 13888c2ecf20Sopenharmony_ci 13898c2ecf20Sopenharmony_ciconfig FB_SIS_300 13908c2ecf20Sopenharmony_ci bool "SiS 300 series support" 13918c2ecf20Sopenharmony_ci depends on FB_SIS 13928c2ecf20Sopenharmony_ci help 13938c2ecf20Sopenharmony_ci Say Y here to support use of the SiS 300/305, 540, 630 and 730. 13948c2ecf20Sopenharmony_ci 13958c2ecf20Sopenharmony_ciconfig FB_SIS_315 13968c2ecf20Sopenharmony_ci bool "SiS 315/330/340 series and XGI support" 13978c2ecf20Sopenharmony_ci depends on FB_SIS 13988c2ecf20Sopenharmony_ci help 13998c2ecf20Sopenharmony_ci Say Y here to support use of the SiS 315, 330 and 340 series 14008c2ecf20Sopenharmony_ci (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well 14018c2ecf20Sopenharmony_ci as XGI V3XT, V5, V8 and Z7. 14028c2ecf20Sopenharmony_ci 14038c2ecf20Sopenharmony_ciconfig FB_VIA 14048c2ecf20Sopenharmony_ci tristate "VIA UniChrome (Pro) and Chrome9 display support" 14058c2ecf20Sopenharmony_ci depends on FB && PCI && GPIOLIB && I2C && (X86 || COMPILE_TEST) 14068c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 14078c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 14088c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 14098c2ecf20Sopenharmony_ci select I2C_ALGOBIT 14108c2ecf20Sopenharmony_ci help 14118c2ecf20Sopenharmony_ci This is the frame buffer device driver for Graphics chips of VIA 14128c2ecf20Sopenharmony_ci UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/ 14138c2ecf20Sopenharmony_ci CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896 14148c2ecf20Sopenharmony_ci /P4M900,VX800) 14158c2ecf20Sopenharmony_ci Say Y if you have a VIA UniChrome graphics board. 14168c2ecf20Sopenharmony_ci 14178c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 14188c2ecf20Sopenharmony_ci module will be called viafb. 14198c2ecf20Sopenharmony_ci 14208c2ecf20Sopenharmony_ciif FB_VIA 14218c2ecf20Sopenharmony_ci 14228c2ecf20Sopenharmony_ciconfig FB_VIA_DIRECT_PROCFS 14238c2ecf20Sopenharmony_ci bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)" 14248c2ecf20Sopenharmony_ci help 14258c2ecf20Sopenharmony_ci Allow direct hardware access to some output registers via procfs. 14268c2ecf20Sopenharmony_ci This is dangerous but may provide the only chance to get the 14278c2ecf20Sopenharmony_ci correct output device configuration. 14288c2ecf20Sopenharmony_ci Its use is strongly discouraged. 14298c2ecf20Sopenharmony_ci 14308c2ecf20Sopenharmony_ciconfig FB_VIA_X_COMPATIBILITY 14318c2ecf20Sopenharmony_ci bool "X server compatibility" 14328c2ecf20Sopenharmony_ci help 14338c2ecf20Sopenharmony_ci This option reduces the functionality (power saving, ...) of the 14348c2ecf20Sopenharmony_ci framebuffer to avoid negative impact on the OpenChrome X server. 14358c2ecf20Sopenharmony_ci If you use any X server other than fbdev you should enable this 14368c2ecf20Sopenharmony_ci otherwise it should be safe to disable it and allow using all 14378c2ecf20Sopenharmony_ci features. 14388c2ecf20Sopenharmony_ci 14398c2ecf20Sopenharmony_ciendif 14408c2ecf20Sopenharmony_ci 14418c2ecf20Sopenharmony_ciconfig FB_NEOMAGIC 14428c2ecf20Sopenharmony_ci tristate "NeoMagic display support" 14438c2ecf20Sopenharmony_ci depends on FB && PCI 14448c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 14458c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 14468c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 14478c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 14488c2ecf20Sopenharmony_ci select VGASTATE 14498c2ecf20Sopenharmony_ci help 14508c2ecf20Sopenharmony_ci This driver supports notebooks with NeoMagic PCI chips. 14518c2ecf20Sopenharmony_ci Say Y if you have such a graphics card. 14528c2ecf20Sopenharmony_ci 14538c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 14548c2ecf20Sopenharmony_ci module will be called neofb. 14558c2ecf20Sopenharmony_ci 14568c2ecf20Sopenharmony_ciconfig FB_KYRO 14578c2ecf20Sopenharmony_ci tristate "IMG Kyro support" 14588c2ecf20Sopenharmony_ci depends on FB && PCI 14598c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 14608c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 14618c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 14628c2ecf20Sopenharmony_ci help 14638c2ecf20Sopenharmony_ci Say Y here if you have a STG4000 / Kyro / PowerVR 3 based 14648c2ecf20Sopenharmony_ci graphics board. 14658c2ecf20Sopenharmony_ci 14668c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 14678c2ecf20Sopenharmony_ci module will be called kyrofb. 14688c2ecf20Sopenharmony_ci 14698c2ecf20Sopenharmony_ciconfig FB_3DFX 14708c2ecf20Sopenharmony_ci tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support" 14718c2ecf20Sopenharmony_ci depends on FB && PCI 14728c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 14738c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 14748c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 14758c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 14768c2ecf20Sopenharmony_ci help 14778c2ecf20Sopenharmony_ci This driver supports graphics boards with the 3Dfx Banshee, 14788c2ecf20Sopenharmony_ci Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have 14798c2ecf20Sopenharmony_ci such a graphics board. 14808c2ecf20Sopenharmony_ci 14818c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 14828c2ecf20Sopenharmony_ci module will be called tdfxfb. 14838c2ecf20Sopenharmony_ci 14848c2ecf20Sopenharmony_ciconfig FB_3DFX_ACCEL 14858c2ecf20Sopenharmony_ci bool "3Dfx Acceleration functions" 14868c2ecf20Sopenharmony_ci depends on FB_3DFX 14878c2ecf20Sopenharmony_ci help 14888c2ecf20Sopenharmony_ci This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer 14898c2ecf20Sopenharmony_ci device driver with acceleration functions. 14908c2ecf20Sopenharmony_ci 14918c2ecf20Sopenharmony_ciconfig FB_3DFX_I2C 14928c2ecf20Sopenharmony_ci bool "Enable DDC/I2C support" 14938c2ecf20Sopenharmony_ci depends on FB_3DFX 14948c2ecf20Sopenharmony_ci select FB_DDC 14958c2ecf20Sopenharmony_ci default y 14968c2ecf20Sopenharmony_ci help 14978c2ecf20Sopenharmony_ci Say Y here if you want DDC/I2C support for your 3dfx Voodoo3. 14988c2ecf20Sopenharmony_ci 14998c2ecf20Sopenharmony_ciconfig FB_VOODOO1 15008c2ecf20Sopenharmony_ci tristate "3Dfx Voodoo Graphics (sst1) support" 15018c2ecf20Sopenharmony_ci depends on FB && PCI 15028c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15038c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15048c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15058c2ecf20Sopenharmony_ci help 15068c2ecf20Sopenharmony_ci Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or 15078c2ecf20Sopenharmony_ci Voodoo2 (cvg) based graphics card. 15088c2ecf20Sopenharmony_ci 15098c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 15108c2ecf20Sopenharmony_ci module will be called sstfb. 15118c2ecf20Sopenharmony_ci 15128c2ecf20Sopenharmony_ci WARNING: Do not use any application that uses the 3D engine 15138c2ecf20Sopenharmony_ci (namely glide) while using this driver. 15148c2ecf20Sopenharmony_ci Please read the <file:Documentation/fb/sstfb.rst> for supported 15158c2ecf20Sopenharmony_ci options and other important info support. 15168c2ecf20Sopenharmony_ci 15178c2ecf20Sopenharmony_ciconfig FB_VT8623 15188c2ecf20Sopenharmony_ci tristate "VIA VT8623 support" 15198c2ecf20Sopenharmony_ci depends on FB && PCI 15208c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15218c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15228c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15238c2ecf20Sopenharmony_ci select FB_TILEBLITTING 15248c2ecf20Sopenharmony_ci select FB_SVGALIB 15258c2ecf20Sopenharmony_ci select VGASTATE 15268c2ecf20Sopenharmony_ci select FONT_8x16 if FRAMEBUFFER_CONSOLE 15278c2ecf20Sopenharmony_ci help 15288c2ecf20Sopenharmony_ci Driver for CastleRock integrated graphics core in the 15298c2ecf20Sopenharmony_ci VIA VT8623 [Apollo CLE266] chipset. 15308c2ecf20Sopenharmony_ci 15318c2ecf20Sopenharmony_ciconfig FB_TRIDENT 15328c2ecf20Sopenharmony_ci tristate "Trident/CyberXXX/CyberBlade support" 15338c2ecf20Sopenharmony_ci depends on FB && PCI 15348c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15358c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15368c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15378c2ecf20Sopenharmony_ci select FB_DDC 15388c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 15398c2ecf20Sopenharmony_ci help 15408c2ecf20Sopenharmony_ci This is the frame buffer device driver for Trident PCI/AGP chipsets. 15418c2ecf20Sopenharmony_ci Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D 15428c2ecf20Sopenharmony_ci and Blade XP. 15438c2ecf20Sopenharmony_ci There are also integrated versions of these chips called CyberXXXX, 15448c2ecf20Sopenharmony_ci CyberImage or CyberBlade. These chips are mostly found in laptops 15458c2ecf20Sopenharmony_ci but also on some motherboards including early VIA EPIA motherboards. 15468c2ecf20Sopenharmony_ci For more information, read <file:Documentation/fb/tridentfb.rst> 15478c2ecf20Sopenharmony_ci 15488c2ecf20Sopenharmony_ci Say Y if you have such a graphics board. 15498c2ecf20Sopenharmony_ci 15508c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 15518c2ecf20Sopenharmony_ci module will be called tridentfb. 15528c2ecf20Sopenharmony_ci 15538c2ecf20Sopenharmony_ciconfig FB_ARK 15548c2ecf20Sopenharmony_ci tristate "ARK 2000PV support" 15558c2ecf20Sopenharmony_ci depends on FB && PCI 15568c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15578c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15588c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15598c2ecf20Sopenharmony_ci select FB_TILEBLITTING 15608c2ecf20Sopenharmony_ci select FB_SVGALIB 15618c2ecf20Sopenharmony_ci select VGASTATE 15628c2ecf20Sopenharmony_ci select FONT_8x16 if FRAMEBUFFER_CONSOLE 15638c2ecf20Sopenharmony_ci help 15648c2ecf20Sopenharmony_ci Driver for PCI graphics boards with ARK 2000PV chip 15658c2ecf20Sopenharmony_ci and ICS 5342 RAMDAC. 15668c2ecf20Sopenharmony_ci 15678c2ecf20Sopenharmony_ciconfig FB_PM3 15688c2ecf20Sopenharmony_ci tristate "Permedia3 support" 15698c2ecf20Sopenharmony_ci depends on FB && PCI 15708c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15718c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15728c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15738c2ecf20Sopenharmony_ci help 15748c2ecf20Sopenharmony_ci This is the frame buffer device driver for the 3DLabs Permedia3 15758c2ecf20Sopenharmony_ci chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 & 15768c2ecf20Sopenharmony_ci similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000 15778c2ecf20Sopenharmony_ci and maybe other boards. 15788c2ecf20Sopenharmony_ci 15798c2ecf20Sopenharmony_ciconfig FB_CARMINE 15808c2ecf20Sopenharmony_ci tristate "Fujitsu carmine frame buffer support" 15818c2ecf20Sopenharmony_ci depends on FB && PCI 15828c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 15838c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 15848c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 15858c2ecf20Sopenharmony_ci help 15868c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Fujitsu Carmine chip. 15878c2ecf20Sopenharmony_ci The driver provides two independent frame buffer devices. 15888c2ecf20Sopenharmony_ci 15898c2ecf20Sopenharmony_cichoice 15908c2ecf20Sopenharmony_ci depends on FB_CARMINE 15918c2ecf20Sopenharmony_ci prompt "DRAM timing" 15928c2ecf20Sopenharmony_ci default FB_CARMINE_DRAM_EVAL 15938c2ecf20Sopenharmony_ci 15948c2ecf20Sopenharmony_ciconfig FB_CARMINE_DRAM_EVAL 15958c2ecf20Sopenharmony_ci bool "Eval board timings" 15968c2ecf20Sopenharmony_ci help 15978c2ecf20Sopenharmony_ci Use timings which work on the eval card. 15988c2ecf20Sopenharmony_ci 15998c2ecf20Sopenharmony_ciconfig CARMINE_DRAM_CUSTOM 16008c2ecf20Sopenharmony_ci bool "Custom board timings" 16018c2ecf20Sopenharmony_ci help 16028c2ecf20Sopenharmony_ci Use custom board timings. 16038c2ecf20Sopenharmony_ciendchoice 16048c2ecf20Sopenharmony_ci 16058c2ecf20Sopenharmony_ciconfig FB_AU1100 16068c2ecf20Sopenharmony_ci bool "Au1100 LCD Driver" 16078c2ecf20Sopenharmony_ci depends on (FB = y) && MIPS_ALCHEMY 16088c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 16098c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 16108c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 16118c2ecf20Sopenharmony_ci help 16128c2ecf20Sopenharmony_ci This is the framebuffer driver for the AMD Au1100 SOC. It can drive 16138c2ecf20Sopenharmony_ci various panels and CRTs by passing in kernel cmd line option 16148c2ecf20Sopenharmony_ci au1100fb:panel=<name>. 16158c2ecf20Sopenharmony_ci 16168c2ecf20Sopenharmony_ciconfig FB_AU1200 16178c2ecf20Sopenharmony_ci bool "Au1200/Au1300 LCD Driver" 16188c2ecf20Sopenharmony_ci depends on (FB = y) && MIPS_ALCHEMY 16198c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 16208c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 16218c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 16228c2ecf20Sopenharmony_ci select FB_SYS_FOPS 16238c2ecf20Sopenharmony_ci help 16248c2ecf20Sopenharmony_ci This is the framebuffer driver for the Au1200/Au1300 SOCs. 16258c2ecf20Sopenharmony_ci It can drive various panels and CRTs by passing in kernel cmd line 16268c2ecf20Sopenharmony_ci option au1200fb:panel=<name>. 16278c2ecf20Sopenharmony_ci 16288c2ecf20Sopenharmony_ciconfig FB_VT8500 16298c2ecf20Sopenharmony_ci bool "VIA VT8500 framebuffer support" 16308c2ecf20Sopenharmony_ci depends on (FB = y) && ARM && ARCH_VT8500 16318c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 16328c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 16338c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 16348c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 16358c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 16368c2ecf20Sopenharmony_ci help 16378c2ecf20Sopenharmony_ci This is the framebuffer driver for VIA VT8500 integrated LCD 16388c2ecf20Sopenharmony_ci controller. 16398c2ecf20Sopenharmony_ci 16408c2ecf20Sopenharmony_ciconfig FB_WM8505 16418c2ecf20Sopenharmony_ci bool "Wondermedia WM8xxx-series frame buffer support" 16428c2ecf20Sopenharmony_ci depends on (FB = y) && HAS_IOMEM && (ARCH_VT8500 || COMPILE_TEST) 16438c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 16448c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 16458c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 16468c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 16478c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 16488c2ecf20Sopenharmony_ci help 16498c2ecf20Sopenharmony_ci This is the framebuffer driver for WonderMedia WM8xxx-series 16508c2ecf20Sopenharmony_ci integrated LCD controller. This driver covers the WM8505, WM8650 16518c2ecf20Sopenharmony_ci and WM8850 SoCs. 16528c2ecf20Sopenharmony_ci 16538c2ecf20Sopenharmony_ciconfig FB_WMT_GE_ROPS 16548c2ecf20Sopenharmony_ci bool "VT8500/WM8xxx accelerated raster ops support" 16558c2ecf20Sopenharmony_ci depends on (FB = y) && (FB_VT8500 || FB_WM8505) 16568c2ecf20Sopenharmony_ci help 16578c2ecf20Sopenharmony_ci This adds support for accelerated raster operations on the 16588c2ecf20Sopenharmony_ci VIA VT8500 and Wondermedia 85xx series SoCs. 16598c2ecf20Sopenharmony_ci 16608c2ecf20Sopenharmony_cisource "drivers/video/fbdev/geode/Kconfig" 16618c2ecf20Sopenharmony_ci 16628c2ecf20Sopenharmony_ciconfig FB_HIT 16638c2ecf20Sopenharmony_ci tristate "HD64461 Frame Buffer support" 16648c2ecf20Sopenharmony_ci depends on FB && HD64461 16658c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 16668c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 16678c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 16688c2ecf20Sopenharmony_ci help 16698c2ecf20Sopenharmony_ci This is the frame buffer device driver for the Hitachi HD64461 LCD 16708c2ecf20Sopenharmony_ci frame buffer card. 16718c2ecf20Sopenharmony_ci 16728c2ecf20Sopenharmony_ciconfig FB_PMAG_AA 16738c2ecf20Sopenharmony_ci tristate "PMAG-AA TURBOchannel framebuffer support" 16748c2ecf20Sopenharmony_ci depends on FB && TC 16758c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 16768c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 16778c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 16788c2ecf20Sopenharmony_ci help 16798c2ecf20Sopenharmony_ci Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1) 16808c2ecf20Sopenharmony_ci used mainly in the MIPS-based DECstation series. 16818c2ecf20Sopenharmony_ci 16828c2ecf20Sopenharmony_ciconfig FB_PMAG_BA 16838c2ecf20Sopenharmony_ci tristate "PMAG-BA TURBOchannel framebuffer support" 16848c2ecf20Sopenharmony_ci depends on FB && TC 16858c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 16868c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 16878c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 16888c2ecf20Sopenharmony_ci help 16898c2ecf20Sopenharmony_ci Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8) 16908c2ecf20Sopenharmony_ci used mainly in the MIPS-based DECstation series. 16918c2ecf20Sopenharmony_ci 16928c2ecf20Sopenharmony_ciconfig FB_PMAGB_B 16938c2ecf20Sopenharmony_ci tristate "PMAGB-B TURBOchannel framebuffer support" 16948c2ecf20Sopenharmony_ci depends on FB && TC 16958c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 16968c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 16978c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 16988c2ecf20Sopenharmony_ci help 16998c2ecf20Sopenharmony_ci Support for the PMAGB-B TURBOchannel framebuffer card used mainly 17008c2ecf20Sopenharmony_ci in the MIPS-based DECstation series. The card is currently only 17018c2ecf20Sopenharmony_ci supported in 1280x1024x8 mode. 17028c2ecf20Sopenharmony_ci 17038c2ecf20Sopenharmony_ciconfig FB_MAXINE 17048c2ecf20Sopenharmony_ci bool "Maxine (Personal DECstation) onboard framebuffer support" 17058c2ecf20Sopenharmony_ci depends on (FB = y) && MACH_DECSTATION 17068c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 17078c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 17088c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 17098c2ecf20Sopenharmony_ci help 17108c2ecf20Sopenharmony_ci Support for the onboard framebuffer (1024x768x8) in the Personal 17118c2ecf20Sopenharmony_ci DECstation series (Personal DECstation 5000/20, /25, /33, /50, 17128c2ecf20Sopenharmony_ci Codename "Maxine"). 17138c2ecf20Sopenharmony_ci 17148c2ecf20Sopenharmony_ciconfig FB_G364 17158c2ecf20Sopenharmony_ci bool "G364 frame buffer support" 17168c2ecf20Sopenharmony_ci depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700) 17178c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 17188c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 17198c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 17208c2ecf20Sopenharmony_ci help 17218c2ecf20Sopenharmony_ci The G364 driver is the framebuffer used in MIPS Magnum 4000 and 17228c2ecf20Sopenharmony_ci Olivetti M700-10 systems. 17238c2ecf20Sopenharmony_ci 17248c2ecf20Sopenharmony_ciconfig FB_68328 17258c2ecf20Sopenharmony_ci bool "Motorola 68328 native frame buffer support" 17268c2ecf20Sopenharmony_ci depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328) 17278c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 17288c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 17298c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 17308c2ecf20Sopenharmony_ci help 17318c2ecf20Sopenharmony_ci Say Y here if you want to support the built-in frame buffer of 17328c2ecf20Sopenharmony_ci the Motorola 68328 CPU family. 17338c2ecf20Sopenharmony_ci 17348c2ecf20Sopenharmony_ciconfig FB_PXA168 17358c2ecf20Sopenharmony_ci tristate "PXA168/910 LCD framebuffer support" 17368c2ecf20Sopenharmony_ci depends on FB && HAVE_CLK && HAS_IOMEM 17378c2ecf20Sopenharmony_ci depends on CPU_PXA168 || CPU_PXA910 || COMPILE_TEST 17388c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 17398c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 17408c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 17418c2ecf20Sopenharmony_ci help 17428c2ecf20Sopenharmony_ci Frame buffer driver for the built-in LCD controller in the Marvell 17438c2ecf20Sopenharmony_ci MMP processor. 17448c2ecf20Sopenharmony_ci 17458c2ecf20Sopenharmony_ciconfig FB_PXA 17468c2ecf20Sopenharmony_ci tristate "PXA LCD framebuffer support" 17478c2ecf20Sopenharmony_ci depends on FB && ARCH_PXA 17488c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 17498c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 17508c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 17518c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS if OF 17528c2ecf20Sopenharmony_ci select FB_MODE_HELPERS if OF 17538c2ecf20Sopenharmony_ci help 17548c2ecf20Sopenharmony_ci Frame buffer driver for the built-in LCD controller in the Intel 17558c2ecf20Sopenharmony_ci PXA2x0 processor. 17568c2ecf20Sopenharmony_ci 17578c2ecf20Sopenharmony_ci This driver is also available as a module ( = code which can be 17588c2ecf20Sopenharmony_ci inserted and removed from the running kernel whenever you want). The 17598c2ecf20Sopenharmony_ci module will be called pxafb. If you want to compile it as a module, 17608c2ecf20Sopenharmony_ci say M here and read <file:Documentation/kbuild/modules.rst>. 17618c2ecf20Sopenharmony_ci 17628c2ecf20Sopenharmony_ci If unsure, say N. 17638c2ecf20Sopenharmony_ci 17648c2ecf20Sopenharmony_ciconfig FB_PXA_OVERLAY 17658c2ecf20Sopenharmony_ci bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer" 17668c2ecf20Sopenharmony_ci depends on FB_PXA && (PXA27x || PXA3xx) 17678c2ecf20Sopenharmony_ci 17688c2ecf20Sopenharmony_ciconfig FB_PXA_SMARTPANEL 17698c2ecf20Sopenharmony_ci bool "PXA Smartpanel LCD support" 17708c2ecf20Sopenharmony_ci depends on FB_PXA 17718c2ecf20Sopenharmony_ci 17728c2ecf20Sopenharmony_ciconfig FB_PXA_PARAMETERS 17738c2ecf20Sopenharmony_ci bool "PXA LCD command line parameters" 17748c2ecf20Sopenharmony_ci depends on FB_PXA 17758c2ecf20Sopenharmony_ci help 17768c2ecf20Sopenharmony_ci Enable the use of kernel command line or module parameters 17778c2ecf20Sopenharmony_ci to configure the physical properties of the LCD panel when 17788c2ecf20Sopenharmony_ci using the PXA LCD driver. 17798c2ecf20Sopenharmony_ci 17808c2ecf20Sopenharmony_ci This option allows you to override the panel parameters 17818c2ecf20Sopenharmony_ci supplied by the platform in order to support multiple 17828c2ecf20Sopenharmony_ci different models of flatpanel. If you will only be using a 17838c2ecf20Sopenharmony_ci single model of flatpanel then you can safely leave this 17848c2ecf20Sopenharmony_ci option disabled. 17858c2ecf20Sopenharmony_ci 17868c2ecf20Sopenharmony_ci <file:Documentation/fb/pxafb.rst> describes the available parameters. 17878c2ecf20Sopenharmony_ci 17888c2ecf20Sopenharmony_ciconfig PXA3XX_GCU 17898c2ecf20Sopenharmony_ci tristate "PXA3xx 2D graphics accelerator driver" 17908c2ecf20Sopenharmony_ci depends on FB_PXA 17918c2ecf20Sopenharmony_ci help 17928c2ecf20Sopenharmony_ci Kernelspace driver for the 2D graphics controller unit (GCU) 17938c2ecf20Sopenharmony_ci found on PXA3xx processors. There is a counterpart driver in the 17948c2ecf20Sopenharmony_ci DirectFB suite, see http://www.directfb.org/ 17958c2ecf20Sopenharmony_ci 17968c2ecf20Sopenharmony_ci If you compile this as a module, it will be called pxa3xx_gcu. 17978c2ecf20Sopenharmony_ci 17988c2ecf20Sopenharmony_ciconfig FB_FSL_DIU 17998c2ecf20Sopenharmony_ci tristate "Freescale DIU framebuffer support" 18008c2ecf20Sopenharmony_ci depends on FB && FSL_SOC 18018c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 18028c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 18038c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 18048c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 18058c2ecf20Sopenharmony_ci select PPC_LIB_RHEAP 18068c2ecf20Sopenharmony_ci help 18078c2ecf20Sopenharmony_ci Framebuffer driver for the Freescale SoC DIU 18088c2ecf20Sopenharmony_ci 18098c2ecf20Sopenharmony_ciconfig FB_W100 18108c2ecf20Sopenharmony_ci tristate "W100 frame buffer support" 18118c2ecf20Sopenharmony_ci depends on FB && HAS_IOMEM && (ARCH_PXA || COMPILE_TEST) 18128c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 18138c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 18148c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 18158c2ecf20Sopenharmony_ci help 18168c2ecf20Sopenharmony_ci Frame buffer driver for the w100 as found on the Sharp SL-Cxx series. 18178c2ecf20Sopenharmony_ci It can also drive the w3220 chip found on iPAQ hx4700. 18188c2ecf20Sopenharmony_ci 18198c2ecf20Sopenharmony_ci This driver is also available as a module ( = code which can be 18208c2ecf20Sopenharmony_ci inserted and removed from the running kernel whenever you want). The 18218c2ecf20Sopenharmony_ci module will be called w100fb. If you want to compile it as a module, 18228c2ecf20Sopenharmony_ci say M here and read <file:Documentation/kbuild/modules.rst>. 18238c2ecf20Sopenharmony_ci 18248c2ecf20Sopenharmony_ci If unsure, say N. 18258c2ecf20Sopenharmony_ci 18268c2ecf20Sopenharmony_ciconfig FB_SH_MOBILE_LCDC 18278c2ecf20Sopenharmony_ci tristate "SuperH Mobile LCDC framebuffer support" 18288c2ecf20Sopenharmony_ci depends on FB && HAVE_CLK && HAS_IOMEM 18298c2ecf20Sopenharmony_ci depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 18308c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 18318c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 18328c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 18338c2ecf20Sopenharmony_ci select FB_SYS_FOPS 18348c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 18358c2ecf20Sopenharmony_ci select FB_BACKLIGHT 18368c2ecf20Sopenharmony_ci help 18378c2ecf20Sopenharmony_ci Frame buffer driver for the on-chip SH-Mobile LCD controller. 18388c2ecf20Sopenharmony_ci 18398c2ecf20Sopenharmony_ciconfig FB_TMIO 18408c2ecf20Sopenharmony_ci tristate "Toshiba Mobile IO FrameBuffer support" 18418c2ecf20Sopenharmony_ci depends on FB && (MFD_TMIO || COMPILE_TEST) 18428c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 18438c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 18448c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 18458c2ecf20Sopenharmony_ci help 18468c2ecf20Sopenharmony_ci Frame buffer driver for the Toshiba Mobile IO integrated as found 18478c2ecf20Sopenharmony_ci on the Sharp SL-6000 series 18488c2ecf20Sopenharmony_ci 18498c2ecf20Sopenharmony_ci This driver is also available as a module ( = code which can be 18508c2ecf20Sopenharmony_ci inserted and removed from the running kernel whenever you want). The 18518c2ecf20Sopenharmony_ci module will be called tmiofb. If you want to compile it as a module, 18528c2ecf20Sopenharmony_ci say M here and read <file:Documentation/kbuild/modules.rst>. 18538c2ecf20Sopenharmony_ci 18548c2ecf20Sopenharmony_ci If unsure, say N. 18558c2ecf20Sopenharmony_ci 18568c2ecf20Sopenharmony_ciconfig FB_TMIO_ACCELL 18578c2ecf20Sopenharmony_ci bool "tmiofb acceleration" 18588c2ecf20Sopenharmony_ci depends on FB_TMIO 18598c2ecf20Sopenharmony_ci default y 18608c2ecf20Sopenharmony_ci 18618c2ecf20Sopenharmony_ciconfig FB_S3C 18628c2ecf20Sopenharmony_ci tristate "Samsung S3C framebuffer support" 18638c2ecf20Sopenharmony_ci depends on FB && HAVE_CLK && HAS_IOMEM 18648c2ecf20Sopenharmony_ci depends on (CPU_S3C2416 || ARCH_S3C64XX) || COMPILE_TEST 18658c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 18668c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 18678c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 18688c2ecf20Sopenharmony_ci help 18698c2ecf20Sopenharmony_ci Frame buffer driver for the built-in FB controller in the Samsung 18708c2ecf20Sopenharmony_ci SoC line from the S3C2443 onwards, including the S3C2416, S3C2450, 18718c2ecf20Sopenharmony_ci and the S3C64XX series such as the S3C6400 and S3C6410. 18728c2ecf20Sopenharmony_ci 18738c2ecf20Sopenharmony_ci These chips all have the same basic framebuffer design with the 18748c2ecf20Sopenharmony_ci actual capabilities depending on the chip. For instance the S3C6400 18758c2ecf20Sopenharmony_ci and S3C6410 support 4 hardware windows whereas the S3C24XX series 18768c2ecf20Sopenharmony_ci currently only have two. 18778c2ecf20Sopenharmony_ci 18788c2ecf20Sopenharmony_ci Currently the support is only for the S3C6400 and S3C6410 SoCs. 18798c2ecf20Sopenharmony_ci 18808c2ecf20Sopenharmony_ciconfig FB_S3C_DEBUG_REGWRITE 18818c2ecf20Sopenharmony_ci bool "Debug register writes" 18828c2ecf20Sopenharmony_ci depends on FB_S3C 18838c2ecf20Sopenharmony_ci help 18848c2ecf20Sopenharmony_ci Show all register writes via pr_debug() 18858c2ecf20Sopenharmony_ci 18868c2ecf20Sopenharmony_ciconfig FB_S3C2410 18878c2ecf20Sopenharmony_ci tristate "S3C2410 LCD framebuffer support" 18888c2ecf20Sopenharmony_ci depends on FB && ARCH_S3C24XX 18898c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 18908c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 18918c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 18928c2ecf20Sopenharmony_ci help 18938c2ecf20Sopenharmony_ci Frame buffer driver for the built-in LCD controller in the Samsung 18948c2ecf20Sopenharmony_ci S3C2410 processor. 18958c2ecf20Sopenharmony_ci 18968c2ecf20Sopenharmony_ci This driver is also available as a module ( = code which can be 18978c2ecf20Sopenharmony_ci inserted and removed from the running kernel whenever you want). The 18988c2ecf20Sopenharmony_ci module will be called s3c2410fb. If you want to compile it as a module, 18998c2ecf20Sopenharmony_ci say M here and read <file:Documentation/kbuild/modules.rst>. 19008c2ecf20Sopenharmony_ci 19018c2ecf20Sopenharmony_ci If unsure, say N. 19028c2ecf20Sopenharmony_ciconfig FB_S3C2410_DEBUG 19038c2ecf20Sopenharmony_ci bool "S3C2410 lcd debug messages" 19048c2ecf20Sopenharmony_ci depends on FB_S3C2410 19058c2ecf20Sopenharmony_ci help 19068c2ecf20Sopenharmony_ci Turn on debugging messages. Note that you can set/unset at run time 19078c2ecf20Sopenharmony_ci through sysfs 19088c2ecf20Sopenharmony_ci 19098c2ecf20Sopenharmony_ciconfig FB_SM501 19108c2ecf20Sopenharmony_ci tristate "Silicon Motion SM501 framebuffer support" 19118c2ecf20Sopenharmony_ci depends on FB && MFD_SM501 19128c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 19138c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 19148c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 19158c2ecf20Sopenharmony_ci help 19168c2ecf20Sopenharmony_ci Frame buffer driver for the CRT and LCD controllers in the Silicon 19178c2ecf20Sopenharmony_ci Motion SM501. 19188c2ecf20Sopenharmony_ci 19198c2ecf20Sopenharmony_ci This driver is also available as a module ( = code which can be 19208c2ecf20Sopenharmony_ci inserted and removed from the running kernel whenever you want). The 19218c2ecf20Sopenharmony_ci module will be called sm501fb. If you want to compile it as a module, 19228c2ecf20Sopenharmony_ci say M here and read <file:Documentation/kbuild/modules.rst>. 19238c2ecf20Sopenharmony_ci 19248c2ecf20Sopenharmony_ci If unsure, say N. 19258c2ecf20Sopenharmony_ci 19268c2ecf20Sopenharmony_ciconfig FB_SMSCUFX 19278c2ecf20Sopenharmony_ci tristate "SMSC UFX6000/7000 USB Framebuffer support" 19288c2ecf20Sopenharmony_ci depends on FB && USB 19298c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 19308c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 19318c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 19328c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 19338c2ecf20Sopenharmony_ci select FB_SYS_FOPS 19348c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 19358c2ecf20Sopenharmony_ci help 19368c2ecf20Sopenharmony_ci This is a kernel framebuffer driver for SMSC UFX USB devices. 19378c2ecf20Sopenharmony_ci Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and 19388c2ecf20Sopenharmony_ci mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000 19398c2ecf20Sopenharmony_ci (USB 3.0) devices. 19408c2ecf20Sopenharmony_ci To compile as a module, choose M here: the module name is smscufx. 19418c2ecf20Sopenharmony_ci 19428c2ecf20Sopenharmony_ciconfig FB_UDL 19438c2ecf20Sopenharmony_ci tristate "Displaylink USB Framebuffer support" 19448c2ecf20Sopenharmony_ci depends on FB && USB 19458c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 19468c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 19478c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 19488c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 19498c2ecf20Sopenharmony_ci select FB_SYS_FOPS 19508c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 19518c2ecf20Sopenharmony_ci help 19528c2ecf20Sopenharmony_ci This is a kernel framebuffer driver for DisplayLink USB devices. 19538c2ecf20Sopenharmony_ci Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and 19548c2ecf20Sopenharmony_ci mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices. 19558c2ecf20Sopenharmony_ci To compile as a module, choose M here: the module name is udlfb. 19568c2ecf20Sopenharmony_ci 19578c2ecf20Sopenharmony_ciconfig FB_IBM_GXT4500 19588c2ecf20Sopenharmony_ci tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors" 19598c2ecf20Sopenharmony_ci depends on FB 19608c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 19618c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 19628c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 19638c2ecf20Sopenharmony_ci help 19648c2ecf20Sopenharmony_ci Say Y here to enable support for the IBM GXT4000P/6000P and 19658c2ecf20Sopenharmony_ci GXT4500P/6500P display adaptor based on Raster Engine RC1000, 19668c2ecf20Sopenharmony_ci found on some IBM System P (pSeries) machines. This driver 19678c2ecf20Sopenharmony_ci doesn't use Geometry Engine GT1000. This driver also supports 19688c2ecf20Sopenharmony_ci AGP Fire GL2/3/4 cards on x86. 19698c2ecf20Sopenharmony_ci 19708c2ecf20Sopenharmony_ciconfig FB_PS3 19718c2ecf20Sopenharmony_ci tristate "PS3 GPU framebuffer driver" 19728c2ecf20Sopenharmony_ci depends on FB && PS3_PS3AV 19738c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 19748c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 19758c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 19768c2ecf20Sopenharmony_ci select FB_SYS_FOPS 19778c2ecf20Sopenharmony_ci help 19788c2ecf20Sopenharmony_ci Include support for the virtual frame buffer in the PS3 platform. 19798c2ecf20Sopenharmony_ci 19808c2ecf20Sopenharmony_ciconfig FB_PS3_DEFAULT_SIZE_M 19818c2ecf20Sopenharmony_ci int "PS3 default frame buffer size (in MiB)" 19828c2ecf20Sopenharmony_ci depends on FB_PS3 19838c2ecf20Sopenharmony_ci default 9 19848c2ecf20Sopenharmony_ci help 19858c2ecf20Sopenharmony_ci This is the default size (in MiB) of the virtual frame buffer in 19868c2ecf20Sopenharmony_ci the PS3. 19878c2ecf20Sopenharmony_ci The default value can be overridden on the kernel command line 19888c2ecf20Sopenharmony_ci using the "ps3fb" option (e.g. "ps3fb=9M"); 19898c2ecf20Sopenharmony_ci 19908c2ecf20Sopenharmony_ciconfig FB_XILINX 19918c2ecf20Sopenharmony_ci tristate "Xilinx frame buffer support" 19928c2ecf20Sopenharmony_ci depends on FB && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP) 19938c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 19948c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 19958c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 19968c2ecf20Sopenharmony_ci help 19978c2ecf20Sopenharmony_ci Include support for the Xilinx ML300/ML403 reference design 19988c2ecf20Sopenharmony_ci framebuffer. ML300 carries a 640*480 LCD display on the board, 19998c2ecf20Sopenharmony_ci ML403 uses a standard DB15 VGA connector. 20008c2ecf20Sopenharmony_ci 20018c2ecf20Sopenharmony_ciconfig FB_GOLDFISH 20028c2ecf20Sopenharmony_ci tristate "Goldfish Framebuffer" 20038c2ecf20Sopenharmony_ci depends on FB 20048c2ecf20Sopenharmony_ci depends on GOLDFISH || COMPILE_TEST 20058c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 20068c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 20078c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 20088c2ecf20Sopenharmony_ci help 20098c2ecf20Sopenharmony_ci Framebuffer driver for Goldfish Virtual Platform 20108c2ecf20Sopenharmony_ci 20118c2ecf20Sopenharmony_ciconfig FB_COBALT 20128c2ecf20Sopenharmony_ci tristate "Cobalt server LCD frame buffer support" 20138c2ecf20Sopenharmony_ci depends on FB && MIPS_COBALT 20148c2ecf20Sopenharmony_ci 20158c2ecf20Sopenharmony_ciconfig FB_SH7760 20168c2ecf20Sopenharmony_ci bool "SH7760/SH7763/SH7720/SH7721 LCDC support" 20178c2ecf20Sopenharmony_ci depends on FB=y && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ 20188c2ecf20Sopenharmony_ci || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721) 20198c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 20208c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 20218c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 20228c2ecf20Sopenharmony_ci help 20238c2ecf20Sopenharmony_ci Support for the SH7760/SH7763/SH7720/SH7721 integrated 20248c2ecf20Sopenharmony_ci (D)STN/TFT LCD Controller. 20258c2ecf20Sopenharmony_ci Supports display resolutions up to 1024x1024 pixel, grayscale and 20268c2ecf20Sopenharmony_ci color operation, with depths ranging from 1 bpp to 8 bpp monochrome 20278c2ecf20Sopenharmony_ci and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for 20288c2ecf20Sopenharmony_ci panels <= 320 pixel horizontal resolution. 20298c2ecf20Sopenharmony_ci 20308c2ecf20Sopenharmony_ciconfig FB_DA8XX 20318c2ecf20Sopenharmony_ci tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support" 20328c2ecf20Sopenharmony_ci depends on FB && HAVE_CLK && HAS_IOMEM 20338c2ecf20Sopenharmony_ci depends on ARCH_DAVINCI_DA8XX || SOC_AM33XX || COMPILE_TEST 20348c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 20358c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 20368c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 20378c2ecf20Sopenharmony_ci select FB_CFB_REV_PIXELS_IN_BYTE 20388c2ecf20Sopenharmony_ci select FB_MODE_HELPERS 20398c2ecf20Sopenharmony_ci select VIDEOMODE_HELPERS 20408c2ecf20Sopenharmony_ci help 20418c2ecf20Sopenharmony_ci This is the frame buffer device driver for the TI LCD controller 20428c2ecf20Sopenharmony_ci found on DA8xx/OMAP-L1xx/AM335x SoCs. 20438c2ecf20Sopenharmony_ci If unsure, say N. 20448c2ecf20Sopenharmony_ci 20458c2ecf20Sopenharmony_ciconfig FB_VIRTUAL 20468c2ecf20Sopenharmony_ci tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)" 20478c2ecf20Sopenharmony_ci depends on FB 20488c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 20498c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 20508c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 20518c2ecf20Sopenharmony_ci select FB_SYS_FOPS 20528c2ecf20Sopenharmony_ci help 20538c2ecf20Sopenharmony_ci This is a `virtual' frame buffer device. It operates on a chunk of 20548c2ecf20Sopenharmony_ci unswappable kernel memory instead of on the memory of a graphics 20558c2ecf20Sopenharmony_ci board. This means you cannot see any output sent to this frame 20568c2ecf20Sopenharmony_ci buffer device, while it does consume precious memory. The main use 20578c2ecf20Sopenharmony_ci of this frame buffer device is testing and debugging the frame 20588c2ecf20Sopenharmony_ci buffer subsystem. Do NOT enable it for normal systems! To protect 20598c2ecf20Sopenharmony_ci the innocent, it has to be enabled explicitly at boot time using the 20608c2ecf20Sopenharmony_ci kernel option `video=vfb:'. 20618c2ecf20Sopenharmony_ci 20628c2ecf20Sopenharmony_ci To compile this driver as a module, choose M here: the 20638c2ecf20Sopenharmony_ci module will be called vfb. In order to load it, you must use 20648c2ecf20Sopenharmony_ci the vfb_enable=1 option. 20658c2ecf20Sopenharmony_ci 20668c2ecf20Sopenharmony_ci If unsure, say N. 20678c2ecf20Sopenharmony_ci 20688c2ecf20Sopenharmony_ciconfig XEN_FBDEV_FRONTEND 20698c2ecf20Sopenharmony_ci tristate "Xen virtual frame buffer support" 20708c2ecf20Sopenharmony_ci depends on FB && XEN 20718c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 20728c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 20738c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 20748c2ecf20Sopenharmony_ci select FB_SYS_FOPS 20758c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 20768c2ecf20Sopenharmony_ci select XEN_XENBUS_FRONTEND 20778c2ecf20Sopenharmony_ci default y 20788c2ecf20Sopenharmony_ci help 20798c2ecf20Sopenharmony_ci This driver implements the front-end of the Xen virtual 20808c2ecf20Sopenharmony_ci frame buffer driver. It communicates with a back-end 20818c2ecf20Sopenharmony_ci in another domain. 20828c2ecf20Sopenharmony_ci 20838c2ecf20Sopenharmony_ciconfig FB_METRONOME 20848c2ecf20Sopenharmony_ci tristate "E-Ink Metronome/8track controller support" 20858c2ecf20Sopenharmony_ci depends on FB 20868c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 20878c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 20888c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 20898c2ecf20Sopenharmony_ci select FB_SYS_FOPS 20908c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 20918c2ecf20Sopenharmony_ci help 20928c2ecf20Sopenharmony_ci This driver implements support for the E-Ink Metronome 20938c2ecf20Sopenharmony_ci controller. The pre-release name for this device was 8track 20948c2ecf20Sopenharmony_ci and could also have been called by some vendors as PVI-nnnn. 20958c2ecf20Sopenharmony_ci 20968c2ecf20Sopenharmony_ciconfig FB_MB862XX 20978c2ecf20Sopenharmony_ci tristate "Fujitsu MB862xx GDC support" 20988c2ecf20Sopenharmony_ci depends on FB 20998c2ecf20Sopenharmony_ci depends on PCI || (OF && PPC) 21008c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 21018c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 21028c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 21038c2ecf20Sopenharmony_ci help 21048c2ecf20Sopenharmony_ci Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers. 21058c2ecf20Sopenharmony_ci 21068c2ecf20Sopenharmony_cichoice 21078c2ecf20Sopenharmony_ci prompt "GDC variant" 21088c2ecf20Sopenharmony_ci depends on FB_MB862XX 21098c2ecf20Sopenharmony_ci 21108c2ecf20Sopenharmony_ciconfig FB_MB862XX_PCI_GDC 21118c2ecf20Sopenharmony_ci bool "Carmine/Coral-P(A) GDC" 21128c2ecf20Sopenharmony_ci depends on PCI 21138c2ecf20Sopenharmony_ci help 21148c2ecf20Sopenharmony_ci This enables framebuffer support for Fujitsu Carmine/Coral-P(A) 21158c2ecf20Sopenharmony_ci PCI graphics controller devices. 21168c2ecf20Sopenharmony_ci 21178c2ecf20Sopenharmony_ciconfig FB_MB862XX_LIME 21188c2ecf20Sopenharmony_ci bool "Lime GDC" 21198c2ecf20Sopenharmony_ci depends on OF && PPC 21208c2ecf20Sopenharmony_ci select FB_FOREIGN_ENDIAN 21218c2ecf20Sopenharmony_ci select FB_LITTLE_ENDIAN 21228c2ecf20Sopenharmony_ci help 21238c2ecf20Sopenharmony_ci Framebuffer support for Fujitsu Lime GDC on host CPU bus. 21248c2ecf20Sopenharmony_ci 21258c2ecf20Sopenharmony_ciendchoice 21268c2ecf20Sopenharmony_ci 21278c2ecf20Sopenharmony_ciconfig FB_MB862XX_I2C 21288c2ecf20Sopenharmony_ci bool "Support I2C bus on MB862XX GDC" 21298c2ecf20Sopenharmony_ci depends on FB_MB862XX && I2C 21308c2ecf20Sopenharmony_ci depends on FB_MB862XX=m || I2C=y 21318c2ecf20Sopenharmony_ci default y 21328c2ecf20Sopenharmony_ci help 21338c2ecf20Sopenharmony_ci Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter 21348c2ecf20Sopenharmony_ci driver to support accessing I2C devices on controller's I2C bus. 21358c2ecf20Sopenharmony_ci These are usually some video decoder chips. 21368c2ecf20Sopenharmony_ci 21378c2ecf20Sopenharmony_ciconfig FB_EP93XX 21388c2ecf20Sopenharmony_ci tristate "EP93XX frame buffer support" 21398c2ecf20Sopenharmony_ci depends on FB && ARCH_EP93XX 21408c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 21418c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 21428c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 21438c2ecf20Sopenharmony_ci help 21448c2ecf20Sopenharmony_ci Framebuffer driver for the Cirrus Logic EP93XX series of processors. 21458c2ecf20Sopenharmony_ci This driver is also available as a module. The module will be called 21468c2ecf20Sopenharmony_ci ep93xx-fb. 21478c2ecf20Sopenharmony_ci 21488c2ecf20Sopenharmony_ciconfig FB_PRE_INIT_FB 21498c2ecf20Sopenharmony_ci bool "Don't reinitialize, use bootloader's GDC/Display configuration" 21508c2ecf20Sopenharmony_ci depends on FB && FB_MB862XX_LIME 21518c2ecf20Sopenharmony_ci help 21528c2ecf20Sopenharmony_ci Select this option if display contents should be inherited as set by 21538c2ecf20Sopenharmony_ci the bootloader. 21548c2ecf20Sopenharmony_ci 21558c2ecf20Sopenharmony_ciconfig FB_MX3 21568c2ecf20Sopenharmony_ci tristate "MX3 Framebuffer support" 21578c2ecf20Sopenharmony_ci depends on FB && MX3_IPU 21588c2ecf20Sopenharmony_ci select BACKLIGHT_CLASS_DEVICE 21598c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 21608c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 21618c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 21628c2ecf20Sopenharmony_ci default y 21638c2ecf20Sopenharmony_ci help 21648c2ecf20Sopenharmony_ci This is a framebuffer device for the i.MX31 LCD Controller. So 21658c2ecf20Sopenharmony_ci far only synchronous displays are supported. If you plan to use 21668c2ecf20Sopenharmony_ci an LCD display with your i.MX31 system, say Y here. 21678c2ecf20Sopenharmony_ci 21688c2ecf20Sopenharmony_ciconfig FB_BROADSHEET 21698c2ecf20Sopenharmony_ci tristate "E-Ink Broadsheet/Epson S1D13521 controller support" 21708c2ecf20Sopenharmony_ci depends on FB && (ARCH_PXA || COMPILE_TEST) 21718c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 21728c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 21738c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 21748c2ecf20Sopenharmony_ci select FB_SYS_FOPS 21758c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 21768c2ecf20Sopenharmony_ci help 21778c2ecf20Sopenharmony_ci This driver implements support for the E-Ink Broadsheet 21788c2ecf20Sopenharmony_ci controller. The release name for this device was Epson S1D13521 21798c2ecf20Sopenharmony_ci and could also have been called by other names when coupled with 21808c2ecf20Sopenharmony_ci a bridge adapter. 21818c2ecf20Sopenharmony_ci 21828c2ecf20Sopenharmony_ciconfig FB_HYPERV 21838c2ecf20Sopenharmony_ci tristate "Microsoft Hyper-V Synthetic Video support" 21848c2ecf20Sopenharmony_ci depends on FB && HYPERV 21858c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 21868c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 21878c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 21888c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 21898c2ecf20Sopenharmony_ci select DMA_CMA if HAVE_DMA_CONTIGUOUS && CMA 21908c2ecf20Sopenharmony_ci help 21918c2ecf20Sopenharmony_ci This framebuffer driver supports Microsoft Hyper-V Synthetic Video. 21928c2ecf20Sopenharmony_ci 21938c2ecf20Sopenharmony_ciconfig FB_SIMPLE 21948c2ecf20Sopenharmony_ci bool "Simple framebuffer support" 21958c2ecf20Sopenharmony_ci depends on (FB = y) 21968c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 21978c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 21988c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 21998c2ecf20Sopenharmony_ci help 22008c2ecf20Sopenharmony_ci Say Y if you want support for a simple frame-buffer. 22018c2ecf20Sopenharmony_ci 22028c2ecf20Sopenharmony_ci This driver assumes that the display hardware has been initialized 22038c2ecf20Sopenharmony_ci before the kernel boots, and the kernel will simply render to the 22048c2ecf20Sopenharmony_ci pre-allocated frame buffer surface. 22058c2ecf20Sopenharmony_ci 22068c2ecf20Sopenharmony_ci Configuration re: surface address, size, and format must be provided 22078c2ecf20Sopenharmony_ci through device tree, or plain old platform data. 22088c2ecf20Sopenharmony_ci 22098c2ecf20Sopenharmony_ciconfig FB_SSD1307 22108c2ecf20Sopenharmony_ci tristate "Solomon SSD1307 framebuffer support" 22118c2ecf20Sopenharmony_ci depends on FB && I2C 22128c2ecf20Sopenharmony_ci depends on OF 22138c2ecf20Sopenharmony_ci depends on GPIOLIB || COMPILE_TEST 22148c2ecf20Sopenharmony_ci select FB_SYS_FOPS 22158c2ecf20Sopenharmony_ci select FB_SYS_FILLRECT 22168c2ecf20Sopenharmony_ci select FB_SYS_COPYAREA 22178c2ecf20Sopenharmony_ci select FB_SYS_IMAGEBLIT 22188c2ecf20Sopenharmony_ci select FB_DEFERRED_IO 22198c2ecf20Sopenharmony_ci select FB_BACKLIGHT 22208c2ecf20Sopenharmony_ci help 22218c2ecf20Sopenharmony_ci This driver implements support for the Solomon SSD1307 22228c2ecf20Sopenharmony_ci OLED controller over I2C. 22238c2ecf20Sopenharmony_ci 22248c2ecf20Sopenharmony_ciconfig FB_SM712 22258c2ecf20Sopenharmony_ci tristate "Silicon Motion SM712 framebuffer support" 22268c2ecf20Sopenharmony_ci depends on FB && PCI 22278c2ecf20Sopenharmony_ci select FB_CFB_FILLRECT 22288c2ecf20Sopenharmony_ci select FB_CFB_COPYAREA 22298c2ecf20Sopenharmony_ci select FB_CFB_IMAGEBLIT 22308c2ecf20Sopenharmony_ci help 22318c2ecf20Sopenharmony_ci Frame buffer driver for the Silicon Motion SM710, SM712, SM721 22328c2ecf20Sopenharmony_ci and SM722 chips. 22338c2ecf20Sopenharmony_ci 22348c2ecf20Sopenharmony_ci This driver is also available as a module. The module will be 22358c2ecf20Sopenharmony_ci called sm712fb. If you want to compile it as a module, say M 22368c2ecf20Sopenharmony_ci here and read <file:Documentation/kbuild/modules.rst>. 22378c2ecf20Sopenharmony_ci 22388c2ecf20Sopenharmony_cisource "drivers/video/fbdev/omap/Kconfig" 22398c2ecf20Sopenharmony_cisource "drivers/video/fbdev/omap2/Kconfig" 22408c2ecf20Sopenharmony_cisource "drivers/video/fbdev/mmp/Kconfig" 2241