blob: b20f0f81dc01fe26ca91f2d7534e2458f4224a51 [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
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000014config SH_MIPI_DSI
15 tristate
16 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
17
18config SH_LCD_MIPI_DSI
19 bool
20
Randy Dunlap179b0252007-10-16 01:29:39 -070021source "drivers/char/agp/Kconfig"
22
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100023source "drivers/gpu/vga/Kconfig"
24
Dave Airliec0e09202008-05-29 10:09:59 +100025source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070026
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080027source "drivers/gpu/stub/Kconfig"
28
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070029config VGASTATE
30 tristate
31 default n
32
Luming Yu23b0f012007-05-09 21:07:05 +080033config VIDEO_OUTPUT_CONTROL
34 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080035 help
36 This framework adds support for low-level control of the video
37 output switch.
38
Randy Dunlap179b0252007-10-16 01:29:39 -070039menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 tristate "Support for frame buffer devices"
41 ---help---
42 The frame buffer device provides an abstraction for the graphics
43 hardware. It represents the frame buffer of some video hardware and
44 allows application software to access the graphics hardware through
45 a well-defined interface, so the software doesn't need to know
46 anything about the low-level (hardware register) stuff.
47
48 Frame buffer devices work identically across the different
49 architectures supported by Linux and make the implementation of
50 application programs easier and more portable; at this point, an X
51 server exists which uses the frame buffer device exclusively.
52 On several non-X86 architectures, the frame buffer device is the
53 only way to use the graphics hardware.
54
55 The device is accessed through special device nodes, usually located
56 in the /dev directory, i.e. /dev/fb*.
57
58 You need an utility program called fbset to make full use of frame
59 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
60 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020061 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 information.
63
64 Say Y here and to the driver for your graphics board below if you
65 are compiling a kernel for a non-x86 architecture.
66
67 If you are compiling for the x86 architecture, you can say Y if you
68 want to play with it, but it is not essential. Please note that
69 running graphical applications that directly touch the hardware
70 (e.g. an accelerated X server) and that are not frame buffer
71 device-aware may cause unexpected results. If unsure, say N.
72
James Simmonse0e34ef2007-02-10 14:15:43 +000073config FIRMWARE_EDID
74 bool "Enable firmware EDID"
75 depends on FB
76 default n
77 ---help---
78 This enables access to the EDID transferred from the firmware.
79 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
80 transfers do not work for your driver and if you are using
81 nvidiafb, i810fb or savagefb.
82
83 In general, choosing Y for this option is safe. If you
84 experience extremely long delays while booting before you get
85 something on your display, try setting this to N. Matrox cards in
86 combination with certain motherboards and monitors are known to
87 suffer from this problem.
88
Dennis Munsiefc5891c2006-10-03 01:14:42 -070089config FB_DDC
90 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000091 depends on FB
92 select I2C_ALGOBIT
93 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070094 default n
95
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070096config FB_BOOT_VESA_SUPPORT
97 bool
98 depends on FB
99 default n
100 ---help---
101 If true, at least one selected framebuffer driver can take advantage
102 of VESA video modes set at an early boot stage via the vga= parameter.
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104config FB_CFB_FILLRECT
105 tristate
106 depends on FB
107 default n
108 ---help---
109 Include the cfb_fillrect function for generic software rectangle
110 filling. This is used by drivers that don't provide their own
111 (accelerated) version.
112
113config FB_CFB_COPYAREA
114 tristate
115 depends on FB
116 default n
117 ---help---
118 Include the cfb_copyarea function for generic software area copying.
119 This is used by drivers that don't provide their own (accelerated)
120 version.
121
122config FB_CFB_IMAGEBLIT
123 tristate
124 depends on FB
125 default n
126 ---help---
127 Include the cfb_imageblit function for generic software image
128 blitting. This is used by drivers that don't provide their own
129 (accelerated) version.
130
Pavel Pisa779121e2007-10-16 01:29:21 -0700131config FB_CFB_REV_PIXELS_IN_BYTE
132 bool
133 depends on FB
134 default n
135 ---help---
136 Allow generic frame-buffer functions to work on displays with 1, 2
137 and 4 bits per pixel depths which has opposite order of pixels in
138 byte order to bytes in long order.
139
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700140config FB_SYS_FILLRECT
141 tristate
142 depends on FB
143 default n
144 ---help---
145 Include the sys_fillrect function for generic software rectangle
146 filling. This is used by drivers that don't provide their own
147 (accelerated) version and the framebuffer is in system RAM.
148
149config FB_SYS_COPYAREA
150 tristate
151 depends on FB
152 default n
153 ---help---
154 Include the sys_copyarea function for generic software area copying.
155 This is used by drivers that don't provide their own (accelerated)
156 version and the framebuffer is in system RAM.
157
158config FB_SYS_IMAGEBLIT
159 tristate
160 depends on FB
161 default n
162 ---help---
163 Include the sys_imageblit function for generic software image
164 blitting. This is used by drivers that don't provide their own
165 (accelerated) version and the framebuffer is in system RAM.
166
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700167menuconfig FB_FOREIGN_ENDIAN
168 bool "Framebuffer foreign endianness support"
169 depends on FB
170 ---help---
171 This menu will let you enable support for the framebuffers with
172 non-native endianness (e.g. Little-Endian framebuffer on a
173 Big-Endian machine). Most probably you don't have such hardware,
174 so it's safe to say "n" here.
175
176choice
177 prompt "Choice endianness support"
178 depends on FB_FOREIGN_ENDIAN
179
180config FB_BOTH_ENDIAN
181 bool "Support for Big- and Little-Endian framebuffers"
182
183config FB_BIG_ENDIAN
184 bool "Support for Big-Endian framebuffers only"
185
186config FB_LITTLE_ENDIAN
187 bool "Support for Little-Endian framebuffers only"
188
189endchoice
190
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700191config FB_SYS_FOPS
192 tristate
193 depends on FB
194 default n
195
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300196config FB_WMT_GE_ROPS
197 tristate
198 depends on FB
199 default n
200 ---help---
201 Include functions for accelerated rectangle filling and area
202 copying using WonderMedia Graphics Engine operations.
203
Jaya Kumar60b59be2007-05-08 00:37:37 -0700204config FB_DEFERRED_IO
205 bool
206 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700207
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700208config FB_HECUBA
209 tristate
210 depends on FB
211 depends on FB_DEFERRED_IO
212
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800213config FB_SVGALIB
214 tristate
215 depends on FB
216 default n
217 ---help---
218 Common utility functions useful to fbdev drivers of VGA-based
219 cards.
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221config FB_MACMODES
222 tristate
223 depends on FB
224 default n
225
Michael Hanselmann5474c122006-06-25 05:47:08 -0700226config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700227 bool
228 depends on FB
229 select BACKLIGHT_LCD_SUPPORT
230 select BACKLIGHT_CLASS_DEVICE
231 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233config FB_MODE_HELPERS
234 bool "Enable Video Mode Handling Helpers"
235 depends on FB
236 default n
237 ---help---
238 This enables functions for handling video modes using the
239 Generalized Timing Formula and the EDID parser. A few drivers rely
240 on this feature such as the radeonfb, rivafb, and the i810fb. If
241 your driver does not take advantage of this feature, choosing Y will
242 just increase the kernel size by about 5K.
243
244config FB_TILEBLITTING
245 bool "Enable Tile Blitting Support"
246 depends on FB
247 default n
248 ---help---
249 This enables tile blitting. Tile blitting is a drawing technique
250 where the screen is divided into rectangular sections (tiles), whereas
251 the standard blitting divides the screen into pixels. Because the
252 default drawing element is a tile, drawing functions will be passed
253 parameters in terms of number of tiles instead of number of pixels.
254 For example, to draw a single character, instead of using bitmaps,
255 an index to an array of bitmaps will be used. To clear or move a
256 rectangular section of a screen, the rectangle will be described in
257 terms of number of tiles in the x- and y-axis.
258
259 This is particularly important to one driver, matroxfb. If
260 unsure, say N.
261
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700262comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000263 depends on FB
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265config FB_CIRRUS
266 tristate "Cirrus Logic support"
267 depends on FB && (ZORRO || PCI)
268 select FB_CFB_FILLRECT
269 select FB_CFB_COPYAREA
270 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ---help---
272 This enables support for Cirrus Logic GD542x/543x based boards on
273 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
274
275 If you have a PCI-based system, this enables support for these
276 chips: GD-543x, GD-544x, GD-5480.
277
278 Please read the file <file:Documentation/fb/cirrusfb.txt>.
279
280 Say N unless you have such a graphics board or plan to get one
281 before you next recompile the kernel.
282
283config FB_PM2
284 tristate "Permedia2 support"
285 depends on FB && ((AMIGA && BROKEN) || PCI)
286 select FB_CFB_FILLRECT
287 select FB_CFB_COPYAREA
288 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700290 This is the frame buffer device driver for cards based on
291 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
292 The driver was tested on the following cards:
293 Diamond FireGL 1000 PRO AGP
294 ELSA Gloria Synergy PCI
295 Appian Jeronimo PRO (both heads) PCI
296 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
297 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
298 ASK Graphic Blaster Exxtreme AGP
299
300 To compile this driver as a module, choose M here: the
301 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303config FB_PM2_FIFO_DISCONNECT
304 bool "enable FIFO disconnect feature"
305 depends on FB_PM2 && PCI
306 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700307 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309config FB_ARMCLCD
310 tristate "ARM PrimeCell PL110 support"
311 depends on FB && ARM && ARM_AMBA
312 select FB_CFB_FILLRECT
313 select FB_CFB_COPYAREA
314 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 help
316 This framebuffer device driver is for the ARM PrimeCell PL110
317 Colour LCD controller. ARM PrimeCells provide the building
318 blocks for System on a Chip devices.
319
320 If you want to compile this as a module (=code which can be
321 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500322 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 will be called amba-clcd.
324
Marc Singer903e2bb2006-05-16 11:41:30 +0100325choice
326
327 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
328 prompt "LCD Panel"
329 default FB_ARMCLCD_SHARP_LQ035Q7DB02
330
331config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
332 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
333 help
334 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200335 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100336 an integrated HRTFT controller IC.
337 The native resolution is 240x320.
338
339config FB_ARMCLCD_SHARP_LQ057Q3DC02
340 bool "LogicPD LCD 5.7\" QVGA"
341 help
342 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
343 color QVGA, TFT panel. The LogicPD device includes an
344 The native resolution is 320x240.
345
346config FB_ARMCLCD_SHARP_LQ64D343
347 bool "LogicPD LCD 6.4\" VGA"
348 help
349 This is an implementation of the Sharp LQ64D343, a 6.4"
350 color VGA, TFT panel. The LogicPD device includes an
351 The native resolution is 640x480.
352
353config FB_ARMCLCD_SHARP_LQ10D368
354 bool "LogicPD LCD 10.4\" VGA"
355 help
356 This is an implementation of the Sharp LQ10D368, a 10.4"
357 color VGA, TFT panel. The LogicPD device includes an
358 The native resolution is 640x480.
359
360
361config FB_ARMCLCD_SHARP_LQ121S1DG41
362 bool "LogicPD LCD 12.1\" SVGA"
363 help
364 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
365 color SVGA, TFT panel. The LogicPD device includes an
366 The native resolution is 800x600.
367
368 This panel requires a clock rate may be an integer fraction
369 of the base LCDCLK frequency. The driver will select the
370 highest frequency available that is lower than the maximum
371 allowed. The panel may flicker if the clock rate is
372 slower than the recommended minimum.
373
374config FB_ARMCLCD_AUO_A070VW01_WIDE
375 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
376 help
377 This is an implementation of the AU Optronics, a 7.0"
378 WIDE Color. The native resolution is 234x480.
379
380config FB_ARMCLCD_HITACHI
381 bool "Hitachi Wide Screen 800x480"
382 help
383 This is an implementation of the Hitachi 800x480.
384
385endchoice
386
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388config FB_ACORN
389 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000390 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 select FB_CFB_FILLRECT
392 select FB_CFB_COPYAREA
393 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 help
395 This is the frame buffer device driver for the Acorn VIDC graphics
396 hardware found in Acorn RISC PCs and other ARM-based machines. If
397 unsure, say N.
398
399config FB_CLPS711X
400 bool "CLPS711X LCD support"
401 depends on (FB = y) && ARM && ARCH_CLPS711X
402 select FB_CFB_FILLRECT
403 select FB_CFB_COPYAREA
404 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800405 help
406 Say Y to enable the Framebuffer driver for the CLPS7111 and
407 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409config FB_SA1100
410 bool "SA-1100 LCD support"
411 depends on (FB = y) && ARM && ARCH_SA1100
412 select FB_CFB_FILLRECT
413 select FB_CFB_COPYAREA
414 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 help
416 This is a framebuffer device for the SA-1100 LCD Controller.
417 See <http://www.linux-fbdev.org/> for information on framebuffer
418 devices.
419
420 If you plan to use the LCD display with your SA-1100 system, say
421 Y here.
422
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700423config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200424 tristate "Freescale i.MX LCD support"
Baruch Siachf6014412010-02-17 12:33:23 +0200425 depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700426 select FB_CFB_FILLRECT
427 select FB_CFB_COPYAREA
428 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430config FB_CYBER2000
431 tristate "CyberPro 2000/2010/5000 support"
432 depends on FB && PCI && (BROKEN || !SPARC64)
433 select FB_CFB_FILLRECT
434 select FB_CFB_COPYAREA
435 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 help
437 This enables support for the Integraphics CyberPro 20x0 and 5000
438 VGA chips used in the Rebel.com Netwinder and other machines.
439 Say Y if you have a NetWinder or a graphics card containing this
440 device, otherwise say N.
441
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200442config FB_CYBER2000_DDC
443 bool "DDC for CyberPro support"
444 depends on FB_CYBER2000
445 select FB_DDC
446 default y
447 help
448 Say Y here if you want DDC support for your CyberPro graphics
449 card. This is only I2C bus support, driver does not use EDID.
450
Russell Kingb7ca01a2010-08-02 09:57:07 +0100451config FB_CYBER2000_I2C
452 bool "CyberPro 2000/2010/5000 I2C support"
453 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
454 select I2C_ALGOBIT
455 help
456 Enable support for the I2C video decoder interface on the
457 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
458 on the Netwinder machines for the SAA7111 video capture.
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460config FB_APOLLO
461 bool
462 depends on (FB = y) && APOLLO
463 default y
464 select FB_CFB_FILLRECT
465 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467config FB_Q40
468 bool
469 depends on (FB = y) && Q40
470 default y
471 select FB_CFB_FILLRECT
472 select FB_CFB_COPYAREA
473 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475config FB_AMIGA
476 tristate "Amiga native chipset support"
477 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 help
479 This is the frame buffer device driver for the builtin graphics
480 chipset found in Amigas.
481
482 To compile this driver as a module, choose M here: the
483 module will be called amifb.
484
485config FB_AMIGA_OCS
486 bool "Amiga OCS chipset support"
487 depends on FB_AMIGA
488 help
489 This enables support for the original Agnus and Denise video chips,
490 found in the Amiga 1000 and most A500's and A2000's. If you intend
491 to run Linux on any of these systems, say Y; otherwise say N.
492
493config FB_AMIGA_ECS
494 bool "Amiga ECS chipset support"
495 depends on FB_AMIGA
496 help
497 This enables support for the Enhanced Chip Set, found in later
498 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
499 you intend to run Linux on any of these systems, say Y; otherwise
500 say N.
501
502config FB_AMIGA_AGA
503 bool "Amiga AGA chipset support"
504 depends on FB_AMIGA
505 help
506 This enables support for the Advanced Graphics Architecture (also
507 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
508 and CD32. If you intend to run Linux on any of these systems, say Y;
509 otherwise say N.
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511config FB_FM2
512 bool "Amiga FrameMaster II/Rainbow II support"
513 depends on (FB = y) && ZORRO
514 select FB_CFB_FILLRECT
515 select FB_CFB_COPYAREA
516 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 help
518 This is the frame buffer device driver for the Amiga FrameMaster
519 card from BSC (exhibited 1992 but not shipped as a CBM product).
520
Jaya Kumar1154ea72005-06-21 17:17:04 -0700521config FB_ARC
522 tristate "Arc Monochrome LCD board support"
523 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700524 select FB_SYS_FILLRECT
525 select FB_SYS_COPYAREA
526 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700527 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700528 help
529 This enables support for the Arc Monochrome LCD board. The board
530 is based on the KS-108 lcd controller and is typically a matrix
531 of 2*n chips. This driver was tested with a 128x64 panel. This
532 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200533 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700534 this driver, say Y or M; otherwise say N. You must specify the
535 GPIO IO address to be used for setting control and data.
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537config FB_ATARI
538 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200539 depends on (FB = y) && ATARI
540 select FB_CFB_FILLRECT
541 select FB_CFB_COPYAREA
542 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 help
544 This is the frame buffer device driver for the builtin graphics
545 chipset found in Ataris.
546
547config FB_OF
548 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100549 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 select FB_CFB_FILLRECT
551 select FB_CFB_COPYAREA
552 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 select FB_MACMODES
554 help
555 Say Y if you want support with Open Firmware for your graphics
556 board.
557
558config FB_CONTROL
559 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700560 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 select FB_CFB_FILLRECT
562 select FB_CFB_COPYAREA
563 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 select FB_MACMODES
565 help
566 This driver supports a frame buffer for the graphics adapter in the
567 Power Macintosh 7300 and others.
568
569config FB_PLATINUM
570 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700571 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 select FB_CFB_FILLRECT
573 select FB_CFB_COPYAREA
574 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 select FB_MACMODES
576 help
577 This driver supports a frame buffer for the "platinum" graphics
578 adapter in some Power Macintoshes.
579
580config FB_VALKYRIE
581 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700582 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 select FB_CFB_FILLRECT
584 select FB_CFB_COPYAREA
585 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 select FB_MACMODES
587 help
588 This driver supports a frame buffer for the "valkyrie" graphics
589 adapter in some Power Macintoshes.
590
591config FB_CT65550
592 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800593 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 select FB_CFB_FILLRECT
595 select FB_CFB_COPYAREA
596 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 help
598 This is the frame buffer device driver for the Chips & Technologies
599 65550 graphics chip in PowerBooks.
600
601config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800602 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 depends on (FB = y) && PCI
604 select FB_CFB_FILLRECT
605 select FB_CFB_COPYAREA
606 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700607 help
608 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610config FB_IMSTT
611 bool "IMS Twin Turbo display support"
612 depends on (FB = y) && PCI
613 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 select FB_MACMODES if PPC
615 help
616 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
617 many Macintosh and compatible computers.
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619config FB_VGA16
620 tristate "VGA 16-color graphics support"
621 depends on FB && (X86 || PPC)
622 select FB_CFB_FILLRECT
623 select FB_CFB_COPYAREA
624 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700625 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700626 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 help
628 This is the frame buffer device driver for VGA 16 color graphic
629 cards. Say Y if you have such a card.
630
631 To compile this driver as a module, choose M here: the
632 module will be called vga16fb.
633
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700634config FB_BF54X_LQ043
635 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700636 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700637 select FB_CFB_FILLRECT
638 select FB_CFB_COPYAREA
639 select FB_CFB_IMAGEBLIT
640 help
641 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
642
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700643config FB_BFIN_T350MCQB
644 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
645 depends on FB && BLACKFIN
646 select BFIN_GPTIMERS
647 select FB_CFB_FILLRECT
648 select FB_CFB_COPYAREA
649 select FB_CFB_IMAGEBLIT
650 help
651 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
652 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
653 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
654
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800655config FB_BFIN_LQ035Q1
656 tristate "SHARP LQ035Q1DH02 TFT LCD"
657 depends on FB && BLACKFIN && SPI
658 select FB_CFB_FILLRECT
659 select FB_CFB_COPYAREA
660 select FB_CFB_IMAGEBLIT
661 select BFIN_GPTIMERS
662 help
663 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
664 the Blackfin Landscape LCD EZ-Extender Card.
665 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
666 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
667
668 To compile this driver as a module, choose M here: the
669 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700670
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000671config FB_BF537_LQ035
672 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
673 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
674 select FB_CFB_FILLRECT
675 select FB_CFB_COPYAREA
676 select FB_CFB_IMAGEBLIT
677 select BFIN_GPTIMERS
678 help
679 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
680 attached to a BF537.
681
682 To compile this driver as a module, choose M here: the
683 module will be called bf537-lq035.
684
Michael Hennerichcffd9342010-11-24 09:33:59 +0000685config FB_BFIN_7393
686 tristate "Blackfin ADV7393 Video encoder"
687 depends on FB && BLACKFIN
688 select I2C
689 select FB_CFB_FILLRECT
690 select FB_CFB_COPYAREA
691 select FB_CFB_IMAGEBLIT
692 help
693 This is the framebuffer device for a ADV7393 video encoder
694 attached to a Blackfin on the PPI port.
695 If your Blackfin board has a ADV7393 select Y.
696
697 To compile this driver as a module, choose M here: the
698 module will be called bfin_adv7393fb.
699
700choice
701 prompt "Video mode support"
702 depends on FB_BFIN_7393
703 default NTSC
704
705config NTSC
706 bool 'NTSC 720x480'
707
708config PAL
709 bool 'PAL 720x576'
710
711config NTSC_640x480
712 bool 'NTSC 640x480 (Experimental)'
713
714config PAL_640x480
715 bool 'PAL 640x480 (Experimental)'
716
717config NTSC_YCBCR
718 bool 'NTSC 720x480 YCbCR input'
719
720config PAL_YCBCR
721 bool 'PAL 720x576 YCbCR input'
722
723endchoice
724
725choice
726 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
727 depends on (FB_BFIN_7393)
728 default ADV7393_1XMEM
729
730config ADV7393_1XMEM
731 bool 'Single'
732
733config ADV7393_2XMEM
734 bool 'Double'
735endchoice
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737config FB_STI
738 tristate "HP STI frame buffer device support"
739 depends on FB && PARISC
740 select FB_CFB_FILLRECT
741 select FB_CFB_COPYAREA
742 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000743 select STI_CONSOLE
744 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 default y
746 ---help---
747 STI refers to the HP "Standard Text Interface" which is a set of
748 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
749 Enabling this option will implement the linux framebuffer device
750 using calls to the STI BIOS routines for initialisation.
751
752 If you enable this option, you will get a planar framebuffer device
753 /dev/fb which will work on the most common HP graphic cards of the
754 NGLE family, including the artist chips (in the 7xx and Bxxx series),
755 HCRX, HCRX24, CRX, CRX24 and VisEG series.
756
757 It is safe to enable this option, so you should probably say "Y".
758
759config FB_MAC
760 bool "Generic Macintosh display support"
761 depends on (FB = y) && MAC
762 select FB_CFB_FILLRECT
763 select FB_CFB_COPYAREA
764 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 select FB_MACMODES
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767config FB_HP300
768 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200769 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 default y
772
773config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700774 tristate "TGA/SFB+ framebuffer support"
775 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 select FB_CFB_FILLRECT
777 select FB_CFB_COPYAREA
778 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800779 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700780 ---help---
781 This is the frame buffer device driver for generic TGA and SFB+
782 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
783 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
784 TURBOchannel cards, also known as PMAGD-A, -B and -C.
785
786 Due to hardware limitations ZLX-E2 and E3 cards are not supported
787 for DECstation 5000/200 systems. Additionally due to firmware
788 limitations these cards may cause troubles with booting DECstation
789 5000/240 and /260 systems, but are fully supported under Linux if
790 you manage to get it going. ;-)
791
792 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700794config FB_UVESA
795 tristate "Userspace VESA VGA graphics support"
796 depends on FB && CONNECTOR
797 select FB_CFB_FILLRECT
798 select FB_CFB_COPYAREA
799 select FB_CFB_IMAGEBLIT
800 select FB_MODE_HELPERS
801 help
802 This is the frame buffer driver for generic VBE 2.0 compliant
803 graphic cards. It can also take advantage of VBE 3.0 features,
804 such as refresh rate adjustment.
805
806 This driver generally provides more features than vesafb but
807 requires a userspace helper application called 'v86d'. See
808 <file:Documentation/fb/uvesafb.txt> for more information.
809
810 If unsure, say N.
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812config FB_VESA
813 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800814 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 select FB_CFB_FILLRECT
816 select FB_CFB_COPYAREA
817 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700818 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 help
820 This is the frame buffer device driver for generic VESA 2.0
821 compliant graphic cards. The older VESA 1.2 cards are not supported.
822 You will get a boot time penguin logo at no additional cost. Please
823 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
824
Huang, Ying7c831722007-11-28 16:21:55 -0800825config FB_EFI
826 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700827 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700828 select FB_CFB_FILLRECT
829 select FB_CFB_COPYAREA
830 select FB_CFB_IMAGEBLIT
831 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700832 This is the EFI frame buffer device driver. If the firmware on
833 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
834 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700835
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700836config FB_N411
837 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700838 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700839 select FB_SYS_FILLRECT
840 select FB_SYS_COPYAREA
841 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700842 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700843 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700844 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700845 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700846 This enables support for the Apollo display controller in its
847 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849config FB_HGA
850 tristate "Hercules mono graphics support"
851 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 help
853 Say Y here if you have a Hercules mono graphics card.
854
855 To compile this driver as a module, choose M here: the
856 module will be called hgafb.
857
Brent Cook529ed802010-12-31 05:56:50 +0000858 As this card technology is at least 25 years old,
859 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861config FB_SGIVW
862 tristate "SGI Visual Workstation framebuffer support"
863 depends on FB && X86_VISWS
864 select FB_CFB_FILLRECT
865 select FB_CFB_COPYAREA
866 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 help
868 SGI Visual Workstation support for framebuffer graphics.
869
870config FB_GBE
871 bool "SGI Graphics Backend frame buffer support"
872 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
873 select FB_CFB_FILLRECT
874 select FB_CFB_COPYAREA
875 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 help
877 This is the frame buffer device driver for SGI Graphics Backend.
878 This chip is used in SGI O2 and Visual Workstation 320/540.
879
880config FB_GBE_MEM
881 int "Video memory size in MB"
882 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800883 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 help
885 This is the amount of memory reserved for the framebuffer,
886 which can be any value between 1MB and 8MB.
887
Mark Fortescue1a571982005-11-29 19:34:44 -0800888config FB_SBUS
889 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800890 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800891 help
892 Say Y if you want support for SBUS or UPA based frame buffer device.
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894config FB_BW2
895 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800896 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 select FB_CFB_FILLRECT
898 select FB_CFB_COPYAREA
899 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 help
901 This is the frame buffer device driver for the BWtwo frame buffer.
902
903config FB_CG3
904 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800905 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800906 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 select FB_CFB_COPYAREA
908 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 help
910 This is the frame buffer device driver for the CGthree frame buffer.
911
912config FB_CG6
913 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800914 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 select FB_CFB_COPYAREA
916 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 help
918 This is the frame buffer device driver for the CGsix (GX, TurboGX)
919 frame buffer.
920
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700921config FB_FFB
922 bool "Creator/Creator3D/Elite3D support"
923 depends on FB_SBUS && SPARC64
924 select FB_CFB_COPYAREA
925 select FB_CFB_IMAGEBLIT
926 help
927 This is the frame buffer device driver for the Creator, Creator3D,
928 and Elite3D graphics boards.
929
930config FB_TCX
931 bool "TCX (SS4/SS5 only) support"
932 depends on FB_SBUS
933 select FB_CFB_FILLRECT
934 select FB_CFB_COPYAREA
935 select FB_CFB_IMAGEBLIT
936 help
937 This is the frame buffer device driver for the TCX 24/8bit frame
938 buffer.
939
940config FB_CG14
941 bool "CGfourteen (SX) support"
942 depends on FB_SBUS
943 select FB_CFB_FILLRECT
944 select FB_CFB_COPYAREA
945 select FB_CFB_IMAGEBLIT
946 help
947 This is the frame buffer device driver for the CGfourteen frame
948 buffer on Desktop SPARCsystems with the SX graphics option.
949
950config FB_P9100
951 bool "P9100 (Sparcbook 3 only) support"
952 depends on FB_SBUS
953 select FB_CFB_FILLRECT
954 select FB_CFB_COPYAREA
955 select FB_CFB_IMAGEBLIT
956 help
957 This is the frame buffer device driver for the P9100 card
958 supported on Sparcbook 3 machines.
959
960config FB_LEO
961 bool "Leo (ZX) support"
962 depends on FB_SBUS
963 select FB_CFB_FILLRECT
964 select FB_CFB_COPYAREA
965 select FB_CFB_IMAGEBLIT
966 help
967 This is the frame buffer device driver for the SBUS-based Sun ZX
968 (leo) frame buffer cards.
969
970config FB_IGA
971 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700972 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700973 select FB_CFB_FILLRECT
974 select FB_CFB_COPYAREA
975 select FB_CFB_IMAGEBLIT
976 help
977 This is the framebuffer device for the INTERGRAPHICS 1680 and
978 successor frame buffer cards.
979
980config FB_XVR500
981 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700982 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700983 select FB_CFB_FILLRECT
984 select FB_CFB_COPYAREA
985 select FB_CFB_IMAGEBLIT
986 help
987 This is the framebuffer device for the Sun XVR-500 and similar
988 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200989 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700990 mostly initialized the card already. It is treated as a
991 completely dumb framebuffer device.
992
993config FB_XVR2500
994 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700995 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700996 select FB_CFB_FILLRECT
997 select FB_CFB_COPYAREA
998 select FB_CFB_IMAGEBLIT
999 help
1000 This is the framebuffer device for the Sun XVR-2500 and similar
1001 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +02001002 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001003 mostly initialized the card already. It is treated as a
1004 completely dumb framebuffer device.
1005
David S. Miller2d378b92010-03-13 16:25:03 -08001006config FB_XVR1000
1007 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -07001008 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -08001009 select FB_CFB_FILLRECT
1010 select FB_CFB_COPYAREA
1011 select FB_CFB_IMAGEBLIT
1012 help
1013 This is the framebuffer device for the Sun XVR-1000 and similar
1014 graphics cards. The driver only works on sparc64 systems where
1015 the system firmware has mostly initialized the card already. It
1016 is treated as a completely dumb framebuffer device.
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018config FB_PVR2
1019 tristate "NEC PowerVR 2 display support"
1020 depends on FB && SH_DREAMCAST
1021 select FB_CFB_FILLRECT
1022 select FB_CFB_COPYAREA
1023 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 ---help---
1025 Say Y here if you have a PowerVR 2 card in your box. If you plan to
1026 run linux on your Dreamcast, you will have to say Y here.
1027 This driver may or may not work on other PowerVR 2 cards, but is
1028 totally untested. Use at your own risk. If unsure, say N.
1029
1030 To compile this driver as a module, choose M here: the
1031 module will be called pvr2fb.
1032
1033 You can pass several parameters to the driver at boot time or at
1034 module load time. The parameters look like "video=pvr2:XXX", where
1035 the meaning of XXX can be found at the end of the main source file
1036 (<file:drivers/video/pvr2fb.c>). Please see the file
1037 <file:Documentation/fb/pvr2fb.txt>.
1038
1039config FB_EPSON1355
1040 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -07001041 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 select FB_CFB_FILLRECT
1043 select FB_CFB_COPYAREA
1044 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 help
1046 Build in support for the SED1355 Epson Research Embedded RAMDAC
1047 LCD/CRT Controller (since redesignated as the S1D13505) as a
1048 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001049 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Randy Dunlapecc41d52005-11-07 01:00:29 -08001051config FB_S1D13XXX
1052 tristate "Epson S1D13XXX framebuffer support"
1053 depends on FB
1054 select FB_CFB_FILLRECT
1055 select FB_CFB_COPYAREA
1056 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001057 help
1058 Support for S1D13XXX framebuffer device family (currently only
1059 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001060 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -08001061
Nicolas Ferre14340582007-05-10 22:23:26 -07001062config FB_ATMEL
1063 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001064 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001065 select FB_CFB_FILLRECT
1066 select FB_CFB_COPYAREA
1067 select FB_CFB_IMAGEBLIT
1068 help
1069 This enables support for the AT91/AT32 LCD Controller.
1070
1071config FB_INTSRAM
1072 bool "Frame Buffer in internal SRAM"
1073 depends on FB_ATMEL && ARCH_AT91SAM9261
1074 help
1075 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1076 to let frame buffer in external SDRAM.
1077
Nicolas Ferre250a2692007-07-21 04:37:59 -07001078config FB_ATMEL_STN
1079 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001080 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001081 default n
1082 help
1083 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1084 Controller. Say N if you want to connect a TFT.
1085
1086 If unsure, say N.
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088config FB_NVIDIA
1089 tristate "nVidia Framebuffer Support"
1090 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001091 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 select FB_MODE_HELPERS
1093 select FB_CFB_FILLRECT
1094 select FB_CFB_COPYAREA
1095 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001096 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001097 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 help
1099 This driver supports graphics boards with the nVidia chips, TNT
1100 and newer. For very old chipsets, such as the RIVA128, then use
1101 the rivafb.
1102 Say Y if you have such a graphics board.
1103
1104 To compile this driver as a module, choose M here: the
1105 module will be called nvidiafb.
1106
1107config FB_NVIDIA_I2C
1108 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001109 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001110 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 help
1112 This enables I2C support for nVidia Chipsets. This is used
1113 only for getting EDID information from the attached display
1114 allowing for robust video mode handling and switching.
1115
1116 Because fbdev-2.6 requires that drivers must be able to
1117 independently validate video mode parameters, you should say Y
1118 here.
1119
Jean Delvare647f2e72007-05-10 22:23:29 -07001120config FB_NVIDIA_DEBUG
1121 bool "Lots of debug output"
1122 depends on FB_NVIDIA
1123 default n
1124 help
1125 Say Y here if you want the nVidia driver to output all sorts
1126 of debugging information to provide to the maintainer when
1127 something goes wrong.
1128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001129config FB_NVIDIA_BACKLIGHT
1130 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001131 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001132 default y
1133 help
1134 Say Y here if you want to control the backlight of your display.
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136config FB_RIVA
1137 tristate "nVidia Riva support"
1138 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001139 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 select FB_MODE_HELPERS
1141 select FB_CFB_FILLRECT
1142 select FB_CFB_COPYAREA
1143 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001144 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001145 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 help
1147 This driver supports graphics boards with the nVidia Riva/Geforce
1148 chips.
1149 Say Y if you have such a graphics board.
1150
1151 To compile this driver as a module, choose M here: the
1152 module will be called rivafb.
1153
1154config FB_RIVA_I2C
1155 bool "Enable DDC Support"
1156 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001157 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 help
1159 This enables I2C support for nVidia Chipsets. This is used
1160 only for getting EDID information from the attached display
1161 allowing for robust video mode handling and switching.
1162
1163 Because fbdev-2.6 requires that drivers must be able to
1164 independently validate video mode parameters, you should say Y
1165 here.
1166
1167config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001168 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 depends on FB_RIVA
1170 default n
1171 help
1172 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001173 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 something goes wrong.
1175
Michael Hanselmann5474c122006-06-25 05:47:08 -07001176config FB_RIVA_BACKLIGHT
1177 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001178 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001179 default y
1180 help
1181 Say Y here if you want to control the backlight of your display.
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183config FB_I810
1184 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001185 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 select FB_MODE_HELPERS
1187 select FB_CFB_FILLRECT
1188 select FB_CFB_COPYAREA
1189 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001190 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 help
1192 This driver supports the on-board graphics built in to the Intel 810
1193 and 815 chipsets. Say Y if you have and plan to use such a board.
1194
1195 To compile this driver as a module, choose M here: the
1196 module will be called i810fb.
1197
1198 For more information, please read
1199 <file:Documentation/fb/intel810.txt>
1200
1201config FB_I810_GTF
1202 bool "use VESA Generalized Timing Formula"
1203 depends on FB_I810
1204 help
1205 If you say Y, then the VESA standard, Generalized Timing Formula
1206 or GTF, will be used to calculate the required video timing values
1207 per video mode. Since the GTF allows nondiscrete timings
1208 (nondiscrete being a range of values as opposed to discrete being a
1209 set of values), you'll be able to use any combination of horizontal
1210 and vertical resolutions, and vertical refresh rates without having
1211 to specify your own timing parameters. This is especially useful
1212 to maximize the performance of an aging display, or if you just
1213 have a display with nonstandard dimensions. A VESA compliant
1214 monitor is recommended, but can still work with non-compliant ones.
1215 If you need or want this, then select this option. The timings may
1216 not be compliant with Intel's recommended values. Use at your own
1217 risk.
1218
1219 If you say N, the driver will revert to discrete video timings
1220 using a set recommended by Intel in their documentation.
1221
1222 If unsure, say N.
1223
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001224config FB_I810_I2C
1225 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001226 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001227 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001228 help
1229
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001230config FB_LE80578
1231 tristate "Intel LE80578 (Vermilion) support"
1232 depends on FB && PCI && X86
1233 select FB_MODE_HELPERS
1234 select FB_CFB_FILLRECT
1235 select FB_CFB_COPYAREA
1236 select FB_CFB_IMAGEBLIT
1237 help
1238 This driver supports the LE80578 (Vermilion Range) chipset
1239
1240config FB_CARILLO_RANCH
1241 tristate "Intel Carillo Ranch support"
1242 depends on FB_LE80578 && FB && PCI && X86
1243 help
1244 This driver supports the LE80578 (Carillo Ranch) board
1245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001247 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001248 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 select FB_MODE_HELPERS
1250 select FB_CFB_FILLRECT
1251 select FB_CFB_COPYAREA
1252 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001253 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001254 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 help
1256 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001257 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 Say Y if you have and plan to use such a board.
1259
Krzysztof Helt4b198282009-06-18 16:49:21 -07001260 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1261
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001262 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 module will be called intelfb.
1264
Christian Merkled463d342006-08-22 10:07:01 +10001265 For more information, please read <file:Documentation/fb/intelfb.txt>
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001268 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 depends on FB_INTEL
1270 ---help---
1271 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001272 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 something goes wrong.
1274
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001275config FB_INTEL_I2C
1276 bool "DDC/I2C for Intel framebuffer support"
1277 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001278 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001279 default y
1280 help
1281 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283config FB_MATROX
1284 tristate "Matrox acceleration"
1285 depends on FB && PCI
1286 select FB_CFB_FILLRECT
1287 select FB_CFB_COPYAREA
1288 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 select FB_TILEBLITTING
1290 select FB_MACMODES if PPC_PMAC
1291 ---help---
1292 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1293 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1294 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1295 Matrox G400, G450 or G550 card in your box.
1296
1297 To compile this driver as a module, choose M here: the
1298 module will be called matroxfb.
1299
1300 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001301 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 are described in <file:Documentation/fb/matroxfb.txt>.
1303
1304config FB_MATROX_MILLENIUM
1305 bool "Millennium I/II support"
1306 depends on FB_MATROX
1307 help
1308 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1309 video card. If you select "Advanced lowlevel driver options" below,
1310 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1311 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1312 also use font widths different from 8.
1313
1314config FB_MATROX_MYSTIQUE
1315 bool "Mystique support"
1316 depends on FB_MATROX
1317 help
1318 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1319 video card. If you select "Advanced lowlevel driver options" below,
1320 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1321 packed pixel and 32 bpp packed pixel. You can also use font widths
1322 different from 8.
1323
1324config FB_MATROX_G
1325 bool "G100/G200/G400/G450/G550 support"
1326 depends on FB_MATROX
1327 ---help---
1328 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1329 video card. If you select "Advanced lowlevel driver options", you
1330 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1331 pixel and 32 bpp packed pixel. You can also use font widths
1332 different from 8.
1333
Jean Delvareee831262009-05-12 13:19:41 -07001334 If you need support for G400 secondary head, you must say Y to
1335 "Matrox I2C support" and "G400 second head support" right below.
1336 G450/G550 secondary head and digital output are supported without
1337 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 The driver starts in monitor mode. You must use the matroxset tool
1340 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1341 swap primary and secondary head outputs, or to change output mode.
1342 Secondary head driver always start in 640x480 resolution and you
1343 must use fbset to change it.
1344
1345 Do not forget that second head supports only 16 and 32 bpp
1346 packed pixels, so it is a good idea to compile them into the kernel
1347 too. You can use only some font widths, as the driver uses generic
1348 painting procedures (the secondary head does not use acceleration
1349 engine).
1350
1351 G450/G550 hardware can display TV picture only from secondary CRTC,
1352 and it performs no scaling, so picture must have 525 or 625 lines.
1353
1354config FB_MATROX_I2C
1355 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001356 depends on FB_MATROX
1357 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 ---help---
1359 This drivers creates I2C buses which are needed for accessing the
1360 DDC (I2C) bus present on all Matroxes, an I2C bus which
1361 interconnects Matrox optional devices, like MGA-TVO on G200 and
1362 G400, and the secondary head DDC bus, present on G400 only.
1363
1364 You can say Y or M here if you want to experiment with monitor
1365 detection code. You must say Y or M here if you want to use either
1366 second head of G400 or MGA-TVO on G200 or G400.
1367
1368 If you compile it as module, it will create a module named
1369 i2c-matroxfb.
1370
1371config FB_MATROX_MAVEN
1372 tristate "G400 second head support"
1373 depends on FB_MATROX_G && FB_MATROX_I2C
1374 ---help---
1375 WARNING !!! This support does not work with G450 !!!
1376
1377 Say Y or M here if you want to use a secondary head (meaning two
1378 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1379 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1380 secondary head output is blanked while you are in X. With XFree
1381 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1382 the fbdev driver on first head and the fbdev driver on second head.
1383
1384 If you compile it as module, two modules are created,
1385 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1386 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1387 also load i2c-matroxfb to get it to run.
1388
1389 The driver starts in monitor mode and you must use the matroxset
1390 tool (available at
1391 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1392 PAL or NTSC or to swap primary and secondary head outputs.
1393 Secondary head driver also always start in 640x480 resolution, you
1394 must use fbset to change it.
1395
1396 Also do not forget that second head supports only 16 and 32 bpp
1397 packed pixels, so it is a good idea to compile them into the kernel
1398 too. You can use only some font widths, as the driver uses generic
1399 painting procedures (the secondary head does not use acceleration
1400 engine).
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402config FB_RADEON
1403 tristate "ATI Radeon display support"
1404 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001405 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 select FB_MODE_HELPERS
1407 select FB_CFB_FILLRECT
1408 select FB_CFB_COPYAREA
1409 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 select FB_MACMODES if PPC_OF
1411 help
1412 Choose this option if you want to use an ATI Radeon graphics card as
1413 a framebuffer device. There are both PCI and AGP versions. You
1414 don't need to choose this to run the Radeon in plain VGA mode.
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001417 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419config FB_RADEON_I2C
1420 bool "DDC/I2C for ATI Radeon support"
1421 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001422 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 default y
1424 help
1425 Say Y here if you want DDC/I2C support for your Radeon board.
1426
Michael Hanselmann5474c122006-06-25 05:47:08 -07001427config FB_RADEON_BACKLIGHT
1428 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001429 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001430 default y
1431 help
1432 Say Y here if you want to control the backlight of your display.
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434config FB_RADEON_DEBUG
1435 bool "Lots of debug output from Radeon driver"
1436 depends on FB_RADEON
1437 default n
1438 help
1439 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001440 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 something goes wrong.
1442
1443config FB_ATY128
1444 tristate "ATI Rage128 display support"
1445 depends on FB && PCI
1446 select FB_CFB_FILLRECT
1447 select FB_CFB_COPYAREA
1448 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001449 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 select FB_MACMODES if PPC_PMAC
1451 help
1452 This driver supports graphics boards with the ATI Rage128 chips.
1453 Say Y if you have such a graphics board and read
1454 <file:Documentation/fb/aty128fb.txt>.
1455
1456 To compile this driver as a module, choose M here: the
1457 module will be called aty128fb.
1458
Michael Hanselmann5474c122006-06-25 05:47:08 -07001459config FB_ATY128_BACKLIGHT
1460 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001461 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001462 default y
1463 help
1464 Say Y here if you want to control the backlight of your display.
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466config FB_ATY
1467 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001468 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 select FB_CFB_FILLRECT
1470 select FB_CFB_COPYAREA
1471 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001472 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 select FB_MACMODES if PPC
1474 help
1475 This driver supports graphics boards with the ATI Mach64 chips.
1476 Say Y if you have such a graphics board.
1477
1478 To compile this driver as a module, choose M here: the
1479 module will be called atyfb.
1480
1481config FB_ATY_CT
1482 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1483 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001484 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 help
1486 Say Y here to support use of ATI's 64-bit Rage boards (or other
1487 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1488 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001489 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491config FB_ATY_GENERIC_LCD
1492 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1493 depends on FB_ATY_CT
1494 help
1495 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1496 Rage XC, or Rage XL chipset.
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498config FB_ATY_GX
1499 bool "Mach64 GX support" if PCI
1500 depends on FB_ATY
1501 default y if ATARI
1502 help
1503 Say Y here to support use of the ATI Mach64 Graphics Expression
1504 board (or other boards based on the Mach64 GX chipset) as a
1505 framebuffer device. The ATI product support page for these boards
1506 is at
1507 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1508
Michael Hanselmann5474c122006-06-25 05:47:08 -07001509config FB_ATY_BACKLIGHT
1510 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001511 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001512 default y
1513 help
1514 Say Y here if you want to control the backlight of your display.
1515
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001516config FB_S3
1517 tristate "S3 Trio/Virge support"
1518 depends on FB && PCI
1519 select FB_CFB_FILLRECT
1520 select FB_CFB_COPYAREA
1521 select FB_CFB_IMAGEBLIT
1522 select FB_TILEBLITTING
1523 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001524 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001525 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001526 ---help---
1527 Driver for graphics boards with S3 Trio / S3 Virge chip.
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529config FB_SAVAGE
1530 tristate "S3 Savage support"
1531 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 select FB_MODE_HELPERS
1533 select FB_CFB_FILLRECT
1534 select FB_CFB_COPYAREA
1535 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001536 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 help
1538 This driver supports notebooks and computers with S3 Savage PCI/AGP
1539 chips.
1540
1541 Say Y if you have such a graphics card.
1542
1543 To compile this driver as a module, choose M here; the module
1544 will be called savagefb.
1545
1546config FB_SAVAGE_I2C
1547 bool "Enable DDC2 Support"
1548 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001549 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 help
1551 This enables I2C support for S3 Savage Chipsets. This is used
1552 only for getting EDID information from the attached display
1553 allowing for robust video mode handling and switching.
1554
1555 Because fbdev-2.6 requires that drivers must be able to
1556 independently validate video mode parameters, you should say Y
1557 here.
1558
1559config FB_SAVAGE_ACCEL
1560 bool "Enable Console Acceleration"
1561 depends on FB_SAVAGE
1562 default n
1563 help
1564 This option will compile in console acceleration support. If
1565 the resulting framebuffer console has bothersome glitches, then
1566 choose N here.
1567
1568config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001569 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 depends on FB && PCI
1571 select FB_CFB_FILLRECT
1572 select FB_CFB_COPYAREA
1573 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001574 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001576 This is the frame buffer device driver for the SiS 300, 315, 330
1577 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1578 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 To compile this driver as a module, choose M here; the module
1581 will be called sisfb.
1582
1583config FB_SIS_300
1584 bool "SiS 300 series support"
1585 depends on FB_SIS
1586 help
1587 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1588
1589config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001590 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 depends on FB_SIS
1592 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001593 Say Y here to support use of the SiS 315, 330 and 340 series
1594 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1595 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001597config FB_VIA
1598 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001599 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001600 select FB_CFB_FILLRECT
1601 select FB_CFB_COPYAREA
1602 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001603 select I2C_ALGOBIT
1604 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001605 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001606 help
1607 This is the frame buffer device driver for Graphics chips of VIA
1608 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1609 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1610 /P4M900,VX800)
1611 Say Y if you have a VIA UniChrome graphics board.
1612
1613 To compile this driver as a module, choose M here: the
1614 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001615
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001616if FB_VIA
1617
1618config FB_VIA_DIRECT_PROCFS
1619 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1620 depends on FB_VIA
1621 default n
1622 help
1623 Allow direct hardware access to some output registers via procfs.
1624 This is dangerous but may provide the only chance to get the
1625 correct output device configuration.
1626 Its use is strongly discouraged.
1627
1628endif
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630config FB_NEOMAGIC
1631 tristate "NeoMagic display support"
1632 depends on FB && PCI
1633 select FB_MODE_HELPERS
1634 select FB_CFB_FILLRECT
1635 select FB_CFB_COPYAREA
1636 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001637 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 help
1639 This driver supports notebooks with NeoMagic PCI chips.
1640 Say Y if you have such a graphics card.
1641
1642 To compile this driver as a module, choose M here: the
1643 module will be called neofb.
1644
1645config FB_KYRO
1646 tristate "IMG Kyro support"
1647 depends on FB && PCI
1648 select FB_CFB_FILLRECT
1649 select FB_CFB_COPYAREA
1650 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 help
1652 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1653 graphics board.
1654
1655 To compile this driver as a module, choose M here: the
1656 module will be called kyrofb.
1657
1658config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001659 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 depends on FB && PCI
1661 select FB_CFB_IMAGEBLIT
1662 select FB_CFB_FILLRECT
1663 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001664 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001666 This driver supports graphics boards with the 3Dfx Banshee,
1667 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1668 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 To compile this driver as a module, choose M here: the
1671 module will be called tdfxfb.
1672
1673config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001674 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 depends on FB_3DFX && EXPERIMENTAL
1676 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001677 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1678 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001680config FB_3DFX_I2C
1681 bool "Enable DDC/I2C support"
1682 depends on FB_3DFX && EXPERIMENTAL
1683 select FB_DDC
1684 default y
1685 help
1686 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688config FB_VOODOO1
1689 tristate "3Dfx Voodoo Graphics (sst1) support"
1690 depends on FB && PCI
1691 select FB_CFB_FILLRECT
1692 select FB_CFB_COPYAREA
1693 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 ---help---
1695 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1696 Voodoo2 (cvg) based graphics card.
1697
1698 To compile this driver as a module, choose M here: the
1699 module will be called sstfb.
1700
1701 WARNING: Do not use any application that uses the 3D engine
1702 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001703 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 options and other important info support.
1705
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001706config FB_VT8623
1707 tristate "VIA VT8623 support"
1708 depends on FB && PCI
1709 select FB_CFB_FILLRECT
1710 select FB_CFB_COPYAREA
1711 select FB_CFB_IMAGEBLIT
1712 select FB_TILEBLITTING
1713 select FB_SVGALIB
1714 select VGASTATE
1715 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1716 ---help---
1717 Driver for CastleRock integrated graphics core in the
1718 VIA VT8623 [Apollo CLE266] chipset.
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001721 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 depends on FB && PCI
1723 select FB_CFB_FILLRECT
1724 select FB_CFB_COPYAREA
1725 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001727 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1728 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1729 and Blade XP.
1730 There are also integrated versions of these chips called CyberXXXX,
1731 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001732 but also on some motherboards including early VIA EPIA motherboards.
1733 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 Say Y if you have such a graphics board.
1736
1737 To compile this driver as a module, choose M here: the
1738 module will be called tridentfb.
1739
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001740config FB_ARK
1741 tristate "ARK 2000PV support"
1742 depends on FB && PCI
1743 select FB_CFB_FILLRECT
1744 select FB_CFB_COPYAREA
1745 select FB_CFB_IMAGEBLIT
1746 select FB_TILEBLITTING
1747 select FB_SVGALIB
1748 select VGASTATE
1749 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1750 ---help---
1751 Driver for PCI graphics boards with ARK 2000PV chip
1752 and ICS 5342 RAMDAC.
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001755 tristate "Permedia3 support (EXPERIMENTAL)"
1756 depends on FB && PCI && EXPERIMENTAL
1757 select FB_CFB_FILLRECT
1758 select FB_CFB_COPYAREA
1759 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 help
1761 This is the frame buffer device driver for the 3DLabs Permedia3
1762 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1763 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1764 and maybe other boards.
1765
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001766config FB_CARMINE
1767 tristate "Fujitsu carmine frame buffer support"
1768 depends on FB && PCI
1769 select FB_CFB_FILLRECT
1770 select FB_CFB_COPYAREA
1771 select FB_CFB_IMAGEBLIT
1772 help
1773 This is the frame buffer device driver for the Fujitsu Carmine chip.
1774 The driver provides two independent frame buffer devices.
1775
1776choice
1777 depends on FB_CARMINE
1778 prompt "DRAM timing"
1779 default FB_CARMINE_DRAM_EVAL
1780
1781config FB_CARMINE_DRAM_EVAL
1782 bool "Eval board timings"
1783 help
1784 Use timings which work on the eval card.
1785
1786config CARMINE_DRAM_CUSTOM
1787 bool "Custom board timings"
1788 help
1789 Use custom board timings.
1790endchoice
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792config FB_AU1100
1793 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001794 depends on (FB = y) && MIPS && SOC_AU1100
1795 select FB_CFB_FILLRECT
1796 select FB_CFB_COPYAREA
1797 select FB_CFB_IMAGEBLIT
1798 help
1799 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1800 various panels and CRTs by passing in kernel cmd line option
1801 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001803config FB_AU1200
1804 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001805 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001806 select FB_CFB_FILLRECT
1807 select FB_CFB_COPYAREA
1808 select FB_CFB_IMAGEBLIT
1809 help
1810 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1811 various panels and CRTs by passing in kernel cmd line option
1812 au1200fb:panel=<name>.
1813
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001814config FB_VT8500
1815 bool "VT8500 LCD Driver"
1816 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1817 select FB_WMT_GE_ROPS
1818 select FB_SYS_IMAGEBLIT
1819 help
1820 This is the framebuffer driver for VIA VT8500 integrated LCD
1821 controller.
1822
1823config FB_WM8505
1824 bool "WM8505 frame buffer support"
1825 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1826 select FB_WMT_GE_ROPS
1827 select FB_SYS_IMAGEBLIT
1828 help
1829 This is the framebuffer driver for WonderMedia WM8505
1830 integrated LCD controller.
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832source "drivers/video/geode/Kconfig"
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834config FB_HIT
1835 tristate "HD64461 Frame Buffer support"
1836 depends on FB && HD64461
1837 select FB_CFB_FILLRECT
1838 select FB_CFB_COPYAREA
1839 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 help
1841 This is the frame buffer device driver for the Hitachi HD64461 LCD
1842 frame buffer card.
1843
1844config FB_PMAG_AA
1845 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001846 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 select FB_CFB_FILLRECT
1848 select FB_CFB_COPYAREA
1849 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 help
1851 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1852 used mainly in the MIPS-based DECstation series.
1853
1854config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001855 tristate "PMAG-BA TURBOchannel framebuffer support"
1856 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 select FB_CFB_FILLRECT
1858 select FB_CFB_COPYAREA
1859 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 help
1861 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1862 used mainly in the MIPS-based DECstation series.
1863
1864config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001865 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001866 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 select FB_CFB_FILLRECT
1868 select FB_CFB_COPYAREA
1869 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 help
1871 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1872 in the MIPS-based DECstation series. The card is currently only
1873 supported in 1280x1024x8 mode.
1874
1875config FB_MAXINE
1876 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001877 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 select FB_CFB_FILLRECT
1879 select FB_CFB_COPYAREA
1880 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 help
1882 Support for the onboard framebuffer (1024x768x8) in the Personal
1883 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1884 Codename "Maxine").
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001887 bool "G364 frame buffer support"
1888 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 select FB_CFB_FILLRECT
1890 select FB_CFB_COPYAREA
1891 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 help
1893 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1894 Olivetti M700-10 systems.
1895
1896config FB_68328
1897 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001898 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 select FB_CFB_FILLRECT
1900 select FB_CFB_COPYAREA
1901 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 help
1903 Say Y here if you want to support the built-in frame buffer of
1904 the Motorola 68328 CPU family.
1905
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001906config FB_PXA168
1907 tristate "PXA168/910 LCD framebuffer support"
1908 depends on FB && (CPU_PXA168 || CPU_PXA910)
1909 select FB_CFB_FILLRECT
1910 select FB_CFB_COPYAREA
1911 select FB_CFB_IMAGEBLIT
1912 ---help---
1913 Frame buffer driver for the built-in LCD controller in the Marvell
1914 MMP processor.
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916config FB_PXA
1917 tristate "PXA LCD framebuffer support"
1918 depends on FB && ARCH_PXA
1919 select FB_CFB_FILLRECT
1920 select FB_CFB_COPYAREA
1921 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 ---help---
1923 Frame buffer driver for the built-in LCD controller in the Intel
1924 PXA2x0 processor.
1925
1926 This driver is also available as a module ( = code which can be
1927 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001928 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001929 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 If unsure, say N.
1932
Eric Miao198fc102008-12-23 17:49:43 +08001933config FB_PXA_OVERLAY
1934 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1935 default n
1936 depends on FB_PXA && (PXA27x || PXA3xx)
1937
Eric Miao3c42a442008-04-30 00:52:26 -07001938config FB_PXA_SMARTPANEL
1939 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001940 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001941 depends on FB_PXA
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943config FB_PXA_PARAMETERS
1944 bool "PXA LCD command line parameters"
1945 default n
1946 depends on FB_PXA
1947 ---help---
1948 Enable the use of kernel command line or module parameters
1949 to configure the physical properties of the LCD panel when
1950 using the PXA LCD driver.
1951
1952 This option allows you to override the panel parameters
1953 supplied by the platform in order to support multiple
1954 different models of flatpanel. If you will only be using a
1955 single model of flatpanel then you can safely leave this
1956 option disabled.
1957
1958 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1959
Daniel Mack364dbdf2010-11-04 14:44:00 -04001960config PXA3XX_GCU
1961 tristate "PXA3xx 2D graphics accelerator driver"
1962 depends on FB_PXA
1963 help
1964 Kernelspace driver for the 2D graphics controller unit (GCU)
1965 found on PXA3xx processors. There is a counterpart driver in the
1966 DirectFB suite, see http://www.directfb.org/
1967
1968 If you compile this as a module, it will be called pxa3xx_gcu.
1969
Mike Rapoport22caf042006-07-14 00:24:34 -07001970config FB_MBX
1971 tristate "2700G LCD framebuffer support"
1972 depends on FB && ARCH_PXA
1973 select FB_CFB_FILLRECT
1974 select FB_CFB_COPYAREA
1975 select FB_CFB_IMAGEBLIT
1976 ---help---
1977 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1978 Accelerator
1979
1980config FB_MBX_DEBUG
1981 bool "Enable debugging info via debugfs"
1982 depends on FB_MBX && DEBUG_FS
1983 default n
1984 ---help---
1985 Enable this if you want debugging information using the debug
1986 filesystem (debugfs)
1987
1988 If unsure, say N.
1989
York Sun9b53a9e2008-04-28 02:15:34 -07001990config FB_FSL_DIU
1991 tristate "Freescale DIU framebuffer support"
1992 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001993 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001994 select FB_CFB_FILLRECT
1995 select FB_CFB_COPYAREA
1996 select FB_CFB_IMAGEBLIT
1997 select PPC_LIB_RHEAP
1998 ---help---
1999 Framebuffer driver for the Freescale SoC DIU
2000
Randy Dunlapecc41d52005-11-07 01:00:29 -08002001config FB_W100
2002 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07002003 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08002004 select FB_CFB_FILLRECT
2005 select FB_CFB_COPYAREA
2006 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08002007 ---help---
2008 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07002009 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08002010
2011 This driver is also available as a module ( = code which can be
2012 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08002013 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002014 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08002015
2016 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002018config FB_SH_MOBILE_LCDC
2019 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00002020 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09002021 select FB_SYS_FILLRECT
2022 select FB_SYS_COPYAREA
2023 select FB_SYS_IMAGEBLIT
2024 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09002025 select FB_DEFERRED_IO
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002026 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002027 ---help---
2028 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2029
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002030config FB_SH_MOBILE_HDMI
2031 tristate "SuperH Mobile HDMI controller support"
2032 depends on FB_SH_MOBILE_LCDC
2033 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002034 select SOUND
2035 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002036 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002037 ---help---
2038 Driver for the on-chip SH-Mobile HDMI controller.
2039
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002040config FB_TMIO
2041 tristate "Toshiba Mobile IO FrameBuffer support"
2042 depends on FB && MFD_CORE
2043 select FB_CFB_FILLRECT
2044 select FB_CFB_COPYAREA
2045 select FB_CFB_IMAGEBLIT
2046 ---help---
2047 Frame buffer driver for the Toshiba Mobile IO integrated as found
2048 on the Sharp SL-6000 series
2049
2050 This driver is also available as a module ( = code which can be
2051 inserted and removed from the running kernel whenever you want). The
2052 module will be called tmiofb. If you want to compile it as a module,
2053 say M here and read <file:Documentation/kbuild/modules.txt>.
2054
2055 If unsure, say N.
2056
2057config FB_TMIO_ACCELL
2058 bool "tmiofb acceleration"
2059 depends on FB_TMIO
2060 default y
2061
Ben Dooksec549a02009-03-31 15:25:39 -07002062config FB_S3C
2063 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002064 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002065 select FB_CFB_FILLRECT
2066 select FB_CFB_COPYAREA
2067 select FB_CFB_IMAGEBLIT
2068 ---help---
2069 Frame buffer driver for the built-in FB controller in the Samsung
2070 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2071 and the S3C64XX series such as the S3C6400 and S3C6410.
2072
2073 These chips all have the same basic framebuffer design with the
2074 actual capabilities depending on the chip. For instance the S3C6400
2075 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2076 currently only have two.
2077
2078 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2079
2080config FB_S3C_DEBUG_REGWRITE
2081 bool "Debug register writes"
2082 depends on FB_S3C
2083 ---help---
2084 Show all register writes via printk(KERN_DEBUG)
2085
Arnaud Patard20fd5762005-09-09 13:10:07 -07002086config FB_S3C2410
2087 tristate "S3C2410 LCD framebuffer support"
2088 depends on FB && ARCH_S3C2410
2089 select FB_CFB_FILLRECT
2090 select FB_CFB_COPYAREA
2091 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002092 ---help---
2093 Frame buffer driver for the built-in LCD controller in the Samsung
2094 S3C2410 processor.
2095
2096 This driver is also available as a module ( = code which can be
2097 inserted and removed from the running kernel whenever you want). The
2098 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002099 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002100
2101 If unsure, say N.
2102config FB_S3C2410_DEBUG
2103 bool "S3C2410 lcd debug messages"
2104 depends on FB_S3C2410
2105 help
2106 Turn on debugging messages. Note that you can set/unset at run time
2107 through sysfs
2108
Wang Qiang86619702010-03-10 15:21:47 -08002109config FB_NUC900
2110 bool "NUC900 LCD framebuffer support"
2111 depends on FB && ARCH_W90X900
2112 select FB_CFB_FILLRECT
2113 select FB_CFB_COPYAREA
2114 select FB_CFB_IMAGEBLIT
2115 ---help---
2116 Frame buffer driver for the built-in LCD controller in the Nuvoton
2117 NUC900 processor
2118
2119config GPM1040A0_320X240
2120 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2121 depends on FB_NUC900
2122
2123config FB_NUC900_DEBUG
2124 bool "NUC900 lcd debug messages"
2125 depends on FB_NUC900
2126 help
2127 Turn on debugging messages. Note that you can set/unset at run time
2128 through sysfs
2129
Ben Dooks5fc404e2007-02-20 13:58:21 -08002130config FB_SM501
2131 tristate "Silicon Motion SM501 framebuffer support"
2132 depends on FB && MFD_SM501
2133 select FB_CFB_FILLRECT
2134 select FB_CFB_COPYAREA
2135 select FB_CFB_IMAGEBLIT
2136 ---help---
2137 Frame buffer driver for the CRT and LCD controllers in the Silicon
2138 Motion SM501.
2139
2140 This driver is also available as a module ( = code which can be
2141 inserted and removed from the running kernel whenever you want). The
2142 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002143 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002144
2145 If unsure, say N.
2146
Paul Mundt96f8d862010-11-16 14:00:24 +09002147config FB_UDL
2148 tristate "Displaylink USB Framebuffer support"
2149 depends on FB && USB
2150 select FB_MODE_HELPERS
2151 select FB_SYS_FILLRECT
2152 select FB_SYS_COPYAREA
2153 select FB_SYS_IMAGEBLIT
2154 select FB_SYS_FOPS
2155 select FB_DEFERRED_IO
2156 ---help---
2157 This is a kernel framebuffer driver for DisplayLink USB devices.
2158 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2159 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2160 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002161
Vitaly Wool36c93662006-07-03 00:24:19 -07002162config FB_PNX4008_DUM
2163 tristate "Display Update Module support on Philips PNX4008 board"
2164 depends on FB && ARCH_PNX4008
2165 ---help---
2166 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2167
2168config FB_PNX4008_DUM_RGB
2169 tristate "RGB Framebuffer support on Philips PNX4008 board"
2170 depends on FB_PNX4008_DUM
2171 select FB_CFB_FILLRECT
2172 select FB_CFB_COPYAREA
2173 select FB_CFB_IMAGEBLIT
2174 ---help---
2175 Say Y here to enable support for PNX4008 RGB Framebuffer
2176
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002177config FB_IBM_GXT4500
2178 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002179 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002180 select FB_CFB_FILLRECT
2181 select FB_CFB_COPYAREA
2182 select FB_CFB_IMAGEBLIT
2183 ---help---
2184 Say Y here to enable support for the IBM GXT4500P display
2185 adaptor, found on some IBM System P (pSeries) machines.
2186
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002187config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002188 tristate "PS3 GPU framebuffer driver"
2189 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002190 select FB_SYS_FILLRECT
2191 select FB_SYS_COPYAREA
2192 select FB_SYS_IMAGEBLIT
2193 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002194 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002195 ---help---
2196 Include support for the virtual frame buffer in the PS3 platform.
2197
2198config FB_PS3_DEFAULT_SIZE_M
2199 int "PS3 default frame buffer size (in MiB)"
2200 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002201 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002202 ---help---
2203 This is the default size (in MiB) of the virtual frame buffer in
2204 the PS3.
2205 The default value can be overridden on the kernel command line
2206 using the "ps3fb" option (e.g. "ps3fb=9M");
2207
Andrei Konovalov147394c2007-05-08 00:40:18 -07002208config FB_XILINX
2209 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002210 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002211 select FB_CFB_FILLRECT
2212 select FB_CFB_COPYAREA
2213 select FB_CFB_IMAGEBLIT
2214 ---help---
2215 Include support for the Xilinx ML300/ML403 reference design
2216 framebuffer. ML300 carries a 640*480 LCD display on the board,
2217 ML403 uses a standard DB15 VGA connector.
2218
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002219config FB_COBALT
2220 tristate "Cobalt server LCD frame buffer support"
2221 depends on FB && MIPS_COBALT
2222
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002223config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002224 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2225 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2226 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2227 select FB_CFB_FILLRECT
2228 select FB_CFB_COPYAREA
2229 select FB_CFB_IMAGEBLIT
2230 ---help---
2231 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2232 (D)STN/TFT LCD Controller.
2233 Supports display resolutions up to 1024x1024 pixel, grayscale and
2234 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2235 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2236 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002237
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002238config FB_DA8XX
2239 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2240 depends on FB && ARCH_DAVINCI_DA8XX
2241 select FB_CFB_FILLRECT
2242 select FB_CFB_COPYAREA
2243 select FB_CFB_IMAGEBLIT
2244 ---help---
2245 This is the frame buffer device driver for the TI LCD controller
2246 found on DA8xx/OMAP-L1xx SoCs.
2247 If unsure, say N.
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249config FB_VIRTUAL
2250 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2251 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002252 select FB_SYS_FILLRECT
2253 select FB_SYS_COPYAREA
2254 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002255 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 ---help---
2257 This is a `virtual' frame buffer device. It operates on a chunk of
2258 unswappable kernel memory instead of on the memory of a graphics
2259 board. This means you cannot see any output sent to this frame
2260 buffer device, while it does consume precious memory. The main use
2261 of this frame buffer device is testing and debugging the frame
2262 buffer subsystem. Do NOT enable it for normal systems! To protect
2263 the innocent, it has to be enabled explicitly at boot time using the
2264 kernel option `video=vfb:'.
2265
2266 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002267 module will be called vfb. In order to load it, you must use
2268 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002271
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002272config XEN_FBDEV_FRONTEND
2273 tristate "Xen virtual frame buffer support"
2274 depends on FB && XEN
2275 select FB_SYS_FILLRECT
2276 select FB_SYS_COPYAREA
2277 select FB_SYS_IMAGEBLIT
2278 select FB_SYS_FOPS
2279 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002280 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002281 default y
2282 help
2283 This driver implements the front-end of the Xen virtual
2284 frame buffer driver. It communicates with a back-end
2285 in another domain.
2286
Jaya Kumare9355082008-08-19 11:17:55 +01002287config FB_METRONOME
2288 tristate "E-Ink Metronome/8track controller support"
2289 depends on FB
2290 select FB_SYS_FILLRECT
2291 select FB_SYS_COPYAREA
2292 select FB_SYS_IMAGEBLIT
2293 select FB_SYS_FOPS
2294 select FB_DEFERRED_IO
2295 help
2296 This driver implements support for the E-Ink Metronome
2297 controller. The pre-release name for this device was 8track
2298 and could also have been called by some vendors as PVI-nnnn.
2299
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002300config FB_MB862XX
2301 tristate "Fujitsu MB862xx GDC support"
2302 depends on FB
2303 select FB_CFB_FILLRECT
2304 select FB_CFB_COPYAREA
2305 select FB_CFB_IMAGEBLIT
2306 ---help---
2307 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2308
2309config FB_MB862XX_PCI_GDC
2310 bool "Carmine/Coral-P(A) GDC"
2311 depends on PCI && FB_MB862XX
2312 ---help---
2313 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2314 PCI graphics controller devices.
2315
2316config FB_MB862XX_LIME
2317 bool "Lime GDC"
2318 depends on FB_MB862XX
2319 depends on OF && !FB_MB862XX_PCI_GDC
Julian Calaby336e7472009-06-16 15:34:29 -07002320 depends on PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002321 select FB_FOREIGN_ENDIAN
2322 select FB_LITTLE_ENDIAN
2323 ---help---
2324 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2325
Ryan Mallon88017bd2009-09-22 16:47:09 -07002326config FB_EP93XX
2327 tristate "EP93XX frame buffer support"
2328 depends on FB && ARCH_EP93XX
2329 select FB_CFB_FILLRECT
2330 select FB_CFB_COPYAREA
2331 select FB_CFB_IMAGEBLIT
2332 ---help---
2333 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2334 This driver is also available as a module. The module will be called
2335 ep93xx-fb.
2336
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002337config FB_PRE_INIT_FB
2338 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002339 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002340 ---help---
2341 Select this option if display contents should be inherited as set by
2342 the bootloader.
2343
Pavel Machekd480ace2009-09-22 16:47:03 -07002344config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002345 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002346 depends on FB && ARCH_MSM
2347 select FB_CFB_FILLRECT
2348 select FB_CFB_COPYAREA
2349 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002350
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002351config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002352 tristate "MX3 Framebuffer support"
2353 depends on FB && MX3_IPU
2354 select FB_CFB_FILLRECT
2355 select FB_CFB_COPYAREA
2356 select FB_CFB_IMAGEBLIT
2357 default y
2358 help
2359 This is a framebuffer device for the i.MX31 LCD Controller. So
2360 far only synchronous displays are supported. If you plan to use
2361 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002362
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002363config FB_BROADSHEET
2364 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2365 depends on FB
2366 select FB_SYS_FILLRECT
2367 select FB_SYS_COPYAREA
2368 select FB_SYS_IMAGEBLIT
2369 select FB_SYS_FOPS
2370 select FB_DEFERRED_IO
2371 help
2372 This driver implements support for the E-Ink Broadsheet
2373 controller. The release name for this device was Epson S1D13521
2374 and could also have been called by other names when coupled with
2375 a bridge adapter.
2376
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002377config FB_JZ4740
2378 tristate "JZ4740 LCD framebuffer support"
2379 depends on FB && MACH_JZ4740
2380 select FB_SYS_FILLRECT
2381 select FB_SYS_COPYAREA
2382 select FB_SYS_IMAGEBLIT
2383 help
2384 Framebuffer support for the JZ4740 SoC.
2385
Randy Dunlapf08f3892007-10-29 14:37:16 -07002386source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002387source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002388
Randy Dunlap179b0252007-10-16 01:29:39 -07002389source "drivers/video/backlight/Kconfig"
2390source "drivers/video/display/Kconfig"
2391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392if VT
2393 source "drivers/video/console/Kconfig"
2394endif
2395
2396if FB || SGI_NEWPORT_CONSOLE
2397 source "drivers/video/logo/Kconfig"
2398endif
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400endmenu