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