blob: a564a032499e587e021319420853eaf29cbf8718 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Nicolas Ferre0912e532009-06-23 16:30:56 +02008config HAVE_FB_ATMEL
9 bool
10
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000011config SH_MIPI_DSI
12 tristate
13 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
14
15config SH_LCD_MIPI_DSI
16 bool
17
Randy Dunlap179b0252007-10-16 01:29:39 -070018source "drivers/char/agp/Kconfig"
19
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100020source "drivers/gpu/vga/Kconfig"
21
Dave Airliec0e09202008-05-29 10:09:59 +100022source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070023
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080024source "drivers/gpu/stub/Kconfig"
25
Rebecca Schultz Zavinc80005a2011-06-29 19:44:29 -070026source "drivers/gpu/ion/Kconfig"
27
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070028source "drivers/gpu/msm/Kconfig"
29
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070030config VGASTATE
31 tristate
32 default n
33
Luming Yu23b0f012007-05-09 21:07:05 +080034config VIDEO_OUTPUT_CONTROL
35 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080036 help
37 This framework adds support for low-level control of the video
38 output switch.
39
Randy Dunlap179b0252007-10-16 01:29:39 -070040menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 tristate "Support for frame buffer devices"
42 ---help---
43 The frame buffer device provides an abstraction for the graphics
44 hardware. It represents the frame buffer of some video hardware and
45 allows application software to access the graphics hardware through
46 a well-defined interface, so the software doesn't need to know
47 anything about the low-level (hardware register) stuff.
48
49 Frame buffer devices work identically across the different
50 architectures supported by Linux and make the implementation of
51 application programs easier and more portable; at this point, an X
52 server exists which uses the frame buffer device exclusively.
53 On several non-X86 architectures, the frame buffer device is the
54 only way to use the graphics hardware.
55
56 The device is accessed through special device nodes, usually located
57 in the /dev directory, i.e. /dev/fb*.
58
59 You need an utility program called fbset to make full use of frame
60 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
61 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020062 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 information.
64
65 Say Y here and to the driver for your graphics board below if you
66 are compiling a kernel for a non-x86 architecture.
67
68 If you are compiling for the x86 architecture, you can say Y if you
69 want to play with it, but it is not essential. Please note that
70 running graphical applications that directly touch the hardware
71 (e.g. an accelerated X server) and that are not frame buffer
72 device-aware may cause unexpected results. If unsure, say N.
73
James Simmonse0e34ef2007-02-10 14:15:43 +000074config FIRMWARE_EDID
75 bool "Enable firmware EDID"
76 depends on FB
77 default n
78 ---help---
79 This enables access to the EDID transferred from the firmware.
80 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
81 transfers do not work for your driver and if you are using
82 nvidiafb, i810fb or savagefb.
83
84 In general, choosing Y for this option is safe. If you
85 experience extremely long delays while booting before you get
86 something on your display, try setting this to N. Matrox cards in
87 combination with certain motherboards and monitors are known to
88 suffer from this problem.
89
Dennis Munsiefc5891c2006-10-03 01:14:42 -070090config FB_DDC
91 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000092 depends on FB
93 select I2C_ALGOBIT
94 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070095 default n
96
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070097config FB_BOOT_VESA_SUPPORT
98 bool
99 depends on FB
100 default n
101 ---help---
102 If true, at least one selected framebuffer driver can take advantage
103 of VESA video modes set at an early boot stage via the vga= parameter.
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105config FB_CFB_FILLRECT
106 tristate
107 depends on FB
108 default n
109 ---help---
110 Include the cfb_fillrect function for generic software rectangle
111 filling. This is used by drivers that don't provide their own
112 (accelerated) version.
113
114config FB_CFB_COPYAREA
115 tristate
116 depends on FB
117 default n
118 ---help---
119 Include the cfb_copyarea function for generic software area copying.
120 This is used by drivers that don't provide their own (accelerated)
121 version.
122
123config FB_CFB_IMAGEBLIT
124 tristate
125 depends on FB
126 default n
127 ---help---
128 Include the cfb_imageblit function for generic software image
129 blitting. This is used by drivers that don't provide their own
130 (accelerated) version.
131
Pavel Pisa779121e2007-10-16 01:29:21 -0700132config FB_CFB_REV_PIXELS_IN_BYTE
133 bool
134 depends on FB
135 default n
136 ---help---
137 Allow generic frame-buffer functions to work on displays with 1, 2
138 and 4 bits per pixel depths which has opposite order of pixels in
139 byte order to bytes in long order.
140
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700141config FB_SYS_FILLRECT
142 tristate
143 depends on FB
144 default n
145 ---help---
146 Include the sys_fillrect function for generic software rectangle
147 filling. This is used by drivers that don't provide their own
148 (accelerated) version and the framebuffer is in system RAM.
149
150config FB_SYS_COPYAREA
151 tristate
152 depends on FB
153 default n
154 ---help---
155 Include the sys_copyarea function for generic software area copying.
156 This is used by drivers that don't provide their own (accelerated)
157 version and the framebuffer is in system RAM.
158
159config FB_SYS_IMAGEBLIT
160 tristate
161 depends on FB
162 default n
163 ---help---
164 Include the sys_imageblit function for generic software image
165 blitting. This is used by drivers that don't provide their own
166 (accelerated) version and the framebuffer is in system RAM.
167
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700168menuconfig FB_FOREIGN_ENDIAN
169 bool "Framebuffer foreign endianness support"
170 depends on FB
171 ---help---
172 This menu will let you enable support for the framebuffers with
173 non-native endianness (e.g. Little-Endian framebuffer on a
174 Big-Endian machine). Most probably you don't have such hardware,
175 so it's safe to say "n" here.
176
177choice
178 prompt "Choice endianness support"
179 depends on FB_FOREIGN_ENDIAN
180
181config FB_BOTH_ENDIAN
182 bool "Support for Big- and Little-Endian framebuffers"
183
184config FB_BIG_ENDIAN
185 bool "Support for Big-Endian framebuffers only"
186
187config FB_LITTLE_ENDIAN
188 bool "Support for Little-Endian framebuffers only"
189
190endchoice
191
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700192config FB_SYS_FOPS
193 tristate
194 depends on FB
195 default n
196
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300197config FB_WMT_GE_ROPS
198 tristate
199 depends on FB
200 default n
201 ---help---
202 Include functions for accelerated rectangle filling and area
203 copying using WonderMedia Graphics Engine operations.
204
Jaya Kumar60b59be2007-05-08 00:37:37 -0700205config FB_DEFERRED_IO
206 bool
207 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700208
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700209config FB_HECUBA
210 tristate
211 depends on FB
212 depends on FB_DEFERRED_IO
213
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800214config FB_SVGALIB
215 tristate
216 depends on FB
217 default n
218 ---help---
219 Common utility functions useful to fbdev drivers of VGA-based
220 cards.
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222config FB_MACMODES
223 tristate
224 depends on FB
225 default n
226
Michael Hanselmann5474c122006-06-25 05:47:08 -0700227config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700228 bool
229 depends on FB
230 select BACKLIGHT_LCD_SUPPORT
231 select BACKLIGHT_CLASS_DEVICE
232 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234config FB_MODE_HELPERS
235 bool "Enable Video Mode Handling Helpers"
236 depends on FB
237 default n
238 ---help---
239 This enables functions for handling video modes using the
240 Generalized Timing Formula and the EDID parser. A few drivers rely
241 on this feature such as the radeonfb, rivafb, and the i810fb. If
242 your driver does not take advantage of this feature, choosing Y will
243 just increase the kernel size by about 5K.
244
245config FB_TILEBLITTING
246 bool "Enable Tile Blitting Support"
247 depends on FB
248 default n
249 ---help---
250 This enables tile blitting. Tile blitting is a drawing technique
251 where the screen is divided into rectangular sections (tiles), whereas
252 the standard blitting divides the screen into pixels. Because the
253 default drawing element is a tile, drawing functions will be passed
254 parameters in terms of number of tiles instead of number of pixels.
255 For example, to draw a single character, instead of using bitmaps,
256 an index to an array of bitmaps will be used. To clear or move a
257 rectangular section of a screen, the rectangle will be described in
258 terms of number of tiles in the x- and y-axis.
259
260 This is particularly important to one driver, matroxfb. If
261 unsure, say N.
262
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700263comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000264 depends on FB
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266config FB_CIRRUS
267 tristate "Cirrus Logic support"
268 depends on FB && (ZORRO || PCI)
269 select FB_CFB_FILLRECT
270 select FB_CFB_COPYAREA
271 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 ---help---
273 This enables support for Cirrus Logic GD542x/543x based boards on
274 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
275
276 If you have a PCI-based system, this enables support for these
277 chips: GD-543x, GD-544x, GD-5480.
278
279 Please read the file <file:Documentation/fb/cirrusfb.txt>.
280
281 Say N unless you have such a graphics board or plan to get one
282 before you next recompile the kernel.
283
284config FB_PM2
285 tristate "Permedia2 support"
286 depends on FB && ((AMIGA && BROKEN) || PCI)
287 select FB_CFB_FILLRECT
288 select FB_CFB_COPYAREA
289 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700291 This is the frame buffer device driver for cards based on
292 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
293 The driver was tested on the following cards:
294 Diamond FireGL 1000 PRO AGP
295 ELSA Gloria Synergy PCI
296 Appian Jeronimo PRO (both heads) PCI
297 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
298 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
299 ASK Graphic Blaster Exxtreme AGP
300
301 To compile this driver as a module, choose M here: the
302 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304config FB_PM2_FIFO_DISCONNECT
305 bool "enable FIFO disconnect feature"
306 depends on FB_PM2 && PCI
307 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700308 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310config FB_ARMCLCD
311 tristate "ARM PrimeCell PL110 support"
312 depends on FB && ARM && ARM_AMBA
313 select FB_CFB_FILLRECT
314 select FB_CFB_COPYAREA
315 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 help
317 This framebuffer device driver is for the ARM PrimeCell PL110
318 Colour LCD controller. ARM PrimeCells provide the building
319 blocks for System on a Chip devices.
320
321 If you want to compile this as a module (=code which can be
322 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500323 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 will be called amba-clcd.
325
326config FB_ACORN
327 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000328 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 select FB_CFB_FILLRECT
330 select FB_CFB_COPYAREA
331 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 help
333 This is the frame buffer device driver for the Acorn VIDC graphics
334 hardware found in Acorn RISC PCs and other ARM-based machines. If
335 unsure, say N.
336
337config FB_CLPS711X
338 bool "CLPS711X LCD support"
339 depends on (FB = y) && ARM && ARCH_CLPS711X
340 select FB_CFB_FILLRECT
341 select FB_CFB_COPYAREA
342 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800343 help
344 Say Y to enable the Framebuffer driver for the CLPS7111 and
345 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347config FB_SA1100
348 bool "SA-1100 LCD support"
349 depends on (FB = y) && ARM && ARCH_SA1100
350 select FB_CFB_FILLRECT
351 select FB_CFB_COPYAREA
352 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 help
354 This is a framebuffer device for the SA-1100 LCD Controller.
355 See <http://www.linux-fbdev.org/> for information on framebuffer
356 devices.
357
358 If you plan to use the LCD display with your SA-1100 system, say
359 Y here.
360
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700361config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200362 tristate "Freescale i.MX LCD support"
Sascha Hauerf142b612011-03-03 15:12:44 +0100363 depends on FB && IMX_HAVE_PLATFORM_IMX_FB
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700364 select FB_CFB_FILLRECT
365 select FB_CFB_COPYAREA
366 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368config FB_CYBER2000
369 tristate "CyberPro 2000/2010/5000 support"
370 depends on FB && PCI && (BROKEN || !SPARC64)
371 select FB_CFB_FILLRECT
372 select FB_CFB_COPYAREA
373 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 help
375 This enables support for the Integraphics CyberPro 20x0 and 5000
376 VGA chips used in the Rebel.com Netwinder and other machines.
377 Say Y if you have a NetWinder or a graphics card containing this
378 device, otherwise say N.
379
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200380config FB_CYBER2000_DDC
381 bool "DDC for CyberPro support"
382 depends on FB_CYBER2000
383 select FB_DDC
384 default y
385 help
386 Say Y here if you want DDC support for your CyberPro graphics
387 card. This is only I2C bus support, driver does not use EDID.
388
Russell Kingb7ca01a2010-08-02 09:57:07 +0100389config FB_CYBER2000_I2C
390 bool "CyberPro 2000/2010/5000 I2C support"
391 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
392 select I2C_ALGOBIT
393 help
394 Enable support for the I2C video decoder interface on the
395 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
396 on the Netwinder machines for the SAA7111 video capture.
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398config FB_APOLLO
399 bool
400 depends on (FB = y) && APOLLO
401 default y
402 select FB_CFB_FILLRECT
403 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405config FB_Q40
406 bool
407 depends on (FB = y) && Q40
408 default y
409 select FB_CFB_FILLRECT
410 select FB_CFB_COPYAREA
411 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413config FB_AMIGA
414 tristate "Amiga native chipset support"
415 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 help
417 This is the frame buffer device driver for the builtin graphics
418 chipset found in Amigas.
419
420 To compile this driver as a module, choose M here: the
421 module will be called amifb.
422
423config FB_AMIGA_OCS
424 bool "Amiga OCS chipset support"
425 depends on FB_AMIGA
426 help
427 This enables support for the original Agnus and Denise video chips,
428 found in the Amiga 1000 and most A500's and A2000's. If you intend
429 to run Linux on any of these systems, say Y; otherwise say N.
430
431config FB_AMIGA_ECS
432 bool "Amiga ECS chipset support"
433 depends on FB_AMIGA
434 help
435 This enables support for the Enhanced Chip Set, found in later
436 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
437 you intend to run Linux on any of these systems, say Y; otherwise
438 say N.
439
440config FB_AMIGA_AGA
441 bool "Amiga AGA chipset support"
442 depends on FB_AMIGA
443 help
444 This enables support for the Advanced Graphics Architecture (also
445 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
446 and CD32. If you intend to run Linux on any of these systems, say Y;
447 otherwise say N.
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449config FB_FM2
450 bool "Amiga FrameMaster II/Rainbow II support"
451 depends on (FB = y) && ZORRO
452 select FB_CFB_FILLRECT
453 select FB_CFB_COPYAREA
454 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 help
456 This is the frame buffer device driver for the Amiga FrameMaster
457 card from BSC (exhibited 1992 but not shipped as a CBM product).
458
Jaya Kumar1154ea72005-06-21 17:17:04 -0700459config FB_ARC
460 tristate "Arc Monochrome LCD board support"
461 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700462 select FB_SYS_FILLRECT
463 select FB_SYS_COPYAREA
464 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700465 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700466 help
467 This enables support for the Arc Monochrome LCD board. The board
468 is based on the KS-108 lcd controller and is typically a matrix
469 of 2*n chips. This driver was tested with a 128x64 panel. This
470 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200471 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700472 this driver, say Y or M; otherwise say N. You must specify the
473 GPIO IO address to be used for setting control and data.
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475config FB_ATARI
476 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200477 depends on (FB = y) && ATARI
478 select FB_CFB_FILLRECT
479 select FB_CFB_COPYAREA
480 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 help
482 This is the frame buffer device driver for the builtin graphics
483 chipset found in Ataris.
484
485config FB_OF
486 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100487 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 select FB_CFB_FILLRECT
489 select FB_CFB_COPYAREA
490 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 select FB_MACMODES
492 help
493 Say Y if you want support with Open Firmware for your graphics
494 board.
495
496config FB_CONTROL
497 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700498 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 select FB_CFB_FILLRECT
500 select FB_CFB_COPYAREA
501 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 select FB_MACMODES
503 help
504 This driver supports a frame buffer for the graphics adapter in the
505 Power Macintosh 7300 and others.
506
507config FB_PLATINUM
508 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700509 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 select FB_CFB_FILLRECT
511 select FB_CFB_COPYAREA
512 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 select FB_MACMODES
514 help
515 This driver supports a frame buffer for the "platinum" graphics
516 adapter in some Power Macintoshes.
517
518config FB_VALKYRIE
519 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700520 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 select FB_CFB_FILLRECT
522 select FB_CFB_COPYAREA
523 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 select FB_MACMODES
525 help
526 This driver supports a frame buffer for the "valkyrie" graphics
527 adapter in some Power Macintoshes.
528
529config FB_CT65550
530 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800531 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 select FB_CFB_FILLRECT
533 select FB_CFB_COPYAREA
534 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 help
536 This is the frame buffer device driver for the Chips & Technologies
537 65550 graphics chip in PowerBooks.
538
539config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800540 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 depends on (FB = y) && PCI
542 select FB_CFB_FILLRECT
543 select FB_CFB_COPYAREA
544 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700545 help
546 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548config FB_IMSTT
549 bool "IMS Twin Turbo display support"
550 depends on (FB = y) && PCI
551 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 select FB_MACMODES if PPC
553 help
554 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
555 many Macintosh and compatible computers.
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557config FB_VGA16
558 tristate "VGA 16-color graphics support"
559 depends on FB && (X86 || PPC)
560 select FB_CFB_FILLRECT
561 select FB_CFB_COPYAREA
562 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700563 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700564 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 help
566 This is the frame buffer device driver for VGA 16 color graphic
567 cards. Say Y if you have such a card.
568
569 To compile this driver as a module, choose M here: the
570 module will be called vga16fb.
571
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700572config FB_BF54X_LQ043
573 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700574 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700575 select FB_CFB_FILLRECT
576 select FB_CFB_COPYAREA
577 select FB_CFB_IMAGEBLIT
578 help
579 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
580
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700581config FB_BFIN_T350MCQB
582 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
583 depends on FB && BLACKFIN
584 select BFIN_GPTIMERS
585 select FB_CFB_FILLRECT
586 select FB_CFB_COPYAREA
587 select FB_CFB_IMAGEBLIT
588 help
589 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
590 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
591 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
592
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800593config FB_BFIN_LQ035Q1
594 tristate "SHARP LQ035Q1DH02 TFT LCD"
595 depends on FB && BLACKFIN && SPI
596 select FB_CFB_FILLRECT
597 select FB_CFB_COPYAREA
598 select FB_CFB_IMAGEBLIT
599 select BFIN_GPTIMERS
600 help
601 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
602 the Blackfin Landscape LCD EZ-Extender Card.
603 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
604 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
605
606 To compile this driver as a module, choose M here: the
607 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700608
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000609config FB_BF537_LQ035
610 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
611 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
612 select FB_CFB_FILLRECT
613 select FB_CFB_COPYAREA
614 select FB_CFB_IMAGEBLIT
615 select BFIN_GPTIMERS
616 help
617 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
618 attached to a BF537.
619
620 To compile this driver as a module, choose M here: the
621 module will be called bf537-lq035.
622
Michael Hennerichcffd9342010-11-24 09:33:59 +0000623config FB_BFIN_7393
624 tristate "Blackfin ADV7393 Video encoder"
625 depends on FB && BLACKFIN
626 select I2C
627 select FB_CFB_FILLRECT
628 select FB_CFB_COPYAREA
629 select FB_CFB_IMAGEBLIT
630 help
631 This is the framebuffer device for a ADV7393 video encoder
632 attached to a Blackfin on the PPI port.
633 If your Blackfin board has a ADV7393 select Y.
634
635 To compile this driver as a module, choose M here: the
636 module will be called bfin_adv7393fb.
637
638choice
639 prompt "Video mode support"
640 depends on FB_BFIN_7393
641 default NTSC
642
643config NTSC
644 bool 'NTSC 720x480'
645
646config PAL
647 bool 'PAL 720x576'
648
649config NTSC_640x480
650 bool 'NTSC 640x480 (Experimental)'
651
652config PAL_640x480
653 bool 'PAL 640x480 (Experimental)'
654
655config NTSC_YCBCR
656 bool 'NTSC 720x480 YCbCR input'
657
658config PAL_YCBCR
659 bool 'PAL 720x576 YCbCR input'
660
661endchoice
662
663choice
664 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
665 depends on (FB_BFIN_7393)
666 default ADV7393_1XMEM
667
668config ADV7393_1XMEM
669 bool 'Single'
670
671config ADV7393_2XMEM
672 bool 'Double'
673endchoice
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675config FB_STI
676 tristate "HP STI frame buffer device support"
677 depends on FB && PARISC
678 select FB_CFB_FILLRECT
679 select FB_CFB_COPYAREA
680 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000681 select STI_CONSOLE
682 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 default y
684 ---help---
685 STI refers to the HP "Standard Text Interface" which is a set of
686 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
687 Enabling this option will implement the linux framebuffer device
688 using calls to the STI BIOS routines for initialisation.
689
690 If you enable this option, you will get a planar framebuffer device
691 /dev/fb which will work on the most common HP graphic cards of the
692 NGLE family, including the artist chips (in the 7xx and Bxxx series),
693 HCRX, HCRX24, CRX, CRX24 and VisEG series.
694
695 It is safe to enable this option, so you should probably say "Y".
696
697config FB_MAC
698 bool "Generic Macintosh display support"
699 depends on (FB = y) && MAC
700 select FB_CFB_FILLRECT
701 select FB_CFB_COPYAREA
702 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 select FB_MACMODES
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705config FB_HP300
706 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200707 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 default y
710
711config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700712 tristate "TGA/SFB+ framebuffer support"
713 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 select FB_CFB_FILLRECT
715 select FB_CFB_COPYAREA
716 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800717 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700718 ---help---
719 This is the frame buffer device driver for generic TGA and SFB+
720 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
721 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
722 TURBOchannel cards, also known as PMAGD-A, -B and -C.
723
724 Due to hardware limitations ZLX-E2 and E3 cards are not supported
725 for DECstation 5000/200 systems. Additionally due to firmware
726 limitations these cards may cause troubles with booting DECstation
727 5000/240 and /260 systems, but are fully supported under Linux if
728 you manage to get it going. ;-)
729
730 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700732config FB_UVESA
733 tristate "Userspace VESA VGA graphics support"
734 depends on FB && CONNECTOR
735 select FB_CFB_FILLRECT
736 select FB_CFB_COPYAREA
737 select FB_CFB_IMAGEBLIT
738 select FB_MODE_HELPERS
739 help
740 This is the frame buffer driver for generic VBE 2.0 compliant
741 graphic cards. It can also take advantage of VBE 3.0 features,
742 such as refresh rate adjustment.
743
744 This driver generally provides more features than vesafb but
745 requires a userspace helper application called 'v86d'. See
746 <file:Documentation/fb/uvesafb.txt> for more information.
747
748 If unsure, say N.
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750config FB_VESA
751 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800752 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 select FB_CFB_FILLRECT
754 select FB_CFB_COPYAREA
755 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700756 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 help
758 This is the frame buffer device driver for generic VESA 2.0
759 compliant graphic cards. The older VESA 1.2 cards are not supported.
760 You will get a boot time penguin logo at no additional cost. Please
761 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
762
Huang, Ying7c831722007-11-28 16:21:55 -0800763config FB_EFI
764 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700765 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700766 select FB_CFB_FILLRECT
767 select FB_CFB_COPYAREA
768 select FB_CFB_IMAGEBLIT
769 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700770 This is the EFI frame buffer device driver. If the firmware on
771 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
772 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700773
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700774config FB_N411
775 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700776 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700777 select FB_SYS_FILLRECT
778 select FB_SYS_COPYAREA
779 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700780 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700781 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700782 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700783 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700784 This enables support for the Apollo display controller in its
785 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787config FB_HGA
788 tristate "Hercules mono graphics support"
789 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 help
791 Say Y here if you have a Hercules mono graphics card.
792
793 To compile this driver as a module, choose M here: the
794 module will be called hgafb.
795
Brent Cook529ed802010-12-31 05:56:50 +0000796 As this card technology is at least 25 years old,
797 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799config FB_SGIVW
800 tristate "SGI Visual Workstation framebuffer support"
801 depends on FB && X86_VISWS
802 select FB_CFB_FILLRECT
803 select FB_CFB_COPYAREA
804 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 help
806 SGI Visual Workstation support for framebuffer graphics.
807
808config FB_GBE
809 bool "SGI Graphics Backend frame buffer support"
810 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
811 select FB_CFB_FILLRECT
812 select FB_CFB_COPYAREA
813 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 help
815 This is the frame buffer device driver for SGI Graphics Backend.
816 This chip is used in SGI O2 and Visual Workstation 320/540.
817
818config FB_GBE_MEM
819 int "Video memory size in MB"
820 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800821 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 help
823 This is the amount of memory reserved for the framebuffer,
824 which can be any value between 1MB and 8MB.
825
Mark Fortescue1a571982005-11-29 19:34:44 -0800826config FB_SBUS
827 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800828 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800829 help
830 Say Y if you want support for SBUS or UPA based frame buffer device.
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832config FB_BW2
833 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800834 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 select FB_CFB_FILLRECT
836 select FB_CFB_COPYAREA
837 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 help
839 This is the frame buffer device driver for the BWtwo frame buffer.
840
841config FB_CG3
842 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800843 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800844 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 select FB_CFB_COPYAREA
846 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 help
848 This is the frame buffer device driver for the CGthree frame buffer.
849
850config FB_CG6
851 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800852 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 select FB_CFB_COPYAREA
854 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 help
856 This is the frame buffer device driver for the CGsix (GX, TurboGX)
857 frame buffer.
858
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700859config FB_FFB
860 bool "Creator/Creator3D/Elite3D support"
861 depends on FB_SBUS && SPARC64
862 select FB_CFB_COPYAREA
863 select FB_CFB_IMAGEBLIT
864 help
865 This is the frame buffer device driver for the Creator, Creator3D,
866 and Elite3D graphics boards.
867
868config FB_TCX
869 bool "TCX (SS4/SS5 only) support"
870 depends on FB_SBUS
871 select FB_CFB_FILLRECT
872 select FB_CFB_COPYAREA
873 select FB_CFB_IMAGEBLIT
874 help
875 This is the frame buffer device driver for the TCX 24/8bit frame
876 buffer.
877
878config FB_CG14
879 bool "CGfourteen (SX) support"
880 depends on FB_SBUS
881 select FB_CFB_FILLRECT
882 select FB_CFB_COPYAREA
883 select FB_CFB_IMAGEBLIT
884 help
885 This is the frame buffer device driver for the CGfourteen frame
886 buffer on Desktop SPARCsystems with the SX graphics option.
887
888config FB_P9100
889 bool "P9100 (Sparcbook 3 only) support"
890 depends on FB_SBUS
891 select FB_CFB_FILLRECT
892 select FB_CFB_COPYAREA
893 select FB_CFB_IMAGEBLIT
894 help
895 This is the frame buffer device driver for the P9100 card
896 supported on Sparcbook 3 machines.
897
898config FB_LEO
899 bool "Leo (ZX) support"
900 depends on FB_SBUS
901 select FB_CFB_FILLRECT
902 select FB_CFB_COPYAREA
903 select FB_CFB_IMAGEBLIT
904 help
905 This is the frame buffer device driver for the SBUS-based Sun ZX
906 (leo) frame buffer cards.
907
908config FB_IGA
909 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700910 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700911 select FB_CFB_FILLRECT
912 select FB_CFB_COPYAREA
913 select FB_CFB_IMAGEBLIT
914 help
915 This is the framebuffer device for the INTERGRAPHICS 1680 and
916 successor frame buffer cards.
917
918config FB_XVR500
919 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700920 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700921 select FB_CFB_FILLRECT
922 select FB_CFB_COPYAREA
923 select FB_CFB_IMAGEBLIT
924 help
925 This is the framebuffer device for the Sun XVR-500 and similar
926 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200927 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700928 mostly initialized the card already. It is treated as a
929 completely dumb framebuffer device.
930
931config FB_XVR2500
932 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700933 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700934 select FB_CFB_FILLRECT
935 select FB_CFB_COPYAREA
936 select FB_CFB_IMAGEBLIT
937 help
938 This is the framebuffer device for the Sun XVR-2500 and similar
939 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200940 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700941 mostly initialized the card already. It is treated as a
942 completely dumb framebuffer device.
943
David S. Miller2d378b92010-03-13 16:25:03 -0800944config FB_XVR1000
945 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700946 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800947 select FB_CFB_FILLRECT
948 select FB_CFB_COPYAREA
949 select FB_CFB_IMAGEBLIT
950 help
951 This is the framebuffer device for the Sun XVR-1000 and similar
952 graphics cards. The driver only works on sparc64 systems where
953 the system firmware has mostly initialized the card already. It
954 is treated as a completely dumb framebuffer device.
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956config FB_PVR2
957 tristate "NEC PowerVR 2 display support"
958 depends on FB && SH_DREAMCAST
959 select FB_CFB_FILLRECT
960 select FB_CFB_COPYAREA
961 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 ---help---
963 Say Y here if you have a PowerVR 2 card in your box. If you plan to
964 run linux on your Dreamcast, you will have to say Y here.
965 This driver may or may not work on other PowerVR 2 cards, but is
966 totally untested. Use at your own risk. If unsure, say N.
967
968 To compile this driver as a module, choose M here: the
969 module will be called pvr2fb.
970
971 You can pass several parameters to the driver at boot time or at
972 module load time. The parameters look like "video=pvr2:XXX", where
973 the meaning of XXX can be found at the end of the main source file
974 (<file:drivers/video/pvr2fb.c>). Please see the file
975 <file:Documentation/fb/pvr2fb.txt>.
976
977config FB_EPSON1355
978 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700979 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 select FB_CFB_FILLRECT
981 select FB_CFB_COPYAREA
982 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 help
984 Build in support for the SED1355 Epson Research Embedded RAMDAC
985 LCD/CRT Controller (since redesignated as the S1D13505) as a
986 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200987 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Randy Dunlapecc41d52005-11-07 01:00:29 -0800989config FB_S1D13XXX
990 tristate "Epson S1D13XXX framebuffer support"
991 depends on FB
992 select FB_CFB_FILLRECT
993 select FB_CFB_COPYAREA
994 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800995 help
996 Support for S1D13XXX framebuffer device family (currently only
997 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200998 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800999
Nicolas Ferre14340582007-05-10 22:23:26 -07001000config FB_ATMEL
1001 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001002 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001003 select FB_CFB_FILLRECT
1004 select FB_CFB_COPYAREA
1005 select FB_CFB_IMAGEBLIT
1006 help
1007 This enables support for the AT91/AT32 LCD Controller.
1008
1009config FB_INTSRAM
1010 bool "Frame Buffer in internal SRAM"
1011 depends on FB_ATMEL && ARCH_AT91SAM9261
1012 help
1013 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1014 to let frame buffer in external SDRAM.
1015
Nicolas Ferre250a2692007-07-21 04:37:59 -07001016config FB_ATMEL_STN
1017 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001018 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001019 default n
1020 help
1021 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1022 Controller. Say N if you want to connect a TFT.
1023
1024 If unsure, say N.
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026config FB_NVIDIA
1027 tristate "nVidia Framebuffer Support"
1028 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001029 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 select FB_MODE_HELPERS
1031 select FB_CFB_FILLRECT
1032 select FB_CFB_COPYAREA
1033 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001034 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001035 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 help
1037 This driver supports graphics boards with the nVidia chips, TNT
1038 and newer. For very old chipsets, such as the RIVA128, then use
1039 the rivafb.
1040 Say Y if you have such a graphics board.
1041
1042 To compile this driver as a module, choose M here: the
1043 module will be called nvidiafb.
1044
1045config FB_NVIDIA_I2C
1046 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001047 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001048 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 help
1050 This enables I2C support for nVidia Chipsets. This is used
1051 only for getting EDID information from the attached display
1052 allowing for robust video mode handling and switching.
1053
1054 Because fbdev-2.6 requires that drivers must be able to
1055 independently validate video mode parameters, you should say Y
1056 here.
1057
Jean Delvare647f2e72007-05-10 22:23:29 -07001058config FB_NVIDIA_DEBUG
1059 bool "Lots of debug output"
1060 depends on FB_NVIDIA
1061 default n
1062 help
1063 Say Y here if you want the nVidia driver to output all sorts
1064 of debugging information to provide to the maintainer when
1065 something goes wrong.
1066
Michael Hanselmann5474c122006-06-25 05:47:08 -07001067config FB_NVIDIA_BACKLIGHT
1068 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001069 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001070 default y
1071 help
1072 Say Y here if you want to control the backlight of your display.
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074config FB_RIVA
1075 tristate "nVidia Riva support"
1076 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001077 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 select FB_MODE_HELPERS
1079 select FB_CFB_FILLRECT
1080 select FB_CFB_COPYAREA
1081 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001082 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001083 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 help
1085 This driver supports graphics boards with the nVidia Riva/Geforce
1086 chips.
1087 Say Y if you have such a graphics board.
1088
1089 To compile this driver as a module, choose M here: the
1090 module will be called rivafb.
1091
1092config FB_RIVA_I2C
1093 bool "Enable DDC Support"
1094 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001095 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 help
1097 This enables I2C support for nVidia Chipsets. This is used
1098 only for getting EDID information from the attached display
1099 allowing for robust video mode handling and switching.
1100
1101 Because fbdev-2.6 requires that drivers must be able to
1102 independently validate video mode parameters, you should say Y
1103 here.
1104
1105config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001106 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 depends on FB_RIVA
1108 default n
1109 help
1110 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001111 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 something goes wrong.
1113
Michael Hanselmann5474c122006-06-25 05:47:08 -07001114config FB_RIVA_BACKLIGHT
1115 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001116 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001117 default y
1118 help
1119 Say Y here if you want to control the backlight of your display.
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121config FB_I810
1122 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001123 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 select FB_MODE_HELPERS
1125 select FB_CFB_FILLRECT
1126 select FB_CFB_COPYAREA
1127 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001128 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 help
1130 This driver supports the on-board graphics built in to the Intel 810
1131 and 815 chipsets. Say Y if you have and plan to use such a board.
1132
1133 To compile this driver as a module, choose M here: the
1134 module will be called i810fb.
1135
1136 For more information, please read
1137 <file:Documentation/fb/intel810.txt>
1138
1139config FB_I810_GTF
1140 bool "use VESA Generalized Timing Formula"
1141 depends on FB_I810
1142 help
1143 If you say Y, then the VESA standard, Generalized Timing Formula
1144 or GTF, will be used to calculate the required video timing values
1145 per video mode. Since the GTF allows nondiscrete timings
1146 (nondiscrete being a range of values as opposed to discrete being a
1147 set of values), you'll be able to use any combination of horizontal
1148 and vertical resolutions, and vertical refresh rates without having
1149 to specify your own timing parameters. This is especially useful
1150 to maximize the performance of an aging display, or if you just
1151 have a display with nonstandard dimensions. A VESA compliant
1152 monitor is recommended, but can still work with non-compliant ones.
1153 If you need or want this, then select this option. The timings may
1154 not be compliant with Intel's recommended values. Use at your own
1155 risk.
1156
1157 If you say N, the driver will revert to discrete video timings
1158 using a set recommended by Intel in their documentation.
1159
1160 If unsure, say N.
1161
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001162config FB_I810_I2C
1163 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001164 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001165 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001166 help
1167
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001168config FB_LE80578
1169 tristate "Intel LE80578 (Vermilion) support"
1170 depends on FB && PCI && X86
1171 select FB_MODE_HELPERS
1172 select FB_CFB_FILLRECT
1173 select FB_CFB_COPYAREA
1174 select FB_CFB_IMAGEBLIT
1175 help
1176 This driver supports the LE80578 (Vermilion Range) chipset
1177
1178config FB_CARILLO_RANCH
1179 tristate "Intel Carillo Ranch support"
1180 depends on FB_LE80578 && FB && PCI && X86
1181 help
1182 This driver supports the LE80578 (Carillo Ranch) board
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001185 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001186 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 select FB_MODE_HELPERS
1188 select FB_CFB_FILLRECT
1189 select FB_CFB_COPYAREA
1190 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001191 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001192 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 help
1194 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001195 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 Say Y if you have and plan to use such a board.
1197
Krzysztof Helt4b198282009-06-18 16:49:21 -07001198 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1199
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001200 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 module will be called intelfb.
1202
Christian Merkled463d342006-08-22 10:07:01 +10001203 For more information, please read <file:Documentation/fb/intelfb.txt>
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001206 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 depends on FB_INTEL
1208 ---help---
1209 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001210 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 something goes wrong.
1212
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001213config FB_INTEL_I2C
1214 bool "DDC/I2C for Intel framebuffer support"
1215 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001216 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001217 default y
1218 help
1219 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221config FB_MATROX
1222 tristate "Matrox acceleration"
1223 depends on FB && PCI
1224 select FB_CFB_FILLRECT
1225 select FB_CFB_COPYAREA
1226 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 select FB_TILEBLITTING
1228 select FB_MACMODES if PPC_PMAC
1229 ---help---
1230 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1231 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1232 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1233 Matrox G400, G450 or G550 card in your box.
1234
1235 To compile this driver as a module, choose M here: the
1236 module will be called matroxfb.
1237
1238 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001239 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 are described in <file:Documentation/fb/matroxfb.txt>.
1241
1242config FB_MATROX_MILLENIUM
1243 bool "Millennium I/II support"
1244 depends on FB_MATROX
1245 help
1246 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1247 video card. If you select "Advanced lowlevel driver options" below,
1248 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1249 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1250 also use font widths different from 8.
1251
1252config FB_MATROX_MYSTIQUE
1253 bool "Mystique support"
1254 depends on FB_MATROX
1255 help
1256 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1257 video card. If you select "Advanced lowlevel driver options" below,
1258 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1259 packed pixel and 32 bpp packed pixel. You can also use font widths
1260 different from 8.
1261
1262config FB_MATROX_G
1263 bool "G100/G200/G400/G450/G550 support"
1264 depends on FB_MATROX
1265 ---help---
1266 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1267 video card. If you select "Advanced lowlevel driver options", you
1268 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1269 pixel and 32 bpp packed pixel. You can also use font widths
1270 different from 8.
1271
Jean Delvareee831262009-05-12 13:19:41 -07001272 If you need support for G400 secondary head, you must say Y to
1273 "Matrox I2C support" and "G400 second head support" right below.
1274 G450/G550 secondary head and digital output are supported without
1275 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 The driver starts in monitor mode. You must use the matroxset tool
1278 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1279 swap primary and secondary head outputs, or to change output mode.
1280 Secondary head driver always start in 640x480 resolution and you
1281 must use fbset to change it.
1282
1283 Do not forget that second head supports only 16 and 32 bpp
1284 packed pixels, so it is a good idea to compile them into the kernel
1285 too. You can use only some font widths, as the driver uses generic
1286 painting procedures (the secondary head does not use acceleration
1287 engine).
1288
1289 G450/G550 hardware can display TV picture only from secondary CRTC,
1290 and it performs no scaling, so picture must have 525 or 625 lines.
1291
1292config FB_MATROX_I2C
1293 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001294 depends on FB_MATROX
1295 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 ---help---
1297 This drivers creates I2C buses which are needed for accessing the
1298 DDC (I2C) bus present on all Matroxes, an I2C bus which
1299 interconnects Matrox optional devices, like MGA-TVO on G200 and
1300 G400, and the secondary head DDC bus, present on G400 only.
1301
1302 You can say Y or M here if you want to experiment with monitor
1303 detection code. You must say Y or M here if you want to use either
1304 second head of G400 or MGA-TVO on G200 or G400.
1305
1306 If you compile it as module, it will create a module named
1307 i2c-matroxfb.
1308
1309config FB_MATROX_MAVEN
1310 tristate "G400 second head support"
1311 depends on FB_MATROX_G && FB_MATROX_I2C
1312 ---help---
1313 WARNING !!! This support does not work with G450 !!!
1314
1315 Say Y or M here if you want to use a secondary head (meaning two
1316 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1317 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1318 secondary head output is blanked while you are in X. With XFree
1319 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1320 the fbdev driver on first head and the fbdev driver on second head.
1321
1322 If you compile it as module, two modules are created,
1323 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1324 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1325 also load i2c-matroxfb to get it to run.
1326
1327 The driver starts in monitor mode and you must use the matroxset
1328 tool (available at
1329 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1330 PAL or NTSC or to swap primary and secondary head outputs.
1331 Secondary head driver also always start in 640x480 resolution, you
1332 must use fbset to change it.
1333
1334 Also do not forget that second head supports only 16 and 32 bpp
1335 packed pixels, so it is a good idea to compile them into the kernel
1336 too. You can use only some font widths, as the driver uses generic
1337 painting procedures (the secondary head does not use acceleration
1338 engine).
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340config FB_RADEON
1341 tristate "ATI Radeon display support"
1342 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001343 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 select FB_MODE_HELPERS
1345 select FB_CFB_FILLRECT
1346 select FB_CFB_COPYAREA
1347 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 select FB_MACMODES if PPC_OF
1349 help
1350 Choose this option if you want to use an ATI Radeon graphics card as
1351 a framebuffer device. There are both PCI and AGP versions. You
1352 don't need to choose this to run the Radeon in plain VGA mode.
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001355 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357config FB_RADEON_I2C
1358 bool "DDC/I2C for ATI Radeon support"
1359 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001360 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 default y
1362 help
1363 Say Y here if you want DDC/I2C support for your Radeon board.
1364
Michael Hanselmann5474c122006-06-25 05:47:08 -07001365config FB_RADEON_BACKLIGHT
1366 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001367 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001368 default y
1369 help
1370 Say Y here if you want to control the backlight of your display.
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372config FB_RADEON_DEBUG
1373 bool "Lots of debug output from Radeon driver"
1374 depends on FB_RADEON
1375 default n
1376 help
1377 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001378 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 something goes wrong.
1380
1381config FB_ATY128
1382 tristate "ATI Rage128 display support"
1383 depends on FB && PCI
1384 select FB_CFB_FILLRECT
1385 select FB_CFB_COPYAREA
1386 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001387 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 select FB_MACMODES if PPC_PMAC
1389 help
1390 This driver supports graphics boards with the ATI Rage128 chips.
1391 Say Y if you have such a graphics board and read
1392 <file:Documentation/fb/aty128fb.txt>.
1393
1394 To compile this driver as a module, choose M here: the
1395 module will be called aty128fb.
1396
Michael Hanselmann5474c122006-06-25 05:47:08 -07001397config FB_ATY128_BACKLIGHT
1398 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001399 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001400 default y
1401 help
1402 Say Y here if you want to control the backlight of your display.
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404config FB_ATY
1405 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001406 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 select FB_CFB_FILLRECT
1408 select FB_CFB_COPYAREA
1409 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001410 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 select FB_MACMODES if PPC
1412 help
1413 This driver supports graphics boards with the ATI Mach64 chips.
1414 Say Y if you have such a graphics board.
1415
1416 To compile this driver as a module, choose M here: the
1417 module will be called atyfb.
1418
1419config FB_ATY_CT
1420 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1421 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001422 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 help
1424 Say Y here to support use of ATI's 64-bit Rage boards (or other
1425 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1426 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001427 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429config FB_ATY_GENERIC_LCD
1430 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1431 depends on FB_ATY_CT
1432 help
1433 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1434 Rage XC, or Rage XL chipset.
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436config FB_ATY_GX
1437 bool "Mach64 GX support" if PCI
1438 depends on FB_ATY
1439 default y if ATARI
1440 help
1441 Say Y here to support use of the ATI Mach64 Graphics Expression
1442 board (or other boards based on the Mach64 GX chipset) as a
1443 framebuffer device. The ATI product support page for these boards
1444 is at
1445 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1446
Michael Hanselmann5474c122006-06-25 05:47:08 -07001447config FB_ATY_BACKLIGHT
1448 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001449 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001450 default y
1451 help
1452 Say Y here if you want to control the backlight of your display.
1453
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001454config FB_S3
1455 tristate "S3 Trio/Virge support"
1456 depends on FB && PCI
1457 select FB_CFB_FILLRECT
1458 select FB_CFB_COPYAREA
1459 select FB_CFB_IMAGEBLIT
1460 select FB_TILEBLITTING
1461 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001462 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001463 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001464 ---help---
1465 Driver for graphics boards with S3 Trio / S3 Virge chip.
1466
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001467config FB_S3_DDC
1468 bool "DDC for S3 support"
1469 depends on FB_S3
1470 select FB_DDC
1471 default y
1472 help
1473 Say Y here if you want DDC support for your S3 graphics card.
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475config FB_SAVAGE
1476 tristate "S3 Savage support"
1477 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 select FB_MODE_HELPERS
1479 select FB_CFB_FILLRECT
1480 select FB_CFB_COPYAREA
1481 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001482 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 help
1484 This driver supports notebooks and computers with S3 Savage PCI/AGP
1485 chips.
1486
1487 Say Y if you have such a graphics card.
1488
1489 To compile this driver as a module, choose M here; the module
1490 will be called savagefb.
1491
1492config FB_SAVAGE_I2C
1493 bool "Enable DDC2 Support"
1494 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001495 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 help
1497 This enables I2C support for S3 Savage Chipsets. This is used
1498 only for getting EDID information from the attached display
1499 allowing for robust video mode handling and switching.
1500
1501 Because fbdev-2.6 requires that drivers must be able to
1502 independently validate video mode parameters, you should say Y
1503 here.
1504
1505config FB_SAVAGE_ACCEL
1506 bool "Enable Console Acceleration"
1507 depends on FB_SAVAGE
1508 default n
1509 help
1510 This option will compile in console acceleration support. If
1511 the resulting framebuffer console has bothersome glitches, then
1512 choose N here.
1513
1514config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001515 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 depends on FB && PCI
1517 select FB_CFB_FILLRECT
1518 select FB_CFB_COPYAREA
1519 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001520 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001522 This is the frame buffer device driver for the SiS 300, 315, 330
1523 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1524 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 To compile this driver as a module, choose M here; the module
1527 will be called sisfb.
1528
1529config FB_SIS_300
1530 bool "SiS 300 series support"
1531 depends on FB_SIS
1532 help
1533 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1534
1535config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001536 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 depends on FB_SIS
1538 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001539 Say Y here to support use of the SiS 315, 330 and 340 series
1540 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1541 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001543config FB_VIA
1544 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001545 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001546 select FB_CFB_FILLRECT
1547 select FB_CFB_COPYAREA
1548 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001549 select I2C_ALGOBIT
1550 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001551 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001552 help
1553 This is the frame buffer device driver for Graphics chips of VIA
1554 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1555 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1556 /P4M900,VX800)
1557 Say Y if you have a VIA UniChrome graphics board.
1558
1559 To compile this driver as a module, choose M here: the
1560 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001561
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001562if FB_VIA
1563
1564config FB_VIA_DIRECT_PROCFS
1565 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1566 depends on FB_VIA
1567 default n
1568 help
1569 Allow direct hardware access to some output registers via procfs.
1570 This is dangerous but may provide the only chance to get the
1571 correct output device configuration.
1572 Its use is strongly discouraged.
1573
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001574config FB_VIA_X_COMPATIBILITY
1575 bool "X server compatibility"
1576 depends on FB_VIA
1577 default n
1578 help
1579 This option reduces the functionality (power saving, ...) of the
1580 framebuffer to avoid negative impact on the OpenChrome X server.
1581 If you use any X server other than fbdev you should enable this
1582 otherwise it should be safe to disable it and allow using all
1583 features.
1584
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001585endif
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587config FB_NEOMAGIC
1588 tristate "NeoMagic display support"
1589 depends on FB && PCI
1590 select FB_MODE_HELPERS
1591 select FB_CFB_FILLRECT
1592 select FB_CFB_COPYAREA
1593 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001594 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 help
1596 This driver supports notebooks with NeoMagic PCI chips.
1597 Say Y if you have such a graphics card.
1598
1599 To compile this driver as a module, choose M here: the
1600 module will be called neofb.
1601
1602config FB_KYRO
1603 tristate "IMG Kyro support"
1604 depends on FB && PCI
1605 select FB_CFB_FILLRECT
1606 select FB_CFB_COPYAREA
1607 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 help
1609 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1610 graphics board.
1611
1612 To compile this driver as a module, choose M here: the
1613 module will be called kyrofb.
1614
1615config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001616 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 depends on FB && PCI
1618 select FB_CFB_IMAGEBLIT
1619 select FB_CFB_FILLRECT
1620 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001621 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001623 This driver supports graphics boards with the 3Dfx Banshee,
1624 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1625 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 To compile this driver as a module, choose M here: the
1628 module will be called tdfxfb.
1629
1630config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001631 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 depends on FB_3DFX && EXPERIMENTAL
1633 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001634 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1635 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001637config FB_3DFX_I2C
1638 bool "Enable DDC/I2C support"
1639 depends on FB_3DFX && EXPERIMENTAL
1640 select FB_DDC
1641 default y
1642 help
1643 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645config FB_VOODOO1
1646 tristate "3Dfx Voodoo Graphics (sst1) support"
1647 depends on FB && PCI
1648 select FB_CFB_FILLRECT
1649 select FB_CFB_COPYAREA
1650 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 ---help---
1652 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1653 Voodoo2 (cvg) based graphics card.
1654
1655 To compile this driver as a module, choose M here: the
1656 module will be called sstfb.
1657
1658 WARNING: Do not use any application that uses the 3D engine
1659 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001660 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 options and other important info support.
1662
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001663config FB_VT8623
1664 tristate "VIA VT8623 support"
1665 depends on FB && PCI
1666 select FB_CFB_FILLRECT
1667 select FB_CFB_COPYAREA
1668 select FB_CFB_IMAGEBLIT
1669 select FB_TILEBLITTING
1670 select FB_SVGALIB
1671 select VGASTATE
1672 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1673 ---help---
1674 Driver for CastleRock integrated graphics core in the
1675 VIA VT8623 [Apollo CLE266] chipset.
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001678 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 depends on FB && PCI
1680 select FB_CFB_FILLRECT
1681 select FB_CFB_COPYAREA
1682 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001684 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1685 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1686 and Blade XP.
1687 There are also integrated versions of these chips called CyberXXXX,
1688 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001689 but also on some motherboards including early VIA EPIA motherboards.
1690 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692 Say Y if you have such a graphics board.
1693
1694 To compile this driver as a module, choose M here: the
1695 module will be called tridentfb.
1696
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001697config FB_ARK
1698 tristate "ARK 2000PV support"
1699 depends on FB && PCI
1700 select FB_CFB_FILLRECT
1701 select FB_CFB_COPYAREA
1702 select FB_CFB_IMAGEBLIT
1703 select FB_TILEBLITTING
1704 select FB_SVGALIB
1705 select VGASTATE
1706 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1707 ---help---
1708 Driver for PCI graphics boards with ARK 2000PV chip
1709 and ICS 5342 RAMDAC.
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001712 tristate "Permedia3 support (EXPERIMENTAL)"
1713 depends on FB && PCI && EXPERIMENTAL
1714 select FB_CFB_FILLRECT
1715 select FB_CFB_COPYAREA
1716 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 help
1718 This is the frame buffer device driver for the 3DLabs Permedia3
1719 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1720 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1721 and maybe other boards.
1722
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001723config FB_CARMINE
1724 tristate "Fujitsu carmine frame buffer support"
1725 depends on FB && PCI
1726 select FB_CFB_FILLRECT
1727 select FB_CFB_COPYAREA
1728 select FB_CFB_IMAGEBLIT
1729 help
1730 This is the frame buffer device driver for the Fujitsu Carmine chip.
1731 The driver provides two independent frame buffer devices.
1732
1733choice
1734 depends on FB_CARMINE
1735 prompt "DRAM timing"
1736 default FB_CARMINE_DRAM_EVAL
1737
1738config FB_CARMINE_DRAM_EVAL
1739 bool "Eval board timings"
1740 help
1741 Use timings which work on the eval card.
1742
1743config CARMINE_DRAM_CUSTOM
1744 bool "Custom board timings"
1745 help
1746 Use custom board timings.
1747endchoice
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749config FB_AU1100
1750 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001751 depends on (FB = y) && MIPS && SOC_AU1100
1752 select FB_CFB_FILLRECT
1753 select FB_CFB_COPYAREA
1754 select FB_CFB_IMAGEBLIT
1755 help
1756 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1757 various panels and CRTs by passing in kernel cmd line option
1758 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001760config FB_AU1200
1761 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001762 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001763 select FB_CFB_FILLRECT
1764 select FB_CFB_COPYAREA
1765 select FB_CFB_IMAGEBLIT
1766 help
1767 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1768 various panels and CRTs by passing in kernel cmd line option
1769 au1200fb:panel=<name>.
1770
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001771config FB_VT8500
1772 bool "VT8500 LCD Driver"
1773 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1774 select FB_WMT_GE_ROPS
1775 select FB_SYS_IMAGEBLIT
1776 help
1777 This is the framebuffer driver for VIA VT8500 integrated LCD
1778 controller.
1779
1780config FB_WM8505
1781 bool "WM8505 frame buffer support"
1782 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1783 select FB_WMT_GE_ROPS
1784 select FB_SYS_IMAGEBLIT
1785 help
1786 This is the framebuffer driver for WonderMedia WM8505
1787 integrated LCD controller.
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789source "drivers/video/geode/Kconfig"
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791config FB_HIT
1792 tristate "HD64461 Frame Buffer support"
1793 depends on FB && HD64461
1794 select FB_CFB_FILLRECT
1795 select FB_CFB_COPYAREA
1796 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 help
1798 This is the frame buffer device driver for the Hitachi HD64461 LCD
1799 frame buffer card.
1800
1801config FB_PMAG_AA
1802 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001803 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 select FB_CFB_FILLRECT
1805 select FB_CFB_COPYAREA
1806 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 help
1808 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1809 used mainly in the MIPS-based DECstation series.
1810
1811config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001812 tristate "PMAG-BA TURBOchannel framebuffer support"
1813 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 select FB_CFB_FILLRECT
1815 select FB_CFB_COPYAREA
1816 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 help
1818 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1819 used mainly in the MIPS-based DECstation series.
1820
1821config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001822 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001823 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 select FB_CFB_FILLRECT
1825 select FB_CFB_COPYAREA
1826 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 help
1828 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1829 in the MIPS-based DECstation series. The card is currently only
1830 supported in 1280x1024x8 mode.
1831
1832config FB_MAXINE
1833 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001834 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 select FB_CFB_FILLRECT
1836 select FB_CFB_COPYAREA
1837 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 help
1839 Support for the onboard framebuffer (1024x768x8) in the Personal
1840 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1841 Codename "Maxine").
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001844 bool "G364 frame buffer support"
1845 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 select FB_CFB_FILLRECT
1847 select FB_CFB_COPYAREA
1848 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 help
1850 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1851 Olivetti M700-10 systems.
1852
1853config FB_68328
1854 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001855 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 select FB_CFB_FILLRECT
1857 select FB_CFB_COPYAREA
1858 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 help
1860 Say Y here if you want to support the built-in frame buffer of
1861 the Motorola 68328 CPU family.
1862
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001863config FB_PXA168
1864 tristate "PXA168/910 LCD framebuffer support"
1865 depends on FB && (CPU_PXA168 || CPU_PXA910)
1866 select FB_CFB_FILLRECT
1867 select FB_CFB_COPYAREA
1868 select FB_CFB_IMAGEBLIT
1869 ---help---
1870 Frame buffer driver for the built-in LCD controller in the Marvell
1871 MMP processor.
1872
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873config FB_PXA
1874 tristate "PXA LCD framebuffer support"
1875 depends on FB && ARCH_PXA
1876 select FB_CFB_FILLRECT
1877 select FB_CFB_COPYAREA
1878 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 ---help---
1880 Frame buffer driver for the built-in LCD controller in the Intel
1881 PXA2x0 processor.
1882
1883 This driver is also available as a module ( = code which can be
1884 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001885 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001886 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888 If unsure, say N.
1889
Eric Miao198fc102008-12-23 17:49:43 +08001890config FB_PXA_OVERLAY
1891 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1892 default n
1893 depends on FB_PXA && (PXA27x || PXA3xx)
1894
Eric Miao3c42a442008-04-30 00:52:26 -07001895config FB_PXA_SMARTPANEL
1896 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001897 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001898 depends on FB_PXA
1899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900config FB_PXA_PARAMETERS
1901 bool "PXA LCD command line parameters"
1902 default n
1903 depends on FB_PXA
1904 ---help---
1905 Enable the use of kernel command line or module parameters
1906 to configure the physical properties of the LCD panel when
1907 using the PXA LCD driver.
1908
1909 This option allows you to override the panel parameters
1910 supplied by the platform in order to support multiple
1911 different models of flatpanel. If you will only be using a
1912 single model of flatpanel then you can safely leave this
1913 option disabled.
1914
1915 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1916
Daniel Mack364dbdf2010-11-04 14:44:00 -04001917config PXA3XX_GCU
1918 tristate "PXA3xx 2D graphics accelerator driver"
1919 depends on FB_PXA
1920 help
1921 Kernelspace driver for the 2D graphics controller unit (GCU)
1922 found on PXA3xx processors. There is a counterpart driver in the
1923 DirectFB suite, see http://www.directfb.org/
1924
1925 If you compile this as a module, it will be called pxa3xx_gcu.
1926
Mike Rapoport22caf042006-07-14 00:24:34 -07001927config FB_MBX
1928 tristate "2700G LCD framebuffer support"
1929 depends on FB && ARCH_PXA
1930 select FB_CFB_FILLRECT
1931 select FB_CFB_COPYAREA
1932 select FB_CFB_IMAGEBLIT
1933 ---help---
1934 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1935 Accelerator
1936
1937config FB_MBX_DEBUG
1938 bool "Enable debugging info via debugfs"
1939 depends on FB_MBX && DEBUG_FS
1940 default n
1941 ---help---
1942 Enable this if you want debugging information using the debug
1943 filesystem (debugfs)
1944
1945 If unsure, say N.
1946
York Sun9b53a9e2008-04-28 02:15:34 -07001947config FB_FSL_DIU
1948 tristate "Freescale DIU framebuffer support"
1949 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001950 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001951 select FB_CFB_FILLRECT
1952 select FB_CFB_COPYAREA
1953 select FB_CFB_IMAGEBLIT
1954 select PPC_LIB_RHEAP
1955 ---help---
1956 Framebuffer driver for the Freescale SoC DIU
1957
Randy Dunlapecc41d52005-11-07 01:00:29 -08001958config FB_W100
1959 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001960 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001961 select FB_CFB_FILLRECT
1962 select FB_CFB_COPYAREA
1963 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001964 ---help---
1965 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001966 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001967
1968 This driver is also available as a module ( = code which can be
1969 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001970 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001971 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001972
1973 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001975config FB_SH_MOBILE_LCDC
1976 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001977 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001978 select FB_SYS_FILLRECT
1979 select FB_SYS_COPYAREA
1980 select FB_SYS_IMAGEBLIT
1981 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09001982 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001983 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001984 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001985 ---help---
1986 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1987
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001988config FB_SH_MOBILE_HDMI
1989 tristate "SuperH Mobile HDMI controller support"
1990 depends on FB_SH_MOBILE_LCDC
1991 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02001992 select SOUND
1993 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09001994 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00001995 ---help---
1996 Driver for the on-chip SH-Mobile HDMI controller.
1997
Damian7caa4342011-05-18 11:10:07 +00001998config FB_SH_MOBILE_MERAM
1999 tristate "SuperH Mobile MERAM read ahead support for LCDC"
2000 depends on FB_SH_MOBILE_LCDC
2001 default y
2002 ---help---
2003 Enable MERAM support for the SH-Mobile LCD controller.
2004
2005 This will allow for caching of the framebuffer to provide more
2006 reliable access under heavy main memory bus traffic situations.
2007 Up to 4 memory channels can be configured, allowing 4 RGB or
2008 2 YCbCr framebuffers to be configured.
2009
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002010config FB_TMIO
2011 tristate "Toshiba Mobile IO FrameBuffer support"
2012 depends on FB && MFD_CORE
2013 select FB_CFB_FILLRECT
2014 select FB_CFB_COPYAREA
2015 select FB_CFB_IMAGEBLIT
2016 ---help---
2017 Frame buffer driver for the Toshiba Mobile IO integrated as found
2018 on the Sharp SL-6000 series
2019
2020 This driver is also available as a module ( = code which can be
2021 inserted and removed from the running kernel whenever you want). The
2022 module will be called tmiofb. If you want to compile it as a module,
2023 say M here and read <file:Documentation/kbuild/modules.txt>.
2024
2025 If unsure, say N.
2026
2027config FB_TMIO_ACCELL
2028 bool "tmiofb acceleration"
2029 depends on FB_TMIO
2030 default y
2031
Ben Dooksec549a02009-03-31 15:25:39 -07002032config FB_S3C
2033 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002034 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002035 select FB_CFB_FILLRECT
2036 select FB_CFB_COPYAREA
2037 select FB_CFB_IMAGEBLIT
2038 ---help---
2039 Frame buffer driver for the built-in FB controller in the Samsung
2040 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2041 and the S3C64XX series such as the S3C6400 and S3C6410.
2042
2043 These chips all have the same basic framebuffer design with the
2044 actual capabilities depending on the chip. For instance the S3C6400
2045 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2046 currently only have two.
2047
2048 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2049
2050config FB_S3C_DEBUG_REGWRITE
2051 bool "Debug register writes"
2052 depends on FB_S3C
2053 ---help---
2054 Show all register writes via printk(KERN_DEBUG)
2055
Arnaud Patard20fd5762005-09-09 13:10:07 -07002056config FB_S3C2410
2057 tristate "S3C2410 LCD framebuffer support"
2058 depends on FB && ARCH_S3C2410
2059 select FB_CFB_FILLRECT
2060 select FB_CFB_COPYAREA
2061 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002062 ---help---
2063 Frame buffer driver for the built-in LCD controller in the Samsung
2064 S3C2410 processor.
2065
2066 This driver is also available as a module ( = code which can be
2067 inserted and removed from the running kernel whenever you want). The
2068 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002069 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002070
2071 If unsure, say N.
2072config FB_S3C2410_DEBUG
2073 bool "S3C2410 lcd debug messages"
2074 depends on FB_S3C2410
2075 help
2076 Turn on debugging messages. Note that you can set/unset at run time
2077 through sysfs
2078
Wang Qiang86619702010-03-10 15:21:47 -08002079config FB_NUC900
2080 bool "NUC900 LCD framebuffer support"
2081 depends on FB && ARCH_W90X900
2082 select FB_CFB_FILLRECT
2083 select FB_CFB_COPYAREA
2084 select FB_CFB_IMAGEBLIT
2085 ---help---
2086 Frame buffer driver for the built-in LCD controller in the Nuvoton
2087 NUC900 processor
2088
2089config GPM1040A0_320X240
2090 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2091 depends on FB_NUC900
2092
2093config FB_NUC900_DEBUG
2094 bool "NUC900 lcd debug messages"
2095 depends on FB_NUC900
2096 help
2097 Turn on debugging messages. Note that you can set/unset at run time
2098 through sysfs
2099
Ben Dooks5fc404e2007-02-20 13:58:21 -08002100config FB_SM501
2101 tristate "Silicon Motion SM501 framebuffer support"
2102 depends on FB && MFD_SM501
2103 select FB_CFB_FILLRECT
2104 select FB_CFB_COPYAREA
2105 select FB_CFB_IMAGEBLIT
2106 ---help---
2107 Frame buffer driver for the CRT and LCD controllers in the Silicon
2108 Motion SM501.
2109
2110 This driver is also available as a module ( = code which can be
2111 inserted and removed from the running kernel whenever you want). The
2112 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002113 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002114
2115 If unsure, say N.
2116
Paul Mundt96f8d862010-11-16 14:00:24 +09002117config FB_UDL
2118 tristate "Displaylink USB Framebuffer support"
2119 depends on FB && USB
2120 select FB_MODE_HELPERS
2121 select FB_SYS_FILLRECT
2122 select FB_SYS_COPYAREA
2123 select FB_SYS_IMAGEBLIT
2124 select FB_SYS_FOPS
2125 select FB_DEFERRED_IO
2126 ---help---
2127 This is a kernel framebuffer driver for DisplayLink USB devices.
2128 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2129 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2130 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002131
Vitaly Wool36c93662006-07-03 00:24:19 -07002132config FB_PNX4008_DUM
2133 tristate "Display Update Module support on Philips PNX4008 board"
2134 depends on FB && ARCH_PNX4008
2135 ---help---
2136 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2137
2138config FB_PNX4008_DUM_RGB
2139 tristate "RGB Framebuffer support on Philips PNX4008 board"
2140 depends on FB_PNX4008_DUM
2141 select FB_CFB_FILLRECT
2142 select FB_CFB_COPYAREA
2143 select FB_CFB_IMAGEBLIT
2144 ---help---
2145 Say Y here to enable support for PNX4008 RGB Framebuffer
2146
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002147config FB_IBM_GXT4500
2148 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002149 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002150 select FB_CFB_FILLRECT
2151 select FB_CFB_COPYAREA
2152 select FB_CFB_IMAGEBLIT
2153 ---help---
2154 Say Y here to enable support for the IBM GXT4500P display
2155 adaptor, found on some IBM System P (pSeries) machines.
2156
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002157config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002158 tristate "PS3 GPU framebuffer driver"
2159 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002160 select FB_SYS_FILLRECT
2161 select FB_SYS_COPYAREA
2162 select FB_SYS_IMAGEBLIT
2163 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002164 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002165 ---help---
2166 Include support for the virtual frame buffer in the PS3 platform.
2167
2168config FB_PS3_DEFAULT_SIZE_M
2169 int "PS3 default frame buffer size (in MiB)"
2170 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002171 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002172 ---help---
2173 This is the default size (in MiB) of the virtual frame buffer in
2174 the PS3.
2175 The default value can be overridden on the kernel command line
2176 using the "ps3fb" option (e.g. "ps3fb=9M");
2177
Andrei Konovalov147394c2007-05-08 00:40:18 -07002178config FB_XILINX
2179 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002180 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002181 select FB_CFB_FILLRECT
2182 select FB_CFB_COPYAREA
2183 select FB_CFB_IMAGEBLIT
2184 ---help---
2185 Include support for the Xilinx ML300/ML403 reference design
2186 framebuffer. ML300 carries a 640*480 LCD display on the board,
2187 ML403 uses a standard DB15 VGA connector.
2188
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002189config FB_COBALT
2190 tristate "Cobalt server LCD frame buffer support"
2191 depends on FB && MIPS_COBALT
2192
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002193config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002194 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2195 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2196 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2197 select FB_CFB_FILLRECT
2198 select FB_CFB_COPYAREA
2199 select FB_CFB_IMAGEBLIT
2200 ---help---
2201 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2202 (D)STN/TFT LCD Controller.
2203 Supports display resolutions up to 1024x1024 pixel, grayscale and
2204 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2205 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2206 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002207
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002208config FB_DA8XX
2209 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2210 depends on FB && ARCH_DAVINCI_DA8XX
2211 select FB_CFB_FILLRECT
2212 select FB_CFB_COPYAREA
2213 select FB_CFB_IMAGEBLIT
2214 ---help---
2215 This is the frame buffer device driver for the TI LCD controller
2216 found on DA8xx/OMAP-L1xx SoCs.
2217 If unsure, say N.
2218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219config FB_VIRTUAL
2220 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2221 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002222 select FB_SYS_FILLRECT
2223 select FB_SYS_COPYAREA
2224 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002225 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 ---help---
2227 This is a `virtual' frame buffer device. It operates on a chunk of
2228 unswappable kernel memory instead of on the memory of a graphics
2229 board. This means you cannot see any output sent to this frame
2230 buffer device, while it does consume precious memory. The main use
2231 of this frame buffer device is testing and debugging the frame
2232 buffer subsystem. Do NOT enable it for normal systems! To protect
2233 the innocent, it has to be enabled explicitly at boot time using the
2234 kernel option `video=vfb:'.
2235
2236 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002237 module will be called vfb. In order to load it, you must use
2238 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002241
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002242config XEN_FBDEV_FRONTEND
2243 tristate "Xen virtual frame buffer support"
2244 depends on FB && XEN
2245 select FB_SYS_FILLRECT
2246 select FB_SYS_COPYAREA
2247 select FB_SYS_IMAGEBLIT
2248 select FB_SYS_FOPS
2249 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002250 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002251 default y
2252 help
2253 This driver implements the front-end of the Xen virtual
2254 frame buffer driver. It communicates with a back-end
2255 in another domain.
2256
Jaya Kumare9355082008-08-19 11:17:55 +01002257config FB_METRONOME
2258 tristate "E-Ink Metronome/8track controller support"
2259 depends on FB
2260 select FB_SYS_FILLRECT
2261 select FB_SYS_COPYAREA
2262 select FB_SYS_IMAGEBLIT
2263 select FB_SYS_FOPS
2264 select FB_DEFERRED_IO
2265 help
2266 This driver implements support for the E-Ink Metronome
2267 controller. The pre-release name for this device was 8track
2268 and could also have been called by some vendors as PVI-nnnn.
2269
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002270config FB_MB862XX
2271 tristate "Fujitsu MB862xx GDC support"
2272 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002273 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002274 select FB_CFB_FILLRECT
2275 select FB_CFB_COPYAREA
2276 select FB_CFB_IMAGEBLIT
2277 ---help---
2278 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2279
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002280choice
2281 prompt "GDC variant"
2282 depends on FB_MB862XX
2283
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002284config FB_MB862XX_PCI_GDC
2285 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002286 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002287 ---help---
2288 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2289 PCI graphics controller devices.
2290
2291config FB_MB862XX_LIME
2292 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002293 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002294 select FB_FOREIGN_ENDIAN
2295 select FB_LITTLE_ENDIAN
2296 ---help---
2297 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2298
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002299endchoice
2300
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002301config FB_MB862XX_I2C
2302 bool "Support I2C bus on MB862XX GDC"
2303 depends on FB_MB862XX && I2C
2304 default y
2305 help
2306 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2307 driver to support accessing I2C devices on controller's I2C bus.
2308 These are usually some video decoder chips.
2309
Ryan Mallon88017bd2009-09-22 16:47:09 -07002310config FB_EP93XX
2311 tristate "EP93XX frame buffer support"
2312 depends on FB && ARCH_EP93XX
2313 select FB_CFB_FILLRECT
2314 select FB_CFB_COPYAREA
2315 select FB_CFB_IMAGEBLIT
2316 ---help---
2317 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2318 This driver is also available as a module. The module will be called
2319 ep93xx-fb.
2320
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002321config FB_PRE_INIT_FB
2322 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002323 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002324 ---help---
2325 Select this option if display contents should be inherited as set by
2326 the bootloader.
2327
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002328config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002329 tristate "MX3 Framebuffer support"
2330 depends on FB && MX3_IPU
2331 select FB_CFB_FILLRECT
2332 select FB_CFB_COPYAREA
2333 select FB_CFB_IMAGEBLIT
2334 default y
2335 help
2336 This is a framebuffer device for the i.MX31 LCD Controller. So
2337 far only synchronous displays are supported. If you plan to use
2338 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002339
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002340config FB_BROADSHEET
2341 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2342 depends on FB
2343 select FB_SYS_FILLRECT
2344 select FB_SYS_COPYAREA
2345 select FB_SYS_IMAGEBLIT
2346 select FB_SYS_FOPS
2347 select FB_DEFERRED_IO
2348 help
2349 This driver implements support for the E-Ink Broadsheet
2350 controller. The release name for this device was Epson S1D13521
2351 and could also have been called by other names when coupled with
2352 a bridge adapter.
2353
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002354config FB_JZ4740
2355 tristate "JZ4740 LCD framebuffer support"
2356 depends on FB && MACH_JZ4740
2357 select FB_SYS_FILLRECT
2358 select FB_SYS_COPYAREA
2359 select FB_SYS_IMAGEBLIT
2360 help
2361 Framebuffer support for the JZ4740 SoC.
2362
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002363config FB_MXS
2364 tristate "MXS LCD framebuffer support"
2365 depends on FB && ARCH_MXS
2366 select FB_CFB_FILLRECT
2367 select FB_CFB_COPYAREA
2368 select FB_CFB_IMAGEBLIT
2369 help
2370 Framebuffer support for the MXS SoC.
2371
GuanXuetaoce443ab2011-02-26 21:39:10 +08002372config FB_PUV3_UNIGFX
2373 tristate "PKUnity v3 Unigfx framebuffer support"
2374 depends on FB && UNICORE32 && ARCH_PUV3
2375 select FB_SYS_FILLRECT
2376 select FB_SYS_COPYAREA
2377 select FB_SYS_IMAGEBLIT
2378 select FB_SYS_FOPS
2379 help
2380 Choose this option if you want to use the Unigfx device as a
2381 framebuffer device. Without the support of PCI & AGP.
2382
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002383source "drivers/video/msm/Kconfig"
2384
Randy Dunlapf08f3892007-10-29 14:37:16 -07002385source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002386source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002387
Randy Dunlap179b0252007-10-16 01:29:39 -07002388source "drivers/video/backlight/Kconfig"
2389source "drivers/video/display/Kconfig"
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391if VT
2392 source "drivers/video/console/Kconfig"
2393endif
2394
2395if FB || SGI_NEWPORT_CONSOLE
2396 source "drivers/video/logo/Kconfig"
2397endif
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399endmenu