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