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