blob: f1cc8996456fe05b888bf5731188e7db494db192 [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
Richard Purdie8f274892007-02-20 12:27:25 +00008source "drivers/video/backlight/Kconfig"
James Simmons2ee12162007-05-08 00:37:15 -07009source "drivers/video/display/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070010
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070011config VGASTATE
12 tristate
13 default n
14
Luming Yu23b0f012007-05-09 21:07:05 +080015config VIDEO_OUTPUT_CONTROL
16 tristate "Lowlevel video output switch controls"
17 default m
18 help
19 This framework adds support for low-level control of the video
20 output switch.
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022config FB
23 tristate "Support for frame buffer devices"
24 ---help---
25 The frame buffer device provides an abstraction for the graphics
26 hardware. It represents the frame buffer of some video hardware and
27 allows application software to access the graphics hardware through
28 a well-defined interface, so the software doesn't need to know
29 anything about the low-level (hardware register) stuff.
30
31 Frame buffer devices work identically across the different
32 architectures supported by Linux and make the implementation of
33 application programs easier and more portable; at this point, an X
34 server exists which uses the frame buffer device exclusively.
35 On several non-X86 architectures, the frame buffer device is the
36 only way to use the graphics hardware.
37
38 The device is accessed through special device nodes, usually located
39 in the /dev directory, i.e. /dev/fb*.
40
41 You need an utility program called fbset to make full use of frame
42 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
43 and the Framebuffer-HOWTO at
44 <http://www.tahallah.demon.co.uk/programming/prog.html> for more
45 information.
46
47 Say Y here and to the driver for your graphics board below if you
48 are compiling a kernel for a non-x86 architecture.
49
50 If you are compiling for the x86 architecture, you can say Y if you
51 want to play with it, but it is not essential. Please note that
52 running graphical applications that directly touch the hardware
53 (e.g. an accelerated X server) and that are not frame buffer
54 device-aware may cause unexpected results. If unsure, say N.
55
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
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700106config FB_SYS_FILLRECT
107 tristate
108 depends on FB
109 default n
110 ---help---
111 Include the sys_fillrect function for generic software rectangle
112 filling. This is used by drivers that don't provide their own
113 (accelerated) version and the framebuffer is in system RAM.
114
115config FB_SYS_COPYAREA
116 tristate
117 depends on FB
118 default n
119 ---help---
120 Include the sys_copyarea function for generic software area copying.
121 This is used by drivers that don't provide their own (accelerated)
122 version and the framebuffer is in system RAM.
123
124config FB_SYS_IMAGEBLIT
125 tristate
126 depends on FB
127 default n
128 ---help---
129 Include the sys_imageblit function for generic software image
130 blitting. This is used by drivers that don't provide their own
131 (accelerated) version and the framebuffer is in system RAM.
132
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700133config FB_SYS_FOPS
134 tristate
135 depends on FB
136 default n
137
Jaya Kumar60b59be2007-05-08 00:37:37 -0700138config FB_DEFERRED_IO
139 bool
140 depends on FB
141 default y
142
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800143config FB_SVGALIB
144 tristate
145 depends on FB
146 default n
147 ---help---
148 Common utility functions useful to fbdev drivers of VGA-based
149 cards.
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151config FB_MACMODES
152 tristate
153 depends on FB
154 default n
155
Michael Hanselmann5474c122006-06-25 05:47:08 -0700156config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700157 bool
158 depends on FB
159 select BACKLIGHT_LCD_SUPPORT
160 select BACKLIGHT_CLASS_DEVICE
161 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163config FB_MODE_HELPERS
164 bool "Enable Video Mode Handling Helpers"
165 depends on FB
166 default n
167 ---help---
168 This enables functions for handling video modes using the
169 Generalized Timing Formula and the EDID parser. A few drivers rely
170 on this feature such as the radeonfb, rivafb, and the i810fb. If
171 your driver does not take advantage of this feature, choosing Y will
172 just increase the kernel size by about 5K.
173
174config FB_TILEBLITTING
175 bool "Enable Tile Blitting Support"
176 depends on FB
177 default n
178 ---help---
179 This enables tile blitting. Tile blitting is a drawing technique
180 where the screen is divided into rectangular sections (tiles), whereas
181 the standard blitting divides the screen into pixels. Because the
182 default drawing element is a tile, drawing functions will be passed
183 parameters in terms of number of tiles instead of number of pixels.
184 For example, to draw a single character, instead of using bitmaps,
185 an index to an array of bitmaps will be used. To clear or move a
186 rectangular section of a screen, the rectangle will be described in
187 terms of number of tiles in the x- and y-axis.
188
189 This is particularly important to one driver, matroxfb. If
190 unsure, say N.
191
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700192comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000193 depends on FB
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195config FB_CIRRUS
196 tristate "Cirrus Logic support"
197 depends on FB && (ZORRO || PCI)
198 select FB_CFB_FILLRECT
199 select FB_CFB_COPYAREA
200 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 ---help---
202 This enables support for Cirrus Logic GD542x/543x based boards on
203 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
204
205 If you have a PCI-based system, this enables support for these
206 chips: GD-543x, GD-544x, GD-5480.
207
208 Please read the file <file:Documentation/fb/cirrusfb.txt>.
209
210 Say N unless you have such a graphics board or plan to get one
211 before you next recompile the kernel.
212
213config FB_PM2
214 tristate "Permedia2 support"
215 depends on FB && ((AMIGA && BROKEN) || PCI)
216 select FB_CFB_FILLRECT
217 select FB_CFB_COPYAREA
218 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 help
220 This is the frame buffer device driver for the Permedia2 AGP frame
221 buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
222 product page at
223 <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
224
225config FB_PM2_FIFO_DISCONNECT
226 bool "enable FIFO disconnect feature"
227 depends on FB_PM2 && PCI
228 help
229 Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
230
231config FB_ARMCLCD
232 tristate "ARM PrimeCell PL110 support"
233 depends on FB && ARM && ARM_AMBA
234 select FB_CFB_FILLRECT
235 select FB_CFB_COPYAREA
236 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 help
238 This framebuffer device driver is for the ARM PrimeCell PL110
239 Colour LCD controller. ARM PrimeCells provide the building
240 blocks for System on a Chip devices.
241
242 If you want to compile this as a module (=code which can be
243 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500244 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 will be called amba-clcd.
246
Marc Singer903e2bb2006-05-16 11:41:30 +0100247choice
248
249 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
250 prompt "LCD Panel"
251 default FB_ARMCLCD_SHARP_LQ035Q7DB02
252
253config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
254 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
255 help
256 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200257 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100258 an integrated HRTFT controller IC.
259 The native resolution is 240x320.
260
261config FB_ARMCLCD_SHARP_LQ057Q3DC02
262 bool "LogicPD LCD 5.7\" QVGA"
263 help
264 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
265 color QVGA, TFT panel. The LogicPD device includes an
266 The native resolution is 320x240.
267
268config FB_ARMCLCD_SHARP_LQ64D343
269 bool "LogicPD LCD 6.4\" VGA"
270 help
271 This is an implementation of the Sharp LQ64D343, a 6.4"
272 color VGA, TFT panel. The LogicPD device includes an
273 The native resolution is 640x480.
274
275config FB_ARMCLCD_SHARP_LQ10D368
276 bool "LogicPD LCD 10.4\" VGA"
277 help
278 This is an implementation of the Sharp LQ10D368, a 10.4"
279 color VGA, TFT panel. The LogicPD device includes an
280 The native resolution is 640x480.
281
282
283config FB_ARMCLCD_SHARP_LQ121S1DG41
284 bool "LogicPD LCD 12.1\" SVGA"
285 help
286 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
287 color SVGA, TFT panel. The LogicPD device includes an
288 The native resolution is 800x600.
289
290 This panel requires a clock rate may be an integer fraction
291 of the base LCDCLK frequency. The driver will select the
292 highest frequency available that is lower than the maximum
293 allowed. The panel may flicker if the clock rate is
294 slower than the recommended minimum.
295
296config FB_ARMCLCD_AUO_A070VW01_WIDE
297 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
298 help
299 This is an implementation of the AU Optronics, a 7.0"
300 WIDE Color. The native resolution is 234x480.
301
302config FB_ARMCLCD_HITACHI
303 bool "Hitachi Wide Screen 800x480"
304 help
305 This is an implementation of the Hitachi 800x480.
306
307endchoice
308
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310config FB_ACORN
311 bool "Acorn VIDC support"
312 depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
313 select FB_CFB_FILLRECT
314 select FB_CFB_COPYAREA
315 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 help
317 This is the frame buffer device driver for the Acorn VIDC graphics
318 hardware found in Acorn RISC PCs and other ARM-based machines. If
319 unsure, say N.
320
321config FB_CLPS711X
322 bool "CLPS711X LCD support"
323 depends on (FB = y) && ARM && ARCH_CLPS711X
324 select FB_CFB_FILLRECT
325 select FB_CFB_COPYAREA
326 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800327 help
328 Say Y to enable the Framebuffer driver for the CLPS7111 and
329 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331config FB_SA1100
332 bool "SA-1100 LCD support"
333 depends on (FB = y) && ARM && ARCH_SA1100
334 select FB_CFB_FILLRECT
335 select FB_CFB_COPYAREA
336 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 help
338 This is a framebuffer device for the SA-1100 LCD Controller.
339 See <http://www.linux-fbdev.org/> for information on framebuffer
340 devices.
341
342 If you plan to use the LCD display with your SA-1100 system, say
343 Y here.
344
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700345config FB_IMX
346 tristate "Motorola i.MX LCD support"
347 depends on FB && ARM && ARCH_IMX
348 select FB_CFB_FILLRECT
349 select FB_CFB_COPYAREA
350 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352config FB_CYBER2000
353 tristate "CyberPro 2000/2010/5000 support"
354 depends on FB && PCI && (BROKEN || !SPARC64)
355 select FB_CFB_FILLRECT
356 select FB_CFB_COPYAREA
357 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 help
359 This enables support for the Integraphics CyberPro 20x0 and 5000
360 VGA chips used in the Rebel.com Netwinder and other machines.
361 Say Y if you have a NetWinder or a graphics card containing this
362 device, otherwise say N.
363
364config FB_APOLLO
365 bool
366 depends on (FB = y) && APOLLO
367 default y
368 select FB_CFB_FILLRECT
369 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371config FB_Q40
372 bool
373 depends on (FB = y) && Q40
374 default y
375 select FB_CFB_FILLRECT
376 select FB_CFB_COPYAREA
377 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379config FB_AMIGA
380 tristate "Amiga native chipset support"
381 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 help
383 This is the frame buffer device driver for the builtin graphics
384 chipset found in Amigas.
385
386 To compile this driver as a module, choose M here: the
387 module will be called amifb.
388
389config FB_AMIGA_OCS
390 bool "Amiga OCS chipset support"
391 depends on FB_AMIGA
392 help
393 This enables support for the original Agnus and Denise video chips,
394 found in the Amiga 1000 and most A500's and A2000's. If you intend
395 to run Linux on any of these systems, say Y; otherwise say N.
396
397config FB_AMIGA_ECS
398 bool "Amiga ECS chipset support"
399 depends on FB_AMIGA
400 help
401 This enables support for the Enhanced Chip Set, found in later
402 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
403 you intend to run Linux on any of these systems, say Y; otherwise
404 say N.
405
406config FB_AMIGA_AGA
407 bool "Amiga AGA chipset support"
408 depends on FB_AMIGA
409 help
410 This enables support for the Advanced Graphics Architecture (also
411 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
412 and CD32. If you intend to run Linux on any of these systems, say Y;
413 otherwise say N.
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415config FB_FM2
416 bool "Amiga FrameMaster II/Rainbow II support"
417 depends on (FB = y) && ZORRO
418 select FB_CFB_FILLRECT
419 select FB_CFB_COPYAREA
420 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 help
422 This is the frame buffer device driver for the Amiga FrameMaster
423 card from BSC (exhibited 1992 but not shipped as a CBM product).
424
Jaya Kumar1154ea72005-06-21 17:17:04 -0700425config FB_ARC
426 tristate "Arc Monochrome LCD board support"
427 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700428 select FB_SYS_FILLRECT
429 select FB_SYS_COPYAREA
430 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700431 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700432 help
433 This enables support for the Arc Monochrome LCD board. The board
434 is based on the KS-108 lcd controller and is typically a matrix
435 of 2*n chips. This driver was tested with a 128x64 panel. This
436 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200437 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700438 this driver, say Y or M; otherwise say N. You must specify the
439 GPIO IO address to be used for setting control and data.
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441config FB_ATARI
442 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200443 depends on (FB = y) && ATARI
444 select FB_CFB_FILLRECT
445 select FB_CFB_COPYAREA
446 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 help
448 This is the frame buffer device driver for the builtin graphics
449 chipset found in Ataris.
450
451config FB_OF
452 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100453 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 select FB_CFB_FILLRECT
455 select FB_CFB_COPYAREA
456 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 select FB_MACMODES
458 help
459 Say Y if you want support with Open Firmware for your graphics
460 board.
461
462config FB_CONTROL
463 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700464 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 select FB_CFB_FILLRECT
466 select FB_CFB_COPYAREA
467 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 select FB_MACMODES
469 help
470 This driver supports a frame buffer for the graphics adapter in the
471 Power Macintosh 7300 and others.
472
473config FB_PLATINUM
474 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700475 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 select FB_CFB_FILLRECT
477 select FB_CFB_COPYAREA
478 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 select FB_MACMODES
480 help
481 This driver supports a frame buffer for the "platinum" graphics
482 adapter in some Power Macintoshes.
483
484config FB_VALKYRIE
485 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700486 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 select FB_CFB_FILLRECT
488 select FB_CFB_COPYAREA
489 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 select FB_MACMODES
491 help
492 This driver supports a frame buffer for the "valkyrie" graphics
493 adapter in some Power Macintoshes.
494
495config FB_CT65550
496 bool "Chips 65550 display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700497 depends on (FB = y) && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 select FB_CFB_FILLRECT
499 select FB_CFB_COPYAREA
500 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 help
502 This is the frame buffer device driver for the Chips & Technologies
503 65550 graphics chip in PowerBooks.
504
505config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800506 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 depends on (FB = y) && PCI
508 select FB_CFB_FILLRECT
509 select FB_CFB_COPYAREA
510 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700511 help
512 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514config FB_IMSTT
515 bool "IMS Twin Turbo display support"
516 depends on (FB = y) && PCI
517 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 select FB_MACMODES if PPC
519 help
520 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
521 many Macintosh and compatible computers.
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523config FB_VGA16
524 tristate "VGA 16-color graphics support"
525 depends on FB && (X86 || PPC)
526 select FB_CFB_FILLRECT
527 select FB_CFB_COPYAREA
528 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700529 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700530 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 help
532 This is the frame buffer device driver for VGA 16 color graphic
533 cards. Say Y if you have such a card.
534
535 To compile this driver as a module, choose M here: the
536 module will be called vga16fb.
537
538config FB_STI
539 tristate "HP STI frame buffer device support"
540 depends on FB && PARISC
541 select FB_CFB_FILLRECT
542 select FB_CFB_COPYAREA
543 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 default y
545 ---help---
546 STI refers to the HP "Standard Text Interface" which is a set of
547 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
548 Enabling this option will implement the linux framebuffer device
549 using calls to the STI BIOS routines for initialisation.
550
551 If you enable this option, you will get a planar framebuffer device
552 /dev/fb which will work on the most common HP graphic cards of the
553 NGLE family, including the artist chips (in the 7xx and Bxxx series),
554 HCRX, HCRX24, CRX, CRX24 and VisEG series.
555
556 It is safe to enable this option, so you should probably say "Y".
557
558config FB_MAC
559 bool "Generic Macintosh display support"
560 depends on (FB = y) && MAC
561 select FB_CFB_FILLRECT
562 select FB_CFB_COPYAREA
563 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 select FB_MACMODES
565
566# bool ' Apple DAFB display support' CONFIG_FB_DAFB
567config FB_HP300
568 bool
569 depends on (FB = y) && HP300
570 select FB_CFB_FILLRECT
571 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 default y
573
574config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700575 tristate "TGA/SFB+ framebuffer support"
576 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 select FB_CFB_FILLRECT
578 select FB_CFB_COPYAREA
579 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800580 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700581 ---help---
582 This is the frame buffer device driver for generic TGA and SFB+
583 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
584 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
585 TURBOchannel cards, also known as PMAGD-A, -B and -C.
586
587 Due to hardware limitations ZLX-E2 and E3 cards are not supported
588 for DECstation 5000/200 systems. Additionally due to firmware
589 limitations these cards may cause troubles with booting DECstation
590 5000/240 and /260 systems, but are fully supported under Linux if
591 you manage to get it going. ;-)
592
593 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700595config FB_UVESA
596 tristate "Userspace VESA VGA graphics support"
597 depends on FB && CONNECTOR
598 select FB_CFB_FILLRECT
599 select FB_CFB_COPYAREA
600 select FB_CFB_IMAGEBLIT
601 select FB_MODE_HELPERS
602 help
603 This is the frame buffer driver for generic VBE 2.0 compliant
604 graphic cards. It can also take advantage of VBE 3.0 features,
605 such as refresh rate adjustment.
606
607 This driver generally provides more features than vesafb but
608 requires a userspace helper application called 'v86d'. See
609 <file:Documentation/fb/uvesafb.txt> for more information.
610
611 If unsure, say N.
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613config FB_VESA
614 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800615 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 select FB_CFB_FILLRECT
617 select FB_CFB_COPYAREA
618 select FB_CFB_IMAGEBLIT
James Simmonsc9b2ec42006-12-08 02:40:57 -0800619 select VIDEO_SELECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 help
621 This is the frame buffer device driver for generic VESA 2.0
622 compliant graphic cards. The older VESA 1.2 cards are not supported.
623 You will get a boot time penguin logo at no additional cost. Please
624 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
625
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700626config FB_IMAC
627 bool "Intel-based Macintosh Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700628 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700629 select FB_CFB_FILLRECT
630 select FB_CFB_COPYAREA
631 select FB_CFB_IMAGEBLIT
632 help
633 This is the frame buffer device driver for the Intel-based Macintosh
634
Jaya Kumaraad09e52007-05-08 00:37:43 -0700635config FB_HECUBA
636 tristate "Hecuba board support"
637 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700638 select FB_SYS_FILLRECT
639 select FB_SYS_COPYAREA
640 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700641 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700642 select FB_DEFERRED_IO
643 help
644 This enables support for the Hecuba board. This driver was tested
645 with an E-Ink 800x600 display and x86 SBCs through a 16 bit GPIO
646 interface (8 bit data, 4 bit control). If you anticpate using
647 this driver, say Y or M; otherwise say N. You must specify the
648 GPIO IO address to be used for setting control and data.
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650config FB_HGA
651 tristate "Hercules mono graphics support"
652 depends on FB && X86
653 select FB_CFB_FILLRECT
654 select FB_CFB_COPYAREA
655 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 help
657 Say Y here if you have a Hercules mono graphics card.
658
659 To compile this driver as a module, choose M here: the
660 module will be called hgafb.
661
662 As this card technology is 15 years old, most people will answer N
663 here.
664
665config FB_HGA_ACCEL
666 bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
667 depends on FB_HGA && EXPERIMENTAL
668 ---help---
669 This will compile the Hercules mono graphics with
670 acceleration functions.
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672config FB_SGIVW
673 tristate "SGI Visual Workstation framebuffer support"
674 depends on FB && X86_VISWS
675 select FB_CFB_FILLRECT
676 select FB_CFB_COPYAREA
677 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 help
679 SGI Visual Workstation support for framebuffer graphics.
680
681config FB_GBE
682 bool "SGI Graphics Backend frame buffer support"
683 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
684 select FB_CFB_FILLRECT
685 select FB_CFB_COPYAREA
686 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 help
688 This is the frame buffer device driver for SGI Graphics Backend.
689 This chip is used in SGI O2 and Visual Workstation 320/540.
690
691config FB_GBE_MEM
692 int "Video memory size in MB"
693 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800694 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 help
696 This is the amount of memory reserved for the framebuffer,
697 which can be any value between 1MB and 8MB.
698
Mark Fortescue1a571982005-11-29 19:34:44 -0800699config FB_SBUS
700 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800701 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800702 help
703 Say Y if you want support for SBUS or UPA based frame buffer device.
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705config FB_BW2
706 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800707 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 select FB_CFB_FILLRECT
709 select FB_CFB_COPYAREA
710 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 help
712 This is the frame buffer device driver for the BWtwo frame buffer.
713
714config FB_CG3
715 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800716 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800717 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 select FB_CFB_COPYAREA
719 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 help
721 This is the frame buffer device driver for the CGthree frame buffer.
722
723config FB_CG6
724 bool "CGsix (GX,TurboGX) 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_COPYAREA
727 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 help
729 This is the frame buffer device driver for the CGsix (GX, TurboGX)
730 frame buffer.
731
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700732config FB_FFB
733 bool "Creator/Creator3D/Elite3D support"
734 depends on FB_SBUS && SPARC64
735 select FB_CFB_COPYAREA
736 select FB_CFB_IMAGEBLIT
737 help
738 This is the frame buffer device driver for the Creator, Creator3D,
739 and Elite3D graphics boards.
740
741config FB_TCX
742 bool "TCX (SS4/SS5 only) support"
743 depends on FB_SBUS
744 select FB_CFB_FILLRECT
745 select FB_CFB_COPYAREA
746 select FB_CFB_IMAGEBLIT
747 help
748 This is the frame buffer device driver for the TCX 24/8bit frame
749 buffer.
750
751config FB_CG14
752 bool "CGfourteen (SX) support"
753 depends on FB_SBUS
754 select FB_CFB_FILLRECT
755 select FB_CFB_COPYAREA
756 select FB_CFB_IMAGEBLIT
757 help
758 This is the frame buffer device driver for the CGfourteen frame
759 buffer on Desktop SPARCsystems with the SX graphics option.
760
761config FB_P9100
762 bool "P9100 (Sparcbook 3 only) support"
763 depends on FB_SBUS
764 select FB_CFB_FILLRECT
765 select FB_CFB_COPYAREA
766 select FB_CFB_IMAGEBLIT
767 help
768 This is the frame buffer device driver for the P9100 card
769 supported on Sparcbook 3 machines.
770
771config FB_LEO
772 bool "Leo (ZX) support"
773 depends on FB_SBUS
774 select FB_CFB_FILLRECT
775 select FB_CFB_COPYAREA
776 select FB_CFB_IMAGEBLIT
777 help
778 This is the frame buffer device driver for the SBUS-based Sun ZX
779 (leo) frame buffer cards.
780
781config FB_IGA
782 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700783 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700784 select FB_CFB_FILLRECT
785 select FB_CFB_COPYAREA
786 select FB_CFB_IMAGEBLIT
787 help
788 This is the framebuffer device for the INTERGRAPHICS 1680 and
789 successor frame buffer cards.
790
791config FB_XVR500
792 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700793 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700794 select FB_CFB_FILLRECT
795 select FB_CFB_COPYAREA
796 select FB_CFB_IMAGEBLIT
797 help
798 This is the framebuffer device for the Sun XVR-500 and similar
799 graphics cards based upon the 3DLABS Wildcat chipset. The driver
800 only works on sparc64 systems where the system firwmare has
801 mostly initialized the card already. It is treated as a
802 completely dumb framebuffer device.
803
804config FB_XVR2500
805 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700806 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700807 select FB_CFB_FILLRECT
808 select FB_CFB_COPYAREA
809 select FB_CFB_IMAGEBLIT
810 help
811 This is the framebuffer device for the Sun XVR-2500 and similar
812 graphics cards based upon the 3DLABS Wildcat chipset. The driver
813 only works on sparc64 systems where the system firwmare has
814 mostly initialized the card already. It is treated as a
815 completely dumb framebuffer device.
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817config FB_PVR2
818 tristate "NEC PowerVR 2 display support"
819 depends on FB && SH_DREAMCAST
820 select FB_CFB_FILLRECT
821 select FB_CFB_COPYAREA
822 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 ---help---
824 Say Y here if you have a PowerVR 2 card in your box. If you plan to
825 run linux on your Dreamcast, you will have to say Y here.
826 This driver may or may not work on other PowerVR 2 cards, but is
827 totally untested. Use at your own risk. If unsure, say N.
828
829 To compile this driver as a module, choose M here: the
830 module will be called pvr2fb.
831
832 You can pass several parameters to the driver at boot time or at
833 module load time. The parameters look like "video=pvr2:XXX", where
834 the meaning of XXX can be found at the end of the main source file
835 (<file:drivers/video/pvr2fb.c>). Please see the file
836 <file:Documentation/fb/pvr2fb.txt>.
837
838config FB_EPSON1355
839 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700840 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 select FB_CFB_FILLRECT
842 select FB_CFB_COPYAREA
843 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 help
845 Build in support for the SED1355 Epson Research Embedded RAMDAC
846 LCD/CRT Controller (since redesignated as the S1D13505) as a
847 framebuffer. Product specs at
848 <http://www.erd.epson.com/vdc/html/products.htm>.
849
Randy Dunlapecc41d52005-11-07 01:00:29 -0800850config FB_S1D13XXX
851 tristate "Epson S1D13XXX framebuffer support"
852 depends on FB
853 select FB_CFB_FILLRECT
854 select FB_CFB_COPYAREA
855 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800856 help
857 Support for S1D13XXX framebuffer device family (currently only
858 working with S1D13806). Product specs at
859 <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
860
Nicolas Ferre14340582007-05-10 22:23:26 -0700861config FB_ATMEL
862 tristate "AT91/AT32 LCD Controller support"
863 depends on FB && (ARCH_AT91SAM9261 || ARCH_AT91SAM9263 || AVR32)
864 select FB_CFB_FILLRECT
865 select FB_CFB_COPYAREA
866 select FB_CFB_IMAGEBLIT
867 help
868 This enables support for the AT91/AT32 LCD Controller.
869
870config FB_INTSRAM
871 bool "Frame Buffer in internal SRAM"
872 depends on FB_ATMEL && ARCH_AT91SAM9261
873 help
874 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
875 to let frame buffer in external SDRAM.
876
Nicolas Ferre250a2692007-07-21 04:37:59 -0700877config FB_ATMEL_STN
878 bool "Use a STN display with AT91/AT32 LCD Controller"
879 depends on FB_ATMEL && MACH_AT91SAM9261EK
880 default n
881 help
882 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
883 Controller. Say N if you want to connect a TFT.
884
885 If unsure, say N.
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887config FB_NVIDIA
888 tristate "nVidia Framebuffer Support"
889 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000890 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 select FB_MODE_HELPERS
892 select FB_CFB_FILLRECT
893 select FB_CFB_COPYAREA
894 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800895 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700896 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 help
898 This driver supports graphics boards with the nVidia chips, TNT
899 and newer. For very old chipsets, such as the RIVA128, then use
900 the rivafb.
901 Say Y if you have such a graphics board.
902
903 To compile this driver as a module, choose M here: the
904 module will be called nvidiafb.
905
906config FB_NVIDIA_I2C
907 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -0800908 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -0800909 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 help
911 This enables I2C support for nVidia Chipsets. This is used
912 only for getting EDID information from the attached display
913 allowing for robust video mode handling and switching.
914
915 Because fbdev-2.6 requires that drivers must be able to
916 independently validate video mode parameters, you should say Y
917 here.
918
Jean Delvare647f2e72007-05-10 22:23:29 -0700919config FB_NVIDIA_DEBUG
920 bool "Lots of debug output"
921 depends on FB_NVIDIA
922 default n
923 help
924 Say Y here if you want the nVidia driver to output all sorts
925 of debugging information to provide to the maintainer when
926 something goes wrong.
927
Michael Hanselmann5474c122006-06-25 05:47:08 -0700928config FB_NVIDIA_BACKLIGHT
929 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000930 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700931 default y
932 help
933 Say Y here if you want to control the backlight of your display.
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935config FB_RIVA
936 tristate "nVidia Riva support"
937 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000938 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 select FB_MODE_HELPERS
940 select FB_CFB_FILLRECT
941 select FB_CFB_COPYAREA
942 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800943 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700944 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 help
946 This driver supports graphics boards with the nVidia Riva/Geforce
947 chips.
948 Say Y if you have such a graphics board.
949
950 To compile this driver as a module, choose M here: the
951 module will be called rivafb.
952
953config FB_RIVA_I2C
954 bool "Enable DDC Support"
955 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -0800956 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 help
958 This enables I2C support for nVidia Chipsets. This is used
959 only for getting EDID information from the attached display
960 allowing for robust video mode handling and switching.
961
962 Because fbdev-2.6 requires that drivers must be able to
963 independently validate video mode parameters, you should say Y
964 here.
965
966config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -0700967 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 depends on FB_RIVA
969 default n
970 help
971 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +0200972 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 something goes wrong.
974
Michael Hanselmann5474c122006-06-25 05:47:08 -0700975config FB_RIVA_BACKLIGHT
976 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000977 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700978 default y
979 help
980 Say Y here if you want to control the backlight of your display.
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982config FB_I810
983 tristate "Intel 810/815 support (EXPERIMENTAL)"
Brian Gerst0d078f62005-10-30 14:59:20 -0800984 depends on FB && EXPERIMENTAL && PCI && X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 select AGP
986 select AGP_INTEL
987 select FB_MODE_HELPERS
988 select FB_CFB_FILLRECT
989 select FB_CFB_COPYAREA
990 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700991 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 help
993 This driver supports the on-board graphics built in to the Intel 810
994 and 815 chipsets. Say Y if you have and plan to use such a board.
995
996 To compile this driver as a module, choose M here: the
997 module will be called i810fb.
998
999 For more information, please read
1000 <file:Documentation/fb/intel810.txt>
1001
1002config FB_I810_GTF
1003 bool "use VESA Generalized Timing Formula"
1004 depends on FB_I810
1005 help
1006 If you say Y, then the VESA standard, Generalized Timing Formula
1007 or GTF, will be used to calculate the required video timing values
1008 per video mode. Since the GTF allows nondiscrete timings
1009 (nondiscrete being a range of values as opposed to discrete being a
1010 set of values), you'll be able to use any combination of horizontal
1011 and vertical resolutions, and vertical refresh rates without having
1012 to specify your own timing parameters. This is especially useful
1013 to maximize the performance of an aging display, or if you just
1014 have a display with nonstandard dimensions. A VESA compliant
1015 monitor is recommended, but can still work with non-compliant ones.
1016 If you need or want this, then select this option. The timings may
1017 not be compliant with Intel's recommended values. Use at your own
1018 risk.
1019
1020 If you say N, the driver will revert to discrete video timings
1021 using a set recommended by Intel in their documentation.
1022
1023 If unsure, say N.
1024
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001025config FB_I810_I2C
1026 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001027 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001028 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001029 help
1030
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001031config FB_LE80578
1032 tristate "Intel LE80578 (Vermilion) support"
1033 depends on FB && PCI && X86
1034 select FB_MODE_HELPERS
1035 select FB_CFB_FILLRECT
1036 select FB_CFB_COPYAREA
1037 select FB_CFB_IMAGEBLIT
1038 help
1039 This driver supports the LE80578 (Vermilion Range) chipset
1040
1041config FB_CARILLO_RANCH
1042 tristate "Intel Carillo Ranch support"
1043 depends on FB_LE80578 && FB && PCI && X86
1044 help
1045 This driver supports the LE80578 (Carillo Ranch) board
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047config FB_INTEL
Christian Merkled463d342006-08-22 10:07:01 +10001048 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
Dave Airlie0c187ad2006-03-23 11:20:08 +11001049 depends on FB && EXPERIMENTAL && PCI && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 select AGP
1051 select AGP_INTEL
1052 select FB_MODE_HELPERS
1053 select FB_CFB_FILLRECT
1054 select FB_CFB_COPYAREA
1055 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 help
1057 This driver supports the on-board graphics built in to the Intel
Christian Merkled463d342006-08-22 10:07:01 +10001058 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 Say Y if you have and plan to use such a board.
1060
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001061 If you say Y here and want DDC/I2C support you must first say Y to
1062 "I2C support" and "I2C bit-banging support" in the character devices
1063 section.
1064
1065 If you say M here then "I2C support" and "I2C bit-banging support"
1066 can be build either as modules or built-in.
1067
1068 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 module will be called intelfb.
1070
Christian Merkled463d342006-08-22 10:07:01 +10001071 For more information, please read <file:Documentation/fb/intelfb.txt>
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001074 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 depends on FB_INTEL
1076 ---help---
1077 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001078 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 something goes wrong.
1080
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001081config FB_INTEL_I2C
1082 bool "DDC/I2C for Intel framebuffer support"
1083 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001084 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001085 default y
1086 help
1087 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089config FB_MATROX
1090 tristate "Matrox acceleration"
1091 depends on FB && PCI
1092 select FB_CFB_FILLRECT
1093 select FB_CFB_COPYAREA
1094 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 select FB_TILEBLITTING
1096 select FB_MACMODES if PPC_PMAC
1097 ---help---
1098 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1099 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1100 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1101 Matrox G400, G450 or G550 card in your box.
1102
1103 To compile this driver as a module, choose M here: the
1104 module will be called matroxfb.
1105
1106 You can pass several parameters to the driver at boot time or at
1107 module load time. The parameters look like "video=matrox:XXX", and
1108 are described in <file:Documentation/fb/matroxfb.txt>.
1109
1110config FB_MATROX_MILLENIUM
1111 bool "Millennium I/II support"
1112 depends on FB_MATROX
1113 help
1114 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1115 video card. If you select "Advanced lowlevel driver options" below,
1116 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1117 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1118 also use font widths different from 8.
1119
1120config FB_MATROX_MYSTIQUE
1121 bool "Mystique support"
1122 depends on FB_MATROX
1123 help
1124 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1125 video card. If you select "Advanced lowlevel driver options" below,
1126 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1127 packed pixel and 32 bpp packed pixel. You can also use font widths
1128 different from 8.
1129
1130config FB_MATROX_G
1131 bool "G100/G200/G400/G450/G550 support"
1132 depends on FB_MATROX
1133 ---help---
1134 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1135 video card. If you select "Advanced lowlevel driver options", you
1136 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1137 pixel and 32 bpp packed pixel. You can also use font widths
1138 different from 8.
1139
1140 If you need support for G400 secondary head, you must first say Y to
1141 "I2C support" in the character devices section, and then to
1142 "Matrox I2C support" and "G400 second head support" here in the
1143 framebuffer section. G450/G550 secondary head and digital output
1144 are supported without additional modules.
1145
1146 The driver starts in monitor mode. You must use the matroxset tool
1147 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1148 swap primary and secondary head outputs, or to change output mode.
1149 Secondary head driver always start in 640x480 resolution and you
1150 must use fbset to change it.
1151
1152 Do not forget that second head supports only 16 and 32 bpp
1153 packed pixels, so it is a good idea to compile them into the kernel
1154 too. You can use only some font widths, as the driver uses generic
1155 painting procedures (the secondary head does not use acceleration
1156 engine).
1157
1158 G450/G550 hardware can display TV picture only from secondary CRTC,
1159 and it performs no scaling, so picture must have 525 or 625 lines.
1160
1161config FB_MATROX_I2C
1162 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001163 depends on FB_MATROX
1164 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 ---help---
1166 This drivers creates I2C buses which are needed for accessing the
1167 DDC (I2C) bus present on all Matroxes, an I2C bus which
1168 interconnects Matrox optional devices, like MGA-TVO on G200 and
1169 G400, and the secondary head DDC bus, present on G400 only.
1170
1171 You can say Y or M here if you want to experiment with monitor
1172 detection code. You must say Y or M here if you want to use either
1173 second head of G400 or MGA-TVO on G200 or G400.
1174
1175 If you compile it as module, it will create a module named
1176 i2c-matroxfb.
1177
1178config FB_MATROX_MAVEN
1179 tristate "G400 second head support"
1180 depends on FB_MATROX_G && FB_MATROX_I2C
1181 ---help---
1182 WARNING !!! This support does not work with G450 !!!
1183
1184 Say Y or M here if you want to use a secondary head (meaning two
1185 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1186 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1187 secondary head output is blanked while you are in X. With XFree
1188 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1189 the fbdev driver on first head and the fbdev driver on second head.
1190
1191 If you compile it as module, two modules are created,
1192 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1193 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1194 also load i2c-matroxfb to get it to run.
1195
1196 The driver starts in monitor mode and you must use the matroxset
1197 tool (available at
1198 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1199 PAL or NTSC or to swap primary and secondary head outputs.
1200 Secondary head driver also always start in 640x480 resolution, you
1201 must use fbset to change it.
1202
1203 Also do not forget that second head supports only 16 and 32 bpp
1204 packed pixels, so it is a good idea to compile them into the kernel
1205 too. You can use only some font widths, as the driver uses generic
1206 painting procedures (the secondary head does not use acceleration
1207 engine).
1208
1209config FB_MATROX_MULTIHEAD
1210 bool "Multihead support"
1211 depends on FB_MATROX
1212 ---help---
1213 Say Y here if you have more than one (supported) Matrox device in
1214 your computer and you want to use all of them for different monitors
1215 ("multihead"). If you have only one device, you should say N because
1216 the driver compiled with Y is larger and a bit slower, especially on
1217 ia32 (ix86).
1218
1219 If you said M to "Matrox unified accelerated driver" and N here, you
1220 will still be able to use several Matrox devices simultaneously:
1221 insert several instances of the module matroxfb into the kernel
1222 with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
1223 for the different Matrox devices. This method is slightly faster but
1224 uses 40 KB of kernel memory per Matrox card.
1225
1226 There is no need for enabling 'Matrox multihead support' if you have
1227 only one Matrox card in the box.
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229config FB_RADEON
1230 tristate "ATI Radeon display support"
1231 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001232 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 select FB_MODE_HELPERS
1234 select FB_CFB_FILLRECT
1235 select FB_CFB_COPYAREA
1236 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 select FB_MACMODES if PPC_OF
1238 help
1239 Choose this option if you want to use an ATI Radeon graphics card as
1240 a framebuffer device. There are both PCI and AGP versions. You
1241 don't need to choose this to run the Radeon in plain VGA mode.
1242
1243 If you say Y here and want DDC/I2C support you must first say Y to
1244 "I2C support" and "I2C bit-banging support" in the character devices
1245 section.
1246
1247 If you say M here then "I2C support" and "I2C bit-banging support"
1248 can be build either as modules or built-in.
1249
1250 There is a product page at
Antonino A. Daplasf510a3c2005-09-09 13:04:41 -07001251 http://apps.ati.com/ATIcompare/
Michael Hanselmann5474c122006-06-25 05:47:08 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253config FB_RADEON_I2C
1254 bool "DDC/I2C for ATI Radeon support"
1255 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001256 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 default y
1258 help
1259 Say Y here if you want DDC/I2C support for your Radeon board.
1260
Michael Hanselmann5474c122006-06-25 05:47:08 -07001261config FB_RADEON_BACKLIGHT
1262 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001263 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001264 default y
1265 help
1266 Say Y here if you want to control the backlight of your display.
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268config FB_RADEON_DEBUG
1269 bool "Lots of debug output from Radeon driver"
1270 depends on FB_RADEON
1271 default n
1272 help
1273 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001274 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 something goes wrong.
1276
1277config FB_ATY128
1278 tristate "ATI Rage128 display support"
1279 depends on FB && PCI
1280 select FB_CFB_FILLRECT
1281 select FB_CFB_COPYAREA
1282 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001283 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 select FB_MACMODES if PPC_PMAC
1285 help
1286 This driver supports graphics boards with the ATI Rage128 chips.
1287 Say Y if you have such a graphics board and read
1288 <file:Documentation/fb/aty128fb.txt>.
1289
1290 To compile this driver as a module, choose M here: the
1291 module will be called aty128fb.
1292
Michael Hanselmann5474c122006-06-25 05:47:08 -07001293config FB_ATY128_BACKLIGHT
1294 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001295 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001296 default y
1297 help
1298 Say Y here if you want to control the backlight of your display.
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300config FB_ATY
1301 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001302 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 select FB_CFB_FILLRECT
1304 select FB_CFB_COPYAREA
1305 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001306 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 select FB_MACMODES if PPC
1308 help
1309 This driver supports graphics boards with the ATI Mach64 chips.
1310 Say Y if you have such a graphics board.
1311
1312 To compile this driver as a module, choose M here: the
1313 module will be called atyfb.
1314
1315config FB_ATY_CT
1316 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1317 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001318 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 help
1320 Say Y here to support use of ATI's 64-bit Rage boards (or other
1321 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1322 framebuffer device. The ATI product support page for these boards
1323 is at <http://support.ati.com/products/pc/mach64/>.
1324
1325config FB_ATY_GENERIC_LCD
1326 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1327 depends on FB_ATY_CT
1328 help
1329 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1330 Rage XC, or Rage XL chipset.
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332config FB_ATY_GX
1333 bool "Mach64 GX support" if PCI
1334 depends on FB_ATY
1335 default y if ATARI
1336 help
1337 Say Y here to support use of the ATI Mach64 Graphics Expression
1338 board (or other boards based on the Mach64 GX chipset) as a
1339 framebuffer device. The ATI product support page for these boards
1340 is at
1341 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1342
Michael Hanselmann5474c122006-06-25 05:47:08 -07001343config FB_ATY_BACKLIGHT
1344 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001345 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001346 default y
1347 help
1348 Say Y here if you want to control the backlight of your display.
1349
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001350config FB_S3
1351 tristate "S3 Trio/Virge support"
1352 depends on FB && PCI
1353 select FB_CFB_FILLRECT
1354 select FB_CFB_COPYAREA
1355 select FB_CFB_IMAGEBLIT
1356 select FB_TILEBLITTING
1357 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001358 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001359 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001360 ---help---
1361 Driver for graphics boards with S3 Trio / S3 Virge chip.
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363config FB_SAVAGE
1364 tristate "S3 Savage support"
1365 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 select FB_MODE_HELPERS
1367 select FB_CFB_FILLRECT
1368 select FB_CFB_COPYAREA
1369 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001370 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 help
1372 This driver supports notebooks and computers with S3 Savage PCI/AGP
1373 chips.
1374
1375 Say Y if you have such a graphics card.
1376
1377 To compile this driver as a module, choose M here; the module
1378 will be called savagefb.
1379
1380config FB_SAVAGE_I2C
1381 bool "Enable DDC2 Support"
1382 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001383 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 help
1385 This enables I2C support for S3 Savage Chipsets. This is used
1386 only for getting EDID information from the attached display
1387 allowing for robust video mode handling and switching.
1388
1389 Because fbdev-2.6 requires that drivers must be able to
1390 independently validate video mode parameters, you should say Y
1391 here.
1392
1393config FB_SAVAGE_ACCEL
1394 bool "Enable Console Acceleration"
1395 depends on FB_SAVAGE
1396 default n
1397 help
1398 This option will compile in console acceleration support. If
1399 the resulting framebuffer console has bothersome glitches, then
1400 choose N here.
1401
1402config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001403 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 depends on FB && PCI
1405 select FB_CFB_FILLRECT
1406 select FB_CFB_COPYAREA
1407 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001409 This is the frame buffer device driver for the SiS 300, 315, 330
1410 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1411 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 To compile this driver as a module, choose M here; the module
1414 will be called sisfb.
1415
1416config FB_SIS_300
1417 bool "SiS 300 series support"
1418 depends on FB_SIS
1419 help
1420 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1421
1422config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001423 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 depends on FB_SIS
1425 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001426 Say Y here to support use of the SiS 315, 330 and 340 series
1427 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1428 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430config FB_NEOMAGIC
1431 tristate "NeoMagic display support"
1432 depends on FB && PCI
1433 select FB_MODE_HELPERS
1434 select FB_CFB_FILLRECT
1435 select FB_CFB_COPYAREA
1436 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001437 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 help
1439 This driver supports notebooks with NeoMagic PCI chips.
1440 Say Y if you have such a graphics card.
1441
1442 To compile this driver as a module, choose M here: the
1443 module will be called neofb.
1444
1445config FB_KYRO
1446 tristate "IMG Kyro support"
1447 depends on FB && PCI
1448 select FB_CFB_FILLRECT
1449 select FB_CFB_COPYAREA
1450 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 help
1452 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1453 graphics board.
1454
1455 To compile this driver as a module, choose M here: the
1456 module will be called kyrofb.
1457
1458config FB_3DFX
1459 tristate "3Dfx Banshee/Voodoo3 display support"
1460 depends on FB && PCI
1461 select FB_CFB_IMAGEBLIT
1462 select FB_CFB_FILLRECT
1463 select FB_CFB_COPYAREA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 help
1465 This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
1466 chips. Say Y if you have such a graphics board.
1467
1468 To compile this driver as a module, choose M here: the
1469 module will be called tdfxfb.
1470
1471config FB_3DFX_ACCEL
1472 bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
1473 depends on FB_3DFX && EXPERIMENTAL
1474 ---help---
1475 This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
1476 with acceleration functions.
1477
1478
1479config FB_VOODOO1
1480 tristate "3Dfx Voodoo Graphics (sst1) support"
1481 depends on FB && PCI
1482 select FB_CFB_FILLRECT
1483 select FB_CFB_COPYAREA
1484 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 ---help---
1486 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1487 Voodoo2 (cvg) based graphics card.
1488
1489 To compile this driver as a module, choose M here: the
1490 module will be called sstfb.
1491
1492 WARNING: Do not use any application that uses the 3D engine
1493 (namely glide) while using this driver.
1494 Please read the <file:Documentation/fb/README-sstfb.txt> for supported
1495 options and other important info support.
1496
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001497config FB_VT8623
1498 tristate "VIA VT8623 support"
1499 depends on FB && PCI
1500 select FB_CFB_FILLRECT
1501 select FB_CFB_COPYAREA
1502 select FB_CFB_IMAGEBLIT
1503 select FB_TILEBLITTING
1504 select FB_SVGALIB
1505 select VGASTATE
1506 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1507 ---help---
1508 Driver for CastleRock integrated graphics core in the
1509 VIA VT8623 [Apollo CLE266] chipset.
1510
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001511config FB_CYBLA
1512 tristate "Cyberblade/i1 support"
Knut Petersen44637a12006-01-09 15:04:20 +01001513 depends on FB && PCI && X86_32 && !64BIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001514 select FB_CFB_IMAGEBLIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001515 select VIDEO_SELECT
1516 ---help---
1517 This driver is supposed to support the Trident Cyberblade/i1
1518 graphics core integrated in the VIA VT8601A North Bridge,
1519 also known as VIA Apollo PLE133.
1520
1521 Status:
1522 - Developed, tested and working on EPIA 5000 and EPIA 800.
1523 - Does work reliable on all systems with CRT/LCD connected to
1524 normal VGA ports.
1525 - Should work on systems that do use the internal LCD port, but
1526 this is absolutely not tested.
1527
1528 Character imageblit, copyarea and rectangle fill are hw accelerated,
1529 ypan scrolling is used by default.
1530
1531 Please do read <file:Documentation/fb/cyblafb/*>.
1532
1533 To compile this driver as a module, choose M here: the
1534 module will be called cyblafb.
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536config FB_TRIDENT
1537 tristate "Trident support"
1538 depends on FB && PCI
1539 select FB_CFB_FILLRECT
1540 select FB_CFB_COPYAREA
1541 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 ---help---
1543 This driver is supposed to support graphics boards with the
1544 Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
1545 but also on some motherboards. For more information, read
1546 <file:Documentation/fb/tridentfb.txt>
1547
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001548 Cyberblade/i1 support will be removed soon, use the cyblafb driver
1549 instead.
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 Say Y if you have such a graphics board.
1552
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 To compile this driver as a module, choose M here: the
1555 module will be called tridentfb.
1556
1557config FB_TRIDENT_ACCEL
1558 bool "Trident Acceleration functions (EXPERIMENTAL)"
1559 depends on FB_TRIDENT && EXPERIMENTAL
1560 ---help---
1561 This will compile the Trident frame buffer device with
1562 acceleration functions.
1563
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001564config FB_ARK
1565 tristate "ARK 2000PV support"
1566 depends on FB && PCI
1567 select FB_CFB_FILLRECT
1568 select FB_CFB_COPYAREA
1569 select FB_CFB_IMAGEBLIT
1570 select FB_TILEBLITTING
1571 select FB_SVGALIB
1572 select VGASTATE
1573 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1574 ---help---
1575 Driver for PCI graphics boards with ARK 2000PV chip
1576 and ICS 5342 RAMDAC.
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001579 tristate "Permedia3 support (EXPERIMENTAL)"
1580 depends on FB && PCI && EXPERIMENTAL
1581 select FB_CFB_FILLRECT
1582 select FB_CFB_COPYAREA
1583 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 help
1585 This is the frame buffer device driver for the 3DLabs Permedia3
1586 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1587 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1588 and maybe other boards.
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590config FB_AU1100
1591 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001592 depends on (FB = y) && MIPS && SOC_AU1100
1593 select FB_CFB_FILLRECT
1594 select FB_CFB_COPYAREA
1595 select FB_CFB_IMAGEBLIT
1596 help
1597 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1598 various panels and CRTs by passing in kernel cmd line option
1599 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001601config FB_AU1200
1602 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001603 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001604 select FB_CFB_FILLRECT
1605 select FB_CFB_COPYAREA
1606 select FB_CFB_IMAGEBLIT
1607 help
1608 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1609 various panels and CRTs by passing in kernel cmd line option
1610 au1200fb:panel=<name>.
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612source "drivers/video/geode/Kconfig"
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614config FB_HIT
1615 tristate "HD64461 Frame Buffer support"
1616 depends on FB && HD64461
1617 select FB_CFB_FILLRECT
1618 select FB_CFB_COPYAREA
1619 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 help
1621 This is the frame buffer device driver for the Hitachi HD64461 LCD
1622 frame buffer card.
1623
1624config FB_PMAG_AA
1625 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001626 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 select FB_CFB_FILLRECT
1628 select FB_CFB_COPYAREA
1629 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 help
1631 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1632 used mainly in the MIPS-based DECstation series.
1633
1634config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001635 tristate "PMAG-BA TURBOchannel framebuffer support"
1636 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 select FB_CFB_FILLRECT
1638 select FB_CFB_COPYAREA
1639 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 help
1641 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1642 used mainly in the MIPS-based DECstation series.
1643
1644config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001645 tristate "PMAGB-B TURBOchannel framebuffer support"
1646 depends on TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 select FB_CFB_FILLRECT
1648 select FB_CFB_COPYAREA
1649 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 help
1651 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1652 in the MIPS-based DECstation series. The card is currently only
1653 supported in 1280x1024x8 mode.
1654
1655config FB_MAXINE
1656 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001657 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 select FB_CFB_FILLRECT
1659 select FB_CFB_COPYAREA
1660 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 help
1662 Support for the onboard framebuffer (1024x768x8) in the Personal
1663 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1664 Codename "Maxine").
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001667 bool "G364 frame buffer support"
1668 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 select FB_CFB_FILLRECT
1670 select FB_CFB_COPYAREA
1671 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 help
1673 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1674 Olivetti M700-10 systems.
1675
1676config FB_68328
1677 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001678 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 select FB_CFB_FILLRECT
1680 select FB_CFB_COPYAREA
1681 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 help
1683 Say Y here if you want to support the built-in frame buffer of
1684 the Motorola 68328 CPU family.
1685
1686config FB_PXA
1687 tristate "PXA LCD framebuffer support"
1688 depends on FB && ARCH_PXA
1689 select FB_CFB_FILLRECT
1690 select FB_CFB_COPYAREA
1691 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 ---help---
1693 Frame buffer driver for the built-in LCD controller in the Intel
1694 PXA2x0 processor.
1695
1696 This driver is also available as a module ( = code which can be
1697 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001698 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001699 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 If unsure, say N.
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703config FB_PXA_PARAMETERS
1704 bool "PXA LCD command line parameters"
1705 default n
1706 depends on FB_PXA
1707 ---help---
1708 Enable the use of kernel command line or module parameters
1709 to configure the physical properties of the LCD panel when
1710 using the PXA LCD driver.
1711
1712 This option allows you to override the panel parameters
1713 supplied by the platform in order to support multiple
1714 different models of flatpanel. If you will only be using a
1715 single model of flatpanel then you can safely leave this
1716 option disabled.
1717
1718 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1719
Mike Rapoport22caf042006-07-14 00:24:34 -07001720config FB_MBX
1721 tristate "2700G LCD framebuffer support"
1722 depends on FB && ARCH_PXA
1723 select FB_CFB_FILLRECT
1724 select FB_CFB_COPYAREA
1725 select FB_CFB_IMAGEBLIT
1726 ---help---
1727 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1728 Accelerator
1729
1730config FB_MBX_DEBUG
1731 bool "Enable debugging info via debugfs"
1732 depends on FB_MBX && DEBUG_FS
1733 default n
1734 ---help---
1735 Enable this if you want debugging information using the debug
1736 filesystem (debugfs)
1737
1738 If unsure, say N.
1739
Randy Dunlapecc41d52005-11-07 01:00:29 -08001740config FB_W100
1741 tristate "W100 frame buffer support"
1742 depends on FB && PXA_SHARPSL
1743 select FB_CFB_FILLRECT
1744 select FB_CFB_COPYAREA
1745 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001746 ---help---
1747 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
1748
1749 This driver is also available as a module ( = code which can be
1750 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001751 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001752 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001753
1754 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Arnaud Patard20fd5762005-09-09 13:10:07 -07001756config FB_S3C2410
1757 tristate "S3C2410 LCD framebuffer support"
1758 depends on FB && ARCH_S3C2410
1759 select FB_CFB_FILLRECT
1760 select FB_CFB_COPYAREA
1761 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07001762 ---help---
1763 Frame buffer driver for the built-in LCD controller in the Samsung
1764 S3C2410 processor.
1765
1766 This driver is also available as a module ( = code which can be
1767 inserted and removed from the running kernel whenever you want). The
1768 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001769 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07001770
1771 If unsure, say N.
1772config FB_S3C2410_DEBUG
1773 bool "S3C2410 lcd debug messages"
1774 depends on FB_S3C2410
1775 help
1776 Turn on debugging messages. Note that you can set/unset at run time
1777 through sysfs
1778
Ben Dooks5fc404e2007-02-20 13:58:21 -08001779config FB_SM501
1780 tristate "Silicon Motion SM501 framebuffer support"
1781 depends on FB && MFD_SM501
1782 select FB_CFB_FILLRECT
1783 select FB_CFB_COPYAREA
1784 select FB_CFB_IMAGEBLIT
1785 ---help---
1786 Frame buffer driver for the CRT and LCD controllers in the Silicon
1787 Motion SM501.
1788
1789 This driver is also available as a module ( = code which can be
1790 inserted and removed from the running kernel whenever you want). The
1791 module will be called sm501fb. If you want to compile it as a module,
1792 say M here and read <file:Documentation/modules.txt>.
1793
1794 If unsure, say N.
1795
1796
Vitaly Wool36c93662006-07-03 00:24:19 -07001797config FB_PNX4008_DUM
1798 tristate "Display Update Module support on Philips PNX4008 board"
1799 depends on FB && ARCH_PNX4008
1800 ---help---
1801 Say Y here to enable support for PNX4008 Display Update Module (DUM)
1802
1803config FB_PNX4008_DUM_RGB
1804 tristate "RGB Framebuffer support on Philips PNX4008 board"
1805 depends on FB_PNX4008_DUM
1806 select FB_CFB_FILLRECT
1807 select FB_CFB_COPYAREA
1808 select FB_CFB_IMAGEBLIT
1809 ---help---
1810 Say Y here to enable support for PNX4008 RGB Framebuffer
1811
Paul Mackerrasa3d89982006-12-10 02:20:42 -08001812config FB_IBM_GXT4500
1813 tristate "Framebuffer support for IBM GXT4500P adaptor"
1814 depends on PPC
1815 select FB_CFB_FILLRECT
1816 select FB_CFB_COPYAREA
1817 select FB_CFB_IMAGEBLIT
1818 ---help---
1819 Say Y here to enable support for the IBM GXT4500P display
1820 adaptor, found on some IBM System P (pSeries) machines.
1821
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001822config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10001823 tristate "PS3 GPU framebuffer driver"
1824 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07001825 select FB_SYS_FILLRECT
1826 select FB_SYS_COPYAREA
1827 select FB_SYS_IMAGEBLIT
1828 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07001829 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001830 ---help---
1831 Include support for the virtual frame buffer in the PS3 platform.
1832
1833config FB_PS3_DEFAULT_SIZE_M
1834 int "PS3 default frame buffer size (in MiB)"
1835 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07001836 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001837 ---help---
1838 This is the default size (in MiB) of the virtual frame buffer in
1839 the PS3.
1840 The default value can be overridden on the kernel command line
1841 using the "ps3fb" option (e.g. "ps3fb=9M");
1842
Andrei Konovalov147394c2007-05-08 00:40:18 -07001843config FB_XILINX
1844 tristate "Xilinx frame buffer support"
1845 depends on FB && XILINX_VIRTEX
1846 select FB_CFB_FILLRECT
1847 select FB_CFB_COPYAREA
1848 select FB_CFB_IMAGEBLIT
1849 ---help---
1850 Include support for the Xilinx ML300/ML403 reference design
1851 framebuffer. ML300 carries a 640*480 LCD display on the board,
1852 ML403 uses a standard DB15 VGA connector.
1853
Imre Deak8b08cf22007-07-17 04:05:54 -07001854if ARCH_OMAP
1855 source "drivers/video/omap/Kconfig"
1856endif
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858config FB_VIRTUAL
1859 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
1860 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07001861 select FB_SYS_FILLRECT
1862 select FB_SYS_COPYAREA
1863 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07001864 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 ---help---
1866 This is a `virtual' frame buffer device. It operates on a chunk of
1867 unswappable kernel memory instead of on the memory of a graphics
1868 board. This means you cannot see any output sent to this frame
1869 buffer device, while it does consume precious memory. The main use
1870 of this frame buffer device is testing and debugging the frame
1871 buffer subsystem. Do NOT enable it for normal systems! To protect
1872 the innocent, it has to be enabled explicitly at boot time using the
1873 kernel option `video=vfb:'.
1874
1875 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07001876 module will be called vfb. In order to load it, you must use
1877 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00001880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881if VT
1882 source "drivers/video/console/Kconfig"
1883endif
1884
1885if FB || SGI_NEWPORT_CONSOLE
1886 source "drivers/video/logo/Kconfig"
1887endif
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889endmenu
1890