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