1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 2f7018c21STomi Valkeinen# 3f7018c21STomi Valkeinen# fbdev configuration 4f7018c21STomi Valkeinen# 5f7018c21STomi Valkeinen 6aae3394eSRandy Dunlapconfig FB_NOTIFY 7aae3394eSRandy Dunlap bool 8aae3394eSRandy Dunlap 9f7018c21STomi Valkeinenmenuconfig FB 10f7018c21STomi Valkeinen tristate "Support for frame buffer devices" 115ec96538SEzequiel Garcia select FB_NOTIFY 1293604a5aSThomas Zimmermann select VIDEO_CMDLINE 13a7f7f624SMasahiro Yamada help 14f7018c21STomi Valkeinen The frame buffer device provides an abstraction for the graphics 15f7018c21STomi Valkeinen hardware. It represents the frame buffer of some video hardware and 16f7018c21STomi Valkeinen allows application software to access the graphics hardware through 17f7018c21STomi Valkeinen a well-defined interface, so the software doesn't need to know 18f7018c21STomi Valkeinen anything about the low-level (hardware register) stuff. 19f7018c21STomi Valkeinen 20f7018c21STomi Valkeinen Frame buffer devices work identically across the different 21f7018c21STomi Valkeinen architectures supported by Linux and make the implementation of 22f7018c21STomi Valkeinen application programs easier and more portable; at this point, an X 23f7018c21STomi Valkeinen server exists which uses the frame buffer device exclusively. 24f7018c21STomi Valkeinen On several non-X86 architectures, the frame buffer device is the 25f7018c21STomi Valkeinen only way to use the graphics hardware. 26f7018c21STomi Valkeinen 27f7018c21STomi Valkeinen The device is accessed through special device nodes, usually located 28f7018c21STomi Valkeinen in the /dev directory, i.e. /dev/fb*. 29f7018c21STomi Valkeinen 30f7018c21STomi Valkeinen You need an utility program called fbset to make full use of frame 31ab42b818SMauro Carvalho Chehab buffer devices. Please read <file:Documentation/fb/framebuffer.rst> 32f7018c21STomi Valkeinen and the Framebuffer-HOWTO at 33f7018c21STomi Valkeinen <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more 34f7018c21STomi Valkeinen information. 35f7018c21STomi Valkeinen 36f7018c21STomi Valkeinen Say Y here and to the driver for your graphics board below if you 37f7018c21STomi Valkeinen are compiling a kernel for a non-x86 architecture. 38f7018c21STomi Valkeinen 39f7018c21STomi Valkeinen If you are compiling for the x86 architecture, you can say Y if you 40f7018c21STomi Valkeinen want to play with it, but it is not essential. Please note that 41f7018c21STomi Valkeinen running graphical applications that directly touch the hardware 42f7018c21STomi Valkeinen (e.g. an accelerated X server) and that are not frame buffer 43f7018c21STomi Valkeinen device-aware may cause unexpected results. If unsure, say N. 44f7018c21STomi Valkeinen 45f7018c21STomi Valkeinenconfig FIRMWARE_EDID 46f7018c21STomi Valkeinen bool "Enable firmware EDID" 47f7018c21STomi Valkeinen depends on FB 48a7f7f624SMasahiro Yamada help 49f7018c21STomi Valkeinen This enables access to the EDID transferred from the firmware. 50f7018c21STomi Valkeinen On the i386, this is from the Video BIOS. Enable this if DDC/I2C 51f7018c21STomi Valkeinen transfers do not work for your driver and if you are using 52f7018c21STomi Valkeinen nvidiafb, i810fb or savagefb. 53f7018c21STomi Valkeinen 54f7018c21STomi Valkeinen In general, choosing Y for this option is safe. If you 55f7018c21STomi Valkeinen experience extremely long delays while booting before you get 56f7018c21STomi Valkeinen something on your display, try setting this to N. Matrox cards in 57f7018c21STomi Valkeinen combination with certain motherboards and monitors are known to 58f7018c21STomi Valkeinen suffer from this problem. 59f7018c21STomi Valkeinen 60701d2054SThomas Zimmermannconfig FB_DEVICE 61701d2054SThomas Zimmermann bool "Provide legacy /dev/fb* device" 62701d2054SThomas Zimmermann depends on FB 63701d2054SThomas Zimmermann default y 64701d2054SThomas Zimmermann help 65701d2054SThomas Zimmermann Say Y here if you want the legacy /dev/fb* device file and 66701d2054SThomas Zimmermann interfaces within sysfs anc procfs. It is only required if you 67701d2054SThomas Zimmermann have userspace programs that depend on fbdev for graphics output. 68701d2054SThomas Zimmermann This does not affect the framebuffer console. If unsure, say N. 69701d2054SThomas Zimmermann 70f7018c21STomi Valkeinenconfig FB_DDC 71f7018c21STomi Valkeinen tristate 72f7018c21STomi Valkeinen depends on FB 73f7018c21STomi Valkeinen select I2C_ALGOBIT 74f7018c21STomi Valkeinen select I2C 75f7018c21STomi Valkeinen 76f7018c21STomi Valkeinenconfig FB_CFB_FILLRECT 77f7018c21STomi Valkeinen tristate 78f7018c21STomi Valkeinen depends on FB 79a7f7f624SMasahiro Yamada help 80f7018c21STomi Valkeinen Include the cfb_fillrect function for generic software rectangle 81f7018c21STomi Valkeinen filling. This is used by drivers that don't provide their own 82f7018c21STomi Valkeinen (accelerated) version. 83f7018c21STomi Valkeinen 84f7018c21STomi Valkeinenconfig FB_CFB_COPYAREA 85f7018c21STomi Valkeinen tristate 86f7018c21STomi Valkeinen depends on FB 87a7f7f624SMasahiro Yamada help 88f7018c21STomi Valkeinen Include the cfb_copyarea function for generic software area copying. 89f7018c21STomi Valkeinen This is used by drivers that don't provide their own (accelerated) 90f7018c21STomi Valkeinen version. 91f7018c21STomi Valkeinen 92f7018c21STomi Valkeinenconfig FB_CFB_IMAGEBLIT 93f7018c21STomi Valkeinen tristate 94f7018c21STomi Valkeinen depends on FB 95a7f7f624SMasahiro Yamada help 96f7018c21STomi Valkeinen Include the cfb_imageblit function for generic software image 97f7018c21STomi Valkeinen blitting. This is used by drivers that don't provide their own 98f7018c21STomi Valkeinen (accelerated) version. 99f7018c21STomi Valkeinen 100f7018c21STomi Valkeinenconfig FB_CFB_REV_PIXELS_IN_BYTE 101f7018c21STomi Valkeinen bool 102f7018c21STomi Valkeinen depends on FB 103a7f7f624SMasahiro Yamada help 104f7018c21STomi Valkeinen Allow generic frame-buffer functions to work on displays with 1, 2 105f7018c21STomi Valkeinen and 4 bits per pixel depths which has opposite order of pixels in 106f7018c21STomi Valkeinen byte order to bytes in long order. 107f7018c21STomi Valkeinen 108f7018c21STomi Valkeinenconfig FB_SYS_FILLRECT 109f7018c21STomi Valkeinen tristate 110f7018c21STomi Valkeinen depends on FB 111a7f7f624SMasahiro Yamada help 112f7018c21STomi Valkeinen Include the sys_fillrect function for generic software rectangle 113f7018c21STomi Valkeinen filling. This is used by drivers that don't provide their own 114f7018c21STomi Valkeinen (accelerated) version and the framebuffer is in system RAM. 115f7018c21STomi Valkeinen 116f7018c21STomi Valkeinenconfig FB_SYS_COPYAREA 117f7018c21STomi Valkeinen tristate 118f7018c21STomi Valkeinen depends on FB 119a7f7f624SMasahiro Yamada help 120f7018c21STomi Valkeinen Include the sys_copyarea function for generic software area copying. 121f7018c21STomi Valkeinen This is used by drivers that don't provide their own (accelerated) 122f7018c21STomi Valkeinen version and the framebuffer is in system RAM. 123f7018c21STomi Valkeinen 124f7018c21STomi Valkeinenconfig FB_SYS_IMAGEBLIT 125f7018c21STomi Valkeinen tristate 126f7018c21STomi Valkeinen depends on FB 127a7f7f624SMasahiro Yamada help 128f7018c21STomi Valkeinen Include the sys_imageblit function for generic software image 129f7018c21STomi Valkeinen blitting. This is used by drivers that don't provide their own 130f7018c21STomi Valkeinen (accelerated) version and the framebuffer is in system RAM. 131f7018c21STomi Valkeinen 13282f42e4cSBenjamin Gaignardconfig FB_PROVIDE_GET_FB_UNMAPPED_AREA 13382f42e4cSBenjamin Gaignard bool 13482f42e4cSBenjamin Gaignard depends on FB 135a7f7f624SMasahiro Yamada help 13682f42e4cSBenjamin Gaignard Allow generic frame-buffer to provide get_fb_unmapped_area 13719abb458SArnd Bergmann function to provide shareable character device support on nommu. 13882f42e4cSBenjamin Gaignard 139f7018c21STomi Valkeinenmenuconfig FB_FOREIGN_ENDIAN 140f7018c21STomi Valkeinen bool "Framebuffer foreign endianness support" 141f7018c21STomi Valkeinen depends on FB 142a7f7f624SMasahiro Yamada help 143f7018c21STomi Valkeinen This menu will let you enable support for the framebuffers with 144f7018c21STomi Valkeinen non-native endianness (e.g. Little-Endian framebuffer on a 145f7018c21STomi Valkeinen Big-Endian machine). Most probably you don't have such hardware, 146f7018c21STomi Valkeinen so it's safe to say "n" here. 147f7018c21STomi Valkeinen 148f7018c21STomi Valkeinenchoice 149f7018c21STomi Valkeinen prompt "Choice endianness support" 150f7018c21STomi Valkeinen depends on FB_FOREIGN_ENDIAN 151f7018c21STomi Valkeinen 152f7018c21STomi Valkeinenconfig FB_BOTH_ENDIAN 153f7018c21STomi Valkeinen bool "Support for Big- and Little-Endian framebuffers" 154f7018c21STomi Valkeinen 155f7018c21STomi Valkeinenconfig FB_BIG_ENDIAN 156f7018c21STomi Valkeinen bool "Support for Big-Endian framebuffers only" 157f7018c21STomi Valkeinen 158f7018c21STomi Valkeinenconfig FB_LITTLE_ENDIAN 159f7018c21STomi Valkeinen bool "Support for Little-Endian framebuffers only" 160f7018c21STomi Valkeinen 161f7018c21STomi Valkeinenendchoice 162f7018c21STomi Valkeinen 163f7018c21STomi Valkeinenconfig FB_SYS_FOPS 164f7018c21STomi Valkeinen tristate 165f7018c21STomi Valkeinen depends on FB 166f7018c21STomi Valkeinen 167f7018c21STomi Valkeinenconfig FB_DEFERRED_IO 168f7018c21STomi Valkeinen bool 169f7018c21STomi Valkeinen depends on FB 170f7018c21STomi Valkeinen 1713b99ee57SThomas Zimmermannconfig FB_IO_HELPERS 1723b99ee57SThomas Zimmermann bool 1733b99ee57SThomas Zimmermann depends on FB 1743b99ee57SThomas Zimmermann select FB_CFB_COPYAREA 1753b99ee57SThomas Zimmermann select FB_CFB_FILLRECT 1763b99ee57SThomas Zimmermann select FB_CFB_IMAGEBLIT 1773b99ee57SThomas Zimmermann 1783b99ee57SThomas Zimmermannconfig FB_SYS_HELPERS 1793b99ee57SThomas Zimmermann bool 1803b99ee57SThomas Zimmermann depends on FB 1813b99ee57SThomas Zimmermann select FB_SYS_COPYAREA 1823b99ee57SThomas Zimmermann select FB_SYS_FILLRECT 1833b99ee57SThomas Zimmermann select FB_SYS_FOPS 1843b99ee57SThomas Zimmermann select FB_SYS_IMAGEBLIT 1853b99ee57SThomas Zimmermann 1863b99ee57SThomas Zimmermannconfig FB_SYS_HELPERS_DEFERRED 1873b99ee57SThomas Zimmermann bool 1883b99ee57SThomas Zimmermann depends on FB 1893b99ee57SThomas Zimmermann select FB_DEFERRED_IO 1903b99ee57SThomas Zimmermann select FB_SYS_HELPERS 1913b99ee57SThomas Zimmermann 192f7018c21STomi Valkeinenconfig FB_HECUBA 193f7018c21STomi Valkeinen tristate 194f7018c21STomi Valkeinen depends on FB 195d2aff548SThomas Zimmermann select FB_SYS_HELPERS_DEFERRED 196f7018c21STomi Valkeinen 197f7018c21STomi Valkeinenconfig FB_SVGALIB 198f7018c21STomi Valkeinen tristate 199f7018c21STomi Valkeinen depends on FB 200a7f7f624SMasahiro Yamada help 201f7018c21STomi Valkeinen Common utility functions useful to fbdev drivers of VGA-based 202f7018c21STomi Valkeinen cards. 203f7018c21STomi Valkeinen 204f7018c21STomi Valkeinenconfig FB_MACMODES 205f7018c21STomi Valkeinen tristate 206f7018c21STomi Valkeinen depends on FB 207f7018c21STomi Valkeinen 208f7018c21STomi Valkeinenconfig FB_BACKLIGHT 209b4a1ed0cSRob Clark tristate 210f7018c21STomi Valkeinen depends on FB 211f7018c21STomi Valkeinen select BACKLIGHT_CLASS_DEVICE 212f7018c21STomi Valkeinen 213f7018c21STomi Valkeinenconfig FB_MODE_HELPERS 214f7018c21STomi Valkeinen bool "Enable Video Mode Handling Helpers" 215f7018c21STomi Valkeinen depends on FB 216a7f7f624SMasahiro Yamada help 217f7018c21STomi Valkeinen This enables functions for handling video modes using the 218f7018c21STomi Valkeinen Generalized Timing Formula and the EDID parser. A few drivers rely 219f7018c21STomi Valkeinen on this feature such as the radeonfb, rivafb, and the i810fb. If 220f7018c21STomi Valkeinen your driver does not take advantage of this feature, choosing Y will 221f7018c21STomi Valkeinen just increase the kernel size by about 5K. 222f7018c21STomi Valkeinen 223f7018c21STomi Valkeinenconfig FB_TILEBLITTING 224f7018c21STomi Valkeinen bool "Enable Tile Blitting Support" 225f7018c21STomi Valkeinen depends on FB 226a7f7f624SMasahiro Yamada help 227f7018c21STomi Valkeinen This enables tile blitting. Tile blitting is a drawing technique 228f7018c21STomi Valkeinen where the screen is divided into rectangular sections (tiles), whereas 229f7018c21STomi Valkeinen the standard blitting divides the screen into pixels. Because the 230f7018c21STomi Valkeinen default drawing element is a tile, drawing functions will be passed 231f7018c21STomi Valkeinen parameters in terms of number of tiles instead of number of pixels. 232f7018c21STomi Valkeinen For example, to draw a single character, instead of using bitmaps, 233f7018c21STomi Valkeinen an index to an array of bitmaps will be used. To clear or move a 234f7018c21STomi Valkeinen rectangular section of a screen, the rectangle will be described in 235f7018c21STomi Valkeinen terms of number of tiles in the x- and y-axis. 236f7018c21STomi Valkeinen 237f7018c21STomi Valkeinen This is particularly important to one driver, matroxfb. If 238f7018c21STomi Valkeinen unsure, say N. 239f7018c21STomi Valkeinen 240f7018c21STomi Valkeinencomment "Frame buffer hardware drivers" 241f7018c21STomi Valkeinen depends on FB 242f7018c21STomi Valkeinen 243f7018c21STomi Valkeinenconfig FB_GRVGA 244f7018c21STomi Valkeinen tristate "Aeroflex Gaisler framebuffer support" 245f7018c21STomi Valkeinen depends on FB && SPARC 246f7018c21STomi Valkeinen select FB_CFB_FILLRECT 247f7018c21STomi Valkeinen select FB_CFB_COPYAREA 248f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 249a7f7f624SMasahiro Yamada help 250f7018c21STomi Valkeinen This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler. 251f7018c21STomi Valkeinen 252f7018c21STomi Valkeinenconfig FB_CIRRUS 253f7018c21STomi Valkeinen tristate "Cirrus Logic support" 254f7018c21STomi Valkeinen depends on FB && (ZORRO || PCI) 255f7018c21STomi Valkeinen select FB_CFB_FILLRECT 256f7018c21STomi Valkeinen select FB_CFB_COPYAREA 257f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2580ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 259a7f7f624SMasahiro Yamada help 260f7018c21STomi Valkeinen This enables support for Cirrus Logic GD542x/543x based boards on 261f7018c21STomi Valkeinen Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum. 262f7018c21STomi Valkeinen 263f7018c21STomi Valkeinen If you have a PCI-based system, this enables support for these 264f7018c21STomi Valkeinen chips: GD-543x, GD-544x, GD-5480. 265f7018c21STomi Valkeinen 266ab42b818SMauro Carvalho Chehab Please read the file <file:Documentation/fb/cirrusfb.rst>. 267f7018c21STomi Valkeinen 268f7018c21STomi Valkeinen Say N unless you have such a graphics board or plan to get one 269f7018c21STomi Valkeinen before you next recompile the kernel. 270f7018c21STomi Valkeinen 271f7018c21STomi Valkeinenconfig FB_PM2 272f7018c21STomi Valkeinen tristate "Permedia2 support" 273f7018c21STomi Valkeinen depends on FB && ((AMIGA && BROKEN) || PCI) 274f7018c21STomi Valkeinen select FB_CFB_FILLRECT 275f7018c21STomi Valkeinen select FB_CFB_COPYAREA 276f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2770ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 278f7018c21STomi Valkeinen help 279f7018c21STomi Valkeinen This is the frame buffer device driver for cards based on 280f7018c21STomi Valkeinen the 3D Labs Permedia, Permedia 2 and Permedia 2V chips. 281f7018c21STomi Valkeinen The driver was tested on the following cards: 282f7018c21STomi Valkeinen Diamond FireGL 1000 PRO AGP 283f7018c21STomi Valkeinen ELSA Gloria Synergy PCI 284f7018c21STomi Valkeinen Appian Jeronimo PRO (both heads) PCI 285f7018c21STomi Valkeinen 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI 286f7018c21STomi Valkeinen Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC 287f7018c21STomi Valkeinen ASK Graphic Blaster Exxtreme AGP 288f7018c21STomi Valkeinen 289f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 290f7018c21STomi Valkeinen module will be called pm2fb. 291f7018c21STomi Valkeinen 292f7018c21STomi Valkeinenconfig FB_PM2_FIFO_DISCONNECT 293f7018c21STomi Valkeinen bool "enable FIFO disconnect feature" 294f7018c21STomi Valkeinen depends on FB_PM2 && PCI 295f7018c21STomi Valkeinen help 296f7018c21STomi Valkeinen Support the Permedia2 FIFO disconnect feature. 297f7018c21STomi Valkeinen 298112c3523SPeter Collingbourneconfig FB_ARMCLCD 299112c3523SPeter Collingbourne tristate "ARM PrimeCell PL110 support" 300112c3523SPeter Collingbourne depends on ARM || ARM64 || COMPILE_TEST 301112c3523SPeter Collingbourne depends on FB && ARM_AMBA && HAS_IOMEM 302112c3523SPeter Collingbourne select FB_CFB_FILLRECT 303112c3523SPeter Collingbourne select FB_CFB_COPYAREA 304112c3523SPeter Collingbourne select FB_CFB_IMAGEBLIT 305112c3523SPeter Collingbourne select FB_MODE_HELPERS if OF 306112c3523SPeter Collingbourne select VIDEOMODE_HELPERS if OF 307112c3523SPeter Collingbourne select BACKLIGHT_CLASS_DEVICE if OF 308112c3523SPeter Collingbourne help 309112c3523SPeter Collingbourne This framebuffer device driver is for the ARM PrimeCell PL110 310112c3523SPeter Collingbourne Colour LCD controller. ARM PrimeCells provide the building 311112c3523SPeter Collingbourne blocks for System on a Chip devices. 312112c3523SPeter Collingbourne 313112c3523SPeter Collingbourne If you want to compile this as a module (=code which can be 314112c3523SPeter Collingbourne inserted into and removed from the running kernel), say M 315112c3523SPeter Collingbourne here and read <file:Documentation/kbuild/modules.rst>. The module 316112c3523SPeter Collingbourne will be called amba-clcd. 317112c3523SPeter Collingbourne 318f7018c21STomi Valkeinenconfig FB_ACORN 319f7018c21STomi Valkeinen bool "Acorn VIDC support" 320f7018c21STomi Valkeinen depends on (FB = y) && ARM && ARCH_ACORN 321f7018c21STomi Valkeinen select FB_CFB_FILLRECT 322f7018c21STomi Valkeinen select FB_CFB_COPYAREA 323f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 324f7018c21STomi Valkeinen help 325f7018c21STomi Valkeinen This is the frame buffer device driver for the Acorn VIDC graphics 326f7018c21STomi Valkeinen hardware found in Acorn RISC PCs and other ARM-based machines. If 327f7018c21STomi Valkeinen unsure, say N. 328f7018c21STomi Valkeinen 329ef74d46aSAlexander Shiyanconfig FB_CLPS711X 330ef74d46aSAlexander Shiyan tristate "CLPS711X LCD support" 331ef74d46aSAlexander Shiyan depends on FB && (ARCH_CLPS711X || COMPILE_TEST) 332ef74d46aSAlexander Shiyan select FB_MODE_HELPERS 333ef74d46aSAlexander Shiyan select FB_SYS_FILLRECT 334ef74d46aSAlexander Shiyan select FB_SYS_COPYAREA 335ef74d46aSAlexander Shiyan select FB_SYS_IMAGEBLIT 336ef74d46aSAlexander Shiyan select LCD_CLASS_DEVICE 337ef74d46aSAlexander Shiyan select VIDEOMODE_HELPERS 338f7018c21STomi Valkeinen help 339ef74d46aSAlexander Shiyan Say Y to enable the Framebuffer driver for the Cirrus Logic 340ef74d46aSAlexander Shiyan CLPS711X CPUs. 341f7018c21STomi Valkeinen 342f7018c21STomi Valkeinenconfig FB_SA1100 343f7018c21STomi Valkeinen bool "SA-1100 LCD support" 344f7018c21STomi Valkeinen depends on (FB = y) && ARM && ARCH_SA1100 345f7018c21STomi Valkeinen select FB_CFB_FILLRECT 346f7018c21STomi Valkeinen select FB_CFB_COPYAREA 347f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 348f7018c21STomi Valkeinen help 349f7018c21STomi Valkeinen This is a framebuffer device for the SA-1100 LCD Controller. 350f7018c21STomi Valkeinen See <http://www.linux-fbdev.org/> for information on framebuffer 351f7018c21STomi Valkeinen devices. 352f7018c21STomi Valkeinen 353f7018c21STomi Valkeinen If you plan to use the LCD display with your SA-1100 system, say 354f7018c21STomi Valkeinen Y here. 355f7018c21STomi Valkeinen 356f7018c21STomi Valkeinenconfig FB_IMX 357f7018c21STomi Valkeinen tristate "Freescale i.MX1/21/25/27 LCD support" 358b90b279eSBartlomiej Zolnierkiewicz depends on FB && HAVE_CLK && HAS_IOMEM 359b90b279eSBartlomiej Zolnierkiewicz depends on ARCH_MXC || COMPILE_TEST 360f7018c21STomi Valkeinen select LCD_CLASS_DEVICE 361f7018c21STomi Valkeinen select FB_CFB_FILLRECT 362f7018c21STomi Valkeinen select FB_CFB_COPYAREA 363f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 364f7018c21STomi Valkeinen select FB_MODE_HELPERS 365f7018c21STomi Valkeinen select VIDEOMODE_HELPERS 366f7018c21STomi Valkeinen 367f7018c21STomi Valkeinenconfig FB_CYBER2000 368f7018c21STomi Valkeinen tristate "CyberPro 2000/2010/5000 support" 369f7018c21STomi Valkeinen depends on FB && PCI && (BROKEN || !SPARC64) 370f7018c21STomi Valkeinen select FB_CFB_FILLRECT 371f7018c21STomi Valkeinen select FB_CFB_COPYAREA 372f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 3730ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 374f7018c21STomi Valkeinen help 375f7018c21STomi Valkeinen This enables support for the Integraphics CyberPro 20x0 and 5000 376f7018c21STomi Valkeinen VGA chips used in the Rebel.com Netwinder and other machines. 377f7018c21STomi Valkeinen Say Y if you have a NetWinder or a graphics card containing this 378f7018c21STomi Valkeinen device, otherwise say N. 379f7018c21STomi Valkeinen 380f7018c21STomi Valkeinenconfig FB_CYBER2000_DDC 381f7018c21STomi Valkeinen bool "DDC for CyberPro support" 382f7018c21STomi Valkeinen depends on FB_CYBER2000 383f7018c21STomi Valkeinen select FB_DDC 384f7018c21STomi Valkeinen default y 385f7018c21STomi Valkeinen help 386f7018c21STomi Valkeinen Say Y here if you want DDC support for your CyberPro graphics 387f7018c21STomi Valkeinen card. This is only I2C bus support, driver does not use EDID. 388f7018c21STomi Valkeinen 389f7018c21STomi Valkeinenconfig FB_CYBER2000_I2C 390f7018c21STomi Valkeinen bool "CyberPro 2000/2010/5000 I2C support" 391f7018c21STomi Valkeinen depends on FB_CYBER2000 && I2C && ARCH_NETWINDER 392f7200b68SArnd Bergmann depends on I2C=y || FB_CYBER2000=m 393f7018c21STomi Valkeinen select I2C_ALGOBIT 394f7018c21STomi Valkeinen help 395f7018c21STomi Valkeinen Enable support for the I2C video decoder interface on the 396f7018c21STomi Valkeinen Integraphics CyberPro 20x0 and 5000 VGA chips. This is used 397f7018c21STomi Valkeinen on the Netwinder machines for the SAA7111 video capture. 398f7018c21STomi Valkeinen 399f7018c21STomi Valkeinenconfig FB_APOLLO 400f7018c21STomi Valkeinen bool 401f7018c21STomi Valkeinen depends on (FB = y) && APOLLO 402f7018c21STomi Valkeinen default y 403f7018c21STomi Valkeinen select FB_CFB_FILLRECT 404f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 405f7018c21STomi Valkeinen 406f7018c21STomi Valkeinenconfig FB_Q40 407f7018c21STomi Valkeinen bool 408f7018c21STomi Valkeinen depends on (FB = y) && Q40 409f7018c21STomi Valkeinen default y 410f7018c21STomi Valkeinen select FB_CFB_FILLRECT 411f7018c21STomi Valkeinen select FB_CFB_COPYAREA 412f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 413f7018c21STomi Valkeinen 414f7018c21STomi Valkeinenconfig FB_AMIGA 415f7018c21STomi Valkeinen tristate "Amiga native chipset support" 416f7018c21STomi Valkeinen depends on FB && AMIGA 417f7018c21STomi Valkeinen help 418f7018c21STomi Valkeinen This is the frame buffer device driver for the builtin graphics 419f7018c21STomi Valkeinen chipset found in Amigas. 420f7018c21STomi Valkeinen 421f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 422f7018c21STomi Valkeinen module will be called amifb. 423f7018c21STomi Valkeinen 424f7018c21STomi Valkeinenconfig FB_AMIGA_OCS 425f7018c21STomi Valkeinen bool "Amiga OCS chipset support" 426f7018c21STomi Valkeinen depends on FB_AMIGA 427f7018c21STomi Valkeinen help 428f7018c21STomi Valkeinen This enables support for the original Agnus and Denise video chips, 429f7018c21STomi Valkeinen found in the Amiga 1000 and most A500's and A2000's. If you intend 430f7018c21STomi Valkeinen to run Linux on any of these systems, say Y; otherwise say N. 431f7018c21STomi Valkeinen 432f7018c21STomi Valkeinenconfig FB_AMIGA_ECS 433f7018c21STomi Valkeinen bool "Amiga ECS chipset support" 434f7018c21STomi Valkeinen depends on FB_AMIGA 435f7018c21STomi Valkeinen help 436f7018c21STomi Valkeinen This enables support for the Enhanced Chip Set, found in later 437f7018c21STomi Valkeinen A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If 438f7018c21STomi Valkeinen you intend to run Linux on any of these systems, say Y; otherwise 439f7018c21STomi Valkeinen say N. 440f7018c21STomi Valkeinen 441f7018c21STomi Valkeinenconfig FB_AMIGA_AGA 442f7018c21STomi Valkeinen bool "Amiga AGA chipset support" 443f7018c21STomi Valkeinen depends on FB_AMIGA 444f7018c21STomi Valkeinen help 445f7018c21STomi Valkeinen This enables support for the Advanced Graphics Architecture (also 446f7018c21STomi Valkeinen known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T 447f7018c21STomi Valkeinen and CD32. If you intend to run Linux on any of these systems, say Y; 448f7018c21STomi Valkeinen otherwise say N. 449f7018c21STomi Valkeinen 450f7018c21STomi Valkeinenconfig FB_FM2 451f7018c21STomi Valkeinen bool "Amiga FrameMaster II/Rainbow II support" 452f7018c21STomi Valkeinen depends on (FB = y) && ZORRO 453f7018c21STomi Valkeinen select FB_CFB_FILLRECT 454f7018c21STomi Valkeinen select FB_CFB_COPYAREA 455f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 456f7018c21STomi Valkeinen help 457f7018c21STomi Valkeinen This is the frame buffer device driver for the Amiga FrameMaster 458f7018c21STomi Valkeinen card from BSC (exhibited 1992 but not shipped as a CBM product). 459f7018c21STomi Valkeinen 460f7018c21STomi Valkeinenconfig FB_ARC 461f7018c21STomi Valkeinen tristate "Arc Monochrome LCD board support" 4623d3287e6SBartlomiej Zolnierkiewicz depends on FB && (X86 || COMPILE_TEST) 463f7018c21STomi Valkeinen select FB_SYS_FILLRECT 464f7018c21STomi Valkeinen select FB_SYS_COPYAREA 465f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 466f7018c21STomi Valkeinen select FB_SYS_FOPS 467f7018c21STomi Valkeinen help 468f7018c21STomi Valkeinen This enables support for the Arc Monochrome LCD board. The board 469f7018c21STomi Valkeinen is based on the KS-108 lcd controller and is typically a matrix 470f7018c21STomi Valkeinen of 2*n chips. This driver was tested with a 128x64 panel. This 471f7018c21STomi Valkeinen driver supports it for use with x86 SBCs through a 16 bit GPIO 472f7018c21STomi Valkeinen interface (8 bit data, 8 bit control). If you anticipate using 473f7018c21STomi Valkeinen this driver, say Y or M; otherwise say N. You must specify the 474f7018c21STomi Valkeinen GPIO IO address to be used for setting control and data. 475f7018c21STomi Valkeinen 476f7018c21STomi Valkeinenconfig FB_ATARI 477f7018c21STomi Valkeinen bool "Atari native chipset support" 478f7018c21STomi Valkeinen depends on (FB = y) && ATARI 479f7018c21STomi Valkeinen select FB_CFB_FILLRECT 480f7018c21STomi Valkeinen select FB_CFB_COPYAREA 481f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 482f7018c21STomi Valkeinen help 483f7018c21STomi Valkeinen This is the frame buffer device driver for the builtin graphics 484f7018c21STomi Valkeinen chipset found in Ataris. 485f7018c21STomi Valkeinen 486f7018c21STomi Valkeinenconfig FB_OF 4879d8b5376SRandy Dunlap tristate "Open Firmware frame buffer device support" 4889d8b5376SRandy Dunlap depends on FB && PPC && (!PPC_PSERIES || PCI) 489c8a17756SThomas Zimmermann depends on !DRM_OFDRM 4907283f862SThomas Zimmermann select APERTURE_HELPERS 491f7018c21STomi Valkeinen select FB_CFB_FILLRECT 492f7018c21STomi Valkeinen select FB_CFB_COPYAREA 493f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 494f7018c21STomi Valkeinen select FB_MACMODES 495f7018c21STomi Valkeinen help 496f7018c21STomi Valkeinen Say Y if you want support with Open Firmware for your graphics 497f7018c21STomi Valkeinen board. 498f7018c21STomi Valkeinen 499f7018c21STomi Valkeinenconfig FB_CONTROL 500f7018c21STomi Valkeinen bool "Apple \"control\" display support" 501a07a63b0SBartlomiej Zolnierkiewicz depends on (FB = y) && ((PPC_PMAC && PPC32) || COMPILE_TEST) 502f7018c21STomi Valkeinen select FB_CFB_FILLRECT 503f7018c21STomi Valkeinen select FB_CFB_COPYAREA 504f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 505f7018c21STomi Valkeinen select FB_MACMODES 506f7018c21STomi Valkeinen help 507f7018c21STomi Valkeinen This driver supports a frame buffer for the graphics adapter in the 508f7018c21STomi Valkeinen Power Macintosh 7300 and others. 509f7018c21STomi Valkeinen 510f7018c21STomi Valkeinenconfig FB_PLATINUM 511f7018c21STomi Valkeinen bool "Apple \"platinum\" display support" 512f7018c21STomi Valkeinen depends on (FB = y) && PPC_PMAC && PPC32 513f7018c21STomi Valkeinen select FB_CFB_FILLRECT 514f7018c21STomi Valkeinen select FB_CFB_COPYAREA 515f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 516f7018c21STomi Valkeinen select FB_MACMODES 517f7018c21STomi Valkeinen help 518f7018c21STomi Valkeinen This driver supports a frame buffer for the "platinum" graphics 519f7018c21STomi Valkeinen adapter in some Power Macintoshes. 520f7018c21STomi Valkeinen 521f7018c21STomi Valkeinenconfig FB_VALKYRIE 522f7018c21STomi Valkeinen bool "Apple \"valkyrie\" display support" 523f7018c21STomi Valkeinen depends on (FB = y) && (MAC || (PPC_PMAC && PPC32)) 524f7018c21STomi Valkeinen select FB_CFB_FILLRECT 525f7018c21STomi Valkeinen select FB_CFB_COPYAREA 526f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 527f7018c21STomi Valkeinen select FB_MACMODES 528f7018c21STomi Valkeinen help 529f7018c21STomi Valkeinen This driver supports a frame buffer for the "valkyrie" graphics 530f7018c21STomi Valkeinen adapter in some Power Macintoshes. 531f7018c21STomi Valkeinen 532f7018c21STomi Valkeinenconfig FB_CT65550 533f7018c21STomi Valkeinen bool "Chips 65550 display support" 534f7018c21STomi Valkeinen depends on (FB = y) && PPC32 && PCI 535f7018c21STomi Valkeinen select FB_CFB_FILLRECT 536f7018c21STomi Valkeinen select FB_CFB_COPYAREA 537f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 5380ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 539f7018c21STomi Valkeinen help 540f7018c21STomi Valkeinen This is the frame buffer device driver for the Chips & Technologies 541f7018c21STomi Valkeinen 65550 graphics chip in PowerBooks. 542f7018c21STomi Valkeinen 543f7018c21STomi Valkeinenconfig FB_ASILIANT 544f7018c21STomi Valkeinen bool "Asiliant (Chips) 69000 display support" 545f7018c21STomi Valkeinen depends on (FB = y) && PCI 546f7018c21STomi Valkeinen select FB_CFB_FILLRECT 547f7018c21STomi Valkeinen select FB_CFB_COPYAREA 548f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 5490ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 550f7018c21STomi Valkeinen help 551f7018c21STomi Valkeinen This is the frame buffer device driver for the Asiliant 69030 chipset 552f7018c21STomi Valkeinen 553f7018c21STomi Valkeinenconfig FB_IMSTT 554f7018c21STomi Valkeinen bool "IMS Twin Turbo display support" 555f7018c21STomi Valkeinen depends on (FB = y) && PCI 556f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 557066ac5c3SFinn Thain select FB_MACMODES if PPC_PMAC 5580ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 559f7018c21STomi Valkeinen help 560f7018c21STomi Valkeinen The IMS Twin Turbo is a PCI-based frame buffer card bundled with 561f7018c21STomi Valkeinen many Macintosh and compatible computers. 562f7018c21STomi Valkeinen 563f7018c21STomi Valkeinenconfig FB_VGA16 564f7018c21STomi Valkeinen tristate "VGA 16-color graphics support" 565f7018c21STomi Valkeinen depends on FB && (X86 || PPC) 5667283f862SThomas Zimmermann select APERTURE_HELPERS 567f7018c21STomi Valkeinen select FB_CFB_FILLRECT 568f7018c21STomi Valkeinen select FB_CFB_COPYAREA 569f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 570f7018c21STomi Valkeinen select VGASTATE 571f7018c21STomi Valkeinen select FONT_8x16 if FRAMEBUFFER_CONSOLE 572f7018c21STomi Valkeinen help 573f7018c21STomi Valkeinen This is the frame buffer device driver for VGA 16 color graphic 574f7018c21STomi Valkeinen cards. Say Y if you have such a card. 575f7018c21STomi Valkeinen 576f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 577f7018c21STomi Valkeinen module will be called vga16fb. 578f7018c21STomi Valkeinen 579f7018c21STomi Valkeinenconfig FB_STI 580f7018c21STomi Valkeinen tristate "HP STI frame buffer device support" 581f7018c21STomi Valkeinen depends on FB && PARISC 582f7018c21STomi Valkeinen select FB_CFB_FILLRECT 583f7018c21STomi Valkeinen select FB_CFB_COPYAREA 584f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 58574708497SThomas Zimmermann select STI_CORE 586f7018c21STomi Valkeinen default y 587a7f7f624SMasahiro Yamada help 588f7018c21STomi Valkeinen Enabling this option will implement the linux framebuffer device 589f7018c21STomi Valkeinen using calls to the STI BIOS routines for initialisation. 590f7018c21STomi Valkeinen 591f7018c21STomi Valkeinen If you enable this option, you will get a planar framebuffer device 592f7018c21STomi Valkeinen /dev/fb which will work on the most common HP graphic cards of the 593f7018c21STomi Valkeinen NGLE family, including the artist chips (in the 7xx and Bxxx series), 594f7018c21STomi Valkeinen HCRX, HCRX24, CRX, CRX24 and VisEG series. 595f7018c21STomi Valkeinen 596f7018c21STomi Valkeinen It is safe to enable this option, so you should probably say "Y". 597f7018c21STomi Valkeinen 598f7018c21STomi Valkeinenconfig FB_MAC 599f7018c21STomi Valkeinen bool "Generic Macintosh display support" 600f7018c21STomi Valkeinen depends on (FB = y) && MAC 601f7018c21STomi Valkeinen select FB_CFB_FILLRECT 602f7018c21STomi Valkeinen select FB_CFB_COPYAREA 603f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 604f7018c21STomi Valkeinen select FB_MACMODES 605f7018c21STomi Valkeinen 606f7018c21STomi Valkeinenconfig FB_HP300 607f7018c21STomi Valkeinen bool 608f7018c21STomi Valkeinen depends on (FB = y) && DIO 609f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 610f7018c21STomi Valkeinen default y 611f7018c21STomi Valkeinen 612f7018c21STomi Valkeinenconfig FB_TGA 613f7018c21STomi Valkeinen tristate "TGA/SFB+ framebuffer support" 614cd395d52SLinus Torvalds depends on FB 615cd395d52SLinus Torvalds depends on PCI || TC 616cd395d52SLinus Torvalds depends on ALPHA || TC 617f7018c21STomi Valkeinen select FB_CFB_FILLRECT 618f7018c21STomi Valkeinen select FB_CFB_COPYAREA 619f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 620f7018c21STomi Valkeinen select BITREVERSE 6210ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 622a7f7f624SMasahiro Yamada help 623f7018c21STomi Valkeinen This is the frame buffer device driver for generic TGA and SFB+ 624f7018c21STomi Valkeinen graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards, 625f7018c21STomi Valkeinen also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3 626f7018c21STomi Valkeinen TURBOchannel cards, also known as PMAGD-A, -B and -C. 627f7018c21STomi Valkeinen 628f7018c21STomi Valkeinen Due to hardware limitations ZLX-E2 and E3 cards are not supported 629f7018c21STomi Valkeinen for DECstation 5000/200 systems. Additionally due to firmware 630f7018c21STomi Valkeinen limitations these cards may cause troubles with booting DECstation 631f7018c21STomi Valkeinen 5000/240 and /260 systems, but are fully supported under Linux if 632f7018c21STomi Valkeinen you manage to get it going. ;-) 633f7018c21STomi Valkeinen 634f7018c21STomi Valkeinen Say Y if you have one of those. 635f7018c21STomi Valkeinen 636f7018c21STomi Valkeinenconfig FB_UVESA 637f7018c21STomi Valkeinen tristate "Userspace VESA VGA graphics support" 638f7018c21STomi Valkeinen depends on FB && CONNECTOR 63935b4f4d4SRandy Dunlap depends on !UML 640f7018c21STomi Valkeinen select FB_CFB_FILLRECT 641f7018c21STomi Valkeinen select FB_CFB_COPYAREA 642f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 643f7018c21STomi Valkeinen select FB_MODE_HELPERS 644f7018c21STomi Valkeinen help 645f7018c21STomi Valkeinen This is the frame buffer driver for generic VBE 2.0 compliant 646f7018c21STomi Valkeinen graphic cards. It can also take advantage of VBE 3.0 features, 647f7018c21STomi Valkeinen such as refresh rate adjustment. 648f7018c21STomi Valkeinen 649f7018c21STomi Valkeinen This driver generally provides more features than vesafb but 650f7018c21STomi Valkeinen requires a userspace helper application called 'v86d'. See 651ab42b818SMauro Carvalho Chehab <file:Documentation/fb/uvesafb.rst> for more information. 652f7018c21STomi Valkeinen 653f7018c21STomi Valkeinen If unsure, say N. 654f7018c21STomi Valkeinen 655f7018c21STomi Valkeinenconfig FB_VESA 656f7018c21STomi Valkeinen bool "VESA VGA graphics support" 6570d4e57e5SJavier Martinez Canillas depends on (FB = y) && X86 6587283f862SThomas Zimmermann select APERTURE_HELPERS 659f7018c21STomi Valkeinen select FB_CFB_FILLRECT 660f7018c21STomi Valkeinen select FB_CFB_COPYAREA 661f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 662a4a072d9SMichal Suchanek select SYSFB 663f7018c21STomi Valkeinen help 664f7018c21STomi Valkeinen This is the frame buffer device driver for generic VESA 2.0 665f7018c21STomi Valkeinen compliant graphic cards. The older VESA 1.2 cards are not supported. 666f7018c21STomi Valkeinen You will get a boot time penguin logo at no additional cost. Please 667ab42b818SMauro Carvalho Chehab read <file:Documentation/fb/vesafb.rst>. If unsure, say Y. 668f7018c21STomi Valkeinen 669f7018c21STomi Valkeinenconfig FB_EFI 670f7018c21STomi Valkeinen bool "EFI-based Framebuffer Support" 6719822504cSArd Biesheuvel depends on (FB = y) && !IA64 && EFI 6727283f862SThomas Zimmermann select APERTURE_HELPERS 673028b186fSHans de Goede select DRM_PANEL_ORIENTATION_QUIRKS 674f7018c21STomi Valkeinen select FB_CFB_FILLRECT 675f7018c21STomi Valkeinen select FB_CFB_COPYAREA 676f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 677a4a072d9SMichal Suchanek select SYSFB 678f7018c21STomi Valkeinen help 679f7018c21STomi Valkeinen This is the EFI frame buffer device driver. If the firmware on 680f7018c21STomi Valkeinen your platform is EFI 1.10 or UEFI 2.0, select Y to add support for 681f7018c21STomi Valkeinen using the EFI framebuffer as your console. 682f7018c21STomi Valkeinen 683f7018c21STomi Valkeinenconfig FB_N411 684f7018c21STomi Valkeinen tristate "N411 Apollo/Hecuba devkit support" 685f7018c21STomi Valkeinen depends on FB && X86 && MMU 686f7018c21STomi Valkeinen select FB_HECUBA 687f7018c21STomi Valkeinen help 688f7018c21STomi Valkeinen This enables support for the Apollo display controller in its 689f7018c21STomi Valkeinen Hecuba form using the n411 devkit. 690f7018c21STomi Valkeinen 691f7018c21STomi Valkeinenconfig FB_HGA 692f7018c21STomi Valkeinen tristate "Hercules mono graphics support" 693f7018c21STomi Valkeinen depends on FB && X86 694f7018c21STomi Valkeinen help 695f7018c21STomi Valkeinen Say Y here if you have a Hercules mono graphics card. 696f7018c21STomi Valkeinen 697f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 698f7018c21STomi Valkeinen module will be called hgafb. 699f7018c21STomi Valkeinen 700f7018c21STomi Valkeinen As this card technology is at least 25 years old, 701f7018c21STomi Valkeinen most people will answer N here. 702f7018c21STomi Valkeinen 703f7018c21STomi Valkeinenconfig FB_GBE 704f7018c21STomi Valkeinen bool "SGI Graphics Backend frame buffer support" 705552ccf6bSBartlomiej Zolnierkiewicz depends on (FB = y) && HAS_IOMEM 706552ccf6bSBartlomiej Zolnierkiewicz depends on SGI_IP32 || COMPILE_TEST 707f7018c21STomi Valkeinen select FB_CFB_FILLRECT 708f7018c21STomi Valkeinen select FB_CFB_COPYAREA 709f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 710f7018c21STomi Valkeinen help 711f7018c21STomi Valkeinen This is the frame buffer device driver for SGI Graphics Backend. 712f7018c21STomi Valkeinen This chip is used in SGI O2 and Visual Workstation 320/540. 713f7018c21STomi Valkeinen 714f7018c21STomi Valkeinenconfig FB_GBE_MEM 715f7018c21STomi Valkeinen int "Video memory size in MB" 716f7018c21STomi Valkeinen depends on FB_GBE 717f7018c21STomi Valkeinen default 4 718f7018c21STomi Valkeinen help 719f7018c21STomi Valkeinen This is the amount of memory reserved for the framebuffer, 720f7018c21STomi Valkeinen which can be any value between 1MB and 8MB. 721f7018c21STomi Valkeinen 722f7018c21STomi Valkeinenconfig FB_SBUS 723f7018c21STomi Valkeinen bool "SBUS and UPA framebuffers" 724f7018c21STomi Valkeinen depends on (FB = y) && SPARC 725f7018c21STomi Valkeinen help 726f7018c21STomi Valkeinen Say Y if you want support for SBUS or UPA based frame buffer device. 727f7018c21STomi Valkeinen 728f7018c21STomi Valkeinenconfig FB_BW2 729f7018c21STomi Valkeinen bool "BWtwo support" 730f7018c21STomi Valkeinen depends on (FB = y) && (SPARC && FB_SBUS) 731f7018c21STomi Valkeinen select FB_CFB_FILLRECT 732f7018c21STomi Valkeinen select FB_CFB_COPYAREA 733f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 734f7018c21STomi Valkeinen help 735f7018c21STomi Valkeinen This is the frame buffer device driver for the BWtwo frame buffer. 736f7018c21STomi Valkeinen 737f7018c21STomi Valkeinenconfig FB_CG3 738f7018c21STomi Valkeinen bool "CGthree support" 739f7018c21STomi Valkeinen depends on (FB = y) && (SPARC && FB_SBUS) 740f7018c21STomi Valkeinen select FB_CFB_FILLRECT 741f7018c21STomi Valkeinen select FB_CFB_COPYAREA 742f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 743f7018c21STomi Valkeinen help 744f7018c21STomi Valkeinen This is the frame buffer device driver for the CGthree frame buffer. 745f7018c21STomi Valkeinen 746f7018c21STomi Valkeinenconfig FB_CG6 747f7018c21STomi Valkeinen bool "CGsix (GX,TurboGX) support" 748f7018c21STomi Valkeinen depends on (FB = y) && (SPARC && FB_SBUS) 749f7018c21STomi Valkeinen select FB_CFB_COPYAREA 750f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 751f7018c21STomi Valkeinen help 752f7018c21STomi Valkeinen This is the frame buffer device driver for the CGsix (GX, TurboGX) 753f7018c21STomi Valkeinen frame buffer. 754f7018c21STomi Valkeinen 755f7018c21STomi Valkeinenconfig FB_FFB 756f7018c21STomi Valkeinen bool "Creator/Creator3D/Elite3D support" 757f7018c21STomi Valkeinen depends on FB_SBUS && SPARC64 758f7018c21STomi Valkeinen select FB_CFB_COPYAREA 759f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 760f7018c21STomi Valkeinen help 761f7018c21STomi Valkeinen This is the frame buffer device driver for the Creator, Creator3D, 762f7018c21STomi Valkeinen and Elite3D graphics boards. 763f7018c21STomi Valkeinen 764f7018c21STomi Valkeinenconfig FB_TCX 765f7018c21STomi Valkeinen bool "TCX (SS4/SS5 only) support" 766f7018c21STomi Valkeinen depends on FB_SBUS 767f7018c21STomi Valkeinen select FB_CFB_FILLRECT 768f7018c21STomi Valkeinen select FB_CFB_COPYAREA 769f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 770f7018c21STomi Valkeinen help 771f7018c21STomi Valkeinen This is the frame buffer device driver for the TCX 24/8bit frame 772f7018c21STomi Valkeinen buffer. 773f7018c21STomi Valkeinen 774f7018c21STomi Valkeinenconfig FB_CG14 775f7018c21STomi Valkeinen bool "CGfourteen (SX) support" 776f7018c21STomi Valkeinen depends on FB_SBUS 777f7018c21STomi Valkeinen select FB_CFB_FILLRECT 778f7018c21STomi Valkeinen select FB_CFB_COPYAREA 779f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 780f7018c21STomi Valkeinen help 781f7018c21STomi Valkeinen This is the frame buffer device driver for the CGfourteen frame 782f7018c21STomi Valkeinen buffer on Desktop SPARCsystems with the SX graphics option. 783f7018c21STomi Valkeinen 784f7018c21STomi Valkeinenconfig FB_P9100 785f7018c21STomi Valkeinen bool "P9100 (Sparcbook 3 only) support" 786f7018c21STomi Valkeinen depends on FB_SBUS 787f7018c21STomi Valkeinen select FB_CFB_FILLRECT 788f7018c21STomi Valkeinen select FB_CFB_COPYAREA 789f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 790f7018c21STomi Valkeinen help 791f7018c21STomi Valkeinen This is the frame buffer device driver for the P9100 card 792f7018c21STomi Valkeinen supported on Sparcbook 3 machines. 793f7018c21STomi Valkeinen 794f7018c21STomi Valkeinenconfig FB_LEO 795f7018c21STomi Valkeinen bool "Leo (ZX) support" 796f7018c21STomi Valkeinen depends on FB_SBUS 797f7018c21STomi Valkeinen select FB_CFB_FILLRECT 798f7018c21STomi Valkeinen select FB_CFB_COPYAREA 799f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 800f7018c21STomi Valkeinen help 801f7018c21STomi Valkeinen This is the frame buffer device driver for the SBUS-based Sun ZX 802f7018c21STomi Valkeinen (leo) frame buffer cards. 803f7018c21STomi Valkeinen 804f7018c21STomi Valkeinenconfig FB_XVR500 805f7018c21STomi Valkeinen bool "Sun XVR-500 3DLABS Wildcat support" 806f7018c21STomi Valkeinen depends on (FB = y) && PCI && SPARC64 807f7018c21STomi Valkeinen select FB_CFB_FILLRECT 808f7018c21STomi Valkeinen select FB_CFB_COPYAREA 809f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 8100ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 811f7018c21STomi Valkeinen help 812f7018c21STomi Valkeinen This is the framebuffer device for the Sun XVR-500 and similar 813f7018c21STomi Valkeinen graphics cards based upon the 3DLABS Wildcat chipset. The driver 814f7018c21STomi Valkeinen only works on sparc64 systems where the system firmware has 815f7018c21STomi Valkeinen mostly initialized the card already. It is treated as a 816f7018c21STomi Valkeinen completely dumb framebuffer device. 817f7018c21STomi Valkeinen 818f7018c21STomi Valkeinenconfig FB_XVR2500 819f7018c21STomi Valkeinen bool "Sun XVR-2500 3DLABS Wildcat support" 820f7018c21STomi Valkeinen depends on (FB = y) && PCI && SPARC64 821f7018c21STomi Valkeinen select FB_CFB_FILLRECT 822f7018c21STomi Valkeinen select FB_CFB_COPYAREA 823f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 8240ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 825f7018c21STomi Valkeinen help 826f7018c21STomi Valkeinen This is the framebuffer device for the Sun XVR-2500 and similar 827f7018c21STomi Valkeinen graphics cards based upon the 3DLABS Wildcat chipset. The driver 828f7018c21STomi Valkeinen only works on sparc64 systems where the system firmware has 829f7018c21STomi Valkeinen mostly initialized the card already. It is treated as a 830f7018c21STomi Valkeinen completely dumb framebuffer device. 831f7018c21STomi Valkeinen 832f7018c21STomi Valkeinenconfig FB_XVR1000 833f7018c21STomi Valkeinen bool "Sun XVR-1000 support" 834f7018c21STomi Valkeinen depends on (FB = y) && SPARC64 835f7018c21STomi Valkeinen select FB_CFB_FILLRECT 836f7018c21STomi Valkeinen select FB_CFB_COPYAREA 837f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 838f7018c21STomi Valkeinen help 839f7018c21STomi Valkeinen This is the framebuffer device for the Sun XVR-1000 and similar 840f7018c21STomi Valkeinen graphics cards. The driver only works on sparc64 systems where 841f7018c21STomi Valkeinen the system firmware has mostly initialized the card already. It 842f7018c21STomi Valkeinen is treated as a completely dumb framebuffer device. 843f7018c21STomi Valkeinen 844f7018c21STomi Valkeinenconfig FB_PVR2 845f7018c21STomi Valkeinen tristate "NEC PowerVR 2 display support" 8460f5a5712SBartlomiej Zolnierkiewicz depends on FB && HAS_IOMEM 8470f5a5712SBartlomiej Zolnierkiewicz depends on SH_DREAMCAST || COMPILE_TEST 848f7018c21STomi Valkeinen select FB_CFB_FILLRECT 849f7018c21STomi Valkeinen select FB_CFB_COPYAREA 850f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 8510ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 852a7f7f624SMasahiro Yamada help 853f7018c21STomi Valkeinen Say Y here if you have a PowerVR 2 card in your box. If you plan to 854f7018c21STomi Valkeinen run linux on your Dreamcast, you will have to say Y here. 855f7018c21STomi Valkeinen This driver may or may not work on other PowerVR 2 cards, but is 856f7018c21STomi Valkeinen totally untested. Use at your own risk. If unsure, say N. 857f7018c21STomi Valkeinen 858f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 859f7018c21STomi Valkeinen module will be called pvr2fb. 860f7018c21STomi Valkeinen 861f7018c21STomi Valkeinen You can pass several parameters to the driver at boot time or at 862f7018c21STomi Valkeinen module load time. The parameters look like "video=pvr2:XXX", where 863f7018c21STomi Valkeinen the meaning of XXX can be found at the end of the main source file 864c5510f53SWei Ming Chen (<file:drivers/video/fbdev/pvr2fb.c>). Please see the file 865ab42b818SMauro Carvalho Chehab <file:Documentation/fb/pvr2fb.rst>. 866f7018c21STomi Valkeinen 867f7018c21STomi Valkeinenconfig FB_OPENCORES 868f7018c21STomi Valkeinen tristate "OpenCores VGA/LCD core 2.0 framebuffer support" 869f7018c21STomi Valkeinen depends on FB && HAS_DMA 870f7018c21STomi Valkeinen select FB_CFB_FILLRECT 871f7018c21STomi Valkeinen select FB_CFB_COPYAREA 872f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 873f7018c21STomi Valkeinen help 874f7018c21STomi Valkeinen This enables support for the OpenCores VGA/LCD core. 875f7018c21STomi Valkeinen 876f7018c21STomi Valkeinen The OpenCores VGA/LCD core is typically used together with 877f7018c21STomi Valkeinen softcore CPUs (e.g. OpenRISC or Microblaze) or hard processor 878f7018c21STomi Valkeinen systems (e.g. Altera socfpga or Xilinx Zynq) on FPGAs. 879f7018c21STomi Valkeinen 880f7018c21STomi Valkeinen The source code and specification for the core is available at 8817c7b2a35SAlexander A. Klimov <https://opencores.org/project,vga_lcd> 882f7018c21STomi Valkeinen 883f7018c21STomi Valkeinenconfig FB_S1D13XXX 884f7018c21STomi Valkeinen tristate "Epson S1D13XXX framebuffer support" 885f7018c21STomi Valkeinen depends on FB 886f7018c21STomi Valkeinen select FB_CFB_FILLRECT 887f7018c21STomi Valkeinen select FB_CFB_COPYAREA 888f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 889f7018c21STomi Valkeinen help 890f7018c21STomi Valkeinen Support for S1D13XXX framebuffer device family (currently only 891f7018c21STomi Valkeinen working with S1D13806). Product specs at 8927c7b2a35SAlexander A. Klimov <https://vdc.epson.com/> 893f7018c21STomi Valkeinen 894f7018c21STomi Valkeinenconfig FB_ATMEL 895546f98c1SAlexandre Belloni tristate "AT91 LCD Controller support" 89659c1ad91SBartlomiej Zolnierkiewicz depends on FB && OF && HAVE_CLK && HAS_IOMEM 89759c1ad91SBartlomiej Zolnierkiewicz depends on HAVE_FB_ATMEL || COMPILE_TEST 8983cdd1537SArnd Bergmann select FB_BACKLIGHT 899f7018c21STomi Valkeinen select FB_CFB_FILLRECT 900f7018c21STomi Valkeinen select FB_CFB_COPYAREA 901f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 902f7018c21STomi Valkeinen select FB_MODE_HELPERS 903f7018c21STomi Valkeinen select VIDEOMODE_HELPERS 904f7018c21STomi Valkeinen help 905546f98c1SAlexandre Belloni This enables support for the AT91 LCD Controller. 906f7018c21STomi Valkeinen 907f7018c21STomi Valkeinenconfig FB_NVIDIA 908f7018c21STomi Valkeinen tristate "nVidia Framebuffer Support" 909f7018c21STomi Valkeinen depends on FB && PCI 910f7018c21STomi Valkeinen select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT 911f7018c21STomi Valkeinen select FB_MODE_HELPERS 912f7018c21STomi Valkeinen select FB_CFB_FILLRECT 913f7018c21STomi Valkeinen select FB_CFB_COPYAREA 914f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 915f7018c21STomi Valkeinen select BITREVERSE 916f7018c21STomi Valkeinen select VGASTATE 9170ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 918f7018c21STomi Valkeinen help 919f7018c21STomi Valkeinen This driver supports graphics boards with the nVidia chips, TNT 920f7018c21STomi Valkeinen and newer. For very old chipsets, such as the RIVA128, then use 921f7018c21STomi Valkeinen the rivafb. 922f7018c21STomi Valkeinen Say Y if you have such a graphics board. 923f7018c21STomi Valkeinen 924f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 925f7018c21STomi Valkeinen module will be called nvidiafb. 926f7018c21STomi Valkeinen 927f7018c21STomi Valkeinenconfig FB_NVIDIA_I2C 928f7018c21STomi Valkeinen bool "Enable DDC Support" 929f7018c21STomi Valkeinen depends on FB_NVIDIA 930f7018c21STomi Valkeinen select FB_DDC 931f7018c21STomi Valkeinen help 932f7018c21STomi Valkeinen This enables I2C support for nVidia Chipsets. This is used 933f7018c21STomi Valkeinen only for getting EDID information from the attached display 934f7018c21STomi Valkeinen allowing for robust video mode handling and switching. 935f7018c21STomi Valkeinen 936f7018c21STomi Valkeinen Because fbdev-2.6 requires that drivers must be able to 937f7018c21STomi Valkeinen independently validate video mode parameters, you should say Y 938f7018c21STomi Valkeinen here. 939f7018c21STomi Valkeinen 940f7018c21STomi Valkeinenconfig FB_NVIDIA_DEBUG 941f7018c21STomi Valkeinen bool "Lots of debug output" 942f7018c21STomi Valkeinen depends on FB_NVIDIA 943f7018c21STomi Valkeinen help 944f7018c21STomi Valkeinen Say Y here if you want the nVidia driver to output all sorts 945f7018c21STomi Valkeinen of debugging information to provide to the maintainer when 946f7018c21STomi Valkeinen something goes wrong. 947f7018c21STomi Valkeinen 948f7018c21STomi Valkeinenconfig FB_NVIDIA_BACKLIGHT 949f7018c21STomi Valkeinen bool "Support for backlight control" 950f7018c21STomi Valkeinen depends on FB_NVIDIA 951f7018c21STomi Valkeinen default y 952f7018c21STomi Valkeinen help 953f7018c21STomi Valkeinen Say Y here if you want to control the backlight of your display. 954f7018c21STomi Valkeinen 955f7018c21STomi Valkeinenconfig FB_RIVA 956f7018c21STomi Valkeinen tristate "nVidia Riva support" 957f7018c21STomi Valkeinen depends on FB && PCI 958f7018c21STomi Valkeinen select FB_BACKLIGHT if FB_RIVA_BACKLIGHT 959f7018c21STomi Valkeinen select FB_MODE_HELPERS 960f7018c21STomi Valkeinen select FB_CFB_FILLRECT 961f7018c21STomi Valkeinen select FB_CFB_COPYAREA 962f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 963f7018c21STomi Valkeinen select BITREVERSE 964f7018c21STomi Valkeinen select VGASTATE 9650ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 966f7018c21STomi Valkeinen help 967f7018c21STomi Valkeinen This driver supports graphics boards with the nVidia Riva/Geforce 968f7018c21STomi Valkeinen chips. 969f7018c21STomi Valkeinen Say Y if you have such a graphics board. 970f7018c21STomi Valkeinen 971f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 972f7018c21STomi Valkeinen module will be called rivafb. 973f7018c21STomi Valkeinen 974f7018c21STomi Valkeinenconfig FB_RIVA_I2C 975f7018c21STomi Valkeinen bool "Enable DDC Support" 976f7018c21STomi Valkeinen depends on FB_RIVA 977f7018c21STomi Valkeinen select FB_DDC 978f7018c21STomi Valkeinen help 979f7018c21STomi Valkeinen This enables I2C support for nVidia Chipsets. This is used 980f7018c21STomi Valkeinen only for getting EDID information from the attached display 981f7018c21STomi Valkeinen allowing for robust video mode handling and switching. 982f7018c21STomi Valkeinen 983f7018c21STomi Valkeinen Because fbdev-2.6 requires that drivers must be able to 984f7018c21STomi Valkeinen independently validate video mode parameters, you should say Y 985f7018c21STomi Valkeinen here. 986f7018c21STomi Valkeinen 987f7018c21STomi Valkeinenconfig FB_RIVA_DEBUG 988f7018c21STomi Valkeinen bool "Lots of debug output" 989f7018c21STomi Valkeinen depends on FB_RIVA 990f7018c21STomi Valkeinen help 991f7018c21STomi Valkeinen Say Y here if you want the Riva driver to output all sorts 992f7018c21STomi Valkeinen of debugging information to provide to the maintainer when 993f7018c21STomi Valkeinen something goes wrong. 994f7018c21STomi Valkeinen 995f7018c21STomi Valkeinenconfig FB_RIVA_BACKLIGHT 996f7018c21STomi Valkeinen bool "Support for backlight control" 997f7018c21STomi Valkeinen depends on FB_RIVA 998f7018c21STomi Valkeinen default y 999f7018c21STomi Valkeinen help 1000f7018c21STomi Valkeinen Say Y here if you want to control the backlight of your display. 1001f7018c21STomi Valkeinen 1002f7018c21STomi Valkeinenconfig FB_I740 1003f7018c21STomi Valkeinen tristate "Intel740 support" 1004f7018c21STomi Valkeinen depends on FB && PCI 1005f7018c21STomi Valkeinen select FB_MODE_HELPERS 1006f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1007f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1008f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1009f7018c21STomi Valkeinen select VGASTATE 10100ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1011f7018c21STomi Valkeinen select FB_DDC 1012f7018c21STomi Valkeinen help 1013f7018c21STomi Valkeinen This driver supports graphics cards based on Intel740 chip. 1014f7018c21STomi Valkeinen 1015f7018c21STomi Valkeinenconfig FB_I810 1016f7018c21STomi Valkeinen tristate "Intel 810/815 support" 1017f7018c21STomi Valkeinen depends on FB && PCI && X86_32 && AGP_INTEL 1018f7018c21STomi Valkeinen select FB_MODE_HELPERS 1019f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1020f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1021f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1022f7018c21STomi Valkeinen select VGASTATE 10230ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1024f7018c21STomi Valkeinen help 1025f7018c21STomi Valkeinen This driver supports the on-board graphics built in to the Intel 810 1026f7018c21STomi Valkeinen and 815 chipsets. Say Y if you have and plan to use such a board. 1027f7018c21STomi Valkeinen 1028f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1029f7018c21STomi Valkeinen module will be called i810fb. 1030f7018c21STomi Valkeinen 1031f7018c21STomi Valkeinen For more information, please read 1032ab42b818SMauro Carvalho Chehab <file:Documentation/fb/intel810.rst> 1033f7018c21STomi Valkeinen 1034f7018c21STomi Valkeinenconfig FB_I810_GTF 1035f7018c21STomi Valkeinen bool "use VESA Generalized Timing Formula" 1036f7018c21STomi Valkeinen depends on FB_I810 1037f7018c21STomi Valkeinen help 1038f7018c21STomi Valkeinen If you say Y, then the VESA standard, Generalized Timing Formula 1039f7018c21STomi Valkeinen or GTF, will be used to calculate the required video timing values 1040f7018c21STomi Valkeinen per video mode. Since the GTF allows nondiscrete timings 1041f7018c21STomi Valkeinen (nondiscrete being a range of values as opposed to discrete being a 1042f7018c21STomi Valkeinen set of values), you'll be able to use any combination of horizontal 1043f7018c21STomi Valkeinen and vertical resolutions, and vertical refresh rates without having 1044f7018c21STomi Valkeinen to specify your own timing parameters. This is especially useful 1045f7018c21STomi Valkeinen to maximize the performance of an aging display, or if you just 1046f7018c21STomi Valkeinen have a display with nonstandard dimensions. A VESA compliant 1047f7018c21STomi Valkeinen monitor is recommended, but can still work with non-compliant ones. 1048f7018c21STomi Valkeinen If you need or want this, then select this option. The timings may 1049f7018c21STomi Valkeinen not be compliant with Intel's recommended values. Use at your own 1050f7018c21STomi Valkeinen risk. 1051f7018c21STomi Valkeinen 1052f7018c21STomi Valkeinen If you say N, the driver will revert to discrete video timings 1053f7018c21STomi Valkeinen using a set recommended by Intel in their documentation. 1054f7018c21STomi Valkeinen 1055f7018c21STomi Valkeinen If unsure, say N. 1056f7018c21STomi Valkeinen 1057f7018c21STomi Valkeinenconfig FB_I810_I2C 1058f7018c21STomi Valkeinen bool "Enable DDC Support" 1059f7018c21STomi Valkeinen depends on FB_I810 && FB_I810_GTF 1060f7018c21STomi Valkeinen select FB_DDC 1061e3419c6aSUlf Magnusson help 1062e3419c6aSUlf Magnusson Add DDC/I2C support for i810fb. This will allow the driver to get 1063e3419c6aSUlf Magnusson display information, especially for monitors with fickle timings. 1064e3419c6aSUlf Magnusson 1065e3419c6aSUlf Magnusson If unsure, say Y. 1066f7018c21STomi Valkeinen 1067f7018c21STomi Valkeinenconfig FB_LE80578 1068f7018c21STomi Valkeinen tristate "Intel LE80578 (Vermilion) support" 1069f7018c21STomi Valkeinen depends on FB && PCI && X86 1070f7018c21STomi Valkeinen select FB_MODE_HELPERS 1071f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1072f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1073f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 10740ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1075f7018c21STomi Valkeinen help 1076f7018c21STomi Valkeinen This driver supports the LE80578 (Vermilion Range) chipset 1077f7018c21STomi Valkeinen 1078f7018c21STomi Valkeinenconfig FB_CARILLO_RANCH 1079f7018c21STomi Valkeinen tristate "Intel Carillo Ranch support" 1080f7018c21STomi Valkeinen depends on FB_LE80578 && FB && PCI && X86 1081f7018c21STomi Valkeinen help 1082f7018c21STomi Valkeinen This driver supports the LE80578 (Carillo Ranch) board 1083f7018c21STomi Valkeinen 1084f7018c21STomi Valkeinenconfig FB_INTEL 1085f7018c21STomi Valkeinen tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support" 1086f7018c21STomi Valkeinen depends on FB && PCI && X86 && AGP_INTEL && EXPERT 1087f7018c21STomi Valkeinen select FB_MODE_HELPERS 1088f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1089f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1090f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 10918b766b0fSMichal Suchanek select BOOT_VESA_SUPPORT if FB_INTEL = y 10920ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1093f7018c21STomi Valkeinen depends on !DRM_I915 1094f7018c21STomi Valkeinen help 1095f7018c21STomi Valkeinen This driver supports the on-board graphics built in to the Intel 1096f7018c21STomi Valkeinen 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets. 1097f7018c21STomi Valkeinen Say Y if you have and plan to use such a board. 1098f7018c21STomi Valkeinen 1099530a6397SRandy Dunlap To make FB_INTEL=Y work you need to say AGP_INTEL=y too. 1100f7018c21STomi Valkeinen 1101f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1102f7018c21STomi Valkeinen module will be called intelfb. 1103f7018c21STomi Valkeinen 1104ab42b818SMauro Carvalho Chehab For more information, please read <file:Documentation/fb/intelfb.rst> 1105f7018c21STomi Valkeinen 1106f7018c21STomi Valkeinenconfig FB_INTEL_DEBUG 1107f7018c21STomi Valkeinen bool "Intel driver Debug Messages" 1108f7018c21STomi Valkeinen depends on FB_INTEL 1109a7f7f624SMasahiro Yamada help 1110f7018c21STomi Valkeinen Say Y here if you want the Intel driver to output all sorts 1111f7018c21STomi Valkeinen of debugging information to provide to the maintainer when 1112f7018c21STomi Valkeinen something goes wrong. 1113f7018c21STomi Valkeinen 1114f7018c21STomi Valkeinenconfig FB_INTEL_I2C 1115f7018c21STomi Valkeinen bool "DDC/I2C for Intel framebuffer support" 1116f7018c21STomi Valkeinen depends on FB_INTEL 1117f7018c21STomi Valkeinen select FB_DDC 1118f7018c21STomi Valkeinen default y 1119f7018c21STomi Valkeinen help 1120f7018c21STomi Valkeinen Say Y here if you want DDC/I2C support for your on-board Intel graphics. 1121f7018c21STomi Valkeinen 1122f7018c21STomi Valkeinenconfig FB_MATROX 1123f7018c21STomi Valkeinen tristate "Matrox acceleration" 1124f7018c21STomi Valkeinen depends on FB && PCI 1125f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1126f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1127f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1128f7018c21STomi Valkeinen select FB_TILEBLITTING 1129f7018c21STomi Valkeinen select FB_MACMODES if PPC_PMAC 11300ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1131a7f7f624SMasahiro Yamada help 1132f7018c21STomi Valkeinen Say Y here if you have a Matrox Millennium, Matrox Millennium II, 1133f7018c21STomi Valkeinen Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox 1134f7018c21STomi Valkeinen Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video, 1135f7018c21STomi Valkeinen Matrox G400, G450 or G550 card in your box. 1136f7018c21STomi Valkeinen 1137f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1138f7018c21STomi Valkeinen module will be called matroxfb. 1139f7018c21STomi Valkeinen 1140f7018c21STomi Valkeinen You can pass several parameters to the driver at boot time or at 1141f7018c21STomi Valkeinen module load time. The parameters look like "video=matroxfb:XXX", and 1142ab42b818SMauro Carvalho Chehab are described in <file:Documentation/fb/matroxfb.rst>. 1143f7018c21STomi Valkeinen 1144f7018c21STomi Valkeinenconfig FB_MATROX_MILLENIUM 1145f7018c21STomi Valkeinen bool "Millennium I/II support" 1146f7018c21STomi Valkeinen depends on FB_MATROX 1147f7018c21STomi Valkeinen help 1148f7018c21STomi Valkeinen Say Y here if you have a Matrox Millennium or Matrox Millennium II 1149f7018c21STomi Valkeinen video card. If you select "Advanced lowlevel driver options" below, 1150f7018c21STomi Valkeinen you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp 1151f7018c21STomi Valkeinen packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can 1152f7018c21STomi Valkeinen also use font widths different from 8. 1153f7018c21STomi Valkeinen 1154f7018c21STomi Valkeinenconfig FB_MATROX_MYSTIQUE 1155f7018c21STomi Valkeinen bool "Mystique support" 1156f7018c21STomi Valkeinen depends on FB_MATROX 1157f7018c21STomi Valkeinen help 1158f7018c21STomi Valkeinen Say Y here if you have a Matrox Mystique or Matrox Mystique 220 1159f7018c21STomi Valkeinen video card. If you select "Advanced lowlevel driver options" below, 1160f7018c21STomi Valkeinen you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp 1161f7018c21STomi Valkeinen packed pixel and 32 bpp packed pixel. You can also use font widths 1162f7018c21STomi Valkeinen different from 8. 1163f7018c21STomi Valkeinen 1164f7018c21STomi Valkeinenconfig FB_MATROX_G 1165f7018c21STomi Valkeinen bool "G100/G200/G400/G450/G550 support" 1166f7018c21STomi Valkeinen depends on FB_MATROX 1167a7f7f624SMasahiro Yamada help 1168f7018c21STomi Valkeinen Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based 1169f7018c21STomi Valkeinen video card. If you select "Advanced lowlevel driver options", you 1170f7018c21STomi Valkeinen should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed 1171f7018c21STomi Valkeinen pixel and 32 bpp packed pixel. You can also use font widths 1172f7018c21STomi Valkeinen different from 8. 1173f7018c21STomi Valkeinen 1174f7018c21STomi Valkeinen If you need support for G400 secondary head, you must say Y to 1175f7018c21STomi Valkeinen "Matrox I2C support" and "G400 second head support" right below. 1176f7018c21STomi Valkeinen G450/G550 secondary head and digital output are supported without 1177f7018c21STomi Valkeinen additional modules. 1178f7018c21STomi Valkeinen 1179f7018c21STomi Valkeinen The driver starts in monitor mode. You must use the matroxset tool 1180f7018c21STomi Valkeinen (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 1181f7018c21STomi Valkeinen swap primary and secondary head outputs, or to change output mode. 1182f7018c21STomi Valkeinen Secondary head driver always start in 640x480 resolution and you 1183f7018c21STomi Valkeinen must use fbset to change it. 1184f7018c21STomi Valkeinen 1185f7018c21STomi Valkeinen Do not forget that second head supports only 16 and 32 bpp 1186f7018c21STomi Valkeinen packed pixels, so it is a good idea to compile them into the kernel 1187f7018c21STomi Valkeinen too. You can use only some font widths, as the driver uses generic 1188f7018c21STomi Valkeinen painting procedures (the secondary head does not use acceleration 1189f7018c21STomi Valkeinen engine). 1190f7018c21STomi Valkeinen 1191f7018c21STomi Valkeinen G450/G550 hardware can display TV picture only from secondary CRTC, 1192f7018c21STomi Valkeinen and it performs no scaling, so picture must have 525 or 625 lines. 1193f7018c21STomi Valkeinen 1194f7018c21STomi Valkeinenconfig FB_MATROX_I2C 1195f7018c21STomi Valkeinen tristate "Matrox I2C support" 1196f7018c21STomi Valkeinen depends on FB_MATROX 1197f7018c21STomi Valkeinen select FB_DDC 1198a7f7f624SMasahiro Yamada help 1199f7018c21STomi Valkeinen This drivers creates I2C buses which are needed for accessing the 1200f7018c21STomi Valkeinen DDC (I2C) bus present on all Matroxes, an I2C bus which 1201f7018c21STomi Valkeinen interconnects Matrox optional devices, like MGA-TVO on G200 and 1202f7018c21STomi Valkeinen G400, and the secondary head DDC bus, present on G400 only. 1203f7018c21STomi Valkeinen 1204f7018c21STomi Valkeinen You can say Y or M here if you want to experiment with monitor 1205f7018c21STomi Valkeinen detection code. You must say Y or M here if you want to use either 1206f7018c21STomi Valkeinen second head of G400 or MGA-TVO on G200 or G400. 1207f7018c21STomi Valkeinen 1208f7018c21STomi Valkeinen If you compile it as module, it will create a module named 1209f7018c21STomi Valkeinen i2c-matroxfb. 1210f7018c21STomi Valkeinen 1211f7018c21STomi Valkeinenconfig FB_MATROX_MAVEN 1212f7018c21STomi Valkeinen tristate "G400 second head support" 1213f7018c21STomi Valkeinen depends on FB_MATROX_G && FB_MATROX_I2C 1214a7f7f624SMasahiro Yamada help 1215f7018c21STomi Valkeinen WARNING !!! This support does not work with G450 !!! 1216f7018c21STomi Valkeinen 1217f7018c21STomi Valkeinen Say Y or M here if you want to use a secondary head (meaning two 1218f7018c21STomi Valkeinen monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary 1219f7018c21STomi Valkeinen head is not compatible with accelerated XFree 3.3.x SVGA servers - 1220f7018c21STomi Valkeinen secondary head output is blanked while you are in X. With XFree 1221f7018c21STomi Valkeinen 3.9.17 preview you can use both heads if you use SVGA over fbdev or 1222f7018c21STomi Valkeinen the fbdev driver on first head and the fbdev driver on second head. 1223f7018c21STomi Valkeinen 1224f7018c21STomi Valkeinen If you compile it as module, two modules are created, 1225f7018c21STomi Valkeinen matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for 1226f7018c21STomi Valkeinen both G200 and G400, matroxfb_crtc2 is needed only by G400. You must 1227f7018c21STomi Valkeinen also load i2c-matroxfb to get it to run. 1228f7018c21STomi Valkeinen 1229f7018c21STomi Valkeinen The driver starts in monitor mode and you must use the matroxset 1230f7018c21STomi Valkeinen tool (available at 1231f7018c21STomi Valkeinen <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to 1232f7018c21STomi Valkeinen PAL or NTSC or to swap primary and secondary head outputs. 1233f7018c21STomi Valkeinen Secondary head driver also always start in 640x480 resolution, you 1234f7018c21STomi Valkeinen must use fbset to change it. 1235f7018c21STomi Valkeinen 1236f7018c21STomi Valkeinen Also do not forget that second head supports only 16 and 32 bpp 1237f7018c21STomi Valkeinen packed pixels, so it is a good idea to compile them into the kernel 1238f7018c21STomi Valkeinen too. You can use only some font widths, as the driver uses generic 1239f7018c21STomi Valkeinen painting procedures (the secondary head does not use acceleration 1240f7018c21STomi Valkeinen engine). 1241f7018c21STomi Valkeinen 1242f7018c21STomi Valkeinenconfig FB_RADEON 1243f7018c21STomi Valkeinen tristate "ATI Radeon display support" 1244f7018c21STomi Valkeinen depends on FB && PCI 1245f7018c21STomi Valkeinen select FB_BACKLIGHT if FB_RADEON_BACKLIGHT 1246f7018c21STomi Valkeinen select FB_MODE_HELPERS 1247f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1248f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1249f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1250758ddd1dSKevin Hao select FB_MACMODES if PPC 12510ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1252f7018c21STomi Valkeinen help 1253f7018c21STomi Valkeinen Choose this option if you want to use an ATI Radeon graphics card as 1254f7018c21STomi Valkeinen a framebuffer device. There are both PCI and AGP versions. You 1255f7018c21STomi Valkeinen don't need to choose this to run the Radeon in plain VGA mode. 1256f7018c21STomi Valkeinen 1257f7018c21STomi Valkeinen There is a product page at 12587c7b2a35SAlexander A. Klimov https://products.amd.com/en-us/GraphicCardResult.aspx 1259f7018c21STomi Valkeinen 1260f7018c21STomi Valkeinenconfig FB_RADEON_I2C 1261f7018c21STomi Valkeinen bool "DDC/I2C for ATI Radeon support" 1262f7018c21STomi Valkeinen depends on FB_RADEON 1263f7018c21STomi Valkeinen select FB_DDC 1264f7018c21STomi Valkeinen default y 1265f7018c21STomi Valkeinen help 1266f7018c21STomi Valkeinen Say Y here if you want DDC/I2C support for your Radeon board. 1267f7018c21STomi Valkeinen 1268f7018c21STomi Valkeinenconfig FB_RADEON_BACKLIGHT 1269f7018c21STomi Valkeinen bool "Support for backlight control" 1270f7018c21STomi Valkeinen depends on FB_RADEON 1271f7018c21STomi Valkeinen default y 1272f7018c21STomi Valkeinen help 1273f7018c21STomi Valkeinen Say Y here if you want to control the backlight of your display. 1274f7018c21STomi Valkeinen 1275f7018c21STomi Valkeinenconfig FB_RADEON_DEBUG 1276f7018c21STomi Valkeinen bool "Lots of debug output from Radeon driver" 1277f7018c21STomi Valkeinen depends on FB_RADEON 1278f7018c21STomi Valkeinen help 1279f7018c21STomi Valkeinen Say Y here if you want the Radeon driver to output all sorts 1280f7018c21STomi Valkeinen of debugging information to provide to the maintainer when 1281f7018c21STomi Valkeinen something goes wrong. 1282f7018c21STomi Valkeinen 1283f7018c21STomi Valkeinenconfig FB_ATY128 1284f7018c21STomi Valkeinen tristate "ATI Rage128 display support" 1285f7018c21STomi Valkeinen depends on FB && PCI 1286f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1287f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1288f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1289f7018c21STomi Valkeinen select FB_BACKLIGHT if FB_ATY128_BACKLIGHT 1290f7018c21STomi Valkeinen select FB_MACMODES if PPC_PMAC 12910ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1292f7018c21STomi Valkeinen help 1293f7018c21STomi Valkeinen This driver supports graphics boards with the ATI Rage128 chips. 1294f7018c21STomi Valkeinen Say Y if you have such a graphics board and read 1295ab42b818SMauro Carvalho Chehab <file:Documentation/fb/aty128fb.rst>. 1296f7018c21STomi Valkeinen 1297f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1298f7018c21STomi Valkeinen module will be called aty128fb. 1299f7018c21STomi Valkeinen 1300f7018c21STomi Valkeinenconfig FB_ATY128_BACKLIGHT 1301f7018c21STomi Valkeinen bool "Support for backlight control" 1302f7018c21STomi Valkeinen depends on FB_ATY128 1303f7018c21STomi Valkeinen default y 1304f7018c21STomi Valkeinen help 1305f7018c21STomi Valkeinen Say Y here if you want to control the backlight of your display. 1306f7018c21STomi Valkeinen 1307f7018c21STomi Valkeinenconfig FB_ATY 1308f7018c21STomi Valkeinen tristate "ATI Mach64 display support" if PCI || ATARI 1309f7018c21STomi Valkeinen depends on FB && !SPARC32 1310f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1311f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1312f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1313f7018c21STomi Valkeinen select FB_BACKLIGHT if FB_ATY_BACKLIGHT 1314f7018c21STomi Valkeinen select FB_MACMODES if PPC 1315c6c90c70SRandy Dunlap select FB_ATY_CT if SPARC64 && PCI 13160ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1317f7018c21STomi Valkeinen help 1318f7018c21STomi Valkeinen This driver supports graphics boards with the ATI Mach64 chips. 1319f7018c21STomi Valkeinen Say Y if you have such a graphics board. 1320f7018c21STomi Valkeinen 1321f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1322f7018c21STomi Valkeinen module will be called atyfb. 1323f7018c21STomi Valkeinen 1324f7018c21STomi Valkeinenconfig FB_ATY_CT 1325f7018c21STomi Valkeinen bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support" 1326f7018c21STomi Valkeinen depends on PCI && FB_ATY 1327f7018c21STomi Valkeinen help 1328f7018c21STomi Valkeinen Say Y here to support use of ATI's 64-bit Rage boards (or other 1329f7018c21STomi Valkeinen boards based on the Mach64 CT, VT, GT, and LT chipsets) as a 1330f7018c21STomi Valkeinen framebuffer device. The ATI product support page for these boards 1331f7018c21STomi Valkeinen is at <http://support.ati.com/products/pc/mach64/mach64.html>. 1332f7018c21STomi Valkeinen 1333f7018c21STomi Valkeinenconfig FB_ATY_GENERIC_LCD 1334f7018c21STomi Valkeinen bool "Mach64 generic LCD support" 1335f7018c21STomi Valkeinen depends on FB_ATY_CT 1336f7018c21STomi Valkeinen help 1337f7018c21STomi Valkeinen Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility, 1338f7018c21STomi Valkeinen Rage XC, or Rage XL chipset. 1339f7018c21STomi Valkeinen 1340f7018c21STomi Valkeinenconfig FB_ATY_GX 1341f7018c21STomi Valkeinen bool "Mach64 GX support" if PCI 1342f7018c21STomi Valkeinen depends on FB_ATY 1343f7018c21STomi Valkeinen default y if ATARI 1344f7018c21STomi Valkeinen help 1345f7018c21STomi Valkeinen Say Y here to support use of the ATI Mach64 Graphics Expression 1346f7018c21STomi Valkeinen board (or other boards based on the Mach64 GX chipset) as a 1347f7018c21STomi Valkeinen framebuffer device. The ATI product support page for these boards 1348f7018c21STomi Valkeinen is at 1349f7018c21STomi Valkeinen <http://support.ati.com/products/pc/mach64/graphics_xpression.html>. 1350f7018c21STomi Valkeinen 1351f7018c21STomi Valkeinenconfig FB_ATY_BACKLIGHT 1352f7018c21STomi Valkeinen bool "Support for backlight control" 1353f7018c21STomi Valkeinen depends on FB_ATY 1354f7018c21STomi Valkeinen default y 1355f7018c21STomi Valkeinen help 1356f7018c21STomi Valkeinen Say Y here if you want to control the backlight of your display. 1357f7018c21STomi Valkeinen 1358f7018c21STomi Valkeinenconfig FB_S3 1359f7018c21STomi Valkeinen tristate "S3 Trio/Virge support" 1360f7018c21STomi Valkeinen depends on FB && PCI 1361f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1362f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1363f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1364f7018c21STomi Valkeinen select FB_TILEBLITTING 1365f7018c21STomi Valkeinen select FB_SVGALIB 1366f7018c21STomi Valkeinen select VGASTATE 13670ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1368f7018c21STomi Valkeinen select FONT_8x16 if FRAMEBUFFER_CONSOLE 1369a7f7f624SMasahiro Yamada help 1370f7018c21STomi Valkeinen Driver for graphics boards with S3 Trio / S3 Virge chip. 1371f7018c21STomi Valkeinen 1372f7018c21STomi Valkeinenconfig FB_S3_DDC 1373f7018c21STomi Valkeinen bool "DDC for S3 support" 1374f7018c21STomi Valkeinen depends on FB_S3 1375f7018c21STomi Valkeinen select FB_DDC 1376f7018c21STomi Valkeinen default y 1377f7018c21STomi Valkeinen help 1378f7018c21STomi Valkeinen Say Y here if you want DDC support for your S3 graphics card. 1379f7018c21STomi Valkeinen 1380f7018c21STomi Valkeinenconfig FB_SAVAGE 1381f7018c21STomi Valkeinen tristate "S3 Savage support" 1382f7018c21STomi Valkeinen depends on FB && PCI 1383f7018c21STomi Valkeinen select FB_MODE_HELPERS 1384f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1385f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1386f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1387f7018c21STomi Valkeinen select VGASTATE 13880ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1389f7018c21STomi Valkeinen help 1390f7018c21STomi Valkeinen This driver supports notebooks and computers with S3 Savage PCI/AGP 1391f7018c21STomi Valkeinen chips. 1392f7018c21STomi Valkeinen 1393f7018c21STomi Valkeinen Say Y if you have such a graphics card. 1394f7018c21STomi Valkeinen 1395f7018c21STomi Valkeinen To compile this driver as a module, choose M here; the module 1396f7018c21STomi Valkeinen will be called savagefb. 1397f7018c21STomi Valkeinen 1398f7018c21STomi Valkeinenconfig FB_SAVAGE_I2C 1399f7018c21STomi Valkeinen bool "Enable DDC2 Support" 1400f7018c21STomi Valkeinen depends on FB_SAVAGE 1401f7018c21STomi Valkeinen select FB_DDC 1402f7018c21STomi Valkeinen help 1403f7018c21STomi Valkeinen This enables I2C support for S3 Savage Chipsets. This is used 1404f7018c21STomi Valkeinen only for getting EDID information from the attached display 1405f7018c21STomi Valkeinen allowing for robust video mode handling and switching. 1406f7018c21STomi Valkeinen 1407f7018c21STomi Valkeinen Because fbdev-2.6 requires that drivers must be able to 1408f7018c21STomi Valkeinen independently validate video mode parameters, you should say Y 1409f7018c21STomi Valkeinen here. 1410f7018c21STomi Valkeinen 1411f7018c21STomi Valkeinenconfig FB_SAVAGE_ACCEL 1412f7018c21STomi Valkeinen bool "Enable Console Acceleration" 1413f7018c21STomi Valkeinen depends on FB_SAVAGE 1414f7018c21STomi Valkeinen help 1415f7018c21STomi Valkeinen This option will compile in console acceleration support. If 1416f7018c21STomi Valkeinen the resulting framebuffer console has bothersome glitches, then 1417f7018c21STomi Valkeinen choose N here. 1418f7018c21STomi Valkeinen 1419f7018c21STomi Valkeinenconfig FB_SIS 1420f7018c21STomi Valkeinen tristate "SiS/XGI display support" 1421f7018c21STomi Valkeinen depends on FB && PCI 1422f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1423f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1424f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 14258b766b0fSMichal Suchanek select BOOT_VESA_SUPPORT if FB_SIS = y 14265b833feaSArnd Bergmann select FB_SIS_300 if !FB_SIS_315 14270ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1428f7018c21STomi Valkeinen help 1429f7018c21STomi Valkeinen This is the frame buffer device driver for the SiS 300, 315, 330 1430f7018c21STomi Valkeinen and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets. 14317c7b2a35SAlexander A. Klimov Specs available at <https://www.sis.com> and <http://www.xgitech.com>. 1432f7018c21STomi Valkeinen 1433f7018c21STomi Valkeinen To compile this driver as a module, choose M here; the module 1434f7018c21STomi Valkeinen will be called sisfb. 1435f7018c21STomi Valkeinen 1436f7018c21STomi Valkeinenconfig FB_SIS_300 1437f7018c21STomi Valkeinen bool "SiS 300 series support" 1438f7018c21STomi Valkeinen depends on FB_SIS 1439f7018c21STomi Valkeinen help 1440f7018c21STomi Valkeinen Say Y here to support use of the SiS 300/305, 540, 630 and 730. 1441f7018c21STomi Valkeinen 1442f7018c21STomi Valkeinenconfig FB_SIS_315 1443f7018c21STomi Valkeinen bool "SiS 315/330/340 series and XGI support" 1444f7018c21STomi Valkeinen depends on FB_SIS 1445f7018c21STomi Valkeinen help 1446f7018c21STomi Valkeinen Say Y here to support use of the SiS 315, 330 and 340 series 1447f7018c21STomi Valkeinen (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well 1448f7018c21STomi Valkeinen as XGI V3XT, V5, V8 and Z7. 1449f7018c21STomi Valkeinen 1450f7018c21STomi Valkeinenconfig FB_VIA 1451f7018c21STomi Valkeinen tristate "VIA UniChrome (Pro) and Chrome9 display support" 1452598041f3SBartlomiej Zolnierkiewicz depends on FB && PCI && GPIOLIB && I2C && (X86 || COMPILE_TEST) 1453f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1454f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1455f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1456f7018c21STomi Valkeinen select I2C_ALGOBIT 14570ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1458f7018c21STomi Valkeinen help 1459f7018c21STomi Valkeinen This is the frame buffer device driver for Graphics chips of VIA 1460f7018c21STomi Valkeinen UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/ 1461f7018c21STomi Valkeinen CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896 1462f7018c21STomi Valkeinen /P4M900,VX800) 1463f7018c21STomi Valkeinen Say Y if you have a VIA UniChrome graphics board. 1464f7018c21STomi Valkeinen 1465f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1466f7018c21STomi Valkeinen module will be called viafb. 1467f7018c21STomi Valkeinen 1468f7018c21STomi Valkeinenif FB_VIA 1469f7018c21STomi Valkeinen 1470f7018c21STomi Valkeinenconfig FB_VIA_DIRECT_PROCFS 1471f7018c21STomi Valkeinen bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)" 1472f7018c21STomi Valkeinen help 1473f7018c21STomi Valkeinen Allow direct hardware access to some output registers via procfs. 1474f7018c21STomi Valkeinen This is dangerous but may provide the only chance to get the 1475f7018c21STomi Valkeinen correct output device configuration. 1476f7018c21STomi Valkeinen Its use is strongly discouraged. 1477f7018c21STomi Valkeinen 1478f7018c21STomi Valkeinenconfig FB_VIA_X_COMPATIBILITY 1479f7018c21STomi Valkeinen bool "X server compatibility" 1480f7018c21STomi Valkeinen help 1481f7018c21STomi Valkeinen This option reduces the functionality (power saving, ...) of the 1482f7018c21STomi Valkeinen framebuffer to avoid negative impact on the OpenChrome X server. 1483f7018c21STomi Valkeinen If you use any X server other than fbdev you should enable this 1484f7018c21STomi Valkeinen otherwise it should be safe to disable it and allow using all 1485f7018c21STomi Valkeinen features. 1486f7018c21STomi Valkeinen 1487f7018c21STomi Valkeinenendif 1488f7018c21STomi Valkeinen 1489f7018c21STomi Valkeinenconfig FB_NEOMAGIC 1490f7018c21STomi Valkeinen tristate "NeoMagic display support" 1491f7018c21STomi Valkeinen depends on FB && PCI 1492f7018c21STomi Valkeinen select FB_MODE_HELPERS 1493f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1494f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1495f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1496f7018c21STomi Valkeinen select VGASTATE 14970ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1498f7018c21STomi Valkeinen help 1499f7018c21STomi Valkeinen This driver supports notebooks with NeoMagic PCI chips. 1500f7018c21STomi Valkeinen Say Y if you have such a graphics card. 1501f7018c21STomi Valkeinen 1502f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1503f7018c21STomi Valkeinen module will be called neofb. 1504f7018c21STomi Valkeinen 1505f7018c21STomi Valkeinenconfig FB_KYRO 1506f7018c21STomi Valkeinen tristate "IMG Kyro support" 1507f7018c21STomi Valkeinen depends on FB && PCI 1508f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1509f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1510f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 15110ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1512f7018c21STomi Valkeinen help 1513f7018c21STomi Valkeinen Say Y here if you have a STG4000 / Kyro / PowerVR 3 based 1514f7018c21STomi Valkeinen graphics board. 1515f7018c21STomi Valkeinen 1516f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1517f7018c21STomi Valkeinen module will be called kyrofb. 1518f7018c21STomi Valkeinen 1519f7018c21STomi Valkeinenconfig FB_3DFX 1520f7018c21STomi Valkeinen tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support" 1521f7018c21STomi Valkeinen depends on FB && PCI 1522f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1523f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1524f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1525f7018c21STomi Valkeinen select FB_MODE_HELPERS 15260ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1527f7018c21STomi Valkeinen help 1528f7018c21STomi Valkeinen This driver supports graphics boards with the 3Dfx Banshee, 1529f7018c21STomi Valkeinen Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have 1530f7018c21STomi Valkeinen such a graphics board. 1531f7018c21STomi Valkeinen 1532f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1533f7018c21STomi Valkeinen module will be called tdfxfb. 1534f7018c21STomi Valkeinen 1535f7018c21STomi Valkeinenconfig FB_3DFX_ACCEL 1536f7018c21STomi Valkeinen bool "3Dfx Acceleration functions" 1537f7018c21STomi Valkeinen depends on FB_3DFX 1538a7f7f624SMasahiro Yamada help 1539f7018c21STomi Valkeinen This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer 1540f7018c21STomi Valkeinen device driver with acceleration functions. 1541f7018c21STomi Valkeinen 1542f7018c21STomi Valkeinenconfig FB_3DFX_I2C 1543f7018c21STomi Valkeinen bool "Enable DDC/I2C support" 1544f7018c21STomi Valkeinen depends on FB_3DFX 1545f7018c21STomi Valkeinen select FB_DDC 1546f7018c21STomi Valkeinen default y 1547f7018c21STomi Valkeinen help 1548f7018c21STomi Valkeinen Say Y here if you want DDC/I2C support for your 3dfx Voodoo3. 1549f7018c21STomi Valkeinen 1550f7018c21STomi Valkeinenconfig FB_VOODOO1 1551f7018c21STomi Valkeinen tristate "3Dfx Voodoo Graphics (sst1) support" 1552f7018c21STomi Valkeinen depends on FB && PCI 1553701d2054SThomas Zimmermann depends on FB_DEVICE 1554f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1555f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1556f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 15570ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1558a7f7f624SMasahiro Yamada help 1559f7018c21STomi Valkeinen Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or 1560f7018c21STomi Valkeinen Voodoo2 (cvg) based graphics card. 1561f7018c21STomi Valkeinen 1562f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1563f7018c21STomi Valkeinen module will be called sstfb. 1564f7018c21STomi Valkeinen 1565f7018c21STomi Valkeinen WARNING: Do not use any application that uses the 3D engine 1566f7018c21STomi Valkeinen (namely glide) while using this driver. 1567ab42b818SMauro Carvalho Chehab Please read the <file:Documentation/fb/sstfb.rst> for supported 1568f7018c21STomi Valkeinen options and other important info support. 1569f7018c21STomi Valkeinen 1570f7018c21STomi Valkeinenconfig FB_VT8623 1571f7018c21STomi Valkeinen tristate "VIA VT8623 support" 1572f7018c21STomi Valkeinen depends on FB && PCI 1573f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1574f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1575f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1576f7018c21STomi Valkeinen select FB_TILEBLITTING 1577f7018c21STomi Valkeinen select FB_SVGALIB 1578f7018c21STomi Valkeinen select VGASTATE 15790ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1580f7018c21STomi Valkeinen select FONT_8x16 if FRAMEBUFFER_CONSOLE 1581a7f7f624SMasahiro Yamada help 1582f7018c21STomi Valkeinen Driver for CastleRock integrated graphics core in the 1583f7018c21STomi Valkeinen VIA VT8623 [Apollo CLE266] chipset. 1584f7018c21STomi Valkeinen 1585f7018c21STomi Valkeinenconfig FB_TRIDENT 1586f7018c21STomi Valkeinen tristate "Trident/CyberXXX/CyberBlade support" 1587f7018c21STomi Valkeinen depends on FB && PCI 1588f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1589f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1590f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 15916a5e3bd0SOndrej Zary select FB_DDC 15926a5e3bd0SOndrej Zary select FB_MODE_HELPERS 15930ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1594a7f7f624SMasahiro Yamada help 1595f7018c21STomi Valkeinen This is the frame buffer device driver for Trident PCI/AGP chipsets. 1596f7018c21STomi Valkeinen Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D 1597f7018c21STomi Valkeinen and Blade XP. 1598f7018c21STomi Valkeinen There are also integrated versions of these chips called CyberXXXX, 1599f7018c21STomi Valkeinen CyberImage or CyberBlade. These chips are mostly found in laptops 1600f7018c21STomi Valkeinen but also on some motherboards including early VIA EPIA motherboards. 1601ab42b818SMauro Carvalho Chehab For more information, read <file:Documentation/fb/tridentfb.rst> 1602f7018c21STomi Valkeinen 1603f7018c21STomi Valkeinen Say Y if you have such a graphics board. 1604f7018c21STomi Valkeinen 1605f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 1606f7018c21STomi Valkeinen module will be called tridentfb. 1607f7018c21STomi Valkeinen 1608f7018c21STomi Valkeinenconfig FB_ARK 1609f7018c21STomi Valkeinen tristate "ARK 2000PV support" 1610f7018c21STomi Valkeinen depends on FB && PCI 1611f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1612f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1613f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1614f7018c21STomi Valkeinen select FB_TILEBLITTING 1615f7018c21STomi Valkeinen select FB_SVGALIB 1616f7018c21STomi Valkeinen select VGASTATE 16170ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1618f7018c21STomi Valkeinen select FONT_8x16 if FRAMEBUFFER_CONSOLE 1619a7f7f624SMasahiro Yamada help 1620f7018c21STomi Valkeinen Driver for PCI graphics boards with ARK 2000PV chip 1621f7018c21STomi Valkeinen and ICS 5342 RAMDAC. 1622f7018c21STomi Valkeinen 1623f7018c21STomi Valkeinenconfig FB_PM3 1624f7018c21STomi Valkeinen tristate "Permedia3 support" 1625f7018c21STomi Valkeinen depends on FB && PCI 1626f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1627f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1628f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 16290ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1630f7018c21STomi Valkeinen help 1631f7018c21STomi Valkeinen This is the frame buffer device driver for the 3DLabs Permedia3 1632f7018c21STomi Valkeinen chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 & 1633f7018c21STomi Valkeinen similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000 1634f7018c21STomi Valkeinen and maybe other boards. 1635f7018c21STomi Valkeinen 1636f7018c21STomi Valkeinenconfig FB_CARMINE 1637f7018c21STomi Valkeinen tristate "Fujitsu carmine frame buffer support" 1638f7018c21STomi Valkeinen depends on FB && PCI 1639f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1640f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1641f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 16420ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1643f7018c21STomi Valkeinen help 1644f7018c21STomi Valkeinen This is the frame buffer device driver for the Fujitsu Carmine chip. 1645f7018c21STomi Valkeinen The driver provides two independent frame buffer devices. 1646f7018c21STomi Valkeinen 1647f7018c21STomi Valkeinenchoice 1648f7018c21STomi Valkeinen depends on FB_CARMINE 1649f7018c21STomi Valkeinen prompt "DRAM timing" 1650f7018c21STomi Valkeinen default FB_CARMINE_DRAM_EVAL 1651f7018c21STomi Valkeinen 1652f7018c21STomi Valkeinenconfig FB_CARMINE_DRAM_EVAL 1653f7018c21STomi Valkeinen bool "Eval board timings" 1654f7018c21STomi Valkeinen help 1655f7018c21STomi Valkeinen Use timings which work on the eval card. 1656f7018c21STomi Valkeinen 1657f7018c21STomi Valkeinenconfig CARMINE_DRAM_CUSTOM 1658f7018c21STomi Valkeinen bool "Custom board timings" 1659f7018c21STomi Valkeinen help 1660f7018c21STomi Valkeinen Use custom board timings. 1661f7018c21STomi Valkeinenendchoice 1662f7018c21STomi Valkeinen 1663f7018c21STomi Valkeinenconfig FB_AU1100 1664f7018c21STomi Valkeinen bool "Au1100 LCD Driver" 1665f7018c21STomi Valkeinen depends on (FB = y) && MIPS_ALCHEMY 1666f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1667f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1668f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1669f7018c21STomi Valkeinen help 1670f7018c21STomi Valkeinen This is the framebuffer driver for the AMD Au1100 SOC. It can drive 1671f7018c21STomi Valkeinen various panels and CRTs by passing in kernel cmd line option 1672f7018c21STomi Valkeinen au1100fb:panel=<name>. 1673f7018c21STomi Valkeinen 1674f7018c21STomi Valkeinenconfig FB_AU1200 1675f7018c21STomi Valkeinen bool "Au1200/Au1300 LCD Driver" 1676f7018c21STomi Valkeinen depends on (FB = y) && MIPS_ALCHEMY 1677f7018c21STomi Valkeinen select FB_SYS_FILLRECT 1678f7018c21STomi Valkeinen select FB_SYS_COPYAREA 1679f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1680f7018c21STomi Valkeinen select FB_SYS_FOPS 1681f7018c21STomi Valkeinen help 1682f7018c21STomi Valkeinen This is the framebuffer driver for the Au1200/Au1300 SOCs. 1683f7018c21STomi Valkeinen It can drive various panels and CRTs by passing in kernel cmd line 1684f7018c21STomi Valkeinen option au1200fb:panel=<name>. 1685f7018c21STomi Valkeinen 1686f7018c21STomi Valkeinenconfig FB_VT8500 1687f7018c21STomi Valkeinen bool "VIA VT8500 framebuffer support" 1688f7018c21STomi Valkeinen depends on (FB = y) && ARM && ARCH_VT8500 1689f7018c21STomi Valkeinen select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 1690f7018c21STomi Valkeinen select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 1691f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1692f7018c21STomi Valkeinen select FB_MODE_HELPERS 1693f7018c21STomi Valkeinen select VIDEOMODE_HELPERS 1694f7018c21STomi Valkeinen help 1695f7018c21STomi Valkeinen This is the framebuffer driver for VIA VT8500 integrated LCD 1696f7018c21STomi Valkeinen controller. 1697f7018c21STomi Valkeinen 1698f7018c21STomi Valkeinenconfig FB_WM8505 1699f7018c21STomi Valkeinen bool "Wondermedia WM8xxx-series frame buffer support" 17009e24d63bSBartlomiej Zolnierkiewicz depends on (FB = y) && HAS_IOMEM && (ARCH_VT8500 || COMPILE_TEST) 1701f7018c21STomi Valkeinen select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS) 1702f7018c21STomi Valkeinen select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS) 1703f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1704f7018c21STomi Valkeinen select FB_MODE_HELPERS 1705f7018c21STomi Valkeinen select VIDEOMODE_HELPERS 1706f7018c21STomi Valkeinen help 1707f7018c21STomi Valkeinen This is the framebuffer driver for WonderMedia WM8xxx-series 1708f7018c21STomi Valkeinen integrated LCD controller. This driver covers the WM8505, WM8650 1709f7018c21STomi Valkeinen and WM8850 SoCs. 1710f7018c21STomi Valkeinen 1711f7018c21STomi Valkeinenconfig FB_WMT_GE_ROPS 1712f7018c21STomi Valkeinen bool "VT8500/WM8xxx accelerated raster ops support" 1713f7018c21STomi Valkeinen depends on (FB = y) && (FB_VT8500 || FB_WM8505) 1714f7018c21STomi Valkeinen help 1715f7018c21STomi Valkeinen This adds support for accelerated raster operations on the 1716f7018c21STomi Valkeinen VIA VT8500 and Wondermedia 85xx series SoCs. 1717f7018c21STomi Valkeinen 1718f7018c21STomi Valkeinensource "drivers/video/fbdev/geode/Kconfig" 1719f7018c21STomi Valkeinen 1720f7018c21STomi Valkeinenconfig FB_HIT 1721f7018c21STomi Valkeinen tristate "HD64461 Frame Buffer support" 1722f7018c21STomi Valkeinen depends on FB && HD64461 1723f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1724f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1725f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1726f7018c21STomi Valkeinen help 1727f7018c21STomi Valkeinen This is the frame buffer device driver for the Hitachi HD64461 LCD 1728f7018c21STomi Valkeinen frame buffer card. 1729f7018c21STomi Valkeinen 1730f7018c21STomi Valkeinenconfig FB_PMAG_AA 173160821fecSMaciej W. Rozycki tristate "PMAG-AA TURBOchannel framebuffer support" 173260821fecSMaciej W. Rozycki depends on FB && TC 1733f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1734f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1735f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1736f7018c21STomi Valkeinen help 1737f7018c21STomi Valkeinen Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1) 1738f7018c21STomi Valkeinen used mainly in the MIPS-based DECstation series. 1739f7018c21STomi Valkeinen 1740f7018c21STomi Valkeinenconfig FB_PMAG_BA 1741f7018c21STomi Valkeinen tristate "PMAG-BA TURBOchannel framebuffer support" 1742f7018c21STomi Valkeinen depends on FB && TC 1743f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1744f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1745f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1746f7018c21STomi Valkeinen help 1747f7018c21STomi Valkeinen Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8) 1748f7018c21STomi Valkeinen used mainly in the MIPS-based DECstation series. 1749f7018c21STomi Valkeinen 1750f7018c21STomi Valkeinenconfig FB_PMAGB_B 1751f7018c21STomi Valkeinen tristate "PMAGB-B TURBOchannel framebuffer support" 1752f7018c21STomi Valkeinen depends on FB && TC 1753f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1754f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1755f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1756f7018c21STomi Valkeinen help 1757f7018c21STomi Valkeinen Support for the PMAGB-B TURBOchannel framebuffer card used mainly 1758f7018c21STomi Valkeinen in the MIPS-based DECstation series. The card is currently only 1759f7018c21STomi Valkeinen supported in 1280x1024x8 mode. 1760f7018c21STomi Valkeinen 1761f7018c21STomi Valkeinenconfig FB_MAXINE 1762f7018c21STomi Valkeinen bool "Maxine (Personal DECstation) onboard framebuffer support" 1763f7018c21STomi Valkeinen depends on (FB = y) && MACH_DECSTATION 1764f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1765f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1766f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1767f7018c21STomi Valkeinen help 1768f7018c21STomi Valkeinen Support for the onboard framebuffer (1024x768x8) in the Personal 1769f7018c21STomi Valkeinen DECstation series (Personal DECstation 5000/20, /25, /33, /50, 1770f7018c21STomi Valkeinen Codename "Maxine"). 1771f7018c21STomi Valkeinen 1772f7018c21STomi Valkeinenconfig FB_G364 1773f7018c21STomi Valkeinen bool "G364 frame buffer support" 1774f7018c21STomi Valkeinen depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700) 1775f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1776f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1777f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1778f7018c21STomi Valkeinen help 1779f7018c21STomi Valkeinen The G364 driver is the framebuffer used in MIPS Magnum 4000 and 1780f7018c21STomi Valkeinen Olivetti M700-10 systems. 1781f7018c21STomi Valkeinen 1782f7018c21STomi Valkeinenconfig FB_68328 1783f7018c21STomi Valkeinen bool "Motorola 68328 native frame buffer support" 1784f7018c21STomi Valkeinen depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328) 1785f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1786f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1787f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1788f7018c21STomi Valkeinen help 1789f7018c21STomi Valkeinen Say Y here if you want to support the built-in frame buffer of 1790f7018c21STomi Valkeinen the Motorola 68328 CPU family. 1791f7018c21STomi Valkeinen 1792f7018c21STomi Valkeinenconfig FB_PXA168 1793f7018c21STomi Valkeinen tristate "PXA168/910 LCD framebuffer support" 1794f0bab2e3SBartlomiej Zolnierkiewicz depends on FB && HAVE_CLK && HAS_IOMEM 1795f0bab2e3SBartlomiej Zolnierkiewicz depends on CPU_PXA168 || CPU_PXA910 || COMPILE_TEST 1796f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1797f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1798f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1799a7f7f624SMasahiro Yamada help 1800f7018c21STomi Valkeinen Frame buffer driver for the built-in LCD controller in the Marvell 1801f7018c21STomi Valkeinen MMP processor. 1802f7018c21STomi Valkeinen 1803f7018c21STomi Valkeinenconfig FB_PXA 1804f7018c21STomi Valkeinen tristate "PXA LCD framebuffer support" 1805f7018c21STomi Valkeinen depends on FB && ARCH_PXA 1806f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1807f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1808f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1809420a4882SRobert Jarzmik select VIDEOMODE_HELPERS if OF 1810420a4882SRobert Jarzmik select FB_MODE_HELPERS if OF 1811a7f7f624SMasahiro Yamada help 1812f7018c21STomi Valkeinen Frame buffer driver for the built-in LCD controller in the Intel 1813f7018c21STomi Valkeinen PXA2x0 processor. 1814f7018c21STomi Valkeinen 1815f7018c21STomi Valkeinen This driver is also available as a module ( = code which can be 1816f7018c21STomi Valkeinen inserted and removed from the running kernel whenever you want). The 1817f7018c21STomi Valkeinen module will be called pxafb. If you want to compile it as a module, 1818cd238effSMauro Carvalho Chehab say M here and read <file:Documentation/kbuild/modules.rst>. 1819f7018c21STomi Valkeinen 1820f7018c21STomi Valkeinen If unsure, say N. 1821f7018c21STomi Valkeinen 1822f7018c21STomi Valkeinenconfig FB_PXA_OVERLAY 1823f7018c21STomi Valkeinen bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer" 1824f7018c21STomi Valkeinen depends on FB_PXA && (PXA27x || PXA3xx) 1825f7018c21STomi Valkeinen 1826f7018c21STomi Valkeinenconfig FB_PXA_SMARTPANEL 1827f7018c21STomi Valkeinen bool "PXA Smartpanel LCD support" 1828f7018c21STomi Valkeinen depends on FB_PXA 1829f7018c21STomi Valkeinen 1830f7018c21STomi Valkeinenconfig FB_PXA_PARAMETERS 1831f7018c21STomi Valkeinen bool "PXA LCD command line parameters" 1832f7018c21STomi Valkeinen depends on FB_PXA 1833a7f7f624SMasahiro Yamada help 1834f7018c21STomi Valkeinen Enable the use of kernel command line or module parameters 1835f7018c21STomi Valkeinen to configure the physical properties of the LCD panel when 1836f7018c21STomi Valkeinen using the PXA LCD driver. 1837f7018c21STomi Valkeinen 1838f7018c21STomi Valkeinen This option allows you to override the panel parameters 1839f7018c21STomi Valkeinen supplied by the platform in order to support multiple 1840f7018c21STomi Valkeinen different models of flatpanel. If you will only be using a 1841f7018c21STomi Valkeinen single model of flatpanel then you can safely leave this 1842f7018c21STomi Valkeinen option disabled. 1843f7018c21STomi Valkeinen 1844ab42b818SMauro Carvalho Chehab <file:Documentation/fb/pxafb.rst> describes the available parameters. 1845f7018c21STomi Valkeinen 1846f7018c21STomi Valkeinenconfig PXA3XX_GCU 1847f7018c21STomi Valkeinen tristate "PXA3xx 2D graphics accelerator driver" 1848f7018c21STomi Valkeinen depends on FB_PXA 1849f7018c21STomi Valkeinen help 1850f7018c21STomi Valkeinen Kernelspace driver for the 2D graphics controller unit (GCU) 1851f7018c21STomi Valkeinen found on PXA3xx processors. There is a counterpart driver in the 1852f7018c21STomi Valkeinen DirectFB suite, see http://www.directfb.org/ 1853f7018c21STomi Valkeinen 1854f7018c21STomi Valkeinen If you compile this as a module, it will be called pxa3xx_gcu. 1855f7018c21STomi Valkeinen 1856f7018c21STomi Valkeinenconfig FB_FSL_DIU 1857f7018c21STomi Valkeinen tristate "Freescale DIU framebuffer support" 1858f7018c21STomi Valkeinen depends on FB && FSL_SOC 1859f7018c21STomi Valkeinen select FB_MODE_HELPERS 1860f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1861f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1862f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1863f7018c21STomi Valkeinen select PPC_LIB_RHEAP 1864a7f7f624SMasahiro Yamada help 1865f7018c21STomi Valkeinen Framebuffer driver for the Freescale SoC DIU 1866f7018c21STomi Valkeinen 1867f7018c21STomi Valkeinenconfig FB_SH_MOBILE_LCDC 1868f7018c21STomi Valkeinen tristate "SuperH Mobile LCDC framebuffer support" 18696df86276SBartlomiej Zolnierkiewicz depends on FB && HAVE_CLK && HAS_IOMEM 18706df86276SBartlomiej Zolnierkiewicz depends on SUPERH || ARCH_RENESAS || COMPILE_TEST 1871701d2054SThomas Zimmermann depends on FB_DEVICE 1872f7018c21STomi Valkeinen select FB_SYS_FILLRECT 1873f7018c21STomi Valkeinen select FB_SYS_COPYAREA 1874f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1875f7018c21STomi Valkeinen select FB_SYS_FOPS 1876f7018c21STomi Valkeinen select FB_DEFERRED_IO 1877f7018c21STomi Valkeinen select FB_BACKLIGHT 1878a7f7f624SMasahiro Yamada help 1879f7018c21STomi Valkeinen Frame buffer driver for the on-chip SH-Mobile LCD controller. 1880f7018c21STomi Valkeinen 1881f7018c21STomi Valkeinenconfig FB_S3C 1882f7018c21STomi Valkeinen tristate "Samsung S3C framebuffer support" 1883f10effe5SBartlomiej Zolnierkiewicz depends on FB && HAVE_CLK && HAS_IOMEM 1884f48fd50bSArnd Bergmann depends on ARCH_S3C64XX || COMPILE_TEST 1885f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1886f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1887f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1888a7f7f624SMasahiro Yamada help 1889f7018c21STomi Valkeinen Frame buffer driver for the built-in FB controller in the Samsung 1890f48fd50bSArnd Bergmann SoC line such as the S3C6400 and S3C6410. 1891f7018c21STomi Valkeinen 1892f7018c21STomi Valkeinen These chips all have the same basic framebuffer design with the 1893f48fd50bSArnd Bergmann actual capabilities depending on the chip. The S3C6400 1894f48fd50bSArnd Bergmann and S3C6410 support 4 hardware windows. 1895f7018c21STomi Valkeinen 1896f7018c21STomi Valkeinen Currently the support is only for the S3C6400 and S3C6410 SoCs. 1897f7018c21STomi Valkeinen 1898f7018c21STomi Valkeinenconfig FB_S3C_DEBUG_REGWRITE 1899f7018c21STomi Valkeinen bool "Debug register writes" 1900f7018c21STomi Valkeinen depends on FB_S3C 1901a7f7f624SMasahiro Yamada help 1902f7018c21STomi Valkeinen Show all register writes via pr_debug() 1903f7018c21STomi Valkeinen 1904f7018c21STomi Valkeinenconfig FB_SM501 1905f7018c21STomi Valkeinen tristate "Silicon Motion SM501 framebuffer support" 1906f7018c21STomi Valkeinen depends on FB && MFD_SM501 1907f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1908f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1909f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1910a7f7f624SMasahiro Yamada help 1911f7018c21STomi Valkeinen Frame buffer driver for the CRT and LCD controllers in the Silicon 1912f7018c21STomi Valkeinen Motion SM501. 1913f7018c21STomi Valkeinen 1914f7018c21STomi Valkeinen This driver is also available as a module ( = code which can be 1915f7018c21STomi Valkeinen inserted and removed from the running kernel whenever you want). The 1916f7018c21STomi Valkeinen module will be called sm501fb. If you want to compile it as a module, 1917cd238effSMauro Carvalho Chehab say M here and read <file:Documentation/kbuild/modules.rst>. 1918f7018c21STomi Valkeinen 1919f7018c21STomi Valkeinen If unsure, say N. 1920f7018c21STomi Valkeinen 1921f7018c21STomi Valkeinenconfig FB_SMSCUFX 1922f7018c21STomi Valkeinen tristate "SMSC UFX6000/7000 USB Framebuffer support" 1923f7018c21STomi Valkeinen depends on FB && USB 1924f7018c21STomi Valkeinen select FB_MODE_HELPERS 1925f7018c21STomi Valkeinen select FB_SYS_FILLRECT 1926f7018c21STomi Valkeinen select FB_SYS_COPYAREA 1927f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1928f7018c21STomi Valkeinen select FB_SYS_FOPS 1929f7018c21STomi Valkeinen select FB_DEFERRED_IO 1930a7f7f624SMasahiro Yamada help 1931f7018c21STomi Valkeinen This is a kernel framebuffer driver for SMSC UFX USB devices. 1932f7018c21STomi Valkeinen Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and 1933f7018c21STomi Valkeinen mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000 1934f7018c21STomi Valkeinen (USB 3.0) devices. 1935f7018c21STomi Valkeinen To compile as a module, choose M here: the module name is smscufx. 1936f7018c21STomi Valkeinen 1937f7018c21STomi Valkeinenconfig FB_UDL 1938f7018c21STomi Valkeinen tristate "Displaylink USB Framebuffer support" 1939f7018c21STomi Valkeinen depends on FB && USB 1940701d2054SThomas Zimmermann depends on FB_DEVICE 1941f7018c21STomi Valkeinen select FB_MODE_HELPERS 1942f7018c21STomi Valkeinen select FB_SYS_FILLRECT 1943f7018c21STomi Valkeinen select FB_SYS_COPYAREA 1944f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1945f7018c21STomi Valkeinen select FB_SYS_FOPS 1946f7018c21STomi Valkeinen select FB_DEFERRED_IO 1947a7f7f624SMasahiro Yamada help 1948f7018c21STomi Valkeinen This is a kernel framebuffer driver for DisplayLink USB devices. 1949f7018c21STomi Valkeinen Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and 1950f7018c21STomi Valkeinen mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices. 1951f7018c21STomi Valkeinen To compile as a module, choose M here: the module name is udlfb. 1952f7018c21STomi Valkeinen 1953f7018c21STomi Valkeinenconfig FB_IBM_GXT4500 1954f7018c21STomi Valkeinen tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors" 1955031e37f8SOndrej Zary depends on FB 1956f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1957f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1958f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 19590ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 1960a7f7f624SMasahiro Yamada help 1961f7018c21STomi Valkeinen Say Y here to enable support for the IBM GXT4000P/6000P and 1962f7018c21STomi Valkeinen GXT4500P/6500P display adaptor based on Raster Engine RC1000, 1963f7018c21STomi Valkeinen found on some IBM System P (pSeries) machines. This driver 1964031e37f8SOndrej Zary doesn't use Geometry Engine GT1000. This driver also supports 1965031e37f8SOndrej Zary AGP Fire GL2/3/4 cards on x86. 1966f7018c21STomi Valkeinen 1967f7018c21STomi Valkeinenconfig FB_PS3 1968f7018c21STomi Valkeinen tristate "PS3 GPU framebuffer driver" 1969f7018c21STomi Valkeinen depends on FB && PS3_PS3AV 1970f7018c21STomi Valkeinen select FB_SYS_FILLRECT 1971f7018c21STomi Valkeinen select FB_SYS_COPYAREA 1972f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 1973f7018c21STomi Valkeinen select FB_SYS_FOPS 1974a7f7f624SMasahiro Yamada help 1975f7018c21STomi Valkeinen Include support for the virtual frame buffer in the PS3 platform. 1976f7018c21STomi Valkeinen 1977f7018c21STomi Valkeinenconfig FB_PS3_DEFAULT_SIZE_M 1978f7018c21STomi Valkeinen int "PS3 default frame buffer size (in MiB)" 1979f7018c21STomi Valkeinen depends on FB_PS3 1980f7018c21STomi Valkeinen default 9 1981a7f7f624SMasahiro Yamada help 1982f7018c21STomi Valkeinen This is the default size (in MiB) of the virtual frame buffer in 1983f7018c21STomi Valkeinen the PS3. 1984f7018c21STomi Valkeinen The default value can be overridden on the kernel command line 1985f7018c21STomi Valkeinen using the "ps3fb" option (e.g. "ps3fb=9M"); 1986f7018c21STomi Valkeinen 1987f7018c21STomi Valkeinenconfig FB_XILINX 1988f7018c21STomi Valkeinen tristate "Xilinx frame buffer support" 19897ade8495SMichal Simek depends on FB && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP) 1990f7018c21STomi Valkeinen select FB_CFB_FILLRECT 1991f7018c21STomi Valkeinen select FB_CFB_COPYAREA 1992f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 1993a7f7f624SMasahiro Yamada help 1994f7018c21STomi Valkeinen Include support for the Xilinx ML300/ML403 reference design 1995f7018c21STomi Valkeinen framebuffer. ML300 carries a 640*480 LCD display on the board, 1996f7018c21STomi Valkeinen ML403 uses a standard DB15 VGA connector. 1997f7018c21STomi Valkeinen 1998f7018c21STomi Valkeinenconfig FB_GOLDFISH 1999f7018c21STomi Valkeinen tristate "Goldfish Framebuffer" 2000e9462fffSGeert Uytterhoeven depends on FB 2001e9462fffSGeert Uytterhoeven depends on GOLDFISH || COMPILE_TEST 2002f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2003f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2004f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2005a7f7f624SMasahiro Yamada help 2006f7018c21STomi Valkeinen Framebuffer driver for Goldfish Virtual Platform 2007f7018c21STomi Valkeinen 2008f7018c21STomi Valkeinenconfig FB_COBALT 2009f7018c21STomi Valkeinen tristate "Cobalt server LCD frame buffer support" 2010eb42d760SPaul Burton depends on FB && MIPS_COBALT 2011f7018c21STomi Valkeinen 2012f7018c21STomi Valkeinenconfig FB_SH7760 2013f7018c21STomi Valkeinen bool "SH7760/SH7763/SH7720/SH7721 LCDC support" 2014f7018c21STomi Valkeinen depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ 2015f7018c21STomi Valkeinen || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721) 2016f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2017f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2018f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2019a7f7f624SMasahiro Yamada help 2020f7018c21STomi Valkeinen Support for the SH7760/SH7763/SH7720/SH7721 integrated 2021f7018c21STomi Valkeinen (D)STN/TFT LCD Controller. 2022f7018c21STomi Valkeinen Supports display resolutions up to 1024x1024 pixel, grayscale and 2023f7018c21STomi Valkeinen color operation, with depths ranging from 1 bpp to 8 bpp monochrome 2024f7018c21STomi Valkeinen and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for 2025f7018c21STomi Valkeinen panels <= 320 pixel horizontal resolution. 2026f7018c21STomi Valkeinen 2027f7018c21STomi Valkeinenconfig FB_DA8XX 2028f7018c21STomi Valkeinen tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support" 2029767ceabcSBartlomiej Zolnierkiewicz depends on FB && HAVE_CLK && HAS_IOMEM 2030767ceabcSBartlomiej Zolnierkiewicz depends on ARCH_DAVINCI_DA8XX || SOC_AM33XX || COMPILE_TEST 2031f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2032f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2033f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2034f7018c21STomi Valkeinen select FB_CFB_REV_PIXELS_IN_BYTE 2035f7018c21STomi Valkeinen select FB_MODE_HELPERS 2036f7018c21STomi Valkeinen select VIDEOMODE_HELPERS 2037a7f7f624SMasahiro Yamada help 2038f7018c21STomi Valkeinen This is the frame buffer device driver for the TI LCD controller 2039f7018c21STomi Valkeinen found on DA8xx/OMAP-L1xx/AM335x SoCs. 2040f7018c21STomi Valkeinen If unsure, say N. 2041f7018c21STomi Valkeinen 2042f7018c21STomi Valkeinenconfig FB_VIRTUAL 2043f7018c21STomi Valkeinen tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)" 2044f7018c21STomi Valkeinen depends on FB 2045f7018c21STomi Valkeinen select FB_SYS_FILLRECT 2046f7018c21STomi Valkeinen select FB_SYS_COPYAREA 2047f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 2048f7018c21STomi Valkeinen select FB_SYS_FOPS 2049a7f7f624SMasahiro Yamada help 2050f7018c21STomi Valkeinen This is a `virtual' frame buffer device. It operates on a chunk of 2051f7018c21STomi Valkeinen unswappable kernel memory instead of on the memory of a graphics 2052f7018c21STomi Valkeinen board. This means you cannot see any output sent to this frame 2053f7018c21STomi Valkeinen buffer device, while it does consume precious memory. The main use 2054f7018c21STomi Valkeinen of this frame buffer device is testing and debugging the frame 2055f7018c21STomi Valkeinen buffer subsystem. Do NOT enable it for normal systems! To protect 2056f7018c21STomi Valkeinen the innocent, it has to be enabled explicitly at boot time using the 2057f7018c21STomi Valkeinen kernel option `video=vfb:'. 2058f7018c21STomi Valkeinen 2059f7018c21STomi Valkeinen To compile this driver as a module, choose M here: the 2060f7018c21STomi Valkeinen module will be called vfb. In order to load it, you must use 2061f7018c21STomi Valkeinen the vfb_enable=1 option. 2062f7018c21STomi Valkeinen 2063f7018c21STomi Valkeinen If unsure, say N. 2064f7018c21STomi Valkeinen 2065f7018c21STomi Valkeinenconfig XEN_FBDEV_FRONTEND 2066f7018c21STomi Valkeinen tristate "Xen virtual frame buffer support" 2067f7018c21STomi Valkeinen depends on FB && XEN 2068f7018c21STomi Valkeinen select FB_SYS_FILLRECT 2069f7018c21STomi Valkeinen select FB_SYS_COPYAREA 2070f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 2071f7018c21STomi Valkeinen select FB_SYS_FOPS 2072f7018c21STomi Valkeinen select FB_DEFERRED_IO 2073f7018c21STomi Valkeinen select XEN_XENBUS_FRONTEND 2074f7018c21STomi Valkeinen default y 2075f7018c21STomi Valkeinen help 2076f7018c21STomi Valkeinen This driver implements the front-end of the Xen virtual 2077f7018c21STomi Valkeinen frame buffer driver. It communicates with a back-end 2078f7018c21STomi Valkeinen in another domain. 2079f7018c21STomi Valkeinen 2080f7018c21STomi Valkeinenconfig FB_METRONOME 2081f7018c21STomi Valkeinen tristate "E-Ink Metronome/8track controller support" 2082f7018c21STomi Valkeinen depends on FB 2083*f32c2240SThomas Zimmermann select FB_SYS_HELPERS_DEFERRED 2084f7018c21STomi Valkeinen help 2085f7018c21STomi Valkeinen This driver implements support for the E-Ink Metronome 2086f7018c21STomi Valkeinen controller. The pre-release name for this device was 8track 2087f7018c21STomi Valkeinen and could also have been called by some vendors as PVI-nnnn. 2088f7018c21STomi Valkeinen 2089f7018c21STomi Valkeinenconfig FB_MB862XX 2090f7018c21STomi Valkeinen tristate "Fujitsu MB862xx GDC support" 2091f7018c21STomi Valkeinen depends on FB 2092f7018c21STomi Valkeinen depends on PCI || (OF && PPC) 2093f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2094f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2095f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 20960ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 2097a7f7f624SMasahiro Yamada help 2098f7018c21STomi Valkeinen Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers. 2099f7018c21STomi Valkeinen 2100f7018c21STomi Valkeinenchoice 2101f7018c21STomi Valkeinen prompt "GDC variant" 2102f7018c21STomi Valkeinen depends on FB_MB862XX 2103f7018c21STomi Valkeinen 2104f7018c21STomi Valkeinenconfig FB_MB862XX_PCI_GDC 2105f7018c21STomi Valkeinen bool "Carmine/Coral-P(A) GDC" 2106f7018c21STomi Valkeinen depends on PCI 2107a7f7f624SMasahiro Yamada help 2108f7018c21STomi Valkeinen This enables framebuffer support for Fujitsu Carmine/Coral-P(A) 2109f7018c21STomi Valkeinen PCI graphics controller devices. 2110f7018c21STomi Valkeinen 2111f7018c21STomi Valkeinenconfig FB_MB862XX_LIME 2112f7018c21STomi Valkeinen bool "Lime GDC" 2113f7018c21STomi Valkeinen depends on OF && PPC 2114f7018c21STomi Valkeinen select FB_FOREIGN_ENDIAN 2115f7018c21STomi Valkeinen select FB_LITTLE_ENDIAN 2116a7f7f624SMasahiro Yamada help 2117f7018c21STomi Valkeinen Framebuffer support for Fujitsu Lime GDC on host CPU bus. 2118f7018c21STomi Valkeinen 2119f7018c21STomi Valkeinenendchoice 2120f7018c21STomi Valkeinen 2121f7018c21STomi Valkeinenconfig FB_MB862XX_I2C 2122f7018c21STomi Valkeinen bool "Support I2C bus on MB862XX GDC" 2123f7018c21STomi Valkeinen depends on FB_MB862XX && I2C 2124f7200b68SArnd Bergmann depends on FB_MB862XX=m || I2C=y 2125f7018c21STomi Valkeinen default y 2126f7018c21STomi Valkeinen help 2127f7018c21STomi Valkeinen Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter 2128f7018c21STomi Valkeinen driver to support accessing I2C devices on controller's I2C bus. 2129f7018c21STomi Valkeinen These are usually some video decoder chips. 2130f7018c21STomi Valkeinen 2131f7018c21STomi Valkeinenconfig FB_EP93XX 2132f7018c21STomi Valkeinen tristate "EP93XX frame buffer support" 2133f7018c21STomi Valkeinen depends on FB && ARCH_EP93XX 2134f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2135f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2136f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2137a7f7f624SMasahiro Yamada help 2138f7018c21STomi Valkeinen Framebuffer driver for the Cirrus Logic EP93XX series of processors. 2139f7018c21STomi Valkeinen This driver is also available as a module. The module will be called 2140f7018c21STomi Valkeinen ep93xx-fb. 2141f7018c21STomi Valkeinen 2142f7018c21STomi Valkeinenconfig FB_PRE_INIT_FB 2143f7018c21STomi Valkeinen bool "Don't reinitialize, use bootloader's GDC/Display configuration" 2144f225f139SFabio Estevam depends on FB && FB_MB862XX_LIME 2145a7f7f624SMasahiro Yamada help 2146f7018c21STomi Valkeinen Select this option if display contents should be inherited as set by 2147f7018c21STomi Valkeinen the bootloader. 2148f7018c21STomi Valkeinen 2149f7018c21STomi Valkeinenconfig FB_MX3 2150f7018c21STomi Valkeinen tristate "MX3 Framebuffer support" 2151f7018c21STomi Valkeinen depends on FB && MX3_IPU 21529c8ee3c7SArnd Bergmann select BACKLIGHT_CLASS_DEVICE 2153f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2154f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2155f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2156f7018c21STomi Valkeinen default y 2157f7018c21STomi Valkeinen help 2158f7018c21STomi Valkeinen This is a framebuffer device for the i.MX31 LCD Controller. So 2159f7018c21STomi Valkeinen far only synchronous displays are supported. If you plan to use 2160f7018c21STomi Valkeinen an LCD display with your i.MX31 system, say Y here. 2161f7018c21STomi Valkeinen 2162f7018c21STomi Valkeinenconfig FB_BROADSHEET 2163f7018c21STomi Valkeinen tristate "E-Ink Broadsheet/Epson S1D13521 controller support" 2164ad4366adSJia-Ju Bai depends on FB && (ARCH_PXA || COMPILE_TEST) 21652323ebceSThomas Zimmermann select FB_SYS_HELPERS_DEFERRED 2166f7018c21STomi Valkeinen help 2167f7018c21STomi Valkeinen This driver implements support for the E-Ink Broadsheet 2168f7018c21STomi Valkeinen controller. The release name for this device was Epson S1D13521 2169f7018c21STomi Valkeinen and could also have been called by other names when coupled with 2170f7018c21STomi Valkeinen a bridge adapter. 2171f7018c21STomi Valkeinen 2172f7018c21STomi Valkeinenconfig FB_HYPERV 2173f7018c21STomi Valkeinen tristate "Microsoft Hyper-V Synthetic Video support" 2174f7018c21STomi Valkeinen depends on FB && HYPERV 2175f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2176f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2177f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2178d21987d7SWei Hu select FB_DEFERRED_IO 21793a6fb6c4SWei Hu select DMA_CMA if HAVE_DMA_CONTIGUOUS && CMA 21800ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 2181f7018c21STomi Valkeinen help 2182f7018c21STomi Valkeinen This framebuffer driver supports Microsoft Hyper-V Synthetic Video. 2183f7018c21STomi Valkeinen 2184f7018c21STomi Valkeinenconfig FB_SIMPLE 2185ec7cc3f7SArnd Bergmann tristate "Simple framebuffer support" 2186ec7cc3f7SArnd Bergmann depends on FB 2187ec7cc3f7SArnd Bergmann depends on !DRM_SIMPLEDRM 21887283f862SThomas Zimmermann select APERTURE_HELPERS 2189f7018c21STomi Valkeinen select FB_CFB_FILLRECT 2190f7018c21STomi Valkeinen select FB_CFB_COPYAREA 2191f7018c21STomi Valkeinen select FB_CFB_IMAGEBLIT 2192f7018c21STomi Valkeinen help 2193f7018c21STomi Valkeinen Say Y if you want support for a simple frame-buffer. 2194f7018c21STomi Valkeinen 2195f7018c21STomi Valkeinen This driver assumes that the display hardware has been initialized 2196f7018c21STomi Valkeinen before the kernel boots, and the kernel will simply render to the 2197f7018c21STomi Valkeinen pre-allocated frame buffer surface. 2198f7018c21STomi Valkeinen 2199f7018c21STomi Valkeinen Configuration re: surface address, size, and format must be provided 2200f7018c21STomi Valkeinen through device tree, or plain old platform data. 2201f7018c21STomi Valkeinen 2202f7018c21STomi Valkeinenconfig FB_SSD1307 2203f7018c21STomi Valkeinen tristate "Solomon SSD1307 framebuffer support" 2204f7018c21STomi Valkeinen depends on FB && I2C 220571540cfbSGeert Uytterhoeven depends on GPIOLIB || COMPILE_TEST 2206f7018c21STomi Valkeinen select FB_SYS_FOPS 2207f7018c21STomi Valkeinen select FB_SYS_FILLRECT 2208f7018c21STomi Valkeinen select FB_SYS_COPYAREA 2209f7018c21STomi Valkeinen select FB_SYS_IMAGEBLIT 2210f7018c21STomi Valkeinen select FB_DEFERRED_IO 22116ed5e2dbSThomas Niederprüm select FB_BACKLIGHT 2212f7018c21STomi Valkeinen help 2213f7018c21STomi Valkeinen This driver implements support for the Solomon SSD1307 2214f7018c21STomi Valkeinen OLED controller over I2C. 22151461d667SSudip Mukherjee 22161461d667SSudip Mukherjeeconfig FB_SM712 22171461d667SSudip Mukherjee tristate "Silicon Motion SM712 framebuffer support" 22181461d667SSudip Mukherjee depends on FB && PCI 22191461d667SSudip Mukherjee select FB_CFB_FILLRECT 22201461d667SSudip Mukherjee select FB_CFB_COPYAREA 22211461d667SSudip Mukherjee select FB_CFB_IMAGEBLIT 22220ba2fa8cSThomas Zimmermann select VIDEO_NOMODESET 22231461d667SSudip Mukherjee help 22241461d667SSudip Mukherjee Frame buffer driver for the Silicon Motion SM710, SM712, SM721 22251461d667SSudip Mukherjee and SM722 chips. 22261461d667SSudip Mukherjee 22271461d667SSudip Mukherjee This driver is also available as a module. The module will be 22281461d667SSudip Mukherjee called sm712fb. If you want to compile it as a module, say M 2229cd238effSMauro Carvalho Chehab here and read <file:Documentation/kbuild/modules.rst>. 2230aae3394eSRandy Dunlap 2231aae3394eSRandy Dunlapsource "drivers/video/fbdev/omap/Kconfig" 2232aae3394eSRandy Dunlapsource "drivers/video/fbdev/omap2/Kconfig" 2233aae3394eSRandy Dunlapsource "drivers/video/fbdev/mmp/Kconfig" 2234