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