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