blob: e231041a5e3395977762c1555331cc7f72cde92c [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
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020054 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.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
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300189config FB_WMT_GE_ROPS
190 tristate
191 depends on FB
192 default n
193 ---help---
194 Include functions for accelerated rectangle filling and area
195 copying using WonderMedia Graphics Engine operations.
196
Jaya Kumar60b59be2007-05-08 00:37:37 -0700197config FB_DEFERRED_IO
198 bool
199 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700200
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700201config FB_HECUBA
202 tristate
203 depends on FB
204 depends on FB_DEFERRED_IO
205
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800206config FB_SVGALIB
207 tristate
208 depends on FB
209 default n
210 ---help---
211 Common utility functions useful to fbdev drivers of VGA-based
212 cards.
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214config FB_MACMODES
215 tristate
216 depends on FB
217 default n
218
Michael Hanselmann5474c122006-06-25 05:47:08 -0700219config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700220 bool
221 depends on FB
222 select BACKLIGHT_LCD_SUPPORT
223 select BACKLIGHT_CLASS_DEVICE
224 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226config FB_MODE_HELPERS
227 bool "Enable Video Mode Handling Helpers"
228 depends on FB
229 default n
230 ---help---
231 This enables functions for handling video modes using the
232 Generalized Timing Formula and the EDID parser. A few drivers rely
233 on this feature such as the radeonfb, rivafb, and the i810fb. If
234 your driver does not take advantage of this feature, choosing Y will
235 just increase the kernel size by about 5K.
236
237config FB_TILEBLITTING
238 bool "Enable Tile Blitting Support"
239 depends on FB
240 default n
241 ---help---
242 This enables tile blitting. Tile blitting is a drawing technique
243 where the screen is divided into rectangular sections (tiles), whereas
244 the standard blitting divides the screen into pixels. Because the
245 default drawing element is a tile, drawing functions will be passed
246 parameters in terms of number of tiles instead of number of pixels.
247 For example, to draw a single character, instead of using bitmaps,
248 an index to an array of bitmaps will be used. To clear or move a
249 rectangular section of a screen, the rectangle will be described in
250 terms of number of tiles in the x- and y-axis.
251
252 This is particularly important to one driver, matroxfb. If
253 unsure, say N.
254
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700255comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000256 depends on FB
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258config FB_CIRRUS
259 tristate "Cirrus Logic support"
260 depends on FB && (ZORRO || PCI)
261 select FB_CFB_FILLRECT
262 select FB_CFB_COPYAREA
263 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ---help---
265 This enables support for Cirrus Logic GD542x/543x based boards on
266 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
267
268 If you have a PCI-based system, this enables support for these
269 chips: GD-543x, GD-544x, GD-5480.
270
271 Please read the file <file:Documentation/fb/cirrusfb.txt>.
272
273 Say N unless you have such a graphics board or plan to get one
274 before you next recompile the kernel.
275
276config FB_PM2
277 tristate "Permedia2 support"
278 depends on FB && ((AMIGA && BROKEN) || PCI)
279 select FB_CFB_FILLRECT
280 select FB_CFB_COPYAREA
281 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700283 This is the frame buffer device driver for cards based on
284 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
285 The driver was tested on the following cards:
286 Diamond FireGL 1000 PRO AGP
287 ELSA Gloria Synergy PCI
288 Appian Jeronimo PRO (both heads) PCI
289 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
290 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
291 ASK Graphic Blaster Exxtreme AGP
292
293 To compile this driver as a module, choose M here: the
294 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296config FB_PM2_FIFO_DISCONNECT
297 bool "enable FIFO disconnect feature"
298 depends on FB_PM2 && PCI
299 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700300 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302config FB_ARMCLCD
303 tristate "ARM PrimeCell PL110 support"
304 depends on FB && ARM && ARM_AMBA
305 select FB_CFB_FILLRECT
306 select FB_CFB_COPYAREA
307 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 help
309 This framebuffer device driver is for the ARM PrimeCell PL110
310 Colour LCD controller. ARM PrimeCells provide the building
311 blocks for System on a Chip devices.
312
313 If you want to compile this as a module (=code which can be
314 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500315 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 will be called amba-clcd.
317
Marc Singer903e2bb2006-05-16 11:41:30 +0100318choice
319
320 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
321 prompt "LCD Panel"
322 default FB_ARMCLCD_SHARP_LQ035Q7DB02
323
324config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
325 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
326 help
327 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200328 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100329 an integrated HRTFT controller IC.
330 The native resolution is 240x320.
331
332config FB_ARMCLCD_SHARP_LQ057Q3DC02
333 bool "LogicPD LCD 5.7\" QVGA"
334 help
335 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
336 color QVGA, TFT panel. The LogicPD device includes an
337 The native resolution is 320x240.
338
339config FB_ARMCLCD_SHARP_LQ64D343
340 bool "LogicPD LCD 6.4\" VGA"
341 help
342 This is an implementation of the Sharp LQ64D343, a 6.4"
343 color VGA, TFT panel. The LogicPD device includes an
344 The native resolution is 640x480.
345
346config FB_ARMCLCD_SHARP_LQ10D368
347 bool "LogicPD LCD 10.4\" VGA"
348 help
349 This is an implementation of the Sharp LQ10D368, a 10.4"
350 color VGA, TFT panel. The LogicPD device includes an
351 The native resolution is 640x480.
352
353
354config FB_ARMCLCD_SHARP_LQ121S1DG41
355 bool "LogicPD LCD 12.1\" SVGA"
356 help
357 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
358 color SVGA, TFT panel. The LogicPD device includes an
359 The native resolution is 800x600.
360
361 This panel requires a clock rate may be an integer fraction
362 of the base LCDCLK frequency. The driver will select the
363 highest frequency available that is lower than the maximum
364 allowed. The panel may flicker if the clock rate is
365 slower than the recommended minimum.
366
367config FB_ARMCLCD_AUO_A070VW01_WIDE
368 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
369 help
370 This is an implementation of the AU Optronics, a 7.0"
371 WIDE Color. The native resolution is 234x480.
372
373config FB_ARMCLCD_HITACHI
374 bool "Hitachi Wide Screen 800x480"
375 help
376 This is an implementation of the Hitachi 800x480.
377
378endchoice
379
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381config FB_ACORN
382 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000383 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 select FB_CFB_FILLRECT
385 select FB_CFB_COPYAREA
386 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 help
388 This is the frame buffer device driver for the Acorn VIDC graphics
389 hardware found in Acorn RISC PCs and other ARM-based machines. If
390 unsure, say N.
391
392config FB_CLPS711X
393 bool "CLPS711X LCD support"
394 depends on (FB = y) && ARM && ARCH_CLPS711X
395 select FB_CFB_FILLRECT
396 select FB_CFB_COPYAREA
397 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800398 help
399 Say Y to enable the Framebuffer driver for the CLPS7111 and
400 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402config FB_SA1100
403 bool "SA-1100 LCD support"
404 depends on (FB = y) && ARM && ARCH_SA1100
405 select FB_CFB_FILLRECT
406 select FB_CFB_COPYAREA
407 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 help
409 This is a framebuffer device for the SA-1100 LCD Controller.
410 See <http://www.linux-fbdev.org/> for information on framebuffer
411 devices.
412
413 If you plan to use the LCD display with your SA-1100 system, say
414 Y here.
415
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700416config FB_IMX
417 tristate "Motorola i.MX LCD support"
Baruch Siachf6014412010-02-17 12:33:23 +0200418 depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700419 select FB_CFB_FILLRECT
420 select FB_CFB_COPYAREA
421 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423config FB_CYBER2000
424 tristate "CyberPro 2000/2010/5000 support"
425 depends on FB && PCI && (BROKEN || !SPARC64)
426 select FB_CFB_FILLRECT
427 select FB_CFB_COPYAREA
428 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 help
430 This enables support for the Integraphics CyberPro 20x0 and 5000
431 VGA chips used in the Rebel.com Netwinder and other machines.
432 Say Y if you have a NetWinder or a graphics card containing this
433 device, otherwise say N.
434
435config FB_APOLLO
436 bool
437 depends on (FB = y) && APOLLO
438 default y
439 select FB_CFB_FILLRECT
440 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442config FB_Q40
443 bool
444 depends on (FB = y) && Q40
445 default y
446 select FB_CFB_FILLRECT
447 select FB_CFB_COPYAREA
448 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450config FB_AMIGA
451 tristate "Amiga native chipset support"
452 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 help
454 This is the frame buffer device driver for the builtin graphics
455 chipset found in Amigas.
456
457 To compile this driver as a module, choose M here: the
458 module will be called amifb.
459
460config FB_AMIGA_OCS
461 bool "Amiga OCS chipset support"
462 depends on FB_AMIGA
463 help
464 This enables support for the original Agnus and Denise video chips,
465 found in the Amiga 1000 and most A500's and A2000's. If you intend
466 to run Linux on any of these systems, say Y; otherwise say N.
467
468config FB_AMIGA_ECS
469 bool "Amiga ECS chipset support"
470 depends on FB_AMIGA
471 help
472 This enables support for the Enhanced Chip Set, found in later
473 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
474 you intend to run Linux on any of these systems, say Y; otherwise
475 say N.
476
477config FB_AMIGA_AGA
478 bool "Amiga AGA chipset support"
479 depends on FB_AMIGA
480 help
481 This enables support for the Advanced Graphics Architecture (also
482 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
483 and CD32. If you intend to run Linux on any of these systems, say Y;
484 otherwise say N.
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486config FB_FM2
487 bool "Amiga FrameMaster II/Rainbow II support"
488 depends on (FB = y) && ZORRO
489 select FB_CFB_FILLRECT
490 select FB_CFB_COPYAREA
491 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 help
493 This is the frame buffer device driver for the Amiga FrameMaster
494 card from BSC (exhibited 1992 but not shipped as a CBM product).
495
Jaya Kumar1154ea72005-06-21 17:17:04 -0700496config FB_ARC
497 tristate "Arc Monochrome LCD board support"
498 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700499 select FB_SYS_FILLRECT
500 select FB_SYS_COPYAREA
501 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700502 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700503 help
504 This enables support for the Arc Monochrome LCD board. The board
505 is based on the KS-108 lcd controller and is typically a matrix
506 of 2*n chips. This driver was tested with a 128x64 panel. This
507 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200508 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700509 this driver, say Y or M; otherwise say N. You must specify the
510 GPIO IO address to be used for setting control and data.
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512config FB_ATARI
513 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200514 depends on (FB = y) && ATARI
515 select FB_CFB_FILLRECT
516 select FB_CFB_COPYAREA
517 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 help
519 This is the frame buffer device driver for the builtin graphics
520 chipset found in Ataris.
521
522config FB_OF
523 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100524 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 select FB_CFB_FILLRECT
526 select FB_CFB_COPYAREA
527 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 select FB_MACMODES
529 help
530 Say Y if you want support with Open Firmware for your graphics
531 board.
532
533config FB_CONTROL
534 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700535 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 select FB_CFB_FILLRECT
537 select FB_CFB_COPYAREA
538 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 select FB_MACMODES
540 help
541 This driver supports a frame buffer for the graphics adapter in the
542 Power Macintosh 7300 and others.
543
544config FB_PLATINUM
545 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700546 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 select FB_CFB_FILLRECT
548 select FB_CFB_COPYAREA
549 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 select FB_MACMODES
551 help
552 This driver supports a frame buffer for the "platinum" graphics
553 adapter in some Power Macintoshes.
554
555config FB_VALKYRIE
556 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700557 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 select FB_CFB_FILLRECT
559 select FB_CFB_COPYAREA
560 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 select FB_MACMODES
562 help
563 This driver supports a frame buffer for the "valkyrie" graphics
564 adapter in some Power Macintoshes.
565
566config FB_CT65550
567 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800568 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 select FB_CFB_FILLRECT
570 select FB_CFB_COPYAREA
571 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 help
573 This is the frame buffer device driver for the Chips & Technologies
574 65550 graphics chip in PowerBooks.
575
576config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800577 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 depends on (FB = y) && PCI
579 select FB_CFB_FILLRECT
580 select FB_CFB_COPYAREA
581 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700582 help
583 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585config FB_IMSTT
586 bool "IMS Twin Turbo display support"
587 depends on (FB = y) && PCI
588 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 select FB_MACMODES if PPC
590 help
591 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
592 many Macintosh and compatible computers.
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594config FB_VGA16
595 tristate "VGA 16-color graphics support"
596 depends on FB && (X86 || PPC)
597 select FB_CFB_FILLRECT
598 select FB_CFB_COPYAREA
599 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700600 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700601 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 help
603 This is the frame buffer device driver for VGA 16 color graphic
604 cards. Say Y if you have such a card.
605
606 To compile this driver as a module, choose M here: the
607 module will be called vga16fb.
608
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700609config FB_BF54X_LQ043
610 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700611 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700612 select FB_CFB_FILLRECT
613 select FB_CFB_COPYAREA
614 select FB_CFB_IMAGEBLIT
615 help
616 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
617
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700618config FB_BFIN_T350MCQB
619 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
620 depends on FB && BLACKFIN
621 select BFIN_GPTIMERS
622 select FB_CFB_FILLRECT
623 select FB_CFB_COPYAREA
624 select FB_CFB_IMAGEBLIT
625 help
626 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
627 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
628 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
629
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800630config FB_BFIN_LQ035Q1
631 tristate "SHARP LQ035Q1DH02 TFT LCD"
632 depends on FB && BLACKFIN && SPI
633 select FB_CFB_FILLRECT
634 select FB_CFB_COPYAREA
635 select FB_CFB_IMAGEBLIT
636 select BFIN_GPTIMERS
637 help
638 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
639 the Blackfin Landscape LCD EZ-Extender Card.
640 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
641 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
642
643 To compile this driver as a module, choose M here: the
644 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700645
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000646config FB_BF537_LQ035
647 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
648 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
649 select FB_CFB_FILLRECT
650 select FB_CFB_COPYAREA
651 select FB_CFB_IMAGEBLIT
652 select BFIN_GPTIMERS
653 help
654 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
655 attached to a BF537.
656
657 To compile this driver as a module, choose M here: the
658 module will be called bf537-lq035.
659
Michael Hennerichcffd9342010-11-24 09:33:59 +0000660config FB_BFIN_7393
661 tristate "Blackfin ADV7393 Video encoder"
662 depends on FB && BLACKFIN
663 select I2C
664 select FB_CFB_FILLRECT
665 select FB_CFB_COPYAREA
666 select FB_CFB_IMAGEBLIT
667 help
668 This is the framebuffer device for a ADV7393 video encoder
669 attached to a Blackfin on the PPI port.
670 If your Blackfin board has a ADV7393 select Y.
671
672 To compile this driver as a module, choose M here: the
673 module will be called bfin_adv7393fb.
674
675choice
676 prompt "Video mode support"
677 depends on FB_BFIN_7393
678 default NTSC
679
680config NTSC
681 bool 'NTSC 720x480'
682
683config PAL
684 bool 'PAL 720x576'
685
686config NTSC_640x480
687 bool 'NTSC 640x480 (Experimental)'
688
689config PAL_640x480
690 bool 'PAL 640x480 (Experimental)'
691
692config NTSC_YCBCR
693 bool 'NTSC 720x480 YCbCR input'
694
695config PAL_YCBCR
696 bool 'PAL 720x576 YCbCR input'
697
698endchoice
699
700choice
701 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
702 depends on (FB_BFIN_7393)
703 default ADV7393_1XMEM
704
705config ADV7393_1XMEM
706 bool 'Single'
707
708config ADV7393_2XMEM
709 bool 'Double'
710endchoice
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712config FB_STI
713 tristate "HP STI frame buffer device support"
714 depends on FB && PARISC
715 select FB_CFB_FILLRECT
716 select FB_CFB_COPYAREA
717 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000718 select STI_CONSOLE
719 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 default y
721 ---help---
722 STI refers to the HP "Standard Text Interface" which is a set of
723 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
724 Enabling this option will implement the linux framebuffer device
725 using calls to the STI BIOS routines for initialisation.
726
727 If you enable this option, you will get a planar framebuffer device
728 /dev/fb which will work on the most common HP graphic cards of the
729 NGLE family, including the artist chips (in the 7xx and Bxxx series),
730 HCRX, HCRX24, CRX, CRX24 and VisEG series.
731
732 It is safe to enable this option, so you should probably say "Y".
733
734config FB_MAC
735 bool "Generic Macintosh display support"
736 depends on (FB = y) && MAC
737 select FB_CFB_FILLRECT
738 select FB_CFB_COPYAREA
739 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 select FB_MACMODES
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742config FB_HP300
743 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200744 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 default y
747
748config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700749 tristate "TGA/SFB+ framebuffer support"
750 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 select FB_CFB_FILLRECT
752 select FB_CFB_COPYAREA
753 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800754 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700755 ---help---
756 This is the frame buffer device driver for generic TGA and SFB+
757 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
758 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
759 TURBOchannel cards, also known as PMAGD-A, -B and -C.
760
761 Due to hardware limitations ZLX-E2 and E3 cards are not supported
762 for DECstation 5000/200 systems. Additionally due to firmware
763 limitations these cards may cause troubles with booting DECstation
764 5000/240 and /260 systems, but are fully supported under Linux if
765 you manage to get it going. ;-)
766
767 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700769config FB_UVESA
770 tristate "Userspace VESA VGA graphics support"
771 depends on FB && CONNECTOR
772 select FB_CFB_FILLRECT
773 select FB_CFB_COPYAREA
774 select FB_CFB_IMAGEBLIT
775 select FB_MODE_HELPERS
776 help
777 This is the frame buffer driver for generic VBE 2.0 compliant
778 graphic cards. It can also take advantage of VBE 3.0 features,
779 such as refresh rate adjustment.
780
781 This driver generally provides more features than vesafb but
782 requires a userspace helper application called 'v86d'. See
783 <file:Documentation/fb/uvesafb.txt> for more information.
784
785 If unsure, say N.
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787config FB_VESA
788 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800789 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 select FB_CFB_FILLRECT
791 select FB_CFB_COPYAREA
792 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700793 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 help
795 This is the frame buffer device driver for generic VESA 2.0
796 compliant graphic cards. The older VESA 1.2 cards are not supported.
797 You will get a boot time penguin logo at no additional cost. Please
798 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
799
Huang, Ying7c831722007-11-28 16:21:55 -0800800config FB_EFI
801 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700802 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700803 select FB_CFB_FILLRECT
804 select FB_CFB_COPYAREA
805 select FB_CFB_IMAGEBLIT
806 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700807 This is the EFI frame buffer device driver. If the firmware on
808 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
809 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700810
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700811config FB_N411
812 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700813 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700814 select FB_SYS_FILLRECT
815 select FB_SYS_COPYAREA
816 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700817 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700818 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700819 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700820 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700821 This enables support for the Apollo display controller in its
822 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824config FB_HGA
825 tristate "Hercules mono graphics support"
826 depends on FB && X86
827 select FB_CFB_FILLRECT
828 select FB_CFB_COPYAREA
829 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 help
831 Say Y here if you have a Hercules mono graphics card.
832
833 To compile this driver as a module, choose M here: the
834 module will be called hgafb.
835
836 As this card technology is 15 years old, most people will answer N
837 here.
838
839config FB_HGA_ACCEL
840 bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
841 depends on FB_HGA && EXPERIMENTAL
842 ---help---
843 This will compile the Hercules mono graphics with
844 acceleration functions.
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846config FB_SGIVW
847 tristate "SGI Visual Workstation framebuffer support"
848 depends on FB && X86_VISWS
849 select FB_CFB_FILLRECT
850 select FB_CFB_COPYAREA
851 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 help
853 SGI Visual Workstation support for framebuffer graphics.
854
855config FB_GBE
856 bool "SGI Graphics Backend frame buffer support"
857 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
858 select FB_CFB_FILLRECT
859 select FB_CFB_COPYAREA
860 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 help
862 This is the frame buffer device driver for SGI Graphics Backend.
863 This chip is used in SGI O2 and Visual Workstation 320/540.
864
865config FB_GBE_MEM
866 int "Video memory size in MB"
867 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800868 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 help
870 This is the amount of memory reserved for the framebuffer,
871 which can be any value between 1MB and 8MB.
872
Mark Fortescue1a571982005-11-29 19:34:44 -0800873config FB_SBUS
874 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800875 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800876 help
877 Say Y if you want support for SBUS or UPA based frame buffer device.
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879config FB_BW2
880 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800881 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 select FB_CFB_FILLRECT
883 select FB_CFB_COPYAREA
884 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 help
886 This is the frame buffer device driver for the BWtwo frame buffer.
887
888config FB_CG3
889 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800890 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800891 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 select FB_CFB_COPYAREA
893 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 help
895 This is the frame buffer device driver for the CGthree frame buffer.
896
897config FB_CG6
898 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800899 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 select FB_CFB_COPYAREA
901 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 help
903 This is the frame buffer device driver for the CGsix (GX, TurboGX)
904 frame buffer.
905
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700906config FB_FFB
907 bool "Creator/Creator3D/Elite3D support"
908 depends on FB_SBUS && SPARC64
909 select FB_CFB_COPYAREA
910 select FB_CFB_IMAGEBLIT
911 help
912 This is the frame buffer device driver for the Creator, Creator3D,
913 and Elite3D graphics boards.
914
915config FB_TCX
916 bool "TCX (SS4/SS5 only) support"
917 depends on FB_SBUS
918 select FB_CFB_FILLRECT
919 select FB_CFB_COPYAREA
920 select FB_CFB_IMAGEBLIT
921 help
922 This is the frame buffer device driver for the TCX 24/8bit frame
923 buffer.
924
925config FB_CG14
926 bool "CGfourteen (SX) support"
927 depends on FB_SBUS
928 select FB_CFB_FILLRECT
929 select FB_CFB_COPYAREA
930 select FB_CFB_IMAGEBLIT
931 help
932 This is the frame buffer device driver for the CGfourteen frame
933 buffer on Desktop SPARCsystems with the SX graphics option.
934
935config FB_P9100
936 bool "P9100 (Sparcbook 3 only) support"
937 depends on FB_SBUS
938 select FB_CFB_FILLRECT
939 select FB_CFB_COPYAREA
940 select FB_CFB_IMAGEBLIT
941 help
942 This is the frame buffer device driver for the P9100 card
943 supported on Sparcbook 3 machines.
944
945config FB_LEO
946 bool "Leo (ZX) support"
947 depends on FB_SBUS
948 select FB_CFB_FILLRECT
949 select FB_CFB_COPYAREA
950 select FB_CFB_IMAGEBLIT
951 help
952 This is the frame buffer device driver for the SBUS-based Sun ZX
953 (leo) frame buffer cards.
954
955config FB_IGA
956 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700957 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700958 select FB_CFB_FILLRECT
959 select FB_CFB_COPYAREA
960 select FB_CFB_IMAGEBLIT
961 help
962 This is the framebuffer device for the INTERGRAPHICS 1680 and
963 successor frame buffer cards.
964
965config FB_XVR500
966 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700967 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700968 select FB_CFB_FILLRECT
969 select FB_CFB_COPYAREA
970 select FB_CFB_IMAGEBLIT
971 help
972 This is the framebuffer device for the Sun XVR-500 and similar
973 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200974 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700975 mostly initialized the card already. It is treated as a
976 completely dumb framebuffer device.
977
978config FB_XVR2500
979 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700980 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700981 select FB_CFB_FILLRECT
982 select FB_CFB_COPYAREA
983 select FB_CFB_IMAGEBLIT
984 help
985 This is the framebuffer device for the Sun XVR-2500 and similar
986 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200987 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700988 mostly initialized the card already. It is treated as a
989 completely dumb framebuffer device.
990
David S. Miller2d378b92010-03-13 16:25:03 -0800991config FB_XVR1000
992 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700993 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800994 select FB_CFB_FILLRECT
995 select FB_CFB_COPYAREA
996 select FB_CFB_IMAGEBLIT
997 help
998 This is the framebuffer device for the Sun XVR-1000 and similar
999 graphics cards. The driver only works on sparc64 systems where
1000 the system firmware has mostly initialized the card already. It
1001 is treated as a completely dumb framebuffer device.
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003config FB_PVR2
1004 tristate "NEC PowerVR 2 display support"
1005 depends on FB && SH_DREAMCAST
1006 select FB_CFB_FILLRECT
1007 select FB_CFB_COPYAREA
1008 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 ---help---
1010 Say Y here if you have a PowerVR 2 card in your box. If you plan to
1011 run linux on your Dreamcast, you will have to say Y here.
1012 This driver may or may not work on other PowerVR 2 cards, but is
1013 totally untested. Use at your own risk. If unsure, say N.
1014
1015 To compile this driver as a module, choose M here: the
1016 module will be called pvr2fb.
1017
1018 You can pass several parameters to the driver at boot time or at
1019 module load time. The parameters look like "video=pvr2:XXX", where
1020 the meaning of XXX can be found at the end of the main source file
1021 (<file:drivers/video/pvr2fb.c>). Please see the file
1022 <file:Documentation/fb/pvr2fb.txt>.
1023
1024config FB_EPSON1355
1025 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -07001026 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 select FB_CFB_FILLRECT
1028 select FB_CFB_COPYAREA
1029 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 help
1031 Build in support for the SED1355 Epson Research Embedded RAMDAC
1032 LCD/CRT Controller (since redesignated as the S1D13505) as a
1033 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001034 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Randy Dunlapecc41d52005-11-07 01:00:29 -08001036config FB_S1D13XXX
1037 tristate "Epson S1D13XXX framebuffer support"
1038 depends on FB
1039 select FB_CFB_FILLRECT
1040 select FB_CFB_COPYAREA
1041 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001042 help
1043 Support for S1D13XXX framebuffer device family (currently only
1044 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001045 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -08001046
Nicolas Ferre14340582007-05-10 22:23:26 -07001047config FB_ATMEL
1048 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001049 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001050 select FB_CFB_FILLRECT
1051 select FB_CFB_COPYAREA
1052 select FB_CFB_IMAGEBLIT
1053 help
1054 This enables support for the AT91/AT32 LCD Controller.
1055
1056config FB_INTSRAM
1057 bool "Frame Buffer in internal SRAM"
1058 depends on FB_ATMEL && ARCH_AT91SAM9261
1059 help
1060 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1061 to let frame buffer in external SDRAM.
1062
Nicolas Ferre250a2692007-07-21 04:37:59 -07001063config FB_ATMEL_STN
1064 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001065 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001066 default n
1067 help
1068 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1069 Controller. Say N if you want to connect a TFT.
1070
1071 If unsure, say N.
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073config FB_NVIDIA
1074 tristate "nVidia Framebuffer Support"
1075 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001076 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 select FB_MODE_HELPERS
1078 select FB_CFB_FILLRECT
1079 select FB_CFB_COPYAREA
1080 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001081 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001082 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 help
1084 This driver supports graphics boards with the nVidia chips, TNT
1085 and newer. For very old chipsets, such as the RIVA128, then use
1086 the rivafb.
1087 Say Y if you have such a graphics board.
1088
1089 To compile this driver as a module, choose M here: the
1090 module will be called nvidiafb.
1091
1092config FB_NVIDIA_I2C
1093 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001094 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001095 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 help
1097 This enables I2C support for nVidia Chipsets. This is used
1098 only for getting EDID information from the attached display
1099 allowing for robust video mode handling and switching.
1100
1101 Because fbdev-2.6 requires that drivers must be able to
1102 independently validate video mode parameters, you should say Y
1103 here.
1104
Jean Delvare647f2e72007-05-10 22:23:29 -07001105config FB_NVIDIA_DEBUG
1106 bool "Lots of debug output"
1107 depends on FB_NVIDIA
1108 default n
1109 help
1110 Say Y here if you want the nVidia driver to output all sorts
1111 of debugging information to provide to the maintainer when
1112 something goes wrong.
1113
Michael Hanselmann5474c122006-06-25 05:47:08 -07001114config FB_NVIDIA_BACKLIGHT
1115 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001116 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001117 default y
1118 help
1119 Say Y here if you want to control the backlight of your display.
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121config FB_RIVA
1122 tristate "nVidia Riva support"
1123 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001124 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 select FB_MODE_HELPERS
1126 select FB_CFB_FILLRECT
1127 select FB_CFB_COPYAREA
1128 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001129 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001130 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 help
1132 This driver supports graphics boards with the nVidia Riva/Geforce
1133 chips.
1134 Say Y if you have such a graphics board.
1135
1136 To compile this driver as a module, choose M here: the
1137 module will be called rivafb.
1138
1139config FB_RIVA_I2C
1140 bool "Enable DDC Support"
1141 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001142 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 help
1144 This enables I2C support for nVidia Chipsets. This is used
1145 only for getting EDID information from the attached display
1146 allowing for robust video mode handling and switching.
1147
1148 Because fbdev-2.6 requires that drivers must be able to
1149 independently validate video mode parameters, you should say Y
1150 here.
1151
1152config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001153 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 depends on FB_RIVA
1155 default n
1156 help
1157 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001158 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 something goes wrong.
1160
Michael Hanselmann5474c122006-06-25 05:47:08 -07001161config FB_RIVA_BACKLIGHT
1162 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001163 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001164 default y
1165 help
1166 Say Y here if you want to control the backlight of your display.
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168config FB_I810
1169 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001170 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 select FB_MODE_HELPERS
1172 select FB_CFB_FILLRECT
1173 select FB_CFB_COPYAREA
1174 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001175 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 help
1177 This driver supports the on-board graphics built in to the Intel 810
1178 and 815 chipsets. Say Y if you have and plan to use such a board.
1179
1180 To compile this driver as a module, choose M here: the
1181 module will be called i810fb.
1182
1183 For more information, please read
1184 <file:Documentation/fb/intel810.txt>
1185
1186config FB_I810_GTF
1187 bool "use VESA Generalized Timing Formula"
1188 depends on FB_I810
1189 help
1190 If you say Y, then the VESA standard, Generalized Timing Formula
1191 or GTF, will be used to calculate the required video timing values
1192 per video mode. Since the GTF allows nondiscrete timings
1193 (nondiscrete being a range of values as opposed to discrete being a
1194 set of values), you'll be able to use any combination of horizontal
1195 and vertical resolutions, and vertical refresh rates without having
1196 to specify your own timing parameters. This is especially useful
1197 to maximize the performance of an aging display, or if you just
1198 have a display with nonstandard dimensions. A VESA compliant
1199 monitor is recommended, but can still work with non-compliant ones.
1200 If you need or want this, then select this option. The timings may
1201 not be compliant with Intel's recommended values. Use at your own
1202 risk.
1203
1204 If you say N, the driver will revert to discrete video timings
1205 using a set recommended by Intel in their documentation.
1206
1207 If unsure, say N.
1208
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001209config FB_I810_I2C
1210 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001211 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001212 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001213 help
1214
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001215config FB_LE80578
1216 tristate "Intel LE80578 (Vermilion) support"
1217 depends on FB && PCI && X86
1218 select FB_MODE_HELPERS
1219 select FB_CFB_FILLRECT
1220 select FB_CFB_COPYAREA
1221 select FB_CFB_IMAGEBLIT
1222 help
1223 This driver supports the LE80578 (Vermilion Range) chipset
1224
1225config FB_CARILLO_RANCH
1226 tristate "Intel Carillo Ranch support"
1227 depends on FB_LE80578 && FB && PCI && X86
1228 help
1229 This driver supports the LE80578 (Carillo Ranch) board
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001232 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
Jesse Barnesba0ab822009-07-03 11:24:46 -07001233 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EMBEDDED
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 select FB_MODE_HELPERS
1235 select FB_CFB_FILLRECT
1236 select FB_CFB_COPYAREA
1237 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001238 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001239 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 help
1241 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001242 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 Say Y if you have and plan to use such a board.
1244
Krzysztof Helt4b198282009-06-18 16:49:21 -07001245 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1246
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001247 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 module will be called intelfb.
1249
Christian Merkled463d342006-08-22 10:07:01 +10001250 For more information, please read <file:Documentation/fb/intelfb.txt>
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001253 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 depends on FB_INTEL
1255 ---help---
1256 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001257 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 something goes wrong.
1259
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001260config FB_INTEL_I2C
1261 bool "DDC/I2C for Intel framebuffer support"
1262 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001263 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001264 default y
1265 help
1266 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268config FB_MATROX
1269 tristate "Matrox acceleration"
1270 depends on FB && PCI
1271 select FB_CFB_FILLRECT
1272 select FB_CFB_COPYAREA
1273 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 select FB_TILEBLITTING
1275 select FB_MACMODES if PPC_PMAC
1276 ---help---
1277 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1278 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1279 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1280 Matrox G400, G450 or G550 card in your box.
1281
1282 To compile this driver as a module, choose M here: the
1283 module will be called matroxfb.
1284
1285 You can pass several parameters to the driver at boot time or at
1286 module load time. The parameters look like "video=matrox:XXX", and
1287 are described in <file:Documentation/fb/matroxfb.txt>.
1288
1289config FB_MATROX_MILLENIUM
1290 bool "Millennium I/II support"
1291 depends on FB_MATROX
1292 help
1293 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1294 video card. If you select "Advanced lowlevel driver options" below,
1295 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1296 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1297 also use font widths different from 8.
1298
1299config FB_MATROX_MYSTIQUE
1300 bool "Mystique support"
1301 depends on FB_MATROX
1302 help
1303 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1304 video card. If you select "Advanced lowlevel driver options" below,
1305 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1306 packed pixel and 32 bpp packed pixel. You can also use font widths
1307 different from 8.
1308
1309config FB_MATROX_G
1310 bool "G100/G200/G400/G450/G550 support"
1311 depends on FB_MATROX
1312 ---help---
1313 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1314 video card. If you select "Advanced lowlevel driver options", you
1315 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1316 pixel and 32 bpp packed pixel. You can also use font widths
1317 different from 8.
1318
Jean Delvareee831262009-05-12 13:19:41 -07001319 If you need support for G400 secondary head, you must say Y to
1320 "Matrox I2C support" and "G400 second head support" right below.
1321 G450/G550 secondary head and digital output are supported without
1322 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 The driver starts in monitor mode. You must use the matroxset tool
1325 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1326 swap primary and secondary head outputs, or to change output mode.
1327 Secondary head driver always start in 640x480 resolution and you
1328 must use fbset to change it.
1329
1330 Do not forget that second head supports only 16 and 32 bpp
1331 packed pixels, so it is a good idea to compile them into the kernel
1332 too. You can use only some font widths, as the driver uses generic
1333 painting procedures (the secondary head does not use acceleration
1334 engine).
1335
1336 G450/G550 hardware can display TV picture only from secondary CRTC,
1337 and it performs no scaling, so picture must have 525 or 625 lines.
1338
1339config FB_MATROX_I2C
1340 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001341 depends on FB_MATROX
1342 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 ---help---
1344 This drivers creates I2C buses which are needed for accessing the
1345 DDC (I2C) bus present on all Matroxes, an I2C bus which
1346 interconnects Matrox optional devices, like MGA-TVO on G200 and
1347 G400, and the secondary head DDC bus, present on G400 only.
1348
1349 You can say Y or M here if you want to experiment with monitor
1350 detection code. You must say Y or M here if you want to use either
1351 second head of G400 or MGA-TVO on G200 or G400.
1352
1353 If you compile it as module, it will create a module named
1354 i2c-matroxfb.
1355
1356config FB_MATROX_MAVEN
1357 tristate "G400 second head support"
1358 depends on FB_MATROX_G && FB_MATROX_I2C
1359 ---help---
1360 WARNING !!! This support does not work with G450 !!!
1361
1362 Say Y or M here if you want to use a secondary head (meaning two
1363 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1364 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1365 secondary head output is blanked while you are in X. With XFree
1366 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1367 the fbdev driver on first head and the fbdev driver on second head.
1368
1369 If you compile it as module, two modules are created,
1370 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1371 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1372 also load i2c-matroxfb to get it to run.
1373
1374 The driver starts in monitor mode and you must use the matroxset
1375 tool (available at
1376 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1377 PAL or NTSC or to swap primary and secondary head outputs.
1378 Secondary head driver also always start in 640x480 resolution, you
1379 must use fbset to change it.
1380
1381 Also do not forget that second head supports only 16 and 32 bpp
1382 packed pixels, so it is a good idea to compile them into the kernel
1383 too. You can use only some font widths, as the driver uses generic
1384 painting procedures (the secondary head does not use acceleration
1385 engine).
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387config FB_RADEON
1388 tristate "ATI Radeon display support"
1389 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001390 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 select FB_MODE_HELPERS
1392 select FB_CFB_FILLRECT
1393 select FB_CFB_COPYAREA
1394 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 select FB_MACMODES if PPC_OF
1396 help
1397 Choose this option if you want to use an ATI Radeon graphics card as
1398 a framebuffer device. There are both PCI and AGP versions. You
1399 don't need to choose this to run the Radeon in plain VGA mode.
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001402 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404config FB_RADEON_I2C
1405 bool "DDC/I2C for ATI Radeon support"
1406 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001407 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 default y
1409 help
1410 Say Y here if you want DDC/I2C support for your Radeon board.
1411
Michael Hanselmann5474c122006-06-25 05:47:08 -07001412config FB_RADEON_BACKLIGHT
1413 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001414 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001415 default y
1416 help
1417 Say Y here if you want to control the backlight of your display.
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419config FB_RADEON_DEBUG
1420 bool "Lots of debug output from Radeon driver"
1421 depends on FB_RADEON
1422 default n
1423 help
1424 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001425 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 something goes wrong.
1427
1428config FB_ATY128
1429 tristate "ATI Rage128 display support"
1430 depends on FB && PCI
1431 select FB_CFB_FILLRECT
1432 select FB_CFB_COPYAREA
1433 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001434 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 select FB_MACMODES if PPC_PMAC
1436 help
1437 This driver supports graphics boards with the ATI Rage128 chips.
1438 Say Y if you have such a graphics board and read
1439 <file:Documentation/fb/aty128fb.txt>.
1440
1441 To compile this driver as a module, choose M here: the
1442 module will be called aty128fb.
1443
Michael Hanselmann5474c122006-06-25 05:47:08 -07001444config FB_ATY128_BACKLIGHT
1445 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001446 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001447 default y
1448 help
1449 Say Y here if you want to control the backlight of your display.
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451config FB_ATY
1452 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001453 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 select FB_CFB_FILLRECT
1455 select FB_CFB_COPYAREA
1456 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001457 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 select FB_MACMODES if PPC
1459 help
1460 This driver supports graphics boards with the ATI Mach64 chips.
1461 Say Y if you have such a graphics board.
1462
1463 To compile this driver as a module, choose M here: the
1464 module will be called atyfb.
1465
1466config FB_ATY_CT
1467 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1468 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001469 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 help
1471 Say Y here to support use of ATI's 64-bit Rage boards (or other
1472 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1473 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001474 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476config FB_ATY_GENERIC_LCD
1477 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1478 depends on FB_ATY_CT
1479 help
1480 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1481 Rage XC, or Rage XL chipset.
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483config FB_ATY_GX
1484 bool "Mach64 GX support" if PCI
1485 depends on FB_ATY
1486 default y if ATARI
1487 help
1488 Say Y here to support use of the ATI Mach64 Graphics Expression
1489 board (or other boards based on the Mach64 GX chipset) as a
1490 framebuffer device. The ATI product support page for these boards
1491 is at
1492 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1493
Michael Hanselmann5474c122006-06-25 05:47:08 -07001494config FB_ATY_BACKLIGHT
1495 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001496 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001497 default y
1498 help
1499 Say Y here if you want to control the backlight of your display.
1500
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001501config FB_S3
1502 tristate "S3 Trio/Virge support"
1503 depends on FB && PCI
1504 select FB_CFB_FILLRECT
1505 select FB_CFB_COPYAREA
1506 select FB_CFB_IMAGEBLIT
1507 select FB_TILEBLITTING
1508 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001509 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001510 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001511 ---help---
1512 Driver for graphics boards with S3 Trio / S3 Virge chip.
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514config FB_SAVAGE
1515 tristate "S3 Savage support"
1516 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 select FB_MODE_HELPERS
1518 select FB_CFB_FILLRECT
1519 select FB_CFB_COPYAREA
1520 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001521 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 help
1523 This driver supports notebooks and computers with S3 Savage PCI/AGP
1524 chips.
1525
1526 Say Y if you have such a graphics card.
1527
1528 To compile this driver as a module, choose M here; the module
1529 will be called savagefb.
1530
1531config FB_SAVAGE_I2C
1532 bool "Enable DDC2 Support"
1533 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001534 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 help
1536 This enables I2C support for S3 Savage Chipsets. This is used
1537 only for getting EDID information from the attached display
1538 allowing for robust video mode handling and switching.
1539
1540 Because fbdev-2.6 requires that drivers must be able to
1541 independently validate video mode parameters, you should say Y
1542 here.
1543
1544config FB_SAVAGE_ACCEL
1545 bool "Enable Console Acceleration"
1546 depends on FB_SAVAGE
1547 default n
1548 help
1549 This option will compile in console acceleration support. If
1550 the resulting framebuffer console has bothersome glitches, then
1551 choose N here.
1552
1553config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001554 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 depends on FB && PCI
1556 select FB_CFB_FILLRECT
1557 select FB_CFB_COPYAREA
1558 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001559 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001561 This is the frame buffer device driver for the SiS 300, 315, 330
1562 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1563 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565 To compile this driver as a module, choose M here; the module
1566 will be called sisfb.
1567
1568config FB_SIS_300
1569 bool "SiS 300 series support"
1570 depends on FB_SIS
1571 help
1572 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1573
1574config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001575 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 depends on FB_SIS
1577 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001578 Say Y here to support use of the SiS 315, 330 and 340 series
1579 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1580 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001582config FB_VIA
1583 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001584 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001585 select FB_CFB_FILLRECT
1586 select FB_CFB_COPYAREA
1587 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001588 select I2C_ALGOBIT
1589 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001590 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001591 help
1592 This is the frame buffer device driver for Graphics chips of VIA
1593 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1594 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1595 /P4M900,VX800)
1596 Say Y if you have a VIA UniChrome graphics board.
1597
1598 To compile this driver as a module, choose M here: the
1599 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001600
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001601if FB_VIA
1602
1603config FB_VIA_DIRECT_PROCFS
1604 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1605 depends on FB_VIA
1606 default n
1607 help
1608 Allow direct hardware access to some output registers via procfs.
1609 This is dangerous but may provide the only chance to get the
1610 correct output device configuration.
1611 Its use is strongly discouraged.
1612
1613endif
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615config FB_NEOMAGIC
1616 tristate "NeoMagic display support"
1617 depends on FB && PCI
1618 select FB_MODE_HELPERS
1619 select FB_CFB_FILLRECT
1620 select FB_CFB_COPYAREA
1621 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001622 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 help
1624 This driver supports notebooks with NeoMagic PCI chips.
1625 Say Y if you have such a graphics card.
1626
1627 To compile this driver as a module, choose M here: the
1628 module will be called neofb.
1629
1630config FB_KYRO
1631 tristate "IMG Kyro support"
1632 depends on FB && PCI
1633 select FB_CFB_FILLRECT
1634 select FB_CFB_COPYAREA
1635 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 help
1637 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1638 graphics board.
1639
1640 To compile this driver as a module, choose M here: the
1641 module will be called kyrofb.
1642
1643config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001644 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 depends on FB && PCI
1646 select FB_CFB_IMAGEBLIT
1647 select FB_CFB_FILLRECT
1648 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001649 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001651 This driver supports graphics boards with the 3Dfx Banshee,
1652 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1653 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 To compile this driver as a module, choose M here: the
1656 module will be called tdfxfb.
1657
1658config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001659 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 depends on FB_3DFX && EXPERIMENTAL
1661 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001662 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1663 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001665config FB_3DFX_I2C
1666 bool "Enable DDC/I2C support"
1667 depends on FB_3DFX && EXPERIMENTAL
1668 select FB_DDC
1669 default y
1670 help
1671 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673config FB_VOODOO1
1674 tristate "3Dfx Voodoo Graphics (sst1) support"
1675 depends on FB && PCI
1676 select FB_CFB_FILLRECT
1677 select FB_CFB_COPYAREA
1678 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 ---help---
1680 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1681 Voodoo2 (cvg) based graphics card.
1682
1683 To compile this driver as a module, choose M here: the
1684 module will be called sstfb.
1685
1686 WARNING: Do not use any application that uses the 3D engine
1687 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001688 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 options and other important info support.
1690
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001691config FB_VT8623
1692 tristate "VIA VT8623 support"
1693 depends on FB && PCI
1694 select FB_CFB_FILLRECT
1695 select FB_CFB_COPYAREA
1696 select FB_CFB_IMAGEBLIT
1697 select FB_TILEBLITTING
1698 select FB_SVGALIB
1699 select VGASTATE
1700 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1701 ---help---
1702 Driver for CastleRock integrated graphics core in the
1703 VIA VT8623 [Apollo CLE266] chipset.
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001706 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 depends on FB && PCI
1708 select FB_CFB_FILLRECT
1709 select FB_CFB_COPYAREA
1710 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001712 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1713 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1714 and Blade XP.
1715 There are also integrated versions of these chips called CyberXXXX,
1716 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001717 but also on some motherboards including early VIA EPIA motherboards.
1718 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 Say Y if you have such a graphics board.
1721
1722 To compile this driver as a module, choose M here: the
1723 module will be called tridentfb.
1724
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001725config FB_ARK
1726 tristate "ARK 2000PV support"
1727 depends on FB && PCI
1728 select FB_CFB_FILLRECT
1729 select FB_CFB_COPYAREA
1730 select FB_CFB_IMAGEBLIT
1731 select FB_TILEBLITTING
1732 select FB_SVGALIB
1733 select VGASTATE
1734 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1735 ---help---
1736 Driver for PCI graphics boards with ARK 2000PV chip
1737 and ICS 5342 RAMDAC.
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001740 tristate "Permedia3 support (EXPERIMENTAL)"
1741 depends on FB && PCI && EXPERIMENTAL
1742 select FB_CFB_FILLRECT
1743 select FB_CFB_COPYAREA
1744 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 help
1746 This is the frame buffer device driver for the 3DLabs Permedia3
1747 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1748 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1749 and maybe other boards.
1750
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001751config FB_CARMINE
1752 tristate "Fujitsu carmine frame buffer support"
1753 depends on FB && PCI
1754 select FB_CFB_FILLRECT
1755 select FB_CFB_COPYAREA
1756 select FB_CFB_IMAGEBLIT
1757 help
1758 This is the frame buffer device driver for the Fujitsu Carmine chip.
1759 The driver provides two independent frame buffer devices.
1760
1761choice
1762 depends on FB_CARMINE
1763 prompt "DRAM timing"
1764 default FB_CARMINE_DRAM_EVAL
1765
1766config FB_CARMINE_DRAM_EVAL
1767 bool "Eval board timings"
1768 help
1769 Use timings which work on the eval card.
1770
1771config CARMINE_DRAM_CUSTOM
1772 bool "Custom board timings"
1773 help
1774 Use custom board timings.
1775endchoice
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777config FB_AU1100
1778 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001779 depends on (FB = y) && MIPS && SOC_AU1100
1780 select FB_CFB_FILLRECT
1781 select FB_CFB_COPYAREA
1782 select FB_CFB_IMAGEBLIT
1783 help
1784 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1785 various panels and CRTs by passing in kernel cmd line option
1786 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001788config FB_AU1200
1789 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001790 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001791 select FB_CFB_FILLRECT
1792 select FB_CFB_COPYAREA
1793 select FB_CFB_IMAGEBLIT
1794 help
1795 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1796 various panels and CRTs by passing in kernel cmd line option
1797 au1200fb:panel=<name>.
1798
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001799config FB_VT8500
1800 bool "VT8500 LCD Driver"
1801 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1802 select FB_WMT_GE_ROPS
1803 select FB_SYS_IMAGEBLIT
1804 help
1805 This is the framebuffer driver for VIA VT8500 integrated LCD
1806 controller.
1807
1808config FB_WM8505
1809 bool "WM8505 frame buffer support"
1810 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1811 select FB_WMT_GE_ROPS
1812 select FB_SYS_IMAGEBLIT
1813 help
1814 This is the framebuffer driver for WonderMedia WM8505
1815 integrated LCD controller.
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817source "drivers/video/geode/Kconfig"
1818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819config FB_HIT
1820 tristate "HD64461 Frame Buffer support"
1821 depends on FB && HD64461
1822 select FB_CFB_FILLRECT
1823 select FB_CFB_COPYAREA
1824 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 help
1826 This is the frame buffer device driver for the Hitachi HD64461 LCD
1827 frame buffer card.
1828
1829config FB_PMAG_AA
1830 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001831 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 select FB_CFB_FILLRECT
1833 select FB_CFB_COPYAREA
1834 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 help
1836 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1837 used mainly in the MIPS-based DECstation series.
1838
1839config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001840 tristate "PMAG-BA TURBOchannel framebuffer support"
1841 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 select FB_CFB_FILLRECT
1843 select FB_CFB_COPYAREA
1844 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 help
1846 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1847 used mainly in the MIPS-based DECstation series.
1848
1849config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001850 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001851 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 select FB_CFB_FILLRECT
1853 select FB_CFB_COPYAREA
1854 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 help
1856 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1857 in the MIPS-based DECstation series. The card is currently only
1858 supported in 1280x1024x8 mode.
1859
1860config FB_MAXINE
1861 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001862 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 select FB_CFB_FILLRECT
1864 select FB_CFB_COPYAREA
1865 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 help
1867 Support for the onboard framebuffer (1024x768x8) in the Personal
1868 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1869 Codename "Maxine").
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001872 bool "G364 frame buffer support"
1873 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 select FB_CFB_FILLRECT
1875 select FB_CFB_COPYAREA
1876 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 help
1878 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1879 Olivetti M700-10 systems.
1880
1881config FB_68328
1882 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001883 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 select FB_CFB_FILLRECT
1885 select FB_CFB_COPYAREA
1886 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 help
1888 Say Y here if you want to support the built-in frame buffer of
1889 the Motorola 68328 CPU family.
1890
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001891config FB_PXA168
1892 tristate "PXA168/910 LCD framebuffer support"
1893 depends on FB && (CPU_PXA168 || CPU_PXA910)
1894 select FB_CFB_FILLRECT
1895 select FB_CFB_COPYAREA
1896 select FB_CFB_IMAGEBLIT
1897 ---help---
1898 Frame buffer driver for the built-in LCD controller in the Marvell
1899 MMP processor.
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901config FB_PXA
1902 tristate "PXA LCD framebuffer support"
1903 depends on FB && ARCH_PXA
1904 select FB_CFB_FILLRECT
1905 select FB_CFB_COPYAREA
1906 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 ---help---
1908 Frame buffer driver for the built-in LCD controller in the Intel
1909 PXA2x0 processor.
1910
1911 This driver is also available as a module ( = code which can be
1912 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001913 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001914 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 If unsure, say N.
1917
Eric Miao198fc102008-12-23 17:49:43 +08001918config FB_PXA_OVERLAY
1919 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1920 default n
1921 depends on FB_PXA && (PXA27x || PXA3xx)
1922
Eric Miao3c42a442008-04-30 00:52:26 -07001923config FB_PXA_SMARTPANEL
1924 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001925 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001926 depends on FB_PXA
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928config FB_PXA_PARAMETERS
1929 bool "PXA LCD command line parameters"
1930 default n
1931 depends on FB_PXA
1932 ---help---
1933 Enable the use of kernel command line or module parameters
1934 to configure the physical properties of the LCD panel when
1935 using the PXA LCD driver.
1936
1937 This option allows you to override the panel parameters
1938 supplied by the platform in order to support multiple
1939 different models of flatpanel. If you will only be using a
1940 single model of flatpanel then you can safely leave this
1941 option disabled.
1942
1943 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1944
Mike Rapoport22caf042006-07-14 00:24:34 -07001945config FB_MBX
1946 tristate "2700G LCD framebuffer support"
1947 depends on FB && ARCH_PXA
1948 select FB_CFB_FILLRECT
1949 select FB_CFB_COPYAREA
1950 select FB_CFB_IMAGEBLIT
1951 ---help---
1952 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1953 Accelerator
1954
1955config FB_MBX_DEBUG
1956 bool "Enable debugging info via debugfs"
1957 depends on FB_MBX && DEBUG_FS
1958 default n
1959 ---help---
1960 Enable this if you want debugging information using the debug
1961 filesystem (debugfs)
1962
1963 If unsure, say N.
1964
York Sun9b53a9e2008-04-28 02:15:34 -07001965config FB_FSL_DIU
1966 tristate "Freescale DIU framebuffer support"
1967 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001968 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001969 select FB_CFB_FILLRECT
1970 select FB_CFB_COPYAREA
1971 select FB_CFB_IMAGEBLIT
1972 select PPC_LIB_RHEAP
1973 ---help---
1974 Framebuffer driver for the Freescale SoC DIU
1975
Randy Dunlapecc41d52005-11-07 01:00:29 -08001976config FB_W100
1977 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001978 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001979 select FB_CFB_FILLRECT
1980 select FB_CFB_COPYAREA
1981 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001982 ---help---
1983 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001984 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001985
1986 This driver is also available as a module ( = code which can be
1987 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001988 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001989 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001990
1991 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001993config SH_MIPI_DSI
1994 tristate
1995 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
1996
1997config SH_LCD_MIPI_DSI
1998 bool
1999
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002000config FB_SH_MOBILE_LCDC
2001 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00002002 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09002003 select FB_SYS_FILLRECT
2004 select FB_SYS_COPYAREA
2005 select FB_SYS_IMAGEBLIT
2006 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09002007 select FB_DEFERRED_IO
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002008 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002009 ---help---
2010 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2011
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002012config FB_SH_MOBILE_HDMI
2013 tristate "SuperH Mobile HDMI controller support"
2014 depends on FB_SH_MOBILE_LCDC
2015 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002016 select SOUND
2017 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002018 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002019 ---help---
2020 Driver for the on-chip SH-Mobile HDMI controller.
2021
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002022config FB_TMIO
2023 tristate "Toshiba Mobile IO FrameBuffer support"
2024 depends on FB && MFD_CORE
2025 select FB_CFB_FILLRECT
2026 select FB_CFB_COPYAREA
2027 select FB_CFB_IMAGEBLIT
2028 ---help---
2029 Frame buffer driver for the Toshiba Mobile IO integrated as found
2030 on the Sharp SL-6000 series
2031
2032 This driver is also available as a module ( = code which can be
2033 inserted and removed from the running kernel whenever you want). The
2034 module will be called tmiofb. If you want to compile it as a module,
2035 say M here and read <file:Documentation/kbuild/modules.txt>.
2036
2037 If unsure, say N.
2038
2039config FB_TMIO_ACCELL
2040 bool "tmiofb acceleration"
2041 depends on FB_TMIO
2042 default y
2043
Ben Dooksec549a02009-03-31 15:25:39 -07002044config FB_S3C
2045 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002046 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002047 select FB_CFB_FILLRECT
2048 select FB_CFB_COPYAREA
2049 select FB_CFB_IMAGEBLIT
2050 ---help---
2051 Frame buffer driver for the built-in FB controller in the Samsung
2052 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2053 and the S3C64XX series such as the S3C6400 and S3C6410.
2054
2055 These chips all have the same basic framebuffer design with the
2056 actual capabilities depending on the chip. For instance the S3C6400
2057 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2058 currently only have two.
2059
2060 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2061
2062config FB_S3C_DEBUG_REGWRITE
2063 bool "Debug register writes"
2064 depends on FB_S3C
2065 ---help---
2066 Show all register writes via printk(KERN_DEBUG)
2067
Arnaud Patard20fd5762005-09-09 13:10:07 -07002068config FB_S3C2410
2069 tristate "S3C2410 LCD framebuffer support"
2070 depends on FB && ARCH_S3C2410
2071 select FB_CFB_FILLRECT
2072 select FB_CFB_COPYAREA
2073 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002074 ---help---
2075 Frame buffer driver for the built-in LCD controller in the Samsung
2076 S3C2410 processor.
2077
2078 This driver is also available as a module ( = code which can be
2079 inserted and removed from the running kernel whenever you want). The
2080 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002081 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002082
2083 If unsure, say N.
2084config FB_S3C2410_DEBUG
2085 bool "S3C2410 lcd debug messages"
2086 depends on FB_S3C2410
2087 help
2088 Turn on debugging messages. Note that you can set/unset at run time
2089 through sysfs
2090
Wang Qiang86619702010-03-10 15:21:47 -08002091config FB_NUC900
2092 bool "NUC900 LCD framebuffer support"
2093 depends on FB && ARCH_W90X900
2094 select FB_CFB_FILLRECT
2095 select FB_CFB_COPYAREA
2096 select FB_CFB_IMAGEBLIT
2097 ---help---
2098 Frame buffer driver for the built-in LCD controller in the Nuvoton
2099 NUC900 processor
2100
2101config GPM1040A0_320X240
2102 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2103 depends on FB_NUC900
2104
2105config FB_NUC900_DEBUG
2106 bool "NUC900 lcd debug messages"
2107 depends on FB_NUC900
2108 help
2109 Turn on debugging messages. Note that you can set/unset at run time
2110 through sysfs
2111
Ben Dooks5fc404e2007-02-20 13:58:21 -08002112config FB_SM501
2113 tristate "Silicon Motion SM501 framebuffer support"
2114 depends on FB && MFD_SM501
2115 select FB_CFB_FILLRECT
2116 select FB_CFB_COPYAREA
2117 select FB_CFB_IMAGEBLIT
2118 ---help---
2119 Frame buffer driver for the CRT and LCD controllers in the Silicon
2120 Motion SM501.
2121
2122 This driver is also available as a module ( = code which can be
2123 inserted and removed from the running kernel whenever you want). The
2124 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002125 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002126
2127 If unsure, say N.
2128
2129
Vitaly Wool36c93662006-07-03 00:24:19 -07002130config FB_PNX4008_DUM
2131 tristate "Display Update Module support on Philips PNX4008 board"
2132 depends on FB && ARCH_PNX4008
2133 ---help---
2134 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2135
2136config FB_PNX4008_DUM_RGB
2137 tristate "RGB Framebuffer support on Philips PNX4008 board"
2138 depends on FB_PNX4008_DUM
2139 select FB_CFB_FILLRECT
2140 select FB_CFB_COPYAREA
2141 select FB_CFB_IMAGEBLIT
2142 ---help---
2143 Say Y here to enable support for PNX4008 RGB Framebuffer
2144
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002145config FB_IBM_GXT4500
2146 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002147 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002148 select FB_CFB_FILLRECT
2149 select FB_CFB_COPYAREA
2150 select FB_CFB_IMAGEBLIT
2151 ---help---
2152 Say Y here to enable support for the IBM GXT4500P display
2153 adaptor, found on some IBM System P (pSeries) machines.
2154
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002155config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002156 tristate "PS3 GPU framebuffer driver"
2157 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002158 select FB_SYS_FILLRECT
2159 select FB_SYS_COPYAREA
2160 select FB_SYS_IMAGEBLIT
2161 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002162 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002163 ---help---
2164 Include support for the virtual frame buffer in the PS3 platform.
2165
2166config FB_PS3_DEFAULT_SIZE_M
2167 int "PS3 default frame buffer size (in MiB)"
2168 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002169 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002170 ---help---
2171 This is the default size (in MiB) of the virtual frame buffer in
2172 the PS3.
2173 The default value can be overridden on the kernel command line
2174 using the "ps3fb" option (e.g. "ps3fb=9M");
2175
Andrei Konovalov147394c2007-05-08 00:40:18 -07002176config FB_XILINX
2177 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002178 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002179 select FB_CFB_FILLRECT
2180 select FB_CFB_COPYAREA
2181 select FB_CFB_IMAGEBLIT
2182 ---help---
2183 Include support for the Xilinx ML300/ML403 reference design
2184 framebuffer. ML300 carries a 640*480 LCD display on the board,
2185 ML403 uses a standard DB15 VGA connector.
2186
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002187config FB_COBALT
2188 tristate "Cobalt server LCD frame buffer support"
2189 depends on FB && MIPS_COBALT
2190
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002191config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002192 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2193 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2194 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2195 select FB_CFB_FILLRECT
2196 select FB_CFB_COPYAREA
2197 select FB_CFB_IMAGEBLIT
2198 ---help---
2199 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2200 (D)STN/TFT LCD Controller.
2201 Supports display resolutions up to 1024x1024 pixel, grayscale and
2202 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2203 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2204 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002205
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002206config FB_DA8XX
2207 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2208 depends on FB && ARCH_DAVINCI_DA8XX
2209 select FB_CFB_FILLRECT
2210 select FB_CFB_COPYAREA
2211 select FB_CFB_IMAGEBLIT
2212 ---help---
2213 This is the frame buffer device driver for the TI LCD controller
2214 found on DA8xx/OMAP-L1xx SoCs.
2215 If unsure, say N.
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217config FB_VIRTUAL
2218 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2219 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002220 select FB_SYS_FILLRECT
2221 select FB_SYS_COPYAREA
2222 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002223 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 ---help---
2225 This is a `virtual' frame buffer device. It operates on a chunk of
2226 unswappable kernel memory instead of on the memory of a graphics
2227 board. This means you cannot see any output sent to this frame
2228 buffer device, while it does consume precious memory. The main use
2229 of this frame buffer device is testing and debugging the frame
2230 buffer subsystem. Do NOT enable it for normal systems! To protect
2231 the innocent, it has to be enabled explicitly at boot time using the
2232 kernel option `video=vfb:'.
2233
2234 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002235 module will be called vfb. In order to load it, you must use
2236 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002239
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002240config XEN_FBDEV_FRONTEND
2241 tristate "Xen virtual frame buffer support"
2242 depends on FB && XEN
2243 select FB_SYS_FILLRECT
2244 select FB_SYS_COPYAREA
2245 select FB_SYS_IMAGEBLIT
2246 select FB_SYS_FOPS
2247 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002248 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002249 default y
2250 help
2251 This driver implements the front-end of the Xen virtual
2252 frame buffer driver. It communicates with a back-end
2253 in another domain.
2254
Jaya Kumare9355082008-08-19 11:17:55 +01002255config FB_METRONOME
2256 tristate "E-Ink Metronome/8track controller support"
2257 depends on FB
2258 select FB_SYS_FILLRECT
2259 select FB_SYS_COPYAREA
2260 select FB_SYS_IMAGEBLIT
2261 select FB_SYS_FOPS
2262 select FB_DEFERRED_IO
2263 help
2264 This driver implements support for the E-Ink Metronome
2265 controller. The pre-release name for this device was 8track
2266 and could also have been called by some vendors as PVI-nnnn.
2267
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002268config FB_MB862XX
2269 tristate "Fujitsu MB862xx GDC support"
2270 depends on FB
2271 select FB_CFB_FILLRECT
2272 select FB_CFB_COPYAREA
2273 select FB_CFB_IMAGEBLIT
2274 ---help---
2275 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2276
2277config FB_MB862XX_PCI_GDC
2278 bool "Carmine/Coral-P(A) GDC"
2279 depends on PCI && FB_MB862XX
2280 ---help---
2281 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2282 PCI graphics controller devices.
2283
2284config FB_MB862XX_LIME
2285 bool "Lime GDC"
2286 depends on FB_MB862XX
2287 depends on OF && !FB_MB862XX_PCI_GDC
Julian Calaby336e7472009-06-16 15:34:29 -07002288 depends on PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002289 select FB_FOREIGN_ENDIAN
2290 select FB_LITTLE_ENDIAN
2291 ---help---
2292 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2293
Ryan Mallon88017bd2009-09-22 16:47:09 -07002294config FB_EP93XX
2295 tristate "EP93XX frame buffer support"
2296 depends on FB && ARCH_EP93XX
2297 select FB_CFB_FILLRECT
2298 select FB_CFB_COPYAREA
2299 select FB_CFB_IMAGEBLIT
2300 ---help---
2301 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2302 This driver is also available as a module. The module will be called
2303 ep93xx-fb.
2304
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002305config FB_PRE_INIT_FB
2306 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002307 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002308 ---help---
2309 Select this option if display contents should be inherited as set by
2310 the bootloader.
2311
Pavel Machekd480ace2009-09-22 16:47:03 -07002312config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002313 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002314 depends on FB && ARCH_MSM
2315 select FB_CFB_FILLRECT
2316 select FB_CFB_COPYAREA
2317 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002318
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002319config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002320 tristate "MX3 Framebuffer support"
2321 depends on FB && MX3_IPU
2322 select FB_CFB_FILLRECT
2323 select FB_CFB_COPYAREA
2324 select FB_CFB_IMAGEBLIT
2325 default y
2326 help
2327 This is a framebuffer device for the i.MX31 LCD Controller. So
2328 far only synchronous displays are supported. If you plan to use
2329 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002330
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002331config FB_BROADSHEET
2332 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2333 depends on FB
2334 select FB_SYS_FILLRECT
2335 select FB_SYS_COPYAREA
2336 select FB_SYS_IMAGEBLIT
2337 select FB_SYS_FOPS
2338 select FB_DEFERRED_IO
2339 help
2340 This driver implements support for the E-Ink Broadsheet
2341 controller. The release name for this device was Epson S1D13521
2342 and could also have been called by other names when coupled with
2343 a bridge adapter.
2344
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002345config FB_JZ4740
2346 tristate "JZ4740 LCD framebuffer support"
2347 depends on FB && MACH_JZ4740
2348 select FB_SYS_FILLRECT
2349 select FB_SYS_COPYAREA
2350 select FB_SYS_IMAGEBLIT
2351 help
2352 Framebuffer support for the JZ4740 SoC.
2353
Randy Dunlapf08f3892007-10-29 14:37:16 -07002354source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002355source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002356
Randy Dunlap179b0252007-10-16 01:29:39 -07002357source "drivers/video/backlight/Kconfig"
2358source "drivers/video/display/Kconfig"
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360if VT
2361 source "drivers/video/console/Kconfig"
2362endif
2363
2364if FB || SGI_NEWPORT_CONSOLE
2365 source "drivers/video/logo/Kconfig"
2366endif
2367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368endmenu