Merge master.kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6
[pandora-kernel.git] / drivers / video / Kconfig
1 #
2 # Video configuration
3 #
4
5 menu "Graphics support"
6
7 source "drivers/video/backlight/Kconfig"
8
9 config FB
10         tristate "Support for frame buffer devices"
11         ---help---
12           The frame buffer device provides an abstraction for the graphics
13           hardware. It represents the frame buffer of some video hardware and
14           allows application software to access the graphics hardware through
15           a well-defined interface, so the software doesn't need to know
16           anything about the low-level (hardware register) stuff.
17
18           Frame buffer devices work identically across the different
19           architectures supported by Linux and make the implementation of
20           application programs easier and more portable; at this point, an X
21           server exists which uses the frame buffer device exclusively.
22           On several non-X86 architectures, the frame buffer device is the
23           only way to use the graphics hardware.
24
25           The device is accessed through special device nodes, usually located
26           in the /dev directory, i.e. /dev/fb*.
27
28           You need an utility program called fbset to make full use of frame
29           buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
30           and the Framebuffer-HOWTO at
31           <http://www.tahallah.demon.co.uk/programming/prog.html> for more
32           information.
33
34           Say Y here and to the driver for your graphics board below if you
35           are compiling a kernel for a non-x86 architecture.
36
37           If you are compiling for the x86 architecture, you can say Y if you
38           want to play with it, but it is not essential. Please note that
39           running graphical applications that directly touch the hardware
40           (e.g. an accelerated X server) and that are not frame buffer
41           device-aware may cause unexpected results. If unsure, say N.
42
43 config FIRMWARE_EDID
44        bool "Enable firmware EDID"
45        depends on FB
46        default n
47        ---help---
48          This enables access to the EDID transferred from the firmware.
49          On the i386, this is from the Video BIOS. Enable this if DDC/I2C
50          transfers do not work for your driver and if you are using
51          nvidiafb, i810fb or savagefb.
52
53          In general, choosing Y for this option is safe.  If you
54          experience extremely long delays while booting before you get
55          something on your display, try setting this to N.  Matrox cards in
56          combination with certain motherboards and monitors are known to
57          suffer from this problem.
58
59 config FB_DDC
60        tristate
61        depends on FB
62        select I2C_ALGOBIT
63        select I2C
64        default n
65
66 config FB_CFB_FILLRECT
67         tristate
68         depends on FB
69         default n
70         ---help---
71           Include the cfb_fillrect function for generic software rectangle
72           filling. This is used by drivers that don't provide their own
73           (accelerated) version.
74
75 config FB_CFB_COPYAREA
76         tristate
77         depends on FB
78         default n
79         ---help---
80           Include the cfb_copyarea function for generic software area copying.
81           This is used by drivers that don't provide their own (accelerated)
82           version.
83
84 config FB_CFB_IMAGEBLIT
85         tristate
86         depends on FB
87         default n
88         ---help---
89           Include the cfb_imageblit function for generic software image
90           blitting. This is used by drivers that don't provide their own
91           (accelerated) version.
92
93 config FB_SVGALIB
94         tristate
95         depends on FB
96         default n
97         ---help---
98           Common utility functions useful to fbdev drivers of VGA-based
99           cards.
100
101 config FB_MACMODES
102        tristate
103        depends on FB
104        default n
105
106 config FB_BACKLIGHT
107         bool
108         depends on FB
109         select BACKLIGHT_LCD_SUPPORT
110         select BACKLIGHT_CLASS_DEVICE
111         default n
112
113 config FB_MODE_HELPERS
114         bool "Enable Video Mode Handling Helpers"
115         depends on FB
116         default n
117         ---help---
118           This enables functions for handling video modes using the
119           Generalized Timing Formula and the EDID parser. A few drivers rely
120           on this feature such as the radeonfb, rivafb, and the i810fb. If
121           your driver does not take advantage of this feature, choosing Y will
122           just increase the kernel size by about 5K.
123
124 config FB_TILEBLITTING
125        bool "Enable Tile Blitting Support"
126        depends on FB
127        default n
128        ---help---
129          This enables tile blitting.  Tile blitting is a drawing technique
130          where the screen is divided into rectangular sections (tiles), whereas
131          the standard blitting divides the screen into pixels. Because the
132          default drawing element is a tile, drawing functions will be passed
133          parameters in terms of number of tiles instead of number of pixels.
134          For example, to draw a single character, instead of using bitmaps,
135          an index to an array of bitmaps will be used.  To clear or move a
136          rectangular section of a screen, the rectangle will be described in
137          terms of number of tiles in the x- and y-axis.
138
139          This is particularly important to one driver, matroxfb.  If
140          unsure, say N.
141
142 comment "Frambuffer hardware drivers"
143         depends on FB
144
145 config FB_CIRRUS
146         tristate "Cirrus Logic support"
147         depends on FB && (ZORRO || PCI)
148         select FB_CFB_FILLRECT
149         select FB_CFB_COPYAREA
150         select FB_CFB_IMAGEBLIT
151         ---help---
152           This enables support for Cirrus Logic GD542x/543x based boards on
153           Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
154
155           If you have a PCI-based system, this enables support for these
156           chips: GD-543x, GD-544x, GD-5480.
157
158           Please read the file <file:Documentation/fb/cirrusfb.txt>.
159
160           Say N unless you have such a graphics board or plan to get one
161           before you next recompile the kernel.
162
163 config FB_PM2
164         tristate "Permedia2 support"
165         depends on FB && ((AMIGA && BROKEN) || PCI)
166         select FB_CFB_FILLRECT
167         select FB_CFB_COPYAREA
168         select FB_CFB_IMAGEBLIT
169         help
170           This is the frame buffer device driver for the Permedia2 AGP frame
171           buffer card from ASK, aka `Graphic Blaster Exxtreme'.  There is a
172           product page at
173           <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
174
175 config FB_PM2_FIFO_DISCONNECT
176         bool "enable FIFO disconnect feature"
177         depends on FB_PM2 && PCI
178         help
179           Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
180
181 config FB_ARMCLCD
182         tristate "ARM PrimeCell PL110 support"
183         depends on FB && ARM && ARM_AMBA
184         select FB_CFB_FILLRECT
185         select FB_CFB_COPYAREA
186         select FB_CFB_IMAGEBLIT
187         help
188           This framebuffer device driver is for the ARM PrimeCell PL110
189           Colour LCD controller.  ARM PrimeCells provide the building
190           blocks for System on a Chip devices.
191
192           If you want to compile this as a module (=code which can be
193           inserted into and removed from the running kernel), say M
194           here and read <file:Documentation/modules.txt>.  The module
195           will be called amba-clcd.
196
197 choice
198
199         depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
200         prompt "LCD Panel"
201         default FB_ARMCLCD_SHARP_LQ035Q7DB02
202
203 config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
204         bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
205         help
206           This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
207           color QVGA, HRTFT panel.  The LogicPD device includes
208           an integrated HRTFT controller IC.
209           The native resolution is 240x320.
210
211 config FB_ARMCLCD_SHARP_LQ057Q3DC02
212         bool "LogicPD LCD 5.7\" QVGA"
213         help
214           This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
215           color QVGA, TFT panel.  The LogicPD device includes an
216           The native resolution is 320x240.
217
218 config FB_ARMCLCD_SHARP_LQ64D343
219         bool "LogicPD LCD 6.4\" VGA"
220         help
221           This is an implementation of the Sharp LQ64D343, a 6.4"
222           color VGA, TFT panel.  The LogicPD device includes an
223           The native resolution is 640x480.
224
225 config FB_ARMCLCD_SHARP_LQ10D368
226         bool "LogicPD LCD 10.4\" VGA"
227         help
228           This is an implementation of the Sharp LQ10D368, a 10.4"
229           color VGA, TFT panel.  The LogicPD device includes an
230           The native resolution is 640x480.
231
232
233 config FB_ARMCLCD_SHARP_LQ121S1DG41
234         bool "LogicPD LCD 12.1\" SVGA"
235         help
236           This is an implementation of the Sharp LQ121S1DG41, a 12.1"
237           color SVGA, TFT panel.  The LogicPD device includes an
238           The native resolution is 800x600.
239
240           This panel requires a clock rate may be an integer fraction
241           of the base LCDCLK frequency.  The driver will select the
242           highest frequency available that is lower than the maximum
243           allowed.  The panel may flicker if the clock rate is
244           slower than the recommended minimum.
245
246 config FB_ARMCLCD_AUO_A070VW01_WIDE
247         bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
248         help
249           This is an implementation of the AU Optronics, a 7.0"
250           WIDE Color.  The native resolution is 234x480.
251
252 config FB_ARMCLCD_HITACHI
253         bool "Hitachi Wide Screen 800x480"
254         help
255           This is an implementation of the Hitachi 800x480.
256
257 endchoice
258
259
260 config FB_ACORN
261         bool "Acorn VIDC support"
262         depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
263         select FB_CFB_FILLRECT
264         select FB_CFB_COPYAREA
265         select FB_CFB_IMAGEBLIT
266         help
267           This is the frame buffer device driver for the Acorn VIDC graphics
268           hardware found in Acorn RISC PCs and other ARM-based machines.  If
269           unsure, say N.
270
271 config FB_CLPS711X
272         bool "CLPS711X LCD support"
273         depends on (FB = y) && ARM && ARCH_CLPS711X
274         select FB_CFB_FILLRECT
275         select FB_CFB_COPYAREA
276         select FB_CFB_IMAGEBLIT
277         help
278           Say Y to enable the Framebuffer driver for the CLPS7111 and
279           EP7212 processors.
280
281 config FB_SA1100
282         bool "SA-1100 LCD support"
283         depends on (FB = y) && ARM && ARCH_SA1100
284         select FB_CFB_FILLRECT
285         select FB_CFB_COPYAREA
286         select FB_CFB_IMAGEBLIT
287         help
288           This is a framebuffer device for the SA-1100 LCD Controller.
289           See <http://www.linux-fbdev.org/> for information on framebuffer
290           devices.
291
292           If you plan to use the LCD display with your SA-1100 system, say
293           Y here.
294
295 config FB_IMX
296         tristate "Motorola i.MX LCD support"
297         depends on FB && ARM && ARCH_IMX
298         select FB_CFB_FILLRECT
299         select FB_CFB_COPYAREA
300         select FB_CFB_IMAGEBLIT
301
302 config FB_CYBER2000
303         tristate "CyberPro 2000/2010/5000 support"
304         depends on FB && PCI && (BROKEN || !SPARC64)
305         select FB_CFB_FILLRECT
306         select FB_CFB_COPYAREA
307         select FB_CFB_IMAGEBLIT
308         help
309           This enables support for the Integraphics CyberPro 20x0 and 5000
310           VGA chips used in the Rebel.com Netwinder and other machines.
311           Say Y if you have a NetWinder or a graphics card containing this
312           device, otherwise say N.
313
314 config FB_APOLLO
315         bool
316         depends on (FB = y) && APOLLO
317         default y
318         select FB_CFB_FILLRECT
319         select FB_CFB_IMAGEBLIT
320
321 config FB_Q40
322         bool
323         depends on (FB = y) && Q40
324         default y
325         select FB_CFB_FILLRECT
326         select FB_CFB_COPYAREA
327         select FB_CFB_IMAGEBLIT
328
329 config FB_AMIGA
330         tristate "Amiga native chipset support"
331         depends on FB && AMIGA
332         help
333           This is the frame buffer device driver for the builtin graphics
334           chipset found in Amigas.
335
336           To compile this driver as a module, choose M here: the
337           module will be called amifb.
338
339 config FB_AMIGA_OCS
340         bool "Amiga OCS chipset support"
341         depends on FB_AMIGA
342         help
343           This enables support for the original Agnus and Denise video chips,
344           found in the Amiga 1000 and most A500's and A2000's. If you intend
345           to run Linux on any of these systems, say Y; otherwise say N.
346
347 config FB_AMIGA_ECS
348         bool "Amiga ECS chipset support"
349         depends on FB_AMIGA
350         help
351           This enables support for the Enhanced Chip Set, found in later
352           A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
353           you intend to run Linux on any of these systems, say Y; otherwise
354           say N.
355
356 config FB_AMIGA_AGA
357         bool "Amiga AGA chipset support"
358         depends on FB_AMIGA
359         help
360           This enables support for the Advanced Graphics Architecture (also
361           known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
362           and CD32. If you intend to run Linux on any of these systems, say Y;
363           otherwise say N.
364
365 config FB_FM2
366         bool "Amiga FrameMaster II/Rainbow II support"
367         depends on (FB = y) && ZORRO
368         select FB_CFB_FILLRECT
369         select FB_CFB_COPYAREA
370         select FB_CFB_IMAGEBLIT
371         help
372           This is the frame buffer device driver for the Amiga FrameMaster
373           card from BSC (exhibited 1992 but not shipped as a CBM product).
374
375 config FB_ARC
376         tristate "Arc Monochrome LCD board support"
377         depends on FB && X86
378         select FB_CFB_FILLRECT
379         select FB_CFB_COPYAREA
380         select FB_CFB_IMAGEBLIT
381         help
382           This enables support for the Arc Monochrome LCD board. The board
383           is based on the KS-108 lcd controller and is typically a matrix
384           of 2*n chips. This driver was tested with a 128x64 panel. This
385           driver supports it for use with x86 SBCs through a 16 bit GPIO
386           interface (8 bit data, 8 bit control). If you anticipate using
387           this driver, say Y or M; otherwise say N. You must specify the
388           GPIO IO address to be used for setting control and data.
389
390 config FB_ATARI
391         bool "Atari native chipset support"
392         depends on (FB = y) && ATARI && BROKEN
393         help
394           This is the frame buffer device driver for the builtin graphics
395           chipset found in Ataris.
396
397 config FB_OF
398         bool "Open Firmware frame buffer device support"
399         depends on (FB = y) && (PPC64 || PPC_OF)
400         select FB_CFB_FILLRECT
401         select FB_CFB_COPYAREA
402         select FB_CFB_IMAGEBLIT
403         select FB_MACMODES
404         help
405           Say Y if you want support with Open Firmware for your graphics
406           board.
407
408 config FB_CONTROL
409         bool "Apple \"control\" display support"
410         depends on (FB = y) && PPC_PMAC && PPC32
411         select FB_CFB_FILLRECT
412         select FB_CFB_COPYAREA
413         select FB_CFB_IMAGEBLIT
414         select FB_MACMODES
415         help
416           This driver supports a frame buffer for the graphics adapter in the
417           Power Macintosh 7300 and others.
418
419 config FB_PLATINUM
420         bool "Apple \"platinum\" display support"
421         depends on (FB = y) && PPC_PMAC && PPC32
422         select FB_CFB_FILLRECT
423         select FB_CFB_COPYAREA
424         select FB_CFB_IMAGEBLIT
425         select FB_MACMODES
426         help
427           This driver supports a frame buffer for the "platinum" graphics
428           adapter in some Power Macintoshes.
429
430 config FB_VALKYRIE
431         bool "Apple \"valkyrie\" display support"
432         depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
433         select FB_CFB_FILLRECT
434         select FB_CFB_COPYAREA
435         select FB_CFB_IMAGEBLIT
436         select FB_MACMODES
437         help
438           This driver supports a frame buffer for the "valkyrie" graphics
439           adapter in some Power Macintoshes.
440
441 config FB_CT65550
442         bool "Chips 65550 display support"
443         depends on (FB = y) && PPC32
444         select FB_CFB_FILLRECT
445         select FB_CFB_COPYAREA
446         select FB_CFB_IMAGEBLIT
447         help
448           This is the frame buffer device driver for the Chips & Technologies
449           65550 graphics chip in PowerBooks.
450
451 config FB_ASILIANT
452         bool "Asiliant (Chips) 69000 display support"
453         depends on (FB = y) && PCI
454         select FB_CFB_FILLRECT
455         select FB_CFB_COPYAREA
456         select FB_CFB_IMAGEBLIT
457         help
458           This is the frame buffer device driver for the Asiliant 69030 chipset
459
460 config FB_IMSTT
461         bool "IMS Twin Turbo display support"
462         depends on (FB = y) && PCI
463         select FB_CFB_IMAGEBLIT
464         select FB_MACMODES if PPC
465         help
466           The IMS Twin Turbo is a PCI-based frame buffer card bundled with
467           many Macintosh and compatible computers.
468
469 config FB_VGA16
470         tristate "VGA 16-color graphics support"
471         depends on FB && (X86 || PPC)
472         select FB_CFB_FILLRECT
473         select FB_CFB_COPYAREA
474         select FB_CFB_IMAGEBLIT
475         help
476           This is the frame buffer device driver for VGA 16 color graphic
477           cards. Say Y if you have such a card.
478
479           To compile this driver as a module, choose M here: the
480           module will be called vga16fb.
481
482 config FB_STI
483         tristate "HP STI frame buffer device support"
484         depends on FB && PARISC
485         select FB_CFB_FILLRECT
486         select FB_CFB_COPYAREA
487         select FB_CFB_IMAGEBLIT
488         default y
489         ---help---
490           STI refers to the HP "Standard Text Interface" which is a set of
491           BIOS routines contained in a ROM chip in HP PA-RISC based machines.
492           Enabling this option will implement the linux framebuffer device
493           using calls to the STI BIOS routines for initialisation.
494         
495           If you enable this option, you will get a planar framebuffer device
496           /dev/fb which will work on the most common HP graphic cards of the
497           NGLE family, including the artist chips (in the 7xx and Bxxx series),
498           HCRX, HCRX24, CRX, CRX24 and VisEG series.
499
500           It is safe to enable this option, so you should probably say "Y".
501
502 config FB_MAC
503         bool "Generic Macintosh display support"
504         depends on (FB = y) && MAC
505         select FB_CFB_FILLRECT
506         select FB_CFB_COPYAREA
507         select FB_CFB_IMAGEBLIT
508         select FB_MACMODES
509
510 #      bool '  Apple DAFB display support' CONFIG_FB_DAFB
511 config FB_HP300
512         bool
513         depends on (FB = y) && HP300
514         select FB_CFB_FILLRECT
515         select FB_CFB_IMAGEBLIT
516         default y
517
518 config FB_TGA
519         tristate "TGA framebuffer support"
520         depends on FB && ALPHA
521         select FB_CFB_FILLRECT
522         select FB_CFB_COPYAREA
523         select FB_CFB_IMAGEBLIT
524         select BITREVERSE
525         help
526           This is the frame buffer device driver for generic TGA graphic
527           cards. Say Y if you have one of those.
528
529 config FB_VESA
530         bool "VESA VGA graphics support"
531         depends on (FB = y) && X86
532         select FB_CFB_FILLRECT
533         select FB_CFB_COPYAREA
534         select FB_CFB_IMAGEBLIT
535         select VIDEO_SELECT
536         help
537           This is the frame buffer device driver for generic VESA 2.0
538           compliant graphic cards. The older VESA 1.2 cards are not supported.
539           You will get a boot time penguin logo at no additional cost. Please
540           read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
541
542 config FB_IMAC
543         bool "Intel-based Macintosh Framebuffer Support"
544         depends on (FB = y) && X86 && EFI
545         select FB_CFB_FILLRECT
546         select FB_CFB_COPYAREA
547         select FB_CFB_IMAGEBLIT
548         help
549           This is the frame buffer device driver for the Intel-based Macintosh
550
551 config FB_HGA
552         tristate "Hercules mono graphics support"
553         depends on FB && X86
554         select FB_CFB_FILLRECT
555         select FB_CFB_COPYAREA
556         select FB_CFB_IMAGEBLIT
557         help
558           Say Y here if you have a Hercules mono graphics card.
559
560           To compile this driver as a module, choose M here: the
561           module will be called hgafb.
562
563           As this card technology is 15 years old, most people will answer N
564           here.
565
566 config FB_HGA_ACCEL
567         bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
568         depends on FB_HGA && EXPERIMENTAL
569         ---help---
570         This will compile the Hercules mono graphics with
571         acceleration functions.
572
573 config FB_SGIVW
574         tristate "SGI Visual Workstation framebuffer support"
575         depends on FB && X86_VISWS
576         select FB_CFB_FILLRECT
577         select FB_CFB_COPYAREA
578         select FB_CFB_IMAGEBLIT
579         help
580           SGI Visual Workstation support for framebuffer graphics.
581
582 config FB_GBE
583         bool "SGI Graphics Backend frame buffer support"
584         depends on (FB = y) && (SGI_IP32 || X86_VISWS)
585         select FB_CFB_FILLRECT
586         select FB_CFB_COPYAREA
587         select FB_CFB_IMAGEBLIT
588         help
589           This is the frame buffer device driver for SGI Graphics Backend.
590           This chip is used in SGI O2 and Visual Workstation 320/540.
591
592 config FB_GBE_MEM
593         int "Video memory size in MB"
594         depends on FB_GBE
595         default 4
596         help
597           This is the amount of memory reserved for the framebuffer,
598           which can be any value between 1MB and 8MB.
599
600 config FB_SBUS
601         bool "SBUS and UPA framebuffers"
602         depends on (FB = y) && SPARC
603         help
604           Say Y if you want support for SBUS or UPA based frame buffer device.
605
606 config FB_BW2
607         bool "BWtwo support"
608         depends on (FB = y) && (SPARC && FB_SBUS)
609         select FB_CFB_FILLRECT
610         select FB_CFB_COPYAREA
611         select FB_CFB_IMAGEBLIT
612         help
613           This is the frame buffer device driver for the BWtwo frame buffer.
614
615 config FB_CG3
616         bool "CGthree support"
617         depends on (FB = y) && (SPARC && FB_SBUS)
618         select FB_CFB_FILLRECT
619         select FB_CFB_COPYAREA
620         select FB_CFB_IMAGEBLIT
621         help
622           This is the frame buffer device driver for the CGthree frame buffer.
623
624 config FB_CG6
625         bool "CGsix (GX,TurboGX) support"
626         depends on (FB = y) && (SPARC && FB_SBUS)
627         select FB_CFB_COPYAREA
628         select FB_CFB_IMAGEBLIT
629         help
630           This is the frame buffer device driver for the CGsix (GX, TurboGX)
631           frame buffer.
632
633 config FB_PVR2
634         tristate "NEC PowerVR 2 display support"
635         depends on FB && SH_DREAMCAST
636         select FB_CFB_FILLRECT
637         select FB_CFB_COPYAREA
638         select FB_CFB_IMAGEBLIT
639         ---help---
640           Say Y here if you have a PowerVR 2 card in your box.  If you plan to
641           run linux on your Dreamcast, you will have to say Y here.
642           This driver may or may not work on other PowerVR 2 cards, but is
643           totally untested.  Use at your own risk.  If unsure, say N.
644
645           To compile this driver as a module, choose M here: the
646           module will be called pvr2fb.
647
648           You can pass several parameters to the driver at boot time or at
649           module load time.  The parameters look like "video=pvr2:XXX", where
650           the meaning of XXX can be found at the end of the main source file
651           (<file:drivers/video/pvr2fb.c>). Please see the file
652           <file:Documentation/fb/pvr2fb.txt>.
653
654 config FB_EPSON1355
655         bool "Epson 1355 framebuffer support"
656         depends on (FB = y) && (SUPERH || ARCH_CEIVA)
657         select FB_CFB_FILLRECT
658         select FB_CFB_COPYAREA
659         select FB_CFB_IMAGEBLIT
660         help
661           Build in support for the SED1355 Epson Research Embedded RAMDAC
662           LCD/CRT Controller (since redesignated as the S1D13505) as a
663           framebuffer.  Product specs at
664           <http://www.erd.epson.com/vdc/html/products.htm>.
665
666 config FB_S1D13XXX
667         tristate "Epson S1D13XXX framebuffer support"
668         depends on FB
669         select FB_CFB_FILLRECT
670         select FB_CFB_COPYAREA
671         select FB_CFB_IMAGEBLIT
672         help
673           Support for S1D13XXX framebuffer device family (currently only
674           working with S1D13806). Product specs at
675           <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
676
677 config FB_NVIDIA
678         tristate "nVidia Framebuffer Support"
679         depends on FB && PCI
680         select I2C_ALGOBIT if FB_NVIDIA_I2C
681         select I2C if FB_NVIDIA_I2C
682         select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
683         select FB_MODE_HELPERS
684         select FB_CFB_FILLRECT
685         select FB_CFB_COPYAREA
686         select FB_CFB_IMAGEBLIT
687         select BITREVERSE
688         help
689           This driver supports graphics boards with the nVidia chips, TNT
690           and newer. For very old chipsets, such as the RIVA128, then use
691           the rivafb.
692           Say Y if you have such a graphics board.
693
694           To compile this driver as a module, choose M here: the
695           module will be called nvidiafb.
696
697 config FB_NVIDIA_I2C
698        bool "Enable DDC Support"
699        depends on FB_NVIDIA
700        help
701           This enables I2C support for nVidia Chipsets.  This is used
702           only for getting EDID information from the attached display
703           allowing for robust video mode handling and switching.
704
705           Because fbdev-2.6 requires that drivers must be able to
706           independently validate video mode parameters, you should say Y
707           here.
708
709 config FB_NVIDIA_BACKLIGHT
710         bool "Support for backlight control"
711         depends on FB_NVIDIA
712         default y
713         help
714           Say Y here if you want to control the backlight of your display.
715
716 config FB_RIVA
717         tristate "nVidia Riva support"
718         depends on FB && PCI
719         select FB_DDC if FB_RIVA_I2C
720         select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
721         select FB_MODE_HELPERS
722         select FB_CFB_FILLRECT
723         select FB_CFB_COPYAREA
724         select FB_CFB_IMAGEBLIT
725         select BITREVERSE
726         help
727           This driver supports graphics boards with the nVidia Riva/Geforce
728           chips.
729           Say Y if you have such a graphics board.
730
731           To compile this driver as a module, choose M here: the
732           module will be called rivafb.
733
734 config FB_RIVA_I2C
735        bool "Enable DDC Support"
736        depends on FB_RIVA
737        help
738           This enables I2C support for nVidia Chipsets.  This is used
739           only for getting EDID information from the attached display
740           allowing for robust video mode handling and switching.
741
742           Because fbdev-2.6 requires that drivers must be able to
743           independently validate video mode parameters, you should say Y
744           here.
745
746 config FB_RIVA_DEBUG
747         bool "Lots of debug output from Riva(nVidia) driver"
748         depends on FB_RIVA
749         default n
750         help
751           Say Y here if you want the Riva driver to output all sorts
752           of debugging information to provide to the maintainer when
753           something goes wrong.
754
755 config FB_RIVA_BACKLIGHT
756         bool "Support for backlight control"
757         depends on FB_RIVA
758         default y
759         help
760           Say Y here if you want to control the backlight of your display.
761
762 config FB_I810
763         tristate "Intel 810/815 support (EXPERIMENTAL)"
764         depends on FB && EXPERIMENTAL && PCI && X86_32
765         select AGP
766         select AGP_INTEL
767         select FB_MODE_HELPERS
768         select FB_CFB_FILLRECT
769         select FB_CFB_COPYAREA
770         select FB_CFB_IMAGEBLIT
771         help
772           This driver supports the on-board graphics built in to the Intel 810 
773           and 815 chipsets.  Say Y if you have and plan to use such a board.
774
775           To compile this driver as a module, choose M here: the
776           module will be called i810fb.
777
778           For more information, please read 
779           <file:Documentation/fb/intel810.txt>
780
781 config FB_I810_GTF
782         bool "use VESA Generalized Timing Formula"
783         depends on FB_I810
784         help
785           If you say Y, then the VESA standard, Generalized Timing Formula 
786           or GTF, will be used to calculate the required video timing values
787           per video mode.  Since the GTF allows nondiscrete timings 
788           (nondiscrete being a range of values as opposed to discrete being a
789           set of values), you'll be able to use any combination of horizontal 
790           and vertical resolutions, and vertical refresh rates without having
791           to specify your own timing parameters.  This is especially useful
792           to maximize the performance of an aging display, or if you just 
793           have a display with nonstandard dimensions. A VESA compliant 
794           monitor is recommended, but can still work with non-compliant ones.
795           If you need or want this, then select this option. The timings may 
796           not be compliant with Intel's recommended values. Use at your own 
797           risk.
798
799           If you say N, the driver will revert to discrete video timings 
800           using a set recommended by Intel in their documentation.
801   
802           If unsure, say N.
803
804 config FB_I810_I2C
805         bool "Enable DDC Support"
806         depends on FB_I810 && FB_I810_GTF
807         select FB_DDC
808         help
809
810 config FB_INTEL
811         tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
812         depends on FB && EXPERIMENTAL && PCI && X86
813         select AGP
814         select AGP_INTEL
815         select I2C_ALGOBIT if FB_INTEL_I2C
816         select I2C if FB_INTEL_I2C
817         select FB_MODE_HELPERS
818         select FB_CFB_FILLRECT
819         select FB_CFB_COPYAREA
820         select FB_CFB_IMAGEBLIT
821         help
822           This driver supports the on-board graphics built in to the Intel
823           830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
824           Say Y if you have and plan to use such a board.
825
826           If you say Y here and want DDC/I2C support you must first say Y to
827           "I2C support" and "I2C bit-banging support" in the character devices
828           section.
829
830           If you say M here then "I2C support" and "I2C bit-banging support"
831           can be build either as modules or built-in.
832
833           To compile this driver as a module, choose M here: the
834           module will be called intelfb.
835
836           For more information, please read <file:Documentation/fb/intelfb.txt>
837
838 config FB_INTEL_DEBUG
839         bool "Intel driver Debug Messages"
840         depends on FB_INTEL
841         ---help---
842           Say Y here if you want the Intel driver to output all sorts
843           of debugging information to provide to the maintainer when
844           something goes wrong.
845
846 config FB_INTEL_I2C
847         bool "DDC/I2C for Intel framebuffer support"
848         depends on FB_INTEL
849         default y
850         help
851           Say Y here if you want DDC/I2C support for your on-board Intel graphics.
852
853 config FB_MATROX
854         tristate "Matrox acceleration"
855         depends on FB && PCI
856         select FB_CFB_FILLRECT
857         select FB_CFB_COPYAREA
858         select FB_CFB_IMAGEBLIT
859         select FB_TILEBLITTING
860         select FB_MACMODES if PPC_PMAC
861         ---help---
862           Say Y here if you have a Matrox Millennium, Matrox Millennium II,
863           Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
864           Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
865           Matrox G400, G450 or G550 card in your box.
866
867           To compile this driver as a module, choose M here: the
868           module will be called matroxfb.
869
870           You can pass several parameters to the driver at boot time or at
871           module load time. The parameters look like "video=matrox:XXX", and
872           are described in <file:Documentation/fb/matroxfb.txt>.
873
874 config FB_MATROX_MILLENIUM
875         bool "Millennium I/II support"
876         depends on FB_MATROX
877         help
878           Say Y here if you have a Matrox Millennium or Matrox Millennium II
879           video card. If you select "Advanced lowlevel driver options" below,
880           you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
881           packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
882           also use font widths different from 8.
883
884 config FB_MATROX_MYSTIQUE
885         bool "Mystique support"
886         depends on FB_MATROX
887         help
888           Say Y here if you have a Matrox Mystique or Matrox Mystique 220
889           video card. If you select "Advanced lowlevel driver options" below,
890           you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
891           packed pixel and 32 bpp packed pixel. You can also use font widths
892           different from 8.
893
894 config FB_MATROX_G
895         bool "G100/G200/G400/G450/G550 support"
896         depends on FB_MATROX
897         ---help---
898           Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
899           video card. If you select "Advanced lowlevel driver options", you
900           should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
901           pixel and 32 bpp packed pixel. You can also use font widths
902           different from 8.
903
904           If you need support for G400 secondary head, you must first say Y to
905           "I2C support" in the character devices section, and then to
906           "Matrox I2C support" and "G400 second head support" here in the
907           framebuffer section. G450/G550 secondary head and digital output
908           are supported without additional modules.
909
910           The driver starts in monitor mode. You must use the matroxset tool 
911           (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to 
912           swap primary and secondary head outputs, or to change output mode.  
913           Secondary head driver always start in 640x480 resolution and you 
914           must use fbset to change it.
915
916           Do not forget that second head supports only 16 and 32 bpp
917           packed pixels, so it is a good idea to compile them into the kernel
918           too. You can use only some font widths, as the driver uses generic
919           painting procedures (the secondary head does not use acceleration
920           engine).
921
922           G450/G550 hardware can display TV picture only from secondary CRTC,
923           and it performs no scaling, so picture must have 525 or 625 lines.
924
925 config FB_MATROX_I2C
926         tristate "Matrox I2C support"
927         depends on FB_MATROX && I2C
928         select I2C_ALGOBIT
929         ---help---
930           This drivers creates I2C buses which are needed for accessing the
931           DDC (I2C) bus present on all Matroxes, an I2C bus which
932           interconnects Matrox optional devices, like MGA-TVO on G200 and
933           G400, and the secondary head DDC bus, present on G400 only.
934
935           You can say Y or M here if you want to experiment with monitor
936           detection code. You must say Y or M here if you want to use either
937           second head of G400 or MGA-TVO on G200 or G400.
938
939           If you compile it as module, it will create a module named
940           i2c-matroxfb.
941
942 config FB_MATROX_MAVEN
943         tristate "G400 second head support"
944         depends on FB_MATROX_G && FB_MATROX_I2C
945         ---help---
946           WARNING !!! This support does not work with G450 !!!
947
948           Say Y or M here if you want to use a secondary head (meaning two
949           monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
950           head is not compatible with accelerated XFree 3.3.x SVGA servers -
951           secondary head output is blanked while you are in X. With XFree
952           3.9.17 preview you can use both heads if you use SVGA over fbdev or
953           the fbdev driver on first head and the fbdev driver on second head.
954
955           If you compile it as module, two modules are created,
956           matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
957           both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
958           also load i2c-matroxfb to get it to run.
959
960           The driver starts in monitor mode and you must use the matroxset
961           tool (available at
962           <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
963           PAL or NTSC or to swap primary and secondary head outputs.
964           Secondary head driver also always start in 640x480 resolution, you
965           must use fbset to change it.
966
967           Also do not forget that second head supports only 16 and 32 bpp
968           packed pixels, so it is a good idea to compile them into the kernel
969           too.  You can use only some font widths, as the driver uses generic
970           painting procedures (the secondary head does not use acceleration
971           engine).
972
973 config FB_MATROX_MULTIHEAD
974         bool "Multihead support"
975         depends on FB_MATROX
976         ---help---
977           Say Y here if you have more than one (supported) Matrox device in
978           your computer and you want to use all of them for different monitors
979           ("multihead"). If you have only one device, you should say N because
980           the driver compiled with Y is larger and a bit slower, especially on
981           ia32 (ix86).
982
983           If you said M to "Matrox unified accelerated driver" and N here, you
984           will still be able to use several Matrox devices simultaneously:
985           insert several instances of the module matroxfb into the kernel
986           with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
987           for the different Matrox devices. This method is slightly faster but
988           uses 40 KB of kernel memory per Matrox card.
989
990           There is no need for enabling 'Matrox multihead support' if you have
991           only one Matrox card in the box.
992
993 config FB_RADEON
994         tristate "ATI Radeon display support"
995         depends on FB && PCI
996         select FB_DDC if FB_RADEON_I2C
997         select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
998         select FB_MODE_HELPERS
999         select FB_CFB_FILLRECT
1000         select FB_CFB_COPYAREA
1001         select FB_CFB_IMAGEBLIT
1002         select FB_MACMODES if PPC_OF
1003         help
1004           Choose this option if you want to use an ATI Radeon graphics card as
1005           a framebuffer device.  There are both PCI and AGP versions.  You
1006           don't need to choose this to run the Radeon in plain VGA mode.
1007
1008           If you say Y here and want DDC/I2C support you must first say Y to
1009           "I2C support" and "I2C bit-banging support" in the character devices
1010           section.
1011
1012           If you say M here then "I2C support" and "I2C bit-banging support" 
1013           can be build either as modules or built-in.
1014
1015           There is a product page at
1016           http://apps.ati.com/ATIcompare/
1017
1018 config FB_RADEON_I2C
1019         bool "DDC/I2C for ATI Radeon support"
1020         depends on FB_RADEON
1021         default y
1022         help
1023           Say Y here if you want DDC/I2C support for your Radeon board. 
1024
1025 config FB_RADEON_BACKLIGHT
1026         bool "Support for backlight control"
1027         depends on FB_RADEON
1028         default y
1029         help
1030           Say Y here if you want to control the backlight of your display.
1031
1032 config FB_RADEON_DEBUG
1033         bool "Lots of debug output from Radeon driver"
1034         depends on FB_RADEON
1035         default n
1036         help
1037           Say Y here if you want the Radeon driver to output all sorts
1038           of debugging information to provide to the maintainer when
1039           something goes wrong.
1040
1041 config FB_ATY128
1042         tristate "ATI Rage128 display support"
1043         depends on FB && PCI
1044         select FB_CFB_FILLRECT
1045         select FB_CFB_COPYAREA
1046         select FB_CFB_IMAGEBLIT
1047         select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
1048         select FB_MACMODES if PPC_PMAC
1049         help
1050           This driver supports graphics boards with the ATI Rage128 chips.
1051           Say Y if you have such a graphics board and read
1052           <file:Documentation/fb/aty128fb.txt>.
1053
1054           To compile this driver as a module, choose M here: the
1055           module will be called aty128fb.
1056
1057 config FB_ATY128_BACKLIGHT
1058         bool "Support for backlight control"
1059         depends on FB_ATY128
1060         default y
1061         help
1062           Say Y here if you want to control the backlight of your display.
1063
1064 config FB_ATY
1065         tristate "ATI Mach64 display support" if PCI || ATARI
1066         depends on FB && !SPARC32
1067         select FB_CFB_FILLRECT
1068         select FB_CFB_COPYAREA
1069         select FB_CFB_IMAGEBLIT
1070         select FB_BACKLIGHT if FB_ATY_BACKLIGHT
1071         select FB_MACMODES if PPC
1072         help
1073           This driver supports graphics boards with the ATI Mach64 chips.
1074           Say Y if you have such a graphics board.
1075
1076           To compile this driver as a module, choose M here: the
1077           module will be called atyfb.
1078
1079 config FB_ATY_CT
1080         bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1081         depends on PCI && FB_ATY
1082         default y if SPARC64 && FB_PCI
1083         help
1084           Say Y here to support use of ATI's 64-bit Rage boards (or other
1085           boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1086           framebuffer device.  The ATI product support page for these boards
1087           is at <http://support.ati.com/products/pc/mach64/>.
1088
1089 config FB_ATY_GENERIC_LCD
1090         bool "Mach64 generic LCD support (EXPERIMENTAL)"
1091         depends on FB_ATY_CT
1092         help
1093           Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1094           Rage XC, or Rage XL chipset.
1095
1096 config FB_ATY_GX
1097         bool "Mach64 GX support" if PCI
1098         depends on FB_ATY
1099         default y if ATARI
1100         help
1101           Say Y here to support use of the ATI Mach64 Graphics Expression
1102           board (or other boards based on the Mach64 GX chipset) as a
1103           framebuffer device.  The ATI product support page for these boards
1104           is at
1105           <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1106
1107 config FB_ATY_BACKLIGHT
1108         bool "Support for backlight control"
1109         depends on FB_ATY
1110         default y
1111         help
1112           Say Y here if you want to control the backlight of your display.
1113
1114 config FB_S3
1115         tristate "S3 Trio/Virge support"
1116         depends on FB && PCI
1117         select FB_CFB_FILLRECT
1118         select FB_CFB_COPYAREA
1119         select FB_CFB_IMAGEBLIT
1120         select FB_TILEBLITTING
1121         select FB_SVGALIB
1122         ---help---
1123           Driver for graphics boards with S3 Trio / S3 Virge chip.
1124
1125 config FB_SAVAGE
1126         tristate "S3 Savage support"
1127         depends on FB && PCI && EXPERIMENTAL
1128         select FB_DDC if FB_SAVAGE_I2C
1129         select FB_MODE_HELPERS
1130         select FB_CFB_FILLRECT
1131         select FB_CFB_COPYAREA
1132         select FB_CFB_IMAGEBLIT
1133         help
1134           This driver supports notebooks and computers with S3 Savage PCI/AGP
1135           chips.
1136
1137           Say Y if you have such a graphics card.
1138
1139           To compile this driver as a module, choose M here; the module
1140           will be called savagefb.
1141
1142 config FB_SAVAGE_I2C
1143        bool "Enable DDC2 Support"
1144        depends on FB_SAVAGE
1145        help
1146           This enables I2C support for S3 Savage Chipsets.  This is used
1147           only for getting EDID information from the attached display
1148           allowing for robust video mode handling and switching.
1149
1150           Because fbdev-2.6 requires that drivers must be able to
1151           independently validate video mode parameters, you should say Y
1152           here.
1153
1154 config FB_SAVAGE_ACCEL
1155        bool "Enable Console Acceleration"
1156        depends on FB_SAVAGE
1157        default n
1158        help
1159           This option will compile in console acceleration support. If
1160           the resulting framebuffer console has bothersome glitches, then
1161           choose N here.
1162
1163 config FB_SIS
1164         tristate "SiS/XGI display support"
1165         depends on FB && PCI
1166         select FB_CFB_FILLRECT
1167         select FB_CFB_COPYAREA
1168         select FB_CFB_IMAGEBLIT
1169         help
1170           This is the frame buffer device driver for the SiS 300, 315, 330
1171           and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1172           Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
1173
1174           To compile this driver as a module, choose M here; the module
1175           will be called sisfb.
1176
1177 config FB_SIS_300
1178         bool "SiS 300 series support"
1179         depends on FB_SIS
1180         help
1181           Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1182
1183 config FB_SIS_315
1184         bool "SiS 315/330/340 series and XGI support"
1185         depends on FB_SIS
1186         help
1187           Say Y here to support use of the SiS 315, 330 and 340 series
1188           (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1189           as XGI V3XT, V5, V8 and Z7.
1190
1191 config FB_NEOMAGIC
1192         tristate "NeoMagic display support"
1193         depends on FB && PCI
1194         select FB_MODE_HELPERS
1195         select FB_CFB_FILLRECT
1196         select FB_CFB_COPYAREA
1197         select FB_CFB_IMAGEBLIT
1198         help
1199           This driver supports notebooks with NeoMagic PCI chips.
1200           Say Y if you have such a graphics card. 
1201
1202           To compile this driver as a module, choose M here: the
1203           module will be called neofb.
1204
1205 config FB_KYRO
1206         tristate "IMG Kyro support"
1207         depends on FB && PCI
1208         select FB_CFB_FILLRECT
1209         select FB_CFB_COPYAREA
1210         select FB_CFB_IMAGEBLIT
1211         help
1212           Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1213           graphics board.
1214
1215           To compile this driver as a module, choose M here: the
1216           module will be called kyrofb.
1217
1218 config FB_3DFX
1219         tristate "3Dfx Banshee/Voodoo3 display support"
1220         depends on FB && PCI
1221         select FB_CFB_IMAGEBLIT
1222         select FB_CFB_FILLRECT
1223         select FB_CFB_COPYAREA
1224         help
1225           This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
1226           chips. Say Y if you have such a graphics board.
1227
1228           To compile this driver as a module, choose M here: the
1229           module will be called tdfxfb.
1230
1231 config FB_3DFX_ACCEL
1232         bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
1233         depends on FB_3DFX && EXPERIMENTAL
1234         ---help---
1235         This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
1236         with acceleration functions.
1237
1238
1239 config FB_VOODOO1
1240         tristate "3Dfx Voodoo Graphics (sst1) support"
1241         depends on FB && PCI
1242         select FB_CFB_FILLRECT
1243         select FB_CFB_COPYAREA
1244         select FB_CFB_IMAGEBLIT
1245         ---help---
1246           Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or 
1247           Voodoo2 (cvg) based graphics card.
1248
1249           To compile this driver as a module, choose M here: the
1250           module will be called sstfb.
1251
1252           WARNING: Do not use any application that uses the 3D engine
1253           (namely glide) while using this driver.
1254           Please read the <file:Documentation/fb/README-sstfb.txt> for supported
1255           options and other important info  support.
1256
1257 config FB_CYBLA
1258         tristate "Cyberblade/i1 support"
1259         depends on FB && PCI && X86_32 && !64BIT
1260         select FB_CFB_IMAGEBLIT
1261         select VIDEO_SELECT
1262         ---help---
1263           This driver is supposed to support the Trident Cyberblade/i1
1264           graphics core integrated in the VIA VT8601A North Bridge,
1265           also known as VIA Apollo PLE133.
1266
1267           Status:
1268            - Developed, tested and working on EPIA 5000 and EPIA 800.
1269            - Does work reliable on all systems with CRT/LCD connected to
1270              normal VGA ports.
1271            - Should work on systems that do use the internal LCD port, but
1272              this is absolutely not tested.
1273
1274           Character imageblit, copyarea and rectangle fill are hw accelerated,
1275           ypan scrolling is used by default.
1276
1277           Please do read <file:Documentation/fb/cyblafb/*>.
1278
1279           To compile this driver as a module, choose M here: the
1280           module will be called cyblafb.
1281
1282 config FB_TRIDENT
1283         tristate "Trident support"
1284         depends on FB && PCI
1285         select FB_CFB_FILLRECT
1286         select FB_CFB_COPYAREA
1287         select FB_CFB_IMAGEBLIT
1288         ---help---
1289           This driver is supposed to support graphics boards with the
1290           Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
1291           but also on some motherboards. For more information, read
1292           <file:Documentation/fb/tridentfb.txt>
1293
1294           Cyberblade/i1 support will be removed soon, use the cyblafb driver
1295           instead.
1296
1297           Say Y if you have such a graphics board.
1298
1299
1300           To compile this driver as a module, choose M here: the
1301           module will be called tridentfb.
1302
1303 config FB_TRIDENT_ACCEL
1304         bool "Trident Acceleration functions (EXPERIMENTAL)"
1305         depends on FB_TRIDENT && EXPERIMENTAL
1306         ---help---
1307         This will compile the Trident frame buffer device with
1308         acceleration functions.
1309
1310 config FB_PM3
1311         tristate "Permedia3 support"
1312         depends on FB && PCI && BROKEN
1313         help
1314           This is the frame buffer device driver for the 3DLabs Permedia3
1315           chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1316           similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1317           and maybe other boards.
1318
1319 config FB_AU1100
1320         bool "Au1100 LCD Driver"
1321         depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y
1322
1323 config FB_AU1200
1324         bool "Au1200 LCD Driver"
1325         depends on FB && MIPS && SOC_AU1200
1326         select FB_CFB_FILLRECT
1327         select FB_CFB_COPYAREA
1328         select FB_CFB_IMAGEBLIT
1329         help
1330           This is the framebuffer driver for the AMD Au1200 SOC.  It can drive
1331           various panels and CRTs by passing in kernel cmd line option
1332           au1200fb:panel=<name>.
1333
1334 source "drivers/video/geode/Kconfig"
1335
1336 config FB_FFB
1337         bool "Creator/Creator3D/Elite3D support"
1338         depends on FB_SBUS && SPARC64
1339         select FB_CFB_COPYAREA
1340         select FB_CFB_IMAGEBLIT
1341         help
1342           This is the frame buffer device driver for the Creator, Creator3D,
1343           and Elite3D graphics boards.
1344
1345 config FB_TCX
1346         bool "TCX (SS4/SS5 only) support"
1347         depends on FB_SBUS
1348         select FB_CFB_FILLRECT
1349         select FB_CFB_COPYAREA
1350         select FB_CFB_IMAGEBLIT
1351         help
1352           This is the frame buffer device driver for the TCX 24/8bit frame
1353           buffer.
1354
1355 config FB_CG14
1356         bool "CGfourteen (SX) support"
1357         depends on FB_SBUS
1358         select FB_CFB_FILLRECT
1359         select FB_CFB_COPYAREA
1360         select FB_CFB_IMAGEBLIT
1361         help
1362           This is the frame buffer device driver for the CGfourteen frame
1363           buffer on Desktop SPARCsystems with the SX graphics option.
1364
1365 config FB_P9100
1366         bool "P9100 (Sparcbook 3 only) support"
1367         depends on FB_SBUS
1368         select FB_CFB_FILLRECT
1369         select FB_CFB_COPYAREA
1370         select FB_CFB_IMAGEBLIT
1371         help
1372           This is the frame buffer device driver for the P9100 card
1373           supported on Sparcbook 3 machines.
1374
1375 config FB_LEO
1376         bool "Leo (ZX) support"
1377         depends on FB_SBUS
1378         select FB_CFB_FILLRECT
1379         select FB_CFB_COPYAREA
1380         select FB_CFB_IMAGEBLIT
1381         help
1382           This is the frame buffer device driver for the SBUS-based Sun ZX
1383           (leo) frame buffer cards.
1384
1385 config FB_PCI
1386         bool "PCI framebuffers"
1387         depends on (FB = y) && PCI && SPARC
1388
1389 config FB_IGA
1390         bool "IGA 168x display support"
1391         depends on SPARC32 && FB_PCI
1392         select FB_CFB_FILLRECT
1393         select FB_CFB_COPYAREA
1394         select FB_CFB_IMAGEBLIT
1395         help
1396           This is the framebuffer device for the INTERGRAPHICS 1680 and
1397           successor frame buffer cards.
1398
1399 config FB_HIT
1400         tristate "HD64461 Frame Buffer support"
1401         depends on FB && HD64461
1402         select FB_CFB_FILLRECT
1403         select FB_CFB_COPYAREA
1404         select FB_CFB_IMAGEBLIT
1405         help
1406           This is the frame buffer device driver for the Hitachi HD64461 LCD
1407           frame buffer card.
1408
1409 config FB_PMAG_AA
1410         bool "PMAG-AA TURBOchannel framebuffer support"
1411         depends on (FB = y) && TC
1412         select FB_CFB_FILLRECT
1413         select FB_CFB_COPYAREA
1414         select FB_CFB_IMAGEBLIT
1415         help
1416           Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1417           used mainly in the MIPS-based DECstation series.
1418
1419 config FB_PMAG_BA
1420         tristate "PMAG-BA TURBOchannel framebuffer support"
1421         depends on FB && TC
1422         select FB_CFB_FILLRECT
1423         select FB_CFB_COPYAREA
1424         select FB_CFB_IMAGEBLIT
1425         help
1426           Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1427           used mainly in the MIPS-based DECstation series.
1428
1429 config FB_PMAGB_B
1430         tristate "PMAGB-B TURBOchannel framebuffer support"
1431         depends on TC
1432         select FB_CFB_FILLRECT
1433         select FB_CFB_COPYAREA
1434         select FB_CFB_IMAGEBLIT
1435         help
1436           Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1437           in the MIPS-based DECstation series. The card is currently only
1438           supported in 1280x1024x8 mode.
1439
1440 config FB_MAXINE
1441         bool "Maxine (Personal DECstation) onboard framebuffer support"
1442         depends on (FB = y) && MACH_DECSTATION
1443         select FB_CFB_FILLRECT
1444         select FB_CFB_COPYAREA
1445         select FB_CFB_IMAGEBLIT
1446         help
1447           Support for the onboard framebuffer (1024x768x8) in the Personal
1448           DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1449           Codename "Maxine").
1450
1451 config FB_TX3912
1452         bool "TMPTX3912/PR31700 frame buffer support"
1453         depends on (FB = y) && NINO
1454         select FB_CFB_FILLRECT
1455         select FB_CFB_COPYAREA
1456         select FB_CFB_IMAGEBLIT
1457         help
1458           The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
1459           see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
1460
1461           Say Y here to enable kernel support for the on-board framebuffer.
1462
1463 config FB_G364
1464         bool "G364 frame buffer support"
1465         depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
1466         select FB_CFB_FILLRECT
1467         select FB_CFB_COPYAREA
1468         select FB_CFB_IMAGEBLIT
1469         help
1470           The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1471           Olivetti M700-10 systems.
1472
1473 config FB_68328
1474         bool "Motorola 68328 native frame buffer support"
1475         depends on FB && (M68328 || M68EZ328 || M68VZ328)
1476         select FB_CFB_FILLRECT
1477         select FB_CFB_COPYAREA
1478         select FB_CFB_IMAGEBLIT
1479         help
1480           Say Y here if you want to support the built-in frame buffer of
1481           the Motorola 68328 CPU family.
1482
1483 config FB_PXA
1484         tristate "PXA LCD framebuffer support"
1485         depends on FB && ARCH_PXA
1486         select FB_CFB_FILLRECT
1487         select FB_CFB_COPYAREA
1488         select FB_CFB_IMAGEBLIT
1489         ---help---
1490           Frame buffer driver for the built-in LCD controller in the Intel
1491           PXA2x0 processor.
1492
1493           This driver is also available as a module ( = code which can be
1494           inserted and removed from the running kernel whenever you want). The
1495           module will be called pxafb. If you want to compile it as a module,
1496           say M here and read <file:Documentation/modules.txt>.
1497
1498           If unsure, say N.
1499
1500 config FB_PXA_PARAMETERS
1501         bool "PXA LCD command line parameters"
1502         default n
1503         depends on FB_PXA
1504         ---help---
1505           Enable the use of kernel command line or module parameters
1506           to configure the physical properties of the LCD panel when
1507           using the PXA LCD driver.
1508
1509           This option allows you to override the panel parameters
1510           supplied by the platform in order to support multiple
1511           different models of flatpanel. If you will only be using a
1512           single model of flatpanel then you can safely leave this
1513           option disabled.
1514
1515           <file:Documentation/fb/pxafb.txt> describes the available parameters.
1516
1517 config FB_MBX
1518         tristate "2700G LCD framebuffer support"
1519         depends on FB && ARCH_PXA
1520         select FB_CFB_FILLRECT
1521         select FB_CFB_COPYAREA
1522         select FB_CFB_IMAGEBLIT
1523         ---help---
1524           Framebuffer driver for the Intel 2700G (Marathon) Graphics
1525           Accelerator
1526
1527 config FB_MBX_DEBUG
1528        bool "Enable debugging info via debugfs"
1529        depends on FB_MBX && DEBUG_FS
1530        default n
1531        ---help---
1532          Enable this if you want debugging information using the debug
1533          filesystem (debugfs)
1534
1535          If unsure, say N.
1536
1537 config FB_W100
1538         tristate "W100 frame buffer support"
1539         depends on FB && PXA_SHARPSL
1540         select FB_CFB_FILLRECT
1541         select FB_CFB_COPYAREA
1542         select FB_CFB_IMAGEBLIT
1543         ---help---
1544           Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
1545
1546           This driver is also available as a module ( = code which can be
1547           inserted and removed from the running kernel whenever you want). The
1548           module will be called w100fb. If you want to compile it as a module,
1549           say M here and read <file:Documentation/modules.txt>.
1550
1551           If unsure, say N.
1552
1553 config FB_S3C2410
1554         tristate "S3C2410 LCD framebuffer support"
1555         depends on FB && ARCH_S3C2410
1556         select FB_CFB_FILLRECT
1557         select FB_CFB_COPYAREA
1558         select FB_CFB_IMAGEBLIT
1559         ---help---
1560           Frame buffer driver for the built-in LCD controller in the Samsung
1561           S3C2410 processor.
1562
1563           This driver is also available as a module ( = code which can be
1564           inserted and removed from the running kernel whenever you want). The
1565           module will be called s3c2410fb. If you want to compile it as a module,
1566           say M here and read <file:Documentation/modules.txt>.
1567
1568           If unsure, say N.
1569 config FB_S3C2410_DEBUG
1570         bool "S3C2410 lcd debug messages"
1571         depends on FB_S3C2410
1572         help
1573           Turn on debugging messages. Note that you can set/unset at run time
1574           through sysfs
1575
1576 config FB_SM501
1577         tristate "Silicon Motion SM501 framebuffer support"
1578         depends on FB && MFD_SM501
1579         select FB_CFB_FILLRECT
1580         select FB_CFB_COPYAREA
1581         select FB_CFB_IMAGEBLIT
1582         ---help---
1583           Frame buffer driver for the CRT and LCD controllers in the Silicon
1584           Motion SM501.
1585
1586           This driver is also available as a module ( = code which can be
1587           inserted and removed from the running kernel whenever you want). The
1588           module will be called sm501fb. If you want to compile it as a module,
1589           say M here and read <file:Documentation/modules.txt>.
1590
1591           If unsure, say N.
1592
1593
1594 config FB_PNX4008_DUM
1595         tristate "Display Update Module support on Philips PNX4008 board"
1596         depends on FB && ARCH_PNX4008
1597         ---help---
1598           Say Y here to enable support for PNX4008 Display Update Module (DUM)
1599
1600 config FB_PNX4008_DUM_RGB
1601         tristate "RGB Framebuffer support on Philips PNX4008 board"
1602         depends on FB_PNX4008_DUM
1603         select FB_CFB_FILLRECT
1604         select FB_CFB_COPYAREA
1605         select FB_CFB_IMAGEBLIT
1606         ---help---
1607           Say Y here to enable support for PNX4008 RGB Framebuffer
1608
1609 config FB_IBM_GXT4500
1610         tristate "Framebuffer support for IBM GXT4500P adaptor"
1611         depends on PPC
1612         select FB_CFB_FILLRECT
1613         select FB_CFB_COPYAREA
1614         select FB_CFB_IMAGEBLIT
1615         ---help---
1616           Say Y here to enable support for the IBM GXT4500P display
1617           adaptor, found on some IBM System P (pSeries) machines.
1618
1619 config FB_PS3
1620         bool "PS3 GPU framebuffer driver"
1621         depends on FB && PPC_PS3
1622         select PS3_PS3AV
1623         select FB_CFB_FILLRECT
1624         select FB_CFB_COPYAREA
1625         select FB_CFB_IMAGEBLIT
1626         ---help---
1627           Include support for the virtual frame buffer in the PS3 platform.
1628
1629 config FB_PS3_DEFAULT_SIZE_M
1630         int "PS3 default frame buffer size (in MiB)"
1631         depends on FB_PS3
1632         default 18
1633         ---help---
1634           This is the default size (in MiB) of the virtual frame buffer in
1635           the PS3.
1636           The default value can be overridden on the kernel command line
1637           using the "ps3fb" option (e.g. "ps3fb=9M");
1638
1639 config FB_VIRTUAL
1640         tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
1641         depends on FB
1642         select FB_CFB_FILLRECT
1643         select FB_CFB_COPYAREA
1644         select FB_CFB_IMAGEBLIT
1645         ---help---
1646           This is a `virtual' frame buffer device. It operates on a chunk of
1647           unswappable kernel memory instead of on the memory of a graphics
1648           board. This means you cannot see any output sent to this frame
1649           buffer device, while it does consume precious memory. The main use
1650           of this frame buffer device is testing and debugging the frame
1651           buffer subsystem. Do NOT enable it for normal systems! To protect
1652           the innocent, it has to be enabled explicitly at boot time using the
1653           kernel option `video=vfb:'.
1654
1655           To compile this driver as a module, choose M here: the
1656           module will be called vfb. In order to load it, you must use
1657           the vfb_enable=1 option.
1658
1659           If unsure, say N.
1660
1661 if VT
1662         source "drivers/video/console/Kconfig"
1663 endif
1664
1665 if FB || SGI_NEWPORT_CONSOLE
1666         source "drivers/video/logo/Kconfig"
1667 endif
1668
1669 endmenu
1670