blob: a0282b133bcc27b53ecdb2d4723fb85aa1571396 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Nicolas Ferre0912e532009-06-23 16:30:56 +02008config HAVE_FB_ATMEL
9 bool
10
Thadeu Lima de Souza Cascardob1413352010-06-04 14:15:00 -070011config HAVE_FB_IMX
12 bool
13
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000014config SH_MIPI_DSI
15 tristate
16 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
17
18config SH_LCD_MIPI_DSI
19 bool
20
Randy Dunlap179b0252007-10-16 01:29:39 -070021source "drivers/char/agp/Kconfig"
22
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100023source "drivers/gpu/vga/Kconfig"
24
Dave Airliec0e09202008-05-29 10:09:59 +100025source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070026
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080027source "drivers/gpu/stub/Kconfig"
28
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070029config VGASTATE
30 tristate
31 default n
32
Luming Yu23b0f012007-05-09 21:07:05 +080033config VIDEO_OUTPUT_CONTROL
34 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080035 help
36 This framework adds support for low-level control of the video
37 output switch.
38
Randy Dunlap179b0252007-10-16 01:29:39 -070039menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 tristate "Support for frame buffer devices"
41 ---help---
42 The frame buffer device provides an abstraction for the graphics
43 hardware. It represents the frame buffer of some video hardware and
44 allows application software to access the graphics hardware through
45 a well-defined interface, so the software doesn't need to know
46 anything about the low-level (hardware register) stuff.
47
48 Frame buffer devices work identically across the different
49 architectures supported by Linux and make the implementation of
50 application programs easier and more portable; at this point, an X
51 server exists which uses the frame buffer device exclusively.
52 On several non-X86 architectures, the frame buffer device is the
53 only way to use the graphics hardware.
54
55 The device is accessed through special device nodes, usually located
56 in the /dev directory, i.e. /dev/fb*.
57
58 You need an utility program called fbset to make full use of frame
59 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
60 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020061 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 information.
63
64 Say Y here and to the driver for your graphics board below if you
65 are compiling a kernel for a non-x86 architecture.
66
67 If you are compiling for the x86 architecture, you can say Y if you
68 want to play with it, but it is not essential. Please note that
69 running graphical applications that directly touch the hardware
70 (e.g. an accelerated X server) and that are not frame buffer
71 device-aware may cause unexpected results. If unsure, say N.
72
James Simmonse0e34ef2007-02-10 14:15:43 +000073config FIRMWARE_EDID
74 bool "Enable firmware EDID"
75 depends on FB
76 default n
77 ---help---
78 This enables access to the EDID transferred from the firmware.
79 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
80 transfers do not work for your driver and if you are using
81 nvidiafb, i810fb or savagefb.
82
83 In general, choosing Y for this option is safe. If you
84 experience extremely long delays while booting before you get
85 something on your display, try setting this to N. Matrox cards in
86 combination with certain motherboards and monitors are known to
87 suffer from this problem.
88
Dennis Munsiefc5891c2006-10-03 01:14:42 -070089config FB_DDC
90 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000091 depends on FB
92 select I2C_ALGOBIT
93 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070094 default n
95
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070096config FB_BOOT_VESA_SUPPORT
97 bool
98 depends on FB
99 default n
100 ---help---
101 If true, at least one selected framebuffer driver can take advantage
102 of VESA video modes set at an early boot stage via the vga= parameter.
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104config FB_CFB_FILLRECT
105 tristate
106 depends on FB
107 default n
108 ---help---
109 Include the cfb_fillrect function for generic software rectangle
110 filling. This is used by drivers that don't provide their own
111 (accelerated) version.
112
113config FB_CFB_COPYAREA
114 tristate
115 depends on FB
116 default n
117 ---help---
118 Include the cfb_copyarea function for generic software area copying.
119 This is used by drivers that don't provide their own (accelerated)
120 version.
121
122config FB_CFB_IMAGEBLIT
123 tristate
124 depends on FB
125 default n
126 ---help---
127 Include the cfb_imageblit function for generic software image
128 blitting. This is used by drivers that don't provide their own
129 (accelerated) version.
130
Pavel Pisa779121e2007-10-16 01:29:21 -0700131config FB_CFB_REV_PIXELS_IN_BYTE
132 bool
133 depends on FB
134 default n
135 ---help---
136 Allow generic frame-buffer functions to work on displays with 1, 2
137 and 4 bits per pixel depths which has opposite order of pixels in
138 byte order to bytes in long order.
139
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700140config FB_SYS_FILLRECT
141 tristate
142 depends on FB
143 default n
144 ---help---
145 Include the sys_fillrect function for generic software rectangle
146 filling. This is used by drivers that don't provide their own
147 (accelerated) version and the framebuffer is in system RAM.
148
149config FB_SYS_COPYAREA
150 tristate
151 depends on FB
152 default n
153 ---help---
154 Include the sys_copyarea function for generic software area copying.
155 This is used by drivers that don't provide their own (accelerated)
156 version and the framebuffer is in system RAM.
157
158config FB_SYS_IMAGEBLIT
159 tristate
160 depends on FB
161 default n
162 ---help---
163 Include the sys_imageblit function for generic software image
164 blitting. This is used by drivers that don't provide their own
165 (accelerated) version and the framebuffer is in system RAM.
166
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700167menuconfig FB_FOREIGN_ENDIAN
168 bool "Framebuffer foreign endianness support"
169 depends on FB
170 ---help---
171 This menu will let you enable support for the framebuffers with
172 non-native endianness (e.g. Little-Endian framebuffer on a
173 Big-Endian machine). Most probably you don't have such hardware,
174 so it's safe to say "n" here.
175
176choice
177 prompt "Choice endianness support"
178 depends on FB_FOREIGN_ENDIAN
179
180config FB_BOTH_ENDIAN
181 bool "Support for Big- and Little-Endian framebuffers"
182
183config FB_BIG_ENDIAN
184 bool "Support for Big-Endian framebuffers only"
185
186config FB_LITTLE_ENDIAN
187 bool "Support for Little-Endian framebuffers only"
188
189endchoice
190
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700191config FB_SYS_FOPS
192 tristate
193 depends on FB
194 default n
195
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300196config FB_WMT_GE_ROPS
197 tristate
198 depends on FB
199 default n
200 ---help---
201 Include functions for accelerated rectangle filling and area
202 copying using WonderMedia Graphics Engine operations.
203
Jaya Kumar60b59be2007-05-08 00:37:37 -0700204config FB_DEFERRED_IO
205 bool
206 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700207
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700208config FB_HECUBA
209 tristate
210 depends on FB
211 depends on FB_DEFERRED_IO
212
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800213config FB_SVGALIB
214 tristate
215 depends on FB
216 default n
217 ---help---
218 Common utility functions useful to fbdev drivers of VGA-based
219 cards.
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221config FB_MACMODES
222 tristate
223 depends on FB
224 default n
225
Michael Hanselmann5474c122006-06-25 05:47:08 -0700226config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700227 bool
228 depends on FB
229 select BACKLIGHT_LCD_SUPPORT
230 select BACKLIGHT_CLASS_DEVICE
231 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233config FB_MODE_HELPERS
234 bool "Enable Video Mode Handling Helpers"
235 depends on FB
236 default n
237 ---help---
238 This enables functions for handling video modes using the
239 Generalized Timing Formula and the EDID parser. A few drivers rely
240 on this feature such as the radeonfb, rivafb, and the i810fb. If
241 your driver does not take advantage of this feature, choosing Y will
242 just increase the kernel size by about 5K.
243
244config FB_TILEBLITTING
245 bool "Enable Tile Blitting Support"
246 depends on FB
247 default n
248 ---help---
249 This enables tile blitting. Tile blitting is a drawing technique
250 where the screen is divided into rectangular sections (tiles), whereas
251 the standard blitting divides the screen into pixels. Because the
252 default drawing element is a tile, drawing functions will be passed
253 parameters in terms of number of tiles instead of number of pixels.
254 For example, to draw a single character, instead of using bitmaps,
255 an index to an array of bitmaps will be used. To clear or move a
256 rectangular section of a screen, the rectangle will be described in
257 terms of number of tiles in the x- and y-axis.
258
259 This is particularly important to one driver, matroxfb. If
260 unsure, say N.
261
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700262comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000263 depends on FB
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265config FB_CIRRUS
266 tristate "Cirrus Logic support"
267 depends on FB && (ZORRO || PCI)
268 select FB_CFB_FILLRECT
269 select FB_CFB_COPYAREA
270 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ---help---
272 This enables support for Cirrus Logic GD542x/543x based boards on
273 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
274
275 If you have a PCI-based system, this enables support for these
276 chips: GD-543x, GD-544x, GD-5480.
277
278 Please read the file <file:Documentation/fb/cirrusfb.txt>.
279
280 Say N unless you have such a graphics board or plan to get one
281 before you next recompile the kernel.
282
283config FB_PM2
284 tristate "Permedia2 support"
285 depends on FB && ((AMIGA && BROKEN) || PCI)
286 select FB_CFB_FILLRECT
287 select FB_CFB_COPYAREA
288 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700290 This is the frame buffer device driver for cards based on
291 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
292 The driver was tested on the following cards:
293 Diamond FireGL 1000 PRO AGP
294 ELSA Gloria Synergy PCI
295 Appian Jeronimo PRO (both heads) PCI
296 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
297 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
298 ASK Graphic Blaster Exxtreme AGP
299
300 To compile this driver as a module, choose M here: the
301 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303config FB_PM2_FIFO_DISCONNECT
304 bool "enable FIFO disconnect feature"
305 depends on FB_PM2 && PCI
306 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700307 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309config FB_ARMCLCD
310 tristate "ARM PrimeCell PL110 support"
311 depends on FB && ARM && ARM_AMBA
312 select FB_CFB_FILLRECT
313 select FB_CFB_COPYAREA
314 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 help
316 This framebuffer device driver is for the ARM PrimeCell PL110
317 Colour LCD controller. ARM PrimeCells provide the building
318 blocks for System on a Chip devices.
319
320 If you want to compile this as a module (=code which can be
321 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500322 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 will be called amba-clcd.
324
325config FB_ACORN
326 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000327 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 select FB_CFB_FILLRECT
329 select FB_CFB_COPYAREA
330 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 help
332 This is the frame buffer device driver for the Acorn VIDC graphics
333 hardware found in Acorn RISC PCs and other ARM-based machines. If
334 unsure, say N.
335
336config FB_CLPS711X
337 bool "CLPS711X LCD support"
338 depends on (FB = y) && ARM && ARCH_CLPS711X
339 select FB_CFB_FILLRECT
340 select FB_CFB_COPYAREA
341 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800342 help
343 Say Y to enable the Framebuffer driver for the CLPS7111 and
344 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346config FB_SA1100
347 bool "SA-1100 LCD support"
348 depends on (FB = y) && ARM && ARCH_SA1100
349 select FB_CFB_FILLRECT
350 select FB_CFB_COPYAREA
351 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 help
353 This is a framebuffer device for the SA-1100 LCD Controller.
354 See <http://www.linux-fbdev.org/> for information on framebuffer
355 devices.
356
357 If you plan to use the LCD display with your SA-1100 system, say
358 Y here.
359
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700360config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200361 tristate "Freescale i.MX LCD support"
Baruch Siachf6014412010-02-17 12:33:23 +0200362 depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700363 select FB_CFB_FILLRECT
364 select FB_CFB_COPYAREA
365 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367config FB_CYBER2000
368 tristate "CyberPro 2000/2010/5000 support"
369 depends on FB && PCI && (BROKEN || !SPARC64)
370 select FB_CFB_FILLRECT
371 select FB_CFB_COPYAREA
372 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 help
374 This enables support for the Integraphics CyberPro 20x0 and 5000
375 VGA chips used in the Rebel.com Netwinder and other machines.
376 Say Y if you have a NetWinder or a graphics card containing this
377 device, otherwise say N.
378
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200379config FB_CYBER2000_DDC
380 bool "DDC for CyberPro support"
381 depends on FB_CYBER2000
382 select FB_DDC
383 default y
384 help
385 Say Y here if you want DDC support for your CyberPro graphics
386 card. This is only I2C bus support, driver does not use EDID.
387
Russell Kingb7ca01a2010-08-02 09:57:07 +0100388config FB_CYBER2000_I2C
389 bool "CyberPro 2000/2010/5000 I2C support"
390 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
391 select I2C_ALGOBIT
392 help
393 Enable support for the I2C video decoder interface on the
394 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
395 on the Netwinder machines for the SAA7111 video capture.
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397config FB_APOLLO
398 bool
399 depends on (FB = y) && APOLLO
400 default y
401 select FB_CFB_FILLRECT
402 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404config FB_Q40
405 bool
406 depends on (FB = y) && Q40
407 default y
408 select FB_CFB_FILLRECT
409 select FB_CFB_COPYAREA
410 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412config FB_AMIGA
413 tristate "Amiga native chipset support"
414 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 help
416 This is the frame buffer device driver for the builtin graphics
417 chipset found in Amigas.
418
419 To compile this driver as a module, choose M here: the
420 module will be called amifb.
421
422config FB_AMIGA_OCS
423 bool "Amiga OCS chipset support"
424 depends on FB_AMIGA
425 help
426 This enables support for the original Agnus and Denise video chips,
427 found in the Amiga 1000 and most A500's and A2000's. If you intend
428 to run Linux on any of these systems, say Y; otherwise say N.
429
430config FB_AMIGA_ECS
431 bool "Amiga ECS chipset support"
432 depends on FB_AMIGA
433 help
434 This enables support for the Enhanced Chip Set, found in later
435 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
436 you intend to run Linux on any of these systems, say Y; otherwise
437 say N.
438
439config FB_AMIGA_AGA
440 bool "Amiga AGA chipset support"
441 depends on FB_AMIGA
442 help
443 This enables support for the Advanced Graphics Architecture (also
444 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
445 and CD32. If you intend to run Linux on any of these systems, say Y;
446 otherwise say N.
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448config FB_FM2
449 bool "Amiga FrameMaster II/Rainbow II support"
450 depends on (FB = y) && ZORRO
451 select FB_CFB_FILLRECT
452 select FB_CFB_COPYAREA
453 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 help
455 This is the frame buffer device driver for the Amiga FrameMaster
456 card from BSC (exhibited 1992 but not shipped as a CBM product).
457
Jaya Kumar1154ea72005-06-21 17:17:04 -0700458config FB_ARC
459 tristate "Arc Monochrome LCD board support"
460 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700461 select FB_SYS_FILLRECT
462 select FB_SYS_COPYAREA
463 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700464 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700465 help
466 This enables support for the Arc Monochrome LCD board. The board
467 is based on the KS-108 lcd controller and is typically a matrix
468 of 2*n chips. This driver was tested with a 128x64 panel. This
469 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200470 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700471 this driver, say Y or M; otherwise say N. You must specify the
472 GPIO IO address to be used for setting control and data.
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474config FB_ATARI
475 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200476 depends on (FB = y) && ATARI
477 select FB_CFB_FILLRECT
478 select FB_CFB_COPYAREA
479 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 help
481 This is the frame buffer device driver for the builtin graphics
482 chipset found in Ataris.
483
484config FB_OF
485 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100486 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 select FB_CFB_FILLRECT
488 select FB_CFB_COPYAREA
489 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 select FB_MACMODES
491 help
492 Say Y if you want support with Open Firmware for your graphics
493 board.
494
495config FB_CONTROL
496 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700497 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 select FB_CFB_FILLRECT
499 select FB_CFB_COPYAREA
500 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 select FB_MACMODES
502 help
503 This driver supports a frame buffer for the graphics adapter in the
504 Power Macintosh 7300 and others.
505
506config FB_PLATINUM
507 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700508 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 select FB_CFB_FILLRECT
510 select FB_CFB_COPYAREA
511 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 select FB_MACMODES
513 help
514 This driver supports a frame buffer for the "platinum" graphics
515 adapter in some Power Macintoshes.
516
517config FB_VALKYRIE
518 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700519 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 select FB_CFB_FILLRECT
521 select FB_CFB_COPYAREA
522 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 select FB_MACMODES
524 help
525 This driver supports a frame buffer for the "valkyrie" graphics
526 adapter in some Power Macintoshes.
527
528config FB_CT65550
529 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800530 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 select FB_CFB_FILLRECT
532 select FB_CFB_COPYAREA
533 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 help
535 This is the frame buffer device driver for the Chips & Technologies
536 65550 graphics chip in PowerBooks.
537
538config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800539 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 depends on (FB = y) && PCI
541 select FB_CFB_FILLRECT
542 select FB_CFB_COPYAREA
543 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700544 help
545 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547config FB_IMSTT
548 bool "IMS Twin Turbo display support"
549 depends on (FB = y) && PCI
550 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 select FB_MACMODES if PPC
552 help
553 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
554 many Macintosh and compatible computers.
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556config FB_VGA16
557 tristate "VGA 16-color graphics support"
558 depends on FB && (X86 || PPC)
559 select FB_CFB_FILLRECT
560 select FB_CFB_COPYAREA
561 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700562 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700563 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 help
565 This is the frame buffer device driver for VGA 16 color graphic
566 cards. Say Y if you have such a card.
567
568 To compile this driver as a module, choose M here: the
569 module will be called vga16fb.
570
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700571config FB_BF54X_LQ043
572 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700573 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700574 select FB_CFB_FILLRECT
575 select FB_CFB_COPYAREA
576 select FB_CFB_IMAGEBLIT
577 help
578 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
579
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700580config FB_BFIN_T350MCQB
581 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
582 depends on FB && BLACKFIN
583 select BFIN_GPTIMERS
584 select FB_CFB_FILLRECT
585 select FB_CFB_COPYAREA
586 select FB_CFB_IMAGEBLIT
587 help
588 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
589 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
590 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
591
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800592config FB_BFIN_LQ035Q1
593 tristate "SHARP LQ035Q1DH02 TFT LCD"
594 depends on FB && BLACKFIN && SPI
595 select FB_CFB_FILLRECT
596 select FB_CFB_COPYAREA
597 select FB_CFB_IMAGEBLIT
598 select BFIN_GPTIMERS
599 help
600 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
601 the Blackfin Landscape LCD EZ-Extender Card.
602 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
603 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
604
605 To compile this driver as a module, choose M here: the
606 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700607
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000608config FB_BF537_LQ035
609 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
610 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
611 select FB_CFB_FILLRECT
612 select FB_CFB_COPYAREA
613 select FB_CFB_IMAGEBLIT
614 select BFIN_GPTIMERS
615 help
616 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
617 attached to a BF537.
618
619 To compile this driver as a module, choose M here: the
620 module will be called bf537-lq035.
621
Michael Hennerichcffd9342010-11-24 09:33:59 +0000622config FB_BFIN_7393
623 tristate "Blackfin ADV7393 Video encoder"
624 depends on FB && BLACKFIN
625 select I2C
626 select FB_CFB_FILLRECT
627 select FB_CFB_COPYAREA
628 select FB_CFB_IMAGEBLIT
629 help
630 This is the framebuffer device for a ADV7393 video encoder
631 attached to a Blackfin on the PPI port.
632 If your Blackfin board has a ADV7393 select Y.
633
634 To compile this driver as a module, choose M here: the
635 module will be called bfin_adv7393fb.
636
637choice
638 prompt "Video mode support"
639 depends on FB_BFIN_7393
640 default NTSC
641
642config NTSC
643 bool 'NTSC 720x480'
644
645config PAL
646 bool 'PAL 720x576'
647
648config NTSC_640x480
649 bool 'NTSC 640x480 (Experimental)'
650
651config PAL_640x480
652 bool 'PAL 640x480 (Experimental)'
653
654config NTSC_YCBCR
655 bool 'NTSC 720x480 YCbCR input'
656
657config PAL_YCBCR
658 bool 'PAL 720x576 YCbCR input'
659
660endchoice
661
662choice
663 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
664 depends on (FB_BFIN_7393)
665 default ADV7393_1XMEM
666
667config ADV7393_1XMEM
668 bool 'Single'
669
670config ADV7393_2XMEM
671 bool 'Double'
672endchoice
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674config FB_STI
675 tristate "HP STI frame buffer device support"
676 depends on FB && PARISC
677 select FB_CFB_FILLRECT
678 select FB_CFB_COPYAREA
679 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000680 select STI_CONSOLE
681 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 default y
683 ---help---
684 STI refers to the HP "Standard Text Interface" which is a set of
685 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
686 Enabling this option will implement the linux framebuffer device
687 using calls to the STI BIOS routines for initialisation.
688
689 If you enable this option, you will get a planar framebuffer device
690 /dev/fb which will work on the most common HP graphic cards of the
691 NGLE family, including the artist chips (in the 7xx and Bxxx series),
692 HCRX, HCRX24, CRX, CRX24 and VisEG series.
693
694 It is safe to enable this option, so you should probably say "Y".
695
696config FB_MAC
697 bool "Generic Macintosh display support"
698 depends on (FB = y) && MAC
699 select FB_CFB_FILLRECT
700 select FB_CFB_COPYAREA
701 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 select FB_MACMODES
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704config FB_HP300
705 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200706 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 default y
709
710config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700711 tristate "TGA/SFB+ framebuffer support"
712 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 select FB_CFB_FILLRECT
714 select FB_CFB_COPYAREA
715 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800716 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700717 ---help---
718 This is the frame buffer device driver for generic TGA and SFB+
719 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
720 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
721 TURBOchannel cards, also known as PMAGD-A, -B and -C.
722
723 Due to hardware limitations ZLX-E2 and E3 cards are not supported
724 for DECstation 5000/200 systems. Additionally due to firmware
725 limitations these cards may cause troubles with booting DECstation
726 5000/240 and /260 systems, but are fully supported under Linux if
727 you manage to get it going. ;-)
728
729 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700731config FB_UVESA
732 tristate "Userspace VESA VGA graphics support"
733 depends on FB && CONNECTOR
734 select FB_CFB_FILLRECT
735 select FB_CFB_COPYAREA
736 select FB_CFB_IMAGEBLIT
737 select FB_MODE_HELPERS
738 help
739 This is the frame buffer driver for generic VBE 2.0 compliant
740 graphic cards. It can also take advantage of VBE 3.0 features,
741 such as refresh rate adjustment.
742
743 This driver generally provides more features than vesafb but
744 requires a userspace helper application called 'v86d'. See
745 <file:Documentation/fb/uvesafb.txt> for more information.
746
747 If unsure, say N.
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749config FB_VESA
750 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800751 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 select FB_CFB_FILLRECT
753 select FB_CFB_COPYAREA
754 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700755 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 help
757 This is the frame buffer device driver for generic VESA 2.0
758 compliant graphic cards. The older VESA 1.2 cards are not supported.
759 You will get a boot time penguin logo at no additional cost. Please
760 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
761
Huang, Ying7c831722007-11-28 16:21:55 -0800762config FB_EFI
763 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700764 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700765 select FB_CFB_FILLRECT
766 select FB_CFB_COPYAREA
767 select FB_CFB_IMAGEBLIT
768 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700769 This is the EFI frame buffer device driver. If the firmware on
770 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
771 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700772
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700773config FB_N411
774 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700775 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700776 select FB_SYS_FILLRECT
777 select FB_SYS_COPYAREA
778 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700779 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700780 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700781 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700782 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700783 This enables support for the Apollo display controller in its
784 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786config FB_HGA
787 tristate "Hercules mono graphics support"
788 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 help
790 Say Y here if you have a Hercules mono graphics card.
791
792 To compile this driver as a module, choose M here: the
793 module will be called hgafb.
794
Brent Cook529ed802010-12-31 05:56:50 +0000795 As this card technology is at least 25 years old,
796 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798config FB_SGIVW
799 tristate "SGI Visual Workstation framebuffer support"
800 depends on FB && X86_VISWS
801 select FB_CFB_FILLRECT
802 select FB_CFB_COPYAREA
803 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 help
805 SGI Visual Workstation support for framebuffer graphics.
806
807config FB_GBE
808 bool "SGI Graphics Backend frame buffer support"
809 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
810 select FB_CFB_FILLRECT
811 select FB_CFB_COPYAREA
812 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 help
814 This is the frame buffer device driver for SGI Graphics Backend.
815 This chip is used in SGI O2 and Visual Workstation 320/540.
816
817config FB_GBE_MEM
818 int "Video memory size in MB"
819 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800820 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 help
822 This is the amount of memory reserved for the framebuffer,
823 which can be any value between 1MB and 8MB.
824
Mark Fortescue1a571982005-11-29 19:34:44 -0800825config FB_SBUS
826 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800827 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800828 help
829 Say Y if you want support for SBUS or UPA based frame buffer device.
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831config FB_BW2
832 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800833 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 select FB_CFB_FILLRECT
835 select FB_CFB_COPYAREA
836 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 help
838 This is the frame buffer device driver for the BWtwo frame buffer.
839
840config FB_CG3
841 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800842 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800843 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 select FB_CFB_COPYAREA
845 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 help
847 This is the frame buffer device driver for the CGthree frame buffer.
848
849config FB_CG6
850 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800851 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 select FB_CFB_COPYAREA
853 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 help
855 This is the frame buffer device driver for the CGsix (GX, TurboGX)
856 frame buffer.
857
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700858config FB_FFB
859 bool "Creator/Creator3D/Elite3D support"
860 depends on FB_SBUS && SPARC64
861 select FB_CFB_COPYAREA
862 select FB_CFB_IMAGEBLIT
863 help
864 This is the frame buffer device driver for the Creator, Creator3D,
865 and Elite3D graphics boards.
866
867config FB_TCX
868 bool "TCX (SS4/SS5 only) support"
869 depends on FB_SBUS
870 select FB_CFB_FILLRECT
871 select FB_CFB_COPYAREA
872 select FB_CFB_IMAGEBLIT
873 help
874 This is the frame buffer device driver for the TCX 24/8bit frame
875 buffer.
876
877config FB_CG14
878 bool "CGfourteen (SX) support"
879 depends on FB_SBUS
880 select FB_CFB_FILLRECT
881 select FB_CFB_COPYAREA
882 select FB_CFB_IMAGEBLIT
883 help
884 This is the frame buffer device driver for the CGfourteen frame
885 buffer on Desktop SPARCsystems with the SX graphics option.
886
887config FB_P9100
888 bool "P9100 (Sparcbook 3 only) support"
889 depends on FB_SBUS
890 select FB_CFB_FILLRECT
891 select FB_CFB_COPYAREA
892 select FB_CFB_IMAGEBLIT
893 help
894 This is the frame buffer device driver for the P9100 card
895 supported on Sparcbook 3 machines.
896
897config FB_LEO
898 bool "Leo (ZX) support"
899 depends on FB_SBUS
900 select FB_CFB_FILLRECT
901 select FB_CFB_COPYAREA
902 select FB_CFB_IMAGEBLIT
903 help
904 This is the frame buffer device driver for the SBUS-based Sun ZX
905 (leo) frame buffer cards.
906
907config FB_IGA
908 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700909 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700910 select FB_CFB_FILLRECT
911 select FB_CFB_COPYAREA
912 select FB_CFB_IMAGEBLIT
913 help
914 This is the framebuffer device for the INTERGRAPHICS 1680 and
915 successor frame buffer cards.
916
917config FB_XVR500
918 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700919 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700920 select FB_CFB_FILLRECT
921 select FB_CFB_COPYAREA
922 select FB_CFB_IMAGEBLIT
923 help
924 This is the framebuffer device for the Sun XVR-500 and similar
925 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200926 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700927 mostly initialized the card already. It is treated as a
928 completely dumb framebuffer device.
929
930config FB_XVR2500
931 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700932 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700933 select FB_CFB_FILLRECT
934 select FB_CFB_COPYAREA
935 select FB_CFB_IMAGEBLIT
936 help
937 This is the framebuffer device for the Sun XVR-2500 and similar
938 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200939 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700940 mostly initialized the card already. It is treated as a
941 completely dumb framebuffer device.
942
David S. Miller2d378b92010-03-13 16:25:03 -0800943config FB_XVR1000
944 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700945 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800946 select FB_CFB_FILLRECT
947 select FB_CFB_COPYAREA
948 select FB_CFB_IMAGEBLIT
949 help
950 This is the framebuffer device for the Sun XVR-1000 and similar
951 graphics cards. The driver only works on sparc64 systems where
952 the system firmware has mostly initialized the card already. It
953 is treated as a completely dumb framebuffer device.
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955config FB_PVR2
956 tristate "NEC PowerVR 2 display support"
957 depends on FB && SH_DREAMCAST
958 select FB_CFB_FILLRECT
959 select FB_CFB_COPYAREA
960 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 ---help---
962 Say Y here if you have a PowerVR 2 card in your box. If you plan to
963 run linux on your Dreamcast, you will have to say Y here.
964 This driver may or may not work on other PowerVR 2 cards, but is
965 totally untested. Use at your own risk. If unsure, say N.
966
967 To compile this driver as a module, choose M here: the
968 module will be called pvr2fb.
969
970 You can pass several parameters to the driver at boot time or at
971 module load time. The parameters look like "video=pvr2:XXX", where
972 the meaning of XXX can be found at the end of the main source file
973 (<file:drivers/video/pvr2fb.c>). Please see the file
974 <file:Documentation/fb/pvr2fb.txt>.
975
976config FB_EPSON1355
977 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700978 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 select FB_CFB_FILLRECT
980 select FB_CFB_COPYAREA
981 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 help
983 Build in support for the SED1355 Epson Research Embedded RAMDAC
984 LCD/CRT Controller (since redesignated as the S1D13505) as a
985 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200986 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Randy Dunlapecc41d52005-11-07 01:00:29 -0800988config FB_S1D13XXX
989 tristate "Epson S1D13XXX framebuffer support"
990 depends on FB
991 select FB_CFB_FILLRECT
992 select FB_CFB_COPYAREA
993 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800994 help
995 Support for S1D13XXX framebuffer device family (currently only
996 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200997 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800998
Nicolas Ferre14340582007-05-10 22:23:26 -0700999config FB_ATMEL
1000 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001001 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001002 select FB_CFB_FILLRECT
1003 select FB_CFB_COPYAREA
1004 select FB_CFB_IMAGEBLIT
1005 help
1006 This enables support for the AT91/AT32 LCD Controller.
1007
1008config FB_INTSRAM
1009 bool "Frame Buffer in internal SRAM"
1010 depends on FB_ATMEL && ARCH_AT91SAM9261
1011 help
1012 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1013 to let frame buffer in external SDRAM.
1014
Nicolas Ferre250a2692007-07-21 04:37:59 -07001015config FB_ATMEL_STN
1016 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001017 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001018 default n
1019 help
1020 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1021 Controller. Say N if you want to connect a TFT.
1022
1023 If unsure, say N.
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025config FB_NVIDIA
1026 tristate "nVidia Framebuffer Support"
1027 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001028 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 select FB_MODE_HELPERS
1030 select FB_CFB_FILLRECT
1031 select FB_CFB_COPYAREA
1032 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001033 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001034 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 help
1036 This driver supports graphics boards with the nVidia chips, TNT
1037 and newer. For very old chipsets, such as the RIVA128, then use
1038 the rivafb.
1039 Say Y if you have such a graphics board.
1040
1041 To compile this driver as a module, choose M here: the
1042 module will be called nvidiafb.
1043
1044config FB_NVIDIA_I2C
1045 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001046 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001047 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 help
1049 This enables I2C support for nVidia Chipsets. This is used
1050 only for getting EDID information from the attached display
1051 allowing for robust video mode handling and switching.
1052
1053 Because fbdev-2.6 requires that drivers must be able to
1054 independently validate video mode parameters, you should say Y
1055 here.
1056
Jean Delvare647f2e72007-05-10 22:23:29 -07001057config FB_NVIDIA_DEBUG
1058 bool "Lots of debug output"
1059 depends on FB_NVIDIA
1060 default n
1061 help
1062 Say Y here if you want the nVidia driver to output all sorts
1063 of debugging information to provide to the maintainer when
1064 something goes wrong.
1065
Michael Hanselmann5474c122006-06-25 05:47:08 -07001066config FB_NVIDIA_BACKLIGHT
1067 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001068 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001069 default y
1070 help
1071 Say Y here if you want to control the backlight of your display.
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073config FB_RIVA
1074 tristate "nVidia Riva support"
1075 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001076 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 select FB_MODE_HELPERS
1078 select FB_CFB_FILLRECT
1079 select FB_CFB_COPYAREA
1080 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001081 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001082 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 help
1084 This driver supports graphics boards with the nVidia Riva/Geforce
1085 chips.
1086 Say Y if you have such a graphics board.
1087
1088 To compile this driver as a module, choose M here: the
1089 module will be called rivafb.
1090
1091config FB_RIVA_I2C
1092 bool "Enable DDC Support"
1093 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001094 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 help
1096 This enables I2C support for nVidia Chipsets. This is used
1097 only for getting EDID information from the attached display
1098 allowing for robust video mode handling and switching.
1099
1100 Because fbdev-2.6 requires that drivers must be able to
1101 independently validate video mode parameters, you should say Y
1102 here.
1103
1104config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001105 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 depends on FB_RIVA
1107 default n
1108 help
1109 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001110 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 something goes wrong.
1112
Michael Hanselmann5474c122006-06-25 05:47:08 -07001113config FB_RIVA_BACKLIGHT
1114 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001115 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001116 default y
1117 help
1118 Say Y here if you want to control the backlight of your display.
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120config FB_I810
1121 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001122 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 select FB_MODE_HELPERS
1124 select FB_CFB_FILLRECT
1125 select FB_CFB_COPYAREA
1126 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001127 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 help
1129 This driver supports the on-board graphics built in to the Intel 810
1130 and 815 chipsets. Say Y if you have and plan to use such a board.
1131
1132 To compile this driver as a module, choose M here: the
1133 module will be called i810fb.
1134
1135 For more information, please read
1136 <file:Documentation/fb/intel810.txt>
1137
1138config FB_I810_GTF
1139 bool "use VESA Generalized Timing Formula"
1140 depends on FB_I810
1141 help
1142 If you say Y, then the VESA standard, Generalized Timing Formula
1143 or GTF, will be used to calculate the required video timing values
1144 per video mode. Since the GTF allows nondiscrete timings
1145 (nondiscrete being a range of values as opposed to discrete being a
1146 set of values), you'll be able to use any combination of horizontal
1147 and vertical resolutions, and vertical refresh rates without having
1148 to specify your own timing parameters. This is especially useful
1149 to maximize the performance of an aging display, or if you just
1150 have a display with nonstandard dimensions. A VESA compliant
1151 monitor is recommended, but can still work with non-compliant ones.
1152 If you need or want this, then select this option. The timings may
1153 not be compliant with Intel's recommended values. Use at your own
1154 risk.
1155
1156 If you say N, the driver will revert to discrete video timings
1157 using a set recommended by Intel in their documentation.
1158
1159 If unsure, say N.
1160
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001161config FB_I810_I2C
1162 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001163 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001164 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001165 help
1166
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001167config FB_LE80578
1168 tristate "Intel LE80578 (Vermilion) support"
1169 depends on FB && PCI && X86
1170 select FB_MODE_HELPERS
1171 select FB_CFB_FILLRECT
1172 select FB_CFB_COPYAREA
1173 select FB_CFB_IMAGEBLIT
1174 help
1175 This driver supports the LE80578 (Vermilion Range) chipset
1176
1177config FB_CARILLO_RANCH
1178 tristate "Intel Carillo Ranch support"
1179 depends on FB_LE80578 && FB && PCI && X86
1180 help
1181 This driver supports the LE80578 (Carillo Ranch) board
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001184 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001185 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 select FB_MODE_HELPERS
1187 select FB_CFB_FILLRECT
1188 select FB_CFB_COPYAREA
1189 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001190 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001191 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 help
1193 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001194 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 Say Y if you have and plan to use such a board.
1196
Krzysztof Helt4b198282009-06-18 16:49:21 -07001197 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1198
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001199 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 module will be called intelfb.
1201
Christian Merkled463d342006-08-22 10:07:01 +10001202 For more information, please read <file:Documentation/fb/intelfb.txt>
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001205 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 depends on FB_INTEL
1207 ---help---
1208 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001209 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 something goes wrong.
1211
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001212config FB_INTEL_I2C
1213 bool "DDC/I2C for Intel framebuffer support"
1214 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001215 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001216 default y
1217 help
1218 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1219
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220config FB_MATROX
1221 tristate "Matrox acceleration"
1222 depends on FB && PCI
1223 select FB_CFB_FILLRECT
1224 select FB_CFB_COPYAREA
1225 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 select FB_TILEBLITTING
1227 select FB_MACMODES if PPC_PMAC
1228 ---help---
1229 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1230 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1231 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1232 Matrox G400, G450 or G550 card in your box.
1233
1234 To compile this driver as a module, choose M here: the
1235 module will be called matroxfb.
1236
1237 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001238 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 are described in <file:Documentation/fb/matroxfb.txt>.
1240
1241config FB_MATROX_MILLENIUM
1242 bool "Millennium I/II support"
1243 depends on FB_MATROX
1244 help
1245 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1246 video card. If you select "Advanced lowlevel driver options" below,
1247 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1248 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1249 also use font widths different from 8.
1250
1251config FB_MATROX_MYSTIQUE
1252 bool "Mystique support"
1253 depends on FB_MATROX
1254 help
1255 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1256 video card. If you select "Advanced lowlevel driver options" below,
1257 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1258 packed pixel and 32 bpp packed pixel. You can also use font widths
1259 different from 8.
1260
1261config FB_MATROX_G
1262 bool "G100/G200/G400/G450/G550 support"
1263 depends on FB_MATROX
1264 ---help---
1265 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1266 video card. If you select "Advanced lowlevel driver options", you
1267 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1268 pixel and 32 bpp packed pixel. You can also use font widths
1269 different from 8.
1270
Jean Delvareee831262009-05-12 13:19:41 -07001271 If you need support for G400 secondary head, you must say Y to
1272 "Matrox I2C support" and "G400 second head support" right below.
1273 G450/G550 secondary head and digital output are supported without
1274 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 The driver starts in monitor mode. You must use the matroxset tool
1277 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1278 swap primary and secondary head outputs, or to change output mode.
1279 Secondary head driver always start in 640x480 resolution and you
1280 must use fbset to change it.
1281
1282 Do not forget that second head supports only 16 and 32 bpp
1283 packed pixels, so it is a good idea to compile them into the kernel
1284 too. You can use only some font widths, as the driver uses generic
1285 painting procedures (the secondary head does not use acceleration
1286 engine).
1287
1288 G450/G550 hardware can display TV picture only from secondary CRTC,
1289 and it performs no scaling, so picture must have 525 or 625 lines.
1290
1291config FB_MATROX_I2C
1292 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001293 depends on FB_MATROX
1294 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 ---help---
1296 This drivers creates I2C buses which are needed for accessing the
1297 DDC (I2C) bus present on all Matroxes, an I2C bus which
1298 interconnects Matrox optional devices, like MGA-TVO on G200 and
1299 G400, and the secondary head DDC bus, present on G400 only.
1300
1301 You can say Y or M here if you want to experiment with monitor
1302 detection code. You must say Y or M here if you want to use either
1303 second head of G400 or MGA-TVO on G200 or G400.
1304
1305 If you compile it as module, it will create a module named
1306 i2c-matroxfb.
1307
1308config FB_MATROX_MAVEN
1309 tristate "G400 second head support"
1310 depends on FB_MATROX_G && FB_MATROX_I2C
1311 ---help---
1312 WARNING !!! This support does not work with G450 !!!
1313
1314 Say Y or M here if you want to use a secondary head (meaning two
1315 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1316 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1317 secondary head output is blanked while you are in X. With XFree
1318 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1319 the fbdev driver on first head and the fbdev driver on second head.
1320
1321 If you compile it as module, two modules are created,
1322 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1323 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1324 also load i2c-matroxfb to get it to run.
1325
1326 The driver starts in monitor mode and you must use the matroxset
1327 tool (available at
1328 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1329 PAL or NTSC or to swap primary and secondary head outputs.
1330 Secondary head driver also always start in 640x480 resolution, you
1331 must use fbset to change it.
1332
1333 Also do not forget that second head supports only 16 and 32 bpp
1334 packed pixels, so it is a good idea to compile them into the kernel
1335 too. You can use only some font widths, as the driver uses generic
1336 painting procedures (the secondary head does not use acceleration
1337 engine).
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339config FB_RADEON
1340 tristate "ATI Radeon display support"
1341 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001342 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 select FB_MODE_HELPERS
1344 select FB_CFB_FILLRECT
1345 select FB_CFB_COPYAREA
1346 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 select FB_MACMODES if PPC_OF
1348 help
1349 Choose this option if you want to use an ATI Radeon graphics card as
1350 a framebuffer device. There are both PCI and AGP versions. You
1351 don't need to choose this to run the Radeon in plain VGA mode.
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001354 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356config FB_RADEON_I2C
1357 bool "DDC/I2C for ATI Radeon support"
1358 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001359 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 default y
1361 help
1362 Say Y here if you want DDC/I2C support for your Radeon board.
1363
Michael Hanselmann5474c122006-06-25 05:47:08 -07001364config FB_RADEON_BACKLIGHT
1365 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001366 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001367 default y
1368 help
1369 Say Y here if you want to control the backlight of your display.
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371config FB_RADEON_DEBUG
1372 bool "Lots of debug output from Radeon driver"
1373 depends on FB_RADEON
1374 default n
1375 help
1376 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001377 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 something goes wrong.
1379
1380config FB_ATY128
1381 tristate "ATI Rage128 display support"
1382 depends on FB && PCI
1383 select FB_CFB_FILLRECT
1384 select FB_CFB_COPYAREA
1385 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001386 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 select FB_MACMODES if PPC_PMAC
1388 help
1389 This driver supports graphics boards with the ATI Rage128 chips.
1390 Say Y if you have such a graphics board and read
1391 <file:Documentation/fb/aty128fb.txt>.
1392
1393 To compile this driver as a module, choose M here: the
1394 module will be called aty128fb.
1395
Michael Hanselmann5474c122006-06-25 05:47:08 -07001396config FB_ATY128_BACKLIGHT
1397 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001398 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001399 default y
1400 help
1401 Say Y here if you want to control the backlight of your display.
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403config FB_ATY
1404 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001405 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 select FB_CFB_FILLRECT
1407 select FB_CFB_COPYAREA
1408 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001409 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 select FB_MACMODES if PPC
1411 help
1412 This driver supports graphics boards with the ATI Mach64 chips.
1413 Say Y if you have such a graphics board.
1414
1415 To compile this driver as a module, choose M here: the
1416 module will be called atyfb.
1417
1418config FB_ATY_CT
1419 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1420 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001421 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 help
1423 Say Y here to support use of ATI's 64-bit Rage boards (or other
1424 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1425 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001426 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428config FB_ATY_GENERIC_LCD
1429 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1430 depends on FB_ATY_CT
1431 help
1432 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1433 Rage XC, or Rage XL chipset.
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435config FB_ATY_GX
1436 bool "Mach64 GX support" if PCI
1437 depends on FB_ATY
1438 default y if ATARI
1439 help
1440 Say Y here to support use of the ATI Mach64 Graphics Expression
1441 board (or other boards based on the Mach64 GX chipset) as a
1442 framebuffer device. The ATI product support page for these boards
1443 is at
1444 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1445
Michael Hanselmann5474c122006-06-25 05:47:08 -07001446config FB_ATY_BACKLIGHT
1447 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001448 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001449 default y
1450 help
1451 Say Y here if you want to control the backlight of your display.
1452
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001453config FB_S3
1454 tristate "S3 Trio/Virge support"
1455 depends on FB && PCI
1456 select FB_CFB_FILLRECT
1457 select FB_CFB_COPYAREA
1458 select FB_CFB_IMAGEBLIT
1459 select FB_TILEBLITTING
1460 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001461 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001462 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001463 ---help---
1464 Driver for graphics boards with S3 Trio / S3 Virge chip.
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466config FB_SAVAGE
1467 tristate "S3 Savage support"
1468 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 select FB_MODE_HELPERS
1470 select FB_CFB_FILLRECT
1471 select FB_CFB_COPYAREA
1472 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001473 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 help
1475 This driver supports notebooks and computers with S3 Savage PCI/AGP
1476 chips.
1477
1478 Say Y if you have such a graphics card.
1479
1480 To compile this driver as a module, choose M here; the module
1481 will be called savagefb.
1482
1483config FB_SAVAGE_I2C
1484 bool "Enable DDC2 Support"
1485 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001486 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 help
1488 This enables I2C support for S3 Savage Chipsets. This is used
1489 only for getting EDID information from the attached display
1490 allowing for robust video mode handling and switching.
1491
1492 Because fbdev-2.6 requires that drivers must be able to
1493 independently validate video mode parameters, you should say Y
1494 here.
1495
1496config FB_SAVAGE_ACCEL
1497 bool "Enable Console Acceleration"
1498 depends on FB_SAVAGE
1499 default n
1500 help
1501 This option will compile in console acceleration support. If
1502 the resulting framebuffer console has bothersome glitches, then
1503 choose N here.
1504
1505config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001506 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 depends on FB && PCI
1508 select FB_CFB_FILLRECT
1509 select FB_CFB_COPYAREA
1510 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001511 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001513 This is the frame buffer device driver for the SiS 300, 315, 330
1514 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1515 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 To compile this driver as a module, choose M here; the module
1518 will be called sisfb.
1519
1520config FB_SIS_300
1521 bool "SiS 300 series support"
1522 depends on FB_SIS
1523 help
1524 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1525
1526config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001527 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 depends on FB_SIS
1529 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001530 Say Y here to support use of the SiS 315, 330 and 340 series
1531 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1532 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001534config FB_VIA
1535 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001536 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001537 select FB_CFB_FILLRECT
1538 select FB_CFB_COPYAREA
1539 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001540 select I2C_ALGOBIT
1541 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001542 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001543 help
1544 This is the frame buffer device driver for Graphics chips of VIA
1545 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1546 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1547 /P4M900,VX800)
1548 Say Y if you have a VIA UniChrome graphics board.
1549
1550 To compile this driver as a module, choose M here: the
1551 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001552
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001553if FB_VIA
1554
1555config FB_VIA_DIRECT_PROCFS
1556 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1557 depends on FB_VIA
1558 default n
1559 help
1560 Allow direct hardware access to some output registers via procfs.
1561 This is dangerous but may provide the only chance to get the
1562 correct output device configuration.
1563 Its use is strongly discouraged.
1564
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001565config FB_VIA_X_COMPATIBILITY
1566 bool "X server compatibility"
1567 depends on FB_VIA
1568 default n
1569 help
1570 This option reduces the functionality (power saving, ...) of the
1571 framebuffer to avoid negative impact on the OpenChrome X server.
1572 If you use any X server other than fbdev you should enable this
1573 otherwise it should be safe to disable it and allow using all
1574 features.
1575
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001576endif
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578config FB_NEOMAGIC
1579 tristate "NeoMagic display support"
1580 depends on FB && PCI
1581 select FB_MODE_HELPERS
1582 select FB_CFB_FILLRECT
1583 select FB_CFB_COPYAREA
1584 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001585 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 help
1587 This driver supports notebooks with NeoMagic PCI chips.
1588 Say Y if you have such a graphics card.
1589
1590 To compile this driver as a module, choose M here: the
1591 module will be called neofb.
1592
1593config FB_KYRO
1594 tristate "IMG Kyro support"
1595 depends on FB && PCI
1596 select FB_CFB_FILLRECT
1597 select FB_CFB_COPYAREA
1598 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 help
1600 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1601 graphics board.
1602
1603 To compile this driver as a module, choose M here: the
1604 module will be called kyrofb.
1605
1606config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001607 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 depends on FB && PCI
1609 select FB_CFB_IMAGEBLIT
1610 select FB_CFB_FILLRECT
1611 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001612 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001614 This driver supports graphics boards with the 3Dfx Banshee,
1615 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1616 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 To compile this driver as a module, choose M here: the
1619 module will be called tdfxfb.
1620
1621config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001622 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 depends on FB_3DFX && EXPERIMENTAL
1624 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001625 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1626 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001628config FB_3DFX_I2C
1629 bool "Enable DDC/I2C support"
1630 depends on FB_3DFX && EXPERIMENTAL
1631 select FB_DDC
1632 default y
1633 help
1634 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636config FB_VOODOO1
1637 tristate "3Dfx Voodoo Graphics (sst1) support"
1638 depends on FB && PCI
1639 select FB_CFB_FILLRECT
1640 select FB_CFB_COPYAREA
1641 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 ---help---
1643 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1644 Voodoo2 (cvg) based graphics card.
1645
1646 To compile this driver as a module, choose M here: the
1647 module will be called sstfb.
1648
1649 WARNING: Do not use any application that uses the 3D engine
1650 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001651 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 options and other important info support.
1653
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001654config FB_VT8623
1655 tristate "VIA VT8623 support"
1656 depends on FB && PCI
1657 select FB_CFB_FILLRECT
1658 select FB_CFB_COPYAREA
1659 select FB_CFB_IMAGEBLIT
1660 select FB_TILEBLITTING
1661 select FB_SVGALIB
1662 select VGASTATE
1663 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1664 ---help---
1665 Driver for CastleRock integrated graphics core in the
1666 VIA VT8623 [Apollo CLE266] chipset.
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001669 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 depends on FB && PCI
1671 select FB_CFB_FILLRECT
1672 select FB_CFB_COPYAREA
1673 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001675 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1676 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1677 and Blade XP.
1678 There are also integrated versions of these chips called CyberXXXX,
1679 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001680 but also on some motherboards including early VIA EPIA motherboards.
1681 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 Say Y if you have such a graphics board.
1684
1685 To compile this driver as a module, choose M here: the
1686 module will be called tridentfb.
1687
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001688config FB_ARK
1689 tristate "ARK 2000PV support"
1690 depends on FB && PCI
1691 select FB_CFB_FILLRECT
1692 select FB_CFB_COPYAREA
1693 select FB_CFB_IMAGEBLIT
1694 select FB_TILEBLITTING
1695 select FB_SVGALIB
1696 select VGASTATE
1697 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1698 ---help---
1699 Driver for PCI graphics boards with ARK 2000PV chip
1700 and ICS 5342 RAMDAC.
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001703 tristate "Permedia3 support (EXPERIMENTAL)"
1704 depends on FB && PCI && EXPERIMENTAL
1705 select FB_CFB_FILLRECT
1706 select FB_CFB_COPYAREA
1707 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 help
1709 This is the frame buffer device driver for the 3DLabs Permedia3
1710 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1711 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1712 and maybe other boards.
1713
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001714config FB_CARMINE
1715 tristate "Fujitsu carmine frame buffer support"
1716 depends on FB && PCI
1717 select FB_CFB_FILLRECT
1718 select FB_CFB_COPYAREA
1719 select FB_CFB_IMAGEBLIT
1720 help
1721 This is the frame buffer device driver for the Fujitsu Carmine chip.
1722 The driver provides two independent frame buffer devices.
1723
1724choice
1725 depends on FB_CARMINE
1726 prompt "DRAM timing"
1727 default FB_CARMINE_DRAM_EVAL
1728
1729config FB_CARMINE_DRAM_EVAL
1730 bool "Eval board timings"
1731 help
1732 Use timings which work on the eval card.
1733
1734config CARMINE_DRAM_CUSTOM
1735 bool "Custom board timings"
1736 help
1737 Use custom board timings.
1738endchoice
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740config FB_AU1100
1741 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001742 depends on (FB = y) && MIPS && SOC_AU1100
1743 select FB_CFB_FILLRECT
1744 select FB_CFB_COPYAREA
1745 select FB_CFB_IMAGEBLIT
1746 help
1747 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1748 various panels and CRTs by passing in kernel cmd line option
1749 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001751config FB_AU1200
1752 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001753 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001754 select FB_CFB_FILLRECT
1755 select FB_CFB_COPYAREA
1756 select FB_CFB_IMAGEBLIT
1757 help
1758 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1759 various panels and CRTs by passing in kernel cmd line option
1760 au1200fb:panel=<name>.
1761
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001762config FB_VT8500
1763 bool "VT8500 LCD Driver"
1764 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1765 select FB_WMT_GE_ROPS
1766 select FB_SYS_IMAGEBLIT
1767 help
1768 This is the framebuffer driver for VIA VT8500 integrated LCD
1769 controller.
1770
1771config FB_WM8505
1772 bool "WM8505 frame buffer support"
1773 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1774 select FB_WMT_GE_ROPS
1775 select FB_SYS_IMAGEBLIT
1776 help
1777 This is the framebuffer driver for WonderMedia WM8505
1778 integrated LCD controller.
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780source "drivers/video/geode/Kconfig"
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782config FB_HIT
1783 tristate "HD64461 Frame Buffer support"
1784 depends on FB && HD64461
1785 select FB_CFB_FILLRECT
1786 select FB_CFB_COPYAREA
1787 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 help
1789 This is the frame buffer device driver for the Hitachi HD64461 LCD
1790 frame buffer card.
1791
1792config FB_PMAG_AA
1793 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001794 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 select FB_CFB_FILLRECT
1796 select FB_CFB_COPYAREA
1797 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 help
1799 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1800 used mainly in the MIPS-based DECstation series.
1801
1802config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001803 tristate "PMAG-BA TURBOchannel framebuffer support"
1804 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 select FB_CFB_FILLRECT
1806 select FB_CFB_COPYAREA
1807 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 help
1809 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1810 used mainly in the MIPS-based DECstation series.
1811
1812config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001813 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001814 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 select FB_CFB_FILLRECT
1816 select FB_CFB_COPYAREA
1817 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 help
1819 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1820 in the MIPS-based DECstation series. The card is currently only
1821 supported in 1280x1024x8 mode.
1822
1823config FB_MAXINE
1824 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001825 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 select FB_CFB_FILLRECT
1827 select FB_CFB_COPYAREA
1828 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 help
1830 Support for the onboard framebuffer (1024x768x8) in the Personal
1831 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1832 Codename "Maxine").
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001835 bool "G364 frame buffer support"
1836 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 select FB_CFB_FILLRECT
1838 select FB_CFB_COPYAREA
1839 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 help
1841 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1842 Olivetti M700-10 systems.
1843
1844config FB_68328
1845 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001846 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 select FB_CFB_FILLRECT
1848 select FB_CFB_COPYAREA
1849 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 help
1851 Say Y here if you want to support the built-in frame buffer of
1852 the Motorola 68328 CPU family.
1853
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001854config FB_PXA168
1855 tristate "PXA168/910 LCD framebuffer support"
1856 depends on FB && (CPU_PXA168 || CPU_PXA910)
1857 select FB_CFB_FILLRECT
1858 select FB_CFB_COPYAREA
1859 select FB_CFB_IMAGEBLIT
1860 ---help---
1861 Frame buffer driver for the built-in LCD controller in the Marvell
1862 MMP processor.
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864config FB_PXA
1865 tristate "PXA LCD framebuffer support"
1866 depends on FB && ARCH_PXA
1867 select FB_CFB_FILLRECT
1868 select FB_CFB_COPYAREA
1869 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 ---help---
1871 Frame buffer driver for the built-in LCD controller in the Intel
1872 PXA2x0 processor.
1873
1874 This driver is also available as a module ( = code which can be
1875 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001876 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001877 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 If unsure, say N.
1880
Eric Miao198fc102008-12-23 17:49:43 +08001881config FB_PXA_OVERLAY
1882 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1883 default n
1884 depends on FB_PXA && (PXA27x || PXA3xx)
1885
Eric Miao3c42a442008-04-30 00:52:26 -07001886config FB_PXA_SMARTPANEL
1887 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001888 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001889 depends on FB_PXA
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891config FB_PXA_PARAMETERS
1892 bool "PXA LCD command line parameters"
1893 default n
1894 depends on FB_PXA
1895 ---help---
1896 Enable the use of kernel command line or module parameters
1897 to configure the physical properties of the LCD panel when
1898 using the PXA LCD driver.
1899
1900 This option allows you to override the panel parameters
1901 supplied by the platform in order to support multiple
1902 different models of flatpanel. If you will only be using a
1903 single model of flatpanel then you can safely leave this
1904 option disabled.
1905
1906 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1907
Daniel Mack364dbdf2010-11-04 14:44:00 -04001908config PXA3XX_GCU
1909 tristate "PXA3xx 2D graphics accelerator driver"
1910 depends on FB_PXA
1911 help
1912 Kernelspace driver for the 2D graphics controller unit (GCU)
1913 found on PXA3xx processors. There is a counterpart driver in the
1914 DirectFB suite, see http://www.directfb.org/
1915
1916 If you compile this as a module, it will be called pxa3xx_gcu.
1917
Mike Rapoport22caf042006-07-14 00:24:34 -07001918config FB_MBX
1919 tristate "2700G LCD framebuffer support"
1920 depends on FB && ARCH_PXA
1921 select FB_CFB_FILLRECT
1922 select FB_CFB_COPYAREA
1923 select FB_CFB_IMAGEBLIT
1924 ---help---
1925 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1926 Accelerator
1927
1928config FB_MBX_DEBUG
1929 bool "Enable debugging info via debugfs"
1930 depends on FB_MBX && DEBUG_FS
1931 default n
1932 ---help---
1933 Enable this if you want debugging information using the debug
1934 filesystem (debugfs)
1935
1936 If unsure, say N.
1937
York Sun9b53a9e2008-04-28 02:15:34 -07001938config FB_FSL_DIU
1939 tristate "Freescale DIU framebuffer support"
1940 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001941 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001942 select FB_CFB_FILLRECT
1943 select FB_CFB_COPYAREA
1944 select FB_CFB_IMAGEBLIT
1945 select PPC_LIB_RHEAP
1946 ---help---
1947 Framebuffer driver for the Freescale SoC DIU
1948
Randy Dunlapecc41d52005-11-07 01:00:29 -08001949config FB_W100
1950 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001951 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001952 select FB_CFB_FILLRECT
1953 select FB_CFB_COPYAREA
1954 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001955 ---help---
1956 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001957 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001958
1959 This driver is also available as a module ( = code which can be
1960 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001961 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001962 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001963
1964 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001966config FB_SH_MOBILE_LCDC
1967 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001968 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001969 select FB_SYS_FILLRECT
1970 select FB_SYS_COPYAREA
1971 select FB_SYS_IMAGEBLIT
1972 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09001973 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001974 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001975 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001976 ---help---
1977 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1978
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001979config FB_SH_MOBILE_HDMI
1980 tristate "SuperH Mobile HDMI controller support"
1981 depends on FB_SH_MOBILE_LCDC
1982 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02001983 select SOUND
1984 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09001985 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001986 ---help---
1987 Driver for the on-chip SH-Mobile HDMI controller.
1988
Damian7caa4342011-05-18 11:10:07 +00001989config FB_SH_MOBILE_MERAM
1990 tristate "SuperH Mobile MERAM read ahead support for LCDC"
1991 depends on FB_SH_MOBILE_LCDC
1992 default y
1993 ---help---
1994 Enable MERAM support for the SH-Mobile LCD controller.
1995
1996 This will allow for caching of the framebuffer to provide more
1997 reliable access under heavy main memory bus traffic situations.
1998 Up to 4 memory channels can be configured, allowing 4 RGB or
1999 2 YCbCr framebuffers to be configured.
2000
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002001config FB_TMIO
2002 tristate "Toshiba Mobile IO FrameBuffer support"
2003 depends on FB && MFD_CORE
2004 select FB_CFB_FILLRECT
2005 select FB_CFB_COPYAREA
2006 select FB_CFB_IMAGEBLIT
2007 ---help---
2008 Frame buffer driver for the Toshiba Mobile IO integrated as found
2009 on the Sharp SL-6000 series
2010
2011 This driver is also available as a module ( = code which can be
2012 inserted and removed from the running kernel whenever you want). The
2013 module will be called tmiofb. If you want to compile it as a module,
2014 say M here and read <file:Documentation/kbuild/modules.txt>.
2015
2016 If unsure, say N.
2017
2018config FB_TMIO_ACCELL
2019 bool "tmiofb acceleration"
2020 depends on FB_TMIO
2021 default y
2022
Ben Dooksec549a02009-03-31 15:25:39 -07002023config FB_S3C
2024 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002025 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002026 select FB_CFB_FILLRECT
2027 select FB_CFB_COPYAREA
2028 select FB_CFB_IMAGEBLIT
2029 ---help---
2030 Frame buffer driver for the built-in FB controller in the Samsung
2031 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2032 and the S3C64XX series such as the S3C6400 and S3C6410.
2033
2034 These chips all have the same basic framebuffer design with the
2035 actual capabilities depending on the chip. For instance the S3C6400
2036 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2037 currently only have two.
2038
2039 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2040
2041config FB_S3C_DEBUG_REGWRITE
2042 bool "Debug register writes"
2043 depends on FB_S3C
2044 ---help---
2045 Show all register writes via printk(KERN_DEBUG)
2046
Arnaud Patard20fd5762005-09-09 13:10:07 -07002047config FB_S3C2410
2048 tristate "S3C2410 LCD framebuffer support"
2049 depends on FB && ARCH_S3C2410
2050 select FB_CFB_FILLRECT
2051 select FB_CFB_COPYAREA
2052 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002053 ---help---
2054 Frame buffer driver for the built-in LCD controller in the Samsung
2055 S3C2410 processor.
2056
2057 This driver is also available as a module ( = code which can be
2058 inserted and removed from the running kernel whenever you want). The
2059 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002060 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002061
2062 If unsure, say N.
2063config FB_S3C2410_DEBUG
2064 bool "S3C2410 lcd debug messages"
2065 depends on FB_S3C2410
2066 help
2067 Turn on debugging messages. Note that you can set/unset at run time
2068 through sysfs
2069
Wang Qiang86619702010-03-10 15:21:47 -08002070config FB_NUC900
2071 bool "NUC900 LCD framebuffer support"
2072 depends on FB && ARCH_W90X900
2073 select FB_CFB_FILLRECT
2074 select FB_CFB_COPYAREA
2075 select FB_CFB_IMAGEBLIT
2076 ---help---
2077 Frame buffer driver for the built-in LCD controller in the Nuvoton
2078 NUC900 processor
2079
2080config GPM1040A0_320X240
2081 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2082 depends on FB_NUC900
2083
2084config FB_NUC900_DEBUG
2085 bool "NUC900 lcd debug messages"
2086 depends on FB_NUC900
2087 help
2088 Turn on debugging messages. Note that you can set/unset at run time
2089 through sysfs
2090
Ben Dooks5fc404e2007-02-20 13:58:21 -08002091config FB_SM501
2092 tristate "Silicon Motion SM501 framebuffer support"
2093 depends on FB && MFD_SM501
2094 select FB_CFB_FILLRECT
2095 select FB_CFB_COPYAREA
2096 select FB_CFB_IMAGEBLIT
2097 ---help---
2098 Frame buffer driver for the CRT and LCD controllers in the Silicon
2099 Motion SM501.
2100
2101 This driver is also available as a module ( = code which can be
2102 inserted and removed from the running kernel whenever you want). The
2103 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002104 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002105
2106 If unsure, say N.
2107
Paul Mundt96f8d862010-11-16 14:00:24 +09002108config FB_UDL
2109 tristate "Displaylink USB Framebuffer support"
2110 depends on FB && USB
2111 select FB_MODE_HELPERS
2112 select FB_SYS_FILLRECT
2113 select FB_SYS_COPYAREA
2114 select FB_SYS_IMAGEBLIT
2115 select FB_SYS_FOPS
2116 select FB_DEFERRED_IO
2117 ---help---
2118 This is a kernel framebuffer driver for DisplayLink USB devices.
2119 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2120 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2121 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002122
Vitaly Wool36c93662006-07-03 00:24:19 -07002123config FB_PNX4008_DUM
2124 tristate "Display Update Module support on Philips PNX4008 board"
2125 depends on FB && ARCH_PNX4008
2126 ---help---
2127 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2128
2129config FB_PNX4008_DUM_RGB
2130 tristate "RGB Framebuffer support on Philips PNX4008 board"
2131 depends on FB_PNX4008_DUM
2132 select FB_CFB_FILLRECT
2133 select FB_CFB_COPYAREA
2134 select FB_CFB_IMAGEBLIT
2135 ---help---
2136 Say Y here to enable support for PNX4008 RGB Framebuffer
2137
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002138config FB_IBM_GXT4500
2139 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002140 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002141 select FB_CFB_FILLRECT
2142 select FB_CFB_COPYAREA
2143 select FB_CFB_IMAGEBLIT
2144 ---help---
2145 Say Y here to enable support for the IBM GXT4500P display
2146 adaptor, found on some IBM System P (pSeries) machines.
2147
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002148config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002149 tristate "PS3 GPU framebuffer driver"
2150 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002151 select FB_SYS_FILLRECT
2152 select FB_SYS_COPYAREA
2153 select FB_SYS_IMAGEBLIT
2154 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002155 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002156 ---help---
2157 Include support for the virtual frame buffer in the PS3 platform.
2158
2159config FB_PS3_DEFAULT_SIZE_M
2160 int "PS3 default frame buffer size (in MiB)"
2161 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002162 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002163 ---help---
2164 This is the default size (in MiB) of the virtual frame buffer in
2165 the PS3.
2166 The default value can be overridden on the kernel command line
2167 using the "ps3fb" option (e.g. "ps3fb=9M");
2168
Andrei Konovalov147394c2007-05-08 00:40:18 -07002169config FB_XILINX
2170 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002171 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002172 select FB_CFB_FILLRECT
2173 select FB_CFB_COPYAREA
2174 select FB_CFB_IMAGEBLIT
2175 ---help---
2176 Include support for the Xilinx ML300/ML403 reference design
2177 framebuffer. ML300 carries a 640*480 LCD display on the board,
2178 ML403 uses a standard DB15 VGA connector.
2179
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002180config FB_COBALT
2181 tristate "Cobalt server LCD frame buffer support"
2182 depends on FB && MIPS_COBALT
2183
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002184config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002185 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2186 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2187 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2188 select FB_CFB_FILLRECT
2189 select FB_CFB_COPYAREA
2190 select FB_CFB_IMAGEBLIT
2191 ---help---
2192 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2193 (D)STN/TFT LCD Controller.
2194 Supports display resolutions up to 1024x1024 pixel, grayscale and
2195 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2196 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2197 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002198
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002199config FB_DA8XX
2200 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2201 depends on FB && ARCH_DAVINCI_DA8XX
2202 select FB_CFB_FILLRECT
2203 select FB_CFB_COPYAREA
2204 select FB_CFB_IMAGEBLIT
2205 ---help---
2206 This is the frame buffer device driver for the TI LCD controller
2207 found on DA8xx/OMAP-L1xx SoCs.
2208 If unsure, say N.
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210config FB_VIRTUAL
2211 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2212 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002213 select FB_SYS_FILLRECT
2214 select FB_SYS_COPYAREA
2215 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002216 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 ---help---
2218 This is a `virtual' frame buffer device. It operates on a chunk of
2219 unswappable kernel memory instead of on the memory of a graphics
2220 board. This means you cannot see any output sent to this frame
2221 buffer device, while it does consume precious memory. The main use
2222 of this frame buffer device is testing and debugging the frame
2223 buffer subsystem. Do NOT enable it for normal systems! To protect
2224 the innocent, it has to be enabled explicitly at boot time using the
2225 kernel option `video=vfb:'.
2226
2227 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002228 module will be called vfb. In order to load it, you must use
2229 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002232
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002233config XEN_FBDEV_FRONTEND
2234 tristate "Xen virtual frame buffer support"
2235 depends on FB && XEN
2236 select FB_SYS_FILLRECT
2237 select FB_SYS_COPYAREA
2238 select FB_SYS_IMAGEBLIT
2239 select FB_SYS_FOPS
2240 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002241 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002242 default y
2243 help
2244 This driver implements the front-end of the Xen virtual
2245 frame buffer driver. It communicates with a back-end
2246 in another domain.
2247
Jaya Kumare9355082008-08-19 11:17:55 +01002248config FB_METRONOME
2249 tristate "E-Ink Metronome/8track controller support"
2250 depends on FB
2251 select FB_SYS_FILLRECT
2252 select FB_SYS_COPYAREA
2253 select FB_SYS_IMAGEBLIT
2254 select FB_SYS_FOPS
2255 select FB_DEFERRED_IO
2256 help
2257 This driver implements support for the E-Ink Metronome
2258 controller. The pre-release name for this device was 8track
2259 and could also have been called by some vendors as PVI-nnnn.
2260
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002261config FB_MB862XX
2262 tristate "Fujitsu MB862xx GDC support"
2263 depends on FB
2264 select FB_CFB_FILLRECT
2265 select FB_CFB_COPYAREA
2266 select FB_CFB_IMAGEBLIT
2267 ---help---
2268 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2269
2270config FB_MB862XX_PCI_GDC
2271 bool "Carmine/Coral-P(A) GDC"
2272 depends on PCI && FB_MB862XX
2273 ---help---
2274 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2275 PCI graphics controller devices.
2276
2277config FB_MB862XX_LIME
2278 bool "Lime GDC"
2279 depends on FB_MB862XX
2280 depends on OF && !FB_MB862XX_PCI_GDC
Julian Calaby336e7472009-06-16 15:34:29 -07002281 depends on PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002282 select FB_FOREIGN_ENDIAN
2283 select FB_LITTLE_ENDIAN
2284 ---help---
2285 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2286
Ryan Mallon88017bd2009-09-22 16:47:09 -07002287config FB_EP93XX
2288 tristate "EP93XX frame buffer support"
2289 depends on FB && ARCH_EP93XX
2290 select FB_CFB_FILLRECT
2291 select FB_CFB_COPYAREA
2292 select FB_CFB_IMAGEBLIT
2293 ---help---
2294 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2295 This driver is also available as a module. The module will be called
2296 ep93xx-fb.
2297
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002298config FB_PRE_INIT_FB
2299 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002300 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002301 ---help---
2302 Select this option if display contents should be inherited as set by
2303 the bootloader.
2304
Pavel Machekd480ace2009-09-22 16:47:03 -07002305config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002306 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002307 depends on FB && ARCH_MSM
2308 select FB_CFB_FILLRECT
2309 select FB_CFB_COPYAREA
2310 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002311
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002312config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002313 tristate "MX3 Framebuffer support"
2314 depends on FB && MX3_IPU
2315 select FB_CFB_FILLRECT
2316 select FB_CFB_COPYAREA
2317 select FB_CFB_IMAGEBLIT
2318 default y
2319 help
2320 This is a framebuffer device for the i.MX31 LCD Controller. So
2321 far only synchronous displays are supported. If you plan to use
2322 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002323
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002324config FB_BROADSHEET
2325 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2326 depends on FB
2327 select FB_SYS_FILLRECT
2328 select FB_SYS_COPYAREA
2329 select FB_SYS_IMAGEBLIT
2330 select FB_SYS_FOPS
2331 select FB_DEFERRED_IO
2332 help
2333 This driver implements support for the E-Ink Broadsheet
2334 controller. The release name for this device was Epson S1D13521
2335 and could also have been called by other names when coupled with
2336 a bridge adapter.
2337
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002338config FB_JZ4740
2339 tristate "JZ4740 LCD framebuffer support"
2340 depends on FB && MACH_JZ4740
2341 select FB_SYS_FILLRECT
2342 select FB_SYS_COPYAREA
2343 select FB_SYS_IMAGEBLIT
2344 help
2345 Framebuffer support for the JZ4740 SoC.
2346
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002347config FB_MXS
2348 tristate "MXS LCD framebuffer support"
2349 depends on FB && ARCH_MXS
2350 select FB_CFB_FILLRECT
2351 select FB_CFB_COPYAREA
2352 select FB_CFB_IMAGEBLIT
2353 help
2354 Framebuffer support for the MXS SoC.
2355
GuanXuetaoce443ab2011-02-26 21:39:10 +08002356config FB_PUV3_UNIGFX
2357 tristate "PKUnity v3 Unigfx framebuffer support"
2358 depends on FB && UNICORE32 && ARCH_PUV3
2359 select FB_SYS_FILLRECT
2360 select FB_SYS_COPYAREA
2361 select FB_SYS_IMAGEBLIT
2362 select FB_SYS_FOPS
2363 help
2364 Choose this option if you want to use the Unigfx device as a
2365 framebuffer device. Without the support of PCI & AGP.
2366
Randy Dunlapf08f3892007-10-29 14:37:16 -07002367source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002368source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002369
Randy Dunlap179b0252007-10-16 01:29:39 -07002370source "drivers/video/backlight/Kconfig"
2371source "drivers/video/display/Kconfig"
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373if VT
2374 source "drivers/video/console/Kconfig"
2375endif
2376
2377if FB || SGI_NEWPORT_CONSOLE
2378 source "drivers/video/logo/Kconfig"
2379endif
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381endmenu