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