blob: cc4b60f899ca7209eff8e352a5e3f4dbeda62f2e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Randy Dunlap179b0252007-10-16 01:29:39 -07008source "drivers/char/agp/Kconfig"
9
10source "drivers/char/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070011
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070012config VGASTATE
13 tristate
14 default n
15
Luming Yu23b0f012007-05-09 21:07:05 +080016config VIDEO_OUTPUT_CONTROL
17 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080018 help
19 This framework adds support for low-level control of the video
20 output switch.
21
Randy Dunlap179b0252007-10-16 01:29:39 -070022menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 tristate "Support for frame buffer devices"
24 ---help---
25 The frame buffer device provides an abstraction for the graphics
26 hardware. It represents the frame buffer of some video hardware and
27 allows application software to access the graphics hardware through
28 a well-defined interface, so the software doesn't need to know
29 anything about the low-level (hardware register) stuff.
30
31 Frame buffer devices work identically across the different
32 architectures supported by Linux and make the implementation of
33 application programs easier and more portable; at this point, an X
34 server exists which uses the frame buffer device exclusively.
35 On several non-X86 architectures, the frame buffer device is the
36 only way to use the graphics hardware.
37
38 The device is accessed through special device nodes, usually located
39 in the /dev directory, i.e. /dev/fb*.
40
41 You need an utility program called fbset to make full use of frame
42 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
43 and the Framebuffer-HOWTO at
44 <http://www.tahallah.demon.co.uk/programming/prog.html> for more
45 information.
46
47 Say Y here and to the driver for your graphics board below if you
48 are compiling a kernel for a non-x86 architecture.
49
50 If you are compiling for the x86 architecture, you can say Y if you
51 want to play with it, but it is not essential. Please note that
52 running graphical applications that directly touch the hardware
53 (e.g. an accelerated X server) and that are not frame buffer
54 device-aware may cause unexpected results. If unsure, say N.
55
James Simmonse0e34ef2007-02-10 14:15:43 +000056config FIRMWARE_EDID
57 bool "Enable firmware EDID"
58 depends on FB
59 default n
60 ---help---
61 This enables access to the EDID transferred from the firmware.
62 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
63 transfers do not work for your driver and if you are using
64 nvidiafb, i810fb or savagefb.
65
66 In general, choosing Y for this option is safe. If you
67 experience extremely long delays while booting before you get
68 something on your display, try setting this to N. Matrox cards in
69 combination with certain motherboards and monitors are known to
70 suffer from this problem.
71
Dennis Munsiefc5891c2006-10-03 01:14:42 -070072config FB_DDC
73 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000074 depends on FB
75 select I2C_ALGOBIT
76 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070077 default n
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079config FB_CFB_FILLRECT
80 tristate
81 depends on FB
82 default n
83 ---help---
84 Include the cfb_fillrect function for generic software rectangle
85 filling. This is used by drivers that don't provide their own
86 (accelerated) version.
87
88config FB_CFB_COPYAREA
89 tristate
90 depends on FB
91 default n
92 ---help---
93 Include the cfb_copyarea function for generic software area copying.
94 This is used by drivers that don't provide their own (accelerated)
95 version.
96
97config FB_CFB_IMAGEBLIT
98 tristate
99 depends on FB
100 default n
101 ---help---
102 Include the cfb_imageblit function for generic software image
103 blitting. This is used by drivers that don't provide their own
104 (accelerated) version.
105
Pavel Pisa779121e2007-10-16 01:29:21 -0700106config FB_CFB_REV_PIXELS_IN_BYTE
107 bool
108 depends on FB
109 default n
110 ---help---
111 Allow generic frame-buffer functions to work on displays with 1, 2
112 and 4 bits per pixel depths which has opposite order of pixels in
113 byte order to bytes in long order.
114
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700115config FB_SYS_FILLRECT
116 tristate
117 depends on FB
118 default n
119 ---help---
120 Include the sys_fillrect function for generic software rectangle
121 filling. This is used by drivers that don't provide their own
122 (accelerated) version and the framebuffer is in system RAM.
123
124config FB_SYS_COPYAREA
125 tristate
126 depends on FB
127 default n
128 ---help---
129 Include the sys_copyarea function for generic software area copying.
130 This is used by drivers that don't provide their own (accelerated)
131 version and the framebuffer is in system RAM.
132
133config FB_SYS_IMAGEBLIT
134 tristate
135 depends on FB
136 default n
137 ---help---
138 Include the sys_imageblit function for generic software image
139 blitting. This is used by drivers that don't provide their own
140 (accelerated) version and the framebuffer is in system RAM.
141
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700142config FB_SYS_FOPS
143 tristate
144 depends on FB
145 default n
146
Jaya Kumar60b59be2007-05-08 00:37:37 -0700147config FB_DEFERRED_IO
148 bool
149 depends on FB
150 default y
151
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800152config FB_SVGALIB
153 tristate
154 depends on FB
155 default n
156 ---help---
157 Common utility functions useful to fbdev drivers of VGA-based
158 cards.
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160config FB_MACMODES
161 tristate
162 depends on FB
163 default n
164
Michael Hanselmann5474c122006-06-25 05:47:08 -0700165config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700166 bool
167 depends on FB
168 select BACKLIGHT_LCD_SUPPORT
169 select BACKLIGHT_CLASS_DEVICE
170 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172config FB_MODE_HELPERS
173 bool "Enable Video Mode Handling Helpers"
174 depends on FB
175 default n
176 ---help---
177 This enables functions for handling video modes using the
178 Generalized Timing Formula and the EDID parser. A few drivers rely
179 on this feature such as the radeonfb, rivafb, and the i810fb. If
180 your driver does not take advantage of this feature, choosing Y will
181 just increase the kernel size by about 5K.
182
183config FB_TILEBLITTING
184 bool "Enable Tile Blitting Support"
185 depends on FB
186 default n
187 ---help---
188 This enables tile blitting. Tile blitting is a drawing technique
189 where the screen is divided into rectangular sections (tiles), whereas
190 the standard blitting divides the screen into pixels. Because the
191 default drawing element is a tile, drawing functions will be passed
192 parameters in terms of number of tiles instead of number of pixels.
193 For example, to draw a single character, instead of using bitmaps,
194 an index to an array of bitmaps will be used. To clear or move a
195 rectangular section of a screen, the rectangle will be described in
196 terms of number of tiles in the x- and y-axis.
197
198 This is particularly important to one driver, matroxfb. If
199 unsure, say N.
200
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700201comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000202 depends on FB
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204config FB_CIRRUS
205 tristate "Cirrus Logic support"
206 depends on FB && (ZORRO || PCI)
207 select FB_CFB_FILLRECT
208 select FB_CFB_COPYAREA
209 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 ---help---
211 This enables support for Cirrus Logic GD542x/543x based boards on
212 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
213
214 If you have a PCI-based system, this enables support for these
215 chips: GD-543x, GD-544x, GD-5480.
216
217 Please read the file <file:Documentation/fb/cirrusfb.txt>.
218
219 Say N unless you have such a graphics board or plan to get one
220 before you next recompile the kernel.
221
222config FB_PM2
223 tristate "Permedia2 support"
224 depends on FB && ((AMIGA && BROKEN) || PCI)
225 select FB_CFB_FILLRECT
226 select FB_CFB_COPYAREA
227 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 help
229 This is the frame buffer device driver for the Permedia2 AGP frame
230 buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
231 product page at
232 <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
233
234config FB_PM2_FIFO_DISCONNECT
235 bool "enable FIFO disconnect feature"
236 depends on FB_PM2 && PCI
237 help
238 Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
239
240config FB_ARMCLCD
241 tristate "ARM PrimeCell PL110 support"
242 depends on FB && ARM && ARM_AMBA
243 select FB_CFB_FILLRECT
244 select FB_CFB_COPYAREA
245 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 help
247 This framebuffer device driver is for the ARM PrimeCell PL110
248 Colour LCD controller. ARM PrimeCells provide the building
249 blocks for System on a Chip devices.
250
251 If you want to compile this as a module (=code which can be
252 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500253 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 will be called amba-clcd.
255
Marc Singer903e2bb2006-05-16 11:41:30 +0100256choice
257
258 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
259 prompt "LCD Panel"
260 default FB_ARMCLCD_SHARP_LQ035Q7DB02
261
262config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
263 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
264 help
265 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200266 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100267 an integrated HRTFT controller IC.
268 The native resolution is 240x320.
269
270config FB_ARMCLCD_SHARP_LQ057Q3DC02
271 bool "LogicPD LCD 5.7\" QVGA"
272 help
273 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
274 color QVGA, TFT panel. The LogicPD device includes an
275 The native resolution is 320x240.
276
277config FB_ARMCLCD_SHARP_LQ64D343
278 bool "LogicPD LCD 6.4\" VGA"
279 help
280 This is an implementation of the Sharp LQ64D343, a 6.4"
281 color VGA, TFT panel. The LogicPD device includes an
282 The native resolution is 640x480.
283
284config FB_ARMCLCD_SHARP_LQ10D368
285 bool "LogicPD LCD 10.4\" VGA"
286 help
287 This is an implementation of the Sharp LQ10D368, a 10.4"
288 color VGA, TFT panel. The LogicPD device includes an
289 The native resolution is 640x480.
290
291
292config FB_ARMCLCD_SHARP_LQ121S1DG41
293 bool "LogicPD LCD 12.1\" SVGA"
294 help
295 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
296 color SVGA, TFT panel. The LogicPD device includes an
297 The native resolution is 800x600.
298
299 This panel requires a clock rate may be an integer fraction
300 of the base LCDCLK frequency. The driver will select the
301 highest frequency available that is lower than the maximum
302 allowed. The panel may flicker if the clock rate is
303 slower than the recommended minimum.
304
305config FB_ARMCLCD_AUO_A070VW01_WIDE
306 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
307 help
308 This is an implementation of the AU Optronics, a 7.0"
309 WIDE Color. The native resolution is 234x480.
310
311config FB_ARMCLCD_HITACHI
312 bool "Hitachi Wide Screen 800x480"
313 help
314 This is an implementation of the Hitachi 800x480.
315
316endchoice
317
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319config FB_ACORN
320 bool "Acorn VIDC support"
321 depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
322 select FB_CFB_FILLRECT
323 select FB_CFB_COPYAREA
324 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 help
326 This is the frame buffer device driver for the Acorn VIDC graphics
327 hardware found in Acorn RISC PCs and other ARM-based machines. If
328 unsure, say N.
329
330config FB_CLPS711X
331 bool "CLPS711X LCD support"
332 depends on (FB = y) && ARM && ARCH_CLPS711X
333 select FB_CFB_FILLRECT
334 select FB_CFB_COPYAREA
335 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800336 help
337 Say Y to enable the Framebuffer driver for the CLPS7111 and
338 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340config FB_SA1100
341 bool "SA-1100 LCD support"
342 depends on (FB = y) && ARM && ARCH_SA1100
343 select FB_CFB_FILLRECT
344 select FB_CFB_COPYAREA
345 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 help
347 This is a framebuffer device for the SA-1100 LCD Controller.
348 See <http://www.linux-fbdev.org/> for information on framebuffer
349 devices.
350
351 If you plan to use the LCD display with your SA-1100 system, say
352 Y here.
353
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700354config FB_IMX
355 tristate "Motorola i.MX LCD support"
356 depends on FB && ARM && ARCH_IMX
357 select FB_CFB_FILLRECT
358 select FB_CFB_COPYAREA
359 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361config FB_CYBER2000
362 tristate "CyberPro 2000/2010/5000 support"
363 depends on FB && PCI && (BROKEN || !SPARC64)
364 select FB_CFB_FILLRECT
365 select FB_CFB_COPYAREA
366 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 help
368 This enables support for the Integraphics CyberPro 20x0 and 5000
369 VGA chips used in the Rebel.com Netwinder and other machines.
370 Say Y if you have a NetWinder or a graphics card containing this
371 device, otherwise say N.
372
373config FB_APOLLO
374 bool
375 depends on (FB = y) && APOLLO
376 default y
377 select FB_CFB_FILLRECT
378 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380config FB_Q40
381 bool
382 depends on (FB = y) && Q40
383 default y
384 select FB_CFB_FILLRECT
385 select FB_CFB_COPYAREA
386 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388config FB_AMIGA
389 tristate "Amiga native chipset support"
390 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 help
392 This is the frame buffer device driver for the builtin graphics
393 chipset found in Amigas.
394
395 To compile this driver as a module, choose M here: the
396 module will be called amifb.
397
398config FB_AMIGA_OCS
399 bool "Amiga OCS chipset support"
400 depends on FB_AMIGA
401 help
402 This enables support for the original Agnus and Denise video chips,
403 found in the Amiga 1000 and most A500's and A2000's. If you intend
404 to run Linux on any of these systems, say Y; otherwise say N.
405
406config FB_AMIGA_ECS
407 bool "Amiga ECS chipset support"
408 depends on FB_AMIGA
409 help
410 This enables support for the Enhanced Chip Set, found in later
411 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
412 you intend to run Linux on any of these systems, say Y; otherwise
413 say N.
414
415config FB_AMIGA_AGA
416 bool "Amiga AGA chipset support"
417 depends on FB_AMIGA
418 help
419 This enables support for the Advanced Graphics Architecture (also
420 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
421 and CD32. If you intend to run Linux on any of these systems, say Y;
422 otherwise say N.
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424config FB_FM2
425 bool "Amiga FrameMaster II/Rainbow II support"
426 depends on (FB = y) && ZORRO
427 select FB_CFB_FILLRECT
428 select FB_CFB_COPYAREA
429 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 help
431 This is the frame buffer device driver for the Amiga FrameMaster
432 card from BSC (exhibited 1992 but not shipped as a CBM product).
433
Jaya Kumar1154ea72005-06-21 17:17:04 -0700434config FB_ARC
435 tristate "Arc Monochrome LCD board support"
436 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700437 select FB_SYS_FILLRECT
438 select FB_SYS_COPYAREA
439 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700440 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700441 help
442 This enables support for the Arc Monochrome LCD board. The board
443 is based on the KS-108 lcd controller and is typically a matrix
444 of 2*n chips. This driver was tested with a 128x64 panel. This
445 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200446 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700447 this driver, say Y or M; otherwise say N. You must specify the
448 GPIO IO address to be used for setting control and data.
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450config FB_ATARI
451 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200452 depends on (FB = y) && ATARI
453 select FB_CFB_FILLRECT
454 select FB_CFB_COPYAREA
455 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 help
457 This is the frame buffer device driver for the builtin graphics
458 chipset found in Ataris.
459
460config FB_OF
461 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100462 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 select FB_CFB_FILLRECT
464 select FB_CFB_COPYAREA
465 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 select FB_MACMODES
467 help
468 Say Y if you want support with Open Firmware for your graphics
469 board.
470
471config FB_CONTROL
472 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700473 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 select FB_CFB_FILLRECT
475 select FB_CFB_COPYAREA
476 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 select FB_MACMODES
478 help
479 This driver supports a frame buffer for the graphics adapter in the
480 Power Macintosh 7300 and others.
481
482config FB_PLATINUM
483 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700484 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 select FB_CFB_FILLRECT
486 select FB_CFB_COPYAREA
487 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 select FB_MACMODES
489 help
490 This driver supports a frame buffer for the "platinum" graphics
491 adapter in some Power Macintoshes.
492
493config FB_VALKYRIE
494 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700495 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 select FB_CFB_FILLRECT
497 select FB_CFB_COPYAREA
498 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 select FB_MACMODES
500 help
501 This driver supports a frame buffer for the "valkyrie" graphics
502 adapter in some Power Macintoshes.
503
504config FB_CT65550
505 bool "Chips 65550 display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700506 depends on (FB = y) && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 select FB_CFB_FILLRECT
508 select FB_CFB_COPYAREA
509 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 help
511 This is the frame buffer device driver for the Chips & Technologies
512 65550 graphics chip in PowerBooks.
513
514config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800515 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 depends on (FB = y) && PCI
517 select FB_CFB_FILLRECT
518 select FB_CFB_COPYAREA
519 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700520 help
521 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523config FB_IMSTT
524 bool "IMS Twin Turbo display support"
525 depends on (FB = y) && PCI
526 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 select FB_MACMODES if PPC
528 help
529 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
530 many Macintosh and compatible computers.
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532config FB_VGA16
533 tristate "VGA 16-color graphics support"
534 depends on FB && (X86 || PPC)
535 select FB_CFB_FILLRECT
536 select FB_CFB_COPYAREA
537 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700538 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700539 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 help
541 This is the frame buffer device driver for VGA 16 color graphic
542 cards. Say Y if you have such a card.
543
544 To compile this driver as a module, choose M here: the
545 module will be called vga16fb.
546
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700547config FB_BF54X_LQ043
548 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
549 depends on FB && (BF54x)
550 select FB_CFB_FILLRECT
551 select FB_CFB_COPYAREA
552 select FB_CFB_IMAGEBLIT
553 help
554 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556config FB_STI
557 tristate "HP STI frame buffer device support"
558 depends on FB && PARISC
559 select FB_CFB_FILLRECT
560 select FB_CFB_COPYAREA
561 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 default y
563 ---help---
564 STI refers to the HP "Standard Text Interface" which is a set of
565 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
566 Enabling this option will implement the linux framebuffer device
567 using calls to the STI BIOS routines for initialisation.
568
569 If you enable this option, you will get a planar framebuffer device
570 /dev/fb which will work on the most common HP graphic cards of the
571 NGLE family, including the artist chips (in the 7xx and Bxxx series),
572 HCRX, HCRX24, CRX, CRX24 and VisEG series.
573
574 It is safe to enable this option, so you should probably say "Y".
575
576config FB_MAC
577 bool "Generic Macintosh display support"
578 depends on (FB = y) && MAC
579 select FB_CFB_FILLRECT
580 select FB_CFB_COPYAREA
581 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 select FB_MACMODES
583
584# bool ' Apple DAFB display support' CONFIG_FB_DAFB
585config FB_HP300
586 bool
587 depends on (FB = y) && HP300
588 select FB_CFB_FILLRECT
589 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 default y
591
592config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700593 tristate "TGA/SFB+ framebuffer support"
594 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 select FB_CFB_FILLRECT
596 select FB_CFB_COPYAREA
597 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800598 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700599 ---help---
600 This is the frame buffer device driver for generic TGA and SFB+
601 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
602 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
603 TURBOchannel cards, also known as PMAGD-A, -B and -C.
604
605 Due to hardware limitations ZLX-E2 and E3 cards are not supported
606 for DECstation 5000/200 systems. Additionally due to firmware
607 limitations these cards may cause troubles with booting DECstation
608 5000/240 and /260 systems, but are fully supported under Linux if
609 you manage to get it going. ;-)
610
611 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700613config FB_UVESA
614 tristate "Userspace VESA VGA graphics support"
615 depends on FB && CONNECTOR
616 select FB_CFB_FILLRECT
617 select FB_CFB_COPYAREA
618 select FB_CFB_IMAGEBLIT
619 select FB_MODE_HELPERS
620 help
621 This is the frame buffer driver for generic VBE 2.0 compliant
622 graphic cards. It can also take advantage of VBE 3.0 features,
623 such as refresh rate adjustment.
624
625 This driver generally provides more features than vesafb but
626 requires a userspace helper application called 'v86d'. See
627 <file:Documentation/fb/uvesafb.txt> for more information.
628
629 If unsure, say N.
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631config FB_VESA
632 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800633 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 select FB_CFB_FILLRECT
635 select FB_CFB_COPYAREA
636 select FB_CFB_IMAGEBLIT
James Simmonsc9b2ec42006-12-08 02:40:57 -0800637 select VIDEO_SELECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 help
639 This is the frame buffer device driver for generic VESA 2.0
640 compliant graphic cards. The older VESA 1.2 cards are not supported.
641 You will get a boot time penguin logo at no additional cost. Please
642 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
643
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700644config FB_IMAC
645 bool "Intel-based Macintosh Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700646 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700647 select FB_CFB_FILLRECT
648 select FB_CFB_COPYAREA
649 select FB_CFB_IMAGEBLIT
650 help
651 This is the frame buffer device driver for the Intel-based Macintosh
652
Jaya Kumaraad09e52007-05-08 00:37:43 -0700653config FB_HECUBA
654 tristate "Hecuba board support"
655 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700656 select FB_SYS_FILLRECT
657 select FB_SYS_COPYAREA
658 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700659 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700660 select FB_DEFERRED_IO
661 help
662 This enables support for the Hecuba board. This driver was tested
663 with an E-Ink 800x600 display and x86 SBCs through a 16 bit GPIO
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200664 interface (8 bit data, 4 bit control). If you anticipate using
Jaya Kumaraad09e52007-05-08 00:37:43 -0700665 this driver, say Y or M; otherwise say N. You must specify the
666 GPIO IO address to be used for setting control and data.
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668config FB_HGA
669 tristate "Hercules mono graphics support"
670 depends on FB && X86
671 select FB_CFB_FILLRECT
672 select FB_CFB_COPYAREA
673 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 help
675 Say Y here if you have a Hercules mono graphics card.
676
677 To compile this driver as a module, choose M here: the
678 module will be called hgafb.
679
680 As this card technology is 15 years old, most people will answer N
681 here.
682
683config FB_HGA_ACCEL
684 bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
685 depends on FB_HGA && EXPERIMENTAL
686 ---help---
687 This will compile the Hercules mono graphics with
688 acceleration functions.
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690config FB_SGIVW
691 tristate "SGI Visual Workstation framebuffer support"
692 depends on FB && X86_VISWS
693 select FB_CFB_FILLRECT
694 select FB_CFB_COPYAREA
695 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 help
697 SGI Visual Workstation support for framebuffer graphics.
698
699config FB_GBE
700 bool "SGI Graphics Backend frame buffer support"
701 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
702 select FB_CFB_FILLRECT
703 select FB_CFB_COPYAREA
704 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 help
706 This is the frame buffer device driver for SGI Graphics Backend.
707 This chip is used in SGI O2 and Visual Workstation 320/540.
708
709config FB_GBE_MEM
710 int "Video memory size in MB"
711 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800712 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 help
714 This is the amount of memory reserved for the framebuffer,
715 which can be any value between 1MB and 8MB.
716
Mark Fortescue1a571982005-11-29 19:34:44 -0800717config FB_SBUS
718 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800719 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800720 help
721 Say Y if you want support for SBUS or UPA based frame buffer device.
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723config FB_BW2
724 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800725 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 select FB_CFB_FILLRECT
727 select FB_CFB_COPYAREA
728 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 help
730 This is the frame buffer device driver for the BWtwo frame buffer.
731
732config FB_CG3
733 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800734 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800735 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 select FB_CFB_COPYAREA
737 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 help
739 This is the frame buffer device driver for the CGthree frame buffer.
740
741config FB_CG6
742 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800743 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 select FB_CFB_COPYAREA
745 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 help
747 This is the frame buffer device driver for the CGsix (GX, TurboGX)
748 frame buffer.
749
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700750config FB_FFB
751 bool "Creator/Creator3D/Elite3D support"
752 depends on FB_SBUS && SPARC64
753 select FB_CFB_COPYAREA
754 select FB_CFB_IMAGEBLIT
755 help
756 This is the frame buffer device driver for the Creator, Creator3D,
757 and Elite3D graphics boards.
758
759config FB_TCX
760 bool "TCX (SS4/SS5 only) support"
761 depends on FB_SBUS
762 select FB_CFB_FILLRECT
763 select FB_CFB_COPYAREA
764 select FB_CFB_IMAGEBLIT
765 help
766 This is the frame buffer device driver for the TCX 24/8bit frame
767 buffer.
768
769config FB_CG14
770 bool "CGfourteen (SX) support"
771 depends on FB_SBUS
772 select FB_CFB_FILLRECT
773 select FB_CFB_COPYAREA
774 select FB_CFB_IMAGEBLIT
775 help
776 This is the frame buffer device driver for the CGfourteen frame
777 buffer on Desktop SPARCsystems with the SX graphics option.
778
779config FB_P9100
780 bool "P9100 (Sparcbook 3 only) support"
781 depends on FB_SBUS
782 select FB_CFB_FILLRECT
783 select FB_CFB_COPYAREA
784 select FB_CFB_IMAGEBLIT
785 help
786 This is the frame buffer device driver for the P9100 card
787 supported on Sparcbook 3 machines.
788
789config FB_LEO
790 bool "Leo (ZX) support"
791 depends on FB_SBUS
792 select FB_CFB_FILLRECT
793 select FB_CFB_COPYAREA
794 select FB_CFB_IMAGEBLIT
795 help
796 This is the frame buffer device driver for the SBUS-based Sun ZX
797 (leo) frame buffer cards.
798
799config FB_IGA
800 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700801 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700802 select FB_CFB_FILLRECT
803 select FB_CFB_COPYAREA
804 select FB_CFB_IMAGEBLIT
805 help
806 This is the framebuffer device for the INTERGRAPHICS 1680 and
807 successor frame buffer cards.
808
809config FB_XVR500
810 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700811 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700812 select FB_CFB_FILLRECT
813 select FB_CFB_COPYAREA
814 select FB_CFB_IMAGEBLIT
815 help
816 This is the framebuffer device for the Sun XVR-500 and similar
817 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200818 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700819 mostly initialized the card already. It is treated as a
820 completely dumb framebuffer device.
821
822config FB_XVR2500
823 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700824 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700825 select FB_CFB_FILLRECT
826 select FB_CFB_COPYAREA
827 select FB_CFB_IMAGEBLIT
828 help
829 This is the framebuffer device for the Sun XVR-2500 and similar
830 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200831 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700832 mostly initialized the card already. It is treated as a
833 completely dumb framebuffer device.
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835config FB_PVR2
836 tristate "NEC PowerVR 2 display support"
837 depends on FB && SH_DREAMCAST
838 select FB_CFB_FILLRECT
839 select FB_CFB_COPYAREA
840 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 ---help---
842 Say Y here if you have a PowerVR 2 card in your box. If you plan to
843 run linux on your Dreamcast, you will have to say Y here.
844 This driver may or may not work on other PowerVR 2 cards, but is
845 totally untested. Use at your own risk. If unsure, say N.
846
847 To compile this driver as a module, choose M here: the
848 module will be called pvr2fb.
849
850 You can pass several parameters to the driver at boot time or at
851 module load time. The parameters look like "video=pvr2:XXX", where
852 the meaning of XXX can be found at the end of the main source file
853 (<file:drivers/video/pvr2fb.c>). Please see the file
854 <file:Documentation/fb/pvr2fb.txt>.
855
856config FB_EPSON1355
857 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700858 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 select FB_CFB_FILLRECT
860 select FB_CFB_COPYAREA
861 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 help
863 Build in support for the SED1355 Epson Research Embedded RAMDAC
864 LCD/CRT Controller (since redesignated as the S1D13505) as a
865 framebuffer. Product specs at
866 <http://www.erd.epson.com/vdc/html/products.htm>.
867
Randy Dunlapecc41d52005-11-07 01:00:29 -0800868config FB_S1D13XXX
869 tristate "Epson S1D13XXX framebuffer support"
870 depends on FB
871 select FB_CFB_FILLRECT
872 select FB_CFB_COPYAREA
873 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800874 help
875 Support for S1D13XXX framebuffer device family (currently only
876 working with S1D13806). Product specs at
877 <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
878
Nicolas Ferre14340582007-05-10 22:23:26 -0700879config FB_ATMEL
880 tristate "AT91/AT32 LCD Controller support"
881 depends on FB && (ARCH_AT91SAM9261 || ARCH_AT91SAM9263 || AVR32)
882 select FB_CFB_FILLRECT
883 select FB_CFB_COPYAREA
884 select FB_CFB_IMAGEBLIT
885 help
886 This enables support for the AT91/AT32 LCD Controller.
887
888config FB_INTSRAM
889 bool "Frame Buffer in internal SRAM"
890 depends on FB_ATMEL && ARCH_AT91SAM9261
891 help
892 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
893 to let frame buffer in external SDRAM.
894
Nicolas Ferre250a2692007-07-21 04:37:59 -0700895config FB_ATMEL_STN
896 bool "Use a STN display with AT91/AT32 LCD Controller"
897 depends on FB_ATMEL && MACH_AT91SAM9261EK
898 default n
899 help
900 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
901 Controller. Say N if you want to connect a TFT.
902
903 If unsure, say N.
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905config FB_NVIDIA
906 tristate "nVidia Framebuffer Support"
907 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000908 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 select FB_MODE_HELPERS
910 select FB_CFB_FILLRECT
911 select FB_CFB_COPYAREA
912 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800913 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700914 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 help
916 This driver supports graphics boards with the nVidia chips, TNT
917 and newer. For very old chipsets, such as the RIVA128, then use
918 the rivafb.
919 Say Y if you have such a graphics board.
920
921 To compile this driver as a module, choose M here: the
922 module will be called nvidiafb.
923
924config FB_NVIDIA_I2C
925 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -0800926 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -0800927 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 help
929 This enables I2C support for nVidia Chipsets. This is used
930 only for getting EDID information from the attached display
931 allowing for robust video mode handling and switching.
932
933 Because fbdev-2.6 requires that drivers must be able to
934 independently validate video mode parameters, you should say Y
935 here.
936
Jean Delvare647f2e72007-05-10 22:23:29 -0700937config FB_NVIDIA_DEBUG
938 bool "Lots of debug output"
939 depends on FB_NVIDIA
940 default n
941 help
942 Say Y here if you want the nVidia driver to output all sorts
943 of debugging information to provide to the maintainer when
944 something goes wrong.
945
Michael Hanselmann5474c122006-06-25 05:47:08 -0700946config FB_NVIDIA_BACKLIGHT
947 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000948 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700949 default y
950 help
951 Say Y here if you want to control the backlight of your display.
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953config FB_RIVA
954 tristate "nVidia Riva support"
955 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000956 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 select FB_MODE_HELPERS
958 select FB_CFB_FILLRECT
959 select FB_CFB_COPYAREA
960 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800961 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700962 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 help
964 This driver supports graphics boards with the nVidia Riva/Geforce
965 chips.
966 Say Y if you have such a graphics board.
967
968 To compile this driver as a module, choose M here: the
969 module will be called rivafb.
970
971config FB_RIVA_I2C
972 bool "Enable DDC Support"
973 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -0800974 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 help
976 This enables I2C support for nVidia Chipsets. This is used
977 only for getting EDID information from the attached display
978 allowing for robust video mode handling and switching.
979
980 Because fbdev-2.6 requires that drivers must be able to
981 independently validate video mode parameters, you should say Y
982 here.
983
984config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -0700985 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 depends on FB_RIVA
987 default n
988 help
989 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +0200990 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 something goes wrong.
992
Michael Hanselmann5474c122006-06-25 05:47:08 -0700993config FB_RIVA_BACKLIGHT
994 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000995 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700996 default y
997 help
998 Say Y here if you want to control the backlight of your display.
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000config FB_I810
1001 tristate "Intel 810/815 support (EXPERIMENTAL)"
Brian Gerst0d078f62005-10-30 14:59:20 -08001002 depends on FB && EXPERIMENTAL && PCI && X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 select AGP
1004 select AGP_INTEL
1005 select FB_MODE_HELPERS
1006 select FB_CFB_FILLRECT
1007 select FB_CFB_COPYAREA
1008 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001009 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 help
1011 This driver supports the on-board graphics built in to the Intel 810
1012 and 815 chipsets. Say Y if you have and plan to use such a board.
1013
1014 To compile this driver as a module, choose M here: the
1015 module will be called i810fb.
1016
1017 For more information, please read
1018 <file:Documentation/fb/intel810.txt>
1019
1020config FB_I810_GTF
1021 bool "use VESA Generalized Timing Formula"
1022 depends on FB_I810
1023 help
1024 If you say Y, then the VESA standard, Generalized Timing Formula
1025 or GTF, will be used to calculate the required video timing values
1026 per video mode. Since the GTF allows nondiscrete timings
1027 (nondiscrete being a range of values as opposed to discrete being a
1028 set of values), you'll be able to use any combination of horizontal
1029 and vertical resolutions, and vertical refresh rates without having
1030 to specify your own timing parameters. This is especially useful
1031 to maximize the performance of an aging display, or if you just
1032 have a display with nonstandard dimensions. A VESA compliant
1033 monitor is recommended, but can still work with non-compliant ones.
1034 If you need or want this, then select this option. The timings may
1035 not be compliant with Intel's recommended values. Use at your own
1036 risk.
1037
1038 If you say N, the driver will revert to discrete video timings
1039 using a set recommended by Intel in their documentation.
1040
1041 If unsure, say N.
1042
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001043config FB_I810_I2C
1044 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001045 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001046 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001047 help
1048
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001049config FB_LE80578
1050 tristate "Intel LE80578 (Vermilion) support"
1051 depends on FB && PCI && X86
1052 select FB_MODE_HELPERS
1053 select FB_CFB_FILLRECT
1054 select FB_CFB_COPYAREA
1055 select FB_CFB_IMAGEBLIT
1056 help
1057 This driver supports the LE80578 (Vermilion Range) chipset
1058
1059config FB_CARILLO_RANCH
1060 tristate "Intel Carillo Ranch support"
1061 depends on FB_LE80578 && FB && PCI && X86
1062 help
1063 This driver supports the LE80578 (Carillo Ranch) board
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065config FB_INTEL
Christian Merkled463d342006-08-22 10:07:01 +10001066 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
Dave Airlie0c187ad2006-03-23 11:20:08 +11001067 depends on FB && EXPERIMENTAL && PCI && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 select AGP
1069 select AGP_INTEL
1070 select FB_MODE_HELPERS
1071 select FB_CFB_FILLRECT
1072 select FB_CFB_COPYAREA
1073 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 help
1075 This driver supports the on-board graphics built in to the Intel
Christian Merkled463d342006-08-22 10:07:01 +10001076 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 Say Y if you have and plan to use such a board.
1078
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001079 If you say Y here and want DDC/I2C support you must first say Y to
1080 "I2C support" and "I2C bit-banging support" in the character devices
1081 section.
1082
1083 If you say M here then "I2C support" and "I2C bit-banging support"
1084 can be build either as modules or built-in.
1085
1086 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 module will be called intelfb.
1088
Christian Merkled463d342006-08-22 10:07:01 +10001089 For more information, please read <file:Documentation/fb/intelfb.txt>
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001092 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 depends on FB_INTEL
1094 ---help---
1095 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001096 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 something goes wrong.
1098
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001099config FB_INTEL_I2C
1100 bool "DDC/I2C for Intel framebuffer support"
1101 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001102 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001103 default y
1104 help
1105 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107config FB_MATROX
1108 tristate "Matrox acceleration"
1109 depends on FB && PCI
1110 select FB_CFB_FILLRECT
1111 select FB_CFB_COPYAREA
1112 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 select FB_TILEBLITTING
1114 select FB_MACMODES if PPC_PMAC
1115 ---help---
1116 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1117 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1118 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1119 Matrox G400, G450 or G550 card in your box.
1120
1121 To compile this driver as a module, choose M here: the
1122 module will be called matroxfb.
1123
1124 You can pass several parameters to the driver at boot time or at
1125 module load time. The parameters look like "video=matrox:XXX", and
1126 are described in <file:Documentation/fb/matroxfb.txt>.
1127
1128config FB_MATROX_MILLENIUM
1129 bool "Millennium I/II support"
1130 depends on FB_MATROX
1131 help
1132 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1133 video card. If you select "Advanced lowlevel driver options" below,
1134 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1135 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1136 also use font widths different from 8.
1137
1138config FB_MATROX_MYSTIQUE
1139 bool "Mystique support"
1140 depends on FB_MATROX
1141 help
1142 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1143 video card. If you select "Advanced lowlevel driver options" below,
1144 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1145 packed pixel and 32 bpp packed pixel. You can also use font widths
1146 different from 8.
1147
1148config FB_MATROX_G
1149 bool "G100/G200/G400/G450/G550 support"
1150 depends on FB_MATROX
1151 ---help---
1152 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1153 video card. If you select "Advanced lowlevel driver options", you
1154 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1155 pixel and 32 bpp packed pixel. You can also use font widths
1156 different from 8.
1157
1158 If you need support for G400 secondary head, you must first say Y to
1159 "I2C support" in the character devices section, and then to
1160 "Matrox I2C support" and "G400 second head support" here in the
1161 framebuffer section. G450/G550 secondary head and digital output
1162 are supported without additional modules.
1163
1164 The driver starts in monitor mode. You must use the matroxset tool
1165 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1166 swap primary and secondary head outputs, or to change output mode.
1167 Secondary head driver always start in 640x480 resolution and you
1168 must use fbset to change it.
1169
1170 Do not forget that second head supports only 16 and 32 bpp
1171 packed pixels, so it is a good idea to compile them into the kernel
1172 too. You can use only some font widths, as the driver uses generic
1173 painting procedures (the secondary head does not use acceleration
1174 engine).
1175
1176 G450/G550 hardware can display TV picture only from secondary CRTC,
1177 and it performs no scaling, so picture must have 525 or 625 lines.
1178
1179config FB_MATROX_I2C
1180 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001181 depends on FB_MATROX
1182 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 ---help---
1184 This drivers creates I2C buses which are needed for accessing the
1185 DDC (I2C) bus present on all Matroxes, an I2C bus which
1186 interconnects Matrox optional devices, like MGA-TVO on G200 and
1187 G400, and the secondary head DDC bus, present on G400 only.
1188
1189 You can say Y or M here if you want to experiment with monitor
1190 detection code. You must say Y or M here if you want to use either
1191 second head of G400 or MGA-TVO on G200 or G400.
1192
1193 If you compile it as module, it will create a module named
1194 i2c-matroxfb.
1195
1196config FB_MATROX_MAVEN
1197 tristate "G400 second head support"
1198 depends on FB_MATROX_G && FB_MATROX_I2C
1199 ---help---
1200 WARNING !!! This support does not work with G450 !!!
1201
1202 Say Y or M here if you want to use a secondary head (meaning two
1203 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1204 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1205 secondary head output is blanked while you are in X. With XFree
1206 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1207 the fbdev driver on first head and the fbdev driver on second head.
1208
1209 If you compile it as module, two modules are created,
1210 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1211 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1212 also load i2c-matroxfb to get it to run.
1213
1214 The driver starts in monitor mode and you must use the matroxset
1215 tool (available at
1216 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1217 PAL or NTSC or to swap primary and secondary head outputs.
1218 Secondary head driver also always start in 640x480 resolution, you
1219 must use fbset to change it.
1220
1221 Also do not forget that second head supports only 16 and 32 bpp
1222 packed pixels, so it is a good idea to compile them into the kernel
1223 too. You can use only some font widths, as the driver uses generic
1224 painting procedures (the secondary head does not use acceleration
1225 engine).
1226
1227config FB_MATROX_MULTIHEAD
1228 bool "Multihead support"
1229 depends on FB_MATROX
1230 ---help---
1231 Say Y here if you have more than one (supported) Matrox device in
1232 your computer and you want to use all of them for different monitors
1233 ("multihead"). If you have only one device, you should say N because
1234 the driver compiled with Y is larger and a bit slower, especially on
1235 ia32 (ix86).
1236
1237 If you said M to "Matrox unified accelerated driver" and N here, you
1238 will still be able to use several Matrox devices simultaneously:
1239 insert several instances of the module matroxfb into the kernel
1240 with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
1241 for the different Matrox devices. This method is slightly faster but
1242 uses 40 KB of kernel memory per Matrox card.
1243
1244 There is no need for enabling 'Matrox multihead support' if you have
1245 only one Matrox card in the box.
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247config FB_RADEON
1248 tristate "ATI Radeon display support"
1249 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001250 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 select FB_MODE_HELPERS
1252 select FB_CFB_FILLRECT
1253 select FB_CFB_COPYAREA
1254 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 select FB_MACMODES if PPC_OF
1256 help
1257 Choose this option if you want to use an ATI Radeon graphics card as
1258 a framebuffer device. There are both PCI and AGP versions. You
1259 don't need to choose this to run the Radeon in plain VGA mode.
1260
1261 If you say Y here and want DDC/I2C support you must first say Y to
1262 "I2C support" and "I2C bit-banging support" in the character devices
1263 section.
1264
1265 If you say M here then "I2C support" and "I2C bit-banging support"
1266 can be build either as modules or built-in.
1267
1268 There is a product page at
Antonino A. Daplasf510a3c2005-09-09 13:04:41 -07001269 http://apps.ati.com/ATIcompare/
Michael Hanselmann5474c122006-06-25 05:47:08 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271config FB_RADEON_I2C
1272 bool "DDC/I2C for ATI Radeon support"
1273 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001274 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 default y
1276 help
1277 Say Y here if you want DDC/I2C support for your Radeon board.
1278
Michael Hanselmann5474c122006-06-25 05:47:08 -07001279config FB_RADEON_BACKLIGHT
1280 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001281 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001282 default y
1283 help
1284 Say Y here if you want to control the backlight of your display.
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286config FB_RADEON_DEBUG
1287 bool "Lots of debug output from Radeon driver"
1288 depends on FB_RADEON
1289 default n
1290 help
1291 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001292 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 something goes wrong.
1294
1295config FB_ATY128
1296 tristate "ATI Rage128 display support"
1297 depends on FB && PCI
1298 select FB_CFB_FILLRECT
1299 select FB_CFB_COPYAREA
1300 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001301 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 select FB_MACMODES if PPC_PMAC
1303 help
1304 This driver supports graphics boards with the ATI Rage128 chips.
1305 Say Y if you have such a graphics board and read
1306 <file:Documentation/fb/aty128fb.txt>.
1307
1308 To compile this driver as a module, choose M here: the
1309 module will be called aty128fb.
1310
Michael Hanselmann5474c122006-06-25 05:47:08 -07001311config FB_ATY128_BACKLIGHT
1312 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001313 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001314 default y
1315 help
1316 Say Y here if you want to control the backlight of your display.
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318config FB_ATY
1319 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001320 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 select FB_CFB_FILLRECT
1322 select FB_CFB_COPYAREA
1323 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001324 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 select FB_MACMODES if PPC
1326 help
1327 This driver supports graphics boards with the ATI Mach64 chips.
1328 Say Y if you have such a graphics board.
1329
1330 To compile this driver as a module, choose M here: the
1331 module will be called atyfb.
1332
1333config FB_ATY_CT
1334 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1335 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001336 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 help
1338 Say Y here to support use of ATI's 64-bit Rage boards (or other
1339 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1340 framebuffer device. The ATI product support page for these boards
1341 is at <http://support.ati.com/products/pc/mach64/>.
1342
1343config FB_ATY_GENERIC_LCD
1344 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1345 depends on FB_ATY_CT
1346 help
1347 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1348 Rage XC, or Rage XL chipset.
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350config FB_ATY_GX
1351 bool "Mach64 GX support" if PCI
1352 depends on FB_ATY
1353 default y if ATARI
1354 help
1355 Say Y here to support use of the ATI Mach64 Graphics Expression
1356 board (or other boards based on the Mach64 GX chipset) as a
1357 framebuffer device. The ATI product support page for these boards
1358 is at
1359 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1360
Michael Hanselmann5474c122006-06-25 05:47:08 -07001361config FB_ATY_BACKLIGHT
1362 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001363 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001364 default y
1365 help
1366 Say Y here if you want to control the backlight of your display.
1367
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001368config FB_S3
1369 tristate "S3 Trio/Virge support"
1370 depends on FB && PCI
1371 select FB_CFB_FILLRECT
1372 select FB_CFB_COPYAREA
1373 select FB_CFB_IMAGEBLIT
1374 select FB_TILEBLITTING
1375 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001376 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001377 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001378 ---help---
1379 Driver for graphics boards with S3 Trio / S3 Virge chip.
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381config FB_SAVAGE
1382 tristate "S3 Savage support"
1383 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 select FB_MODE_HELPERS
1385 select FB_CFB_FILLRECT
1386 select FB_CFB_COPYAREA
1387 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001388 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 help
1390 This driver supports notebooks and computers with S3 Savage PCI/AGP
1391 chips.
1392
1393 Say Y if you have such a graphics card.
1394
1395 To compile this driver as a module, choose M here; the module
1396 will be called savagefb.
1397
1398config FB_SAVAGE_I2C
1399 bool "Enable DDC2 Support"
1400 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001401 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 help
1403 This enables I2C support for S3 Savage Chipsets. This is used
1404 only for getting EDID information from the attached display
1405 allowing for robust video mode handling and switching.
1406
1407 Because fbdev-2.6 requires that drivers must be able to
1408 independently validate video mode parameters, you should say Y
1409 here.
1410
1411config FB_SAVAGE_ACCEL
1412 bool "Enable Console Acceleration"
1413 depends on FB_SAVAGE
1414 default n
1415 help
1416 This option will compile in console acceleration support. If
1417 the resulting framebuffer console has bothersome glitches, then
1418 choose N here.
1419
1420config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001421 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 depends on FB && PCI
1423 select FB_CFB_FILLRECT
1424 select FB_CFB_COPYAREA
1425 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001427 This is the frame buffer device driver for the SiS 300, 315, 330
1428 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1429 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 To compile this driver as a module, choose M here; the module
1432 will be called sisfb.
1433
1434config FB_SIS_300
1435 bool "SiS 300 series support"
1436 depends on FB_SIS
1437 help
1438 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1439
1440config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001441 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 depends on FB_SIS
1443 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001444 Say Y here to support use of the SiS 315, 330 and 340 series
1445 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1446 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448config FB_NEOMAGIC
1449 tristate "NeoMagic display support"
1450 depends on FB && PCI
1451 select FB_MODE_HELPERS
1452 select FB_CFB_FILLRECT
1453 select FB_CFB_COPYAREA
1454 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001455 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 help
1457 This driver supports notebooks with NeoMagic PCI chips.
1458 Say Y if you have such a graphics card.
1459
1460 To compile this driver as a module, choose M here: the
1461 module will be called neofb.
1462
1463config FB_KYRO
1464 tristate "IMG Kyro support"
1465 depends on FB && PCI
1466 select FB_CFB_FILLRECT
1467 select FB_CFB_COPYAREA
1468 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 help
1470 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1471 graphics board.
1472
1473 To compile this driver as a module, choose M here: the
1474 module will be called kyrofb.
1475
1476config FB_3DFX
1477 tristate "3Dfx Banshee/Voodoo3 display support"
1478 depends on FB && PCI
1479 select FB_CFB_IMAGEBLIT
1480 select FB_CFB_FILLRECT
1481 select FB_CFB_COPYAREA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 help
1483 This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
1484 chips. Say Y if you have such a graphics board.
1485
1486 To compile this driver as a module, choose M here: the
1487 module will be called tdfxfb.
1488
1489config FB_3DFX_ACCEL
1490 bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
1491 depends on FB_3DFX && EXPERIMENTAL
1492 ---help---
1493 This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
1494 with acceleration functions.
1495
1496
1497config FB_VOODOO1
1498 tristate "3Dfx Voodoo Graphics (sst1) support"
1499 depends on FB && PCI
1500 select FB_CFB_FILLRECT
1501 select FB_CFB_COPYAREA
1502 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 ---help---
1504 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1505 Voodoo2 (cvg) based graphics card.
1506
1507 To compile this driver as a module, choose M here: the
1508 module will be called sstfb.
1509
1510 WARNING: Do not use any application that uses the 3D engine
1511 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001512 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 options and other important info support.
1514
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001515config FB_VT8623
1516 tristate "VIA VT8623 support"
1517 depends on FB && PCI
1518 select FB_CFB_FILLRECT
1519 select FB_CFB_COPYAREA
1520 select FB_CFB_IMAGEBLIT
1521 select FB_TILEBLITTING
1522 select FB_SVGALIB
1523 select VGASTATE
1524 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1525 ---help---
1526 Driver for CastleRock integrated graphics core in the
1527 VIA VT8623 [Apollo CLE266] chipset.
1528
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001529config FB_CYBLA
1530 tristate "Cyberblade/i1 support"
Knut Petersen44637a12006-01-09 15:04:20 +01001531 depends on FB && PCI && X86_32 && !64BIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001532 select FB_CFB_IMAGEBLIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001533 select VIDEO_SELECT
1534 ---help---
1535 This driver is supposed to support the Trident Cyberblade/i1
1536 graphics core integrated in the VIA VT8601A North Bridge,
1537 also known as VIA Apollo PLE133.
1538
1539 Status:
1540 - Developed, tested and working on EPIA 5000 and EPIA 800.
1541 - Does work reliable on all systems with CRT/LCD connected to
1542 normal VGA ports.
1543 - Should work on systems that do use the internal LCD port, but
1544 this is absolutely not tested.
1545
1546 Character imageblit, copyarea and rectangle fill are hw accelerated,
1547 ypan scrolling is used by default.
1548
1549 Please do read <file:Documentation/fb/cyblafb/*>.
1550
1551 To compile this driver as a module, choose M here: the
1552 module will be called cyblafb.
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554config FB_TRIDENT
1555 tristate "Trident support"
1556 depends on FB && PCI
1557 select FB_CFB_FILLRECT
1558 select FB_CFB_COPYAREA
1559 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 ---help---
1561 This driver is supposed to support graphics boards with the
1562 Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
1563 but also on some motherboards. For more information, read
1564 <file:Documentation/fb/tridentfb.txt>
1565
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001566 Cyberblade/i1 support will be removed soon, use the cyblafb driver
1567 instead.
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 Say Y if you have such a graphics board.
1570
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 To compile this driver as a module, choose M here: the
1573 module will be called tridentfb.
1574
1575config FB_TRIDENT_ACCEL
1576 bool "Trident Acceleration functions (EXPERIMENTAL)"
1577 depends on FB_TRIDENT && EXPERIMENTAL
1578 ---help---
1579 This will compile the Trident frame buffer device with
1580 acceleration functions.
1581
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001582config FB_ARK
1583 tristate "ARK 2000PV support"
1584 depends on FB && PCI
1585 select FB_CFB_FILLRECT
1586 select FB_CFB_COPYAREA
1587 select FB_CFB_IMAGEBLIT
1588 select FB_TILEBLITTING
1589 select FB_SVGALIB
1590 select VGASTATE
1591 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1592 ---help---
1593 Driver for PCI graphics boards with ARK 2000PV chip
1594 and ICS 5342 RAMDAC.
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001597 tristate "Permedia3 support (EXPERIMENTAL)"
1598 depends on FB && PCI && EXPERIMENTAL
1599 select FB_CFB_FILLRECT
1600 select FB_CFB_COPYAREA
1601 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 help
1603 This is the frame buffer device driver for the 3DLabs Permedia3
1604 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1605 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1606 and maybe other boards.
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608config FB_AU1100
1609 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001610 depends on (FB = y) && MIPS && SOC_AU1100
1611 select FB_CFB_FILLRECT
1612 select FB_CFB_COPYAREA
1613 select FB_CFB_IMAGEBLIT
1614 help
1615 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1616 various panels and CRTs by passing in kernel cmd line option
1617 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001619config FB_AU1200
1620 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001621 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001622 select FB_CFB_FILLRECT
1623 select FB_CFB_COPYAREA
1624 select FB_CFB_IMAGEBLIT
1625 help
1626 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1627 various panels and CRTs by passing in kernel cmd line option
1628 au1200fb:panel=<name>.
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630source "drivers/video/geode/Kconfig"
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632config FB_HIT
1633 tristate "HD64461 Frame Buffer support"
1634 depends on FB && HD64461
1635 select FB_CFB_FILLRECT
1636 select FB_CFB_COPYAREA
1637 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 help
1639 This is the frame buffer device driver for the Hitachi HD64461 LCD
1640 frame buffer card.
1641
1642config FB_PMAG_AA
1643 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001644 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 select FB_CFB_FILLRECT
1646 select FB_CFB_COPYAREA
1647 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 help
1649 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1650 used mainly in the MIPS-based DECstation series.
1651
1652config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001653 tristate "PMAG-BA TURBOchannel framebuffer support"
1654 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 select FB_CFB_FILLRECT
1656 select FB_CFB_COPYAREA
1657 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 help
1659 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1660 used mainly in the MIPS-based DECstation series.
1661
1662config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001663 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001664 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 select FB_CFB_FILLRECT
1666 select FB_CFB_COPYAREA
1667 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 help
1669 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1670 in the MIPS-based DECstation series. The card is currently only
1671 supported in 1280x1024x8 mode.
1672
1673config FB_MAXINE
1674 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001675 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 select FB_CFB_FILLRECT
1677 select FB_CFB_COPYAREA
1678 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 help
1680 Support for the onboard framebuffer (1024x768x8) in the Personal
1681 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1682 Codename "Maxine").
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001685 bool "G364 frame buffer support"
1686 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 select FB_CFB_FILLRECT
1688 select FB_CFB_COPYAREA
1689 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 help
1691 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1692 Olivetti M700-10 systems.
1693
1694config FB_68328
1695 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001696 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 select FB_CFB_FILLRECT
1698 select FB_CFB_COPYAREA
1699 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 help
1701 Say Y here if you want to support the built-in frame buffer of
1702 the Motorola 68328 CPU family.
1703
1704config FB_PXA
1705 tristate "PXA LCD framebuffer support"
1706 depends on FB && ARCH_PXA
1707 select FB_CFB_FILLRECT
1708 select FB_CFB_COPYAREA
1709 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 ---help---
1711 Frame buffer driver for the built-in LCD controller in the Intel
1712 PXA2x0 processor.
1713
1714 This driver is also available as a module ( = code which can be
1715 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001716 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001717 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 If unsure, say N.
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721config FB_PXA_PARAMETERS
1722 bool "PXA LCD command line parameters"
1723 default n
1724 depends on FB_PXA
1725 ---help---
1726 Enable the use of kernel command line or module parameters
1727 to configure the physical properties of the LCD panel when
1728 using the PXA LCD driver.
1729
1730 This option allows you to override the panel parameters
1731 supplied by the platform in order to support multiple
1732 different models of flatpanel. If you will only be using a
1733 single model of flatpanel then you can safely leave this
1734 option disabled.
1735
1736 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1737
Mike Rapoport22caf042006-07-14 00:24:34 -07001738config FB_MBX
1739 tristate "2700G LCD framebuffer support"
1740 depends on FB && ARCH_PXA
1741 select FB_CFB_FILLRECT
1742 select FB_CFB_COPYAREA
1743 select FB_CFB_IMAGEBLIT
1744 ---help---
1745 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1746 Accelerator
1747
1748config FB_MBX_DEBUG
1749 bool "Enable debugging info via debugfs"
1750 depends on FB_MBX && DEBUG_FS
1751 default n
1752 ---help---
1753 Enable this if you want debugging information using the debug
1754 filesystem (debugfs)
1755
1756 If unsure, say N.
1757
Randy Dunlapecc41d52005-11-07 01:00:29 -08001758config FB_W100
1759 tristate "W100 frame buffer support"
1760 depends on FB && PXA_SHARPSL
1761 select FB_CFB_FILLRECT
1762 select FB_CFB_COPYAREA
1763 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001764 ---help---
1765 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
1766
1767 This driver is also available as a module ( = code which can be
1768 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001769 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001770 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001771
1772 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Arnaud Patard20fd5762005-09-09 13:10:07 -07001774config FB_S3C2410
1775 tristate "S3C2410 LCD framebuffer support"
1776 depends on FB && ARCH_S3C2410
1777 select FB_CFB_FILLRECT
1778 select FB_CFB_COPYAREA
1779 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07001780 ---help---
1781 Frame buffer driver for the built-in LCD controller in the Samsung
1782 S3C2410 processor.
1783
1784 This driver is also available as a module ( = code which can be
1785 inserted and removed from the running kernel whenever you want). The
1786 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001787 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07001788
1789 If unsure, say N.
1790config FB_S3C2410_DEBUG
1791 bool "S3C2410 lcd debug messages"
1792 depends on FB_S3C2410
1793 help
1794 Turn on debugging messages. Note that you can set/unset at run time
1795 through sysfs
1796
Ben Dooks5fc404e2007-02-20 13:58:21 -08001797config FB_SM501
1798 tristate "Silicon Motion SM501 framebuffer support"
1799 depends on FB && MFD_SM501
1800 select FB_CFB_FILLRECT
1801 select FB_CFB_COPYAREA
1802 select FB_CFB_IMAGEBLIT
1803 ---help---
1804 Frame buffer driver for the CRT and LCD controllers in the Silicon
1805 Motion SM501.
1806
1807 This driver is also available as a module ( = code which can be
1808 inserted and removed from the running kernel whenever you want). The
1809 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07001810 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08001811
1812 If unsure, say N.
1813
1814
Vitaly Wool36c93662006-07-03 00:24:19 -07001815config FB_PNX4008_DUM
1816 tristate "Display Update Module support on Philips PNX4008 board"
1817 depends on FB && ARCH_PNX4008
1818 ---help---
1819 Say Y here to enable support for PNX4008 Display Update Module (DUM)
1820
1821config FB_PNX4008_DUM_RGB
1822 tristate "RGB Framebuffer support on Philips PNX4008 board"
1823 depends on FB_PNX4008_DUM
1824 select FB_CFB_FILLRECT
1825 select FB_CFB_COPYAREA
1826 select FB_CFB_IMAGEBLIT
1827 ---help---
1828 Say Y here to enable support for PNX4008 RGB Framebuffer
1829
Paul Mackerrasa3d89982006-12-10 02:20:42 -08001830config FB_IBM_GXT4500
1831 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07001832 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08001833 select FB_CFB_FILLRECT
1834 select FB_CFB_COPYAREA
1835 select FB_CFB_IMAGEBLIT
1836 ---help---
1837 Say Y here to enable support for the IBM GXT4500P display
1838 adaptor, found on some IBM System P (pSeries) machines.
1839
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001840config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10001841 tristate "PS3 GPU framebuffer driver"
1842 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07001843 select FB_SYS_FILLRECT
1844 select FB_SYS_COPYAREA
1845 select FB_SYS_IMAGEBLIT
1846 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07001847 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001848 ---help---
1849 Include support for the virtual frame buffer in the PS3 platform.
1850
1851config FB_PS3_DEFAULT_SIZE_M
1852 int "PS3 default frame buffer size (in MiB)"
1853 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07001854 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001855 ---help---
1856 This is the default size (in MiB) of the virtual frame buffer in
1857 the PS3.
1858 The default value can be overridden on the kernel command line
1859 using the "ps3fb" option (e.g. "ps3fb=9M");
1860
Andrei Konovalov147394c2007-05-08 00:40:18 -07001861config FB_XILINX
1862 tristate "Xilinx frame buffer support"
1863 depends on FB && XILINX_VIRTEX
1864 select FB_CFB_FILLRECT
1865 select FB_CFB_COPYAREA
1866 select FB_CFB_IMAGEBLIT
1867 ---help---
1868 Include support for the Xilinx ML300/ML403 reference design
1869 framebuffer. ML300 carries a 640*480 LCD display on the board,
1870 ML403 uses a standard DB15 VGA connector.
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872config FB_VIRTUAL
1873 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
1874 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07001875 select FB_SYS_FILLRECT
1876 select FB_SYS_COPYAREA
1877 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07001878 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 ---help---
1880 This is a `virtual' frame buffer device. It operates on a chunk of
1881 unswappable kernel memory instead of on the memory of a graphics
1882 board. This means you cannot see any output sent to this frame
1883 buffer device, while it does consume precious memory. The main use
1884 of this frame buffer device is testing and debugging the frame
1885 buffer subsystem. Do NOT enable it for normal systems! To protect
1886 the innocent, it has to be enabled explicitly at boot time using the
1887 kernel option `video=vfb:'.
1888
1889 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07001890 module will be called vfb. In order to load it, you must use
1891 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00001894
Randy Dunlapf08f3892007-10-29 14:37:16 -07001895source "drivers/video/omap/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07001896
Randy Dunlap179b0252007-10-16 01:29:39 -07001897source "drivers/video/backlight/Kconfig"
1898source "drivers/video/display/Kconfig"
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900if VT
1901 source "drivers/video/console/Kconfig"
1902endif
1903
1904if FB || SGI_NEWPORT_CONSOLE
1905 source "drivers/video/logo/Kconfig"
1906endif
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908endmenu