blob: 61c0a03d33f2e141efa11dbcfda593440bca95ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
6
Richard Purdie8f274892007-02-20 12:27:25 +00007source "drivers/video/backlight/Kconfig"
James Simmons2ee12162007-05-08 00:37:15 -07008source "drivers/video/display/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010config FB
11 tristate "Support for frame buffer devices"
12 ---help---
13 The frame buffer device provides an abstraction for the graphics
14 hardware. It represents the frame buffer of some video hardware and
15 allows application software to access the graphics hardware through
16 a well-defined interface, so the software doesn't need to know
17 anything about the low-level (hardware register) stuff.
18
19 Frame buffer devices work identically across the different
20 architectures supported by Linux and make the implementation of
21 application programs easier and more portable; at this point, an X
22 server exists which uses the frame buffer device exclusively.
23 On several non-X86 architectures, the frame buffer device is the
24 only way to use the graphics hardware.
25
26 The device is accessed through special device nodes, usually located
27 in the /dev directory, i.e. /dev/fb*.
28
29 You need an utility program called fbset to make full use of frame
30 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
31 and the Framebuffer-HOWTO at
32 <http://www.tahallah.demon.co.uk/programming/prog.html> for more
33 information.
34
35 Say Y here and to the driver for your graphics board below if you
36 are compiling a kernel for a non-x86 architecture.
37
38 If you are compiling for the x86 architecture, you can say Y if you
39 want to play with it, but it is not essential. Please note that
40 running graphical applications that directly touch the hardware
41 (e.g. an accelerated X server) and that are not frame buffer
42 device-aware may cause unexpected results. If unsure, say N.
43
James Simmonse0e34ef2007-02-10 14:15:43 +000044config FIRMWARE_EDID
45 bool "Enable firmware EDID"
46 depends on FB
47 default n
48 ---help---
49 This enables access to the EDID transferred from the firmware.
50 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
51 transfers do not work for your driver and if you are using
52 nvidiafb, i810fb or savagefb.
53
54 In general, choosing Y for this option is safe. If you
55 experience extremely long delays while booting before you get
56 something on your display, try setting this to N. Matrox cards in
57 combination with certain motherboards and monitors are known to
58 suffer from this problem.
59
Dennis Munsiefc5891c2006-10-03 01:14:42 -070060config FB_DDC
61 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000062 depends on FB
63 select I2C_ALGOBIT
64 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070065 default n
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067config FB_CFB_FILLRECT
68 tristate
69 depends on FB
70 default n
71 ---help---
72 Include the cfb_fillrect function for generic software rectangle
73 filling. This is used by drivers that don't provide their own
74 (accelerated) version.
75
76config FB_CFB_COPYAREA
77 tristate
78 depends on FB
79 default n
80 ---help---
81 Include the cfb_copyarea function for generic software area copying.
82 This is used by drivers that don't provide their own (accelerated)
83 version.
84
85config FB_CFB_IMAGEBLIT
86 tristate
87 depends on FB
88 default n
89 ---help---
90 Include the cfb_imageblit function for generic software image
91 blitting. This is used by drivers that don't provide their own
92 (accelerated) version.
93
Jaya Kumar60b59be2007-05-08 00:37:37 -070094config FB_DEFERRED_IO
95 bool
96 depends on FB
97 default y
98
Ondrej Zajiceka2684222007-02-12 00:54:49 -080099config FB_SVGALIB
100 tristate
101 depends on FB
102 default n
103 ---help---
104 Common utility functions useful to fbdev drivers of VGA-based
105 cards.
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107config FB_MACMODES
108 tristate
109 depends on FB
110 default n
111
Michael Hanselmann5474c122006-06-25 05:47:08 -0700112config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700113 bool
114 depends on FB
115 select BACKLIGHT_LCD_SUPPORT
116 select BACKLIGHT_CLASS_DEVICE
117 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119config FB_MODE_HELPERS
120 bool "Enable Video Mode Handling Helpers"
121 depends on FB
122 default n
123 ---help---
124 This enables functions for handling video modes using the
125 Generalized Timing Formula and the EDID parser. A few drivers rely
126 on this feature such as the radeonfb, rivafb, and the i810fb. If
127 your driver does not take advantage of this feature, choosing Y will
128 just increase the kernel size by about 5K.
129
130config FB_TILEBLITTING
131 bool "Enable Tile Blitting Support"
132 depends on FB
133 default n
134 ---help---
135 This enables tile blitting. Tile blitting is a drawing technique
136 where the screen is divided into rectangular sections (tiles), whereas
137 the standard blitting divides the screen into pixels. Because the
138 default drawing element is a tile, drawing functions will be passed
139 parameters in terms of number of tiles instead of number of pixels.
140 For example, to draw a single character, instead of using bitmaps,
141 an index to an array of bitmaps will be used. To clear or move a
142 rectangular section of a screen, the rectangle will be described in
143 terms of number of tiles in the x- and y-axis.
144
145 This is particularly important to one driver, matroxfb. If
146 unsure, say N.
147
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700148comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000149 depends on FB
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151config FB_CIRRUS
152 tristate "Cirrus Logic support"
153 depends on FB && (ZORRO || PCI)
154 select FB_CFB_FILLRECT
155 select FB_CFB_COPYAREA
156 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ---help---
158 This enables support for Cirrus Logic GD542x/543x based boards on
159 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
160
161 If you have a PCI-based system, this enables support for these
162 chips: GD-543x, GD-544x, GD-5480.
163
164 Please read the file <file:Documentation/fb/cirrusfb.txt>.
165
166 Say N unless you have such a graphics board or plan to get one
167 before you next recompile the kernel.
168
169config FB_PM2
170 tristate "Permedia2 support"
171 depends on FB && ((AMIGA && BROKEN) || PCI)
172 select FB_CFB_FILLRECT
173 select FB_CFB_COPYAREA
174 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 help
176 This is the frame buffer device driver for the Permedia2 AGP frame
177 buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
178 product page at
179 <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
180
181config FB_PM2_FIFO_DISCONNECT
182 bool "enable FIFO disconnect feature"
183 depends on FB_PM2 && PCI
184 help
185 Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
186
187config FB_ARMCLCD
188 tristate "ARM PrimeCell PL110 support"
189 depends on FB && ARM && ARM_AMBA
190 select FB_CFB_FILLRECT
191 select FB_CFB_COPYAREA
192 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 help
194 This framebuffer device driver is for the ARM PrimeCell PL110
195 Colour LCD controller. ARM PrimeCells provide the building
196 blocks for System on a Chip devices.
197
198 If you want to compile this as a module (=code which can be
199 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500200 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 will be called amba-clcd.
202
Marc Singer903e2bb2006-05-16 11:41:30 +0100203choice
204
205 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
206 prompt "LCD Panel"
207 default FB_ARMCLCD_SHARP_LQ035Q7DB02
208
209config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
210 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
211 help
212 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200213 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100214 an integrated HRTFT controller IC.
215 The native resolution is 240x320.
216
217config FB_ARMCLCD_SHARP_LQ057Q3DC02
218 bool "LogicPD LCD 5.7\" QVGA"
219 help
220 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
221 color QVGA, TFT panel. The LogicPD device includes an
222 The native resolution is 320x240.
223
224config FB_ARMCLCD_SHARP_LQ64D343
225 bool "LogicPD LCD 6.4\" VGA"
226 help
227 This is an implementation of the Sharp LQ64D343, a 6.4"
228 color VGA, TFT panel. The LogicPD device includes an
229 The native resolution is 640x480.
230
231config FB_ARMCLCD_SHARP_LQ10D368
232 bool "LogicPD LCD 10.4\" VGA"
233 help
234 This is an implementation of the Sharp LQ10D368, a 10.4"
235 color VGA, TFT panel. The LogicPD device includes an
236 The native resolution is 640x480.
237
238
239config FB_ARMCLCD_SHARP_LQ121S1DG41
240 bool "LogicPD LCD 12.1\" SVGA"
241 help
242 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
243 color SVGA, TFT panel. The LogicPD device includes an
244 The native resolution is 800x600.
245
246 This panel requires a clock rate may be an integer fraction
247 of the base LCDCLK frequency. The driver will select the
248 highest frequency available that is lower than the maximum
249 allowed. The panel may flicker if the clock rate is
250 slower than the recommended minimum.
251
252config FB_ARMCLCD_AUO_A070VW01_WIDE
253 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
254 help
255 This is an implementation of the AU Optronics, a 7.0"
256 WIDE Color. The native resolution is 234x480.
257
258config FB_ARMCLCD_HITACHI
259 bool "Hitachi Wide Screen 800x480"
260 help
261 This is an implementation of the Hitachi 800x480.
262
263endchoice
264
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266config FB_ACORN
267 bool "Acorn VIDC support"
268 depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
269 select FB_CFB_FILLRECT
270 select FB_CFB_COPYAREA
271 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 help
273 This is the frame buffer device driver for the Acorn VIDC graphics
274 hardware found in Acorn RISC PCs and other ARM-based machines. If
275 unsure, say N.
276
277config FB_CLPS711X
278 bool "CLPS711X LCD support"
279 depends on (FB = y) && ARM && ARCH_CLPS711X
280 select FB_CFB_FILLRECT
281 select FB_CFB_COPYAREA
282 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800283 help
284 Say Y to enable the Framebuffer driver for the CLPS7111 and
285 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287config FB_SA1100
288 bool "SA-1100 LCD support"
289 depends on (FB = y) && ARM && ARCH_SA1100
290 select FB_CFB_FILLRECT
291 select FB_CFB_COPYAREA
292 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 help
294 This is a framebuffer device for the SA-1100 LCD Controller.
295 See <http://www.linux-fbdev.org/> for information on framebuffer
296 devices.
297
298 If you plan to use the LCD display with your SA-1100 system, say
299 Y here.
300
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700301config FB_IMX
302 tristate "Motorola i.MX LCD support"
303 depends on FB && ARM && ARCH_IMX
304 select FB_CFB_FILLRECT
305 select FB_CFB_COPYAREA
306 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308config FB_CYBER2000
309 tristate "CyberPro 2000/2010/5000 support"
310 depends on FB && PCI && (BROKEN || !SPARC64)
311 select FB_CFB_FILLRECT
312 select FB_CFB_COPYAREA
313 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 help
315 This enables support for the Integraphics CyberPro 20x0 and 5000
316 VGA chips used in the Rebel.com Netwinder and other machines.
317 Say Y if you have a NetWinder or a graphics card containing this
318 device, otherwise say N.
319
320config FB_APOLLO
321 bool
322 depends on (FB = y) && APOLLO
323 default y
324 select FB_CFB_FILLRECT
325 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327config FB_Q40
328 bool
329 depends on (FB = y) && Q40
330 default y
331 select FB_CFB_FILLRECT
332 select FB_CFB_COPYAREA
333 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335config FB_AMIGA
336 tristate "Amiga native chipset support"
337 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 help
339 This is the frame buffer device driver for the builtin graphics
340 chipset found in Amigas.
341
342 To compile this driver as a module, choose M here: the
343 module will be called amifb.
344
345config FB_AMIGA_OCS
346 bool "Amiga OCS chipset support"
347 depends on FB_AMIGA
348 help
349 This enables support for the original Agnus and Denise video chips,
350 found in the Amiga 1000 and most A500's and A2000's. If you intend
351 to run Linux on any of these systems, say Y; otherwise say N.
352
353config FB_AMIGA_ECS
354 bool "Amiga ECS chipset support"
355 depends on FB_AMIGA
356 help
357 This enables support for the Enhanced Chip Set, found in later
358 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
359 you intend to run Linux on any of these systems, say Y; otherwise
360 say N.
361
362config FB_AMIGA_AGA
363 bool "Amiga AGA chipset support"
364 depends on FB_AMIGA
365 help
366 This enables support for the Advanced Graphics Architecture (also
367 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
368 and CD32. If you intend to run Linux on any of these systems, say Y;
369 otherwise say N.
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371config FB_FM2
372 bool "Amiga FrameMaster II/Rainbow II support"
373 depends on (FB = y) && ZORRO
374 select FB_CFB_FILLRECT
375 select FB_CFB_COPYAREA
376 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 help
378 This is the frame buffer device driver for the Amiga FrameMaster
379 card from BSC (exhibited 1992 but not shipped as a CBM product).
380
Jaya Kumar1154ea72005-06-21 17:17:04 -0700381config FB_ARC
382 tristate "Arc Monochrome LCD board support"
383 depends on FB && X86
384 select FB_CFB_FILLRECT
385 select FB_CFB_COPYAREA
386 select FB_CFB_IMAGEBLIT
Jaya Kumar1154ea72005-06-21 17:17:04 -0700387 help
388 This enables support for the Arc Monochrome LCD board. The board
389 is based on the KS-108 lcd controller and is typically a matrix
390 of 2*n chips. This driver was tested with a 128x64 panel. This
391 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200392 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700393 this driver, say Y or M; otherwise say N. You must specify the
394 GPIO IO address to be used for setting control and data.
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396config FB_ATARI
397 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200398 depends on (FB = y) && ATARI
399 select FB_CFB_FILLRECT
400 select FB_CFB_COPYAREA
401 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 help
403 This is the frame buffer device driver for the builtin graphics
404 chipset found in Ataris.
405
406config FB_OF
407 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100408 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 select FB_CFB_FILLRECT
410 select FB_CFB_COPYAREA
411 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 select FB_MACMODES
413 help
414 Say Y if you want support with Open Firmware for your graphics
415 board.
416
417config FB_CONTROL
418 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700419 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 select FB_CFB_FILLRECT
421 select FB_CFB_COPYAREA
422 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 select FB_MACMODES
424 help
425 This driver supports a frame buffer for the graphics adapter in the
426 Power Macintosh 7300 and others.
427
428config FB_PLATINUM
429 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700430 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 select FB_CFB_FILLRECT
432 select FB_CFB_COPYAREA
433 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 select FB_MACMODES
435 help
436 This driver supports a frame buffer for the "platinum" graphics
437 adapter in some Power Macintoshes.
438
439config FB_VALKYRIE
440 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700441 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 select FB_CFB_FILLRECT
443 select FB_CFB_COPYAREA
444 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 select FB_MACMODES
446 help
447 This driver supports a frame buffer for the "valkyrie" graphics
448 adapter in some Power Macintoshes.
449
450config FB_CT65550
451 bool "Chips 65550 display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700452 depends on (FB = y) && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 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 Chips & Technologies
458 65550 graphics chip in PowerBooks.
459
460config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800461 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 depends on (FB = y) && PCI
463 select FB_CFB_FILLRECT
464 select FB_CFB_COPYAREA
465 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700466 help
467 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469config FB_IMSTT
470 bool "IMS Twin Turbo display support"
471 depends on (FB = y) && PCI
472 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 select FB_MACMODES if PPC
474 help
475 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
476 many Macintosh and compatible computers.
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478config FB_VGA16
479 tristate "VGA 16-color graphics support"
480 depends on FB && (X86 || PPC)
481 select FB_CFB_FILLRECT
482 select FB_CFB_COPYAREA
483 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 help
485 This is the frame buffer device driver for VGA 16 color graphic
486 cards. Say Y if you have such a card.
487
488 To compile this driver as a module, choose M here: the
489 module will be called vga16fb.
490
491config FB_STI
492 tristate "HP STI frame buffer device support"
493 depends on FB && PARISC
494 select FB_CFB_FILLRECT
495 select FB_CFB_COPYAREA
496 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 default y
498 ---help---
499 STI refers to the HP "Standard Text Interface" which is a set of
500 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
501 Enabling this option will implement the linux framebuffer device
502 using calls to the STI BIOS routines for initialisation.
503
504 If you enable this option, you will get a planar framebuffer device
505 /dev/fb which will work on the most common HP graphic cards of the
506 NGLE family, including the artist chips (in the 7xx and Bxxx series),
507 HCRX, HCRX24, CRX, CRX24 and VisEG series.
508
509 It is safe to enable this option, so you should probably say "Y".
510
511config FB_MAC
512 bool "Generic Macintosh display support"
513 depends on (FB = y) && MAC
514 select FB_CFB_FILLRECT
515 select FB_CFB_COPYAREA
516 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 select FB_MACMODES
518
519# bool ' Apple DAFB display support' CONFIG_FB_DAFB
520config FB_HP300
521 bool
522 depends on (FB = y) && HP300
523 select FB_CFB_FILLRECT
524 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 default y
526
527config FB_TGA
528 tristate "TGA framebuffer support"
529 depends on FB && ALPHA
530 select FB_CFB_FILLRECT
531 select FB_CFB_COPYAREA
532 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800533 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 help
535 This is the frame buffer device driver for generic TGA graphic
536 cards. Say Y if you have one of those.
537
538config FB_VESA
539 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800540 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 select FB_CFB_FILLRECT
542 select FB_CFB_COPYAREA
543 select FB_CFB_IMAGEBLIT
James Simmonsc9b2ec42006-12-08 02:40:57 -0800544 select VIDEO_SELECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 help
546 This is the frame buffer device driver for generic VESA 2.0
547 compliant graphic cards. The older VESA 1.2 cards are not supported.
548 You will get a boot time penguin logo at no additional cost. Please
549 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
550
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700551config FB_IMAC
552 bool "Intel-based Macintosh Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700553 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700554 select FB_CFB_FILLRECT
555 select FB_CFB_COPYAREA
556 select FB_CFB_IMAGEBLIT
557 help
558 This is the frame buffer device driver for the Intel-based Macintosh
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560config FB_HGA
561 tristate "Hercules mono graphics support"
562 depends on FB && X86
563 select FB_CFB_FILLRECT
564 select FB_CFB_COPYAREA
565 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 help
567 Say Y here if you have a Hercules mono graphics card.
568
569 To compile this driver as a module, choose M here: the
570 module will be called hgafb.
571
572 As this card technology is 15 years old, most people will answer N
573 here.
574
575config FB_HGA_ACCEL
576 bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
577 depends on FB_HGA && EXPERIMENTAL
578 ---help---
579 This will compile the Hercules mono graphics with
580 acceleration functions.
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582config FB_SGIVW
583 tristate "SGI Visual Workstation framebuffer support"
584 depends on FB && X86_VISWS
585 select FB_CFB_FILLRECT
586 select FB_CFB_COPYAREA
587 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 help
589 SGI Visual Workstation support for framebuffer graphics.
590
591config FB_GBE
592 bool "SGI Graphics Backend frame buffer support"
593 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
594 select FB_CFB_FILLRECT
595 select FB_CFB_COPYAREA
596 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 help
598 This is the frame buffer device driver for SGI Graphics Backend.
599 This chip is used in SGI O2 and Visual Workstation 320/540.
600
601config FB_GBE_MEM
602 int "Video memory size in MB"
603 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800604 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 help
606 This is the amount of memory reserved for the framebuffer,
607 which can be any value between 1MB and 8MB.
608
Mark Fortescue1a571982005-11-29 19:34:44 -0800609config FB_SBUS
610 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800611 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800612 help
613 Say Y if you want support for SBUS or UPA based frame buffer device.
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615config FB_BW2
616 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800617 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 select FB_CFB_FILLRECT
619 select FB_CFB_COPYAREA
620 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 help
622 This is the frame buffer device driver for the BWtwo frame buffer.
623
624config FB_CG3
625 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800626 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800627 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 select FB_CFB_COPYAREA
629 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 help
631 This is the frame buffer device driver for the CGthree frame buffer.
632
633config FB_CG6
634 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800635 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 select FB_CFB_COPYAREA
637 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 help
639 This is the frame buffer device driver for the CGsix (GX, TurboGX)
640 frame buffer.
641
642config FB_PVR2
643 tristate "NEC PowerVR 2 display support"
644 depends on FB && SH_DREAMCAST
645 select FB_CFB_FILLRECT
646 select FB_CFB_COPYAREA
647 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 ---help---
649 Say Y here if you have a PowerVR 2 card in your box. If you plan to
650 run linux on your Dreamcast, you will have to say Y here.
651 This driver may or may not work on other PowerVR 2 cards, but is
652 totally untested. Use at your own risk. If unsure, say N.
653
654 To compile this driver as a module, choose M here: the
655 module will be called pvr2fb.
656
657 You can pass several parameters to the driver at boot time or at
658 module load time. The parameters look like "video=pvr2:XXX", where
659 the meaning of XXX can be found at the end of the main source file
660 (<file:drivers/video/pvr2fb.c>). Please see the file
661 <file:Documentation/fb/pvr2fb.txt>.
662
663config FB_EPSON1355
664 bool "Epson 1355 framebuffer support"
665 depends on (FB = y) && (SUPERH || ARCH_CEIVA)
666 select FB_CFB_FILLRECT
667 select FB_CFB_COPYAREA
668 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 help
670 Build in support for the SED1355 Epson Research Embedded RAMDAC
671 LCD/CRT Controller (since redesignated as the S1D13505) as a
672 framebuffer. Product specs at
673 <http://www.erd.epson.com/vdc/html/products.htm>.
674
Randy Dunlapecc41d52005-11-07 01:00:29 -0800675config FB_S1D13XXX
676 tristate "Epson S1D13XXX framebuffer support"
677 depends on FB
678 select FB_CFB_FILLRECT
679 select FB_CFB_COPYAREA
680 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800681 help
682 Support for S1D13XXX framebuffer device family (currently only
683 working with S1D13806). Product specs at
684 <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686config FB_NVIDIA
687 tristate "nVidia Framebuffer Support"
688 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000689 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 select FB_MODE_HELPERS
691 select FB_CFB_FILLRECT
692 select FB_CFB_COPYAREA
693 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800694 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 help
696 This driver supports graphics boards with the nVidia chips, TNT
697 and newer. For very old chipsets, such as the RIVA128, then use
698 the rivafb.
699 Say Y if you have such a graphics board.
700
701 To compile this driver as a module, choose M here: the
702 module will be called nvidiafb.
703
704config FB_NVIDIA_I2C
705 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -0800706 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -0800707 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 help
709 This enables I2C support for nVidia Chipsets. This is used
710 only for getting EDID information from the attached display
711 allowing for robust video mode handling and switching.
712
713 Because fbdev-2.6 requires that drivers must be able to
714 independently validate video mode parameters, you should say Y
715 here.
716
Michael Hanselmann5474c122006-06-25 05:47:08 -0700717config FB_NVIDIA_BACKLIGHT
718 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000719 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700720 default y
721 help
722 Say Y here if you want to control the backlight of your display.
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724config FB_RIVA
725 tristate "nVidia Riva support"
726 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +0000727 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 select FB_MODE_HELPERS
729 select FB_CFB_FILLRECT
730 select FB_CFB_COPYAREA
731 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800732 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 help
734 This driver supports graphics boards with the nVidia Riva/Geforce
735 chips.
736 Say Y if you have such a graphics board.
737
738 To compile this driver as a module, choose M here: the
739 module will be called rivafb.
740
741config FB_RIVA_I2C
742 bool "Enable DDC Support"
743 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -0800744 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 help
746 This enables I2C support for nVidia Chipsets. This is used
747 only for getting EDID information from the attached display
748 allowing for robust video mode handling and switching.
749
750 Because fbdev-2.6 requires that drivers must be able to
751 independently validate video mode parameters, you should say Y
752 here.
753
754config FB_RIVA_DEBUG
755 bool "Lots of debug output from Riva(nVidia) driver"
756 depends on FB_RIVA
757 default n
758 help
759 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +0200760 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 something goes wrong.
762
Michael Hanselmann5474c122006-06-25 05:47:08 -0700763config FB_RIVA_BACKLIGHT
764 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +0000765 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -0700766 default y
767 help
768 Say Y here if you want to control the backlight of your display.
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770config FB_I810
771 tristate "Intel 810/815 support (EXPERIMENTAL)"
Brian Gerst0d078f62005-10-30 14:59:20 -0800772 depends on FB && EXPERIMENTAL && PCI && X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 select AGP
774 select AGP_INTEL
775 select FB_MODE_HELPERS
776 select FB_CFB_FILLRECT
777 select FB_CFB_COPYAREA
778 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 help
780 This driver supports the on-board graphics built in to the Intel 810
781 and 815 chipsets. Say Y if you have and plan to use such a board.
782
783 To compile this driver as a module, choose M here: the
784 module will be called i810fb.
785
786 For more information, please read
787 <file:Documentation/fb/intel810.txt>
788
789config FB_I810_GTF
790 bool "use VESA Generalized Timing Formula"
791 depends on FB_I810
792 help
793 If you say Y, then the VESA standard, Generalized Timing Formula
794 or GTF, will be used to calculate the required video timing values
795 per video mode. Since the GTF allows nondiscrete timings
796 (nondiscrete being a range of values as opposed to discrete being a
797 set of values), you'll be able to use any combination of horizontal
798 and vertical resolutions, and vertical refresh rates without having
799 to specify your own timing parameters. This is especially useful
800 to maximize the performance of an aging display, or if you just
801 have a display with nonstandard dimensions. A VESA compliant
802 monitor is recommended, but can still work with non-compliant ones.
803 If you need or want this, then select this option. The timings may
804 not be compliant with Intel's recommended values. Use at your own
805 risk.
806
807 If you say N, the driver will revert to discrete video timings
808 using a set recommended by Intel in their documentation.
809
810 If unsure, say N.
811
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -0700812config FB_I810_I2C
813 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -0700814 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -0700815 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -0700816 help
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818config FB_INTEL
Christian Merkled463d342006-08-22 10:07:01 +1000819 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
Dave Airlie0c187ad2006-03-23 11:20:08 +1100820 depends on FB && EXPERIMENTAL && PCI && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 select AGP
822 select AGP_INTEL
823 select FB_MODE_HELPERS
824 select FB_CFB_FILLRECT
825 select FB_CFB_COPYAREA
826 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 help
828 This driver supports the on-board graphics built in to the Intel
Christian Merkled463d342006-08-22 10:07:01 +1000829 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 Say Y if you have and plan to use such a board.
831
Dennis Munsie1f6e8442006-06-20 14:55:55 -0400832 If you say Y here and want DDC/I2C support you must first say Y to
833 "I2C support" and "I2C bit-banging support" in the character devices
834 section.
835
836 If you say M here then "I2C support" and "I2C bit-banging support"
837 can be build either as modules or built-in.
838
839 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 module will be called intelfb.
841
Christian Merkled463d342006-08-22 10:07:01 +1000842 For more information, please read <file:Documentation/fb/intelfb.txt>
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -0400845 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 depends on FB_INTEL
847 ---help---
848 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +0200849 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 something goes wrong.
851
Dennis Munsie1f6e8442006-06-20 14:55:55 -0400852config FB_INTEL_I2C
853 bool "DDC/I2C for Intel framebuffer support"
854 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -0800855 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -0400856 default y
857 help
858 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860config FB_MATROX
861 tristate "Matrox acceleration"
862 depends on FB && PCI
863 select FB_CFB_FILLRECT
864 select FB_CFB_COPYAREA
865 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 select FB_TILEBLITTING
867 select FB_MACMODES if PPC_PMAC
868 ---help---
869 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
870 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
871 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
872 Matrox G400, G450 or G550 card in your box.
873
874 To compile this driver as a module, choose M here: the
875 module will be called matroxfb.
876
877 You can pass several parameters to the driver at boot time or at
878 module load time. The parameters look like "video=matrox:XXX", and
879 are described in <file:Documentation/fb/matroxfb.txt>.
880
881config FB_MATROX_MILLENIUM
882 bool "Millennium I/II support"
883 depends on FB_MATROX
884 help
885 Say Y here if you have a Matrox Millennium or Matrox Millennium II
886 video card. If you select "Advanced lowlevel driver options" below,
887 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
888 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
889 also use font widths different from 8.
890
891config FB_MATROX_MYSTIQUE
892 bool "Mystique support"
893 depends on FB_MATROX
894 help
895 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
896 video card. If you select "Advanced lowlevel driver options" below,
897 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
898 packed pixel and 32 bpp packed pixel. You can also use font widths
899 different from 8.
900
901config FB_MATROX_G
902 bool "G100/G200/G400/G450/G550 support"
903 depends on FB_MATROX
904 ---help---
905 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
906 video card. If you select "Advanced lowlevel driver options", you
907 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
908 pixel and 32 bpp packed pixel. You can also use font widths
909 different from 8.
910
911 If you need support for G400 secondary head, you must first say Y to
912 "I2C support" in the character devices section, and then to
913 "Matrox I2C support" and "G400 second head support" here in the
914 framebuffer section. G450/G550 secondary head and digital output
915 are supported without additional modules.
916
917 The driver starts in monitor mode. You must use the matroxset tool
918 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
919 swap primary and secondary head outputs, or to change output mode.
920 Secondary head driver always start in 640x480 resolution and you
921 must use fbset to change it.
922
923 Do not forget that second head supports only 16 and 32 bpp
924 packed pixels, so it is a good idea to compile them into the kernel
925 too. You can use only some font widths, as the driver uses generic
926 painting procedures (the secondary head does not use acceleration
927 engine).
928
929 G450/G550 hardware can display TV picture only from secondary CRTC,
930 and it performs no scaling, so picture must have 525 or 625 lines.
931
932config FB_MATROX_I2C
933 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -0800934 depends on FB_MATROX
935 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 ---help---
937 This drivers creates I2C buses which are needed for accessing the
938 DDC (I2C) bus present on all Matroxes, an I2C bus which
939 interconnects Matrox optional devices, like MGA-TVO on G200 and
940 G400, and the secondary head DDC bus, present on G400 only.
941
942 You can say Y or M here if you want to experiment with monitor
943 detection code. You must say Y or M here if you want to use either
944 second head of G400 or MGA-TVO on G200 or G400.
945
946 If you compile it as module, it will create a module named
947 i2c-matroxfb.
948
949config FB_MATROX_MAVEN
950 tristate "G400 second head support"
951 depends on FB_MATROX_G && FB_MATROX_I2C
952 ---help---
953 WARNING !!! This support does not work with G450 !!!
954
955 Say Y or M here if you want to use a secondary head (meaning two
956 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
957 head is not compatible with accelerated XFree 3.3.x SVGA servers -
958 secondary head output is blanked while you are in X. With XFree
959 3.9.17 preview you can use both heads if you use SVGA over fbdev or
960 the fbdev driver on first head and the fbdev driver on second head.
961
962 If you compile it as module, two modules are created,
963 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
964 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
965 also load i2c-matroxfb to get it to run.
966
967 The driver starts in monitor mode and you must use the matroxset
968 tool (available at
969 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
970 PAL or NTSC or to swap primary and secondary head outputs.
971 Secondary head driver also always start in 640x480 resolution, you
972 must use fbset to change it.
973
974 Also do not forget that second head supports only 16 and 32 bpp
975 packed pixels, so it is a good idea to compile them into the kernel
976 too. You can use only some font widths, as the driver uses generic
977 painting procedures (the secondary head does not use acceleration
978 engine).
979
980config FB_MATROX_MULTIHEAD
981 bool "Multihead support"
982 depends on FB_MATROX
983 ---help---
984 Say Y here if you have more than one (supported) Matrox device in
985 your computer and you want to use all of them for different monitors
986 ("multihead"). If you have only one device, you should say N because
987 the driver compiled with Y is larger and a bit slower, especially on
988 ia32 (ix86).
989
990 If you said M to "Matrox unified accelerated driver" and N here, you
991 will still be able to use several Matrox devices simultaneously:
992 insert several instances of the module matroxfb into the kernel
993 with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
994 for the different Matrox devices. This method is slightly faster but
995 uses 40 KB of kernel memory per Matrox card.
996
997 There is no need for enabling 'Matrox multihead support' if you have
998 only one Matrox card in the box.
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000config FB_RADEON
1001 tristate "ATI Radeon display support"
1002 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001003 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 select FB_MODE_HELPERS
1005 select FB_CFB_FILLRECT
1006 select FB_CFB_COPYAREA
1007 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 select FB_MACMODES if PPC_OF
1009 help
1010 Choose this option if you want to use an ATI Radeon graphics card as
1011 a framebuffer device. There are both PCI and AGP versions. You
1012 don't need to choose this to run the Radeon in plain VGA mode.
1013
1014 If you say Y here and want DDC/I2C support you must first say Y to
1015 "I2C support" and "I2C bit-banging support" in the character devices
1016 section.
1017
1018 If you say M here then "I2C support" and "I2C bit-banging support"
1019 can be build either as modules or built-in.
1020
1021 There is a product page at
Antonino A. Daplasf510a3c2005-09-09 13:04:41 -07001022 http://apps.ati.com/ATIcompare/
Michael Hanselmann5474c122006-06-25 05:47:08 -07001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024config FB_RADEON_I2C
1025 bool "DDC/I2C for ATI Radeon support"
1026 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001027 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 default y
1029 help
1030 Say Y here if you want DDC/I2C support for your Radeon board.
1031
Michael Hanselmann5474c122006-06-25 05:47:08 -07001032config FB_RADEON_BACKLIGHT
1033 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001034 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001035 default y
1036 help
1037 Say Y here if you want to control the backlight of your display.
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039config FB_RADEON_DEBUG
1040 bool "Lots of debug output from Radeon driver"
1041 depends on FB_RADEON
1042 default n
1043 help
1044 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001045 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 something goes wrong.
1047
1048config FB_ATY128
1049 tristate "ATI Rage128 display support"
1050 depends on FB && PCI
1051 select FB_CFB_FILLRECT
1052 select FB_CFB_COPYAREA
1053 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001054 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 select FB_MACMODES if PPC_PMAC
1056 help
1057 This driver supports graphics boards with the ATI Rage128 chips.
1058 Say Y if you have such a graphics board and read
1059 <file:Documentation/fb/aty128fb.txt>.
1060
1061 To compile this driver as a module, choose M here: the
1062 module will be called aty128fb.
1063
Michael Hanselmann5474c122006-06-25 05:47:08 -07001064config FB_ATY128_BACKLIGHT
1065 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001066 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001067 default y
1068 help
1069 Say Y here if you want to control the backlight of your display.
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071config FB_ATY
1072 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001073 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 select FB_CFB_FILLRECT
1075 select FB_CFB_COPYAREA
1076 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001077 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 select FB_MACMODES if PPC
1079 help
1080 This driver supports graphics boards with the ATI Mach64 chips.
1081 Say Y if you have such a graphics board.
1082
1083 To compile this driver as a module, choose M here: the
1084 module will be called atyfb.
1085
1086config FB_ATY_CT
1087 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1088 depends on PCI && FB_ATY
1089 default y if SPARC64 && FB_PCI
1090 help
1091 Say Y here to support use of ATI's 64-bit Rage boards (or other
1092 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1093 framebuffer device. The ATI product support page for these boards
1094 is at <http://support.ati.com/products/pc/mach64/>.
1095
1096config FB_ATY_GENERIC_LCD
1097 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1098 depends on FB_ATY_CT
1099 help
1100 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1101 Rage XC, or Rage XL chipset.
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103config FB_ATY_GX
1104 bool "Mach64 GX support" if PCI
1105 depends on FB_ATY
1106 default y if ATARI
1107 help
1108 Say Y here to support use of the ATI Mach64 Graphics Expression
1109 board (or other boards based on the Mach64 GX chipset) as a
1110 framebuffer device. The ATI product support page for these boards
1111 is at
1112 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1113
Michael Hanselmann5474c122006-06-25 05:47:08 -07001114config FB_ATY_BACKLIGHT
1115 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001116 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001117 default y
1118 help
1119 Say Y here if you want to control the backlight of your display.
1120
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001121config FB_S3
1122 tristate "S3 Trio/Virge support"
1123 depends on FB && PCI
1124 select FB_CFB_FILLRECT
1125 select FB_CFB_COPYAREA
1126 select FB_CFB_IMAGEBLIT
1127 select FB_TILEBLITTING
1128 select FB_SVGALIB
1129 ---help---
1130 Driver for graphics boards with S3 Trio / S3 Virge chip.
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132config FB_SAVAGE
1133 tristate "S3 Savage support"
1134 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 select FB_MODE_HELPERS
1136 select FB_CFB_FILLRECT
1137 select FB_CFB_COPYAREA
1138 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 help
1140 This driver supports notebooks and computers with S3 Savage PCI/AGP
1141 chips.
1142
1143 Say Y if you have such a graphics card.
1144
1145 To compile this driver as a module, choose M here; the module
1146 will be called savagefb.
1147
1148config FB_SAVAGE_I2C
1149 bool "Enable DDC2 Support"
1150 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001151 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 help
1153 This enables I2C support for S3 Savage Chipsets. This is used
1154 only for getting EDID information from the attached display
1155 allowing for robust video mode handling and switching.
1156
1157 Because fbdev-2.6 requires that drivers must be able to
1158 independently validate video mode parameters, you should say Y
1159 here.
1160
1161config FB_SAVAGE_ACCEL
1162 bool "Enable Console Acceleration"
1163 depends on FB_SAVAGE
1164 default n
1165 help
1166 This option will compile in console acceleration support. If
1167 the resulting framebuffer console has bothersome glitches, then
1168 choose N here.
1169
1170config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001171 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 depends on FB && PCI
1173 select FB_CFB_FILLRECT
1174 select FB_CFB_COPYAREA
1175 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001177 This is the frame buffer device driver for the SiS 300, 315, 330
1178 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1179 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 To compile this driver as a module, choose M here; the module
1182 will be called sisfb.
1183
1184config FB_SIS_300
1185 bool "SiS 300 series support"
1186 depends on FB_SIS
1187 help
1188 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1189
1190config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001191 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 depends on FB_SIS
1193 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001194 Say Y here to support use of the SiS 315, 330 and 340 series
1195 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1196 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198config FB_NEOMAGIC
1199 tristate "NeoMagic display support"
1200 depends on FB && PCI
1201 select FB_MODE_HELPERS
1202 select FB_CFB_FILLRECT
1203 select FB_CFB_COPYAREA
1204 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 help
1206 This driver supports notebooks with NeoMagic PCI chips.
1207 Say Y if you have such a graphics card.
1208
1209 To compile this driver as a module, choose M here: the
1210 module will be called neofb.
1211
1212config FB_KYRO
1213 tristate "IMG Kyro support"
1214 depends on FB && PCI
1215 select FB_CFB_FILLRECT
1216 select FB_CFB_COPYAREA
1217 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 help
1219 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1220 graphics board.
1221
1222 To compile this driver as a module, choose M here: the
1223 module will be called kyrofb.
1224
1225config FB_3DFX
1226 tristate "3Dfx Banshee/Voodoo3 display support"
1227 depends on FB && PCI
1228 select FB_CFB_IMAGEBLIT
1229 select FB_CFB_FILLRECT
1230 select FB_CFB_COPYAREA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 help
1232 This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
1233 chips. Say Y if you have such a graphics board.
1234
1235 To compile this driver as a module, choose M here: the
1236 module will be called tdfxfb.
1237
1238config FB_3DFX_ACCEL
1239 bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
1240 depends on FB_3DFX && EXPERIMENTAL
1241 ---help---
1242 This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
1243 with acceleration functions.
1244
1245
1246config FB_VOODOO1
1247 tristate "3Dfx Voodoo Graphics (sst1) support"
1248 depends on FB && PCI
1249 select FB_CFB_FILLRECT
1250 select FB_CFB_COPYAREA
1251 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 ---help---
1253 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1254 Voodoo2 (cvg) based graphics card.
1255
1256 To compile this driver as a module, choose M here: the
1257 module will be called sstfb.
1258
1259 WARNING: Do not use any application that uses the 3D engine
1260 (namely glide) while using this driver.
1261 Please read the <file:Documentation/fb/README-sstfb.txt> for supported
1262 options and other important info support.
1263
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001264config FB_CYBLA
1265 tristate "Cyberblade/i1 support"
Knut Petersen44637a12006-01-09 15:04:20 +01001266 depends on FB && PCI && X86_32 && !64BIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001267 select FB_CFB_IMAGEBLIT
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001268 select VIDEO_SELECT
1269 ---help---
1270 This driver is supposed to support the Trident Cyberblade/i1
1271 graphics core integrated in the VIA VT8601A North Bridge,
1272 also known as VIA Apollo PLE133.
1273
1274 Status:
1275 - Developed, tested and working on EPIA 5000 and EPIA 800.
1276 - Does work reliable on all systems with CRT/LCD connected to
1277 normal VGA ports.
1278 - Should work on systems that do use the internal LCD port, but
1279 this is absolutely not tested.
1280
1281 Character imageblit, copyarea and rectangle fill are hw accelerated,
1282 ypan scrolling is used by default.
1283
1284 Please do read <file:Documentation/fb/cyblafb/*>.
1285
1286 To compile this driver as a module, choose M here: the
1287 module will be called cyblafb.
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289config FB_TRIDENT
1290 tristate "Trident support"
1291 depends on FB && PCI
1292 select FB_CFB_FILLRECT
1293 select FB_CFB_COPYAREA
1294 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 ---help---
1296 This driver is supposed to support graphics boards with the
1297 Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
1298 but also on some motherboards. For more information, read
1299 <file:Documentation/fb/tridentfb.txt>
1300
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001301 Cyberblade/i1 support will be removed soon, use the cyblafb driver
1302 instead.
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 Say Y if you have such a graphics board.
1305
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 To compile this driver as a module, choose M here: the
1308 module will be called tridentfb.
1309
1310config FB_TRIDENT_ACCEL
1311 bool "Trident Acceleration functions (EXPERIMENTAL)"
1312 depends on FB_TRIDENT && EXPERIMENTAL
1313 ---help---
1314 This will compile the Trident frame buffer device with
1315 acceleration functions.
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317config FB_PM3
1318 tristate "Permedia3 support"
1319 depends on FB && PCI && BROKEN
1320 help
1321 This is the frame buffer device driver for the 3DLabs Permedia3
1322 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1323 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1324 and maybe other boards.
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326config FB_AU1100
1327 bool "Au1100 LCD Driver"
1328 depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y
1329
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001330config FB_AU1200
1331 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001332 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001333 select FB_CFB_FILLRECT
1334 select FB_CFB_COPYAREA
1335 select FB_CFB_IMAGEBLIT
1336 help
1337 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1338 various panels and CRTs by passing in kernel cmd line option
1339 au1200fb:panel=<name>.
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341source "drivers/video/geode/Kconfig"
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343config FB_FFB
1344 bool "Creator/Creator3D/Elite3D support"
1345 depends on FB_SBUS && SPARC64
1346 select FB_CFB_COPYAREA
1347 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 help
1349 This is the frame buffer device driver for the Creator, Creator3D,
1350 and Elite3D graphics boards.
1351
1352config FB_TCX
1353 bool "TCX (SS4/SS5 only) support"
1354 depends on FB_SBUS
1355 select FB_CFB_FILLRECT
1356 select FB_CFB_COPYAREA
1357 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 help
1359 This is the frame buffer device driver for the TCX 24/8bit frame
1360 buffer.
1361
1362config FB_CG14
1363 bool "CGfourteen (SX) support"
1364 depends on FB_SBUS
1365 select FB_CFB_FILLRECT
1366 select FB_CFB_COPYAREA
1367 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 help
1369 This is the frame buffer device driver for the CGfourteen frame
1370 buffer on Desktop SPARCsystems with the SX graphics option.
1371
1372config FB_P9100
1373 bool "P9100 (Sparcbook 3 only) support"
1374 depends on FB_SBUS
1375 select FB_CFB_FILLRECT
1376 select FB_CFB_COPYAREA
1377 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 help
1379 This is the frame buffer device driver for the P9100 card
1380 supported on Sparcbook 3 machines.
1381
1382config FB_LEO
1383 bool "Leo (ZX) support"
1384 depends on FB_SBUS
1385 select FB_CFB_FILLRECT
1386 select FB_CFB_COPYAREA
1387 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 help
1389 This is the frame buffer device driver for the SBUS-based Sun ZX
1390 (leo) frame buffer cards.
1391
David S. Miller453e93b2007-05-06 22:45:08 -07001392config FB_XVR500
1393 bool "Sun XVR-500 3DLABS Wildcat support"
1394 depends on FB && PCI && SPARC64
1395 select FB_CFB_FILLRECT
1396 select FB_CFB_COPYAREA
1397 select FB_CFB_IMAGEBLIT
1398 help
1399 This is the framebuffer device for the Sun XVR-500 and similar
1400 graphics cards based upon the 3DLABS Wildcat chipset. The driver
1401 only works on sparc64 systems where the system firwmare has
1402 mostly initialized the card already. It is treated as a
1403 completely dumb framebuffer device.
1404
David S. Miller71227522007-05-06 22:45:50 -07001405config FB_XVR2500
1406 bool "Sun XVR-2500 3DLABS Wildcat support"
1407 depends on FB && PCI && SPARC64
1408 select FB_CFB_FILLRECT
1409 select FB_CFB_COPYAREA
1410 select FB_CFB_IMAGEBLIT
1411 help
1412 This is the framebuffer device for the Sun XVR-2500 and similar
1413 graphics cards based upon the 3DLABS Wildcat chipset. The driver
1414 only works on sparc64 systems where the system firwmare has
1415 mostly initialized the card already. It is treated as a
1416 completely dumb framebuffer device.
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418config FB_PCI
1419 bool "PCI framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -08001420 depends on (FB = y) && PCI && SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422config FB_IGA
1423 bool "IGA 168x display support"
1424 depends on SPARC32 && FB_PCI
1425 select FB_CFB_FILLRECT
1426 select FB_CFB_COPYAREA
1427 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 help
1429 This is the framebuffer device for the INTERGRAPHICS 1680 and
1430 successor frame buffer cards.
1431
1432config FB_HIT
1433 tristate "HD64461 Frame Buffer support"
1434 depends on FB && HD64461
1435 select FB_CFB_FILLRECT
1436 select FB_CFB_COPYAREA
1437 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 help
1439 This is the frame buffer device driver for the Hitachi HD64461 LCD
1440 frame buffer card.
1441
1442config FB_PMAG_AA
1443 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001444 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 select FB_CFB_FILLRECT
1446 select FB_CFB_COPYAREA
1447 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 help
1449 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1450 used mainly in the MIPS-based DECstation series.
1451
1452config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001453 tristate "PMAG-BA TURBOchannel framebuffer support"
1454 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 select FB_CFB_FILLRECT
1456 select FB_CFB_COPYAREA
1457 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 help
1459 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1460 used mainly in the MIPS-based DECstation series.
1461
1462config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001463 tristate "PMAGB-B TURBOchannel framebuffer support"
1464 depends on TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 select FB_CFB_FILLRECT
1466 select FB_CFB_COPYAREA
1467 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 help
1469 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1470 in the MIPS-based DECstation series. The card is currently only
1471 supported in 1280x1024x8 mode.
1472
1473config FB_MAXINE
1474 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001475 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 select FB_CFB_FILLRECT
1477 select FB_CFB_COPYAREA
1478 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 help
1480 Support for the onboard framebuffer (1024x768x8) in the Personal
1481 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1482 Codename "Maxine").
1483
1484config FB_TX3912
1485 bool "TMPTX3912/PR31700 frame buffer support"
1486 depends on (FB = y) && NINO
1487 select FB_CFB_FILLRECT
1488 select FB_CFB_COPYAREA
1489 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 help
1491 The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
1492 see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
1493
1494 Say Y here to enable kernel support for the on-board framebuffer.
1495
1496config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001497 bool "G364 frame buffer support"
1498 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 select FB_CFB_FILLRECT
1500 select FB_CFB_COPYAREA
1501 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 help
1503 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1504 Olivetti M700-10 systems.
1505
1506config FB_68328
1507 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001508 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 select FB_CFB_FILLRECT
1510 select FB_CFB_COPYAREA
1511 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 help
1513 Say Y here if you want to support the built-in frame buffer of
1514 the Motorola 68328 CPU family.
1515
1516config FB_PXA
1517 tristate "PXA LCD framebuffer support"
1518 depends on FB && ARCH_PXA
1519 select FB_CFB_FILLRECT
1520 select FB_CFB_COPYAREA
1521 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 ---help---
1523 Frame buffer driver for the built-in LCD controller in the Intel
1524 PXA2x0 processor.
1525
1526 This driver is also available as a module ( = code which can be
1527 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001528 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001529 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 If unsure, say N.
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533config FB_PXA_PARAMETERS
1534 bool "PXA LCD command line parameters"
1535 default n
1536 depends on FB_PXA
1537 ---help---
1538 Enable the use of kernel command line or module parameters
1539 to configure the physical properties of the LCD panel when
1540 using the PXA LCD driver.
1541
1542 This option allows you to override the panel parameters
1543 supplied by the platform in order to support multiple
1544 different models of flatpanel. If you will only be using a
1545 single model of flatpanel then you can safely leave this
1546 option disabled.
1547
1548 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1549
Mike Rapoport22caf042006-07-14 00:24:34 -07001550config FB_MBX
1551 tristate "2700G LCD framebuffer support"
1552 depends on FB && ARCH_PXA
1553 select FB_CFB_FILLRECT
1554 select FB_CFB_COPYAREA
1555 select FB_CFB_IMAGEBLIT
1556 ---help---
1557 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1558 Accelerator
1559
1560config FB_MBX_DEBUG
1561 bool "Enable debugging info via debugfs"
1562 depends on FB_MBX && DEBUG_FS
1563 default n
1564 ---help---
1565 Enable this if you want debugging information using the debug
1566 filesystem (debugfs)
1567
1568 If unsure, say N.
1569
Randy Dunlapecc41d52005-11-07 01:00:29 -08001570config FB_W100
1571 tristate "W100 frame buffer support"
1572 depends on FB && PXA_SHARPSL
1573 select FB_CFB_FILLRECT
1574 select FB_CFB_COPYAREA
1575 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001576 ---help---
1577 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
1578
1579 This driver is also available as a module ( = code which can be
1580 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001581 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001582 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001583
1584 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Arnaud Patard20fd5762005-09-09 13:10:07 -07001586config FB_S3C2410
1587 tristate "S3C2410 LCD framebuffer support"
1588 depends on FB && ARCH_S3C2410
1589 select FB_CFB_FILLRECT
1590 select FB_CFB_COPYAREA
1591 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07001592 ---help---
1593 Frame buffer driver for the built-in LCD controller in the Samsung
1594 S3C2410 processor.
1595
1596 This driver is also available as a module ( = code which can be
1597 inserted and removed from the running kernel whenever you want). The
1598 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001599 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07001600
1601 If unsure, say N.
1602config FB_S3C2410_DEBUG
1603 bool "S3C2410 lcd debug messages"
1604 depends on FB_S3C2410
1605 help
1606 Turn on debugging messages. Note that you can set/unset at run time
1607 through sysfs
1608
Ben Dooks5fc404e2007-02-20 13:58:21 -08001609config FB_SM501
1610 tristate "Silicon Motion SM501 framebuffer support"
1611 depends on FB && MFD_SM501
1612 select FB_CFB_FILLRECT
1613 select FB_CFB_COPYAREA
1614 select FB_CFB_IMAGEBLIT
1615 ---help---
1616 Frame buffer driver for the CRT and LCD controllers in the Silicon
1617 Motion SM501.
1618
1619 This driver is also available as a module ( = code which can be
1620 inserted and removed from the running kernel whenever you want). The
1621 module will be called sm501fb. If you want to compile it as a module,
1622 say M here and read <file:Documentation/modules.txt>.
1623
1624 If unsure, say N.
1625
1626
Vitaly Wool36c93662006-07-03 00:24:19 -07001627config FB_PNX4008_DUM
1628 tristate "Display Update Module support on Philips PNX4008 board"
1629 depends on FB && ARCH_PNX4008
1630 ---help---
1631 Say Y here to enable support for PNX4008 Display Update Module (DUM)
1632
1633config FB_PNX4008_DUM_RGB
1634 tristate "RGB Framebuffer support on Philips PNX4008 board"
1635 depends on FB_PNX4008_DUM
1636 select FB_CFB_FILLRECT
1637 select FB_CFB_COPYAREA
1638 select FB_CFB_IMAGEBLIT
1639 ---help---
1640 Say Y here to enable support for PNX4008 RGB Framebuffer
1641
Paul Mackerrasa3d89982006-12-10 02:20:42 -08001642config FB_IBM_GXT4500
1643 tristate "Framebuffer support for IBM GXT4500P adaptor"
1644 depends on PPC
1645 select FB_CFB_FILLRECT
1646 select FB_CFB_COPYAREA
1647 select FB_CFB_IMAGEBLIT
1648 ---help---
1649 Say Y here to enable support for the IBM GXT4500P display
1650 adaptor, found on some IBM System P (pSeries) machines.
1651
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001652config FB_PS3
1653 bool "PS3 GPU framebuffer driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001654 depends on (FB = y) && PS3_PS3AV
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08001655 select FB_CFB_FILLRECT
1656 select FB_CFB_COPYAREA
1657 select FB_CFB_IMAGEBLIT
1658 ---help---
1659 Include support for the virtual frame buffer in the PS3 platform.
1660
1661config FB_PS3_DEFAULT_SIZE_M
1662 int "PS3 default frame buffer size (in MiB)"
1663 depends on FB_PS3
1664 default 18
1665 ---help---
1666 This is the default size (in MiB) of the virtual frame buffer in
1667 the PS3.
1668 The default value can be overridden on the kernel command line
1669 using the "ps3fb" option (e.g. "ps3fb=9M");
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671config FB_VIRTUAL
1672 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
1673 depends on FB
1674 select FB_CFB_FILLRECT
1675 select FB_CFB_COPYAREA
1676 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 ---help---
1678 This is a `virtual' frame buffer device. It operates on a chunk of
1679 unswappable kernel memory instead of on the memory of a graphics
1680 board. This means you cannot see any output sent to this frame
1681 buffer device, while it does consume precious memory. The main use
1682 of this frame buffer device is testing and debugging the frame
1683 buffer subsystem. Do NOT enable it for normal systems! To protect
1684 the innocent, it has to be enabled explicitly at boot time using the
1685 kernel option `video=vfb:'.
1686
1687 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07001688 module will be called vfb. In order to load it, you must use
1689 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693if VT
1694 source "drivers/video/console/Kconfig"
1695endif
1696
1697if FB || SGI_NEWPORT_CONSOLE
1698 source "drivers/video/logo/Kconfig"
1699endif
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701endmenu
1702