blob: 4c85a4b15f973a32eeec33bb4de8854c713011c0 [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
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000011config SH_MIPI_DSI
12 tristate
13 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
14
15config SH_LCD_MIPI_DSI
16 bool
17
Randy Dunlap179b0252007-10-16 01:29:39 -070018source "drivers/char/agp/Kconfig"
19
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100020source "drivers/gpu/vga/Kconfig"
21
Dave Airliec0e09202008-05-29 10:09:59 +100022source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070023
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080024source "drivers/gpu/stub/Kconfig"
25
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070026source "drivers/gpu/ion/Kconfig"
27
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070028config VGASTATE
29 tristate
30 default n
31
Luming Yu23b0f012007-05-09 21:07:05 +080032config VIDEO_OUTPUT_CONTROL
33 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080034 help
35 This framework adds support for low-level control of the video
36 output switch.
37
Randy Dunlap179b0252007-10-16 01:29:39 -070038menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 tristate "Support for frame buffer devices"
40 ---help---
41 The frame buffer device provides an abstraction for the graphics
42 hardware. It represents the frame buffer of some video hardware and
43 allows application software to access the graphics hardware through
44 a well-defined interface, so the software doesn't need to know
45 anything about the low-level (hardware register) stuff.
46
47 Frame buffer devices work identically across the different
48 architectures supported by Linux and make the implementation of
49 application programs easier and more portable; at this point, an X
50 server exists which uses the frame buffer device exclusively.
51 On several non-X86 architectures, the frame buffer device is the
52 only way to use the graphics hardware.
53
54 The device is accessed through special device nodes, usually located
55 in the /dev directory, i.e. /dev/fb*.
56
57 You need an utility program called fbset to make full use of frame
58 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
59 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020060 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 information.
62
63 Say Y here and to the driver for your graphics board below if you
64 are compiling a kernel for a non-x86 architecture.
65
66 If you are compiling for the x86 architecture, you can say Y if you
67 want to play with it, but it is not essential. Please note that
68 running graphical applications that directly touch the hardware
69 (e.g. an accelerated X server) and that are not frame buffer
70 device-aware may cause unexpected results. If unsure, say N.
71
James Simmonse0e34ef2007-02-10 14:15:43 +000072config FIRMWARE_EDID
73 bool "Enable firmware EDID"
74 depends on FB
75 default n
76 ---help---
77 This enables access to the EDID transferred from the firmware.
78 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
79 transfers do not work for your driver and if you are using
80 nvidiafb, i810fb or savagefb.
81
82 In general, choosing Y for this option is safe. If you
83 experience extremely long delays while booting before you get
84 something on your display, try setting this to N. Matrox cards in
85 combination with certain motherboards and monitors are known to
86 suffer from this problem.
87
Dennis Munsiefc5891c2006-10-03 01:14:42 -070088config FB_DDC
89 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000090 depends on FB
91 select I2C_ALGOBIT
92 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070093 default n
94
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070095config FB_BOOT_VESA_SUPPORT
96 bool
97 depends on FB
98 default n
99 ---help---
100 If true, at least one selected framebuffer driver can take advantage
101 of VESA video modes set at an early boot stage via the vga= parameter.
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103config FB_CFB_FILLRECT
104 tristate
105 depends on FB
106 default n
107 ---help---
108 Include the cfb_fillrect function for generic software rectangle
109 filling. This is used by drivers that don't provide their own
110 (accelerated) version.
111
112config FB_CFB_COPYAREA
113 tristate
114 depends on FB
115 default n
116 ---help---
117 Include the cfb_copyarea function for generic software area copying.
118 This is used by drivers that don't provide their own (accelerated)
119 version.
120
121config FB_CFB_IMAGEBLIT
122 tristate
123 depends on FB
124 default n
125 ---help---
126 Include the cfb_imageblit function for generic software image
127 blitting. This is used by drivers that don't provide their own
128 (accelerated) version.
129
Pavel Pisa779121e2007-10-16 01:29:21 -0700130config FB_CFB_REV_PIXELS_IN_BYTE
131 bool
132 depends on FB
133 default n
134 ---help---
135 Allow generic frame-buffer functions to work on displays with 1, 2
136 and 4 bits per pixel depths which has opposite order of pixels in
137 byte order to bytes in long order.
138
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700139config FB_SYS_FILLRECT
140 tristate
141 depends on FB
142 default n
143 ---help---
144 Include the sys_fillrect function for generic software rectangle
145 filling. This is used by drivers that don't provide their own
146 (accelerated) version and the framebuffer is in system RAM.
147
148config FB_SYS_COPYAREA
149 tristate
150 depends on FB
151 default n
152 ---help---
153 Include the sys_copyarea function for generic software area copying.
154 This is used by drivers that don't provide their own (accelerated)
155 version and the framebuffer is in system RAM.
156
157config FB_SYS_IMAGEBLIT
158 tristate
159 depends on FB
160 default n
161 ---help---
162 Include the sys_imageblit function for generic software image
163 blitting. This is used by drivers that don't provide their own
164 (accelerated) version and the framebuffer is in system RAM.
165
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700166menuconfig FB_FOREIGN_ENDIAN
167 bool "Framebuffer foreign endianness support"
168 depends on FB
169 ---help---
170 This menu will let you enable support for the framebuffers with
171 non-native endianness (e.g. Little-Endian framebuffer on a
172 Big-Endian machine). Most probably you don't have such hardware,
173 so it's safe to say "n" here.
174
175choice
176 prompt "Choice endianness support"
177 depends on FB_FOREIGN_ENDIAN
178
179config FB_BOTH_ENDIAN
180 bool "Support for Big- and Little-Endian framebuffers"
181
182config FB_BIG_ENDIAN
183 bool "Support for Big-Endian framebuffers only"
184
185config FB_LITTLE_ENDIAN
186 bool "Support for Little-Endian framebuffers only"
187
188endchoice
189
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700190config FB_SYS_FOPS
191 tristate
192 depends on FB
193 default n
194
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300195config FB_WMT_GE_ROPS
196 tristate
197 depends on FB
198 default n
199 ---help---
200 Include functions for accelerated rectangle filling and area
201 copying using WonderMedia Graphics Engine operations.
202
Jaya Kumar60b59be2007-05-08 00:37:37 -0700203config FB_DEFERRED_IO
204 bool
205 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700206
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700207config FB_HECUBA
208 tristate
209 depends on FB
210 depends on FB_DEFERRED_IO
211
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800212config FB_SVGALIB
213 tristate
214 depends on FB
215 default n
216 ---help---
217 Common utility functions useful to fbdev drivers of VGA-based
218 cards.
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220config FB_MACMODES
221 tristate
222 depends on FB
223 default n
224
Michael Hanselmann5474c122006-06-25 05:47:08 -0700225config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700226 bool
227 depends on FB
228 select BACKLIGHT_LCD_SUPPORT
229 select BACKLIGHT_CLASS_DEVICE
230 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232config FB_MODE_HELPERS
233 bool "Enable Video Mode Handling Helpers"
234 depends on FB
235 default n
236 ---help---
237 This enables functions for handling video modes using the
238 Generalized Timing Formula and the EDID parser. A few drivers rely
239 on this feature such as the radeonfb, rivafb, and the i810fb. If
240 your driver does not take advantage of this feature, choosing Y will
241 just increase the kernel size by about 5K.
242
243config FB_TILEBLITTING
244 bool "Enable Tile Blitting Support"
245 depends on FB
246 default n
247 ---help---
248 This enables tile blitting. Tile blitting is a drawing technique
249 where the screen is divided into rectangular sections (tiles), whereas
250 the standard blitting divides the screen into pixels. Because the
251 default drawing element is a tile, drawing functions will be passed
252 parameters in terms of number of tiles instead of number of pixels.
253 For example, to draw a single character, instead of using bitmaps,
254 an index to an array of bitmaps will be used. To clear or move a
255 rectangular section of a screen, the rectangle will be described in
256 terms of number of tiles in the x- and y-axis.
257
258 This is particularly important to one driver, matroxfb. If
259 unsure, say N.
260
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700261comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000262 depends on FB
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264config FB_CIRRUS
265 tristate "Cirrus Logic support"
266 depends on FB && (ZORRO || PCI)
267 select FB_CFB_FILLRECT
268 select FB_CFB_COPYAREA
269 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 ---help---
271 This enables support for Cirrus Logic GD542x/543x based boards on
272 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
273
274 If you have a PCI-based system, this enables support for these
275 chips: GD-543x, GD-544x, GD-5480.
276
277 Please read the file <file:Documentation/fb/cirrusfb.txt>.
278
279 Say N unless you have such a graphics board or plan to get one
280 before you next recompile the kernel.
281
282config FB_PM2
283 tristate "Permedia2 support"
284 depends on FB && ((AMIGA && BROKEN) || PCI)
285 select FB_CFB_FILLRECT
286 select FB_CFB_COPYAREA
287 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700289 This is the frame buffer device driver for cards based on
290 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
291 The driver was tested on the following cards:
292 Diamond FireGL 1000 PRO AGP
293 ELSA Gloria Synergy PCI
294 Appian Jeronimo PRO (both heads) PCI
295 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
296 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
297 ASK Graphic Blaster Exxtreme AGP
298
299 To compile this driver as a module, choose M here: the
300 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302config FB_PM2_FIFO_DISCONNECT
303 bool "enable FIFO disconnect feature"
304 depends on FB_PM2 && PCI
305 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700306 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308config FB_ARMCLCD
309 tristate "ARM PrimeCell PL110 support"
310 depends on FB && ARM && ARM_AMBA
311 select FB_CFB_FILLRECT
312 select FB_CFB_COPYAREA
313 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 help
315 This framebuffer device driver is for the ARM PrimeCell PL110
316 Colour LCD controller. ARM PrimeCells provide the building
317 blocks for System on a Chip devices.
318
319 If you want to compile this as a module (=code which can be
320 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500321 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 will be called amba-clcd.
323
324config FB_ACORN
325 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000326 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 select FB_CFB_FILLRECT
328 select FB_CFB_COPYAREA
329 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 help
331 This is the frame buffer device driver for the Acorn VIDC graphics
332 hardware found in Acorn RISC PCs and other ARM-based machines. If
333 unsure, say N.
334
335config FB_CLPS711X
336 bool "CLPS711X LCD support"
337 depends on (FB = y) && ARM && ARCH_CLPS711X
338 select FB_CFB_FILLRECT
339 select FB_CFB_COPYAREA
340 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800341 help
342 Say Y to enable the Framebuffer driver for the CLPS7111 and
343 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345config FB_SA1100
346 bool "SA-1100 LCD support"
347 depends on (FB = y) && ARM && ARCH_SA1100
348 select FB_CFB_FILLRECT
349 select FB_CFB_COPYAREA
350 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 help
352 This is a framebuffer device for the SA-1100 LCD Controller.
353 See <http://www.linux-fbdev.org/> for information on framebuffer
354 devices.
355
356 If you plan to use the LCD display with your SA-1100 system, say
357 Y here.
358
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700359config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200360 tristate "Freescale i.MX LCD support"
Sascha Hauerf142b612011-03-03 15:12:44 +0100361 depends on FB && IMX_HAVE_PLATFORM_IMX_FB
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700362 select FB_CFB_FILLRECT
363 select FB_CFB_COPYAREA
364 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366config FB_CYBER2000
367 tristate "CyberPro 2000/2010/5000 support"
368 depends on FB && PCI && (BROKEN || !SPARC64)
369 select FB_CFB_FILLRECT
370 select FB_CFB_COPYAREA
371 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 help
373 This enables support for the Integraphics CyberPro 20x0 and 5000
374 VGA chips used in the Rebel.com Netwinder and other machines.
375 Say Y if you have a NetWinder or a graphics card containing this
376 device, otherwise say N.
377
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200378config FB_CYBER2000_DDC
379 bool "DDC for CyberPro support"
380 depends on FB_CYBER2000
381 select FB_DDC
382 default y
383 help
384 Say Y here if you want DDC support for your CyberPro graphics
385 card. This is only I2C bus support, driver does not use EDID.
386
Russell Kingb7ca01a2010-08-02 09:57:07 +0100387config FB_CYBER2000_I2C
388 bool "CyberPro 2000/2010/5000 I2C support"
389 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
390 select I2C_ALGOBIT
391 help
392 Enable support for the I2C video decoder interface on the
393 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
394 on the Netwinder machines for the SAA7111 video capture.
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396config FB_APOLLO
397 bool
398 depends on (FB = y) && APOLLO
399 default y
400 select FB_CFB_FILLRECT
401 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403config FB_Q40
404 bool
405 depends on (FB = y) && Q40
406 default y
407 select FB_CFB_FILLRECT
408 select FB_CFB_COPYAREA
409 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411config FB_AMIGA
412 tristate "Amiga native chipset support"
413 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 help
415 This is the frame buffer device driver for the builtin graphics
416 chipset found in Amigas.
417
418 To compile this driver as a module, choose M here: the
419 module will be called amifb.
420
421config FB_AMIGA_OCS
422 bool "Amiga OCS chipset support"
423 depends on FB_AMIGA
424 help
425 This enables support for the original Agnus and Denise video chips,
426 found in the Amiga 1000 and most A500's and A2000's. If you intend
427 to run Linux on any of these systems, say Y; otherwise say N.
428
429config FB_AMIGA_ECS
430 bool "Amiga ECS chipset support"
431 depends on FB_AMIGA
432 help
433 This enables support for the Enhanced Chip Set, found in later
434 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
435 you intend to run Linux on any of these systems, say Y; otherwise
436 say N.
437
438config FB_AMIGA_AGA
439 bool "Amiga AGA chipset support"
440 depends on FB_AMIGA
441 help
442 This enables support for the Advanced Graphics Architecture (also
443 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
444 and CD32. If you intend to run Linux on any of these systems, say Y;
445 otherwise say N.
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447config FB_FM2
448 bool "Amiga FrameMaster II/Rainbow II support"
449 depends on (FB = y) && ZORRO
450 select FB_CFB_FILLRECT
451 select FB_CFB_COPYAREA
452 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 help
454 This is the frame buffer device driver for the Amiga FrameMaster
455 card from BSC (exhibited 1992 but not shipped as a CBM product).
456
Jaya Kumar1154ea72005-06-21 17:17:04 -0700457config FB_ARC
458 tristate "Arc Monochrome LCD board support"
459 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700460 select FB_SYS_FILLRECT
461 select FB_SYS_COPYAREA
462 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700463 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700464 help
465 This enables support for the Arc Monochrome LCD board. The board
466 is based on the KS-108 lcd controller and is typically a matrix
467 of 2*n chips. This driver was tested with a 128x64 panel. This
468 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200469 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700470 this driver, say Y or M; otherwise say N. You must specify the
471 GPIO IO address to be used for setting control and data.
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473config FB_ATARI
474 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200475 depends on (FB = y) && ATARI
476 select FB_CFB_FILLRECT
477 select FB_CFB_COPYAREA
478 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 help
480 This is the frame buffer device driver for the builtin graphics
481 chipset found in Ataris.
482
483config FB_OF
484 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100485 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 select FB_CFB_FILLRECT
487 select FB_CFB_COPYAREA
488 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 select FB_MACMODES
490 help
491 Say Y if you want support with Open Firmware for your graphics
492 board.
493
494config FB_CONTROL
495 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700496 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 select FB_CFB_FILLRECT
498 select FB_CFB_COPYAREA
499 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 select FB_MACMODES
501 help
502 This driver supports a frame buffer for the graphics adapter in the
503 Power Macintosh 7300 and others.
504
505config FB_PLATINUM
506 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700507 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 select FB_CFB_FILLRECT
509 select FB_CFB_COPYAREA
510 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 select FB_MACMODES
512 help
513 This driver supports a frame buffer for the "platinum" graphics
514 adapter in some Power Macintoshes.
515
516config FB_VALKYRIE
517 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700518 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 select FB_CFB_FILLRECT
520 select FB_CFB_COPYAREA
521 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 select FB_MACMODES
523 help
524 This driver supports a frame buffer for the "valkyrie" graphics
525 adapter in some Power Macintoshes.
526
527config FB_CT65550
528 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800529 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 select FB_CFB_FILLRECT
531 select FB_CFB_COPYAREA
532 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 help
534 This is the frame buffer device driver for the Chips & Technologies
535 65550 graphics chip in PowerBooks.
536
537config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800538 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 depends on (FB = y) && PCI
540 select FB_CFB_FILLRECT
541 select FB_CFB_COPYAREA
542 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700543 help
544 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546config FB_IMSTT
547 bool "IMS Twin Turbo display support"
548 depends on (FB = y) && PCI
549 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 select FB_MACMODES if PPC
551 help
552 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
553 many Macintosh and compatible computers.
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555config FB_VGA16
556 tristate "VGA 16-color graphics support"
557 depends on FB && (X86 || PPC)
558 select FB_CFB_FILLRECT
559 select FB_CFB_COPYAREA
560 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700561 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700562 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 help
564 This is the frame buffer device driver for VGA 16 color graphic
565 cards. Say Y if you have such a card.
566
567 To compile this driver as a module, choose M here: the
568 module will be called vga16fb.
569
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700570config FB_BF54X_LQ043
571 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700572 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700573 select FB_CFB_FILLRECT
574 select FB_CFB_COPYAREA
575 select FB_CFB_IMAGEBLIT
576 help
577 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
578
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700579config FB_BFIN_T350MCQB
580 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
581 depends on FB && BLACKFIN
582 select BFIN_GPTIMERS
583 select FB_CFB_FILLRECT
584 select FB_CFB_COPYAREA
585 select FB_CFB_IMAGEBLIT
586 help
587 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
588 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
589 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
590
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800591config FB_BFIN_LQ035Q1
592 tristate "SHARP LQ035Q1DH02 TFT LCD"
593 depends on FB && BLACKFIN && SPI
594 select FB_CFB_FILLRECT
595 select FB_CFB_COPYAREA
596 select FB_CFB_IMAGEBLIT
597 select BFIN_GPTIMERS
598 help
599 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
600 the Blackfin Landscape LCD EZ-Extender Card.
601 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
602 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
603
604 To compile this driver as a module, choose M here: the
605 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700606
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000607config FB_BF537_LQ035
608 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
609 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
610 select FB_CFB_FILLRECT
611 select FB_CFB_COPYAREA
612 select FB_CFB_IMAGEBLIT
613 select BFIN_GPTIMERS
614 help
615 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
616 attached to a BF537.
617
618 To compile this driver as a module, choose M here: the
619 module will be called bf537-lq035.
620
Michael Hennerichcffd9342010-11-24 09:33:59 +0000621config FB_BFIN_7393
622 tristate "Blackfin ADV7393 Video encoder"
623 depends on FB && BLACKFIN
624 select I2C
625 select FB_CFB_FILLRECT
626 select FB_CFB_COPYAREA
627 select FB_CFB_IMAGEBLIT
628 help
629 This is the framebuffer device for a ADV7393 video encoder
630 attached to a Blackfin on the PPI port.
631 If your Blackfin board has a ADV7393 select Y.
632
633 To compile this driver as a module, choose M here: the
634 module will be called bfin_adv7393fb.
635
636choice
637 prompt "Video mode support"
638 depends on FB_BFIN_7393
639 default NTSC
640
641config NTSC
642 bool 'NTSC 720x480'
643
644config PAL
645 bool 'PAL 720x576'
646
647config NTSC_640x480
648 bool 'NTSC 640x480 (Experimental)'
649
650config PAL_640x480
651 bool 'PAL 640x480 (Experimental)'
652
653config NTSC_YCBCR
654 bool 'NTSC 720x480 YCbCR input'
655
656config PAL_YCBCR
657 bool 'PAL 720x576 YCbCR input'
658
659endchoice
660
661choice
662 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
663 depends on (FB_BFIN_7393)
664 default ADV7393_1XMEM
665
666config ADV7393_1XMEM
667 bool 'Single'
668
669config ADV7393_2XMEM
670 bool 'Double'
671endchoice
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673config FB_STI
674 tristate "HP STI frame buffer device support"
675 depends on FB && PARISC
676 select FB_CFB_FILLRECT
677 select FB_CFB_COPYAREA
678 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000679 select STI_CONSOLE
680 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 default y
682 ---help---
683 STI refers to the HP "Standard Text Interface" which is a set of
684 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
685 Enabling this option will implement the linux framebuffer device
686 using calls to the STI BIOS routines for initialisation.
687
688 If you enable this option, you will get a planar framebuffer device
689 /dev/fb which will work on the most common HP graphic cards of the
690 NGLE family, including the artist chips (in the 7xx and Bxxx series),
691 HCRX, HCRX24, CRX, CRX24 and VisEG series.
692
693 It is safe to enable this option, so you should probably say "Y".
694
695config FB_MAC
696 bool "Generic Macintosh display support"
697 depends on (FB = y) && MAC
698 select FB_CFB_FILLRECT
699 select FB_CFB_COPYAREA
700 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 select FB_MACMODES
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703config FB_HP300
704 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200705 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 default y
708
709config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700710 tristate "TGA/SFB+ framebuffer support"
711 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 select FB_CFB_FILLRECT
713 select FB_CFB_COPYAREA
714 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800715 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700716 ---help---
717 This is the frame buffer device driver for generic TGA and SFB+
718 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
719 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
720 TURBOchannel cards, also known as PMAGD-A, -B and -C.
721
722 Due to hardware limitations ZLX-E2 and E3 cards are not supported
723 for DECstation 5000/200 systems. Additionally due to firmware
724 limitations these cards may cause troubles with booting DECstation
725 5000/240 and /260 systems, but are fully supported under Linux if
726 you manage to get it going. ;-)
727
728 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700730config FB_UVESA
731 tristate "Userspace VESA VGA graphics support"
732 depends on FB && CONNECTOR
733 select FB_CFB_FILLRECT
734 select FB_CFB_COPYAREA
735 select FB_CFB_IMAGEBLIT
736 select FB_MODE_HELPERS
737 help
738 This is the frame buffer driver for generic VBE 2.0 compliant
739 graphic cards. It can also take advantage of VBE 3.0 features,
740 such as refresh rate adjustment.
741
742 This driver generally provides more features than vesafb but
743 requires a userspace helper application called 'v86d'. See
744 <file:Documentation/fb/uvesafb.txt> for more information.
745
746 If unsure, say N.
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748config FB_VESA
749 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800750 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 select FB_CFB_FILLRECT
752 select FB_CFB_COPYAREA
753 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700754 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 help
756 This is the frame buffer device driver for generic VESA 2.0
757 compliant graphic cards. The older VESA 1.2 cards are not supported.
758 You will get a boot time penguin logo at no additional cost. Please
759 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
760
Huang, Ying7c831722007-11-28 16:21:55 -0800761config FB_EFI
762 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700763 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700764 select FB_CFB_FILLRECT
765 select FB_CFB_COPYAREA
766 select FB_CFB_IMAGEBLIT
767 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700768 This is the EFI frame buffer device driver. If the firmware on
769 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
770 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700771
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700772config FB_N411
773 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700774 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700775 select FB_SYS_FILLRECT
776 select FB_SYS_COPYAREA
777 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700778 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700779 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700780 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700781 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700782 This enables support for the Apollo display controller in its
783 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785config FB_HGA
786 tristate "Hercules mono graphics support"
787 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 help
789 Say Y here if you have a Hercules mono graphics card.
790
791 To compile this driver as a module, choose M here: the
792 module will be called hgafb.
793
Brent Cook529ed802010-12-31 05:56:50 +0000794 As this card technology is at least 25 years old,
795 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797config FB_SGIVW
798 tristate "SGI Visual Workstation framebuffer support"
799 depends on FB && X86_VISWS
800 select FB_CFB_FILLRECT
801 select FB_CFB_COPYAREA
802 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 help
804 SGI Visual Workstation support for framebuffer graphics.
805
806config FB_GBE
807 bool "SGI Graphics Backend frame buffer support"
808 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
809 select FB_CFB_FILLRECT
810 select FB_CFB_COPYAREA
811 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 help
813 This is the frame buffer device driver for SGI Graphics Backend.
814 This chip is used in SGI O2 and Visual Workstation 320/540.
815
816config FB_GBE_MEM
817 int "Video memory size in MB"
818 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800819 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 help
821 This is the amount of memory reserved for the framebuffer,
822 which can be any value between 1MB and 8MB.
823
Mark Fortescue1a571982005-11-29 19:34:44 -0800824config FB_SBUS
825 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800826 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800827 help
828 Say Y if you want support for SBUS or UPA based frame buffer device.
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830config FB_BW2
831 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800832 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 select FB_CFB_FILLRECT
834 select FB_CFB_COPYAREA
835 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 help
837 This is the frame buffer device driver for the BWtwo frame buffer.
838
839config FB_CG3
840 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800841 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800842 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 select FB_CFB_COPYAREA
844 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 help
846 This is the frame buffer device driver for the CGthree frame buffer.
847
848config FB_CG6
849 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800850 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 select FB_CFB_COPYAREA
852 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 help
854 This is the frame buffer device driver for the CGsix (GX, TurboGX)
855 frame buffer.
856
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700857config FB_FFB
858 bool "Creator/Creator3D/Elite3D support"
859 depends on FB_SBUS && SPARC64
860 select FB_CFB_COPYAREA
861 select FB_CFB_IMAGEBLIT
862 help
863 This is the frame buffer device driver for the Creator, Creator3D,
864 and Elite3D graphics boards.
865
866config FB_TCX
867 bool "TCX (SS4/SS5 only) support"
868 depends on FB_SBUS
869 select FB_CFB_FILLRECT
870 select FB_CFB_COPYAREA
871 select FB_CFB_IMAGEBLIT
872 help
873 This is the frame buffer device driver for the TCX 24/8bit frame
874 buffer.
875
876config FB_CG14
877 bool "CGfourteen (SX) support"
878 depends on FB_SBUS
879 select FB_CFB_FILLRECT
880 select FB_CFB_COPYAREA
881 select FB_CFB_IMAGEBLIT
882 help
883 This is the frame buffer device driver for the CGfourteen frame
884 buffer on Desktop SPARCsystems with the SX graphics option.
885
886config FB_P9100
887 bool "P9100 (Sparcbook 3 only) support"
888 depends on FB_SBUS
889 select FB_CFB_FILLRECT
890 select FB_CFB_COPYAREA
891 select FB_CFB_IMAGEBLIT
892 help
893 This is the frame buffer device driver for the P9100 card
894 supported on Sparcbook 3 machines.
895
896config FB_LEO
897 bool "Leo (ZX) support"
898 depends on FB_SBUS
899 select FB_CFB_FILLRECT
900 select FB_CFB_COPYAREA
901 select FB_CFB_IMAGEBLIT
902 help
903 This is the frame buffer device driver for the SBUS-based Sun ZX
904 (leo) frame buffer cards.
905
906config FB_IGA
907 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700908 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700909 select FB_CFB_FILLRECT
910 select FB_CFB_COPYAREA
911 select FB_CFB_IMAGEBLIT
912 help
913 This is the framebuffer device for the INTERGRAPHICS 1680 and
914 successor frame buffer cards.
915
916config FB_XVR500
917 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700918 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700919 select FB_CFB_FILLRECT
920 select FB_CFB_COPYAREA
921 select FB_CFB_IMAGEBLIT
922 help
923 This is the framebuffer device for the Sun XVR-500 and similar
924 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200925 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700926 mostly initialized the card already. It is treated as a
927 completely dumb framebuffer device.
928
929config FB_XVR2500
930 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700931 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700932 select FB_CFB_FILLRECT
933 select FB_CFB_COPYAREA
934 select FB_CFB_IMAGEBLIT
935 help
936 This is the framebuffer device for the Sun XVR-2500 and similar
937 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200938 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700939 mostly initialized the card already. It is treated as a
940 completely dumb framebuffer device.
941
David S. Miller2d378b92010-03-13 16:25:03 -0800942config FB_XVR1000
943 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700944 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800945 select FB_CFB_FILLRECT
946 select FB_CFB_COPYAREA
947 select FB_CFB_IMAGEBLIT
948 help
949 This is the framebuffer device for the Sun XVR-1000 and similar
950 graphics cards. The driver only works on sparc64 systems where
951 the system firmware has mostly initialized the card already. It
952 is treated as a completely dumb framebuffer device.
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954config FB_PVR2
955 tristate "NEC PowerVR 2 display support"
956 depends on FB && SH_DREAMCAST
957 select FB_CFB_FILLRECT
958 select FB_CFB_COPYAREA
959 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 ---help---
961 Say Y here if you have a PowerVR 2 card in your box. If you plan to
962 run linux on your Dreamcast, you will have to say Y here.
963 This driver may or may not work on other PowerVR 2 cards, but is
964 totally untested. Use at your own risk. If unsure, say N.
965
966 To compile this driver as a module, choose M here: the
967 module will be called pvr2fb.
968
969 You can pass several parameters to the driver at boot time or at
970 module load time. The parameters look like "video=pvr2:XXX", where
971 the meaning of XXX can be found at the end of the main source file
972 (<file:drivers/video/pvr2fb.c>). Please see the file
973 <file:Documentation/fb/pvr2fb.txt>.
974
975config FB_EPSON1355
976 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700977 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 select FB_CFB_FILLRECT
979 select FB_CFB_COPYAREA
980 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 help
982 Build in support for the SED1355 Epson Research Embedded RAMDAC
983 LCD/CRT Controller (since redesignated as the S1D13505) as a
984 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200985 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Randy Dunlapecc41d52005-11-07 01:00:29 -0800987config FB_S1D13XXX
988 tristate "Epson S1D13XXX framebuffer support"
989 depends on FB
990 select FB_CFB_FILLRECT
991 select FB_CFB_COPYAREA
992 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800993 help
994 Support for S1D13XXX framebuffer device family (currently only
995 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200996 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800997
Nicolas Ferre14340582007-05-10 22:23:26 -0700998config FB_ATMEL
999 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001000 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001001 select FB_CFB_FILLRECT
1002 select FB_CFB_COPYAREA
1003 select FB_CFB_IMAGEBLIT
1004 help
1005 This enables support for the AT91/AT32 LCD Controller.
1006
1007config FB_INTSRAM
1008 bool "Frame Buffer in internal SRAM"
1009 depends on FB_ATMEL && ARCH_AT91SAM9261
1010 help
1011 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1012 to let frame buffer in external SDRAM.
1013
Nicolas Ferre250a2692007-07-21 04:37:59 -07001014config FB_ATMEL_STN
1015 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001016 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001017 default n
1018 help
1019 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1020 Controller. Say N if you want to connect a TFT.
1021
1022 If unsure, say N.
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024config FB_NVIDIA
1025 tristate "nVidia Framebuffer Support"
1026 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001027 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 select FB_MODE_HELPERS
1029 select FB_CFB_FILLRECT
1030 select FB_CFB_COPYAREA
1031 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001032 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001033 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 help
1035 This driver supports graphics boards with the nVidia chips, TNT
1036 and newer. For very old chipsets, such as the RIVA128, then use
1037 the rivafb.
1038 Say Y if you have such a graphics board.
1039
1040 To compile this driver as a module, choose M here: the
1041 module will be called nvidiafb.
1042
1043config FB_NVIDIA_I2C
1044 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001045 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001046 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 help
1048 This enables I2C support for nVidia Chipsets. This is used
1049 only for getting EDID information from the attached display
1050 allowing for robust video mode handling and switching.
1051
1052 Because fbdev-2.6 requires that drivers must be able to
1053 independently validate video mode parameters, you should say Y
1054 here.
1055
Jean Delvare647f2e72007-05-10 22:23:29 -07001056config FB_NVIDIA_DEBUG
1057 bool "Lots of debug output"
1058 depends on FB_NVIDIA
1059 default n
1060 help
1061 Say Y here if you want the nVidia driver to output all sorts
1062 of debugging information to provide to the maintainer when
1063 something goes wrong.
1064
Michael Hanselmann5474c122006-06-25 05:47:08 -07001065config FB_NVIDIA_BACKLIGHT
1066 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001067 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001068 default y
1069 help
1070 Say Y here if you want to control the backlight of your display.
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072config FB_RIVA
1073 tristate "nVidia Riva support"
1074 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001075 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 select FB_MODE_HELPERS
1077 select FB_CFB_FILLRECT
1078 select FB_CFB_COPYAREA
1079 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001080 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001081 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 help
1083 This driver supports graphics boards with the nVidia Riva/Geforce
1084 chips.
1085 Say Y if you have such a graphics board.
1086
1087 To compile this driver as a module, choose M here: the
1088 module will be called rivafb.
1089
1090config FB_RIVA_I2C
1091 bool "Enable DDC Support"
1092 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001093 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 help
1095 This enables I2C support for nVidia Chipsets. This is used
1096 only for getting EDID information from the attached display
1097 allowing for robust video mode handling and switching.
1098
1099 Because fbdev-2.6 requires that drivers must be able to
1100 independently validate video mode parameters, you should say Y
1101 here.
1102
1103config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001104 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 depends on FB_RIVA
1106 default n
1107 help
1108 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001109 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 something goes wrong.
1111
Michael Hanselmann5474c122006-06-25 05:47:08 -07001112config FB_RIVA_BACKLIGHT
1113 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001114 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001115 default y
1116 help
1117 Say Y here if you want to control the backlight of your display.
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119config FB_I810
1120 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001121 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 select FB_MODE_HELPERS
1123 select FB_CFB_FILLRECT
1124 select FB_CFB_COPYAREA
1125 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001126 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 help
1128 This driver supports the on-board graphics built in to the Intel 810
1129 and 815 chipsets. Say Y if you have and plan to use such a board.
1130
1131 To compile this driver as a module, choose M here: the
1132 module will be called i810fb.
1133
1134 For more information, please read
1135 <file:Documentation/fb/intel810.txt>
1136
1137config FB_I810_GTF
1138 bool "use VESA Generalized Timing Formula"
1139 depends on FB_I810
1140 help
1141 If you say Y, then the VESA standard, Generalized Timing Formula
1142 or GTF, will be used to calculate the required video timing values
1143 per video mode. Since the GTF allows nondiscrete timings
1144 (nondiscrete being a range of values as opposed to discrete being a
1145 set of values), you'll be able to use any combination of horizontal
1146 and vertical resolutions, and vertical refresh rates without having
1147 to specify your own timing parameters. This is especially useful
1148 to maximize the performance of an aging display, or if you just
1149 have a display with nonstandard dimensions. A VESA compliant
1150 monitor is recommended, but can still work with non-compliant ones.
1151 If you need or want this, then select this option. The timings may
1152 not be compliant with Intel's recommended values. Use at your own
1153 risk.
1154
1155 If you say N, the driver will revert to discrete video timings
1156 using a set recommended by Intel in their documentation.
1157
1158 If unsure, say N.
1159
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001160config FB_I810_I2C
1161 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001162 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001163 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001164 help
1165
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001166config FB_LE80578
1167 tristate "Intel LE80578 (Vermilion) support"
1168 depends on FB && PCI && X86
1169 select FB_MODE_HELPERS
1170 select FB_CFB_FILLRECT
1171 select FB_CFB_COPYAREA
1172 select FB_CFB_IMAGEBLIT
1173 help
1174 This driver supports the LE80578 (Vermilion Range) chipset
1175
1176config FB_CARILLO_RANCH
1177 tristate "Intel Carillo Ranch support"
1178 depends on FB_LE80578 && FB && PCI && X86
1179 help
1180 This driver supports the LE80578 (Carillo Ranch) board
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001183 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001184 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 select FB_MODE_HELPERS
1186 select FB_CFB_FILLRECT
1187 select FB_CFB_COPYAREA
1188 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001189 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001190 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 help
1192 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001193 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 Say Y if you have and plan to use such a board.
1195
Krzysztof Helt4b198282009-06-18 16:49:21 -07001196 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1197
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001198 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 module will be called intelfb.
1200
Christian Merkled463d342006-08-22 10:07:01 +10001201 For more information, please read <file:Documentation/fb/intelfb.txt>
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001204 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 depends on FB_INTEL
1206 ---help---
1207 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001208 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 something goes wrong.
1210
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001211config FB_INTEL_I2C
1212 bool "DDC/I2C for Intel framebuffer support"
1213 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001214 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001215 default y
1216 help
1217 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219config FB_MATROX
1220 tristate "Matrox acceleration"
1221 depends on FB && PCI
1222 select FB_CFB_FILLRECT
1223 select FB_CFB_COPYAREA
1224 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 select FB_TILEBLITTING
1226 select FB_MACMODES if PPC_PMAC
1227 ---help---
1228 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1229 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1230 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1231 Matrox G400, G450 or G550 card in your box.
1232
1233 To compile this driver as a module, choose M here: the
1234 module will be called matroxfb.
1235
1236 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001237 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 are described in <file:Documentation/fb/matroxfb.txt>.
1239
1240config FB_MATROX_MILLENIUM
1241 bool "Millennium I/II support"
1242 depends on FB_MATROX
1243 help
1244 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1245 video card. If you select "Advanced lowlevel driver options" below,
1246 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1247 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1248 also use font widths different from 8.
1249
1250config FB_MATROX_MYSTIQUE
1251 bool "Mystique support"
1252 depends on FB_MATROX
1253 help
1254 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1255 video card. If you select "Advanced lowlevel driver options" below,
1256 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1257 packed pixel and 32 bpp packed pixel. You can also use font widths
1258 different from 8.
1259
1260config FB_MATROX_G
1261 bool "G100/G200/G400/G450/G550 support"
1262 depends on FB_MATROX
1263 ---help---
1264 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1265 video card. If you select "Advanced lowlevel driver options", you
1266 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1267 pixel and 32 bpp packed pixel. You can also use font widths
1268 different from 8.
1269
Jean Delvareee831262009-05-12 13:19:41 -07001270 If you need support for G400 secondary head, you must say Y to
1271 "Matrox I2C support" and "G400 second head support" right below.
1272 G450/G550 secondary head and digital output are supported without
1273 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 The driver starts in monitor mode. You must use the matroxset tool
1276 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1277 swap primary and secondary head outputs, or to change output mode.
1278 Secondary head driver always start in 640x480 resolution and you
1279 must use fbset to change it.
1280
1281 Do not forget that second head supports only 16 and 32 bpp
1282 packed pixels, so it is a good idea to compile them into the kernel
1283 too. You can use only some font widths, as the driver uses generic
1284 painting procedures (the secondary head does not use acceleration
1285 engine).
1286
1287 G450/G550 hardware can display TV picture only from secondary CRTC,
1288 and it performs no scaling, so picture must have 525 or 625 lines.
1289
1290config FB_MATROX_I2C
1291 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001292 depends on FB_MATROX
1293 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 ---help---
1295 This drivers creates I2C buses which are needed for accessing the
1296 DDC (I2C) bus present on all Matroxes, an I2C bus which
1297 interconnects Matrox optional devices, like MGA-TVO on G200 and
1298 G400, and the secondary head DDC bus, present on G400 only.
1299
1300 You can say Y or M here if you want to experiment with monitor
1301 detection code. You must say Y or M here if you want to use either
1302 second head of G400 or MGA-TVO on G200 or G400.
1303
1304 If you compile it as module, it will create a module named
1305 i2c-matroxfb.
1306
1307config FB_MATROX_MAVEN
1308 tristate "G400 second head support"
1309 depends on FB_MATROX_G && FB_MATROX_I2C
1310 ---help---
1311 WARNING !!! This support does not work with G450 !!!
1312
1313 Say Y or M here if you want to use a secondary head (meaning two
1314 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1315 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1316 secondary head output is blanked while you are in X. With XFree
1317 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1318 the fbdev driver on first head and the fbdev driver on second head.
1319
1320 If you compile it as module, two modules are created,
1321 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1322 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1323 also load i2c-matroxfb to get it to run.
1324
1325 The driver starts in monitor mode and you must use the matroxset
1326 tool (available at
1327 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1328 PAL or NTSC or to swap primary and secondary head outputs.
1329 Secondary head driver also always start in 640x480 resolution, you
1330 must use fbset to change it.
1331
1332 Also do not forget that second head supports only 16 and 32 bpp
1333 packed pixels, so it is a good idea to compile them into the kernel
1334 too. You can use only some font widths, as the driver uses generic
1335 painting procedures (the secondary head does not use acceleration
1336 engine).
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338config FB_RADEON
1339 tristate "ATI Radeon display support"
1340 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001341 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 select FB_MODE_HELPERS
1343 select FB_CFB_FILLRECT
1344 select FB_CFB_COPYAREA
1345 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 select FB_MACMODES if PPC_OF
1347 help
1348 Choose this option if you want to use an ATI Radeon graphics card as
1349 a framebuffer device. There are both PCI and AGP versions. You
1350 don't need to choose this to run the Radeon in plain VGA mode.
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001353 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355config FB_RADEON_I2C
1356 bool "DDC/I2C for ATI Radeon support"
1357 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001358 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 default y
1360 help
1361 Say Y here if you want DDC/I2C support for your Radeon board.
1362
Michael Hanselmann5474c122006-06-25 05:47:08 -07001363config FB_RADEON_BACKLIGHT
1364 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001365 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001366 default y
1367 help
1368 Say Y here if you want to control the backlight of your display.
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370config FB_RADEON_DEBUG
1371 bool "Lots of debug output from Radeon driver"
1372 depends on FB_RADEON
1373 default n
1374 help
1375 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001376 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 something goes wrong.
1378
1379config FB_ATY128
1380 tristate "ATI Rage128 display support"
1381 depends on FB && PCI
1382 select FB_CFB_FILLRECT
1383 select FB_CFB_COPYAREA
1384 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001385 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 select FB_MACMODES if PPC_PMAC
1387 help
1388 This driver supports graphics boards with the ATI Rage128 chips.
1389 Say Y if you have such a graphics board and read
1390 <file:Documentation/fb/aty128fb.txt>.
1391
1392 To compile this driver as a module, choose M here: the
1393 module will be called aty128fb.
1394
Michael Hanselmann5474c122006-06-25 05:47:08 -07001395config FB_ATY128_BACKLIGHT
1396 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001397 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001398 default y
1399 help
1400 Say Y here if you want to control the backlight of your display.
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402config FB_ATY
1403 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001404 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 select FB_CFB_FILLRECT
1406 select FB_CFB_COPYAREA
1407 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001408 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 select FB_MACMODES if PPC
1410 help
1411 This driver supports graphics boards with the ATI Mach64 chips.
1412 Say Y if you have such a graphics board.
1413
1414 To compile this driver as a module, choose M here: the
1415 module will be called atyfb.
1416
1417config FB_ATY_CT
1418 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1419 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001420 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 help
1422 Say Y here to support use of ATI's 64-bit Rage boards (or other
1423 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1424 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001425 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427config FB_ATY_GENERIC_LCD
1428 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1429 depends on FB_ATY_CT
1430 help
1431 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1432 Rage XC, or Rage XL chipset.
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434config FB_ATY_GX
1435 bool "Mach64 GX support" if PCI
1436 depends on FB_ATY
1437 default y if ATARI
1438 help
1439 Say Y here to support use of the ATI Mach64 Graphics Expression
1440 board (or other boards based on the Mach64 GX chipset) as a
1441 framebuffer device. The ATI product support page for these boards
1442 is at
1443 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1444
Michael Hanselmann5474c122006-06-25 05:47:08 -07001445config FB_ATY_BACKLIGHT
1446 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001447 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001448 default y
1449 help
1450 Say Y here if you want to control the backlight of your display.
1451
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001452config FB_S3
1453 tristate "S3 Trio/Virge support"
1454 depends on FB && PCI
1455 select FB_CFB_FILLRECT
1456 select FB_CFB_COPYAREA
1457 select FB_CFB_IMAGEBLIT
1458 select FB_TILEBLITTING
1459 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001460 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001461 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001462 ---help---
1463 Driver for graphics boards with S3 Trio / S3 Virge chip.
1464
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001465config FB_S3_DDC
1466 bool "DDC for S3 support"
1467 depends on FB_S3
1468 select FB_DDC
1469 default y
1470 help
1471 Say Y here if you want DDC support for your S3 graphics card.
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473config FB_SAVAGE
1474 tristate "S3 Savage support"
1475 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 select FB_MODE_HELPERS
1477 select FB_CFB_FILLRECT
1478 select FB_CFB_COPYAREA
1479 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001480 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 help
1482 This driver supports notebooks and computers with S3 Savage PCI/AGP
1483 chips.
1484
1485 Say Y if you have such a graphics card.
1486
1487 To compile this driver as a module, choose M here; the module
1488 will be called savagefb.
1489
1490config FB_SAVAGE_I2C
1491 bool "Enable DDC2 Support"
1492 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001493 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 help
1495 This enables I2C support for S3 Savage Chipsets. This is used
1496 only for getting EDID information from the attached display
1497 allowing for robust video mode handling and switching.
1498
1499 Because fbdev-2.6 requires that drivers must be able to
1500 independently validate video mode parameters, you should say Y
1501 here.
1502
1503config FB_SAVAGE_ACCEL
1504 bool "Enable Console Acceleration"
1505 depends on FB_SAVAGE
1506 default n
1507 help
1508 This option will compile in console acceleration support. If
1509 the resulting framebuffer console has bothersome glitches, then
1510 choose N here.
1511
1512config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001513 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 depends on FB && PCI
1515 select FB_CFB_FILLRECT
1516 select FB_CFB_COPYAREA
1517 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001518 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001520 This is the frame buffer device driver for the SiS 300, 315, 330
1521 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1522 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 To compile this driver as a module, choose M here; the module
1525 will be called sisfb.
1526
1527config FB_SIS_300
1528 bool "SiS 300 series support"
1529 depends on FB_SIS
1530 help
1531 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1532
1533config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001534 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 depends on FB_SIS
1536 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001537 Say Y here to support use of the SiS 315, 330 and 340 series
1538 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1539 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001541config FB_VIA
1542 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001543 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001544 select FB_CFB_FILLRECT
1545 select FB_CFB_COPYAREA
1546 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001547 select I2C_ALGOBIT
1548 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001549 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001550 help
1551 This is the frame buffer device driver for Graphics chips of VIA
1552 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1553 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1554 /P4M900,VX800)
1555 Say Y if you have a VIA UniChrome graphics board.
1556
1557 To compile this driver as a module, choose M here: the
1558 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001559
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001560if FB_VIA
1561
1562config FB_VIA_DIRECT_PROCFS
1563 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1564 depends on FB_VIA
1565 default n
1566 help
1567 Allow direct hardware access to some output registers via procfs.
1568 This is dangerous but may provide the only chance to get the
1569 correct output device configuration.
1570 Its use is strongly discouraged.
1571
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001572config FB_VIA_X_COMPATIBILITY
1573 bool "X server compatibility"
1574 depends on FB_VIA
1575 default n
1576 help
1577 This option reduces the functionality (power saving, ...) of the
1578 framebuffer to avoid negative impact on the OpenChrome X server.
1579 If you use any X server other than fbdev you should enable this
1580 otherwise it should be safe to disable it and allow using all
1581 features.
1582
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001583endif
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585config FB_NEOMAGIC
1586 tristate "NeoMagic display support"
1587 depends on FB && PCI
1588 select FB_MODE_HELPERS
1589 select FB_CFB_FILLRECT
1590 select FB_CFB_COPYAREA
1591 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001592 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 help
1594 This driver supports notebooks with NeoMagic PCI chips.
1595 Say Y if you have such a graphics card.
1596
1597 To compile this driver as a module, choose M here: the
1598 module will be called neofb.
1599
1600config FB_KYRO
1601 tristate "IMG Kyro support"
1602 depends on FB && PCI
1603 select FB_CFB_FILLRECT
1604 select FB_CFB_COPYAREA
1605 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 help
1607 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1608 graphics board.
1609
1610 To compile this driver as a module, choose M here: the
1611 module will be called kyrofb.
1612
1613config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001614 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 depends on FB && PCI
1616 select FB_CFB_IMAGEBLIT
1617 select FB_CFB_FILLRECT
1618 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001619 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001621 This driver supports graphics boards with the 3Dfx Banshee,
1622 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1623 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 To compile this driver as a module, choose M here: the
1626 module will be called tdfxfb.
1627
1628config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001629 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 depends on FB_3DFX && EXPERIMENTAL
1631 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001632 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1633 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001635config FB_3DFX_I2C
1636 bool "Enable DDC/I2C support"
1637 depends on FB_3DFX && EXPERIMENTAL
1638 select FB_DDC
1639 default y
1640 help
1641 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643config FB_VOODOO1
1644 tristate "3Dfx Voodoo Graphics (sst1) support"
1645 depends on FB && PCI
1646 select FB_CFB_FILLRECT
1647 select FB_CFB_COPYAREA
1648 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 ---help---
1650 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1651 Voodoo2 (cvg) based graphics card.
1652
1653 To compile this driver as a module, choose M here: the
1654 module will be called sstfb.
1655
1656 WARNING: Do not use any application that uses the 3D engine
1657 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001658 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 options and other important info support.
1660
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001661config FB_VT8623
1662 tristate "VIA VT8623 support"
1663 depends on FB && PCI
1664 select FB_CFB_FILLRECT
1665 select FB_CFB_COPYAREA
1666 select FB_CFB_IMAGEBLIT
1667 select FB_TILEBLITTING
1668 select FB_SVGALIB
1669 select VGASTATE
1670 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1671 ---help---
1672 Driver for CastleRock integrated graphics core in the
1673 VIA VT8623 [Apollo CLE266] chipset.
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001676 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 depends on FB && PCI
1678 select FB_CFB_FILLRECT
1679 select FB_CFB_COPYAREA
1680 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001682 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1683 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1684 and Blade XP.
1685 There are also integrated versions of these chips called CyberXXXX,
1686 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001687 but also on some motherboards including early VIA EPIA motherboards.
1688 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 Say Y if you have such a graphics board.
1691
1692 To compile this driver as a module, choose M here: the
1693 module will be called tridentfb.
1694
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001695config FB_ARK
1696 tristate "ARK 2000PV support"
1697 depends on FB && PCI
1698 select FB_CFB_FILLRECT
1699 select FB_CFB_COPYAREA
1700 select FB_CFB_IMAGEBLIT
1701 select FB_TILEBLITTING
1702 select FB_SVGALIB
1703 select VGASTATE
1704 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1705 ---help---
1706 Driver for PCI graphics boards with ARK 2000PV chip
1707 and ICS 5342 RAMDAC.
1708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001710 tristate "Permedia3 support (EXPERIMENTAL)"
1711 depends on FB && PCI && EXPERIMENTAL
1712 select FB_CFB_FILLRECT
1713 select FB_CFB_COPYAREA
1714 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 help
1716 This is the frame buffer device driver for the 3DLabs Permedia3
1717 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1718 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1719 and maybe other boards.
1720
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001721config FB_CARMINE
1722 tristate "Fujitsu carmine frame buffer support"
1723 depends on FB && PCI
1724 select FB_CFB_FILLRECT
1725 select FB_CFB_COPYAREA
1726 select FB_CFB_IMAGEBLIT
1727 help
1728 This is the frame buffer device driver for the Fujitsu Carmine chip.
1729 The driver provides two independent frame buffer devices.
1730
1731choice
1732 depends on FB_CARMINE
1733 prompt "DRAM timing"
1734 default FB_CARMINE_DRAM_EVAL
1735
1736config FB_CARMINE_DRAM_EVAL
1737 bool "Eval board timings"
1738 help
1739 Use timings which work on the eval card.
1740
1741config CARMINE_DRAM_CUSTOM
1742 bool "Custom board timings"
1743 help
1744 Use custom board timings.
1745endchoice
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747config FB_AU1100
1748 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001749 depends on (FB = y) && MIPS && SOC_AU1100
1750 select FB_CFB_FILLRECT
1751 select FB_CFB_COPYAREA
1752 select FB_CFB_IMAGEBLIT
1753 help
1754 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1755 various panels and CRTs by passing in kernel cmd line option
1756 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001758config FB_AU1200
1759 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001760 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001761 select FB_CFB_FILLRECT
1762 select FB_CFB_COPYAREA
1763 select FB_CFB_IMAGEBLIT
1764 help
1765 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1766 various panels and CRTs by passing in kernel cmd line option
1767 au1200fb:panel=<name>.
1768
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001769config FB_VT8500
1770 bool "VT8500 LCD Driver"
1771 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1772 select FB_WMT_GE_ROPS
1773 select FB_SYS_IMAGEBLIT
1774 help
1775 This is the framebuffer driver for VIA VT8500 integrated LCD
1776 controller.
1777
1778config FB_WM8505
1779 bool "WM8505 frame buffer support"
1780 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1781 select FB_WMT_GE_ROPS
1782 select FB_SYS_IMAGEBLIT
1783 help
1784 This is the framebuffer driver for WonderMedia WM8505
1785 integrated LCD controller.
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787source "drivers/video/geode/Kconfig"
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789config FB_HIT
1790 tristate "HD64461 Frame Buffer support"
1791 depends on FB && HD64461
1792 select FB_CFB_FILLRECT
1793 select FB_CFB_COPYAREA
1794 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 help
1796 This is the frame buffer device driver for the Hitachi HD64461 LCD
1797 frame buffer card.
1798
1799config FB_PMAG_AA
1800 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001801 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 select FB_CFB_FILLRECT
1803 select FB_CFB_COPYAREA
1804 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 help
1806 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1807 used mainly in the MIPS-based DECstation series.
1808
1809config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001810 tristate "PMAG-BA TURBOchannel framebuffer support"
1811 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 select FB_CFB_FILLRECT
1813 select FB_CFB_COPYAREA
1814 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 help
1816 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1817 used mainly in the MIPS-based DECstation series.
1818
1819config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001820 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001821 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 select FB_CFB_FILLRECT
1823 select FB_CFB_COPYAREA
1824 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 help
1826 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1827 in the MIPS-based DECstation series. The card is currently only
1828 supported in 1280x1024x8 mode.
1829
1830config FB_MAXINE
1831 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001832 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 select FB_CFB_FILLRECT
1834 select FB_CFB_COPYAREA
1835 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 help
1837 Support for the onboard framebuffer (1024x768x8) in the Personal
1838 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1839 Codename "Maxine").
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001842 bool "G364 frame buffer support"
1843 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 select FB_CFB_FILLRECT
1845 select FB_CFB_COPYAREA
1846 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 help
1848 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1849 Olivetti M700-10 systems.
1850
1851config FB_68328
1852 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001853 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 select FB_CFB_FILLRECT
1855 select FB_CFB_COPYAREA
1856 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 help
1858 Say Y here if you want to support the built-in frame buffer of
1859 the Motorola 68328 CPU family.
1860
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001861config FB_PXA168
1862 tristate "PXA168/910 LCD framebuffer support"
1863 depends on FB && (CPU_PXA168 || CPU_PXA910)
1864 select FB_CFB_FILLRECT
1865 select FB_CFB_COPYAREA
1866 select FB_CFB_IMAGEBLIT
1867 ---help---
1868 Frame buffer driver for the built-in LCD controller in the Marvell
1869 MMP processor.
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871config FB_PXA
1872 tristate "PXA LCD framebuffer support"
1873 depends on FB && ARCH_PXA
1874 select FB_CFB_FILLRECT
1875 select FB_CFB_COPYAREA
1876 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 ---help---
1878 Frame buffer driver for the built-in LCD controller in the Intel
1879 PXA2x0 processor.
1880
1881 This driver is also available as a module ( = code which can be
1882 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001883 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001884 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 If unsure, say N.
1887
Eric Miao198fc102008-12-23 17:49:43 +08001888config FB_PXA_OVERLAY
1889 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1890 default n
1891 depends on FB_PXA && (PXA27x || PXA3xx)
1892
Eric Miao3c42a442008-04-30 00:52:26 -07001893config FB_PXA_SMARTPANEL
1894 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001895 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001896 depends on FB_PXA
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898config FB_PXA_PARAMETERS
1899 bool "PXA LCD command line parameters"
1900 default n
1901 depends on FB_PXA
1902 ---help---
1903 Enable the use of kernel command line or module parameters
1904 to configure the physical properties of the LCD panel when
1905 using the PXA LCD driver.
1906
1907 This option allows you to override the panel parameters
1908 supplied by the platform in order to support multiple
1909 different models of flatpanel. If you will only be using a
1910 single model of flatpanel then you can safely leave this
1911 option disabled.
1912
1913 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1914
Daniel Mack364dbdf2010-11-04 14:44:00 -04001915config PXA3XX_GCU
1916 tristate "PXA3xx 2D graphics accelerator driver"
1917 depends on FB_PXA
1918 help
1919 Kernelspace driver for the 2D graphics controller unit (GCU)
1920 found on PXA3xx processors. There is a counterpart driver in the
1921 DirectFB suite, see http://www.directfb.org/
1922
1923 If you compile this as a module, it will be called pxa3xx_gcu.
1924
Mike Rapoport22caf042006-07-14 00:24:34 -07001925config FB_MBX
1926 tristate "2700G LCD framebuffer support"
1927 depends on FB && ARCH_PXA
1928 select FB_CFB_FILLRECT
1929 select FB_CFB_COPYAREA
1930 select FB_CFB_IMAGEBLIT
1931 ---help---
1932 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1933 Accelerator
1934
1935config FB_MBX_DEBUG
1936 bool "Enable debugging info via debugfs"
1937 depends on FB_MBX && DEBUG_FS
1938 default n
1939 ---help---
1940 Enable this if you want debugging information using the debug
1941 filesystem (debugfs)
1942
1943 If unsure, say N.
1944
York Sun9b53a9e2008-04-28 02:15:34 -07001945config FB_FSL_DIU
1946 tristate "Freescale DIU framebuffer support"
1947 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001948 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001949 select FB_CFB_FILLRECT
1950 select FB_CFB_COPYAREA
1951 select FB_CFB_IMAGEBLIT
1952 select PPC_LIB_RHEAP
1953 ---help---
1954 Framebuffer driver for the Freescale SoC DIU
1955
Randy Dunlapecc41d52005-11-07 01:00:29 -08001956config FB_W100
1957 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001958 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001959 select FB_CFB_FILLRECT
1960 select FB_CFB_COPYAREA
1961 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001962 ---help---
1963 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001964 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001965
1966 This driver is also available as a module ( = code which can be
1967 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001968 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001969 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001970
1971 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001973config FB_SH_MOBILE_LCDC
1974 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001975 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001976 select FB_SYS_FILLRECT
1977 select FB_SYS_COPYAREA
1978 select FB_SYS_IMAGEBLIT
1979 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09001980 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001981 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001982 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001983 ---help---
1984 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1985
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001986config FB_SH_MOBILE_HDMI
1987 tristate "SuperH Mobile HDMI controller support"
1988 depends on FB_SH_MOBILE_LCDC
1989 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02001990 select SOUND
1991 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09001992 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001993 ---help---
1994 Driver for the on-chip SH-Mobile HDMI controller.
1995
Damian7caa4342011-05-18 11:10:07 +00001996config FB_SH_MOBILE_MERAM
1997 tristate "SuperH Mobile MERAM read ahead support for LCDC"
1998 depends on FB_SH_MOBILE_LCDC
1999 default y
2000 ---help---
2001 Enable MERAM support for the SH-Mobile LCD controller.
2002
2003 This will allow for caching of the framebuffer to provide more
2004 reliable access under heavy main memory bus traffic situations.
2005 Up to 4 memory channels can be configured, allowing 4 RGB or
2006 2 YCbCr framebuffers to be configured.
2007
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002008config FB_TMIO
2009 tristate "Toshiba Mobile IO FrameBuffer support"
2010 depends on FB && MFD_CORE
2011 select FB_CFB_FILLRECT
2012 select FB_CFB_COPYAREA
2013 select FB_CFB_IMAGEBLIT
2014 ---help---
2015 Frame buffer driver for the Toshiba Mobile IO integrated as found
2016 on the Sharp SL-6000 series
2017
2018 This driver is also available as a module ( = code which can be
2019 inserted and removed from the running kernel whenever you want). The
2020 module will be called tmiofb. If you want to compile it as a module,
2021 say M here and read <file:Documentation/kbuild/modules.txt>.
2022
2023 If unsure, say N.
2024
2025config FB_TMIO_ACCELL
2026 bool "tmiofb acceleration"
2027 depends on FB_TMIO
2028 default y
2029
Ben Dooksec549a02009-03-31 15:25:39 -07002030config FB_S3C
2031 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002032 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002033 select FB_CFB_FILLRECT
2034 select FB_CFB_COPYAREA
2035 select FB_CFB_IMAGEBLIT
2036 ---help---
2037 Frame buffer driver for the built-in FB controller in the Samsung
2038 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2039 and the S3C64XX series such as the S3C6400 and S3C6410.
2040
2041 These chips all have the same basic framebuffer design with the
2042 actual capabilities depending on the chip. For instance the S3C6400
2043 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2044 currently only have two.
2045
2046 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2047
2048config FB_S3C_DEBUG_REGWRITE
2049 bool "Debug register writes"
2050 depends on FB_S3C
2051 ---help---
2052 Show all register writes via printk(KERN_DEBUG)
2053
Arnaud Patard20fd5762005-09-09 13:10:07 -07002054config FB_S3C2410
2055 tristate "S3C2410 LCD framebuffer support"
2056 depends on FB && ARCH_S3C2410
2057 select FB_CFB_FILLRECT
2058 select FB_CFB_COPYAREA
2059 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002060 ---help---
2061 Frame buffer driver for the built-in LCD controller in the Samsung
2062 S3C2410 processor.
2063
2064 This driver is also available as a module ( = code which can be
2065 inserted and removed from the running kernel whenever you want). The
2066 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002067 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002068
2069 If unsure, say N.
2070config FB_S3C2410_DEBUG
2071 bool "S3C2410 lcd debug messages"
2072 depends on FB_S3C2410
2073 help
2074 Turn on debugging messages. Note that you can set/unset at run time
2075 through sysfs
2076
Wang Qiang86619702010-03-10 15:21:47 -08002077config FB_NUC900
2078 bool "NUC900 LCD framebuffer support"
2079 depends on FB && ARCH_W90X900
2080 select FB_CFB_FILLRECT
2081 select FB_CFB_COPYAREA
2082 select FB_CFB_IMAGEBLIT
2083 ---help---
2084 Frame buffer driver for the built-in LCD controller in the Nuvoton
2085 NUC900 processor
2086
2087config GPM1040A0_320X240
2088 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2089 depends on FB_NUC900
2090
2091config FB_NUC900_DEBUG
2092 bool "NUC900 lcd debug messages"
2093 depends on FB_NUC900
2094 help
2095 Turn on debugging messages. Note that you can set/unset at run time
2096 through sysfs
2097
Ben Dooks5fc404e2007-02-20 13:58:21 -08002098config FB_SM501
2099 tristate "Silicon Motion SM501 framebuffer support"
2100 depends on FB && MFD_SM501
2101 select FB_CFB_FILLRECT
2102 select FB_CFB_COPYAREA
2103 select FB_CFB_IMAGEBLIT
2104 ---help---
2105 Frame buffer driver for the CRT and LCD controllers in the Silicon
2106 Motion SM501.
2107
2108 This driver is also available as a module ( = code which can be
2109 inserted and removed from the running kernel whenever you want). The
2110 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002111 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002112
2113 If unsure, say N.
2114
Paul Mundt96f8d862010-11-16 14:00:24 +09002115config FB_UDL
2116 tristate "Displaylink USB Framebuffer support"
2117 depends on FB && USB
2118 select FB_MODE_HELPERS
2119 select FB_SYS_FILLRECT
2120 select FB_SYS_COPYAREA
2121 select FB_SYS_IMAGEBLIT
2122 select FB_SYS_FOPS
2123 select FB_DEFERRED_IO
2124 ---help---
2125 This is a kernel framebuffer driver for DisplayLink USB devices.
2126 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2127 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2128 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002129
Vitaly Wool36c93662006-07-03 00:24:19 -07002130config FB_PNX4008_DUM
2131 tristate "Display Update Module support on Philips PNX4008 board"
2132 depends on FB && ARCH_PNX4008
2133 ---help---
2134 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2135
2136config FB_PNX4008_DUM_RGB
2137 tristate "RGB Framebuffer support on Philips PNX4008 board"
2138 depends on FB_PNX4008_DUM
2139 select FB_CFB_FILLRECT
2140 select FB_CFB_COPYAREA
2141 select FB_CFB_IMAGEBLIT
2142 ---help---
2143 Say Y here to enable support for PNX4008 RGB Framebuffer
2144
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002145config FB_IBM_GXT4500
2146 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002147 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002148 select FB_CFB_FILLRECT
2149 select FB_CFB_COPYAREA
2150 select FB_CFB_IMAGEBLIT
2151 ---help---
2152 Say Y here to enable support for the IBM GXT4500P display
2153 adaptor, found on some IBM System P (pSeries) machines.
2154
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002155config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002156 tristate "PS3 GPU framebuffer driver"
2157 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002158 select FB_SYS_FILLRECT
2159 select FB_SYS_COPYAREA
2160 select FB_SYS_IMAGEBLIT
2161 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002162 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002163 ---help---
2164 Include support for the virtual frame buffer in the PS3 platform.
2165
2166config FB_PS3_DEFAULT_SIZE_M
2167 int "PS3 default frame buffer size (in MiB)"
2168 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002169 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002170 ---help---
2171 This is the default size (in MiB) of the virtual frame buffer in
2172 the PS3.
2173 The default value can be overridden on the kernel command line
2174 using the "ps3fb" option (e.g. "ps3fb=9M");
2175
Andrei Konovalov147394c2007-05-08 00:40:18 -07002176config FB_XILINX
2177 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002178 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002179 select FB_CFB_FILLRECT
2180 select FB_CFB_COPYAREA
2181 select FB_CFB_IMAGEBLIT
2182 ---help---
2183 Include support for the Xilinx ML300/ML403 reference design
2184 framebuffer. ML300 carries a 640*480 LCD display on the board,
2185 ML403 uses a standard DB15 VGA connector.
2186
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002187config FB_COBALT
2188 tristate "Cobalt server LCD frame buffer support"
2189 depends on FB && MIPS_COBALT
2190
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002191config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002192 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2193 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2194 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2195 select FB_CFB_FILLRECT
2196 select FB_CFB_COPYAREA
2197 select FB_CFB_IMAGEBLIT
2198 ---help---
2199 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2200 (D)STN/TFT LCD Controller.
2201 Supports display resolutions up to 1024x1024 pixel, grayscale and
2202 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2203 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2204 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002205
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002206config FB_DA8XX
2207 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2208 depends on FB && ARCH_DAVINCI_DA8XX
2209 select FB_CFB_FILLRECT
2210 select FB_CFB_COPYAREA
2211 select FB_CFB_IMAGEBLIT
2212 ---help---
2213 This is the frame buffer device driver for the TI LCD controller
2214 found on DA8xx/OMAP-L1xx SoCs.
2215 If unsure, say N.
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217config FB_VIRTUAL
2218 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2219 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002220 select FB_SYS_FILLRECT
2221 select FB_SYS_COPYAREA
2222 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002223 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 ---help---
2225 This is a `virtual' frame buffer device. It operates on a chunk of
2226 unswappable kernel memory instead of on the memory of a graphics
2227 board. This means you cannot see any output sent to this frame
2228 buffer device, while it does consume precious memory. The main use
2229 of this frame buffer device is testing and debugging the frame
2230 buffer subsystem. Do NOT enable it for normal systems! To protect
2231 the innocent, it has to be enabled explicitly at boot time using the
2232 kernel option `video=vfb:'.
2233
2234 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002235 module will be called vfb. In order to load it, you must use
2236 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002239
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002240config XEN_FBDEV_FRONTEND
2241 tristate "Xen virtual frame buffer support"
2242 depends on FB && XEN
2243 select FB_SYS_FILLRECT
2244 select FB_SYS_COPYAREA
2245 select FB_SYS_IMAGEBLIT
2246 select FB_SYS_FOPS
2247 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002248 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002249 default y
2250 help
2251 This driver implements the front-end of the Xen virtual
2252 frame buffer driver. It communicates with a back-end
2253 in another domain.
2254
Jaya Kumare9355082008-08-19 11:17:55 +01002255config FB_METRONOME
2256 tristate "E-Ink Metronome/8track controller support"
2257 depends on FB
2258 select FB_SYS_FILLRECT
2259 select FB_SYS_COPYAREA
2260 select FB_SYS_IMAGEBLIT
2261 select FB_SYS_FOPS
2262 select FB_DEFERRED_IO
2263 help
2264 This driver implements support for the E-Ink Metronome
2265 controller. The pre-release name for this device was 8track
2266 and could also have been called by some vendors as PVI-nnnn.
2267
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002268config FB_MB862XX
2269 tristate "Fujitsu MB862xx GDC support"
2270 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002271 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002272 select FB_CFB_FILLRECT
2273 select FB_CFB_COPYAREA
2274 select FB_CFB_IMAGEBLIT
2275 ---help---
2276 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2277
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002278choice
2279 prompt "GDC variant"
2280 depends on FB_MB862XX
2281
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002282config FB_MB862XX_PCI_GDC
2283 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002284 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002285 ---help---
2286 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2287 PCI graphics controller devices.
2288
2289config FB_MB862XX_LIME
2290 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002291 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002292 select FB_FOREIGN_ENDIAN
2293 select FB_LITTLE_ENDIAN
2294 ---help---
2295 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2296
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002297endchoice
2298
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002299config FB_MB862XX_I2C
2300 bool "Support I2C bus on MB862XX GDC"
2301 depends on FB_MB862XX && I2C
2302 default y
2303 help
2304 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2305 driver to support accessing I2C devices on controller's I2C bus.
2306 These are usually some video decoder chips.
2307
Ryan Mallon88017bd2009-09-22 16:47:09 -07002308config FB_EP93XX
2309 tristate "EP93XX frame buffer support"
2310 depends on FB && ARCH_EP93XX
2311 select FB_CFB_FILLRECT
2312 select FB_CFB_COPYAREA
2313 select FB_CFB_IMAGEBLIT
2314 ---help---
2315 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2316 This driver is also available as a module. The module will be called
2317 ep93xx-fb.
2318
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002319config FB_PRE_INIT_FB
2320 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002321 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002322 ---help---
2323 Select this option if display contents should be inherited as set by
2324 the bootloader.
2325
Pavel Machekd480ace2009-09-22 16:47:03 -07002326config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002327 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002328 depends on FB && ARCH_MSM
2329 select FB_CFB_FILLRECT
2330 select FB_CFB_COPYAREA
2331 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002332
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002333config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002334 tristate "MX3 Framebuffer support"
2335 depends on FB && MX3_IPU
2336 select FB_CFB_FILLRECT
2337 select FB_CFB_COPYAREA
2338 select FB_CFB_IMAGEBLIT
2339 default y
2340 help
2341 This is a framebuffer device for the i.MX31 LCD Controller. So
2342 far only synchronous displays are supported. If you plan to use
2343 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002344
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002345config FB_BROADSHEET
2346 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2347 depends on FB
2348 select FB_SYS_FILLRECT
2349 select FB_SYS_COPYAREA
2350 select FB_SYS_IMAGEBLIT
2351 select FB_SYS_FOPS
2352 select FB_DEFERRED_IO
2353 help
2354 This driver implements support for the E-Ink Broadsheet
2355 controller. The release name for this device was Epson S1D13521
2356 and could also have been called by other names when coupled with
2357 a bridge adapter.
2358
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002359config FB_JZ4740
2360 tristate "JZ4740 LCD framebuffer support"
2361 depends on FB && MACH_JZ4740
2362 select FB_SYS_FILLRECT
2363 select FB_SYS_COPYAREA
2364 select FB_SYS_IMAGEBLIT
2365 help
2366 Framebuffer support for the JZ4740 SoC.
2367
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002368config FB_MXS
2369 tristate "MXS LCD framebuffer support"
2370 depends on FB && ARCH_MXS
2371 select FB_CFB_FILLRECT
2372 select FB_CFB_COPYAREA
2373 select FB_CFB_IMAGEBLIT
2374 help
2375 Framebuffer support for the MXS SoC.
2376
GuanXuetaoce443ab2011-02-26 21:39:10 +08002377config FB_PUV3_UNIGFX
2378 tristate "PKUnity v3 Unigfx framebuffer support"
2379 depends on FB && UNICORE32 && ARCH_PUV3
2380 select FB_SYS_FILLRECT
2381 select FB_SYS_COPYAREA
2382 select FB_SYS_IMAGEBLIT
2383 select FB_SYS_FOPS
2384 help
2385 Choose this option if you want to use the Unigfx device as a
2386 framebuffer device. Without the support of PCI & AGP.
2387
Randy Dunlapf08f3892007-10-29 14:37:16 -07002388source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002389source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002390
Randy Dunlap179b0252007-10-16 01:29:39 -07002391source "drivers/video/backlight/Kconfig"
2392source "drivers/video/display/Kconfig"
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394if VT
2395 source "drivers/video/console/Kconfig"
2396endif
2397
2398if FB || SGI_NEWPORT_CONSOLE
2399 source "drivers/video/logo/Kconfig"
2400endif
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402endmenu