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