blob: b4b209ce80292f6ddea6f2ed298ab29786f353bd [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
Terje Bergstrom75471682013-03-22 16:34:01 +020022source "drivers/gpu/host1x/Kconfig"
23
Thierry Redingdee82682013-10-09 10:32:49 +020024source "drivers/gpu/drm/Kconfig"
25
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070026config VGASTATE
27 tristate
28 default n
29
Tomi Valkeinena38884f2013-03-12 10:15:43 +020030config VIDEOMODE_HELPERS
31 bool
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020032
Thierry Redingf142d3b2012-11-21 15:29:29 +010033config HDMI
34 bool
35
Randy Dunlap179b0252007-10-16 01:29:39 -070036menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 tristate "Support for frame buffer devices"
38 ---help---
39 The frame buffer device provides an abstraction for the graphics
40 hardware. It represents the frame buffer of some video hardware and
41 allows application software to access the graphics hardware through
42 a well-defined interface, so the software doesn't need to know
43 anything about the low-level (hardware register) stuff.
44
45 Frame buffer devices work identically across the different
46 architectures supported by Linux and make the implementation of
47 application programs easier and more portable; at this point, an X
48 server exists which uses the frame buffer device exclusively.
49 On several non-X86 architectures, the frame buffer device is the
50 only way to use the graphics hardware.
51
52 The device is accessed through special device nodes, usually located
53 in the /dev directory, i.e. /dev/fb*.
54
55 You need an utility program called fbset to make full use of frame
56 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
57 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020058 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 information.
60
61 Say Y here and to the driver for your graphics board below if you
62 are compiling a kernel for a non-x86 architecture.
63
64 If you are compiling for the x86 architecture, you can say Y if you
65 want to play with it, but it is not essential. Please note that
66 running graphical applications that directly touch the hardware
67 (e.g. an accelerated X server) and that are not frame buffer
68 device-aware may cause unexpected results. If unsure, say N.
69
James Simmonse0e34ef2007-02-10 14:15:43 +000070config FIRMWARE_EDID
71 bool "Enable firmware EDID"
72 depends on FB
73 default n
74 ---help---
75 This enables access to the EDID transferred from the firmware.
76 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
77 transfers do not work for your driver and if you are using
78 nvidiafb, i810fb or savagefb.
79
80 In general, choosing Y for this option is safe. If you
81 experience extremely long delays while booting before you get
82 something on your display, try setting this to N. Matrox cards in
83 combination with certain motherboards and monitors are known to
84 suffer from this problem.
85
Dennis Munsiefc5891c2006-10-03 01:14:42 -070086config FB_DDC
87 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000088 depends on FB
89 select I2C_ALGOBIT
90 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070091 default n
92
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070093config FB_BOOT_VESA_SUPPORT
94 bool
95 depends on FB
96 default n
97 ---help---
98 If true, at least one selected framebuffer driver can take advantage
99 of VESA video modes set at an early boot stage via the vga= parameter.
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101config FB_CFB_FILLRECT
102 tristate
103 depends on FB
104 default n
105 ---help---
106 Include the cfb_fillrect function for generic software rectangle
107 filling. This is used by drivers that don't provide their own
108 (accelerated) version.
109
110config FB_CFB_COPYAREA
111 tristate
112 depends on FB
113 default n
114 ---help---
115 Include the cfb_copyarea function for generic software area copying.
116 This is used by drivers that don't provide their own (accelerated)
117 version.
118
119config FB_CFB_IMAGEBLIT
120 tristate
121 depends on FB
122 default n
123 ---help---
124 Include the cfb_imageblit function for generic software image
125 blitting. This is used by drivers that don't provide their own
126 (accelerated) version.
127
Pavel Pisa779121e2007-10-16 01:29:21 -0700128config FB_CFB_REV_PIXELS_IN_BYTE
129 bool
130 depends on FB
131 default n
132 ---help---
133 Allow generic frame-buffer functions to work on displays with 1, 2
134 and 4 bits per pixel depths which has opposite order of pixels in
135 byte order to bytes in long order.
136
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700137config FB_SYS_FILLRECT
138 tristate
139 depends on FB
140 default n
141 ---help---
142 Include the sys_fillrect function for generic software rectangle
143 filling. This is used by drivers that don't provide their own
144 (accelerated) version and the framebuffer is in system RAM.
145
146config FB_SYS_COPYAREA
147 tristate
148 depends on FB
149 default n
150 ---help---
151 Include the sys_copyarea function for generic software area copying.
152 This is used by drivers that don't provide their own (accelerated)
153 version and the framebuffer is in system RAM.
154
155config FB_SYS_IMAGEBLIT
156 tristate
157 depends on FB
158 default n
159 ---help---
160 Include the sys_imageblit function for generic software image
161 blitting. This is used by drivers that don't provide their own
162 (accelerated) version and the framebuffer is in system RAM.
163
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700164menuconfig FB_FOREIGN_ENDIAN
165 bool "Framebuffer foreign endianness support"
166 depends on FB
167 ---help---
168 This menu will let you enable support for the framebuffers with
169 non-native endianness (e.g. Little-Endian framebuffer on a
170 Big-Endian machine). Most probably you don't have such hardware,
171 so it's safe to say "n" here.
172
173choice
174 prompt "Choice endianness support"
175 depends on FB_FOREIGN_ENDIAN
176
177config FB_BOTH_ENDIAN
178 bool "Support for Big- and Little-Endian framebuffers"
179
180config FB_BIG_ENDIAN
181 bool "Support for Big-Endian framebuffers only"
182
183config FB_LITTLE_ENDIAN
184 bool "Support for Little-Endian framebuffers only"
185
186endchoice
187
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700188config FB_SYS_FOPS
189 tristate
190 depends on FB
191 default n
192
Jaya Kumar60b59be2007-05-08 00:37:37 -0700193config FB_DEFERRED_IO
194 bool
195 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700196
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700197config FB_HECUBA
198 tristate
199 depends on FB
200 depends on FB_DEFERRED_IO
201
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800202config FB_SVGALIB
203 tristate
204 depends on FB
205 default n
206 ---help---
207 Common utility functions useful to fbdev drivers of VGA-based
208 cards.
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210config FB_MACMODES
211 tristate
212 depends on FB
213 default n
214
Michael Hanselmann5474c122006-06-25 05:47:08 -0700215config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700216 bool
217 depends on FB
218 select BACKLIGHT_LCD_SUPPORT
219 select BACKLIGHT_CLASS_DEVICE
220 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222config FB_MODE_HELPERS
223 bool "Enable Video Mode Handling Helpers"
224 depends on FB
225 default n
226 ---help---
227 This enables functions for handling video modes using the
228 Generalized Timing Formula and the EDID parser. A few drivers rely
229 on this feature such as the radeonfb, rivafb, and the i810fb. If
230 your driver does not take advantage of this feature, choosing Y will
231 just increase the kernel size by about 5K.
232
233config FB_TILEBLITTING
234 bool "Enable Tile Blitting Support"
235 depends on FB
236 default n
237 ---help---
238 This enables tile blitting. Tile blitting is a drawing technique
239 where the screen is divided into rectangular sections (tiles), whereas
240 the standard blitting divides the screen into pixels. Because the
241 default drawing element is a tile, drawing functions will be passed
242 parameters in terms of number of tiles instead of number of pixels.
243 For example, to draw a single character, instead of using bitmaps,
244 an index to an array of bitmaps will be used. To clear or move a
245 rectangular section of a screen, the rectangle will be described in
246 terms of number of tiles in the x- and y-axis.
247
248 This is particularly important to one driver, matroxfb. If
249 unsure, say N.
250
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700251comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000252 depends on FB
253
Kristoffer Glemboa4b8f972011-07-05 09:29:19 +0200254config FB_GRVGA
255 tristate "Aeroflex Gaisler framebuffer support"
256 depends on FB && SPARC
257 select FB_CFB_FILLRECT
258 select FB_CFB_COPYAREA
259 select FB_CFB_IMAGEBLIT
260 ---help---
261 This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263config FB_CIRRUS
264 tristate "Cirrus Logic support"
265 depends on FB && (ZORRO || PCI)
266 select FB_CFB_FILLRECT
267 select FB_CFB_COPYAREA
268 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 ---help---
270 This enables support for Cirrus Logic GD542x/543x based boards on
271 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
272
273 If you have a PCI-based system, this enables support for these
274 chips: GD-543x, GD-544x, GD-5480.
275
276 Please read the file <file:Documentation/fb/cirrusfb.txt>.
277
278 Say N unless you have such a graphics board or plan to get one
279 before you next recompile the kernel.
280
281config FB_PM2
282 tristate "Permedia2 support"
283 depends on FB && ((AMIGA && BROKEN) || PCI)
284 select FB_CFB_FILLRECT
285 select FB_CFB_COPYAREA
286 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700288 This is the frame buffer device driver for cards based on
289 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
290 The driver was tested on the following cards:
291 Diamond FireGL 1000 PRO AGP
292 ELSA Gloria Synergy PCI
293 Appian Jeronimo PRO (both heads) PCI
294 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
295 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
296 ASK Graphic Blaster Exxtreme AGP
297
298 To compile this driver as a module, choose M here: the
299 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301config FB_PM2_FIFO_DISCONNECT
302 bool "enable FIFO disconnect feature"
303 depends on FB_PM2 && PCI
304 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700305 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307config FB_ARMCLCD
308 tristate "ARM PrimeCell PL110 support"
Mark Brownc3235bf2013-12-12 17:13:10 +0000309 depends on ARM || ARM64 || COMPILE_TEST
310 depends on FB && ARM_AMBA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 select FB_CFB_FILLRECT
312 select FB_CFB_COPYAREA
313 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 help
315 This framebuffer device driver is for the ARM PrimeCell PL110
316 Colour LCD controller. ARM PrimeCells provide the building
317 blocks for System on a Chip devices.
318
319 If you want to compile this as a module (=code which can be
320 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500321 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 will be called amba-clcd.
323
324config FB_ACORN
325 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000326 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 select FB_CFB_FILLRECT
328 select FB_CFB_COPYAREA
329 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 help
331 This is the frame buffer device driver for the Acorn VIDC graphics
332 hardware found in Acorn RISC PCs and other ARM-based machines. If
333 unsure, say N.
334
335config FB_CLPS711X
336 bool "CLPS711X LCD support"
337 depends on (FB = y) && ARM && ARCH_CLPS711X
338 select FB_CFB_FILLRECT
339 select FB_CFB_COPYAREA
340 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800341 help
342 Say Y to enable the Framebuffer driver for the CLPS7111 and
343 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345config FB_SA1100
346 bool "SA-1100 LCD support"
347 depends on (FB = y) && ARM && ARCH_SA1100
348 select FB_CFB_FILLRECT
349 select FB_CFB_COPYAREA
350 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 help
352 This is a framebuffer device for the SA-1100 LCD Controller.
353 See <http://www.linux-fbdev.org/> for information on framebuffer
354 devices.
355
356 If you plan to use the LCD display with your SA-1100 system, say
357 Y here.
358
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700359config FB_IMX
Fabio Estevamd04d2682013-02-21 16:42:24 -0800360 tristate "Freescale i.MX1/21/25/27 LCD support"
Denis Cariklib359bb02014-01-22 18:09:36 +0100361 depends on FB && ARCH_MXC
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700362 select FB_CFB_FILLRECT
363 select FB_CFB_COPYAREA
364 select FB_CFB_IMAGEBLIT
Markus Pargmann1b6c7932013-05-26 12:35:38 +0200365 select FB_MODE_HELPERS
366 select VIDEOMODE_HELPERS
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368config FB_CYBER2000
369 tristate "CyberPro 2000/2010/5000 support"
370 depends on FB && PCI && (BROKEN || !SPARC64)
371 select FB_CFB_FILLRECT
372 select FB_CFB_COPYAREA
373 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 help
375 This enables support for the Integraphics CyberPro 20x0 and 5000
376 VGA chips used in the Rebel.com Netwinder and other machines.
377 Say Y if you have a NetWinder or a graphics card containing this
378 device, otherwise say N.
379
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200380config FB_CYBER2000_DDC
381 bool "DDC for CyberPro support"
382 depends on FB_CYBER2000
383 select FB_DDC
384 default y
385 help
386 Say Y here if you want DDC support for your CyberPro graphics
387 card. This is only I2C bus support, driver does not use EDID.
388
Russell Kingb7ca01a2010-08-02 09:57:07 +0100389config FB_CYBER2000_I2C
390 bool "CyberPro 2000/2010/5000 I2C support"
391 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
392 select I2C_ALGOBIT
393 help
394 Enable support for the I2C video decoder interface on the
395 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
396 on the Netwinder machines for the SAA7111 video capture.
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398config FB_APOLLO
399 bool
400 depends on (FB = y) && APOLLO
401 default y
402 select FB_CFB_FILLRECT
403 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405config FB_Q40
406 bool
407 depends on (FB = y) && Q40
408 default y
409 select FB_CFB_FILLRECT
410 select FB_CFB_COPYAREA
411 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413config FB_AMIGA
414 tristate "Amiga native chipset support"
415 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 help
417 This is the frame buffer device driver for the builtin graphics
418 chipset found in Amigas.
419
420 To compile this driver as a module, choose M here: the
421 module will be called amifb.
422
423config FB_AMIGA_OCS
424 bool "Amiga OCS chipset support"
425 depends on FB_AMIGA
426 help
427 This enables support for the original Agnus and Denise video chips,
428 found in the Amiga 1000 and most A500's and A2000's. If you intend
429 to run Linux on any of these systems, say Y; otherwise say N.
430
431config FB_AMIGA_ECS
432 bool "Amiga ECS chipset support"
433 depends on FB_AMIGA
434 help
435 This enables support for the Enhanced Chip Set, found in later
436 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
437 you intend to run Linux on any of these systems, say Y; otherwise
438 say N.
439
440config FB_AMIGA_AGA
441 bool "Amiga AGA chipset support"
442 depends on FB_AMIGA
443 help
444 This enables support for the Advanced Graphics Architecture (also
445 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
446 and CD32. If you intend to run Linux on any of these systems, say Y;
447 otherwise say N.
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449config FB_FM2
450 bool "Amiga FrameMaster II/Rainbow II support"
451 depends on (FB = y) && ZORRO
452 select FB_CFB_FILLRECT
453 select FB_CFB_COPYAREA
454 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 help
456 This is the frame buffer device driver for the Amiga FrameMaster
457 card from BSC (exhibited 1992 but not shipped as a CBM product).
458
Jaya Kumar1154ea72005-06-21 17:17:04 -0700459config FB_ARC
460 tristate "Arc Monochrome LCD board support"
461 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700462 select FB_SYS_FILLRECT
463 select FB_SYS_COPYAREA
464 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700465 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700466 help
467 This enables support for the Arc Monochrome LCD board. The board
468 is based on the KS-108 lcd controller and is typically a matrix
469 of 2*n chips. This driver was tested with a 128x64 panel. This
470 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200471 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700472 this driver, say Y or M; otherwise say N. You must specify the
473 GPIO IO address to be used for setting control and data.
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475config FB_ATARI
476 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200477 depends on (FB = y) && ATARI
478 select FB_CFB_FILLRECT
479 select FB_CFB_COPYAREA
480 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 help
482 This is the frame buffer device driver for the builtin graphics
483 chipset found in Ataris.
484
485config FB_OF
486 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100487 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 select FB_CFB_FILLRECT
489 select FB_CFB_COPYAREA
490 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 select FB_MACMODES
492 help
493 Say Y if you want support with Open Firmware for your graphics
494 board.
495
496config FB_CONTROL
497 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700498 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 select FB_CFB_FILLRECT
500 select FB_CFB_COPYAREA
501 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 select FB_MACMODES
503 help
504 This driver supports a frame buffer for the graphics adapter in the
505 Power Macintosh 7300 and others.
506
507config FB_PLATINUM
508 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700509 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 select FB_CFB_FILLRECT
511 select FB_CFB_COPYAREA
512 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 select FB_MACMODES
514 help
515 This driver supports a frame buffer for the "platinum" graphics
516 adapter in some Power Macintoshes.
517
518config FB_VALKYRIE
519 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700520 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 select FB_CFB_FILLRECT
522 select FB_CFB_COPYAREA
523 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 select FB_MACMODES
525 help
526 This driver supports a frame buffer for the "valkyrie" graphics
527 adapter in some Power Macintoshes.
528
529config FB_CT65550
530 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800531 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 select FB_CFB_FILLRECT
533 select FB_CFB_COPYAREA
534 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 help
536 This is the frame buffer device driver for the Chips & Technologies
537 65550 graphics chip in PowerBooks.
538
539config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800540 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 depends on (FB = y) && PCI
542 select FB_CFB_FILLRECT
543 select FB_CFB_COPYAREA
544 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700545 help
546 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548config FB_IMSTT
549 bool "IMS Twin Turbo display support"
550 depends on (FB = y) && PCI
551 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 select FB_MACMODES if PPC
553 help
554 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
555 many Macintosh and compatible computers.
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557config FB_VGA16
558 tristate "VGA 16-color graphics support"
559 depends on FB && (X86 || PPC)
560 select FB_CFB_FILLRECT
561 select FB_CFB_COPYAREA
562 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700563 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700564 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 help
566 This is the frame buffer device driver for VGA 16 color graphic
567 cards. Say Y if you have such a card.
568
569 To compile this driver as a module, choose M here: the
570 module will be called vga16fb.
571
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700572config FB_BF54X_LQ043
573 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700574 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700575 select FB_CFB_FILLRECT
576 select FB_CFB_COPYAREA
577 select FB_CFB_IMAGEBLIT
578 help
579 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
580
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700581config FB_BFIN_T350MCQB
582 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
583 depends on FB && BLACKFIN
584 select BFIN_GPTIMERS
585 select FB_CFB_FILLRECT
586 select FB_CFB_COPYAREA
587 select FB_CFB_IMAGEBLIT
588 help
589 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
590 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
591 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
592
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800593config FB_BFIN_LQ035Q1
594 tristate "SHARP LQ035Q1DH02 TFT LCD"
595 depends on FB && BLACKFIN && SPI
596 select FB_CFB_FILLRECT
597 select FB_CFB_COPYAREA
598 select FB_CFB_IMAGEBLIT
599 select BFIN_GPTIMERS
600 help
601 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
602 the Blackfin Landscape LCD EZ-Extender Card.
603 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
604 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
605
606 To compile this driver as a module, choose M here: the
607 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700608
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000609config FB_BF537_LQ035
610 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
611 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
612 select FB_CFB_FILLRECT
613 select FB_CFB_COPYAREA
614 select FB_CFB_IMAGEBLIT
615 select BFIN_GPTIMERS
616 help
617 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
618 attached to a BF537.
619
620 To compile this driver as a module, choose M here: the
621 module will be called bf537-lq035.
622
Michael Hennerichcffd9342010-11-24 09:33:59 +0000623config FB_BFIN_7393
624 tristate "Blackfin ADV7393 Video encoder"
625 depends on FB && BLACKFIN
626 select I2C
627 select FB_CFB_FILLRECT
628 select FB_CFB_COPYAREA
629 select FB_CFB_IMAGEBLIT
630 help
631 This is the framebuffer device for a ADV7393 video encoder
632 attached to a Blackfin on the PPI port.
633 If your Blackfin board has a ADV7393 select Y.
634
635 To compile this driver as a module, choose M here: the
636 module will be called bfin_adv7393fb.
637
638choice
639 prompt "Video mode support"
640 depends on FB_BFIN_7393
641 default NTSC
642
643config NTSC
644 bool 'NTSC 720x480'
645
646config PAL
647 bool 'PAL 720x576'
648
649config NTSC_640x480
650 bool 'NTSC 640x480 (Experimental)'
651
652config PAL_640x480
653 bool 'PAL 640x480 (Experimental)'
654
655config NTSC_YCBCR
656 bool 'NTSC 720x480 YCbCR input'
657
658config PAL_YCBCR
659 bool 'PAL 720x576 YCbCR input'
660
661endchoice
662
663choice
664 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
665 depends on (FB_BFIN_7393)
666 default ADV7393_1XMEM
667
668config ADV7393_1XMEM
669 bool 'Single'
670
671config ADV7393_2XMEM
672 bool 'Double'
673endchoice
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675config FB_STI
676 tristate "HP STI frame buffer device support"
677 depends on FB && PARISC
678 select FB_CFB_FILLRECT
679 select FB_CFB_COPYAREA
680 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000681 select STI_CONSOLE
682 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 default y
684 ---help---
685 STI refers to the HP "Standard Text Interface" which is a set of
686 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
687 Enabling this option will implement the linux framebuffer device
688 using calls to the STI BIOS routines for initialisation.
689
690 If you enable this option, you will get a planar framebuffer device
691 /dev/fb which will work on the most common HP graphic cards of the
692 NGLE family, including the artist chips (in the 7xx and Bxxx series),
693 HCRX, HCRX24, CRX, CRX24 and VisEG series.
694
695 It is safe to enable this option, so you should probably say "Y".
696
697config FB_MAC
698 bool "Generic Macintosh display support"
699 depends on (FB = y) && MAC
700 select FB_CFB_FILLRECT
701 select FB_CFB_COPYAREA
702 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 select FB_MACMODES
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705config FB_HP300
706 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200707 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 default y
710
711config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700712 tristate "TGA/SFB+ framebuffer support"
713 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 select FB_CFB_FILLRECT
715 select FB_CFB_COPYAREA
716 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800717 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700718 ---help---
719 This is the frame buffer device driver for generic TGA and SFB+
720 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
721 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
722 TURBOchannel cards, also known as PMAGD-A, -B and -C.
723
724 Due to hardware limitations ZLX-E2 and E3 cards are not supported
725 for DECstation 5000/200 systems. Additionally due to firmware
726 limitations these cards may cause troubles with booting DECstation
727 5000/240 and /260 systems, but are fully supported under Linux if
728 you manage to get it going. ;-)
729
730 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700732config FB_UVESA
733 tristate "Userspace VESA VGA graphics support"
734 depends on FB && CONNECTOR
735 select FB_CFB_FILLRECT
736 select FB_CFB_COPYAREA
737 select FB_CFB_IMAGEBLIT
738 select FB_MODE_HELPERS
739 help
740 This is the frame buffer driver for generic VBE 2.0 compliant
741 graphic cards. It can also take advantage of VBE 3.0 features,
742 such as refresh rate adjustment.
743
744 This driver generally provides more features than vesafb but
745 requires a userspace helper application called 'v86d'. See
746 <file:Documentation/fb/uvesafb.txt> for more information.
747
748 If unsure, say N.
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750config FB_VESA
751 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800752 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 select FB_CFB_FILLRECT
754 select FB_CFB_COPYAREA
755 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700756 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 help
758 This is the frame buffer device driver for generic VESA 2.0
759 compliant graphic cards. The older VESA 1.2 cards are not supported.
760 You will get a boot time penguin logo at no additional cost. Please
761 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
762
Huang, Ying7c831722007-11-28 16:21:55 -0800763config FB_EFI
764 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700765 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700766 select FB_CFB_FILLRECT
767 select FB_CFB_COPYAREA
768 select FB_CFB_IMAGEBLIT
769 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700770 This is the EFI frame buffer device driver. If the firmware on
771 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
772 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700773
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700774config FB_N411
775 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700776 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700777 select FB_SYS_FILLRECT
778 select FB_SYS_COPYAREA
779 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700780 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700781 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700782 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700783 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700784 This enables support for the Apollo display controller in its
785 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787config FB_HGA
788 tristate "Hercules mono graphics support"
789 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 help
791 Say Y here if you have a Hercules mono graphics card.
792
793 To compile this driver as a module, choose M here: the
794 module will be called hgafb.
795
Brent Cook529ed802010-12-31 05:56:50 +0000796 As this card technology is at least 25 years old,
797 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799config FB_GBE
800 bool "SGI Graphics Backend frame buffer support"
H. Peter Anvinc5f9ee32014-02-25 12:05:34 -0800801 depends on (FB = y) && SGI_IP32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 select FB_CFB_FILLRECT
803 select FB_CFB_COPYAREA
804 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 help
806 This is the frame buffer device driver for SGI Graphics Backend.
807 This chip is used in SGI O2 and Visual Workstation 320/540.
808
809config FB_GBE_MEM
810 int "Video memory size in MB"
811 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800812 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 help
814 This is the amount of memory reserved for the framebuffer,
815 which can be any value between 1MB and 8MB.
816
Mark Fortescue1a571982005-11-29 19:34:44 -0800817config FB_SBUS
818 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800819 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800820 help
821 Say Y if you want support for SBUS or UPA based frame buffer device.
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823config FB_BW2
824 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800825 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 select FB_CFB_FILLRECT
827 select FB_CFB_COPYAREA
828 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 help
830 This is the frame buffer device driver for the BWtwo frame buffer.
831
832config FB_CG3
833 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800834 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800835 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 select FB_CFB_COPYAREA
837 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 help
839 This is the frame buffer device driver for the CGthree frame buffer.
840
841config FB_CG6
842 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800843 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 select FB_CFB_COPYAREA
845 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 help
847 This is the frame buffer device driver for the CGsix (GX, TurboGX)
848 frame buffer.
849
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700850config FB_FFB
851 bool "Creator/Creator3D/Elite3D support"
852 depends on FB_SBUS && SPARC64
853 select FB_CFB_COPYAREA
854 select FB_CFB_IMAGEBLIT
855 help
856 This is the frame buffer device driver for the Creator, Creator3D,
857 and Elite3D graphics boards.
858
859config FB_TCX
860 bool "TCX (SS4/SS5 only) support"
861 depends on FB_SBUS
862 select FB_CFB_FILLRECT
863 select FB_CFB_COPYAREA
864 select FB_CFB_IMAGEBLIT
865 help
866 This is the frame buffer device driver for the TCX 24/8bit frame
867 buffer.
868
869config FB_CG14
870 bool "CGfourteen (SX) 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 CGfourteen frame
877 buffer on Desktop SPARCsystems with the SX graphics option.
878
879config FB_P9100
880 bool "P9100 (Sparcbook 3 only) 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 P9100 card
887 supported on Sparcbook 3 machines.
888
889config FB_LEO
890 bool "Leo (ZX) 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 SBUS-based Sun ZX
897 (leo) frame buffer cards.
898
899config FB_IGA
900 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700901 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700902 select FB_CFB_FILLRECT
903 select FB_CFB_COPYAREA
904 select FB_CFB_IMAGEBLIT
905 help
906 This is the framebuffer device for the INTERGRAPHICS 1680 and
907 successor frame buffer cards.
908
909config FB_XVR500
910 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700911 depends on (FB = y) && PCI && SPARC64
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 Sun XVR-500 and similar
917 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200918 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700919 mostly initialized the card already. It is treated as a
920 completely dumb framebuffer device.
921
922config FB_XVR2500
923 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700924 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700925 select FB_CFB_FILLRECT
926 select FB_CFB_COPYAREA
927 select FB_CFB_IMAGEBLIT
928 help
929 This is the framebuffer device for the Sun XVR-2500 and similar
930 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200931 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700932 mostly initialized the card already. It is treated as a
933 completely dumb framebuffer device.
934
David S. Miller2d378b92010-03-13 16:25:03 -0800935config FB_XVR1000
936 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700937 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800938 select FB_CFB_FILLRECT
939 select FB_CFB_COPYAREA
940 select FB_CFB_IMAGEBLIT
941 help
942 This is the framebuffer device for the Sun XVR-1000 and similar
943 graphics cards. The driver only works on sparc64 systems where
944 the system firmware has mostly initialized the card already. It
945 is treated as a completely dumb framebuffer device.
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947config FB_PVR2
948 tristate "NEC PowerVR 2 display support"
949 depends on FB && SH_DREAMCAST
950 select FB_CFB_FILLRECT
951 select FB_CFB_COPYAREA
952 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 ---help---
954 Say Y here if you have a PowerVR 2 card in your box. If you plan to
955 run linux on your Dreamcast, you will have to say Y here.
956 This driver may or may not work on other PowerVR 2 cards, but is
957 totally untested. Use at your own risk. If unsure, say N.
958
959 To compile this driver as a module, choose M here: the
960 module will be called pvr2fb.
961
962 You can pass several parameters to the driver at boot time or at
963 module load time. The parameters look like "video=pvr2:XXX", where
964 the meaning of XXX can be found at the end of the main source file
965 (<file:drivers/video/pvr2fb.c>). Please see the file
966 <file:Documentation/fb/pvr2fb.txt>.
967
Stefan Kristianssone61d05d2014-01-13 21:38:10 +0200968config FB_OPENCORES
969 tristate "OpenCores VGA/LCD core 2.0 framebuffer support"
970 depends on FB
971 select FB_CFB_FILLRECT
972 select FB_CFB_COPYAREA
973 select FB_CFB_IMAGEBLIT
974 help
975 This enables support for the OpenCores VGA/LCD core.
976
977 The OpenCores VGA/LCD core is typically used together with
978 softcore CPUs (e.g. OpenRISC or Microblaze) or hard processor
979 systems (e.g. Altera socfpga or Xilinx Zynq) on FPGAs.
980
981 The source code and specification for the core is available at
982 <http://opencores.org/project,vga_lcd>
983
Randy Dunlapecc41d52005-11-07 01:00:29 -0800984config FB_S1D13XXX
985 tristate "Epson S1D13XXX framebuffer support"
986 depends on FB
987 select FB_CFB_FILLRECT
988 select FB_CFB_COPYAREA
989 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800990 help
991 Support for S1D13XXX framebuffer device family (currently only
992 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200993 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800994
Nicolas Ferre14340582007-05-10 22:23:26 -0700995config FB_ATMEL
996 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +0200997 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -0700998 select FB_CFB_FILLRECT
999 select FB_CFB_COPYAREA
1000 select FB_CFB_IMAGEBLIT
Jean-Christophe PLAGNIOL-VILLARDb9851722013-03-29 02:05:47 +08001001 select FB_MODE_HELPERS
1002 select VIDEOMODE_HELPERS
Nicolas Ferre14340582007-05-10 22:23:26 -07001003 help
1004 This enables support for the AT91/AT32 LCD Controller.
1005
1006config FB_INTSRAM
1007 bool "Frame Buffer in internal SRAM"
1008 depends on FB_ATMEL && ARCH_AT91SAM9261
1009 help
1010 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1011 to let frame buffer in external SDRAM.
1012
Nicolas Ferre250a2692007-07-21 04:37:59 -07001013config FB_ATMEL_STN
1014 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001015 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001016 default n
1017 help
1018 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1019 Controller. Say N if you want to connect a TFT.
1020
1021 If unsure, say N.
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023config FB_NVIDIA
1024 tristate "nVidia Framebuffer Support"
1025 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001026 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 select FB_MODE_HELPERS
1028 select FB_CFB_FILLRECT
1029 select FB_CFB_COPYAREA
1030 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001031 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001032 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 help
1034 This driver supports graphics boards with the nVidia chips, TNT
1035 and newer. For very old chipsets, such as the RIVA128, then use
1036 the rivafb.
1037 Say Y if you have such a graphics board.
1038
1039 To compile this driver as a module, choose M here: the
1040 module will be called nvidiafb.
1041
1042config FB_NVIDIA_I2C
1043 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001044 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001045 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 help
1047 This enables I2C support for nVidia Chipsets. This is used
1048 only for getting EDID information from the attached display
1049 allowing for robust video mode handling and switching.
1050
1051 Because fbdev-2.6 requires that drivers must be able to
1052 independently validate video mode parameters, you should say Y
1053 here.
1054
Jean Delvare647f2e72007-05-10 22:23:29 -07001055config FB_NVIDIA_DEBUG
1056 bool "Lots of debug output"
1057 depends on FB_NVIDIA
1058 default n
1059 help
1060 Say Y here if you want the nVidia driver to output all sorts
1061 of debugging information to provide to the maintainer when
1062 something goes wrong.
1063
Michael Hanselmann5474c122006-06-25 05:47:08 -07001064config FB_NVIDIA_BACKLIGHT
1065 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001066 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001067 default y
1068 help
1069 Say Y here if you want to control the backlight of your display.
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071config FB_RIVA
1072 tristate "nVidia Riva support"
1073 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001074 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 select FB_MODE_HELPERS
1076 select FB_CFB_FILLRECT
1077 select FB_CFB_COPYAREA
1078 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001079 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001080 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 help
1082 This driver supports graphics boards with the nVidia Riva/Geforce
1083 chips.
1084 Say Y if you have such a graphics board.
1085
1086 To compile this driver as a module, choose M here: the
1087 module will be called rivafb.
1088
1089config FB_RIVA_I2C
1090 bool "Enable DDC Support"
1091 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001092 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 help
1094 This enables I2C support for nVidia Chipsets. This is used
1095 only for getting EDID information from the attached display
1096 allowing for robust video mode handling and switching.
1097
1098 Because fbdev-2.6 requires that drivers must be able to
1099 independently validate video mode parameters, you should say Y
1100 here.
1101
1102config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001103 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 depends on FB_RIVA
1105 default n
1106 help
1107 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001108 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 something goes wrong.
1110
Michael Hanselmann5474c122006-06-25 05:47:08 -07001111config FB_RIVA_BACKLIGHT
1112 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001113 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001114 default y
1115 help
1116 Say Y here if you want to control the backlight of your display.
1117
Ondrej Zary5350c652012-02-10 18:59:17 +01001118config FB_I740
Kees Cookd1d34222013-01-16 18:53:57 -08001119 tristate "Intel740 support"
1120 depends on FB && PCI
Ondrej Zary5350c652012-02-10 18:59:17 +01001121 select FB_MODE_HELPERS
1122 select FB_CFB_FILLRECT
1123 select FB_CFB_COPYAREA
1124 select FB_CFB_IMAGEBLIT
1125 select VGASTATE
1126 select FB_DDC
1127 help
1128 This driver supports graphics cards based on Intel740 chip.
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130config FB_I810
Kees Cookd1d34222013-01-16 18:53:57 -08001131 tristate "Intel 810/815 support"
1132 depends on FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 select FB_MODE_HELPERS
1134 select FB_CFB_FILLRECT
1135 select FB_CFB_COPYAREA
1136 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001137 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 help
1139 This driver supports the on-board graphics built in to the Intel 810
1140 and 815 chipsets. Say Y if you have and plan to use such a board.
1141
1142 To compile this driver as a module, choose M here: the
1143 module will be called i810fb.
1144
1145 For more information, please read
1146 <file:Documentation/fb/intel810.txt>
1147
1148config FB_I810_GTF
1149 bool "use VESA Generalized Timing Formula"
1150 depends on FB_I810
1151 help
1152 If you say Y, then the VESA standard, Generalized Timing Formula
1153 or GTF, will be used to calculate the required video timing values
1154 per video mode. Since the GTF allows nondiscrete timings
1155 (nondiscrete being a range of values as opposed to discrete being a
1156 set of values), you'll be able to use any combination of horizontal
1157 and vertical resolutions, and vertical refresh rates without having
1158 to specify your own timing parameters. This is especially useful
1159 to maximize the performance of an aging display, or if you just
1160 have a display with nonstandard dimensions. A VESA compliant
1161 monitor is recommended, but can still work with non-compliant ones.
1162 If you need or want this, then select this option. The timings may
1163 not be compliant with Intel's recommended values. Use at your own
1164 risk.
1165
1166 If you say N, the driver will revert to discrete video timings
1167 using a set recommended by Intel in their documentation.
1168
1169 If unsure, say N.
1170
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001171config FB_I810_I2C
1172 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001173 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001174 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001175 help
1176
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001177config FB_LE80578
1178 tristate "Intel LE80578 (Vermilion) support"
1179 depends on FB && PCI && X86
1180 select FB_MODE_HELPERS
1181 select FB_CFB_FILLRECT
1182 select FB_CFB_COPYAREA
1183 select FB_CFB_IMAGEBLIT
1184 help
1185 This driver supports the LE80578 (Vermilion Range) chipset
1186
1187config FB_CARILLO_RANCH
1188 tristate "Intel Carillo Ranch support"
1189 depends on FB_LE80578 && FB && PCI && X86
1190 help
1191 This driver supports the LE80578 (Carillo Ranch) board
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193config FB_INTEL
Kees Cookd1d34222013-01-16 18:53:57 -08001194 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support"
1195 depends on FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 select FB_MODE_HELPERS
1197 select FB_CFB_FILLRECT
1198 select FB_CFB_COPYAREA
1199 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001200 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001201 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 help
1203 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001204 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 Say Y if you have and plan to use such a board.
1206
Krzysztof Helt4b198282009-06-18 16:49:21 -07001207 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1208
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001209 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 module will be called intelfb.
1211
Christian Merkled463d342006-08-22 10:07:01 +10001212 For more information, please read <file:Documentation/fb/intelfb.txt>
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001215 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 depends on FB_INTEL
1217 ---help---
1218 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001219 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 something goes wrong.
1221
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001222config FB_INTEL_I2C
1223 bool "DDC/I2C for Intel framebuffer support"
1224 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001225 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001226 default y
1227 help
1228 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230config FB_MATROX
1231 tristate "Matrox acceleration"
1232 depends on FB && PCI
1233 select FB_CFB_FILLRECT
1234 select FB_CFB_COPYAREA
1235 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 select FB_TILEBLITTING
1237 select FB_MACMODES if PPC_PMAC
1238 ---help---
1239 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1240 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1241 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1242 Matrox G400, G450 or G550 card in your box.
1243
1244 To compile this driver as a module, choose M here: the
1245 module will be called matroxfb.
1246
1247 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001248 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 are described in <file:Documentation/fb/matroxfb.txt>.
1250
1251config FB_MATROX_MILLENIUM
1252 bool "Millennium I/II support"
1253 depends on FB_MATROX
1254 help
1255 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1256 video card. If you select "Advanced lowlevel driver options" below,
1257 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1258 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1259 also use font widths different from 8.
1260
1261config FB_MATROX_MYSTIQUE
1262 bool "Mystique support"
1263 depends on FB_MATROX
1264 help
1265 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1266 video card. If you select "Advanced lowlevel driver options" below,
1267 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1268 packed pixel and 32 bpp packed pixel. You can also use font widths
1269 different from 8.
1270
1271config FB_MATROX_G
1272 bool "G100/G200/G400/G450/G550 support"
1273 depends on FB_MATROX
1274 ---help---
1275 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1276 video card. If you select "Advanced lowlevel driver options", you
1277 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1278 pixel and 32 bpp packed pixel. You can also use font widths
1279 different from 8.
1280
Jean Delvareee831262009-05-12 13:19:41 -07001281 If you need support for G400 secondary head, you must say Y to
1282 "Matrox I2C support" and "G400 second head support" right below.
1283 G450/G550 secondary head and digital output are supported without
1284 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 The driver starts in monitor mode. You must use the matroxset tool
1287 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1288 swap primary and secondary head outputs, or to change output mode.
1289 Secondary head driver always start in 640x480 resolution and you
1290 must use fbset to change it.
1291
1292 Do not forget that second head supports only 16 and 32 bpp
1293 packed pixels, so it is a good idea to compile them into the kernel
1294 too. You can use only some font widths, as the driver uses generic
1295 painting procedures (the secondary head does not use acceleration
1296 engine).
1297
1298 G450/G550 hardware can display TV picture only from secondary CRTC,
1299 and it performs no scaling, so picture must have 525 or 625 lines.
1300
1301config FB_MATROX_I2C
1302 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001303 depends on FB_MATROX
1304 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 ---help---
1306 This drivers creates I2C buses which are needed for accessing the
1307 DDC (I2C) bus present on all Matroxes, an I2C bus which
1308 interconnects Matrox optional devices, like MGA-TVO on G200 and
1309 G400, and the secondary head DDC bus, present on G400 only.
1310
1311 You can say Y or M here if you want to experiment with monitor
1312 detection code. You must say Y or M here if you want to use either
1313 second head of G400 or MGA-TVO on G200 or G400.
1314
1315 If you compile it as module, it will create a module named
1316 i2c-matroxfb.
1317
1318config FB_MATROX_MAVEN
1319 tristate "G400 second head support"
1320 depends on FB_MATROX_G && FB_MATROX_I2C
1321 ---help---
1322 WARNING !!! This support does not work with G450 !!!
1323
1324 Say Y or M here if you want to use a secondary head (meaning two
1325 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1326 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1327 secondary head output is blanked while you are in X. With XFree
1328 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1329 the fbdev driver on first head and the fbdev driver on second head.
1330
1331 If you compile it as module, two modules are created,
1332 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1333 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1334 also load i2c-matroxfb to get it to run.
1335
1336 The driver starts in monitor mode and you must use the matroxset
1337 tool (available at
1338 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1339 PAL or NTSC or to swap primary and secondary head outputs.
1340 Secondary head driver also always start in 640x480 resolution, you
1341 must use fbset to change it.
1342
1343 Also do not forget that second head supports only 16 and 32 bpp
1344 packed pixels, so it is a good idea to compile them into the kernel
1345 too. You can use only some font widths, as the driver uses generic
1346 painting procedures (the secondary head does not use acceleration
1347 engine).
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349config FB_RADEON
1350 tristate "ATI Radeon display support"
1351 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001352 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 select FB_MODE_HELPERS
1354 select FB_CFB_FILLRECT
1355 select FB_CFB_COPYAREA
1356 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 select FB_MACMODES if PPC_OF
1358 help
1359 Choose this option if you want to use an ATI Radeon graphics card as
1360 a framebuffer device. There are both PCI and AGP versions. You
1361 don't need to choose this to run the Radeon in plain VGA mode.
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001364 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366config FB_RADEON_I2C
1367 bool "DDC/I2C for ATI Radeon support"
1368 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001369 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 default y
1371 help
1372 Say Y here if you want DDC/I2C support for your Radeon board.
1373
Michael Hanselmann5474c122006-06-25 05:47:08 -07001374config FB_RADEON_BACKLIGHT
1375 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001376 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001377 default y
1378 help
1379 Say Y here if you want to control the backlight of your display.
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381config FB_RADEON_DEBUG
1382 bool "Lots of debug output from Radeon driver"
1383 depends on FB_RADEON
1384 default n
1385 help
1386 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001387 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 something goes wrong.
1389
1390config FB_ATY128
1391 tristate "ATI Rage128 display support"
1392 depends on FB && PCI
1393 select FB_CFB_FILLRECT
1394 select FB_CFB_COPYAREA
1395 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001396 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 select FB_MACMODES if PPC_PMAC
1398 help
1399 This driver supports graphics boards with the ATI Rage128 chips.
1400 Say Y if you have such a graphics board and read
1401 <file:Documentation/fb/aty128fb.txt>.
1402
1403 To compile this driver as a module, choose M here: the
1404 module will be called aty128fb.
1405
Michael Hanselmann5474c122006-06-25 05:47:08 -07001406config FB_ATY128_BACKLIGHT
1407 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001408 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001409 default y
1410 help
1411 Say Y here if you want to control the backlight of your display.
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413config FB_ATY
1414 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001415 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 select FB_CFB_FILLRECT
1417 select FB_CFB_COPYAREA
1418 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001419 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 select FB_MACMODES if PPC
1421 help
1422 This driver supports graphics boards with the ATI Mach64 chips.
1423 Say Y if you have such a graphics board.
1424
1425 To compile this driver as a module, choose M here: the
1426 module will be called atyfb.
1427
1428config FB_ATY_CT
1429 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1430 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001431 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 help
1433 Say Y here to support use of ATI's 64-bit Rage boards (or other
1434 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1435 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001436 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438config FB_ATY_GENERIC_LCD
Kees Cookd1d34222013-01-16 18:53:57 -08001439 bool "Mach64 generic LCD support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 depends on FB_ATY_CT
1441 help
1442 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1443 Rage XC, or Rage XL chipset.
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445config FB_ATY_GX
1446 bool "Mach64 GX support" if PCI
1447 depends on FB_ATY
1448 default y if ATARI
1449 help
1450 Say Y here to support use of the ATI Mach64 Graphics Expression
1451 board (or other boards based on the Mach64 GX chipset) as a
1452 framebuffer device. The ATI product support page for these boards
1453 is at
1454 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1455
Michael Hanselmann5474c122006-06-25 05:47:08 -07001456config FB_ATY_BACKLIGHT
1457 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001458 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001459 default y
1460 help
1461 Say Y here if you want to control the backlight of your display.
1462
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001463config FB_S3
1464 tristate "S3 Trio/Virge support"
1465 depends on FB && PCI
1466 select FB_CFB_FILLRECT
1467 select FB_CFB_COPYAREA
1468 select FB_CFB_IMAGEBLIT
1469 select FB_TILEBLITTING
1470 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001471 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001472 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001473 ---help---
1474 Driver for graphics boards with S3 Trio / S3 Virge chip.
1475
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001476config FB_S3_DDC
1477 bool "DDC for S3 support"
1478 depends on FB_S3
1479 select FB_DDC
1480 default y
1481 help
1482 Say Y here if you want DDC support for your S3 graphics card.
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484config FB_SAVAGE
1485 tristate "S3 Savage support"
Kees Cookd1d34222013-01-16 18:53:57 -08001486 depends on FB && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 select FB_MODE_HELPERS
1488 select FB_CFB_FILLRECT
1489 select FB_CFB_COPYAREA
1490 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001491 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 help
1493 This driver supports notebooks and computers with S3 Savage PCI/AGP
1494 chips.
1495
1496 Say Y if you have such a graphics card.
1497
1498 To compile this driver as a module, choose M here; the module
1499 will be called savagefb.
1500
1501config FB_SAVAGE_I2C
1502 bool "Enable DDC2 Support"
1503 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001504 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 help
1506 This enables I2C support for S3 Savage Chipsets. This is used
1507 only for getting EDID information from the attached display
1508 allowing for robust video mode handling and switching.
1509
1510 Because fbdev-2.6 requires that drivers must be able to
1511 independently validate video mode parameters, you should say Y
1512 here.
1513
1514config FB_SAVAGE_ACCEL
1515 bool "Enable Console Acceleration"
1516 depends on FB_SAVAGE
1517 default n
1518 help
1519 This option will compile in console acceleration support. If
1520 the resulting framebuffer console has bothersome glitches, then
1521 choose N here.
1522
1523config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001524 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 depends on FB && PCI
1526 select FB_CFB_FILLRECT
1527 select FB_CFB_COPYAREA
1528 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001529 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001531 This is the frame buffer device driver for the SiS 300, 315, 330
1532 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1533 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 To compile this driver as a module, choose M here; the module
1536 will be called sisfb.
1537
1538config FB_SIS_300
1539 bool "SiS 300 series support"
1540 depends on FB_SIS
1541 help
1542 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1543
1544config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001545 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 depends on FB_SIS
1547 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001548 Say Y here to support use of the SiS 315, 330 and 340 series
1549 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1550 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001552config FB_VIA
1553 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001554 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001555 select FB_CFB_FILLRECT
1556 select FB_CFB_COPYAREA
1557 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001558 select I2C_ALGOBIT
1559 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001560 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001561 help
1562 This is the frame buffer device driver for Graphics chips of VIA
1563 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1564 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1565 /P4M900,VX800)
1566 Say Y if you have a VIA UniChrome graphics board.
1567
1568 To compile this driver as a module, choose M here: the
1569 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001570
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001571if FB_VIA
1572
1573config FB_VIA_DIRECT_PROCFS
1574 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1575 depends on FB_VIA
1576 default n
1577 help
1578 Allow direct hardware access to some output registers via procfs.
1579 This is dangerous but may provide the only chance to get the
1580 correct output device configuration.
1581 Its use is strongly discouraged.
1582
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001583config FB_VIA_X_COMPATIBILITY
1584 bool "X server compatibility"
1585 depends on FB_VIA
1586 default n
1587 help
1588 This option reduces the functionality (power saving, ...) of the
1589 framebuffer to avoid negative impact on the OpenChrome X server.
1590 If you use any X server other than fbdev you should enable this
1591 otherwise it should be safe to disable it and allow using all
1592 features.
1593
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001594endif
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596config FB_NEOMAGIC
1597 tristate "NeoMagic display support"
1598 depends on FB && PCI
1599 select FB_MODE_HELPERS
1600 select FB_CFB_FILLRECT
1601 select FB_CFB_COPYAREA
1602 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001603 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 help
1605 This driver supports notebooks with NeoMagic PCI chips.
1606 Say Y if you have such a graphics card.
1607
1608 To compile this driver as a module, choose M here: the
1609 module will be called neofb.
1610
1611config FB_KYRO
1612 tristate "IMG Kyro support"
1613 depends on FB && PCI
1614 select FB_CFB_FILLRECT
1615 select FB_CFB_COPYAREA
1616 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 help
1618 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1619 graphics board.
1620
1621 To compile this driver as a module, choose M here: the
1622 module will be called kyrofb.
1623
1624config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001625 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 depends on FB && PCI
1627 select FB_CFB_IMAGEBLIT
1628 select FB_CFB_FILLRECT
1629 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001630 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001632 This driver supports graphics boards with the 3Dfx Banshee,
1633 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1634 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 To compile this driver as a module, choose M here: the
1637 module will be called tdfxfb.
1638
1639config FB_3DFX_ACCEL
Kees Cookd1d34222013-01-16 18:53:57 -08001640 bool "3Dfx Acceleration functions"
1641 depends on FB_3DFX
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001643 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1644 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001646config FB_3DFX_I2C
1647 bool "Enable DDC/I2C support"
Kees Cookd1d34222013-01-16 18:53:57 -08001648 depends on FB_3DFX
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001649 select FB_DDC
1650 default y
1651 help
1652 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654config FB_VOODOO1
1655 tristate "3Dfx Voodoo Graphics (sst1) support"
1656 depends on FB && PCI
1657 select FB_CFB_FILLRECT
1658 select FB_CFB_COPYAREA
1659 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 ---help---
1661 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1662 Voodoo2 (cvg) based graphics card.
1663
1664 To compile this driver as a module, choose M here: the
1665 module will be called sstfb.
1666
1667 WARNING: Do not use any application that uses the 3D engine
1668 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001669 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 options and other important info support.
1671
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001672config FB_VT8623
1673 tristate "VIA VT8623 support"
1674 depends on FB && PCI
1675 select FB_CFB_FILLRECT
1676 select FB_CFB_COPYAREA
1677 select FB_CFB_IMAGEBLIT
1678 select FB_TILEBLITTING
1679 select FB_SVGALIB
1680 select VGASTATE
1681 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1682 ---help---
1683 Driver for CastleRock integrated graphics core in the
1684 VIA VT8623 [Apollo CLE266] chipset.
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001687 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 depends on FB && PCI
1689 select FB_CFB_FILLRECT
1690 select FB_CFB_COPYAREA
1691 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001693 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1694 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1695 and Blade XP.
1696 There are also integrated versions of these chips called CyberXXXX,
1697 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001698 but also on some motherboards including early VIA EPIA motherboards.
1699 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 Say Y if you have such a graphics board.
1702
1703 To compile this driver as a module, choose M here: the
1704 module will be called tridentfb.
1705
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001706config FB_ARK
1707 tristate "ARK 2000PV support"
1708 depends on FB && PCI
1709 select FB_CFB_FILLRECT
1710 select FB_CFB_COPYAREA
1711 select FB_CFB_IMAGEBLIT
1712 select FB_TILEBLITTING
1713 select FB_SVGALIB
1714 select VGASTATE
1715 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1716 ---help---
1717 Driver for PCI graphics boards with ARK 2000PV chip
1718 and ICS 5342 RAMDAC.
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720config FB_PM3
Kees Cookd1d34222013-01-16 18:53:57 -08001721 tristate "Permedia3 support"
1722 depends on FB && PCI
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001723 select FB_CFB_FILLRECT
1724 select FB_CFB_COPYAREA
1725 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 help
1727 This is the frame buffer device driver for the 3DLabs Permedia3
1728 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1729 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1730 and maybe other boards.
1731
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001732config FB_CARMINE
1733 tristate "Fujitsu carmine frame buffer support"
1734 depends on FB && PCI
1735 select FB_CFB_FILLRECT
1736 select FB_CFB_COPYAREA
1737 select FB_CFB_IMAGEBLIT
1738 help
1739 This is the frame buffer device driver for the Fujitsu Carmine chip.
1740 The driver provides two independent frame buffer devices.
1741
1742choice
1743 depends on FB_CARMINE
1744 prompt "DRAM timing"
1745 default FB_CARMINE_DRAM_EVAL
1746
1747config FB_CARMINE_DRAM_EVAL
1748 bool "Eval board timings"
1749 help
1750 Use timings which work on the eval card.
1751
1752config CARMINE_DRAM_CUSTOM
1753 bool "Custom board timings"
1754 help
1755 Use custom board timings.
1756endchoice
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758config FB_AU1100
1759 bool "Au1100 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001760 depends on (FB = y) && MIPS_ALCHEMY
Ralf Baechled1709e42007-07-23 18:43:50 -07001761 select FB_CFB_FILLRECT
1762 select FB_CFB_COPYAREA
1763 select FB_CFB_IMAGEBLIT
1764 help
1765 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1766 various panels and CRTs by passing in kernel cmd line option
1767 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001769config FB_AU1200
Manuel Lauss809f36c2011-11-01 20:03:30 +01001770 bool "Au1200/Au1300 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001771 depends on (FB = y) && MIPS_ALCHEMY
Manuel Lauss4ee58462011-06-10 15:23:04 +00001772 select FB_SYS_FILLRECT
1773 select FB_SYS_COPYAREA
1774 select FB_SYS_IMAGEBLIT
1775 select FB_SYS_FOPS
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001776 help
Manuel Lauss809f36c2011-11-01 20:03:30 +01001777 This is the framebuffer driver for the Au1200/Au1300 SOCs.
1778 It can drive various panels and CRTs by passing in kernel cmd line
1779 option au1200fb:panel=<name>.
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001780
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001781config FB_VT8500
Tony Prisk3d208372013-04-03 07:20:35 +13001782 bool "VIA VT8500 framebuffer support"
Tony Priske7b99532012-08-03 20:58:22 +12001783 depends on (FB = y) && ARM && ARCH_VT8500
Tony Prisk18a434b2013-04-03 07:20:33 +13001784 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1785 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001786 select FB_SYS_IMAGEBLIT
Tony Prisk7ab0a482013-04-03 07:20:38 +13001787 select FB_MODE_HELPERS
Tomi Valkeinene45f2652013-04-05 11:12:50 +03001788 select VIDEOMODE_HELPERS
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001789 help
1790 This is the framebuffer driver for VIA VT8500 integrated LCD
1791 controller.
1792
1793config FB_WM8505
Tony Prisk3d208372013-04-03 07:20:35 +13001794 bool "Wondermedia WM8xxx-series frame buffer support"
Tony Priske7b99532012-08-03 20:58:22 +12001795 depends on (FB = y) && ARM && ARCH_VT8500
Tony Prisk18a434b2013-04-03 07:20:33 +13001796 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1797 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001798 select FB_SYS_IMAGEBLIT
Tony Prisk7ab0a482013-04-03 07:20:38 +13001799 select FB_MODE_HELPERS
Tomi Valkeinene45f2652013-04-05 11:12:50 +03001800 select VIDEOMODE_HELPERS
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001801 help
Tony Prisk3d208372013-04-03 07:20:35 +13001802 This is the framebuffer driver for WonderMedia WM8xxx-series
1803 integrated LCD controller. This driver covers the WM8505, WM8650
1804 and WM8850 SoCs.
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001805
Tony Prisk18a434b2013-04-03 07:20:33 +13001806config FB_WMT_GE_ROPS
Tony Prisk3d208372013-04-03 07:20:35 +13001807 bool "VT8500/WM8xxx accelerated raster ops support"
Tony Prisk18a434b2013-04-03 07:20:33 +13001808 depends on (FB = y) && (FB_VT8500 || FB_WM8505)
1809 default n
1810 help
1811 This adds support for accelerated raster operations on the
1812 VIA VT8500 and Wondermedia 85xx series SoCs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814source "drivers/video/geode/Kconfig"
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816config FB_HIT
1817 tristate "HD64461 Frame Buffer support"
1818 depends on FB && HD64461
1819 select FB_CFB_FILLRECT
1820 select FB_CFB_COPYAREA
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001821 select FB_CFB_IMAGEBLIT
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001822 help
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 This is the frame buffer device driver for the Hitachi HD64461 LCD
1824 frame buffer card.
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826config FB_PMAG_AA
1827 bool "PMAG-AA TURBOchannel framebuffer support"
1828 depends on (FB = y) && TC
1829 select FB_CFB_FILLRECT
1830 select FB_CFB_COPYAREA
1831 select FB_CFB_IMAGEBLIT
1832 help
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001833 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 used mainly in the MIPS-based DECstation series.
1835
1836config FB_PMAG_BA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 tristate "PMAG-BA TURBOchannel framebuffer support"
1838 depends on FB && TC
1839 select FB_CFB_FILLRECT
1840 select FB_CFB_COPYAREA
1841 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 help
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001843 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1844 used mainly in the MIPS-based DECstation series.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
1846config FB_PMAGB_B
1847 tristate "PMAGB-B TURBOchannel framebuffer support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 depends on FB && TC
1849 select FB_CFB_FILLRECT
1850 select FB_CFB_COPYAREA
1851 select FB_CFB_IMAGEBLIT
1852 help
1853 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001854 in the MIPS-based DECstation series. The card is currently only
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 supported in 1280x1024x8 mode.
1856
1857config FB_MAXINE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 bool "Maxine (Personal DECstation) onboard framebuffer support"
1859 depends on (FB = y) && MACH_DECSTATION
1860 select FB_CFB_FILLRECT
1861 select FB_CFB_COPYAREA
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001862 select FB_CFB_IMAGEBLIT
1863 help
1864 Support for the onboard framebuffer (1024x768x8) in the Personal
1865 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1866 Codename "Maxine").
1867
1868config FB_G364
1869 bool "G364 frame buffer support"
1870 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
1871 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 select FB_CFB_COPYAREA
1873 select FB_CFB_IMAGEBLIT
1874 help
1875 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1876 Olivetti M700-10 systems.
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878config FB_68328
1879 bool "Motorola 68328 native frame buffer support"
1880 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
1881 select FB_CFB_FILLRECT
1882 select FB_CFB_COPYAREA
1883 select FB_CFB_IMAGEBLIT
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001884 help
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001885 Say Y here if you want to support the built-in frame buffer of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 the Motorola 68328 CPU family.
1887
1888config FB_PXA168
Eric Miao198fc102008-12-23 17:49:43 +08001889 tristate "PXA168/910 LCD framebuffer support"
1890 depends on FB && (CPU_PXA168 || CPU_PXA910)
1891 select FB_CFB_FILLRECT
1892 select FB_CFB_COPYAREA
1893 select FB_CFB_IMAGEBLIT
Eric Miao3c42a442008-04-30 00:52:26 -07001894 ---help---
1895 Frame buffer driver for the built-in LCD controller in the Marvell
Eric Miao7f1133c2008-04-30 00:52:27 -07001896 MMP processor.
Eric Miao3c42a442008-04-30 00:52:26 -07001897
1898config FB_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 tristate "PXA LCD framebuffer support"
1900 depends on FB && ARCH_PXA
1901 select FB_CFB_FILLRECT
1902 select FB_CFB_COPYAREA
1903 select FB_CFB_IMAGEBLIT
1904 ---help---
1905 Frame buffer driver for the built-in LCD controller in the Intel
1906 PXA2x0 processor.
1907
1908 This driver is also available as a module ( = code which can be
1909 inserted and removed from the running kernel whenever you want). The
1910 module will be called pxafb. If you want to compile it as a module,
1911 say M here and read <file:Documentation/kbuild/modules.txt>.
1912
1913 If unsure, say N.
1914
1915config FB_PXA_OVERLAY
Mike Rapoport22caf042006-07-14 00:24:34 -07001916 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1917 default n
1918 depends on FB_PXA && (PXA27x || PXA3xx)
1919
1920config FB_PXA_SMARTPANEL
1921 bool "PXA Smartpanel LCD support"
1922 default n
1923 depends on FB_PXA
1924
1925config FB_PXA_PARAMETERS
1926 bool "PXA LCD command line parameters"
1927 default n
1928 depends on FB_PXA
1929 ---help---
1930 Enable the use of kernel command line or module parameters
1931 to configure the physical properties of the LCD panel when
1932 using the PXA LCD driver.
1933
1934 This option allows you to override the panel parameters
1935 supplied by the platform in order to support multiple
York Sun9b53a9e2008-04-28 02:15:34 -07001936 different models of flatpanel. If you will only be using a
1937 single model of flatpanel then you can safely leave this
1938 option disabled.
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001939
York Sun9b53a9e2008-04-28 02:15:34 -07001940 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1941
Daniel Mack364dbdf2010-11-04 14:44:00 -04001942config PXA3XX_GCU
1943 tristate "PXA3xx 2D graphics accelerator driver"
1944 depends on FB_PXA
1945 help
1946 Kernelspace driver for the 2D graphics controller unit (GCU)
1947 found on PXA3xx processors. There is a counterpart driver in the
1948 DirectFB suite, see http://www.directfb.org/
1949
1950 If you compile this as a module, it will be called pxa3xx_gcu.
1951
Randy Dunlapecc41d52005-11-07 01:00:29 -08001952config FB_MBX
1953 tristate "2700G LCD framebuffer support"
1954 depends on FB && ARCH_PXA
1955 select FB_CFB_FILLRECT
1956 select FB_CFB_COPYAREA
1957 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001958 ---help---
1959 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1960 Accelerator
1961
1962config FB_MBX_DEBUG
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001963 bool "Enable debugging info via debugfs"
Randy Dunlapecc41d52005-11-07 01:00:29 -08001964 depends on FB_MBX && DEBUG_FS
1965 default n
1966 ---help---
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 Enable this if you want debugging information using the debug
Arnaud Patard20fd5762005-09-09 13:10:07 -07001968 filesystem (debugfs)
1969
1970 If unsure, say N.
1971
York Sun9b53a9e2008-04-28 02:15:34 -07001972config FB_FSL_DIU
1973 tristate "Freescale DIU framebuffer support"
1974 depends on FB && FSL_SOC
1975 select FB_MODE_HELPERS
1976 select FB_CFB_FILLRECT
1977 select FB_CFB_COPYAREA
1978 select FB_CFB_IMAGEBLIT
1979 select PPC_LIB_RHEAP
1980 ---help---
1981 Framebuffer driver for the Freescale SoC DIU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983config FB_W100
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001984 tristate "W100 frame buffer support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 depends on FB && ARCH_PXA
1986 select FB_CFB_FILLRECT
1987 select FB_CFB_COPYAREA
1988 select FB_CFB_IMAGEBLIT
1989 ---help---
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001990 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 It can also drive the w3220 chip found on iPAQ hx4700.
1992
1993 This driver is also available as a module ( = code which can be
1994 inserted and removed from the running kernel whenever you want). The
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001995 module will be called w100fb. If you want to compile it as a module,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 say M here and read <file:Documentation/kbuild/modules.txt>.
1997
1998 If unsure, say N.
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001999
2000config FB_SH_MOBILE_LCDC
Magnus Damm7278a222010-03-10 11:33:10 +00002001 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm2540c112008-12-17 17:29:49 +09002002 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
2003 select FB_SYS_FILLRECT
2004 select FB_SYS_COPYAREA
2005 select FB_SYS_IMAGEBLIT
Magnus Damm85645572008-12-19 15:34:41 +09002006 select FB_SYS_FOPS
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002007 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002008 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002009 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002010 ---help---
2011 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2012
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002013config FB_SH_MOBILE_HDMI
2014 tristate "SuperH Mobile HDMI controller support"
2015 depends on FB_SH_MOBILE_LCDC
2016 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002017 select SOUND
2018 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002019 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002020 ---help---
2021 Driver for the on-chip SH-Mobile HDMI controller.
2022
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002023config FB_TMIO
2024 tristate "Toshiba Mobile IO FrameBuffer support"
2025 depends on FB && MFD_CORE
2026 select FB_CFB_FILLRECT
2027 select FB_CFB_COPYAREA
2028 select FB_CFB_IMAGEBLIT
2029 ---help---
2030 Frame buffer driver for the Toshiba Mobile IO integrated as found
2031 on the Sharp SL-6000 series
2032
2033 This driver is also available as a module ( = code which can be
2034 inserted and removed from the running kernel whenever you want). The
2035 module will be called tmiofb. If you want to compile it as a module,
2036 say M here and read <file:Documentation/kbuild/modules.txt>.
2037
2038 If unsure, say N.
2039
2040config FB_TMIO_ACCELL
2041 bool "tmiofb acceleration"
2042 depends on FB_TMIO
2043 default y
2044
Ben Dooksec549a02009-03-31 15:25:39 -07002045config FB_S3C
2046 tristate "Samsung S3C framebuffer support"
Jingoo Han4e45a762013-02-21 16:42:30 -08002047 depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || ARCH_S5P64X0 || \
2048 ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
Ben Dooksec549a02009-03-31 15:25:39 -07002049 select FB_CFB_FILLRECT
2050 select FB_CFB_COPYAREA
2051 select FB_CFB_IMAGEBLIT
2052 ---help---
2053 Frame buffer driver for the built-in FB controller in the Samsung
2054 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2055 and the S3C64XX series such as the S3C6400 and S3C6410.
2056
2057 These chips all have the same basic framebuffer design with the
2058 actual capabilities depending on the chip. For instance the S3C6400
2059 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2060 currently only have two.
2061
2062 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2063
2064config FB_S3C_DEBUG_REGWRITE
2065 bool "Debug register writes"
2066 depends on FB_S3C
2067 ---help---
Jingoo Han975d3522012-09-27 16:46:19 +09002068 Show all register writes via pr_debug()
Ben Dooksec549a02009-03-31 15:25:39 -07002069
Arnaud Patard20fd5762005-09-09 13:10:07 -07002070config FB_S3C2410
2071 tristate "S3C2410 LCD framebuffer support"
Kukjin Kimb130d5c2012-02-03 14:29:23 +09002072 depends on FB && ARCH_S3C24XX
Arnaud Patard20fd5762005-09-09 13:10:07 -07002073 select FB_CFB_FILLRECT
2074 select FB_CFB_COPYAREA
2075 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002076 ---help---
2077 Frame buffer driver for the built-in LCD controller in the Samsung
2078 S3C2410 processor.
2079
2080 This driver is also available as a module ( = code which can be
2081 inserted and removed from the running kernel whenever you want). The
2082 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002083 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002084
2085 If unsure, say N.
2086config FB_S3C2410_DEBUG
2087 bool "S3C2410 lcd debug messages"
2088 depends on FB_S3C2410
2089 help
2090 Turn on debugging messages. Note that you can set/unset at run time
2091 through sysfs
2092
Wang Qiang86619702010-03-10 15:21:47 -08002093config FB_NUC900
2094 bool "NUC900 LCD framebuffer support"
2095 depends on FB && ARCH_W90X900
2096 select FB_CFB_FILLRECT
2097 select FB_CFB_COPYAREA
2098 select FB_CFB_IMAGEBLIT
2099 ---help---
2100 Frame buffer driver for the built-in LCD controller in the Nuvoton
2101 NUC900 processor
2102
2103config GPM1040A0_320X240
2104 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2105 depends on FB_NUC900
2106
Ben Dooks5fc404e2007-02-20 13:58:21 -08002107config FB_SM501
2108 tristate "Silicon Motion SM501 framebuffer support"
2109 depends on FB && MFD_SM501
2110 select FB_CFB_FILLRECT
2111 select FB_CFB_COPYAREA
2112 select FB_CFB_IMAGEBLIT
2113 ---help---
2114 Frame buffer driver for the CRT and LCD controllers in the Silicon
2115 Motion SM501.
2116
2117 This driver is also available as a module ( = code which can be
2118 inserted and removed from the running kernel whenever you want). The
2119 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002120 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002121
2122 If unsure, say N.
2123
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01002124config FB_SMSCUFX
2125 tristate "SMSC UFX6000/7000 USB Framebuffer support"
2126 depends on FB && USB
2127 select FB_MODE_HELPERS
2128 select FB_SYS_FILLRECT
2129 select FB_SYS_COPYAREA
2130 select FB_SYS_IMAGEBLIT
2131 select FB_SYS_FOPS
2132 select FB_DEFERRED_IO
2133 ---help---
2134 This is a kernel framebuffer driver for SMSC UFX USB devices.
2135 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2136 mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
2137 (USB 3.0) devices.
2138 To compile as a module, choose M here: the module name is smscufx.
2139
Paul Mundt96f8d8642010-11-16 14:00:24 +09002140config FB_UDL
2141 tristate "Displaylink USB Framebuffer support"
2142 depends on FB && USB
2143 select FB_MODE_HELPERS
2144 select FB_SYS_FILLRECT
2145 select FB_SYS_COPYAREA
2146 select FB_SYS_IMAGEBLIT
2147 select FB_SYS_FOPS
2148 select FB_DEFERRED_IO
2149 ---help---
2150 This is a kernel framebuffer driver for DisplayLink USB devices.
2151 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2152 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2153 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002154
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002155config FB_IBM_GXT4500
Dan Horák6c39dcc2012-09-12 06:06:44 +00002156 tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors"
Randy Dunlap0058f472007-10-16 01:29:35 -07002157 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002158 select FB_CFB_FILLRECT
2159 select FB_CFB_COPYAREA
2160 select FB_CFB_IMAGEBLIT
2161 ---help---
Dan Horák6c39dcc2012-09-12 06:06:44 +00002162 Say Y here to enable support for the IBM GXT4000P/6000P and
2163 GXT4500P/6500P display adaptor based on Raster Engine RC1000,
2164 found on some IBM System P (pSeries) machines. This driver
2165 doesn't use Geometry Engine GT1000.
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002166
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002167config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002168 tristate "PS3 GPU framebuffer driver"
2169 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002170 select FB_SYS_FILLRECT
2171 select FB_SYS_COPYAREA
2172 select FB_SYS_IMAGEBLIT
2173 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002174 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002175 ---help---
2176 Include support for the virtual frame buffer in the PS3 platform.
2177
2178config FB_PS3_DEFAULT_SIZE_M
2179 int "PS3 default frame buffer size (in MiB)"
2180 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002181 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002182 ---help---
2183 This is the default size (in MiB) of the virtual frame buffer in
2184 the PS3.
2185 The default value can be overridden on the kernel command line
2186 using the "ps3fb" option (e.g. "ps3fb=9M");
2187
Andrei Konovalov147394c2007-05-08 00:40:18 -07002188config FB_XILINX
2189 tristate "Xilinx frame buffer support"
Michal Simek196bf9f2013-06-03 12:13:22 +02002190 depends on FB && (XILINX_VIRTEX || MICROBLAZE || ARCH_ZYNQ)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002191 select FB_CFB_FILLRECT
2192 select FB_CFB_COPYAREA
2193 select FB_CFB_IMAGEBLIT
2194 ---help---
2195 Include support for the Xilinx ML300/ML403 reference design
2196 framebuffer. ML300 carries a 640*480 LCD display on the board,
2197 ML403 uses a standard DB15 VGA connector.
2198
Arve Hjønnevågc289ba22013-02-21 16:42:09 -08002199config FB_GOLDFISH
2200 tristate "Goldfish Framebuffer"
Geert Uytterhoevene5ee7302013-05-24 15:55:27 -07002201 depends on FB && HAS_DMA
Arve Hjønnevågc289ba22013-02-21 16:42:09 -08002202 select FB_CFB_FILLRECT
2203 select FB_CFB_COPYAREA
2204 select FB_CFB_IMAGEBLIT
2205 ---help---
2206 Framebuffer driver for Goldfish Virtual Platform
2207
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002208config FB_COBALT
2209 tristate "Cobalt server LCD frame buffer support"
Steven J. Hill13f36e92012-04-18 09:13:51 -05002210 depends on FB && (MIPS_COBALT || MIPS_SEAD3)
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002211
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002212config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002213 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2214 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2215 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2216 select FB_CFB_FILLRECT
2217 select FB_CFB_COPYAREA
2218 select FB_CFB_IMAGEBLIT
2219 ---help---
2220 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2221 (D)STN/TFT LCD Controller.
2222 Supports display resolutions up to 1024x1024 pixel, grayscale and
2223 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2224 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2225 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002226
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002227config FB_DA8XX
Darren Etheridge979778f2013-08-05 17:02:39 -05002228 tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support"
2229 depends on FB && (ARCH_DAVINCI_DA8XX || SOC_AM33XX)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002230 select FB_CFB_FILLRECT
2231 select FB_CFB_COPYAREA
2232 select FB_CFB_IMAGEBLIT
Anatolij Gustschinf4130702012-03-13 14:13:57 +01002233 select FB_CFB_REV_PIXELS_IN_BYTE
Darren Etheridge979778f2013-08-05 17:02:39 -05002234 select FB_MODE_HELPERS
2235 select VIDEOMODE_HELPERS
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002236 ---help---
2237 This is the frame buffer device driver for the TI LCD controller
Darren Etheridge979778f2013-08-05 17:02:39 -05002238 found on DA8xx/OMAP-L1xx/AM335x SoCs.
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002239 If unsure, say N.
2240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241config FB_VIRTUAL
2242 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2243 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002244 select FB_SYS_FILLRECT
2245 select FB_SYS_COPYAREA
2246 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002247 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 ---help---
2249 This is a `virtual' frame buffer device. It operates on a chunk of
2250 unswappable kernel memory instead of on the memory of a graphics
2251 board. This means you cannot see any output sent to this frame
2252 buffer device, while it does consume precious memory. The main use
2253 of this frame buffer device is testing and debugging the frame
2254 buffer subsystem. Do NOT enable it for normal systems! To protect
2255 the innocent, it has to be enabled explicitly at boot time using the
2256 kernel option `video=vfb:'.
2257
2258 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002259 module will be called vfb. In order to load it, you must use
2260 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002263
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002264config XEN_FBDEV_FRONTEND
2265 tristate "Xen virtual frame buffer support"
2266 depends on FB && XEN
2267 select FB_SYS_FILLRECT
2268 select FB_SYS_COPYAREA
2269 select FB_SYS_IMAGEBLIT
2270 select FB_SYS_FOPS
2271 select FB_DEFERRED_IO
Andrew Jones36c11322013-01-09 13:53:24 +01002272 select INPUT_XEN_KBDDEV_FRONTEND if INPUT_MISC
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002273 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002274 default y
2275 help
2276 This driver implements the front-end of the Xen virtual
2277 frame buffer driver. It communicates with a back-end
2278 in another domain.
2279
Jaya Kumare9355082008-08-19 11:17:55 +01002280config FB_METRONOME
2281 tristate "E-Ink Metronome/8track controller support"
2282 depends on FB
2283 select FB_SYS_FILLRECT
2284 select FB_SYS_COPYAREA
2285 select FB_SYS_IMAGEBLIT
2286 select FB_SYS_FOPS
2287 select FB_DEFERRED_IO
2288 help
2289 This driver implements support for the E-Ink Metronome
2290 controller. The pre-release name for this device was 8track
2291 and could also have been called by some vendors as PVI-nnnn.
2292
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002293config FB_MB862XX
2294 tristate "Fujitsu MB862xx GDC support"
2295 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002296 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002297 select FB_CFB_FILLRECT
2298 select FB_CFB_COPYAREA
2299 select FB_CFB_IMAGEBLIT
2300 ---help---
2301 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2302
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002303choice
2304 prompt "GDC variant"
2305 depends on FB_MB862XX
2306
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002307config FB_MB862XX_PCI_GDC
2308 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002309 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002310 ---help---
2311 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2312 PCI graphics controller devices.
2313
2314config FB_MB862XX_LIME
2315 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002316 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002317 select FB_FOREIGN_ENDIAN
2318 select FB_LITTLE_ENDIAN
2319 ---help---
2320 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2321
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002322endchoice
2323
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002324config FB_MB862XX_I2C
2325 bool "Support I2C bus on MB862XX GDC"
2326 depends on FB_MB862XX && I2C
2327 default y
2328 help
2329 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2330 driver to support accessing I2C devices on controller's I2C bus.
2331 These are usually some video decoder chips.
2332
Ryan Mallon88017bda2009-09-22 16:47:09 -07002333config FB_EP93XX
2334 tristate "EP93XX frame buffer support"
2335 depends on FB && ARCH_EP93XX
2336 select FB_CFB_FILLRECT
2337 select FB_CFB_COPYAREA
2338 select FB_CFB_IMAGEBLIT
2339 ---help---
2340 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2341 This driver is also available as a module. The module will be called
2342 ep93xx-fb.
2343
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002344config FB_PRE_INIT_FB
2345 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002346 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002347 ---help---
2348 Select this option if display contents should be inherited as set by
2349 the bootloader.
2350
Pavel Machekd480ace2009-09-22 16:47:03 -07002351config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002352 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002353 depends on FB && ARCH_MSM
2354 select FB_CFB_FILLRECT
2355 select FB_CFB_COPYAREA
2356 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002357
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002358config FB_MX3
Guennadi Liakhovetski6e1588cb2009-02-26 21:34:28 +01002359 tristate "MX3 Framebuffer support"
2360 depends on FB && MX3_IPU
2361 select FB_CFB_FILLRECT
2362 select FB_CFB_COPYAREA
2363 select FB_CFB_IMAGEBLIT
2364 default y
2365 help
2366 This is a framebuffer device for the i.MX31 LCD Controller. So
2367 far only synchronous displays are supported. If you plan to use
2368 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002369
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002370config FB_BROADSHEET
2371 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2372 depends on FB
2373 select FB_SYS_FILLRECT
2374 select FB_SYS_COPYAREA
2375 select FB_SYS_IMAGEBLIT
2376 select FB_SYS_FOPS
2377 select FB_DEFERRED_IO
2378 help
2379 This driver implements support for the E-Ink Broadsheet
2380 controller. The release name for this device was Epson S1D13521
2381 and could also have been called by other names when coupled with
2382 a bridge adapter.
2383
Heiko Stübner2c8304d2012-04-28 12:20:00 +02002384config FB_AUO_K190X
2385 tristate "AUO-K190X EPD controller support"
2386 depends on FB
2387 select FB_SYS_FILLRECT
2388 select FB_SYS_COPYAREA
2389 select FB_SYS_IMAGEBLIT
2390 select FB_SYS_FOPS
2391 select FB_DEFERRED_IO
2392 help
2393 Provides support for epaper controllers from the K190X series
2394 of AUO. These controllers can be used to drive epaper displays
2395 from Sipix.
2396
2397 This option enables the common support, shared by the individual
2398 controller drivers. You will also have to enable the driver
2399 for the controller type used in your device.
2400
Heiko Stübner96b1d502012-04-28 12:21:12 +02002401config FB_AUO_K1900
2402 tristate "AUO-K1900 EPD controller support"
2403 depends on FB && FB_AUO_K190X
2404 help
2405 This driver implements support for the AUO K1900 epd-controller.
2406 This controller can drive Sipix epaper displays but can only do
2407 serial updates, reducing the number of possible frames per second.
2408
Heiko Stübner53027cd2012-04-28 12:22:08 +02002409config FB_AUO_K1901
2410 tristate "AUO-K1901 EPD controller support"
2411 depends on FB && FB_AUO_K190X
2412 help
2413 This driver implements support for the AUO K1901 epd-controller.
2414 This controller can drive Sipix epaper displays and supports
2415 concurrent updates, making higher frames per second possible.
2416
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002417config FB_JZ4740
2418 tristate "JZ4740 LCD framebuffer support"
2419 depends on FB && MACH_JZ4740
2420 select FB_SYS_FILLRECT
2421 select FB_SYS_COPYAREA
2422 select FB_SYS_IMAGEBLIT
2423 help
2424 Framebuffer support for the JZ4740 SoC.
2425
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002426config FB_MXS
2427 tristate "MXS LCD framebuffer support"
2428 depends on FB && ARCH_MXS
2429 select FB_CFB_FILLRECT
2430 select FB_CFB_COPYAREA
2431 select FB_CFB_IMAGEBLIT
Shawn Guo66940652013-03-14 10:57:34 +08002432 select FB_MODE_HELPERS
Fabio Estevamd7321df2013-05-08 21:05:55 +08002433 select VIDEOMODE_HELPERS
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002434 help
2435 Framebuffer support for the MXS SoC.
2436
GuanXuetaoce443ab2011-02-26 21:39:10 +08002437config FB_PUV3_UNIGFX
2438 tristate "PKUnity v3 Unigfx framebuffer support"
2439 depends on FB && UNICORE32 && ARCH_PUV3
2440 select FB_SYS_FILLRECT
2441 select FB_SYS_COPYAREA
2442 select FB_SYS_IMAGEBLIT
2443 select FB_SYS_FOPS
2444 help
2445 Choose this option if you want to use the Unigfx device as a
2446 framebuffer device. Without the support of PCI & AGP.
2447
Haiyang Zhang68a2d20b2013-04-29 15:05:42 -07002448config FB_HYPERV
2449 tristate "Microsoft Hyper-V Synthetic Video support"
2450 depends on FB && HYPERV
2451 select FB_CFB_FILLRECT
2452 select FB_CFB_COPYAREA
2453 select FB_CFB_IMAGEBLIT
2454 help
2455 This framebuffer driver supports Microsoft Hyper-V Synthetic Video.
2456
Stephen Warren26549c82013-05-24 15:55:13 -07002457config FB_SIMPLE
2458 bool "Simple framebuffer support"
David Herrmann5ef76da2013-08-02 14:05:20 +02002459 depends on (FB = y)
Stephen Warren26549c82013-05-24 15:55:13 -07002460 select FB_CFB_FILLRECT
2461 select FB_CFB_COPYAREA
2462 select FB_CFB_IMAGEBLIT
2463 help
2464 Say Y if you want support for a simple frame-buffer.
2465
2466 This driver assumes that the display hardware has been initialized
2467 before the kernel boots, and the kernel will simply render to the
2468 pre-allocated frame buffer surface.
2469
2470 Configuration re: surface address, size, and format must be provided
David Herrmann5ef76da2013-08-02 14:05:20 +02002471 through device tree, or plain old platform data.
Stephen Warren26549c82013-05-24 15:55:13 -07002472
Randy Dunlapf08f3892007-10-29 14:37:16 -07002473source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002474source "drivers/video/omap2/Kconfig"
Donghwa Lee7258cc12012-02-08 12:47:39 -08002475source "drivers/video/exynos/Kconfig"
Zhou Zhu59393bb2013-02-21 16:42:11 -08002476source "drivers/video/mmp/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002477source "drivers/video/backlight/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479if VT
2480 source "drivers/video/console/Kconfig"
2481endif
2482
2483if FB || SGI_NEWPORT_CONSOLE
2484 source "drivers/video/logo/Kconfig"
2485endif
2486
Kuninori Morimotof363afc2012-03-20 18:27:08 -07002487config FB_SH_MOBILE_MERAM
2488 tristate "SuperH Mobile MERAM read ahead support"
2489 depends on (SUPERH || ARCH_SHMOBILE)
2490 select GENERIC_ALLOCATOR
2491 ---help---
2492 Enable MERAM support for the SuperH controller.
2493
2494 This will allow for caching of the framebuffer to provide more
2495 reliable access under heavy main memory bus traffic situations.
2496 Up to 4 memory channels can be configured, allowing 4 RGB or
2497 2 YCbCr framebuffers to be configured.
2498
Maxime Riparda2ed00d2012-12-07 12:30:38 -08002499config FB_SSD1307
2500 tristate "Solomon SSD1307 framebuffer support"
2501 depends on FB && I2C
2502 depends on OF
Alexandre Courbot76ec9d12013-03-28 04:34:56 -07002503 depends on GPIOLIB
Maxime Riparda2ed00d2012-12-07 12:30:38 -08002504 select FB_SYS_FOPS
2505 select FB_SYS_FILLRECT
2506 select FB_SYS_COPYAREA
2507 select FB_SYS_IMAGEBLIT
2508 select FB_DEFERRED_IO
2509 select PWM
2510 help
2511 This driver implements support for the Solomon SSD1307
2512 OLED controller over I2C.
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514endmenu