blob: 8bda6131ae3e2293db17be5119ce264565a6fec0 [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
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070024config VGASTATE
25 tristate
26 default n
27
Luming Yu23b0f012007-05-09 21:07:05 +080028config VIDEO_OUTPUT_CONTROL
29 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080030 help
31 This framework adds support for low-level control of the video
32 output switch.
33
Tomi Valkeinena38884f2013-03-12 10:15:43 +020034config VIDEOMODE_HELPERS
35 bool
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020036
Thierry Redingf142d3b2012-11-21 15:29:29 +010037config HDMI
38 bool
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
Jaya Kumar60b59be2007-05-08 00:37:37 -0700197config FB_DEFERRED_IO
198 bool
199 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700200
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700201config FB_HECUBA
202 tristate
203 depends on FB
204 depends on FB_DEFERRED_IO
205
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800206config FB_SVGALIB
207 tristate
208 depends on FB
209 default n
210 ---help---
211 Common utility functions useful to fbdev drivers of VGA-based
212 cards.
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214config FB_MACMODES
215 tristate
216 depends on FB
217 default n
218
Michael Hanselmann5474c122006-06-25 05:47:08 -0700219config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700220 bool
221 depends on FB
222 select BACKLIGHT_LCD_SUPPORT
223 select BACKLIGHT_CLASS_DEVICE
224 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226config FB_MODE_HELPERS
227 bool "Enable Video Mode Handling Helpers"
228 depends on FB
229 default n
230 ---help---
231 This enables functions for handling video modes using the
232 Generalized Timing Formula and the EDID parser. A few drivers rely
233 on this feature such as the radeonfb, rivafb, and the i810fb. If
234 your driver does not take advantage of this feature, choosing Y will
235 just increase the kernel size by about 5K.
236
237config FB_TILEBLITTING
238 bool "Enable Tile Blitting Support"
239 depends on FB
240 default n
241 ---help---
242 This enables tile blitting. Tile blitting is a drawing technique
243 where the screen is divided into rectangular sections (tiles), whereas
244 the standard blitting divides the screen into pixels. Because the
245 default drawing element is a tile, drawing functions will be passed
246 parameters in terms of number of tiles instead of number of pixels.
247 For example, to draw a single character, instead of using bitmaps,
248 an index to an array of bitmaps will be used. To clear or move a
249 rectangular section of a screen, the rectangle will be described in
250 terms of number of tiles in the x- and y-axis.
251
252 This is particularly important to one driver, matroxfb. If
253 unsure, say N.
254
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700255comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000256 depends on FB
257
Kristoffer Glemboa4b8f972011-07-05 09:29:19 +0200258config FB_GRVGA
259 tristate "Aeroflex Gaisler framebuffer support"
260 depends on FB && SPARC
261 select FB_CFB_FILLRECT
262 select FB_CFB_COPYAREA
263 select FB_CFB_IMAGEBLIT
264 ---help---
265 This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267config FB_CIRRUS
268 tristate "Cirrus Logic support"
269 depends on FB && (ZORRO || PCI)
270 select FB_CFB_FILLRECT
271 select FB_CFB_COPYAREA
272 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 ---help---
274 This enables support for Cirrus Logic GD542x/543x based boards on
275 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
276
277 If you have a PCI-based system, this enables support for these
278 chips: GD-543x, GD-544x, GD-5480.
279
280 Please read the file <file:Documentation/fb/cirrusfb.txt>.
281
282 Say N unless you have such a graphics board or plan to get one
283 before you next recompile the kernel.
284
285config FB_PM2
286 tristate "Permedia2 support"
287 depends on FB && ((AMIGA && BROKEN) || PCI)
288 select FB_CFB_FILLRECT
289 select FB_CFB_COPYAREA
290 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700292 This is the frame buffer device driver for cards based on
293 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
294 The driver was tested on the following cards:
295 Diamond FireGL 1000 PRO AGP
296 ELSA Gloria Synergy PCI
297 Appian Jeronimo PRO (both heads) PCI
298 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
299 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
300 ASK Graphic Blaster Exxtreme AGP
301
302 To compile this driver as a module, choose M here: the
303 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305config FB_PM2_FIFO_DISCONNECT
306 bool "enable FIFO disconnect feature"
307 depends on FB_PM2 && PCI
308 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700309 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311config FB_ARMCLCD
312 tristate "ARM PrimeCell PL110 support"
313 depends on FB && ARM && ARM_AMBA
314 select FB_CFB_FILLRECT
315 select FB_CFB_COPYAREA
316 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 help
318 This framebuffer device driver is for the ARM PrimeCell PL110
319 Colour LCD controller. ARM PrimeCells provide the building
320 blocks for System on a Chip devices.
321
322 If you want to compile this as a module (=code which can be
323 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500324 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 will be called amba-clcd.
326
327config FB_ACORN
328 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000329 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 select FB_CFB_FILLRECT
331 select FB_CFB_COPYAREA
332 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 help
334 This is the frame buffer device driver for the Acorn VIDC graphics
335 hardware found in Acorn RISC PCs and other ARM-based machines. If
336 unsure, say N.
337
338config FB_CLPS711X
339 bool "CLPS711X LCD support"
340 depends on (FB = y) && ARM && ARCH_CLPS711X
341 select FB_CFB_FILLRECT
342 select FB_CFB_COPYAREA
343 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800344 help
345 Say Y to enable the Framebuffer driver for the CLPS7111 and
346 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348config FB_SA1100
349 bool "SA-1100 LCD support"
350 depends on (FB = y) && ARM && ARCH_SA1100
351 select FB_CFB_FILLRECT
352 select FB_CFB_COPYAREA
353 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 help
355 This is a framebuffer device for the SA-1100 LCD Controller.
356 See <http://www.linux-fbdev.org/> for information on framebuffer
357 devices.
358
359 If you plan to use the LCD display with your SA-1100 system, say
360 Y here.
361
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700362config FB_IMX
Fabio Estevamd04d2682013-02-21 16:42:24 -0800363 tristate "Freescale i.MX1/21/25/27 LCD support"
Sascha Hauerf142b612011-03-03 15:12:44 +0100364 depends on FB && IMX_HAVE_PLATFORM_IMX_FB
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700365 select FB_CFB_FILLRECT
366 select FB_CFB_COPYAREA
367 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369config FB_CYBER2000
370 tristate "CyberPro 2000/2010/5000 support"
371 depends on FB && PCI && (BROKEN || !SPARC64)
372 select FB_CFB_FILLRECT
373 select FB_CFB_COPYAREA
374 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 help
376 This enables support for the Integraphics CyberPro 20x0 and 5000
377 VGA chips used in the Rebel.com Netwinder and other machines.
378 Say Y if you have a NetWinder or a graphics card containing this
379 device, otherwise say N.
380
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200381config FB_CYBER2000_DDC
382 bool "DDC for CyberPro support"
383 depends on FB_CYBER2000
384 select FB_DDC
385 default y
386 help
387 Say Y here if you want DDC support for your CyberPro graphics
388 card. This is only I2C bus support, driver does not use EDID.
389
Russell Kingb7ca01a2010-08-02 09:57:07 +0100390config FB_CYBER2000_I2C
391 bool "CyberPro 2000/2010/5000 I2C support"
392 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
393 select I2C_ALGOBIT
394 help
395 Enable support for the I2C video decoder interface on the
396 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
397 on the Netwinder machines for the SAA7111 video capture.
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399config FB_APOLLO
400 bool
401 depends on (FB = y) && APOLLO
402 default y
403 select FB_CFB_FILLRECT
404 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406config FB_Q40
407 bool
408 depends on (FB = y) && Q40
409 default y
410 select FB_CFB_FILLRECT
411 select FB_CFB_COPYAREA
412 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414config FB_AMIGA
415 tristate "Amiga native chipset support"
416 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 help
418 This is the frame buffer device driver for the builtin graphics
419 chipset found in Amigas.
420
421 To compile this driver as a module, choose M here: the
422 module will be called amifb.
423
424config FB_AMIGA_OCS
425 bool "Amiga OCS chipset support"
426 depends on FB_AMIGA
427 help
428 This enables support for the original Agnus and Denise video chips,
429 found in the Amiga 1000 and most A500's and A2000's. If you intend
430 to run Linux on any of these systems, say Y; otherwise say N.
431
432config FB_AMIGA_ECS
433 bool "Amiga ECS chipset support"
434 depends on FB_AMIGA
435 help
436 This enables support for the Enhanced Chip Set, found in later
437 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
438 you intend to run Linux on any of these systems, say Y; otherwise
439 say N.
440
441config FB_AMIGA_AGA
442 bool "Amiga AGA chipset support"
443 depends on FB_AMIGA
444 help
445 This enables support for the Advanced Graphics Architecture (also
446 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
447 and CD32. If you intend to run Linux on any of these systems, say Y;
448 otherwise say N.
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450config FB_FM2
451 bool "Amiga FrameMaster II/Rainbow II support"
452 depends on (FB = y) && ZORRO
453 select FB_CFB_FILLRECT
454 select FB_CFB_COPYAREA
455 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 help
457 This is the frame buffer device driver for the Amiga FrameMaster
458 card from BSC (exhibited 1992 but not shipped as a CBM product).
459
Jaya Kumar1154ea72005-06-21 17:17:04 -0700460config FB_ARC
461 tristate "Arc Monochrome LCD board support"
462 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700463 select FB_SYS_FILLRECT
464 select FB_SYS_COPYAREA
465 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700466 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700467 help
468 This enables support for the Arc Monochrome LCD board. The board
469 is based on the KS-108 lcd controller and is typically a matrix
470 of 2*n chips. This driver was tested with a 128x64 panel. This
471 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200472 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700473 this driver, say Y or M; otherwise say N. You must specify the
474 GPIO IO address to be used for setting control and data.
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476config FB_ATARI
477 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200478 depends on (FB = y) && ATARI
479 select FB_CFB_FILLRECT
480 select FB_CFB_COPYAREA
481 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 help
483 This is the frame buffer device driver for the builtin graphics
484 chipset found in Ataris.
485
486config FB_OF
487 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100488 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 select FB_CFB_FILLRECT
490 select FB_CFB_COPYAREA
491 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 select FB_MACMODES
493 help
494 Say Y if you want support with Open Firmware for your graphics
495 board.
496
497config FB_CONTROL
498 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700499 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 select FB_CFB_FILLRECT
501 select FB_CFB_COPYAREA
502 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 select FB_MACMODES
504 help
505 This driver supports a frame buffer for the graphics adapter in the
506 Power Macintosh 7300 and others.
507
508config FB_PLATINUM
509 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700510 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 select FB_CFB_FILLRECT
512 select FB_CFB_COPYAREA
513 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 select FB_MACMODES
515 help
516 This driver supports a frame buffer for the "platinum" graphics
517 adapter in some Power Macintoshes.
518
519config FB_VALKYRIE
520 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700521 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 select FB_CFB_FILLRECT
523 select FB_CFB_COPYAREA
524 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 select FB_MACMODES
526 help
527 This driver supports a frame buffer for the "valkyrie" graphics
528 adapter in some Power Macintoshes.
529
530config FB_CT65550
531 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800532 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 select FB_CFB_FILLRECT
534 select FB_CFB_COPYAREA
535 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 help
537 This is the frame buffer device driver for the Chips & Technologies
538 65550 graphics chip in PowerBooks.
539
540config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800541 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 depends on (FB = y) && PCI
543 select FB_CFB_FILLRECT
544 select FB_CFB_COPYAREA
545 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700546 help
547 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549config FB_IMSTT
550 bool "IMS Twin Turbo display support"
551 depends on (FB = y) && PCI
552 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 select FB_MACMODES if PPC
554 help
555 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
556 many Macintosh and compatible computers.
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558config FB_VGA16
559 tristate "VGA 16-color graphics support"
560 depends on FB && (X86 || PPC)
561 select FB_CFB_FILLRECT
562 select FB_CFB_COPYAREA
563 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700564 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700565 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 help
567 This is the frame buffer device driver for VGA 16 color graphic
568 cards. Say Y if you have such a card.
569
570 To compile this driver as a module, choose M here: the
571 module will be called vga16fb.
572
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700573config FB_BF54X_LQ043
574 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700575 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700576 select FB_CFB_FILLRECT
577 select FB_CFB_COPYAREA
578 select FB_CFB_IMAGEBLIT
579 help
580 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
581
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700582config FB_BFIN_T350MCQB
583 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
584 depends on FB && BLACKFIN
585 select BFIN_GPTIMERS
586 select FB_CFB_FILLRECT
587 select FB_CFB_COPYAREA
588 select FB_CFB_IMAGEBLIT
589 help
590 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
591 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
592 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
593
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800594config FB_BFIN_LQ035Q1
595 tristate "SHARP LQ035Q1DH02 TFT LCD"
596 depends on FB && BLACKFIN && SPI
597 select FB_CFB_FILLRECT
598 select FB_CFB_COPYAREA
599 select FB_CFB_IMAGEBLIT
600 select BFIN_GPTIMERS
601 help
602 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
603 the Blackfin Landscape LCD EZ-Extender Card.
604 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
605 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
606
607 To compile this driver as a module, choose M here: the
608 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700609
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000610config FB_BF537_LQ035
611 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
612 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
613 select FB_CFB_FILLRECT
614 select FB_CFB_COPYAREA
615 select FB_CFB_IMAGEBLIT
616 select BFIN_GPTIMERS
617 help
618 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
619 attached to a BF537.
620
621 To compile this driver as a module, choose M here: the
622 module will be called bf537-lq035.
623
Michael Hennerichcffd9342010-11-24 09:33:59 +0000624config FB_BFIN_7393
625 tristate "Blackfin ADV7393 Video encoder"
626 depends on FB && BLACKFIN
627 select I2C
628 select FB_CFB_FILLRECT
629 select FB_CFB_COPYAREA
630 select FB_CFB_IMAGEBLIT
631 help
632 This is the framebuffer device for a ADV7393 video encoder
633 attached to a Blackfin on the PPI port.
634 If your Blackfin board has a ADV7393 select Y.
635
636 To compile this driver as a module, choose M here: the
637 module will be called bfin_adv7393fb.
638
639choice
640 prompt "Video mode support"
641 depends on FB_BFIN_7393
642 default NTSC
643
644config NTSC
645 bool 'NTSC 720x480'
646
647config PAL
648 bool 'PAL 720x576'
649
650config NTSC_640x480
651 bool 'NTSC 640x480 (Experimental)'
652
653config PAL_640x480
654 bool 'PAL 640x480 (Experimental)'
655
656config NTSC_YCBCR
657 bool 'NTSC 720x480 YCbCR input'
658
659config PAL_YCBCR
660 bool 'PAL 720x576 YCbCR input'
661
662endchoice
663
664choice
665 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
666 depends on (FB_BFIN_7393)
667 default ADV7393_1XMEM
668
669config ADV7393_1XMEM
670 bool 'Single'
671
672config ADV7393_2XMEM
673 bool 'Double'
674endchoice
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676config FB_STI
677 tristate "HP STI frame buffer device support"
678 depends on FB && PARISC
679 select FB_CFB_FILLRECT
680 select FB_CFB_COPYAREA
681 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000682 select STI_CONSOLE
683 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 default y
685 ---help---
686 STI refers to the HP "Standard Text Interface" which is a set of
687 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
688 Enabling this option will implement the linux framebuffer device
689 using calls to the STI BIOS routines for initialisation.
690
691 If you enable this option, you will get a planar framebuffer device
692 /dev/fb which will work on the most common HP graphic cards of the
693 NGLE family, including the artist chips (in the 7xx and Bxxx series),
694 HCRX, HCRX24, CRX, CRX24 and VisEG series.
695
696 It is safe to enable this option, so you should probably say "Y".
697
698config FB_MAC
699 bool "Generic Macintosh display support"
700 depends on (FB = y) && MAC
701 select FB_CFB_FILLRECT
702 select FB_CFB_COPYAREA
703 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 select FB_MACMODES
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706config FB_HP300
707 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200708 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 default y
711
712config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700713 tristate "TGA/SFB+ framebuffer support"
714 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 select FB_CFB_FILLRECT
716 select FB_CFB_COPYAREA
717 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800718 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700719 ---help---
720 This is the frame buffer device driver for generic TGA and SFB+
721 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
722 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
723 TURBOchannel cards, also known as PMAGD-A, -B and -C.
724
725 Due to hardware limitations ZLX-E2 and E3 cards are not supported
726 for DECstation 5000/200 systems. Additionally due to firmware
727 limitations these cards may cause troubles with booting DECstation
728 5000/240 and /260 systems, but are fully supported under Linux if
729 you manage to get it going. ;-)
730
731 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700733config FB_UVESA
734 tristate "Userspace VESA VGA graphics support"
735 depends on FB && CONNECTOR
736 select FB_CFB_FILLRECT
737 select FB_CFB_COPYAREA
738 select FB_CFB_IMAGEBLIT
739 select FB_MODE_HELPERS
740 help
741 This is the frame buffer driver for generic VBE 2.0 compliant
742 graphic cards. It can also take advantage of VBE 3.0 features,
743 such as refresh rate adjustment.
744
745 This driver generally provides more features than vesafb but
746 requires a userspace helper application called 'v86d'. See
747 <file:Documentation/fb/uvesafb.txt> for more information.
748
749 If unsure, say N.
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751config FB_VESA
752 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800753 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 select FB_CFB_FILLRECT
755 select FB_CFB_COPYAREA
756 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700757 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 help
759 This is the frame buffer device driver for generic VESA 2.0
760 compliant graphic cards. The older VESA 1.2 cards are not supported.
761 You will get a boot time penguin logo at no additional cost. Please
762 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
763
Huang, Ying7c831722007-11-28 16:21:55 -0800764config FB_EFI
765 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700766 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700767 select FB_CFB_FILLRECT
768 select FB_CFB_COPYAREA
769 select FB_CFB_IMAGEBLIT
770 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700771 This is the EFI frame buffer device driver. If the firmware on
772 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
773 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700774
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700775config FB_N411
776 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700777 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700778 select FB_SYS_FILLRECT
779 select FB_SYS_COPYAREA
780 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700781 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700782 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700783 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700784 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700785 This enables support for the Apollo display controller in its
786 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788config FB_HGA
789 tristate "Hercules mono graphics support"
790 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 help
792 Say Y here if you have a Hercules mono graphics card.
793
794 To compile this driver as a module, choose M here: the
795 module will be called hgafb.
796
Brent Cook529ed802010-12-31 05:56:50 +0000797 As this card technology is at least 25 years old,
798 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800config FB_SGIVW
801 tristate "SGI Visual Workstation framebuffer support"
802 depends on FB && X86_VISWS
803 select FB_CFB_FILLRECT
804 select FB_CFB_COPYAREA
805 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 help
807 SGI Visual Workstation support for framebuffer graphics.
808
809config FB_GBE
810 bool "SGI Graphics Backend frame buffer support"
811 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
812 select FB_CFB_FILLRECT
813 select FB_CFB_COPYAREA
814 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 help
816 This is the frame buffer device driver for SGI Graphics Backend.
817 This chip is used in SGI O2 and Visual Workstation 320/540.
818
819config FB_GBE_MEM
820 int "Video memory size in MB"
821 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800822 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 help
824 This is the amount of memory reserved for the framebuffer,
825 which can be any value between 1MB and 8MB.
826
Mark Fortescue1a571982005-11-29 19:34:44 -0800827config FB_SBUS
828 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800829 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800830 help
831 Say Y if you want support for SBUS or UPA based frame buffer device.
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833config FB_BW2
834 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800835 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 select FB_CFB_FILLRECT
837 select FB_CFB_COPYAREA
838 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 help
840 This is the frame buffer device driver for the BWtwo frame buffer.
841
842config FB_CG3
843 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800844 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800845 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 select FB_CFB_COPYAREA
847 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 help
849 This is the frame buffer device driver for the CGthree frame buffer.
850
851config FB_CG6
852 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800853 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 select FB_CFB_COPYAREA
855 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 help
857 This is the frame buffer device driver for the CGsix (GX, TurboGX)
858 frame buffer.
859
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700860config FB_FFB
861 bool "Creator/Creator3D/Elite3D support"
862 depends on FB_SBUS && SPARC64
863 select FB_CFB_COPYAREA
864 select FB_CFB_IMAGEBLIT
865 help
866 This is the frame buffer device driver for the Creator, Creator3D,
867 and Elite3D graphics boards.
868
869config FB_TCX
870 bool "TCX (SS4/SS5 only) support"
871 depends on FB_SBUS
872 select FB_CFB_FILLRECT
873 select FB_CFB_COPYAREA
874 select FB_CFB_IMAGEBLIT
875 help
876 This is the frame buffer device driver for the TCX 24/8bit frame
877 buffer.
878
879config FB_CG14
880 bool "CGfourteen (SX) support"
881 depends on FB_SBUS
882 select FB_CFB_FILLRECT
883 select FB_CFB_COPYAREA
884 select FB_CFB_IMAGEBLIT
885 help
886 This is the frame buffer device driver for the CGfourteen frame
887 buffer on Desktop SPARCsystems with the SX graphics option.
888
889config FB_P9100
890 bool "P9100 (Sparcbook 3 only) support"
891 depends on FB_SBUS
892 select FB_CFB_FILLRECT
893 select FB_CFB_COPYAREA
894 select FB_CFB_IMAGEBLIT
895 help
896 This is the frame buffer device driver for the P9100 card
897 supported on Sparcbook 3 machines.
898
899config FB_LEO
900 bool "Leo (ZX) support"
901 depends on FB_SBUS
902 select FB_CFB_FILLRECT
903 select FB_CFB_COPYAREA
904 select FB_CFB_IMAGEBLIT
905 help
906 This is the frame buffer device driver for the SBUS-based Sun ZX
907 (leo) frame buffer cards.
908
909config FB_IGA
910 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700911 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700912 select FB_CFB_FILLRECT
913 select FB_CFB_COPYAREA
914 select FB_CFB_IMAGEBLIT
915 help
916 This is the framebuffer device for the INTERGRAPHICS 1680 and
917 successor frame buffer cards.
918
919config FB_XVR500
920 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700921 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700922 select FB_CFB_FILLRECT
923 select FB_CFB_COPYAREA
924 select FB_CFB_IMAGEBLIT
925 help
926 This is the framebuffer device for the Sun XVR-500 and similar
927 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200928 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700929 mostly initialized the card already. It is treated as a
930 completely dumb framebuffer device.
931
932config FB_XVR2500
933 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700934 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700935 select FB_CFB_FILLRECT
936 select FB_CFB_COPYAREA
937 select FB_CFB_IMAGEBLIT
938 help
939 This is the framebuffer device for the Sun XVR-2500 and similar
940 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200941 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700942 mostly initialized the card already. It is treated as a
943 completely dumb framebuffer device.
944
David S. Miller2d378b92010-03-13 16:25:03 -0800945config FB_XVR1000
946 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700947 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800948 select FB_CFB_FILLRECT
949 select FB_CFB_COPYAREA
950 select FB_CFB_IMAGEBLIT
951 help
952 This is the framebuffer device for the Sun XVR-1000 and similar
953 graphics cards. The driver only works on sparc64 systems where
954 the system firmware has mostly initialized the card already. It
955 is treated as a completely dumb framebuffer device.
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957config FB_PVR2
958 tristate "NEC PowerVR 2 display support"
959 depends on FB && SH_DREAMCAST
960 select FB_CFB_FILLRECT
961 select FB_CFB_COPYAREA
962 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 ---help---
964 Say Y here if you have a PowerVR 2 card in your box. If you plan to
965 run linux on your Dreamcast, you will have to say Y here.
966 This driver may or may not work on other PowerVR 2 cards, but is
967 totally untested. Use at your own risk. If unsure, say N.
968
969 To compile this driver as a module, choose M here: the
970 module will be called pvr2fb.
971
972 You can pass several parameters to the driver at boot time or at
973 module load time. The parameters look like "video=pvr2:XXX", where
974 the meaning of XXX can be found at the end of the main source file
975 (<file:drivers/video/pvr2fb.c>). Please see the file
976 <file:Documentation/fb/pvr2fb.txt>.
977
Randy Dunlapecc41d52005-11-07 01:00:29 -0800978config FB_S1D13XXX
979 tristate "Epson S1D13XXX framebuffer support"
980 depends on FB
981 select FB_CFB_FILLRECT
982 select FB_CFB_COPYAREA
983 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800984 help
985 Support for S1D13XXX framebuffer device family (currently only
986 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200987 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800988
Nicolas Ferre14340582007-05-10 22:23:26 -0700989config FB_ATMEL
990 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +0200991 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -0700992 select FB_CFB_FILLRECT
993 select FB_CFB_COPYAREA
994 select FB_CFB_IMAGEBLIT
995 help
996 This enables support for the AT91/AT32 LCD Controller.
997
998config FB_INTSRAM
999 bool "Frame Buffer in internal SRAM"
1000 depends on FB_ATMEL && ARCH_AT91SAM9261
1001 help
1002 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1003 to let frame buffer in external SDRAM.
1004
Nicolas Ferre250a2692007-07-21 04:37:59 -07001005config FB_ATMEL_STN
1006 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001007 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001008 default n
1009 help
1010 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1011 Controller. Say N if you want to connect a TFT.
1012
1013 If unsure, say N.
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015config FB_NVIDIA
1016 tristate "nVidia Framebuffer Support"
1017 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001018 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 select FB_MODE_HELPERS
1020 select FB_CFB_FILLRECT
1021 select FB_CFB_COPYAREA
1022 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001023 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001024 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 help
1026 This driver supports graphics boards with the nVidia chips, TNT
1027 and newer. For very old chipsets, such as the RIVA128, then use
1028 the rivafb.
1029 Say Y if you have such a graphics board.
1030
1031 To compile this driver as a module, choose M here: the
1032 module will be called nvidiafb.
1033
1034config FB_NVIDIA_I2C
1035 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001036 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001037 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 help
1039 This enables I2C support for nVidia Chipsets. This is used
1040 only for getting EDID information from the attached display
1041 allowing for robust video mode handling and switching.
1042
1043 Because fbdev-2.6 requires that drivers must be able to
1044 independently validate video mode parameters, you should say Y
1045 here.
1046
Jean Delvare647f2e72007-05-10 22:23:29 -07001047config FB_NVIDIA_DEBUG
1048 bool "Lots of debug output"
1049 depends on FB_NVIDIA
1050 default n
1051 help
1052 Say Y here if you want the nVidia driver to output all sorts
1053 of debugging information to provide to the maintainer when
1054 something goes wrong.
1055
Michael Hanselmann5474c122006-06-25 05:47:08 -07001056config FB_NVIDIA_BACKLIGHT
1057 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001058 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001059 default y
1060 help
1061 Say Y here if you want to control the backlight of your display.
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063config FB_RIVA
1064 tristate "nVidia Riva support"
1065 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001066 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 select FB_MODE_HELPERS
1068 select FB_CFB_FILLRECT
1069 select FB_CFB_COPYAREA
1070 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001071 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001072 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 help
1074 This driver supports graphics boards with the nVidia Riva/Geforce
1075 chips.
1076 Say Y if you have such a graphics board.
1077
1078 To compile this driver as a module, choose M here: the
1079 module will be called rivafb.
1080
1081config FB_RIVA_I2C
1082 bool "Enable DDC Support"
1083 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001084 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 help
1086 This enables I2C support for nVidia Chipsets. This is used
1087 only for getting EDID information from the attached display
1088 allowing for robust video mode handling and switching.
1089
1090 Because fbdev-2.6 requires that drivers must be able to
1091 independently validate video mode parameters, you should say Y
1092 here.
1093
1094config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001095 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 depends on FB_RIVA
1097 default n
1098 help
1099 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001100 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 something goes wrong.
1102
Michael Hanselmann5474c122006-06-25 05:47:08 -07001103config FB_RIVA_BACKLIGHT
1104 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001105 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001106 default y
1107 help
1108 Say Y here if you want to control the backlight of your display.
1109
Ondrej Zary5350c652012-02-10 18:59:17 +01001110config FB_I740
Kees Cookd1d34222013-01-16 18:53:57 -08001111 tristate "Intel740 support"
1112 depends on FB && PCI
Ondrej Zary5350c652012-02-10 18:59:17 +01001113 select FB_MODE_HELPERS
1114 select FB_CFB_FILLRECT
1115 select FB_CFB_COPYAREA
1116 select FB_CFB_IMAGEBLIT
1117 select VGASTATE
1118 select FB_DDC
1119 help
1120 This driver supports graphics cards based on Intel740 chip.
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122config FB_I810
Kees Cookd1d34222013-01-16 18:53:57 -08001123 tristate "Intel 810/815 support"
1124 depends on FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 select FB_MODE_HELPERS
1126 select FB_CFB_FILLRECT
1127 select FB_CFB_COPYAREA
1128 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001129 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 help
1131 This driver supports the on-board graphics built in to the Intel 810
1132 and 815 chipsets. Say Y if you have and plan to use such a board.
1133
1134 To compile this driver as a module, choose M here: the
1135 module will be called i810fb.
1136
1137 For more information, please read
1138 <file:Documentation/fb/intel810.txt>
1139
1140config FB_I810_GTF
1141 bool "use VESA Generalized Timing Formula"
1142 depends on FB_I810
1143 help
1144 If you say Y, then the VESA standard, Generalized Timing Formula
1145 or GTF, will be used to calculate the required video timing values
1146 per video mode. Since the GTF allows nondiscrete timings
1147 (nondiscrete being a range of values as opposed to discrete being a
1148 set of values), you'll be able to use any combination of horizontal
1149 and vertical resolutions, and vertical refresh rates without having
1150 to specify your own timing parameters. This is especially useful
1151 to maximize the performance of an aging display, or if you just
1152 have a display with nonstandard dimensions. A VESA compliant
1153 monitor is recommended, but can still work with non-compliant ones.
1154 If you need or want this, then select this option. The timings may
1155 not be compliant with Intel's recommended values. Use at your own
1156 risk.
1157
1158 If you say N, the driver will revert to discrete video timings
1159 using a set recommended by Intel in their documentation.
1160
1161 If unsure, say N.
1162
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001163config FB_I810_I2C
1164 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001165 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001166 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001167 help
1168
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001169config FB_LE80578
1170 tristate "Intel LE80578 (Vermilion) support"
1171 depends on FB && PCI && X86
1172 select FB_MODE_HELPERS
1173 select FB_CFB_FILLRECT
1174 select FB_CFB_COPYAREA
1175 select FB_CFB_IMAGEBLIT
1176 help
1177 This driver supports the LE80578 (Vermilion Range) chipset
1178
1179config FB_CARILLO_RANCH
1180 tristate "Intel Carillo Ranch support"
1181 depends on FB_LE80578 && FB && PCI && X86
1182 help
1183 This driver supports the LE80578 (Carillo Ranch) board
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185config FB_INTEL
Kees Cookd1d34222013-01-16 18:53:57 -08001186 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support"
1187 depends on FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 select FB_MODE_HELPERS
1189 select FB_CFB_FILLRECT
1190 select FB_CFB_COPYAREA
1191 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001192 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001193 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 help
1195 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001196 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 Say Y if you have and plan to use such a board.
1198
Krzysztof Helt4b198282009-06-18 16:49:21 -07001199 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1200
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001201 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 module will be called intelfb.
1203
Christian Merkled463d342006-08-22 10:07:01 +10001204 For more information, please read <file:Documentation/fb/intelfb.txt>
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001207 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 depends on FB_INTEL
1209 ---help---
1210 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001211 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 something goes wrong.
1213
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001214config FB_INTEL_I2C
1215 bool "DDC/I2C for Intel framebuffer support"
1216 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001217 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001218 default y
1219 help
1220 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222config FB_MATROX
1223 tristate "Matrox acceleration"
1224 depends on FB && PCI
1225 select FB_CFB_FILLRECT
1226 select FB_CFB_COPYAREA
1227 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 select FB_TILEBLITTING
1229 select FB_MACMODES if PPC_PMAC
1230 ---help---
1231 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1232 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1233 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1234 Matrox G400, G450 or G550 card in your box.
1235
1236 To compile this driver as a module, choose M here: the
1237 module will be called matroxfb.
1238
1239 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001240 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 are described in <file:Documentation/fb/matroxfb.txt>.
1242
1243config FB_MATROX_MILLENIUM
1244 bool "Millennium I/II support"
1245 depends on FB_MATROX
1246 help
1247 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1248 video card. If you select "Advanced lowlevel driver options" below,
1249 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1250 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1251 also use font widths different from 8.
1252
1253config FB_MATROX_MYSTIQUE
1254 bool "Mystique support"
1255 depends on FB_MATROX
1256 help
1257 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1258 video card. If you select "Advanced lowlevel driver options" below,
1259 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1260 packed pixel and 32 bpp packed pixel. You can also use font widths
1261 different from 8.
1262
1263config FB_MATROX_G
1264 bool "G100/G200/G400/G450/G550 support"
1265 depends on FB_MATROX
1266 ---help---
1267 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1268 video card. If you select "Advanced lowlevel driver options", you
1269 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1270 pixel and 32 bpp packed pixel. You can also use font widths
1271 different from 8.
1272
Jean Delvareee831262009-05-12 13:19:41 -07001273 If you need support for G400 secondary head, you must say Y to
1274 "Matrox I2C support" and "G400 second head support" right below.
1275 G450/G550 secondary head and digital output are supported without
1276 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 The driver starts in monitor mode. You must use the matroxset tool
1279 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1280 swap primary and secondary head outputs, or to change output mode.
1281 Secondary head driver always start in 640x480 resolution and you
1282 must use fbset to change it.
1283
1284 Do not forget that second head supports only 16 and 32 bpp
1285 packed pixels, so it is a good idea to compile them into the kernel
1286 too. You can use only some font widths, as the driver uses generic
1287 painting procedures (the secondary head does not use acceleration
1288 engine).
1289
1290 G450/G550 hardware can display TV picture only from secondary CRTC,
1291 and it performs no scaling, so picture must have 525 or 625 lines.
1292
1293config FB_MATROX_I2C
1294 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001295 depends on FB_MATROX
1296 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 ---help---
1298 This drivers creates I2C buses which are needed for accessing the
1299 DDC (I2C) bus present on all Matroxes, an I2C bus which
1300 interconnects Matrox optional devices, like MGA-TVO on G200 and
1301 G400, and the secondary head DDC bus, present on G400 only.
1302
1303 You can say Y or M here if you want to experiment with monitor
1304 detection code. You must say Y or M here if you want to use either
1305 second head of G400 or MGA-TVO on G200 or G400.
1306
1307 If you compile it as module, it will create a module named
1308 i2c-matroxfb.
1309
1310config FB_MATROX_MAVEN
1311 tristate "G400 second head support"
1312 depends on FB_MATROX_G && FB_MATROX_I2C
1313 ---help---
1314 WARNING !!! This support does not work with G450 !!!
1315
1316 Say Y or M here if you want to use a secondary head (meaning two
1317 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1318 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1319 secondary head output is blanked while you are in X. With XFree
1320 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1321 the fbdev driver on first head and the fbdev driver on second head.
1322
1323 If you compile it as module, two modules are created,
1324 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1325 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1326 also load i2c-matroxfb to get it to run.
1327
1328 The driver starts in monitor mode and you must use the matroxset
1329 tool (available at
1330 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1331 PAL or NTSC or to swap primary and secondary head outputs.
1332 Secondary head driver also always start in 640x480 resolution, you
1333 must use fbset to change it.
1334
1335 Also do not forget that second head supports only 16 and 32 bpp
1336 packed pixels, so it is a good idea to compile them into the kernel
1337 too. You can use only some font widths, as the driver uses generic
1338 painting procedures (the secondary head does not use acceleration
1339 engine).
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341config FB_RADEON
1342 tristate "ATI Radeon display support"
1343 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001344 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 select FB_MODE_HELPERS
1346 select FB_CFB_FILLRECT
1347 select FB_CFB_COPYAREA
1348 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 select FB_MACMODES if PPC_OF
1350 help
1351 Choose this option if you want to use an ATI Radeon graphics card as
1352 a framebuffer device. There are both PCI and AGP versions. You
1353 don't need to choose this to run the Radeon in plain VGA mode.
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001356 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358config FB_RADEON_I2C
1359 bool "DDC/I2C for ATI Radeon support"
1360 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001361 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 default y
1363 help
1364 Say Y here if you want DDC/I2C support for your Radeon board.
1365
Michael Hanselmann5474c122006-06-25 05:47:08 -07001366config FB_RADEON_BACKLIGHT
1367 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001368 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001369 default y
1370 help
1371 Say Y here if you want to control the backlight of your display.
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373config FB_RADEON_DEBUG
1374 bool "Lots of debug output from Radeon driver"
1375 depends on FB_RADEON
1376 default n
1377 help
1378 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001379 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 something goes wrong.
1381
1382config FB_ATY128
1383 tristate "ATI Rage128 display support"
1384 depends on FB && PCI
1385 select FB_CFB_FILLRECT
1386 select FB_CFB_COPYAREA
1387 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001388 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 select FB_MACMODES if PPC_PMAC
1390 help
1391 This driver supports graphics boards with the ATI Rage128 chips.
1392 Say Y if you have such a graphics board and read
1393 <file:Documentation/fb/aty128fb.txt>.
1394
1395 To compile this driver as a module, choose M here: the
1396 module will be called aty128fb.
1397
Michael Hanselmann5474c122006-06-25 05:47:08 -07001398config FB_ATY128_BACKLIGHT
1399 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001400 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001401 default y
1402 help
1403 Say Y here if you want to control the backlight of your display.
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405config FB_ATY
1406 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001407 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 select FB_CFB_FILLRECT
1409 select FB_CFB_COPYAREA
1410 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001411 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 select FB_MACMODES if PPC
1413 help
1414 This driver supports graphics boards with the ATI Mach64 chips.
1415 Say Y if you have such a graphics board.
1416
1417 To compile this driver as a module, choose M here: the
1418 module will be called atyfb.
1419
1420config FB_ATY_CT
1421 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1422 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001423 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 help
1425 Say Y here to support use of ATI's 64-bit Rage boards (or other
1426 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1427 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001428 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430config FB_ATY_GENERIC_LCD
Kees Cookd1d34222013-01-16 18:53:57 -08001431 bool "Mach64 generic LCD support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 depends on FB_ATY_CT
1433 help
1434 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1435 Rage XC, or Rage XL chipset.
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437config FB_ATY_GX
1438 bool "Mach64 GX support" if PCI
1439 depends on FB_ATY
1440 default y if ATARI
1441 help
1442 Say Y here to support use of the ATI Mach64 Graphics Expression
1443 board (or other boards based on the Mach64 GX chipset) as a
1444 framebuffer device. The ATI product support page for these boards
1445 is at
1446 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1447
Michael Hanselmann5474c122006-06-25 05:47:08 -07001448config FB_ATY_BACKLIGHT
1449 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001450 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001451 default y
1452 help
1453 Say Y here if you want to control the backlight of your display.
1454
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001455config FB_S3
1456 tristate "S3 Trio/Virge support"
1457 depends on FB && PCI
1458 select FB_CFB_FILLRECT
1459 select FB_CFB_COPYAREA
1460 select FB_CFB_IMAGEBLIT
1461 select FB_TILEBLITTING
1462 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001463 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001464 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001465 ---help---
1466 Driver for graphics boards with S3 Trio / S3 Virge chip.
1467
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001468config FB_S3_DDC
1469 bool "DDC for S3 support"
1470 depends on FB_S3
1471 select FB_DDC
1472 default y
1473 help
1474 Say Y here if you want DDC support for your S3 graphics card.
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476config FB_SAVAGE
1477 tristate "S3 Savage support"
Kees Cookd1d34222013-01-16 18:53:57 -08001478 depends on FB && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 select FB_MODE_HELPERS
1480 select FB_CFB_FILLRECT
1481 select FB_CFB_COPYAREA
1482 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001483 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 help
1485 This driver supports notebooks and computers with S3 Savage PCI/AGP
1486 chips.
1487
1488 Say Y if you have such a graphics card.
1489
1490 To compile this driver as a module, choose M here; the module
1491 will be called savagefb.
1492
1493config FB_SAVAGE_I2C
1494 bool "Enable DDC2 Support"
1495 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001496 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 help
1498 This enables I2C support for S3 Savage Chipsets. This is used
1499 only for getting EDID information from the attached display
1500 allowing for robust video mode handling and switching.
1501
1502 Because fbdev-2.6 requires that drivers must be able to
1503 independently validate video mode parameters, you should say Y
1504 here.
1505
1506config FB_SAVAGE_ACCEL
1507 bool "Enable Console Acceleration"
1508 depends on FB_SAVAGE
1509 default n
1510 help
1511 This option will compile in console acceleration support. If
1512 the resulting framebuffer console has bothersome glitches, then
1513 choose N here.
1514
1515config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001516 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 depends on FB && PCI
1518 select FB_CFB_FILLRECT
1519 select FB_CFB_COPYAREA
1520 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001521 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001523 This is the frame buffer device driver for the SiS 300, 315, 330
1524 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1525 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 To compile this driver as a module, choose M here; the module
1528 will be called sisfb.
1529
1530config FB_SIS_300
1531 bool "SiS 300 series support"
1532 depends on FB_SIS
1533 help
1534 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1535
1536config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001537 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 depends on FB_SIS
1539 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001540 Say Y here to support use of the SiS 315, 330 and 340 series
1541 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1542 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001544config FB_VIA
1545 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001546 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001547 select FB_CFB_FILLRECT
1548 select FB_CFB_COPYAREA
1549 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001550 select I2C_ALGOBIT
1551 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001552 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001553 help
1554 This is the frame buffer device driver for Graphics chips of VIA
1555 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1556 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1557 /P4M900,VX800)
1558 Say Y if you have a VIA UniChrome graphics board.
1559
1560 To compile this driver as a module, choose M here: the
1561 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001562
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001563if FB_VIA
1564
1565config FB_VIA_DIRECT_PROCFS
1566 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1567 depends on FB_VIA
1568 default n
1569 help
1570 Allow direct hardware access to some output registers via procfs.
1571 This is dangerous but may provide the only chance to get the
1572 correct output device configuration.
1573 Its use is strongly discouraged.
1574
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001575config FB_VIA_X_COMPATIBILITY
1576 bool "X server compatibility"
1577 depends on FB_VIA
1578 default n
1579 help
1580 This option reduces the functionality (power saving, ...) of the
1581 framebuffer to avoid negative impact on the OpenChrome X server.
1582 If you use any X server other than fbdev you should enable this
1583 otherwise it should be safe to disable it and allow using all
1584 features.
1585
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001586endif
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588config FB_NEOMAGIC
1589 tristate "NeoMagic display support"
1590 depends on FB && PCI
1591 select FB_MODE_HELPERS
1592 select FB_CFB_FILLRECT
1593 select FB_CFB_COPYAREA
1594 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001595 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 help
1597 This driver supports notebooks with NeoMagic PCI chips.
1598 Say Y if you have such a graphics card.
1599
1600 To compile this driver as a module, choose M here: the
1601 module will be called neofb.
1602
1603config FB_KYRO
1604 tristate "IMG Kyro support"
1605 depends on FB && PCI
1606 select FB_CFB_FILLRECT
1607 select FB_CFB_COPYAREA
1608 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 help
1610 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1611 graphics board.
1612
1613 To compile this driver as a module, choose M here: the
1614 module will be called kyrofb.
1615
1616config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001617 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 depends on FB && PCI
1619 select FB_CFB_IMAGEBLIT
1620 select FB_CFB_FILLRECT
1621 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001622 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001624 This driver supports graphics boards with the 3Dfx Banshee,
1625 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1626 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 To compile this driver as a module, choose M here: the
1629 module will be called tdfxfb.
1630
1631config FB_3DFX_ACCEL
Kees Cookd1d34222013-01-16 18:53:57 -08001632 bool "3Dfx Acceleration functions"
1633 depends on FB_3DFX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001635 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1636 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001638config FB_3DFX_I2C
1639 bool "Enable DDC/I2C support"
Kees Cookd1d34222013-01-16 18:53:57 -08001640 depends on FB_3DFX
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001641 select FB_DDC
1642 default y
1643 help
1644 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646config FB_VOODOO1
1647 tristate "3Dfx Voodoo Graphics (sst1) support"
1648 depends on FB && PCI
1649 select FB_CFB_FILLRECT
1650 select FB_CFB_COPYAREA
1651 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ---help---
1653 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1654 Voodoo2 (cvg) based graphics card.
1655
1656 To compile this driver as a module, choose M here: the
1657 module will be called sstfb.
1658
1659 WARNING: Do not use any application that uses the 3D engine
1660 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001661 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 options and other important info support.
1663
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001664config FB_VT8623
1665 tristate "VIA VT8623 support"
1666 depends on FB && PCI
1667 select FB_CFB_FILLRECT
1668 select FB_CFB_COPYAREA
1669 select FB_CFB_IMAGEBLIT
1670 select FB_TILEBLITTING
1671 select FB_SVGALIB
1672 select VGASTATE
1673 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1674 ---help---
1675 Driver for CastleRock integrated graphics core in the
1676 VIA VT8623 [Apollo CLE266] chipset.
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001679 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 depends on FB && PCI
1681 select FB_CFB_FILLRECT
1682 select FB_CFB_COPYAREA
1683 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001685 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1686 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1687 and Blade XP.
1688 There are also integrated versions of these chips called CyberXXXX,
1689 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001690 but also on some motherboards including early VIA EPIA motherboards.
1691 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 Say Y if you have such a graphics board.
1694
1695 To compile this driver as a module, choose M here: the
1696 module will be called tridentfb.
1697
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001698config FB_ARK
1699 tristate "ARK 2000PV support"
1700 depends on FB && PCI
1701 select FB_CFB_FILLRECT
1702 select FB_CFB_COPYAREA
1703 select FB_CFB_IMAGEBLIT
1704 select FB_TILEBLITTING
1705 select FB_SVGALIB
1706 select VGASTATE
1707 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1708 ---help---
1709 Driver for PCI graphics boards with ARK 2000PV chip
1710 and ICS 5342 RAMDAC.
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712config FB_PM3
Kees Cookd1d34222013-01-16 18:53:57 -08001713 tristate "Permedia3 support"
1714 depends on FB && PCI
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001715 select FB_CFB_FILLRECT
1716 select FB_CFB_COPYAREA
1717 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 help
1719 This is the frame buffer device driver for the 3DLabs Permedia3
1720 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1721 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1722 and maybe other boards.
1723
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001724config FB_CARMINE
1725 tristate "Fujitsu carmine frame buffer support"
1726 depends on FB && PCI
1727 select FB_CFB_FILLRECT
1728 select FB_CFB_COPYAREA
1729 select FB_CFB_IMAGEBLIT
1730 help
1731 This is the frame buffer device driver for the Fujitsu Carmine chip.
1732 The driver provides two independent frame buffer devices.
1733
1734choice
1735 depends on FB_CARMINE
1736 prompt "DRAM timing"
1737 default FB_CARMINE_DRAM_EVAL
1738
1739config FB_CARMINE_DRAM_EVAL
1740 bool "Eval board timings"
1741 help
1742 Use timings which work on the eval card.
1743
1744config CARMINE_DRAM_CUSTOM
1745 bool "Custom board timings"
1746 help
1747 Use custom board timings.
1748endchoice
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750config FB_AU1100
1751 bool "Au1100 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001752 depends on (FB = y) && MIPS_ALCHEMY
Ralf Baechled1709e42007-07-23 18:43:50 -07001753 select FB_CFB_FILLRECT
1754 select FB_CFB_COPYAREA
1755 select FB_CFB_IMAGEBLIT
1756 help
1757 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1758 various panels and CRTs by passing in kernel cmd line option
1759 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001761config FB_AU1200
Manuel Lauss809f36c2011-11-01 20:03:30 +01001762 bool "Au1200/Au1300 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001763 depends on (FB = y) && MIPS_ALCHEMY
Manuel Lauss4ee58462011-06-10 15:23:04 +00001764 select FB_SYS_FILLRECT
1765 select FB_SYS_COPYAREA
1766 select FB_SYS_IMAGEBLIT
1767 select FB_SYS_FOPS
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001768 help
Manuel Lauss809f36c2011-11-01 20:03:30 +01001769 This is the framebuffer driver for the Au1200/Au1300 SOCs.
1770 It can drive various panels and CRTs by passing in kernel cmd line
1771 option au1200fb:panel=<name>.
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001772
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001773config FB_VT8500
Tony Prisk3d208372013-04-03 07:20:35 +13001774 bool "VIA VT8500 framebuffer support"
Tony Priske7b99532012-08-03 20:58:22 +12001775 depends on (FB = y) && ARM && ARCH_VT8500
Tony Prisk18a434b2013-04-03 07:20:33 +13001776 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1777 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001778 select FB_SYS_IMAGEBLIT
Tony Prisk7ab0a482013-04-03 07:20:38 +13001779 select FB_MODE_HELPERS
Tomi Valkeinene45f2652013-04-05 11:12:50 +03001780 select VIDEOMODE_HELPERS
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001781 help
1782 This is the framebuffer driver for VIA VT8500 integrated LCD
1783 controller.
1784
1785config FB_WM8505
Tony Prisk3d208372013-04-03 07:20:35 +13001786 bool "Wondermedia WM8xxx-series frame buffer support"
Tony Priske7b99532012-08-03 20:58:22 +12001787 depends on (FB = y) && ARM && ARCH_VT8500
Tony Prisk18a434b2013-04-03 07:20:33 +13001788 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1789 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001790 select FB_SYS_IMAGEBLIT
Tony Prisk7ab0a482013-04-03 07:20:38 +13001791 select FB_MODE_HELPERS
Tomi Valkeinene45f2652013-04-05 11:12:50 +03001792 select VIDEOMODE_HELPERS
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001793 help
Tony Prisk3d208372013-04-03 07:20:35 +13001794 This is the framebuffer driver for WonderMedia WM8xxx-series
1795 integrated LCD controller. This driver covers the WM8505, WM8650
1796 and WM8850 SoCs.
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001797
Tony Prisk18a434b2013-04-03 07:20:33 +13001798config FB_WMT_GE_ROPS
Tony Prisk3d208372013-04-03 07:20:35 +13001799 bool "VT8500/WM8xxx accelerated raster ops support"
Tony Prisk18a434b2013-04-03 07:20:33 +13001800 depends on (FB = y) && (FB_VT8500 || FB_WM8505)
1801 default n
1802 help
1803 This adds support for accelerated raster operations on the
1804 VIA VT8500 and Wondermedia 85xx series SoCs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806source "drivers/video/geode/Kconfig"
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808config FB_HIT
1809 tristate "HD64461 Frame Buffer support"
1810 depends on FB && HD64461
1811 select FB_CFB_FILLRECT
1812 select FB_CFB_COPYAREA
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001813 select FB_CFB_IMAGEBLIT
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001814 help
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 This is the frame buffer device driver for the Hitachi HD64461 LCD
1816 frame buffer card.
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818config FB_PMAG_AA
1819 bool "PMAG-AA TURBOchannel framebuffer support"
1820 depends on (FB = y) && TC
1821 select FB_CFB_FILLRECT
1822 select FB_CFB_COPYAREA
1823 select FB_CFB_IMAGEBLIT
1824 help
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001825 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 used mainly in the MIPS-based DECstation series.
1827
1828config FB_PMAG_BA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 tristate "PMAG-BA TURBOchannel framebuffer support"
1830 depends on FB && TC
1831 select FB_CFB_FILLRECT
1832 select FB_CFB_COPYAREA
1833 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 help
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001835 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1836 used mainly in the MIPS-based DECstation series.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838config FB_PMAGB_B
1839 tristate "PMAGB-B TURBOchannel framebuffer support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 depends on FB && TC
1841 select FB_CFB_FILLRECT
1842 select FB_CFB_COPYAREA
1843 select FB_CFB_IMAGEBLIT
1844 help
1845 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001846 in the MIPS-based DECstation series. The card is currently only
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 supported in 1280x1024x8 mode.
1848
1849config FB_MAXINE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 bool "Maxine (Personal DECstation) onboard framebuffer support"
1851 depends on (FB = y) && MACH_DECSTATION
1852 select FB_CFB_FILLRECT
1853 select FB_CFB_COPYAREA
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001854 select FB_CFB_IMAGEBLIT
1855 help
1856 Support for the onboard framebuffer (1024x768x8) in the Personal
1857 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1858 Codename "Maxine").
1859
1860config FB_G364
1861 bool "G364 frame buffer support"
1862 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
1863 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 select FB_CFB_COPYAREA
1865 select FB_CFB_IMAGEBLIT
1866 help
1867 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1868 Olivetti M700-10 systems.
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870config FB_68328
1871 bool "Motorola 68328 native frame buffer support"
1872 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
1873 select FB_CFB_FILLRECT
1874 select FB_CFB_COPYAREA
1875 select FB_CFB_IMAGEBLIT
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001876 help
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001877 Say Y here if you want to support the built-in frame buffer of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 the Motorola 68328 CPU family.
1879
1880config FB_PXA168
Eric Miao198fc102008-12-23 17:49:43 +08001881 tristate "PXA168/910 LCD framebuffer support"
1882 depends on FB && (CPU_PXA168 || CPU_PXA910)
1883 select FB_CFB_FILLRECT
1884 select FB_CFB_COPYAREA
1885 select FB_CFB_IMAGEBLIT
Eric Miao3c42a442008-04-30 00:52:26 -07001886 ---help---
1887 Frame buffer driver for the built-in LCD controller in the Marvell
Eric Miao7f1133c2008-04-30 00:52:27 -07001888 MMP processor.
Eric Miao3c42a442008-04-30 00:52:26 -07001889
1890config FB_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 tristate "PXA LCD framebuffer support"
1892 depends on FB && ARCH_PXA
1893 select FB_CFB_FILLRECT
1894 select FB_CFB_COPYAREA
1895 select FB_CFB_IMAGEBLIT
1896 ---help---
1897 Frame buffer driver for the built-in LCD controller in the Intel
1898 PXA2x0 processor.
1899
1900 This driver is also available as a module ( = code which can be
1901 inserted and removed from the running kernel whenever you want). The
1902 module will be called pxafb. If you want to compile it as a module,
1903 say M here and read <file:Documentation/kbuild/modules.txt>.
1904
1905 If unsure, say N.
1906
1907config FB_PXA_OVERLAY
Mike Rapoport22caf042006-07-14 00:24:34 -07001908 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1909 default n
1910 depends on FB_PXA && (PXA27x || PXA3xx)
1911
1912config FB_PXA_SMARTPANEL
1913 bool "PXA Smartpanel LCD support"
1914 default n
1915 depends on FB_PXA
1916
1917config FB_PXA_PARAMETERS
1918 bool "PXA LCD command line parameters"
1919 default n
1920 depends on FB_PXA
1921 ---help---
1922 Enable the use of kernel command line or module parameters
1923 to configure the physical properties of the LCD panel when
1924 using the PXA LCD driver.
1925
1926 This option allows you to override the panel parameters
1927 supplied by the platform in order to support multiple
York Sun9b53a9e2008-04-28 02:15:34 -07001928 different models of flatpanel. If you will only be using a
1929 single model of flatpanel then you can safely leave this
1930 option disabled.
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001931
York Sun9b53a9e2008-04-28 02:15:34 -07001932 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1933
Daniel Mack364dbdf2010-11-04 14:44:00 -04001934config PXA3XX_GCU
1935 tristate "PXA3xx 2D graphics accelerator driver"
1936 depends on FB_PXA
1937 help
1938 Kernelspace driver for the 2D graphics controller unit (GCU)
1939 found on PXA3xx processors. There is a counterpart driver in the
1940 DirectFB suite, see http://www.directfb.org/
1941
1942 If you compile this as a module, it will be called pxa3xx_gcu.
1943
Randy Dunlapecc41d52005-11-07 01:00:29 -08001944config FB_MBX
1945 tristate "2700G LCD framebuffer support"
1946 depends on FB && ARCH_PXA
1947 select FB_CFB_FILLRECT
1948 select FB_CFB_COPYAREA
1949 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001950 ---help---
1951 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1952 Accelerator
1953
1954config FB_MBX_DEBUG
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001955 bool "Enable debugging info via debugfs"
Randy Dunlapecc41d52005-11-07 01:00:29 -08001956 depends on FB_MBX && DEBUG_FS
1957 default n
1958 ---help---
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 Enable this if you want debugging information using the debug
Arnaud Patard20fd5762005-09-09 13:10:07 -07001960 filesystem (debugfs)
1961
1962 If unsure, say N.
1963
York Sun9b53a9e2008-04-28 02:15:34 -07001964config FB_FSL_DIU
1965 tristate "Freescale DIU framebuffer support"
1966 depends on FB && FSL_SOC
1967 select FB_MODE_HELPERS
1968 select FB_CFB_FILLRECT
1969 select FB_CFB_COPYAREA
1970 select FB_CFB_IMAGEBLIT
1971 select PPC_LIB_RHEAP
1972 ---help---
1973 Framebuffer driver for the Freescale SoC DIU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975config FB_W100
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001976 tristate "W100 frame buffer support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 depends on FB && ARCH_PXA
1978 select FB_CFB_FILLRECT
1979 select FB_CFB_COPYAREA
1980 select FB_CFB_IMAGEBLIT
1981 ---help---
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001982 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 It can also drive the w3220 chip found on iPAQ hx4700.
1984
1985 This driver is also available as a module ( = code which can be
1986 inserted and removed from the running kernel whenever you want). The
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001987 module will be called w100fb. If you want to compile it as a module,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 say M here and read <file:Documentation/kbuild/modules.txt>.
1989
1990 If unsure, say N.
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001991
1992config FB_SH_MOBILE_LCDC
Magnus Damm7278a222010-03-10 11:33:10 +00001993 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm2540c112008-12-17 17:29:49 +09001994 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
1995 select FB_SYS_FILLRECT
1996 select FB_SYS_COPYAREA
1997 select FB_SYS_IMAGEBLIT
Magnus Damm85645572008-12-19 15:34:41 +09001998 select FB_SYS_FOPS
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001999 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002000 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002001 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002002 ---help---
2003 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2004
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002005config FB_SH_MOBILE_HDMI
2006 tristate "SuperH Mobile HDMI controller support"
2007 depends on FB_SH_MOBILE_LCDC
2008 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002009 select SOUND
2010 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002011 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002012 ---help---
2013 Driver for the on-chip SH-Mobile HDMI controller.
2014
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002015config FB_TMIO
2016 tristate "Toshiba Mobile IO FrameBuffer support"
2017 depends on FB && MFD_CORE
2018 select FB_CFB_FILLRECT
2019 select FB_CFB_COPYAREA
2020 select FB_CFB_IMAGEBLIT
2021 ---help---
2022 Frame buffer driver for the Toshiba Mobile IO integrated as found
2023 on the Sharp SL-6000 series
2024
2025 This driver is also available as a module ( = code which can be
2026 inserted and removed from the running kernel whenever you want). The
2027 module will be called tmiofb. If you want to compile it as a module,
2028 say M here and read <file:Documentation/kbuild/modules.txt>.
2029
2030 If unsure, say N.
2031
2032config FB_TMIO_ACCELL
2033 bool "tmiofb acceleration"
2034 depends on FB_TMIO
2035 default y
2036
Ben Dooksec549a02009-03-31 15:25:39 -07002037config FB_S3C
2038 tristate "Samsung S3C framebuffer support"
Jingoo Han4e45a762013-02-21 16:42:30 -08002039 depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || ARCH_S5P64X0 || \
2040 ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
Ben Dooksec549a02009-03-31 15:25:39 -07002041 select FB_CFB_FILLRECT
2042 select FB_CFB_COPYAREA
2043 select FB_CFB_IMAGEBLIT
2044 ---help---
2045 Frame buffer driver for the built-in FB controller in the Samsung
2046 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2047 and the S3C64XX series such as the S3C6400 and S3C6410.
2048
2049 These chips all have the same basic framebuffer design with the
2050 actual capabilities depending on the chip. For instance the S3C6400
2051 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2052 currently only have two.
2053
2054 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2055
2056config FB_S3C_DEBUG_REGWRITE
2057 bool "Debug register writes"
2058 depends on FB_S3C
2059 ---help---
Jingoo Han975d3522012-09-27 16:46:19 +09002060 Show all register writes via pr_debug()
Ben Dooksec549a02009-03-31 15:25:39 -07002061
Arnaud Patard20fd5762005-09-09 13:10:07 -07002062config FB_S3C2410
2063 tristate "S3C2410 LCD framebuffer support"
Kukjin Kimb130d5c2012-02-03 14:29:23 +09002064 depends on FB && ARCH_S3C24XX
Arnaud Patard20fd5762005-09-09 13:10:07 -07002065 select FB_CFB_FILLRECT
2066 select FB_CFB_COPYAREA
2067 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002068 ---help---
2069 Frame buffer driver for the built-in LCD controller in the Samsung
2070 S3C2410 processor.
2071
2072 This driver is also available as a module ( = code which can be
2073 inserted and removed from the running kernel whenever you want). The
2074 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002075 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002076
2077 If unsure, say N.
2078config FB_S3C2410_DEBUG
2079 bool "S3C2410 lcd debug messages"
2080 depends on FB_S3C2410
2081 help
2082 Turn on debugging messages. Note that you can set/unset at run time
2083 through sysfs
2084
Wang Qiang86619702010-03-10 15:21:47 -08002085config FB_NUC900
2086 bool "NUC900 LCD framebuffer support"
2087 depends on FB && ARCH_W90X900
2088 select FB_CFB_FILLRECT
2089 select FB_CFB_COPYAREA
2090 select FB_CFB_IMAGEBLIT
2091 ---help---
2092 Frame buffer driver for the built-in LCD controller in the Nuvoton
2093 NUC900 processor
2094
2095config GPM1040A0_320X240
2096 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2097 depends on FB_NUC900
2098
2099config FB_NUC900_DEBUG
2100 bool "NUC900 lcd debug messages"
2101 depends on FB_NUC900
2102 help
2103 Turn on debugging messages. Note that you can set/unset at run time
2104 through sysfs
2105
Ben Dooks5fc404e2007-02-20 13:58:21 -08002106config FB_SM501
2107 tristate "Silicon Motion SM501 framebuffer support"
2108 depends on FB && MFD_SM501
2109 select FB_CFB_FILLRECT
2110 select FB_CFB_COPYAREA
2111 select FB_CFB_IMAGEBLIT
2112 ---help---
2113 Frame buffer driver for the CRT and LCD controllers in the Silicon
2114 Motion SM501.
2115
2116 This driver is also available as a module ( = code which can be
2117 inserted and removed from the running kernel whenever you want). The
2118 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002119 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002120
2121 If unsure, say N.
2122
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01002123config FB_SMSCUFX
2124 tristate "SMSC UFX6000/7000 USB Framebuffer support"
2125 depends on FB && USB
2126 select FB_MODE_HELPERS
2127 select FB_SYS_FILLRECT
2128 select FB_SYS_COPYAREA
2129 select FB_SYS_IMAGEBLIT
2130 select FB_SYS_FOPS
2131 select FB_DEFERRED_IO
2132 ---help---
2133 This is a kernel framebuffer driver for SMSC UFX USB devices.
2134 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2135 mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
2136 (USB 3.0) devices.
2137 To compile as a module, choose M here: the module name is smscufx.
2138
Paul Mundt96f8d8642010-11-16 14:00:24 +09002139config FB_UDL
2140 tristate "Displaylink USB Framebuffer support"
2141 depends on FB && USB
2142 select FB_MODE_HELPERS
2143 select FB_SYS_FILLRECT
2144 select FB_SYS_COPYAREA
2145 select FB_SYS_IMAGEBLIT
2146 select FB_SYS_FOPS
2147 select FB_DEFERRED_IO
2148 ---help---
2149 This is a kernel framebuffer driver for DisplayLink USB devices.
2150 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2151 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2152 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002153
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002154config FB_IBM_GXT4500
Dan Horák6c39dcc2012-09-12 06:06:44 +00002155 tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors"
Randy Dunlap0058f472007-10-16 01:29:35 -07002156 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002157 select FB_CFB_FILLRECT
2158 select FB_CFB_COPYAREA
2159 select FB_CFB_IMAGEBLIT
2160 ---help---
Dan Horák6c39dcc2012-09-12 06:06:44 +00002161 Say Y here to enable support for the IBM GXT4000P/6000P and
2162 GXT4500P/6500P display adaptor based on Raster Engine RC1000,
2163 found on some IBM System P (pSeries) machines. This driver
2164 doesn't use Geometry Engine GT1000.
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002165
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002166config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002167 tristate "PS3 GPU framebuffer driver"
2168 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002169 select FB_SYS_FILLRECT
2170 select FB_SYS_COPYAREA
2171 select FB_SYS_IMAGEBLIT
2172 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002173 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002174 ---help---
2175 Include support for the virtual frame buffer in the PS3 platform.
2176
2177config FB_PS3_DEFAULT_SIZE_M
2178 int "PS3 default frame buffer size (in MiB)"
2179 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002180 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002181 ---help---
2182 This is the default size (in MiB) of the virtual frame buffer in
2183 the PS3.
2184 The default value can be overridden on the kernel command line
2185 using the "ps3fb" option (e.g. "ps3fb=9M");
2186
Andrei Konovalov147394c2007-05-08 00:40:18 -07002187config FB_XILINX
2188 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002189 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002190 select FB_CFB_FILLRECT
2191 select FB_CFB_COPYAREA
2192 select FB_CFB_IMAGEBLIT
2193 ---help---
2194 Include support for the Xilinx ML300/ML403 reference design
2195 framebuffer. ML300 carries a 640*480 LCD display on the board,
2196 ML403 uses a standard DB15 VGA connector.
2197
Arve Hjønnevågc289ba22013-02-21 16:42:09 -08002198config FB_GOLDFISH
2199 tristate "Goldfish Framebuffer"
2200 depends on FB
2201 select FB_CFB_FILLRECT
2202 select FB_CFB_COPYAREA
2203 select FB_CFB_IMAGEBLIT
2204 ---help---
2205 Framebuffer driver for Goldfish Virtual Platform
2206
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002207config FB_COBALT
2208 tristate "Cobalt server LCD frame buffer support"
Steven J. Hill13f36e92012-04-18 09:13:51 -05002209 depends on FB && (MIPS_COBALT || MIPS_SEAD3)
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002210
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002211config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002212 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2213 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2214 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2215 select FB_CFB_FILLRECT
2216 select FB_CFB_COPYAREA
2217 select FB_CFB_IMAGEBLIT
2218 ---help---
2219 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2220 (D)STN/TFT LCD Controller.
2221 Supports display resolutions up to 1024x1024 pixel, grayscale and
2222 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2223 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2224 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002225
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002226config FB_DA8XX
2227 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2228 depends on FB && ARCH_DAVINCI_DA8XX
2229 select FB_CFB_FILLRECT
2230 select FB_CFB_COPYAREA
2231 select FB_CFB_IMAGEBLIT
Anatolij Gustschinf4130702012-03-13 14:13:57 +01002232 select FB_CFB_REV_PIXELS_IN_BYTE
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002233 ---help---
2234 This is the frame buffer device driver for the TI LCD controller
2235 found on DA8xx/OMAP-L1xx SoCs.
2236 If unsure, say N.
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238config FB_VIRTUAL
2239 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2240 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002241 select FB_SYS_FILLRECT
2242 select FB_SYS_COPYAREA
2243 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002244 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 ---help---
2246 This is a `virtual' frame buffer device. It operates on a chunk of
2247 unswappable kernel memory instead of on the memory of a graphics
2248 board. This means you cannot see any output sent to this frame
2249 buffer device, while it does consume precious memory. The main use
2250 of this frame buffer device is testing and debugging the frame
2251 buffer subsystem. Do NOT enable it for normal systems! To protect
2252 the innocent, it has to be enabled explicitly at boot time using the
2253 kernel option `video=vfb:'.
2254
2255 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002256 module will be called vfb. In order to load it, you must use
2257 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002260
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002261config XEN_FBDEV_FRONTEND
2262 tristate "Xen virtual frame buffer support"
2263 depends on FB && XEN
2264 select FB_SYS_FILLRECT
2265 select FB_SYS_COPYAREA
2266 select FB_SYS_IMAGEBLIT
2267 select FB_SYS_FOPS
2268 select FB_DEFERRED_IO
Andrew Jones4bc25af2012-01-06 10:43:09 +01002269 select INPUT_XEN_KBDDEV_FRONTEND
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002270 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002271 default y
2272 help
2273 This driver implements the front-end of the Xen virtual
2274 frame buffer driver. It communicates with a back-end
2275 in another domain.
2276
Jaya Kumare9355082008-08-19 11:17:55 +01002277config FB_METRONOME
2278 tristate "E-Ink Metronome/8track controller support"
2279 depends on FB
2280 select FB_SYS_FILLRECT
2281 select FB_SYS_COPYAREA
2282 select FB_SYS_IMAGEBLIT
2283 select FB_SYS_FOPS
2284 select FB_DEFERRED_IO
2285 help
2286 This driver implements support for the E-Ink Metronome
2287 controller. The pre-release name for this device was 8track
2288 and could also have been called by some vendors as PVI-nnnn.
2289
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002290config FB_MB862XX
2291 tristate "Fujitsu MB862xx GDC support"
2292 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002293 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002294 select FB_CFB_FILLRECT
2295 select FB_CFB_COPYAREA
2296 select FB_CFB_IMAGEBLIT
2297 ---help---
2298 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2299
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002300choice
2301 prompt "GDC variant"
2302 depends on FB_MB862XX
2303
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002304config FB_MB862XX_PCI_GDC
2305 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002306 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002307 ---help---
2308 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2309 PCI graphics controller devices.
2310
2311config FB_MB862XX_LIME
2312 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002313 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002314 select FB_FOREIGN_ENDIAN
2315 select FB_LITTLE_ENDIAN
2316 ---help---
2317 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2318
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002319endchoice
2320
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002321config FB_MB862XX_I2C
2322 bool "Support I2C bus on MB862XX GDC"
2323 depends on FB_MB862XX && I2C
2324 default y
2325 help
2326 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2327 driver to support accessing I2C devices on controller's I2C bus.
2328 These are usually some video decoder chips.
2329
Ryan Mallon88017bda2009-09-22 16:47:09 -07002330config FB_EP93XX
2331 tristate "EP93XX frame buffer support"
2332 depends on FB && ARCH_EP93XX
2333 select FB_CFB_FILLRECT
2334 select FB_CFB_COPYAREA
2335 select FB_CFB_IMAGEBLIT
2336 ---help---
2337 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2338 This driver is also available as a module. The module will be called
2339 ep93xx-fb.
2340
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002341config FB_PRE_INIT_FB
2342 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002343 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002344 ---help---
2345 Select this option if display contents should be inherited as set by
2346 the bootloader.
2347
Pavel Machekd480ace2009-09-22 16:47:03 -07002348config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002349 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002350 depends on FB && ARCH_MSM
2351 select FB_CFB_FILLRECT
2352 select FB_CFB_COPYAREA
2353 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002354
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002355config FB_MX3
Guennadi Liakhovetski6e1588cb2009-02-26 21:34:28 +01002356 tristate "MX3 Framebuffer support"
2357 depends on FB && MX3_IPU
2358 select FB_CFB_FILLRECT
2359 select FB_CFB_COPYAREA
2360 select FB_CFB_IMAGEBLIT
2361 default y
2362 help
2363 This is a framebuffer device for the i.MX31 LCD Controller. So
2364 far only synchronous displays are supported. If you plan to use
2365 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002366
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002367config FB_BROADSHEET
2368 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2369 depends on FB
2370 select FB_SYS_FILLRECT
2371 select FB_SYS_COPYAREA
2372 select FB_SYS_IMAGEBLIT
2373 select FB_SYS_FOPS
2374 select FB_DEFERRED_IO
2375 help
2376 This driver implements support for the E-Ink Broadsheet
2377 controller. The release name for this device was Epson S1D13521
2378 and could also have been called by other names when coupled with
2379 a bridge adapter.
2380
Heiko Stübner2c8304d2012-04-28 12:20:00 +02002381config FB_AUO_K190X
2382 tristate "AUO-K190X EPD controller support"
2383 depends on FB
2384 select FB_SYS_FILLRECT
2385 select FB_SYS_COPYAREA
2386 select FB_SYS_IMAGEBLIT
2387 select FB_SYS_FOPS
2388 select FB_DEFERRED_IO
2389 help
2390 Provides support for epaper controllers from the K190X series
2391 of AUO. These controllers can be used to drive epaper displays
2392 from Sipix.
2393
2394 This option enables the common support, shared by the individual
2395 controller drivers. You will also have to enable the driver
2396 for the controller type used in your device.
2397
Heiko Stübner96b1d502012-04-28 12:21:12 +02002398config FB_AUO_K1900
2399 tristate "AUO-K1900 EPD controller support"
2400 depends on FB && FB_AUO_K190X
2401 help
2402 This driver implements support for the AUO K1900 epd-controller.
2403 This controller can drive Sipix epaper displays but can only do
2404 serial updates, reducing the number of possible frames per second.
2405
Heiko Stübner53027cd2012-04-28 12:22:08 +02002406config FB_AUO_K1901
2407 tristate "AUO-K1901 EPD controller support"
2408 depends on FB && FB_AUO_K190X
2409 help
2410 This driver implements support for the AUO K1901 epd-controller.
2411 This controller can drive Sipix epaper displays and supports
2412 concurrent updates, making higher frames per second possible.
2413
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002414config FB_JZ4740
2415 tristate "JZ4740 LCD framebuffer support"
2416 depends on FB && MACH_JZ4740
2417 select FB_SYS_FILLRECT
2418 select FB_SYS_COPYAREA
2419 select FB_SYS_IMAGEBLIT
2420 help
2421 Framebuffer support for the JZ4740 SoC.
2422
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002423config FB_MXS
2424 tristate "MXS LCD framebuffer support"
2425 depends on FB && ARCH_MXS
2426 select FB_CFB_FILLRECT
2427 select FB_CFB_COPYAREA
2428 select FB_CFB_IMAGEBLIT
2429 help
2430 Framebuffer support for the MXS SoC.
2431
GuanXuetaoce443ab2011-02-26 21:39:10 +08002432config FB_PUV3_UNIGFX
2433 tristate "PKUnity v3 Unigfx framebuffer support"
2434 depends on FB && UNICORE32 && ARCH_PUV3
2435 select FB_SYS_FILLRECT
2436 select FB_SYS_COPYAREA
2437 select FB_SYS_IMAGEBLIT
2438 select FB_SYS_FOPS
2439 help
2440 Choose this option if you want to use the Unigfx device as a
2441 framebuffer device. Without the support of PCI & AGP.
2442
Randy Dunlapf08f3892007-10-29 14:37:16 -07002443source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002444source "drivers/video/omap2/Kconfig"
Donghwa Lee7258cc12012-02-08 12:47:39 -08002445source "drivers/video/exynos/Kconfig"
Zhou Zhu59393bb2013-02-21 16:42:11 -08002446source "drivers/video/mmp/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002447source "drivers/video/backlight/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449if VT
2450 source "drivers/video/console/Kconfig"
2451endif
2452
2453if FB || SGI_NEWPORT_CONSOLE
2454 source "drivers/video/logo/Kconfig"
2455endif
2456
Kuninori Morimotof363afc2012-03-20 18:27:08 -07002457config FB_SH_MOBILE_MERAM
2458 tristate "SuperH Mobile MERAM read ahead support"
2459 depends on (SUPERH || ARCH_SHMOBILE)
2460 select GENERIC_ALLOCATOR
2461 ---help---
2462 Enable MERAM support for the SuperH controller.
2463
2464 This will allow for caching of the framebuffer to provide more
2465 reliable access under heavy main memory bus traffic situations.
2466 Up to 4 memory channels can be configured, allowing 4 RGB or
2467 2 YCbCr framebuffers to be configured.
2468
Maxime Riparda2ed00d2012-12-07 12:30:38 -08002469config FB_SSD1307
2470 tristate "Solomon SSD1307 framebuffer support"
2471 depends on FB && I2C
2472 depends on OF
2473 depends on GENERIC_GPIO
2474 select FB_SYS_FOPS
2475 select FB_SYS_FILLRECT
2476 select FB_SYS_COPYAREA
2477 select FB_SYS_IMAGEBLIT
2478 select FB_DEFERRED_IO
2479 select PWM
2480 help
2481 This driver implements support for the Solomon SSD1307
2482 OLED controller over I2C.
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484endmenu