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