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