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