blob: 8807ae5f8b219ca7aead5394f331302632834a6b [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
Nicolas Ferre0912e532009-06-23 16:30:56 +02008config HAVE_FB_ATMEL
9 bool
10
Thadeu Lima de Souza Cascardob1413352010-06-04 14:15:00 -070011config HAVE_FB_IMX
12 bool
13
Randy Dunlap179b0252007-10-16 01:29:39 -070014source "drivers/char/agp/Kconfig"
15
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100016source "drivers/gpu/vga/Kconfig"
17
Dave Airliec0e09202008-05-29 10:09:59 +100018source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070019
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080020source "drivers/gpu/stub/Kconfig"
21
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070022config VGASTATE
23 tristate
24 default n
25
Luming Yu23b0f012007-05-09 21:07:05 +080026config VIDEO_OUTPUT_CONTROL
27 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080028 help
29 This framework adds support for low-level control of the video
30 output switch.
31
Randy Dunlap179b0252007-10-16 01:29:39 -070032menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 tristate "Support for frame buffer devices"
34 ---help---
35 The frame buffer device provides an abstraction for the graphics
36 hardware. It represents the frame buffer of some video hardware and
37 allows application software to access the graphics hardware through
38 a well-defined interface, so the software doesn't need to know
39 anything about the low-level (hardware register) stuff.
40
41 Frame buffer devices work identically across the different
42 architectures supported by Linux and make the implementation of
43 application programs easier and more portable; at this point, an X
44 server exists which uses the frame buffer device exclusively.
45 On several non-X86 architectures, the frame buffer device is the
46 only way to use the graphics hardware.
47
48 The device is accessed through special device nodes, usually located
49 in the /dev directory, i.e. /dev/fb*.
50
51 You need an utility program called fbset to make full use of frame
52 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
53 and the Framebuffer-HOWTO at
Alex Buell248ae0d2009-01-29 14:25:16 -080054 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.2.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 information.
56
57 Say Y here and to the driver for your graphics board below if you
58 are compiling a kernel for a non-x86 architecture.
59
60 If you are compiling for the x86 architecture, you can say Y if you
61 want to play with it, but it is not essential. Please note that
62 running graphical applications that directly touch the hardware
63 (e.g. an accelerated X server) and that are not frame buffer
64 device-aware may cause unexpected results. If unsure, say N.
65
James Simmonse0e34ef2007-02-10 14:15:43 +000066config FIRMWARE_EDID
67 bool "Enable firmware EDID"
68 depends on FB
69 default n
70 ---help---
71 This enables access to the EDID transferred from the firmware.
72 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
73 transfers do not work for your driver and if you are using
74 nvidiafb, i810fb or savagefb.
75
76 In general, choosing Y for this option is safe. If you
77 experience extremely long delays while booting before you get
78 something on your display, try setting this to N. Matrox cards in
79 combination with certain motherboards and monitors are known to
80 suffer from this problem.
81
Dennis Munsiefc5891c2006-10-03 01:14:42 -070082config FB_DDC
83 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000084 depends on FB
85 select I2C_ALGOBIT
86 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070087 default n
88
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070089config FB_BOOT_VESA_SUPPORT
90 bool
91 depends on FB
92 default n
93 ---help---
94 If true, at least one selected framebuffer driver can take advantage
95 of VESA video modes set at an early boot stage via the vga= parameter.
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097config FB_CFB_FILLRECT
98 tristate
99 depends on FB
100 default n
101 ---help---
102 Include the cfb_fillrect function for generic software rectangle
103 filling. This is used by drivers that don't provide their own
104 (accelerated) version.
105
106config FB_CFB_COPYAREA
107 tristate
108 depends on FB
109 default n
110 ---help---
111 Include the cfb_copyarea function for generic software area copying.
112 This is used by drivers that don't provide their own (accelerated)
113 version.
114
115config FB_CFB_IMAGEBLIT
116 tristate
117 depends on FB
118 default n
119 ---help---
120 Include the cfb_imageblit function for generic software image
121 blitting. This is used by drivers that don't provide their own
122 (accelerated) version.
123
Pavel Pisa779121e2007-10-16 01:29:21 -0700124config FB_CFB_REV_PIXELS_IN_BYTE
125 bool
126 depends on FB
127 default n
128 ---help---
129 Allow generic frame-buffer functions to work on displays with 1, 2
130 and 4 bits per pixel depths which has opposite order of pixels in
131 byte order to bytes in long order.
132
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700133config FB_SYS_FILLRECT
134 tristate
135 depends on FB
136 default n
137 ---help---
138 Include the sys_fillrect function for generic software rectangle
139 filling. This is used by drivers that don't provide their own
140 (accelerated) version and the framebuffer is in system RAM.
141
142config FB_SYS_COPYAREA
143 tristate
144 depends on FB
145 default n
146 ---help---
147 Include the sys_copyarea function for generic software area copying.
148 This is used by drivers that don't provide their own (accelerated)
149 version and the framebuffer is in system RAM.
150
151config FB_SYS_IMAGEBLIT
152 tristate
153 depends on FB
154 default n
155 ---help---
156 Include the sys_imageblit function for generic software image
157 blitting. This is used by drivers that don't provide their own
158 (accelerated) version and the framebuffer is in system RAM.
159
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700160menuconfig FB_FOREIGN_ENDIAN
161 bool "Framebuffer foreign endianness support"
162 depends on FB
163 ---help---
164 This menu will let you enable support for the framebuffers with
165 non-native endianness (e.g. Little-Endian framebuffer on a
166 Big-Endian machine). Most probably you don't have such hardware,
167 so it's safe to say "n" here.
168
169choice
170 prompt "Choice endianness support"
171 depends on FB_FOREIGN_ENDIAN
172
173config FB_BOTH_ENDIAN
174 bool "Support for Big- and Little-Endian framebuffers"
175
176config FB_BIG_ENDIAN
177 bool "Support for Big-Endian framebuffers only"
178
179config FB_LITTLE_ENDIAN
180 bool "Support for Little-Endian framebuffers only"
181
182endchoice
183
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700184config FB_SYS_FOPS
185 tristate
186 depends on FB
187 default n
188
Jaya Kumar60b59be2007-05-08 00:37:37 -0700189config FB_DEFERRED_IO
190 bool
191 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700192
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700193config FB_HECUBA
194 tristate
195 depends on FB
196 depends on FB_DEFERRED_IO
197
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800198config FB_SVGALIB
199 tristate
200 depends on FB
201 default n
202 ---help---
203 Common utility functions useful to fbdev drivers of VGA-based
204 cards.
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206config FB_MACMODES
207 tristate
208 depends on FB
209 default n
210
Michael Hanselmann5474c122006-06-25 05:47:08 -0700211config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700212 bool
213 depends on FB
214 select BACKLIGHT_LCD_SUPPORT
215 select BACKLIGHT_CLASS_DEVICE
216 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218config FB_MODE_HELPERS
219 bool "Enable Video Mode Handling Helpers"
220 depends on FB
221 default n
222 ---help---
223 This enables functions for handling video modes using the
224 Generalized Timing Formula and the EDID parser. A few drivers rely
225 on this feature such as the radeonfb, rivafb, and the i810fb. If
226 your driver does not take advantage of this feature, choosing Y will
227 just increase the kernel size by about 5K.
228
229config FB_TILEBLITTING
230 bool "Enable Tile Blitting Support"
231 depends on FB
232 default n
233 ---help---
234 This enables tile blitting. Tile blitting is a drawing technique
235 where the screen is divided into rectangular sections (tiles), whereas
236 the standard blitting divides the screen into pixels. Because the
237 default drawing element is a tile, drawing functions will be passed
238 parameters in terms of number of tiles instead of number of pixels.
239 For example, to draw a single character, instead of using bitmaps,
240 an index to an array of bitmaps will be used. To clear or move a
241 rectangular section of a screen, the rectangle will be described in
242 terms of number of tiles in the x- and y-axis.
243
244 This is particularly important to one driver, matroxfb. If
245 unsure, say N.
246
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700247comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000248 depends on FB
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250config FB_CIRRUS
251 tristate "Cirrus Logic support"
252 depends on FB && (ZORRO || PCI)
253 select FB_CFB_FILLRECT
254 select FB_CFB_COPYAREA
255 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 ---help---
257 This enables support for Cirrus Logic GD542x/543x based boards on
258 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
259
260 If you have a PCI-based system, this enables support for these
261 chips: GD-543x, GD-544x, GD-5480.
262
263 Please read the file <file:Documentation/fb/cirrusfb.txt>.
264
265 Say N unless you have such a graphics board or plan to get one
266 before you next recompile the kernel.
267
268config FB_PM2
269 tristate "Permedia2 support"
270 depends on FB && ((AMIGA && BROKEN) || PCI)
271 select FB_CFB_FILLRECT
272 select FB_CFB_COPYAREA
273 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700275 This is the frame buffer device driver for cards based on
276 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
277 The driver was tested on the following cards:
278 Diamond FireGL 1000 PRO AGP
279 ELSA Gloria Synergy PCI
280 Appian Jeronimo PRO (both heads) PCI
281 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
282 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
283 ASK Graphic Blaster Exxtreme AGP
284
285 To compile this driver as a module, choose M here: the
286 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288config FB_PM2_FIFO_DISCONNECT
289 bool "enable FIFO disconnect feature"
290 depends on FB_PM2 && PCI
291 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700292 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294config FB_ARMCLCD
295 tristate "ARM PrimeCell PL110 support"
296 depends on FB && ARM && ARM_AMBA
297 select FB_CFB_FILLRECT
298 select FB_CFB_COPYAREA
299 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 help
301 This framebuffer device driver is for the ARM PrimeCell PL110
302 Colour LCD controller. ARM PrimeCells provide the building
303 blocks for System on a Chip devices.
304
305 If you want to compile this as a module (=code which can be
306 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500307 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 will be called amba-clcd.
309
Marc Singer903e2bb2006-05-16 11:41:30 +0100310choice
311
312 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
313 prompt "LCD Panel"
314 default FB_ARMCLCD_SHARP_LQ035Q7DB02
315
316config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
317 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
318 help
319 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200320 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100321 an integrated HRTFT controller IC.
322 The native resolution is 240x320.
323
324config FB_ARMCLCD_SHARP_LQ057Q3DC02
325 bool "LogicPD LCD 5.7\" QVGA"
326 help
327 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
328 color QVGA, TFT panel. The LogicPD device includes an
329 The native resolution is 320x240.
330
331config FB_ARMCLCD_SHARP_LQ64D343
332 bool "LogicPD LCD 6.4\" VGA"
333 help
334 This is an implementation of the Sharp LQ64D343, a 6.4"
335 color VGA, TFT panel. The LogicPD device includes an
336 The native resolution is 640x480.
337
338config FB_ARMCLCD_SHARP_LQ10D368
339 bool "LogicPD LCD 10.4\" VGA"
340 help
341 This is an implementation of the Sharp LQ10D368, a 10.4"
342 color VGA, TFT panel. The LogicPD device includes an
343 The native resolution is 640x480.
344
345
346config FB_ARMCLCD_SHARP_LQ121S1DG41
347 bool "LogicPD LCD 12.1\" SVGA"
348 help
349 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
350 color SVGA, TFT panel. The LogicPD device includes an
351 The native resolution is 800x600.
352
353 This panel requires a clock rate may be an integer fraction
354 of the base LCDCLK frequency. The driver will select the
355 highest frequency available that is lower than the maximum
356 allowed. The panel may flicker if the clock rate is
357 slower than the recommended minimum.
358
359config FB_ARMCLCD_AUO_A070VW01_WIDE
360 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
361 help
362 This is an implementation of the AU Optronics, a 7.0"
363 WIDE Color. The native resolution is 234x480.
364
365config FB_ARMCLCD_HITACHI
366 bool "Hitachi Wide Screen 800x480"
367 help
368 This is an implementation of the Hitachi 800x480.
369
370endchoice
371
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373config FB_ACORN
374 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000375 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 select FB_CFB_FILLRECT
377 select FB_CFB_COPYAREA
378 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 help
380 This is the frame buffer device driver for the Acorn VIDC graphics
381 hardware found in Acorn RISC PCs and other ARM-based machines. If
382 unsure, say N.
383
384config FB_CLPS711X
385 bool "CLPS711X LCD support"
386 depends on (FB = y) && ARM && ARCH_CLPS711X
387 select FB_CFB_FILLRECT
388 select FB_CFB_COPYAREA
389 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800390 help
391 Say Y to enable the Framebuffer driver for the CLPS7111 and
392 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394config FB_SA1100
395 bool "SA-1100 LCD support"
396 depends on (FB = y) && ARM && ARCH_SA1100
397 select FB_CFB_FILLRECT
398 select FB_CFB_COPYAREA
399 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 help
401 This is a framebuffer device for the SA-1100 LCD Controller.
402 See <http://www.linux-fbdev.org/> for information on framebuffer
403 devices.
404
405 If you plan to use the LCD display with your SA-1100 system, say
406 Y here.
407
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700408config FB_IMX
409 tristate "Motorola i.MX LCD support"
Baruch Siachf6014412010-02-17 12:33:23 +0200410 depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700411 select FB_CFB_FILLRECT
412 select FB_CFB_COPYAREA
413 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415config FB_CYBER2000
416 tristate "CyberPro 2000/2010/5000 support"
417 depends on FB && PCI && (BROKEN || !SPARC64)
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 enables support for the Integraphics CyberPro 20x0 and 5000
423 VGA chips used in the Rebel.com Netwinder and other machines.
424 Say Y if you have a NetWinder or a graphics card containing this
425 device, otherwise say N.
426
427config FB_APOLLO
428 bool
429 depends on (FB = y) && APOLLO
430 default y
431 select FB_CFB_FILLRECT
432 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434config FB_Q40
435 bool
436 depends on (FB = y) && Q40
437 default y
438 select FB_CFB_FILLRECT
439 select FB_CFB_COPYAREA
440 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442config FB_AMIGA
443 tristate "Amiga native chipset support"
444 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 help
446 This is the frame buffer device driver for the builtin graphics
447 chipset found in Amigas.
448
449 To compile this driver as a module, choose M here: the
450 module will be called amifb.
451
452config FB_AMIGA_OCS
453 bool "Amiga OCS chipset support"
454 depends on FB_AMIGA
455 help
456 This enables support for the original Agnus and Denise video chips,
457 found in the Amiga 1000 and most A500's and A2000's. If you intend
458 to run Linux on any of these systems, say Y; otherwise say N.
459
460config FB_AMIGA_ECS
461 bool "Amiga ECS chipset support"
462 depends on FB_AMIGA
463 help
464 This enables support for the Enhanced Chip Set, found in later
465 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
466 you intend to run Linux on any of these systems, say Y; otherwise
467 say N.
468
469config FB_AMIGA_AGA
470 bool "Amiga AGA chipset support"
471 depends on FB_AMIGA
472 help
473 This enables support for the Advanced Graphics Architecture (also
474 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
475 and CD32. If you intend to run Linux on any of these systems, say Y;
476 otherwise say N.
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478config FB_FM2
479 bool "Amiga FrameMaster II/Rainbow II support"
480 depends on (FB = y) && ZORRO
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 the Amiga FrameMaster
486 card from BSC (exhibited 1992 but not shipped as a CBM product).
487
Jaya Kumar1154ea72005-06-21 17:17:04 -0700488config FB_ARC
489 tristate "Arc Monochrome LCD board support"
490 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700491 select FB_SYS_FILLRECT
492 select FB_SYS_COPYAREA
493 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700494 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700495 help
496 This enables support for the Arc Monochrome LCD board. The board
497 is based on the KS-108 lcd controller and is typically a matrix
498 of 2*n chips. This driver was tested with a 128x64 panel. This
499 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200500 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700501 this driver, say Y or M; otherwise say N. You must specify the
502 GPIO IO address to be used for setting control and data.
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504config FB_ATARI
505 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200506 depends on (FB = y) && ATARI
507 select FB_CFB_FILLRECT
508 select FB_CFB_COPYAREA
509 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 help
511 This is the frame buffer device driver for the builtin graphics
512 chipset found in Ataris.
513
514config FB_OF
515 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100516 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 select FB_CFB_FILLRECT
518 select FB_CFB_COPYAREA
519 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 select FB_MACMODES
521 help
522 Say Y if you want support with Open Firmware for your graphics
523 board.
524
525config FB_CONTROL
526 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700527 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 select FB_CFB_FILLRECT
529 select FB_CFB_COPYAREA
530 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 select FB_MACMODES
532 help
533 This driver supports a frame buffer for the graphics adapter in the
534 Power Macintosh 7300 and others.
535
536config FB_PLATINUM
537 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700538 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 select FB_CFB_FILLRECT
540 select FB_CFB_COPYAREA
541 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 select FB_MACMODES
543 help
544 This driver supports a frame buffer for the "platinum" graphics
545 adapter in some Power Macintoshes.
546
547config FB_VALKYRIE
548 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700549 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 select FB_CFB_FILLRECT
551 select FB_CFB_COPYAREA
552 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 select FB_MACMODES
554 help
555 This driver supports a frame buffer for the "valkyrie" graphics
556 adapter in some Power Macintoshes.
557
558config FB_CT65550
559 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800560 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 select FB_CFB_FILLRECT
562 select FB_CFB_COPYAREA
563 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 help
565 This is the frame buffer device driver for the Chips & Technologies
566 65550 graphics chip in PowerBooks.
567
568config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800569 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 depends on (FB = y) && PCI
571 select FB_CFB_FILLRECT
572 select FB_CFB_COPYAREA
573 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700574 help
575 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577config FB_IMSTT
578 bool "IMS Twin Turbo display support"
579 depends on (FB = y) && PCI
580 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 select FB_MACMODES if PPC
582 help
583 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
584 many Macintosh and compatible computers.
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586config FB_VGA16
587 tristate "VGA 16-color graphics support"
588 depends on FB && (X86 || PPC)
589 select FB_CFB_FILLRECT
590 select FB_CFB_COPYAREA
591 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700592 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700593 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 help
595 This is the frame buffer device driver for VGA 16 color graphic
596 cards. Say Y if you have such a card.
597
598 To compile this driver as a module, choose M here: the
599 module will be called vga16fb.
600
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700601config FB_BF54X_LQ043
602 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700603 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700604 select FB_CFB_FILLRECT
605 select FB_CFB_COPYAREA
606 select FB_CFB_IMAGEBLIT
607 help
608 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
609
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700610config FB_BFIN_T350MCQB
611 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
612 depends on FB && BLACKFIN
613 select BFIN_GPTIMERS
614 select FB_CFB_FILLRECT
615 select FB_CFB_COPYAREA
616 select FB_CFB_IMAGEBLIT
617 help
618 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
619 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
620 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
621
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800622config FB_BFIN_LQ035Q1
623 tristate "SHARP LQ035Q1DH02 TFT LCD"
624 depends on FB && BLACKFIN && SPI
625 select FB_CFB_FILLRECT
626 select FB_CFB_COPYAREA
627 select FB_CFB_IMAGEBLIT
628 select BFIN_GPTIMERS
629 help
630 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
631 the Blackfin Landscape LCD EZ-Extender Card.
632 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
633 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
634
635 To compile this driver as a module, choose M here: the
636 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638config FB_STI
639 tristate "HP STI frame buffer device support"
640 depends on FB && PARISC
641 select FB_CFB_FILLRECT
642 select FB_CFB_COPYAREA
643 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000644 select STI_CONSOLE
645 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 default y
647 ---help---
648 STI refers to the HP "Standard Text Interface" which is a set of
649 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
650 Enabling this option will implement the linux framebuffer device
651 using calls to the STI BIOS routines for initialisation.
652
653 If you enable this option, you will get a planar framebuffer device
654 /dev/fb which will work on the most common HP graphic cards of the
655 NGLE family, including the artist chips (in the 7xx and Bxxx series),
656 HCRX, HCRX24, CRX, CRX24 and VisEG series.
657
658 It is safe to enable this option, so you should probably say "Y".
659
660config FB_MAC
661 bool "Generic Macintosh display support"
662 depends on (FB = y) && MAC
663 select FB_CFB_FILLRECT
664 select FB_CFB_COPYAREA
665 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 select FB_MACMODES
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668config FB_HP300
669 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200670 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 default y
673
674config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700675 tristate "TGA/SFB+ framebuffer support"
676 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 select FB_CFB_FILLRECT
678 select FB_CFB_COPYAREA
679 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800680 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700681 ---help---
682 This is the frame buffer device driver for generic TGA and SFB+
683 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
684 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
685 TURBOchannel cards, also known as PMAGD-A, -B and -C.
686
687 Due to hardware limitations ZLX-E2 and E3 cards are not supported
688 for DECstation 5000/200 systems. Additionally due to firmware
689 limitations these cards may cause troubles with booting DECstation
690 5000/240 and /260 systems, but are fully supported under Linux if
691 you manage to get it going. ;-)
692
693 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700695config FB_UVESA
696 tristate "Userspace VESA VGA graphics support"
697 depends on FB && CONNECTOR
698 select FB_CFB_FILLRECT
699 select FB_CFB_COPYAREA
700 select FB_CFB_IMAGEBLIT
701 select FB_MODE_HELPERS
702 help
703 This is the frame buffer driver for generic VBE 2.0 compliant
704 graphic cards. It can also take advantage of VBE 3.0 features,
705 such as refresh rate adjustment.
706
707 This driver generally provides more features than vesafb but
708 requires a userspace helper application called 'v86d'. See
709 <file:Documentation/fb/uvesafb.txt> for more information.
710
711 If unsure, say N.
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713config FB_VESA
714 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800715 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 select FB_CFB_FILLRECT
717 select FB_CFB_COPYAREA
718 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700719 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 help
721 This is the frame buffer device driver for generic VESA 2.0
722 compliant graphic cards. The older VESA 1.2 cards are not supported.
723 You will get a boot time penguin logo at no additional cost. Please
724 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
725
Huang, Ying7c831722007-11-28 16:21:55 -0800726config FB_EFI
727 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700728 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700729 select FB_CFB_FILLRECT
730 select FB_CFB_COPYAREA
731 select FB_CFB_IMAGEBLIT
732 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700733 This is the EFI frame buffer device driver. If the firmware on
734 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
735 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700736
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700737config FB_N411
738 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700739 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700740 select FB_SYS_FILLRECT
741 select FB_SYS_COPYAREA
742 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700743 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700744 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700745 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700746 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700747 This enables support for the Apollo display controller in its
748 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750config FB_HGA
751 tristate "Hercules mono graphics support"
752 depends on FB && X86
753 select FB_CFB_FILLRECT
754 select FB_CFB_COPYAREA
755 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 help
757 Say Y here if you have a Hercules mono graphics card.
758
759 To compile this driver as a module, choose M here: the
760 module will be called hgafb.
761
762 As this card technology is 15 years old, most people will answer N
763 here.
764
765config FB_HGA_ACCEL
766 bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
767 depends on FB_HGA && EXPERIMENTAL
768 ---help---
769 This will compile the Hercules mono graphics with
770 acceleration functions.
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772config FB_SGIVW
773 tristate "SGI Visual Workstation framebuffer support"
774 depends on FB && X86_VISWS
775 select FB_CFB_FILLRECT
776 select FB_CFB_COPYAREA
777 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 help
779 SGI Visual Workstation support for framebuffer graphics.
780
781config FB_GBE
782 bool "SGI Graphics Backend frame buffer support"
783 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
784 select FB_CFB_FILLRECT
785 select FB_CFB_COPYAREA
786 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 help
788 This is the frame buffer device driver for SGI Graphics Backend.
789 This chip is used in SGI O2 and Visual Workstation 320/540.
790
791config FB_GBE_MEM
792 int "Video memory size in MB"
793 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800794 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 help
796 This is the amount of memory reserved for the framebuffer,
797 which can be any value between 1MB and 8MB.
798
Mark Fortescue1a571982005-11-29 19:34:44 -0800799config FB_SBUS
800 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800801 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800802 help
803 Say Y if you want support for SBUS or UPA based frame buffer device.
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805config FB_BW2
806 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800807 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 select FB_CFB_FILLRECT
809 select FB_CFB_COPYAREA
810 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 help
812 This is the frame buffer device driver for the BWtwo frame buffer.
813
814config FB_CG3
815 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800816 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800817 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 select FB_CFB_COPYAREA
819 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 help
821 This is the frame buffer device driver for the CGthree frame buffer.
822
823config FB_CG6
824 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800825 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 select FB_CFB_COPYAREA
827 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 help
829 This is the frame buffer device driver for the CGsix (GX, TurboGX)
830 frame buffer.
831
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700832config FB_FFB
833 bool "Creator/Creator3D/Elite3D support"
834 depends on FB_SBUS && SPARC64
835 select FB_CFB_COPYAREA
836 select FB_CFB_IMAGEBLIT
837 help
838 This is the frame buffer device driver for the Creator, Creator3D,
839 and Elite3D graphics boards.
840
841config FB_TCX
842 bool "TCX (SS4/SS5 only) support"
843 depends on FB_SBUS
844 select FB_CFB_FILLRECT
845 select FB_CFB_COPYAREA
846 select FB_CFB_IMAGEBLIT
847 help
848 This is the frame buffer device driver for the TCX 24/8bit frame
849 buffer.
850
851config FB_CG14
852 bool "CGfourteen (SX) support"
853 depends on FB_SBUS
854 select FB_CFB_FILLRECT
855 select FB_CFB_COPYAREA
856 select FB_CFB_IMAGEBLIT
857 help
858 This is the frame buffer device driver for the CGfourteen frame
859 buffer on Desktop SPARCsystems with the SX graphics option.
860
861config FB_P9100
862 bool "P9100 (Sparcbook 3 only) support"
863 depends on FB_SBUS
864 select FB_CFB_FILLRECT
865 select FB_CFB_COPYAREA
866 select FB_CFB_IMAGEBLIT
867 help
868 This is the frame buffer device driver for the P9100 card
869 supported on Sparcbook 3 machines.
870
871config FB_LEO
872 bool "Leo (ZX) support"
873 depends on FB_SBUS
874 select FB_CFB_FILLRECT
875 select FB_CFB_COPYAREA
876 select FB_CFB_IMAGEBLIT
877 help
878 This is the frame buffer device driver for the SBUS-based Sun ZX
879 (leo) frame buffer cards.
880
881config FB_IGA
882 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700883 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700884 select FB_CFB_FILLRECT
885 select FB_CFB_COPYAREA
886 select FB_CFB_IMAGEBLIT
887 help
888 This is the framebuffer device for the INTERGRAPHICS 1680 and
889 successor frame buffer cards.
890
891config FB_XVR500
892 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700893 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700894 select FB_CFB_FILLRECT
895 select FB_CFB_COPYAREA
896 select FB_CFB_IMAGEBLIT
897 help
898 This is the framebuffer device for the Sun XVR-500 and similar
899 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200900 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700901 mostly initialized the card already. It is treated as a
902 completely dumb framebuffer device.
903
904config FB_XVR2500
905 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700906 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700907 select FB_CFB_FILLRECT
908 select FB_CFB_COPYAREA
909 select FB_CFB_IMAGEBLIT
910 help
911 This is the framebuffer device for the Sun XVR-2500 and similar
912 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200913 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700914 mostly initialized the card already. It is treated as a
915 completely dumb framebuffer device.
916
David S. Miller2d378b92010-03-13 16:25:03 -0800917config FB_XVR1000
918 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700919 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800920 select FB_CFB_FILLRECT
921 select FB_CFB_COPYAREA
922 select FB_CFB_IMAGEBLIT
923 help
924 This is the framebuffer device for the Sun XVR-1000 and similar
925 graphics cards. The driver only works on sparc64 systems where
926 the system firmware has mostly initialized the card already. It
927 is treated as a completely dumb framebuffer device.
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929config FB_PVR2
930 tristate "NEC PowerVR 2 display support"
931 depends on FB && SH_DREAMCAST
932 select FB_CFB_FILLRECT
933 select FB_CFB_COPYAREA
934 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 ---help---
936 Say Y here if you have a PowerVR 2 card in your box. If you plan to
937 run linux on your Dreamcast, you will have to say Y here.
938 This driver may or may not work on other PowerVR 2 cards, but is
939 totally untested. Use at your own risk. If unsure, say N.
940
941 To compile this driver as a module, choose M here: the
942 module will be called pvr2fb.
943
944 You can pass several parameters to the driver at boot time or at
945 module load time. The parameters look like "video=pvr2:XXX", where
946 the meaning of XXX can be found at the end of the main source file
947 (<file:drivers/video/pvr2fb.c>). Please see the file
948 <file:Documentation/fb/pvr2fb.txt>.
949
950config FB_EPSON1355
951 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700952 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 select FB_CFB_FILLRECT
954 select FB_CFB_COPYAREA
955 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 help
957 Build in support for the SED1355 Epson Research Embedded RAMDAC
958 LCD/CRT Controller (since redesignated as the S1D13505) as a
959 framebuffer. Product specs at
960 <http://www.erd.epson.com/vdc/html/products.htm>.
961
Randy Dunlapecc41d52005-11-07 01:00:29 -0800962config FB_S1D13XXX
963 tristate "Epson S1D13XXX framebuffer support"
964 depends on FB
965 select FB_CFB_FILLRECT
966 select FB_CFB_COPYAREA
967 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800968 help
969 Support for S1D13XXX framebuffer device family (currently only
970 working with S1D13806). Product specs at
971 <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
972
Nicolas Ferre14340582007-05-10 22:23:26 -0700973config FB_ATMEL
974 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +0200975 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -0700976 select FB_CFB_FILLRECT
977 select FB_CFB_COPYAREA
978 select FB_CFB_IMAGEBLIT
979 help
980 This enables support for the AT91/AT32 LCD Controller.
981
982config FB_INTSRAM
983 bool "Frame Buffer in internal SRAM"
984 depends on FB_ATMEL && ARCH_AT91SAM9261
985 help
986 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
987 to let frame buffer in external SDRAM.
988
Nicolas Ferre250a2692007-07-21 04:37:59 -0700989config FB_ATMEL_STN
990 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +0100991 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -0700992 default n
993 help
994 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
995 Controller. Say N if you want to connect a TFT.
996
997 If unsure, say N.
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999config FB_NVIDIA
1000 tristate "nVidia Framebuffer Support"
1001 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001002 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 select FB_MODE_HELPERS
1004 select FB_CFB_FILLRECT
1005 select FB_CFB_COPYAREA
1006 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001007 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001008 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 help
1010 This driver supports graphics boards with the nVidia chips, TNT
1011 and newer. For very old chipsets, such as the RIVA128, then use
1012 the rivafb.
1013 Say Y if you have such a graphics board.
1014
1015 To compile this driver as a module, choose M here: the
1016 module will be called nvidiafb.
1017
1018config FB_NVIDIA_I2C
1019 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001020 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001021 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 help
1023 This enables I2C support for nVidia Chipsets. This is used
1024 only for getting EDID information from the attached display
1025 allowing for robust video mode handling and switching.
1026
1027 Because fbdev-2.6 requires that drivers must be able to
1028 independently validate video mode parameters, you should say Y
1029 here.
1030
Jean Delvare647f2e72007-05-10 22:23:29 -07001031config FB_NVIDIA_DEBUG
1032 bool "Lots of debug output"
1033 depends on FB_NVIDIA
1034 default n
1035 help
1036 Say Y here if you want the nVidia driver to output all sorts
1037 of debugging information to provide to the maintainer when
1038 something goes wrong.
1039
Michael Hanselmann5474c122006-06-25 05:47:08 -07001040config FB_NVIDIA_BACKLIGHT
1041 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001042 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001043 default y
1044 help
1045 Say Y here if you want to control the backlight of your display.
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047config FB_RIVA
1048 tristate "nVidia Riva support"
1049 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001050 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 select FB_MODE_HELPERS
1052 select FB_CFB_FILLRECT
1053 select FB_CFB_COPYAREA
1054 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001055 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001056 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 help
1058 This driver supports graphics boards with the nVidia Riva/Geforce
1059 chips.
1060 Say Y if you have such a graphics board.
1061
1062 To compile this driver as a module, choose M here: the
1063 module will be called rivafb.
1064
1065config FB_RIVA_I2C
1066 bool "Enable DDC Support"
1067 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001068 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 help
1070 This enables I2C support for nVidia Chipsets. This is used
1071 only for getting EDID information from the attached display
1072 allowing for robust video mode handling and switching.
1073
1074 Because fbdev-2.6 requires that drivers must be able to
1075 independently validate video mode parameters, you should say Y
1076 here.
1077
1078config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001079 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 depends on FB_RIVA
1081 default n
1082 help
1083 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001084 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 something goes wrong.
1086
Michael Hanselmann5474c122006-06-25 05:47:08 -07001087config FB_RIVA_BACKLIGHT
1088 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001089 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001090 default y
1091 help
1092 Say Y here if you want to control the backlight of your display.
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094config FB_I810
1095 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001096 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 select FB_MODE_HELPERS
1098 select FB_CFB_FILLRECT
1099 select FB_CFB_COPYAREA
1100 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001101 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 help
1103 This driver supports the on-board graphics built in to the Intel 810
1104 and 815 chipsets. Say Y if you have and plan to use such a board.
1105
1106 To compile this driver as a module, choose M here: the
1107 module will be called i810fb.
1108
1109 For more information, please read
1110 <file:Documentation/fb/intel810.txt>
1111
1112config FB_I810_GTF
1113 bool "use VESA Generalized Timing Formula"
1114 depends on FB_I810
1115 help
1116 If you say Y, then the VESA standard, Generalized Timing Formula
1117 or GTF, will be used to calculate the required video timing values
1118 per video mode. Since the GTF allows nondiscrete timings
1119 (nondiscrete being a range of values as opposed to discrete being a
1120 set of values), you'll be able to use any combination of horizontal
1121 and vertical resolutions, and vertical refresh rates without having
1122 to specify your own timing parameters. This is especially useful
1123 to maximize the performance of an aging display, or if you just
1124 have a display with nonstandard dimensions. A VESA compliant
1125 monitor is recommended, but can still work with non-compliant ones.
1126 If you need or want this, then select this option. The timings may
1127 not be compliant with Intel's recommended values. Use at your own
1128 risk.
1129
1130 If you say N, the driver will revert to discrete video timings
1131 using a set recommended by Intel in their documentation.
1132
1133 If unsure, say N.
1134
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001135config FB_I810_I2C
1136 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001137 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001138 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001139 help
1140
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001141config FB_LE80578
1142 tristate "Intel LE80578 (Vermilion) support"
1143 depends on FB && PCI && X86
1144 select FB_MODE_HELPERS
1145 select FB_CFB_FILLRECT
1146 select FB_CFB_COPYAREA
1147 select FB_CFB_IMAGEBLIT
1148 help
1149 This driver supports the LE80578 (Vermilion Range) chipset
1150
1151config FB_CARILLO_RANCH
1152 tristate "Intel Carillo Ranch support"
1153 depends on FB_LE80578 && FB && PCI && X86
1154 help
1155 This driver supports the LE80578 (Carillo Ranch) board
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001158 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
Jesse Barnesba0ab822009-07-03 11:24:46 -07001159 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EMBEDDED
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 select FB_MODE_HELPERS
1161 select FB_CFB_FILLRECT
1162 select FB_CFB_COPYAREA
1163 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001164 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001165 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 help
1167 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001168 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 Say Y if you have and plan to use such a board.
1170
Krzysztof Helt4b198282009-06-18 16:49:21 -07001171 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1172
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001173 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 module will be called intelfb.
1175
Christian Merkled463d342006-08-22 10:07:01 +10001176 For more information, please read <file:Documentation/fb/intelfb.txt>
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001179 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 depends on FB_INTEL
1181 ---help---
1182 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001183 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 something goes wrong.
1185
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001186config FB_INTEL_I2C
1187 bool "DDC/I2C for Intel framebuffer support"
1188 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001189 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001190 default y
1191 help
1192 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194config FB_MATROX
1195 tristate "Matrox acceleration"
1196 depends on FB && PCI
1197 select FB_CFB_FILLRECT
1198 select FB_CFB_COPYAREA
1199 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 select FB_TILEBLITTING
1201 select FB_MACMODES if PPC_PMAC
1202 ---help---
1203 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1204 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1205 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1206 Matrox G400, G450 or G550 card in your box.
1207
1208 To compile this driver as a module, choose M here: the
1209 module will be called matroxfb.
1210
1211 You can pass several parameters to the driver at boot time or at
1212 module load time. The parameters look like "video=matrox:XXX", and
1213 are described in <file:Documentation/fb/matroxfb.txt>.
1214
1215config FB_MATROX_MILLENIUM
1216 bool "Millennium I/II support"
1217 depends on FB_MATROX
1218 help
1219 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1220 video card. If you select "Advanced lowlevel driver options" below,
1221 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1222 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1223 also use font widths different from 8.
1224
1225config FB_MATROX_MYSTIQUE
1226 bool "Mystique support"
1227 depends on FB_MATROX
1228 help
1229 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1230 video card. If you select "Advanced lowlevel driver options" below,
1231 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1232 packed pixel and 32 bpp packed pixel. You can also use font widths
1233 different from 8.
1234
1235config FB_MATROX_G
1236 bool "G100/G200/G400/G450/G550 support"
1237 depends on FB_MATROX
1238 ---help---
1239 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1240 video card. If you select "Advanced lowlevel driver options", you
1241 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1242 pixel and 32 bpp packed pixel. You can also use font widths
1243 different from 8.
1244
Jean Delvareee831262009-05-12 13:19:41 -07001245 If you need support for G400 secondary head, you must say Y to
1246 "Matrox I2C support" and "G400 second head support" right below.
1247 G450/G550 secondary head and digital output are supported without
1248 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 The driver starts in monitor mode. You must use the matroxset tool
1251 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1252 swap primary and secondary head outputs, or to change output mode.
1253 Secondary head driver always start in 640x480 resolution and you
1254 must use fbset to change it.
1255
1256 Do not forget that second head supports only 16 and 32 bpp
1257 packed pixels, so it is a good idea to compile them into the kernel
1258 too. You can use only some font widths, as the driver uses generic
1259 painting procedures (the secondary head does not use acceleration
1260 engine).
1261
1262 G450/G550 hardware can display TV picture only from secondary CRTC,
1263 and it performs no scaling, so picture must have 525 or 625 lines.
1264
1265config FB_MATROX_I2C
1266 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001267 depends on FB_MATROX
1268 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 ---help---
1270 This drivers creates I2C buses which are needed for accessing the
1271 DDC (I2C) bus present on all Matroxes, an I2C bus which
1272 interconnects Matrox optional devices, like MGA-TVO on G200 and
1273 G400, and the secondary head DDC bus, present on G400 only.
1274
1275 You can say Y or M here if you want to experiment with monitor
1276 detection code. You must say Y or M here if you want to use either
1277 second head of G400 or MGA-TVO on G200 or G400.
1278
1279 If you compile it as module, it will create a module named
1280 i2c-matroxfb.
1281
1282config FB_MATROX_MAVEN
1283 tristate "G400 second head support"
1284 depends on FB_MATROX_G && FB_MATROX_I2C
1285 ---help---
1286 WARNING !!! This support does not work with G450 !!!
1287
1288 Say Y or M here if you want to use a secondary head (meaning two
1289 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1290 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1291 secondary head output is blanked while you are in X. With XFree
1292 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1293 the fbdev driver on first head and the fbdev driver on second head.
1294
1295 If you compile it as module, two modules are created,
1296 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1297 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1298 also load i2c-matroxfb to get it to run.
1299
1300 The driver starts in monitor mode and you must use the matroxset
1301 tool (available at
1302 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1303 PAL or NTSC or to swap primary and secondary head outputs.
1304 Secondary head driver also always start in 640x480 resolution, you
1305 must use fbset to change it.
1306
1307 Also do not forget that second head supports only 16 and 32 bpp
1308 packed pixels, so it is a good idea to compile them into the kernel
1309 too. You can use only some font widths, as the driver uses generic
1310 painting procedures (the secondary head does not use acceleration
1311 engine).
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313config FB_RADEON
1314 tristate "ATI Radeon display support"
1315 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001316 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 select FB_MODE_HELPERS
1318 select FB_CFB_FILLRECT
1319 select FB_CFB_COPYAREA
1320 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 select FB_MACMODES if PPC_OF
1322 help
1323 Choose this option if you want to use an ATI Radeon graphics card as
1324 a framebuffer device. There are both PCI and AGP versions. You
1325 don't need to choose this to run the Radeon in plain VGA mode.
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 There is a product page at
Antonino A. Daplasf510a3c2005-09-09 13:04:41 -07001328 http://apps.ati.com/ATIcompare/
Michael Hanselmann5474c122006-06-25 05:47:08 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330config FB_RADEON_I2C
1331 bool "DDC/I2C for ATI Radeon support"
1332 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001333 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 default y
1335 help
1336 Say Y here if you want DDC/I2C support for your Radeon board.
1337
Michael Hanselmann5474c122006-06-25 05:47:08 -07001338config FB_RADEON_BACKLIGHT
1339 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001340 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001341 default y
1342 help
1343 Say Y here if you want to control the backlight of your display.
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345config FB_RADEON_DEBUG
1346 bool "Lots of debug output from Radeon driver"
1347 depends on FB_RADEON
1348 default n
1349 help
1350 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001351 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 something goes wrong.
1353
1354config FB_ATY128
1355 tristate "ATI Rage128 display support"
1356 depends on FB && PCI
1357 select FB_CFB_FILLRECT
1358 select FB_CFB_COPYAREA
1359 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001360 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 select FB_MACMODES if PPC_PMAC
1362 help
1363 This driver supports graphics boards with the ATI Rage128 chips.
1364 Say Y if you have such a graphics board and read
1365 <file:Documentation/fb/aty128fb.txt>.
1366
1367 To compile this driver as a module, choose M here: the
1368 module will be called aty128fb.
1369
Michael Hanselmann5474c122006-06-25 05:47:08 -07001370config FB_ATY128_BACKLIGHT
1371 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001372 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001373 default y
1374 help
1375 Say Y here if you want to control the backlight of your display.
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377config FB_ATY
1378 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001379 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 select FB_CFB_FILLRECT
1381 select FB_CFB_COPYAREA
1382 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001383 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 select FB_MACMODES if PPC
1385 help
1386 This driver supports graphics boards with the ATI Mach64 chips.
1387 Say Y if you have such a graphics board.
1388
1389 To compile this driver as a module, choose M here: the
1390 module will be called atyfb.
1391
1392config FB_ATY_CT
1393 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1394 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001395 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 help
1397 Say Y here to support use of ATI's 64-bit Rage boards (or other
1398 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1399 framebuffer device. The ATI product support page for these boards
1400 is at <http://support.ati.com/products/pc/mach64/>.
1401
1402config FB_ATY_GENERIC_LCD
1403 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1404 depends on FB_ATY_CT
1405 help
1406 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1407 Rage XC, or Rage XL chipset.
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409config FB_ATY_GX
1410 bool "Mach64 GX support" if PCI
1411 depends on FB_ATY
1412 default y if ATARI
1413 help
1414 Say Y here to support use of the ATI Mach64 Graphics Expression
1415 board (or other boards based on the Mach64 GX chipset) as a
1416 framebuffer device. The ATI product support page for these boards
1417 is at
1418 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1419
Michael Hanselmann5474c122006-06-25 05:47:08 -07001420config FB_ATY_BACKLIGHT
1421 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001422 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001423 default y
1424 help
1425 Say Y here if you want to control the backlight of your display.
1426
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001427config FB_S3
1428 tristate "S3 Trio/Virge support"
1429 depends on FB && PCI
1430 select FB_CFB_FILLRECT
1431 select FB_CFB_COPYAREA
1432 select FB_CFB_IMAGEBLIT
1433 select FB_TILEBLITTING
1434 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001435 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001436 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001437 ---help---
1438 Driver for graphics boards with S3 Trio / S3 Virge chip.
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440config FB_SAVAGE
1441 tristate "S3 Savage support"
1442 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 select FB_MODE_HELPERS
1444 select FB_CFB_FILLRECT
1445 select FB_CFB_COPYAREA
1446 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001447 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 help
1449 This driver supports notebooks and computers with S3 Savage PCI/AGP
1450 chips.
1451
1452 Say Y if you have such a graphics card.
1453
1454 To compile this driver as a module, choose M here; the module
1455 will be called savagefb.
1456
1457config FB_SAVAGE_I2C
1458 bool "Enable DDC2 Support"
1459 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001460 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 help
1462 This enables I2C support for S3 Savage Chipsets. This is used
1463 only for getting EDID information from the attached display
1464 allowing for robust video mode handling and switching.
1465
1466 Because fbdev-2.6 requires that drivers must be able to
1467 independently validate video mode parameters, you should say Y
1468 here.
1469
1470config FB_SAVAGE_ACCEL
1471 bool "Enable Console Acceleration"
1472 depends on FB_SAVAGE
1473 default n
1474 help
1475 This option will compile in console acceleration support. If
1476 the resulting framebuffer console has bothersome glitches, then
1477 choose N here.
1478
1479config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001480 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 depends on FB && PCI
1482 select FB_CFB_FILLRECT
1483 select FB_CFB_COPYAREA
1484 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001485 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001487 This is the frame buffer device driver for the SiS 300, 315, 330
1488 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1489 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 To compile this driver as a module, choose M here; the module
1492 will be called sisfb.
1493
1494config FB_SIS_300
1495 bool "SiS 300 series support"
1496 depends on FB_SIS
1497 help
1498 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1499
1500config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001501 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 depends on FB_SIS
1503 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001504 Say Y here to support use of the SiS 315, 330 and 340 series
1505 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1506 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001508config FB_VIA
1509 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001510 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001511 select FB_CFB_FILLRECT
1512 select FB_CFB_COPYAREA
1513 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001514 select I2C_ALGOBIT
1515 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001516 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001517 help
1518 This is the frame buffer device driver for Graphics chips of VIA
1519 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1520 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1521 /P4M900,VX800)
1522 Say Y if you have a VIA UniChrome graphics board.
1523
1524 To compile this driver as a module, choose M here: the
1525 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001526
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001527if FB_VIA
1528
1529config FB_VIA_DIRECT_PROCFS
1530 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1531 depends on FB_VIA
1532 default n
1533 help
1534 Allow direct hardware access to some output registers via procfs.
1535 This is dangerous but may provide the only chance to get the
1536 correct output device configuration.
1537 Its use is strongly discouraged.
1538
1539endif
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541config FB_NEOMAGIC
1542 tristate "NeoMagic display support"
1543 depends on FB && PCI
1544 select FB_MODE_HELPERS
1545 select FB_CFB_FILLRECT
1546 select FB_CFB_COPYAREA
1547 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001548 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 help
1550 This driver supports notebooks with NeoMagic PCI chips.
1551 Say Y if you have such a graphics card.
1552
1553 To compile this driver as a module, choose M here: the
1554 module will be called neofb.
1555
1556config FB_KYRO
1557 tristate "IMG Kyro support"
1558 depends on FB && PCI
1559 select FB_CFB_FILLRECT
1560 select FB_CFB_COPYAREA
1561 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 help
1563 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1564 graphics board.
1565
1566 To compile this driver as a module, choose M here: the
1567 module will be called kyrofb.
1568
1569config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001570 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 depends on FB && PCI
1572 select FB_CFB_IMAGEBLIT
1573 select FB_CFB_FILLRECT
1574 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001575 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001577 This driver supports graphics boards with the 3Dfx Banshee,
1578 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1579 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 To compile this driver as a module, choose M here: the
1582 module will be called tdfxfb.
1583
1584config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001585 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 depends on FB_3DFX && EXPERIMENTAL
1587 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001588 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1589 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001591config FB_3DFX_I2C
1592 bool "Enable DDC/I2C support"
1593 depends on FB_3DFX && EXPERIMENTAL
1594 select FB_DDC
1595 default y
1596 help
1597 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599config FB_VOODOO1
1600 tristate "3Dfx Voodoo Graphics (sst1) support"
1601 depends on FB && PCI
1602 select FB_CFB_FILLRECT
1603 select FB_CFB_COPYAREA
1604 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 ---help---
1606 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1607 Voodoo2 (cvg) based graphics card.
1608
1609 To compile this driver as a module, choose M here: the
1610 module will be called sstfb.
1611
1612 WARNING: Do not use any application that uses the 3D engine
1613 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001614 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 options and other important info support.
1616
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001617config FB_VT8623
1618 tristate "VIA VT8623 support"
1619 depends on FB && PCI
1620 select FB_CFB_FILLRECT
1621 select FB_CFB_COPYAREA
1622 select FB_CFB_IMAGEBLIT
1623 select FB_TILEBLITTING
1624 select FB_SVGALIB
1625 select VGASTATE
1626 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1627 ---help---
1628 Driver for CastleRock integrated graphics core in the
1629 VIA VT8623 [Apollo CLE266] chipset.
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001632 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 depends on FB && PCI
1634 select FB_CFB_FILLRECT
1635 select FB_CFB_COPYAREA
1636 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001638 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1639 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1640 and Blade XP.
1641 There are also integrated versions of these chips called CyberXXXX,
1642 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001643 but also on some motherboards including early VIA EPIA motherboards.
1644 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 Say Y if you have such a graphics board.
1647
1648 To compile this driver as a module, choose M here: the
1649 module will be called tridentfb.
1650
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001651config FB_ARK
1652 tristate "ARK 2000PV support"
1653 depends on FB && PCI
1654 select FB_CFB_FILLRECT
1655 select FB_CFB_COPYAREA
1656 select FB_CFB_IMAGEBLIT
1657 select FB_TILEBLITTING
1658 select FB_SVGALIB
1659 select VGASTATE
1660 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1661 ---help---
1662 Driver for PCI graphics boards with ARK 2000PV chip
1663 and ICS 5342 RAMDAC.
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001666 tristate "Permedia3 support (EXPERIMENTAL)"
1667 depends on FB && PCI && EXPERIMENTAL
1668 select FB_CFB_FILLRECT
1669 select FB_CFB_COPYAREA
1670 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 help
1672 This is the frame buffer device driver for the 3DLabs Permedia3
1673 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1674 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1675 and maybe other boards.
1676
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001677config FB_CARMINE
1678 tristate "Fujitsu carmine frame buffer support"
1679 depends on FB && PCI
1680 select FB_CFB_FILLRECT
1681 select FB_CFB_COPYAREA
1682 select FB_CFB_IMAGEBLIT
1683 help
1684 This is the frame buffer device driver for the Fujitsu Carmine chip.
1685 The driver provides two independent frame buffer devices.
1686
1687choice
1688 depends on FB_CARMINE
1689 prompt "DRAM timing"
1690 default FB_CARMINE_DRAM_EVAL
1691
1692config FB_CARMINE_DRAM_EVAL
1693 bool "Eval board timings"
1694 help
1695 Use timings which work on the eval card.
1696
1697config CARMINE_DRAM_CUSTOM
1698 bool "Custom board timings"
1699 help
1700 Use custom board timings.
1701endchoice
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703config FB_AU1100
1704 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001705 depends on (FB = y) && MIPS && SOC_AU1100
1706 select FB_CFB_FILLRECT
1707 select FB_CFB_COPYAREA
1708 select FB_CFB_IMAGEBLIT
1709 help
1710 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1711 various panels and CRTs by passing in kernel cmd line option
1712 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001714config FB_AU1200
1715 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001716 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001717 select FB_CFB_FILLRECT
1718 select FB_CFB_COPYAREA
1719 select FB_CFB_IMAGEBLIT
1720 help
1721 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1722 various panels and CRTs by passing in kernel cmd line option
1723 au1200fb:panel=<name>.
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725source "drivers/video/geode/Kconfig"
1726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727config FB_HIT
1728 tristate "HD64461 Frame Buffer support"
1729 depends on FB && HD64461
1730 select FB_CFB_FILLRECT
1731 select FB_CFB_COPYAREA
1732 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 help
1734 This is the frame buffer device driver for the Hitachi HD64461 LCD
1735 frame buffer card.
1736
1737config FB_PMAG_AA
1738 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001739 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 select FB_CFB_FILLRECT
1741 select FB_CFB_COPYAREA
1742 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 help
1744 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1745 used mainly in the MIPS-based DECstation series.
1746
1747config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001748 tristate "PMAG-BA TURBOchannel framebuffer support"
1749 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 select FB_CFB_FILLRECT
1751 select FB_CFB_COPYAREA
1752 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 help
1754 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1755 used mainly in the MIPS-based DECstation series.
1756
1757config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001758 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001759 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 select FB_CFB_FILLRECT
1761 select FB_CFB_COPYAREA
1762 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 help
1764 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1765 in the MIPS-based DECstation series. The card is currently only
1766 supported in 1280x1024x8 mode.
1767
1768config FB_MAXINE
1769 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001770 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 select FB_CFB_FILLRECT
1772 select FB_CFB_COPYAREA
1773 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 help
1775 Support for the onboard framebuffer (1024x768x8) in the Personal
1776 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1777 Codename "Maxine").
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001780 bool "G364 frame buffer support"
1781 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 select FB_CFB_FILLRECT
1783 select FB_CFB_COPYAREA
1784 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 help
1786 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1787 Olivetti M700-10 systems.
1788
1789config FB_68328
1790 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001791 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 select FB_CFB_FILLRECT
1793 select FB_CFB_COPYAREA
1794 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 help
1796 Say Y here if you want to support the built-in frame buffer of
1797 the Motorola 68328 CPU family.
1798
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001799config FB_PXA168
1800 tristate "PXA168/910 LCD framebuffer support"
1801 depends on FB && (CPU_PXA168 || CPU_PXA910)
1802 select FB_CFB_FILLRECT
1803 select FB_CFB_COPYAREA
1804 select FB_CFB_IMAGEBLIT
1805 ---help---
1806 Frame buffer driver for the built-in LCD controller in the Marvell
1807 MMP processor.
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809config FB_PXA
1810 tristate "PXA LCD framebuffer support"
1811 depends on FB && ARCH_PXA
1812 select FB_CFB_FILLRECT
1813 select FB_CFB_COPYAREA
1814 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ---help---
1816 Frame buffer driver for the built-in LCD controller in the Intel
1817 PXA2x0 processor.
1818
1819 This driver is also available as a module ( = code which can be
1820 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001821 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001822 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 If unsure, say N.
1825
Eric Miao198fc102008-12-23 17:49:43 +08001826config FB_PXA_OVERLAY
1827 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1828 default n
1829 depends on FB_PXA && (PXA27x || PXA3xx)
1830
Eric Miao3c42a442008-04-30 00:52:26 -07001831config FB_PXA_SMARTPANEL
1832 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001833 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001834 depends on FB_PXA
1835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836config FB_PXA_PARAMETERS
1837 bool "PXA LCD command line parameters"
1838 default n
1839 depends on FB_PXA
1840 ---help---
1841 Enable the use of kernel command line or module parameters
1842 to configure the physical properties of the LCD panel when
1843 using the PXA LCD driver.
1844
1845 This option allows you to override the panel parameters
1846 supplied by the platform in order to support multiple
1847 different models of flatpanel. If you will only be using a
1848 single model of flatpanel then you can safely leave this
1849 option disabled.
1850
1851 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1852
Mike Rapoport22caf042006-07-14 00:24:34 -07001853config FB_MBX
1854 tristate "2700G LCD framebuffer support"
1855 depends on FB && ARCH_PXA
1856 select FB_CFB_FILLRECT
1857 select FB_CFB_COPYAREA
1858 select FB_CFB_IMAGEBLIT
1859 ---help---
1860 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1861 Accelerator
1862
1863config FB_MBX_DEBUG
1864 bool "Enable debugging info via debugfs"
1865 depends on FB_MBX && DEBUG_FS
1866 default n
1867 ---help---
1868 Enable this if you want debugging information using the debug
1869 filesystem (debugfs)
1870
1871 If unsure, say N.
1872
York Sun9b53a9e2008-04-28 02:15:34 -07001873config FB_FSL_DIU
1874 tristate "Freescale DIU framebuffer support"
1875 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001876 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001877 select FB_CFB_FILLRECT
1878 select FB_CFB_COPYAREA
1879 select FB_CFB_IMAGEBLIT
1880 select PPC_LIB_RHEAP
1881 ---help---
1882 Framebuffer driver for the Freescale SoC DIU
1883
Randy Dunlapecc41d52005-11-07 01:00:29 -08001884config FB_W100
1885 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001886 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001887 select FB_CFB_FILLRECT
1888 select FB_CFB_COPYAREA
1889 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001890 ---help---
1891 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001892 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001893
1894 This driver is also available as a module ( = code which can be
1895 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001896 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001897 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001898
1899 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001901config SH_MIPI_DSI
1902 tristate
1903 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
1904
1905config SH_LCD_MIPI_DSI
1906 bool
1907
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001908config FB_SH_MOBILE_LCDC
1909 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001910 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001911 select FB_SYS_FILLRECT
1912 select FB_SYS_COPYAREA
1913 select FB_SYS_IMAGEBLIT
1914 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09001915 select FB_DEFERRED_IO
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001916 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001917 ---help---
1918 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1919
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001920config FB_SH_MOBILE_HDMI
1921 tristate "SuperH Mobile HDMI controller support"
1922 depends on FB_SH_MOBILE_LCDC
1923 select FB_MODE_HELPERS
1924 ---help---
1925 Driver for the on-chip SH-Mobile HDMI controller.
1926
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07001927config FB_TMIO
1928 tristate "Toshiba Mobile IO FrameBuffer support"
1929 depends on FB && MFD_CORE
1930 select FB_CFB_FILLRECT
1931 select FB_CFB_COPYAREA
1932 select FB_CFB_IMAGEBLIT
1933 ---help---
1934 Frame buffer driver for the Toshiba Mobile IO integrated as found
1935 on the Sharp SL-6000 series
1936
1937 This driver is also available as a module ( = code which can be
1938 inserted and removed from the running kernel whenever you want). The
1939 module will be called tmiofb. If you want to compile it as a module,
1940 say M here and read <file:Documentation/kbuild/modules.txt>.
1941
1942 If unsure, say N.
1943
1944config FB_TMIO_ACCELL
1945 bool "tmiofb acceleration"
1946 depends on FB_TMIO
1947 default y
1948
Ben Dooksec549a02009-03-31 15:25:39 -07001949config FB_S3C
1950 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07001951 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07001952 select FB_CFB_FILLRECT
1953 select FB_CFB_COPYAREA
1954 select FB_CFB_IMAGEBLIT
1955 ---help---
1956 Frame buffer driver for the built-in FB controller in the Samsung
1957 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
1958 and the S3C64XX series such as the S3C6400 and S3C6410.
1959
1960 These chips all have the same basic framebuffer design with the
1961 actual capabilities depending on the chip. For instance the S3C6400
1962 and S3C6410 support 4 hardware windows whereas the S3C24XX series
1963 currently only have two.
1964
1965 Currently the support is only for the S3C6400 and S3C6410 SoCs.
1966
1967config FB_S3C_DEBUG_REGWRITE
1968 bool "Debug register writes"
1969 depends on FB_S3C
1970 ---help---
1971 Show all register writes via printk(KERN_DEBUG)
1972
Arnaud Patard20fd5762005-09-09 13:10:07 -07001973config FB_S3C2410
1974 tristate "S3C2410 LCD framebuffer support"
1975 depends on FB && ARCH_S3C2410
1976 select FB_CFB_FILLRECT
1977 select FB_CFB_COPYAREA
1978 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07001979 ---help---
1980 Frame buffer driver for the built-in LCD controller in the Samsung
1981 S3C2410 processor.
1982
1983 This driver is also available as a module ( = code which can be
1984 inserted and removed from the running kernel whenever you want). The
1985 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001986 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07001987
1988 If unsure, say N.
1989config FB_S3C2410_DEBUG
1990 bool "S3C2410 lcd debug messages"
1991 depends on FB_S3C2410
1992 help
1993 Turn on debugging messages. Note that you can set/unset at run time
1994 through sysfs
1995
Wang Qiang86619702010-03-10 15:21:47 -08001996config FB_NUC900
1997 bool "NUC900 LCD framebuffer support"
1998 depends on FB && ARCH_W90X900
1999 select FB_CFB_FILLRECT
2000 select FB_CFB_COPYAREA
2001 select FB_CFB_IMAGEBLIT
2002 ---help---
2003 Frame buffer driver for the built-in LCD controller in the Nuvoton
2004 NUC900 processor
2005
2006config GPM1040A0_320X240
2007 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2008 depends on FB_NUC900
2009
2010config FB_NUC900_DEBUG
2011 bool "NUC900 lcd debug messages"
2012 depends on FB_NUC900
2013 help
2014 Turn on debugging messages. Note that you can set/unset at run time
2015 through sysfs
2016
Ben Dooks5fc404e2007-02-20 13:58:21 -08002017config FB_SM501
2018 tristate "Silicon Motion SM501 framebuffer support"
2019 depends on FB && MFD_SM501
2020 select FB_CFB_FILLRECT
2021 select FB_CFB_COPYAREA
2022 select FB_CFB_IMAGEBLIT
2023 ---help---
2024 Frame buffer driver for the CRT and LCD controllers in the Silicon
2025 Motion SM501.
2026
2027 This driver is also available as a module ( = code which can be
2028 inserted and removed from the running kernel whenever you want). The
2029 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002030 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002031
2032 If unsure, say N.
2033
2034
Vitaly Wool36c93662006-07-03 00:24:19 -07002035config FB_PNX4008_DUM
2036 tristate "Display Update Module support on Philips PNX4008 board"
2037 depends on FB && ARCH_PNX4008
2038 ---help---
2039 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2040
2041config FB_PNX4008_DUM_RGB
2042 tristate "RGB Framebuffer support on Philips PNX4008 board"
2043 depends on FB_PNX4008_DUM
2044 select FB_CFB_FILLRECT
2045 select FB_CFB_COPYAREA
2046 select FB_CFB_IMAGEBLIT
2047 ---help---
2048 Say Y here to enable support for PNX4008 RGB Framebuffer
2049
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002050config FB_IBM_GXT4500
2051 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002052 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002053 select FB_CFB_FILLRECT
2054 select FB_CFB_COPYAREA
2055 select FB_CFB_IMAGEBLIT
2056 ---help---
2057 Say Y here to enable support for the IBM GXT4500P display
2058 adaptor, found on some IBM System P (pSeries) machines.
2059
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002060config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002061 tristate "PS3 GPU framebuffer driver"
2062 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002063 select FB_SYS_FILLRECT
2064 select FB_SYS_COPYAREA
2065 select FB_SYS_IMAGEBLIT
2066 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002067 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002068 ---help---
2069 Include support for the virtual frame buffer in the PS3 platform.
2070
2071config FB_PS3_DEFAULT_SIZE_M
2072 int "PS3 default frame buffer size (in MiB)"
2073 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002074 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002075 ---help---
2076 This is the default size (in MiB) of the virtual frame buffer in
2077 the PS3.
2078 The default value can be overridden on the kernel command line
2079 using the "ps3fb" option (e.g. "ps3fb=9M");
2080
Andrei Konovalov147394c2007-05-08 00:40:18 -07002081config FB_XILINX
2082 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002083 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002084 select FB_CFB_FILLRECT
2085 select FB_CFB_COPYAREA
2086 select FB_CFB_IMAGEBLIT
2087 ---help---
2088 Include support for the Xilinx ML300/ML403 reference design
2089 framebuffer. ML300 carries a 640*480 LCD display on the board,
2090 ML403 uses a standard DB15 VGA connector.
2091
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002092config FB_COBALT
2093 tristate "Cobalt server LCD frame buffer support"
2094 depends on FB && MIPS_COBALT
2095
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002096config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002097 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2098 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2099 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2100 select FB_CFB_FILLRECT
2101 select FB_CFB_COPYAREA
2102 select FB_CFB_IMAGEBLIT
2103 ---help---
2104 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2105 (D)STN/TFT LCD Controller.
2106 Supports display resolutions up to 1024x1024 pixel, grayscale and
2107 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2108 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2109 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002110
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002111config FB_DA8XX
2112 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2113 depends on FB && ARCH_DAVINCI_DA8XX
2114 select FB_CFB_FILLRECT
2115 select FB_CFB_COPYAREA
2116 select FB_CFB_IMAGEBLIT
2117 ---help---
2118 This is the frame buffer device driver for the TI LCD controller
2119 found on DA8xx/OMAP-L1xx SoCs.
2120 If unsure, say N.
2121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122config FB_VIRTUAL
2123 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2124 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002125 select FB_SYS_FILLRECT
2126 select FB_SYS_COPYAREA
2127 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002128 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 ---help---
2130 This is a `virtual' frame buffer device. It operates on a chunk of
2131 unswappable kernel memory instead of on the memory of a graphics
2132 board. This means you cannot see any output sent to this frame
2133 buffer device, while it does consume precious memory. The main use
2134 of this frame buffer device is testing and debugging the frame
2135 buffer subsystem. Do NOT enable it for normal systems! To protect
2136 the innocent, it has to be enabled explicitly at boot time using the
2137 kernel option `video=vfb:'.
2138
2139 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002140 module will be called vfb. In order to load it, you must use
2141 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002144
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002145config XEN_FBDEV_FRONTEND
2146 tristate "Xen virtual frame buffer support"
2147 depends on FB && XEN
2148 select FB_SYS_FILLRECT
2149 select FB_SYS_COPYAREA
2150 select FB_SYS_IMAGEBLIT
2151 select FB_SYS_FOPS
2152 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002153 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002154 default y
2155 help
2156 This driver implements the front-end of the Xen virtual
2157 frame buffer driver. It communicates with a back-end
2158 in another domain.
2159
Jaya Kumare9355082008-08-19 11:17:55 +01002160config FB_METRONOME
2161 tristate "E-Ink Metronome/8track controller support"
2162 depends on FB
2163 select FB_SYS_FILLRECT
2164 select FB_SYS_COPYAREA
2165 select FB_SYS_IMAGEBLIT
2166 select FB_SYS_FOPS
2167 select FB_DEFERRED_IO
2168 help
2169 This driver implements support for the E-Ink Metronome
2170 controller. The pre-release name for this device was 8track
2171 and could also have been called by some vendors as PVI-nnnn.
2172
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002173config FB_MB862XX
2174 tristate "Fujitsu MB862xx GDC support"
2175 depends on FB
2176 select FB_CFB_FILLRECT
2177 select FB_CFB_COPYAREA
2178 select FB_CFB_IMAGEBLIT
2179 ---help---
2180 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2181
2182config FB_MB862XX_PCI_GDC
2183 bool "Carmine/Coral-P(A) GDC"
2184 depends on PCI && FB_MB862XX
2185 ---help---
2186 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2187 PCI graphics controller devices.
2188
2189config FB_MB862XX_LIME
2190 bool "Lime GDC"
2191 depends on FB_MB862XX
2192 depends on OF && !FB_MB862XX_PCI_GDC
Julian Calaby336e7472009-06-16 15:34:29 -07002193 depends on PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002194 select FB_FOREIGN_ENDIAN
2195 select FB_LITTLE_ENDIAN
2196 ---help---
2197 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2198
Ryan Mallon88017bd2009-09-22 16:47:09 -07002199config FB_EP93XX
2200 tristate "EP93XX frame buffer support"
2201 depends on FB && ARCH_EP93XX
2202 select FB_CFB_FILLRECT
2203 select FB_CFB_COPYAREA
2204 select FB_CFB_IMAGEBLIT
2205 ---help---
2206 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2207 This driver is also available as a module. The module will be called
2208 ep93xx-fb.
2209
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002210config FB_PRE_INIT_FB
2211 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002212 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002213 ---help---
2214 Select this option if display contents should be inherited as set by
2215 the bootloader.
2216
Pavel Machekd480ace2009-09-22 16:47:03 -07002217config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002218 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002219 depends on FB && ARCH_MSM
2220 select FB_CFB_FILLRECT
2221 select FB_CFB_COPYAREA
2222 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002223
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002224config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002225 tristate "MX3 Framebuffer support"
2226 depends on FB && MX3_IPU
2227 select FB_CFB_FILLRECT
2228 select FB_CFB_COPYAREA
2229 select FB_CFB_IMAGEBLIT
2230 default y
2231 help
2232 This is a framebuffer device for the i.MX31 LCD Controller. So
2233 far only synchronous displays are supported. If you plan to use
2234 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002235
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002236config FB_BROADSHEET
2237 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2238 depends on FB
2239 select FB_SYS_FILLRECT
2240 select FB_SYS_COPYAREA
2241 select FB_SYS_IMAGEBLIT
2242 select FB_SYS_FOPS
2243 select FB_DEFERRED_IO
2244 help
2245 This driver implements support for the E-Ink Broadsheet
2246 controller. The release name for this device was Epson S1D13521
2247 and could also have been called by other names when coupled with
2248 a bridge adapter.
2249
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002250config FB_JZ4740
2251 tristate "JZ4740 LCD framebuffer support"
2252 depends on FB && MACH_JZ4740
2253 select FB_SYS_FILLRECT
2254 select FB_SYS_COPYAREA
2255 select FB_SYS_IMAGEBLIT
2256 help
2257 Framebuffer support for the JZ4740 SoC.
2258
Randy Dunlapf08f3892007-10-29 14:37:16 -07002259source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002260source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002261
Randy Dunlap179b0252007-10-16 01:29:39 -07002262source "drivers/video/backlight/Kconfig"
2263source "drivers/video/display/Kconfig"
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265if VT
2266 source "drivers/video/console/Kconfig"
2267endif
2268
2269if FB || SGI_NEWPORT_CONSOLE
2270 source "drivers/video/logo/Kconfig"
2271endif
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273endmenu