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