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