blob: 09a8f0d8a3d4c013529cc5c8f7883db269b79625 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Nicolas Ferre0912e532009-06-23 16:30:56 +02008config HAVE_FB_ATMEL
9 bool
10
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000011config SH_MIPI_DSI
12 tristate
13 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
14
15config SH_LCD_MIPI_DSI
16 bool
17
Randy Dunlap179b0252007-10-16 01:29:39 -070018source "drivers/char/agp/Kconfig"
19
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100020source "drivers/gpu/vga/Kconfig"
21
Dave Airliec0e09202008-05-29 10:09:59 +100022source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070023
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080024source "drivers/gpu/stub/Kconfig"
25
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070026config VGASTATE
27 tristate
28 default n
29
Luming Yu23b0f012007-05-09 21:07:05 +080030config VIDEO_OUTPUT_CONTROL
31 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080032 help
33 This framework adds support for low-level control of the video
34 output switch.
35
Steffen Trumtrar8714c0c2012-12-17 14:20:17 +010036config DISPLAY_TIMING
37 bool
38
39config VIDEOMODE
40 bool
41
Randy Dunlap179b0252007-10-16 01:29:39 -070042menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 tristate "Support for frame buffer devices"
44 ---help---
45 The frame buffer device provides an abstraction for the graphics
46 hardware. It represents the frame buffer of some video hardware and
47 allows application software to access the graphics hardware through
48 a well-defined interface, so the software doesn't need to know
49 anything about the low-level (hardware register) stuff.
50
51 Frame buffer devices work identically across the different
52 architectures supported by Linux and make the implementation of
53 application programs easier and more portable; at this point, an X
54 server exists which uses the frame buffer device exclusively.
55 On several non-X86 architectures, the frame buffer device is the
56 only way to use the graphics hardware.
57
58 The device is accessed through special device nodes, usually located
59 in the /dev directory, i.e. /dev/fb*.
60
61 You need an utility program called fbset to make full use of frame
62 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
63 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020064 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 information.
66
67 Say Y here and to the driver for your graphics board below if you
68 are compiling a kernel for a non-x86 architecture.
69
70 If you are compiling for the x86 architecture, you can say Y if you
71 want to play with it, but it is not essential. Please note that
72 running graphical applications that directly touch the hardware
73 (e.g. an accelerated X server) and that are not frame buffer
74 device-aware may cause unexpected results. If unsure, say N.
75
James Simmonse0e34ef2007-02-10 14:15:43 +000076config FIRMWARE_EDID
77 bool "Enable firmware EDID"
78 depends on FB
79 default n
80 ---help---
81 This enables access to the EDID transferred from the firmware.
82 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
83 transfers do not work for your driver and if you are using
84 nvidiafb, i810fb or savagefb.
85
86 In general, choosing Y for this option is safe. If you
87 experience extremely long delays while booting before you get
88 something on your display, try setting this to N. Matrox cards in
89 combination with certain motherboards and monitors are known to
90 suffer from this problem.
91
Dennis Munsiefc5891c2006-10-03 01:14:42 -070092config FB_DDC
93 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000094 depends on FB
95 select I2C_ALGOBIT
96 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070097 default n
98
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070099config FB_BOOT_VESA_SUPPORT
100 bool
101 depends on FB
102 default n
103 ---help---
104 If true, at least one selected framebuffer driver can take advantage
105 of VESA video modes set at an early boot stage via the vga= parameter.
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107config FB_CFB_FILLRECT
108 tristate
109 depends on FB
110 default n
111 ---help---
112 Include the cfb_fillrect function for generic software rectangle
113 filling. This is used by drivers that don't provide their own
114 (accelerated) version.
115
116config FB_CFB_COPYAREA
117 tristate
118 depends on FB
119 default n
120 ---help---
121 Include the cfb_copyarea function for generic software area copying.
122 This is used by drivers that don't provide their own (accelerated)
123 version.
124
125config FB_CFB_IMAGEBLIT
126 tristate
127 depends on FB
128 default n
129 ---help---
130 Include the cfb_imageblit function for generic software image
131 blitting. This is used by drivers that don't provide their own
132 (accelerated) version.
133
Pavel Pisa779121e2007-10-16 01:29:21 -0700134config FB_CFB_REV_PIXELS_IN_BYTE
135 bool
136 depends on FB
137 default n
138 ---help---
139 Allow generic frame-buffer functions to work on displays with 1, 2
140 and 4 bits per pixel depths which has opposite order of pixels in
141 byte order to bytes in long order.
142
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700143config FB_SYS_FILLRECT
144 tristate
145 depends on FB
146 default n
147 ---help---
148 Include the sys_fillrect function for generic software rectangle
149 filling. This is used by drivers that don't provide their own
150 (accelerated) version and the framebuffer is in system RAM.
151
152config FB_SYS_COPYAREA
153 tristate
154 depends on FB
155 default n
156 ---help---
157 Include the sys_copyarea function for generic software area copying.
158 This is used by drivers that don't provide their own (accelerated)
159 version and the framebuffer is in system RAM.
160
161config FB_SYS_IMAGEBLIT
162 tristate
163 depends on FB
164 default n
165 ---help---
166 Include the sys_imageblit function for generic software image
167 blitting. This is used by drivers that don't provide their own
168 (accelerated) version and the framebuffer is in system RAM.
169
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700170menuconfig FB_FOREIGN_ENDIAN
171 bool "Framebuffer foreign endianness support"
172 depends on FB
173 ---help---
174 This menu will let you enable support for the framebuffers with
175 non-native endianness (e.g. Little-Endian framebuffer on a
176 Big-Endian machine). Most probably you don't have such hardware,
177 so it's safe to say "n" here.
178
179choice
180 prompt "Choice endianness support"
181 depends on FB_FOREIGN_ENDIAN
182
183config FB_BOTH_ENDIAN
184 bool "Support for Big- and Little-Endian framebuffers"
185
186config FB_BIG_ENDIAN
187 bool "Support for Big-Endian framebuffers only"
188
189config FB_LITTLE_ENDIAN
190 bool "Support for Little-Endian framebuffers only"
191
192endchoice
193
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700194config FB_SYS_FOPS
195 tristate
196 depends on FB
197 default n
198
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300199config FB_WMT_GE_ROPS
200 tristate
201 depends on FB
202 default n
203 ---help---
204 Include functions for accelerated rectangle filling and area
205 copying using WonderMedia Graphics Engine operations.
206
Jaya Kumar60b59be2007-05-08 00:37:37 -0700207config FB_DEFERRED_IO
208 bool
209 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700210
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700211config FB_HECUBA
212 tristate
213 depends on FB
214 depends on FB_DEFERRED_IO
215
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800216config FB_SVGALIB
217 tristate
218 depends on FB
219 default n
220 ---help---
221 Common utility functions useful to fbdev drivers of VGA-based
222 cards.
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224config FB_MACMODES
225 tristate
226 depends on FB
227 default n
228
Michael Hanselmann5474c122006-06-25 05:47:08 -0700229config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700230 bool
231 depends on FB
232 select BACKLIGHT_LCD_SUPPORT
233 select BACKLIGHT_CLASS_DEVICE
234 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236config FB_MODE_HELPERS
237 bool "Enable Video Mode Handling Helpers"
238 depends on FB
239 default n
240 ---help---
241 This enables functions for handling video modes using the
242 Generalized Timing Formula and the EDID parser. A few drivers rely
243 on this feature such as the radeonfb, rivafb, and the i810fb. If
244 your driver does not take advantage of this feature, choosing Y will
245 just increase the kernel size by about 5K.
246
247config FB_TILEBLITTING
248 bool "Enable Tile Blitting Support"
249 depends on FB
250 default n
251 ---help---
252 This enables tile blitting. Tile blitting is a drawing technique
253 where the screen is divided into rectangular sections (tiles), whereas
254 the standard blitting divides the screen into pixels. Because the
255 default drawing element is a tile, drawing functions will be passed
256 parameters in terms of number of tiles instead of number of pixels.
257 For example, to draw a single character, instead of using bitmaps,
258 an index to an array of bitmaps will be used. To clear or move a
259 rectangular section of a screen, the rectangle will be described in
260 terms of number of tiles in the x- and y-axis.
261
262 This is particularly important to one driver, matroxfb. If
263 unsure, say N.
264
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700265comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000266 depends on FB
267
Kristoffer Glemboa4b8f972011-07-05 09:29:19 +0200268config FB_GRVGA
269 tristate "Aeroflex Gaisler framebuffer support"
270 depends on FB && SPARC
271 select FB_CFB_FILLRECT
272 select FB_CFB_COPYAREA
273 select FB_CFB_IMAGEBLIT
274 ---help---
275 This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277config FB_CIRRUS
278 tristate "Cirrus Logic support"
279 depends on FB && (ZORRO || PCI)
280 select FB_CFB_FILLRECT
281 select FB_CFB_COPYAREA
282 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ---help---
284 This enables support for Cirrus Logic GD542x/543x based boards on
285 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
286
287 If you have a PCI-based system, this enables support for these
288 chips: GD-543x, GD-544x, GD-5480.
289
290 Please read the file <file:Documentation/fb/cirrusfb.txt>.
291
292 Say N unless you have such a graphics board or plan to get one
293 before you next recompile the kernel.
294
295config FB_PM2
296 tristate "Permedia2 support"
297 depends on FB && ((AMIGA && BROKEN) || PCI)
298 select FB_CFB_FILLRECT
299 select FB_CFB_COPYAREA
300 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700302 This is the frame buffer device driver for cards based on
303 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
304 The driver was tested on the following cards:
305 Diamond FireGL 1000 PRO AGP
306 ELSA Gloria Synergy PCI
307 Appian Jeronimo PRO (both heads) PCI
308 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
309 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
310 ASK Graphic Blaster Exxtreme AGP
311
312 To compile this driver as a module, choose M here: the
313 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315config FB_PM2_FIFO_DISCONNECT
316 bool "enable FIFO disconnect feature"
317 depends on FB_PM2 && PCI
318 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700319 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321config FB_ARMCLCD
322 tristate "ARM PrimeCell PL110 support"
323 depends on FB && ARM && ARM_AMBA
324 select FB_CFB_FILLRECT
325 select FB_CFB_COPYAREA
326 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 help
328 This framebuffer device driver is for the ARM PrimeCell PL110
329 Colour LCD controller. ARM PrimeCells provide the building
330 blocks for System on a Chip devices.
331
332 If you want to compile this as a module (=code which can be
333 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500334 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 will be called amba-clcd.
336
337config FB_ACORN
338 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000339 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 select FB_CFB_FILLRECT
341 select FB_CFB_COPYAREA
342 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 help
344 This is the frame buffer device driver for the Acorn VIDC graphics
345 hardware found in Acorn RISC PCs and other ARM-based machines. If
346 unsure, say N.
347
348config FB_CLPS711X
349 bool "CLPS711X LCD support"
350 depends on (FB = y) && ARM && ARCH_CLPS711X
351 select FB_CFB_FILLRECT
352 select FB_CFB_COPYAREA
353 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800354 help
355 Say Y to enable the Framebuffer driver for the CLPS7111 and
356 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358config FB_SA1100
359 bool "SA-1100 LCD support"
360 depends on (FB = y) && ARM && ARCH_SA1100
361 select FB_CFB_FILLRECT
362 select FB_CFB_COPYAREA
363 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 help
365 This is a framebuffer device for the SA-1100 LCD Controller.
366 See <http://www.linux-fbdev.org/> for information on framebuffer
367 devices.
368
369 If you plan to use the LCD display with your SA-1100 system, say
370 Y here.
371
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700372config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200373 tristate "Freescale i.MX LCD support"
Sascha Hauerf142b612011-03-03 15:12:44 +0100374 depends on FB && IMX_HAVE_PLATFORM_IMX_FB
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700375 select FB_CFB_FILLRECT
376 select FB_CFB_COPYAREA
377 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379config FB_CYBER2000
380 tristate "CyberPro 2000/2010/5000 support"
381 depends on FB && PCI && (BROKEN || !SPARC64)
382 select FB_CFB_FILLRECT
383 select FB_CFB_COPYAREA
384 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 help
386 This enables support for the Integraphics CyberPro 20x0 and 5000
387 VGA chips used in the Rebel.com Netwinder and other machines.
388 Say Y if you have a NetWinder or a graphics card containing this
389 device, otherwise say N.
390
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200391config FB_CYBER2000_DDC
392 bool "DDC for CyberPro support"
393 depends on FB_CYBER2000
394 select FB_DDC
395 default y
396 help
397 Say Y here if you want DDC support for your CyberPro graphics
398 card. This is only I2C bus support, driver does not use EDID.
399
Russell Kingb7ca01a2010-08-02 09:57:07 +0100400config FB_CYBER2000_I2C
401 bool "CyberPro 2000/2010/5000 I2C support"
402 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
403 select I2C_ALGOBIT
404 help
405 Enable support for the I2C video decoder interface on the
406 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
407 on the Netwinder machines for the SAA7111 video capture.
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409config FB_APOLLO
410 bool
411 depends on (FB = y) && APOLLO
412 default y
413 select FB_CFB_FILLRECT
414 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416config FB_Q40
417 bool
418 depends on (FB = y) && Q40
419 default y
420 select FB_CFB_FILLRECT
421 select FB_CFB_COPYAREA
422 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424config FB_AMIGA
425 tristate "Amiga native chipset support"
426 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 help
428 This is the frame buffer device driver for the builtin graphics
429 chipset found in Amigas.
430
431 To compile this driver as a module, choose M here: the
432 module will be called amifb.
433
434config FB_AMIGA_OCS
435 bool "Amiga OCS chipset support"
436 depends on FB_AMIGA
437 help
438 This enables support for the original Agnus and Denise video chips,
439 found in the Amiga 1000 and most A500's and A2000's. If you intend
440 to run Linux on any of these systems, say Y; otherwise say N.
441
442config FB_AMIGA_ECS
443 bool "Amiga ECS chipset support"
444 depends on FB_AMIGA
445 help
446 This enables support for the Enhanced Chip Set, found in later
447 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
448 you intend to run Linux on any of these systems, say Y; otherwise
449 say N.
450
451config FB_AMIGA_AGA
452 bool "Amiga AGA chipset support"
453 depends on FB_AMIGA
454 help
455 This enables support for the Advanced Graphics Architecture (also
456 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
457 and CD32. If you intend to run Linux on any of these systems, say Y;
458 otherwise say N.
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460config FB_FM2
461 bool "Amiga FrameMaster II/Rainbow II support"
462 depends on (FB = y) && ZORRO
463 select FB_CFB_FILLRECT
464 select FB_CFB_COPYAREA
465 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 help
467 This is the frame buffer device driver for the Amiga FrameMaster
468 card from BSC (exhibited 1992 but not shipped as a CBM product).
469
Jaya Kumar1154ea72005-06-21 17:17:04 -0700470config FB_ARC
471 tristate "Arc Monochrome LCD board support"
472 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700473 select FB_SYS_FILLRECT
474 select FB_SYS_COPYAREA
475 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700476 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700477 help
478 This enables support for the Arc Monochrome LCD board. The board
479 is based on the KS-108 lcd controller and is typically a matrix
480 of 2*n chips. This driver was tested with a 128x64 panel. This
481 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200482 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700483 this driver, say Y or M; otherwise say N. You must specify the
484 GPIO IO address to be used for setting control and data.
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486config FB_ATARI
487 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200488 depends on (FB = y) && ATARI
489 select FB_CFB_FILLRECT
490 select FB_CFB_COPYAREA
491 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 help
493 This is the frame buffer device driver for the builtin graphics
494 chipset found in Ataris.
495
496config FB_OF
497 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100498 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
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 Say Y if you want support with Open Firmware for your graphics
505 board.
506
507config FB_CONTROL
508 bool "Apple \"control\" 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 graphics adapter in the
516 Power Macintosh 7300 and others.
517
518config FB_PLATINUM
519 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700520 depends on (FB = y) && 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 "platinum" graphics
527 adapter in some Power Macintoshes.
528
529config FB_VALKYRIE
530 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700531 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
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 select FB_MACMODES
536 help
537 This driver supports a frame buffer for the "valkyrie" graphics
538 adapter in some Power Macintoshes.
539
540config FB_CT65550
541 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800542 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 select FB_CFB_FILLRECT
544 select FB_CFB_COPYAREA
545 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 help
547 This is the frame buffer device driver for the Chips & Technologies
548 65550 graphics chip in PowerBooks.
549
550config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800551 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 depends on (FB = y) && PCI
553 select FB_CFB_FILLRECT
554 select FB_CFB_COPYAREA
555 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700556 help
557 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559config FB_IMSTT
560 bool "IMS Twin Turbo display support"
561 depends on (FB = y) && PCI
562 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 select FB_MACMODES if PPC
564 help
565 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
566 many Macintosh and compatible computers.
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568config FB_VGA16
569 tristate "VGA 16-color graphics support"
570 depends on FB && (X86 || PPC)
571 select FB_CFB_FILLRECT
572 select FB_CFB_COPYAREA
573 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700574 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700575 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 help
577 This is the frame buffer device driver for VGA 16 color graphic
578 cards. Say Y if you have such a card.
579
580 To compile this driver as a module, choose M here: the
581 module will be called vga16fb.
582
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700583config FB_BF54X_LQ043
584 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700585 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700586 select FB_CFB_FILLRECT
587 select FB_CFB_COPYAREA
588 select FB_CFB_IMAGEBLIT
589 help
590 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
591
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700592config FB_BFIN_T350MCQB
593 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
594 depends on FB && BLACKFIN
595 select BFIN_GPTIMERS
596 select FB_CFB_FILLRECT
597 select FB_CFB_COPYAREA
598 select FB_CFB_IMAGEBLIT
599 help
600 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
601 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
602 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
603
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800604config FB_BFIN_LQ035Q1
605 tristate "SHARP LQ035Q1DH02 TFT LCD"
606 depends on FB && BLACKFIN && SPI
607 select FB_CFB_FILLRECT
608 select FB_CFB_COPYAREA
609 select FB_CFB_IMAGEBLIT
610 select BFIN_GPTIMERS
611 help
612 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
613 the Blackfin Landscape LCD EZ-Extender Card.
614 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
615 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
616
617 To compile this driver as a module, choose M here: the
618 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700619
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000620config FB_BF537_LQ035
621 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
622 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
623 select FB_CFB_FILLRECT
624 select FB_CFB_COPYAREA
625 select FB_CFB_IMAGEBLIT
626 select BFIN_GPTIMERS
627 help
628 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
629 attached to a BF537.
630
631 To compile this driver as a module, choose M here: the
632 module will be called bf537-lq035.
633
Michael Hennerichcffd9342010-11-24 09:33:59 +0000634config FB_BFIN_7393
635 tristate "Blackfin ADV7393 Video encoder"
636 depends on FB && BLACKFIN
637 select I2C
638 select FB_CFB_FILLRECT
639 select FB_CFB_COPYAREA
640 select FB_CFB_IMAGEBLIT
641 help
642 This is the framebuffer device for a ADV7393 video encoder
643 attached to a Blackfin on the PPI port.
644 If your Blackfin board has a ADV7393 select Y.
645
646 To compile this driver as a module, choose M here: the
647 module will be called bfin_adv7393fb.
648
649choice
650 prompt "Video mode support"
651 depends on FB_BFIN_7393
652 default NTSC
653
654config NTSC
655 bool 'NTSC 720x480'
656
657config PAL
658 bool 'PAL 720x576'
659
660config NTSC_640x480
661 bool 'NTSC 640x480 (Experimental)'
662
663config PAL_640x480
664 bool 'PAL 640x480 (Experimental)'
665
666config NTSC_YCBCR
667 bool 'NTSC 720x480 YCbCR input'
668
669config PAL_YCBCR
670 bool 'PAL 720x576 YCbCR input'
671
672endchoice
673
674choice
675 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
676 depends on (FB_BFIN_7393)
677 default ADV7393_1XMEM
678
679config ADV7393_1XMEM
680 bool 'Single'
681
682config ADV7393_2XMEM
683 bool 'Double'
684endchoice
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686config FB_STI
687 tristate "HP STI frame buffer device support"
688 depends on FB && PARISC
689 select FB_CFB_FILLRECT
690 select FB_CFB_COPYAREA
691 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000692 select STI_CONSOLE
693 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 default y
695 ---help---
696 STI refers to the HP "Standard Text Interface" which is a set of
697 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
698 Enabling this option will implement the linux framebuffer device
699 using calls to the STI BIOS routines for initialisation.
700
701 If you enable this option, you will get a planar framebuffer device
702 /dev/fb which will work on the most common HP graphic cards of the
703 NGLE family, including the artist chips (in the 7xx and Bxxx series),
704 HCRX, HCRX24, CRX, CRX24 and VisEG series.
705
706 It is safe to enable this option, so you should probably say "Y".
707
708config FB_MAC
709 bool "Generic Macintosh display support"
710 depends on (FB = y) && MAC
711 select FB_CFB_FILLRECT
712 select FB_CFB_COPYAREA
713 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 select FB_MACMODES
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716config FB_HP300
717 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200718 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 default y
721
722config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700723 tristate "TGA/SFB+ framebuffer support"
724 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 select FB_CFB_FILLRECT
726 select FB_CFB_COPYAREA
727 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800728 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700729 ---help---
730 This is the frame buffer device driver for generic TGA and SFB+
731 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
732 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
733 TURBOchannel cards, also known as PMAGD-A, -B and -C.
734
735 Due to hardware limitations ZLX-E2 and E3 cards are not supported
736 for DECstation 5000/200 systems. Additionally due to firmware
737 limitations these cards may cause troubles with booting DECstation
738 5000/240 and /260 systems, but are fully supported under Linux if
739 you manage to get it going. ;-)
740
741 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700743config FB_UVESA
744 tristate "Userspace VESA VGA graphics support"
745 depends on FB && CONNECTOR
746 select FB_CFB_FILLRECT
747 select FB_CFB_COPYAREA
748 select FB_CFB_IMAGEBLIT
749 select FB_MODE_HELPERS
750 help
751 This is the frame buffer driver for generic VBE 2.0 compliant
752 graphic cards. It can also take advantage of VBE 3.0 features,
753 such as refresh rate adjustment.
754
755 This driver generally provides more features than vesafb but
756 requires a userspace helper application called 'v86d'. See
757 <file:Documentation/fb/uvesafb.txt> for more information.
758
759 If unsure, say N.
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761config FB_VESA
762 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800763 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 select FB_CFB_FILLRECT
765 select FB_CFB_COPYAREA
766 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700767 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 help
769 This is the frame buffer device driver for generic VESA 2.0
770 compliant graphic cards. The older VESA 1.2 cards are not supported.
771 You will get a boot time penguin logo at no additional cost. Please
772 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
773
Huang, Ying7c831722007-11-28 16:21:55 -0800774config FB_EFI
775 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700776 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700777 select FB_CFB_FILLRECT
778 select FB_CFB_COPYAREA
779 select FB_CFB_IMAGEBLIT
780 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700781 This is the EFI frame buffer device driver. If the firmware on
782 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
783 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700784
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700785config FB_N411
786 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700787 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700788 select FB_SYS_FILLRECT
789 select FB_SYS_COPYAREA
790 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700791 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700792 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700793 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700794 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700795 This enables support for the Apollo display controller in its
796 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798config FB_HGA
799 tristate "Hercules mono graphics support"
800 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 help
802 Say Y here if you have a Hercules mono graphics card.
803
804 To compile this driver as a module, choose M here: the
805 module will be called hgafb.
806
Brent Cook529ed802010-12-31 05:56:50 +0000807 As this card technology is at least 25 years old,
808 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810config FB_SGIVW
811 tristate "SGI Visual Workstation framebuffer support"
812 depends on FB && X86_VISWS
813 select FB_CFB_FILLRECT
814 select FB_CFB_COPYAREA
815 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 help
817 SGI Visual Workstation support for framebuffer graphics.
818
819config FB_GBE
820 bool "SGI Graphics Backend frame buffer support"
821 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
822 select FB_CFB_FILLRECT
823 select FB_CFB_COPYAREA
824 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 help
826 This is the frame buffer device driver for SGI Graphics Backend.
827 This chip is used in SGI O2 and Visual Workstation 320/540.
828
829config FB_GBE_MEM
830 int "Video memory size in MB"
831 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800832 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 help
834 This is the amount of memory reserved for the framebuffer,
835 which can be any value between 1MB and 8MB.
836
Mark Fortescue1a571982005-11-29 19:34:44 -0800837config FB_SBUS
838 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800839 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800840 help
841 Say Y if you want support for SBUS or UPA based frame buffer device.
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843config FB_BW2
844 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800845 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 select FB_CFB_FILLRECT
847 select FB_CFB_COPYAREA
848 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 help
850 This is the frame buffer device driver for the BWtwo frame buffer.
851
852config FB_CG3
853 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800854 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800855 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 select FB_CFB_COPYAREA
857 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 help
859 This is the frame buffer device driver for the CGthree frame buffer.
860
861config FB_CG6
862 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800863 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 select FB_CFB_COPYAREA
865 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 help
867 This is the frame buffer device driver for the CGsix (GX, TurboGX)
868 frame buffer.
869
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700870config FB_FFB
871 bool "Creator/Creator3D/Elite3D support"
872 depends on FB_SBUS && SPARC64
873 select FB_CFB_COPYAREA
874 select FB_CFB_IMAGEBLIT
875 help
876 This is the frame buffer device driver for the Creator, Creator3D,
877 and Elite3D graphics boards.
878
879config FB_TCX
880 bool "TCX (SS4/SS5 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 TCX 24/8bit frame
887 buffer.
888
889config FB_CG14
890 bool "CGfourteen (SX) 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 CGfourteen frame
897 buffer on Desktop SPARCsystems with the SX graphics option.
898
899config FB_P9100
900 bool "P9100 (Sparcbook 3 only) support"
901 depends on FB_SBUS
902 select FB_CFB_FILLRECT
903 select FB_CFB_COPYAREA
904 select FB_CFB_IMAGEBLIT
905 help
906 This is the frame buffer device driver for the P9100 card
907 supported on Sparcbook 3 machines.
908
909config FB_LEO
910 bool "Leo (ZX) support"
911 depends on FB_SBUS
912 select FB_CFB_FILLRECT
913 select FB_CFB_COPYAREA
914 select FB_CFB_IMAGEBLIT
915 help
916 This is the frame buffer device driver for the SBUS-based Sun ZX
917 (leo) frame buffer cards.
918
919config FB_IGA
920 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700921 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700922 select FB_CFB_FILLRECT
923 select FB_CFB_COPYAREA
924 select FB_CFB_IMAGEBLIT
925 help
926 This is the framebuffer device for the INTERGRAPHICS 1680 and
927 successor frame buffer cards.
928
929config FB_XVR500
930 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700931 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700932 select FB_CFB_FILLRECT
933 select FB_CFB_COPYAREA
934 select FB_CFB_IMAGEBLIT
935 help
936 This is the framebuffer device for the Sun XVR-500 and similar
937 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200938 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700939 mostly initialized the card already. It is treated as a
940 completely dumb framebuffer device.
941
942config FB_XVR2500
943 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700944 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700945 select FB_CFB_FILLRECT
946 select FB_CFB_COPYAREA
947 select FB_CFB_IMAGEBLIT
948 help
949 This is the framebuffer device for the Sun XVR-2500 and similar
950 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200951 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700952 mostly initialized the card already. It is treated as a
953 completely dumb framebuffer device.
954
David S. Miller2d378b92010-03-13 16:25:03 -0800955config FB_XVR1000
956 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700957 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800958 select FB_CFB_FILLRECT
959 select FB_CFB_COPYAREA
960 select FB_CFB_IMAGEBLIT
961 help
962 This is the framebuffer device for the Sun XVR-1000 and similar
963 graphics cards. The driver only works on sparc64 systems where
964 the system firmware has mostly initialized the card already. It
965 is treated as a completely dumb framebuffer device.
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967config FB_PVR2
968 tristate "NEC PowerVR 2 display support"
969 depends on FB && SH_DREAMCAST
970 select FB_CFB_FILLRECT
971 select FB_CFB_COPYAREA
972 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 ---help---
974 Say Y here if you have a PowerVR 2 card in your box. If you plan to
975 run linux on your Dreamcast, you will have to say Y here.
976 This driver may or may not work on other PowerVR 2 cards, but is
977 totally untested. Use at your own risk. If unsure, say N.
978
979 To compile this driver as a module, choose M here: the
980 module will be called pvr2fb.
981
982 You can pass several parameters to the driver at boot time or at
983 module load time. The parameters look like "video=pvr2:XXX", where
984 the meaning of XXX can be found at the end of the main source file
985 (<file:drivers/video/pvr2fb.c>). Please see the file
986 <file:Documentation/fb/pvr2fb.txt>.
987
Randy Dunlapecc41d52005-11-07 01:00:29 -0800988config FB_S1D13XXX
989 tristate "Epson S1D13XXX framebuffer support"
990 depends on FB
991 select FB_CFB_FILLRECT
992 select FB_CFB_COPYAREA
993 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -0800994 help
995 Support for S1D13XXX framebuffer device family (currently only
996 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200997 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -0800998
Nicolas Ferre14340582007-05-10 22:23:26 -0700999config FB_ATMEL
1000 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001001 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001002 select FB_CFB_FILLRECT
1003 select FB_CFB_COPYAREA
1004 select FB_CFB_IMAGEBLIT
1005 help
1006 This enables support for the AT91/AT32 LCD Controller.
1007
1008config FB_INTSRAM
1009 bool "Frame Buffer in internal SRAM"
1010 depends on FB_ATMEL && ARCH_AT91SAM9261
1011 help
1012 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1013 to let frame buffer in external SDRAM.
1014
Nicolas Ferre250a2692007-07-21 04:37:59 -07001015config FB_ATMEL_STN
1016 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001017 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001018 default n
1019 help
1020 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1021 Controller. Say N if you want to connect a TFT.
1022
1023 If unsure, say N.
1024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025config FB_NVIDIA
1026 tristate "nVidia Framebuffer Support"
1027 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001028 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 select FB_MODE_HELPERS
1030 select FB_CFB_FILLRECT
1031 select FB_CFB_COPYAREA
1032 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001033 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001034 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 help
1036 This driver supports graphics boards with the nVidia chips, TNT
1037 and newer. For very old chipsets, such as the RIVA128, then use
1038 the rivafb.
1039 Say Y if you have such a graphics board.
1040
1041 To compile this driver as a module, choose M here: the
1042 module will be called nvidiafb.
1043
1044config FB_NVIDIA_I2C
1045 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001046 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001047 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 help
1049 This enables I2C support for nVidia Chipsets. This is used
1050 only for getting EDID information from the attached display
1051 allowing for robust video mode handling and switching.
1052
1053 Because fbdev-2.6 requires that drivers must be able to
1054 independently validate video mode parameters, you should say Y
1055 here.
1056
Jean Delvare647f2e72007-05-10 22:23:29 -07001057config FB_NVIDIA_DEBUG
1058 bool "Lots of debug output"
1059 depends on FB_NVIDIA
1060 default n
1061 help
1062 Say Y here if you want the nVidia driver to output all sorts
1063 of debugging information to provide to the maintainer when
1064 something goes wrong.
1065
Michael Hanselmann5474c122006-06-25 05:47:08 -07001066config FB_NVIDIA_BACKLIGHT
1067 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001068 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001069 default y
1070 help
1071 Say Y here if you want to control the backlight of your display.
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073config FB_RIVA
1074 tristate "nVidia Riva support"
1075 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001076 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 select FB_MODE_HELPERS
1078 select FB_CFB_FILLRECT
1079 select FB_CFB_COPYAREA
1080 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001081 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001082 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 help
1084 This driver supports graphics boards with the nVidia Riva/Geforce
1085 chips.
1086 Say Y if you have such a graphics board.
1087
1088 To compile this driver as a module, choose M here: the
1089 module will be called rivafb.
1090
1091config FB_RIVA_I2C
1092 bool "Enable DDC Support"
1093 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001094 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 help
1096 This enables I2C support for nVidia Chipsets. This is used
1097 only for getting EDID information from the attached display
1098 allowing for robust video mode handling and switching.
1099
1100 Because fbdev-2.6 requires that drivers must be able to
1101 independently validate video mode parameters, you should say Y
1102 here.
1103
1104config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001105 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 depends on FB_RIVA
1107 default n
1108 help
1109 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001110 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 something goes wrong.
1112
Michael Hanselmann5474c122006-06-25 05:47:08 -07001113config FB_RIVA_BACKLIGHT
1114 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001115 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001116 default y
1117 help
1118 Say Y here if you want to control the backlight of your display.
1119
Ondrej Zary5350c652012-02-10 18:59:17 +01001120config FB_I740
1121 tristate "Intel740 support (EXPERIMENTAL)"
1122 depends on EXPERIMENTAL && FB && PCI
1123 select FB_MODE_HELPERS
1124 select FB_CFB_FILLRECT
1125 select FB_CFB_COPYAREA
1126 select FB_CFB_IMAGEBLIT
1127 select VGASTATE
1128 select FB_DDC
1129 help
1130 This driver supports graphics cards based on Intel740 chip.
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132config FB_I810
1133 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001134 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 select FB_MODE_HELPERS
1136 select FB_CFB_FILLRECT
1137 select FB_CFB_COPYAREA
1138 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001139 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 help
1141 This driver supports the on-board graphics built in to the Intel 810
1142 and 815 chipsets. Say Y if you have and plan to use such a board.
1143
1144 To compile this driver as a module, choose M here: the
1145 module will be called i810fb.
1146
1147 For more information, please read
1148 <file:Documentation/fb/intel810.txt>
1149
1150config FB_I810_GTF
1151 bool "use VESA Generalized Timing Formula"
1152 depends on FB_I810
1153 help
1154 If you say Y, then the VESA standard, Generalized Timing Formula
1155 or GTF, will be used to calculate the required video timing values
1156 per video mode. Since the GTF allows nondiscrete timings
1157 (nondiscrete being a range of values as opposed to discrete being a
1158 set of values), you'll be able to use any combination of horizontal
1159 and vertical resolutions, and vertical refresh rates without having
1160 to specify your own timing parameters. This is especially useful
1161 to maximize the performance of an aging display, or if you just
1162 have a display with nonstandard dimensions. A VESA compliant
1163 monitor is recommended, but can still work with non-compliant ones.
1164 If you need or want this, then select this option. The timings may
1165 not be compliant with Intel's recommended values. Use at your own
1166 risk.
1167
1168 If you say N, the driver will revert to discrete video timings
1169 using a set recommended by Intel in their documentation.
1170
1171 If unsure, say N.
1172
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001173config FB_I810_I2C
1174 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001175 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001176 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001177 help
1178
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001179config FB_LE80578
1180 tristate "Intel LE80578 (Vermilion) support"
1181 depends on FB && PCI && X86
1182 select FB_MODE_HELPERS
1183 select FB_CFB_FILLRECT
1184 select FB_CFB_COPYAREA
1185 select FB_CFB_IMAGEBLIT
1186 help
1187 This driver supports the LE80578 (Vermilion Range) chipset
1188
1189config FB_CARILLO_RANCH
1190 tristate "Intel Carillo Ranch support"
1191 depends on FB_LE80578 && FB && PCI && X86
1192 help
1193 This driver supports the LE80578 (Carillo Ranch) board
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001196 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001197 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 select FB_MODE_HELPERS
1199 select FB_CFB_FILLRECT
1200 select FB_CFB_COPYAREA
1201 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001202 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001203 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 help
1205 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001206 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 Say Y if you have and plan to use such a board.
1208
Krzysztof Helt4b198282009-06-18 16:49:21 -07001209 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1210
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001211 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 module will be called intelfb.
1213
Christian Merkled463d342006-08-22 10:07:01 +10001214 For more information, please read <file:Documentation/fb/intelfb.txt>
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001217 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 depends on FB_INTEL
1219 ---help---
1220 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001221 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 something goes wrong.
1223
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001224config FB_INTEL_I2C
1225 bool "DDC/I2C for Intel framebuffer support"
1226 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001227 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001228 default y
1229 help
1230 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232config FB_MATROX
1233 tristate "Matrox acceleration"
1234 depends on FB && PCI
1235 select FB_CFB_FILLRECT
1236 select FB_CFB_COPYAREA
1237 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 select FB_TILEBLITTING
1239 select FB_MACMODES if PPC_PMAC
1240 ---help---
1241 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1242 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1243 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1244 Matrox G400, G450 or G550 card in your box.
1245
1246 To compile this driver as a module, choose M here: the
1247 module will be called matroxfb.
1248
1249 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001250 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 are described in <file:Documentation/fb/matroxfb.txt>.
1252
1253config FB_MATROX_MILLENIUM
1254 bool "Millennium I/II support"
1255 depends on FB_MATROX
1256 help
1257 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1258 video card. If you select "Advanced lowlevel driver options" below,
1259 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1260 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1261 also use font widths different from 8.
1262
1263config FB_MATROX_MYSTIQUE
1264 bool "Mystique support"
1265 depends on FB_MATROX
1266 help
1267 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1268 video card. If you select "Advanced lowlevel driver options" below,
1269 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1270 packed pixel and 32 bpp packed pixel. You can also use font widths
1271 different from 8.
1272
1273config FB_MATROX_G
1274 bool "G100/G200/G400/G450/G550 support"
1275 depends on FB_MATROX
1276 ---help---
1277 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1278 video card. If you select "Advanced lowlevel driver options", you
1279 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1280 pixel and 32 bpp packed pixel. You can also use font widths
1281 different from 8.
1282
Jean Delvareee831262009-05-12 13:19:41 -07001283 If you need support for G400 secondary head, you must say Y to
1284 "Matrox I2C support" and "G400 second head support" right below.
1285 G450/G550 secondary head and digital output are supported without
1286 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 The driver starts in monitor mode. You must use the matroxset tool
1289 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1290 swap primary and secondary head outputs, or to change output mode.
1291 Secondary head driver always start in 640x480 resolution and you
1292 must use fbset to change it.
1293
1294 Do not forget that second head supports only 16 and 32 bpp
1295 packed pixels, so it is a good idea to compile them into the kernel
1296 too. You can use only some font widths, as the driver uses generic
1297 painting procedures (the secondary head does not use acceleration
1298 engine).
1299
1300 G450/G550 hardware can display TV picture only from secondary CRTC,
1301 and it performs no scaling, so picture must have 525 or 625 lines.
1302
1303config FB_MATROX_I2C
1304 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001305 depends on FB_MATROX
1306 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 ---help---
1308 This drivers creates I2C buses which are needed for accessing the
1309 DDC (I2C) bus present on all Matroxes, an I2C bus which
1310 interconnects Matrox optional devices, like MGA-TVO on G200 and
1311 G400, and the secondary head DDC bus, present on G400 only.
1312
1313 You can say Y or M here if you want to experiment with monitor
1314 detection code. You must say Y or M here if you want to use either
1315 second head of G400 or MGA-TVO on G200 or G400.
1316
1317 If you compile it as module, it will create a module named
1318 i2c-matroxfb.
1319
1320config FB_MATROX_MAVEN
1321 tristate "G400 second head support"
1322 depends on FB_MATROX_G && FB_MATROX_I2C
1323 ---help---
1324 WARNING !!! This support does not work with G450 !!!
1325
1326 Say Y or M here if you want to use a secondary head (meaning two
1327 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1328 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1329 secondary head output is blanked while you are in X. With XFree
1330 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1331 the fbdev driver on first head and the fbdev driver on second head.
1332
1333 If you compile it as module, two modules are created,
1334 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1335 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1336 also load i2c-matroxfb to get it to run.
1337
1338 The driver starts in monitor mode and you must use the matroxset
1339 tool (available at
1340 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1341 PAL or NTSC or to swap primary and secondary head outputs.
1342 Secondary head driver also always start in 640x480 resolution, you
1343 must use fbset to change it.
1344
1345 Also do not forget that second head supports only 16 and 32 bpp
1346 packed pixels, so it is a good idea to compile them into the kernel
1347 too. You can use only some font widths, as the driver uses generic
1348 painting procedures (the secondary head does not use acceleration
1349 engine).
1350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351config FB_RADEON
1352 tristate "ATI Radeon display support"
1353 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001354 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 select FB_MODE_HELPERS
1356 select FB_CFB_FILLRECT
1357 select FB_CFB_COPYAREA
1358 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 select FB_MACMODES if PPC_OF
1360 help
1361 Choose this option if you want to use an ATI Radeon graphics card as
1362 a framebuffer device. There are both PCI and AGP versions. You
1363 don't need to choose this to run the Radeon in plain VGA mode.
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001366 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368config FB_RADEON_I2C
1369 bool "DDC/I2C for ATI Radeon support"
1370 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001371 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 default y
1373 help
1374 Say Y here if you want DDC/I2C support for your Radeon board.
1375
Michael Hanselmann5474c122006-06-25 05:47:08 -07001376config FB_RADEON_BACKLIGHT
1377 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001378 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001379 default y
1380 help
1381 Say Y here if you want to control the backlight of your display.
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383config FB_RADEON_DEBUG
1384 bool "Lots of debug output from Radeon driver"
1385 depends on FB_RADEON
1386 default n
1387 help
1388 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001389 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 something goes wrong.
1391
1392config FB_ATY128
1393 tristate "ATI Rage128 display support"
1394 depends on FB && PCI
1395 select FB_CFB_FILLRECT
1396 select FB_CFB_COPYAREA
1397 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001398 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 select FB_MACMODES if PPC_PMAC
1400 help
1401 This driver supports graphics boards with the ATI Rage128 chips.
1402 Say Y if you have such a graphics board and read
1403 <file:Documentation/fb/aty128fb.txt>.
1404
1405 To compile this driver as a module, choose M here: the
1406 module will be called aty128fb.
1407
Michael Hanselmann5474c122006-06-25 05:47:08 -07001408config FB_ATY128_BACKLIGHT
1409 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001410 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001411 default y
1412 help
1413 Say Y here if you want to control the backlight of your display.
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415config FB_ATY
1416 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001417 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 select FB_CFB_FILLRECT
1419 select FB_CFB_COPYAREA
1420 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001421 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 select FB_MACMODES if PPC
1423 help
1424 This driver supports graphics boards with the ATI Mach64 chips.
1425 Say Y if you have such a graphics board.
1426
1427 To compile this driver as a module, choose M here: the
1428 module will be called atyfb.
1429
1430config FB_ATY_CT
1431 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1432 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001433 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 help
1435 Say Y here to support use of ATI's 64-bit Rage boards (or other
1436 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1437 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001438 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440config FB_ATY_GENERIC_LCD
1441 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1442 depends on FB_ATY_CT
1443 help
1444 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1445 Rage XC, or Rage XL chipset.
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447config FB_ATY_GX
1448 bool "Mach64 GX support" if PCI
1449 depends on FB_ATY
1450 default y if ATARI
1451 help
1452 Say Y here to support use of the ATI Mach64 Graphics Expression
1453 board (or other boards based on the Mach64 GX chipset) as a
1454 framebuffer device. The ATI product support page for these boards
1455 is at
1456 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1457
Michael Hanselmann5474c122006-06-25 05:47:08 -07001458config FB_ATY_BACKLIGHT
1459 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001460 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001461 default y
1462 help
1463 Say Y here if you want to control the backlight of your display.
1464
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001465config FB_S3
1466 tristate "S3 Trio/Virge support"
1467 depends on FB && PCI
1468 select FB_CFB_FILLRECT
1469 select FB_CFB_COPYAREA
1470 select FB_CFB_IMAGEBLIT
1471 select FB_TILEBLITTING
1472 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001473 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001474 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001475 ---help---
1476 Driver for graphics boards with S3 Trio / S3 Virge chip.
1477
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001478config FB_S3_DDC
1479 bool "DDC for S3 support"
1480 depends on FB_S3
1481 select FB_DDC
1482 default y
1483 help
1484 Say Y here if you want DDC support for your S3 graphics card.
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486config FB_SAVAGE
1487 tristate "S3 Savage support"
1488 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 select FB_MODE_HELPERS
1490 select FB_CFB_FILLRECT
1491 select FB_CFB_COPYAREA
1492 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001493 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 help
1495 This driver supports notebooks and computers with S3 Savage PCI/AGP
1496 chips.
1497
1498 Say Y if you have such a graphics card.
1499
1500 To compile this driver as a module, choose M here; the module
1501 will be called savagefb.
1502
1503config FB_SAVAGE_I2C
1504 bool "Enable DDC2 Support"
1505 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001506 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 help
1508 This enables I2C support for S3 Savage Chipsets. This is used
1509 only for getting EDID information from the attached display
1510 allowing for robust video mode handling and switching.
1511
1512 Because fbdev-2.6 requires that drivers must be able to
1513 independently validate video mode parameters, you should say Y
1514 here.
1515
1516config FB_SAVAGE_ACCEL
1517 bool "Enable Console Acceleration"
1518 depends on FB_SAVAGE
1519 default n
1520 help
1521 This option will compile in console acceleration support. If
1522 the resulting framebuffer console has bothersome glitches, then
1523 choose N here.
1524
1525config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001526 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 depends on FB && PCI
1528 select FB_CFB_FILLRECT
1529 select FB_CFB_COPYAREA
1530 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001531 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001533 This is the frame buffer device driver for the SiS 300, 315, 330
1534 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1535 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 To compile this driver as a module, choose M here; the module
1538 will be called sisfb.
1539
1540config FB_SIS_300
1541 bool "SiS 300 series support"
1542 depends on FB_SIS
1543 help
1544 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1545
1546config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001547 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 depends on FB_SIS
1549 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001550 Say Y here to support use of the SiS 315, 330 and 340 series
1551 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1552 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001554config FB_VIA
1555 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001556 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001557 select FB_CFB_FILLRECT
1558 select FB_CFB_COPYAREA
1559 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001560 select I2C_ALGOBIT
1561 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001562 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001563 help
1564 This is the frame buffer device driver for Graphics chips of VIA
1565 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1566 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1567 /P4M900,VX800)
1568 Say Y if you have a VIA UniChrome graphics board.
1569
1570 To compile this driver as a module, choose M here: the
1571 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001572
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001573if FB_VIA
1574
1575config FB_VIA_DIRECT_PROCFS
1576 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1577 depends on FB_VIA
1578 default n
1579 help
1580 Allow direct hardware access to some output registers via procfs.
1581 This is dangerous but may provide the only chance to get the
1582 correct output device configuration.
1583 Its use is strongly discouraged.
1584
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001585config FB_VIA_X_COMPATIBILITY
1586 bool "X server compatibility"
1587 depends on FB_VIA
1588 default n
1589 help
1590 This option reduces the functionality (power saving, ...) of the
1591 framebuffer to avoid negative impact on the OpenChrome X server.
1592 If you use any X server other than fbdev you should enable this
1593 otherwise it should be safe to disable it and allow using all
1594 features.
1595
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001596endif
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598config FB_NEOMAGIC
1599 tristate "NeoMagic display support"
1600 depends on FB && PCI
1601 select FB_MODE_HELPERS
1602 select FB_CFB_FILLRECT
1603 select FB_CFB_COPYAREA
1604 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001605 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 help
1607 This driver supports notebooks with NeoMagic PCI chips.
1608 Say Y if you have such a graphics card.
1609
1610 To compile this driver as a module, choose M here: the
1611 module will be called neofb.
1612
1613config FB_KYRO
1614 tristate "IMG Kyro support"
1615 depends on FB && PCI
1616 select FB_CFB_FILLRECT
1617 select FB_CFB_COPYAREA
1618 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 help
1620 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1621 graphics board.
1622
1623 To compile this driver as a module, choose M here: the
1624 module will be called kyrofb.
1625
1626config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001627 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 depends on FB && PCI
1629 select FB_CFB_IMAGEBLIT
1630 select FB_CFB_FILLRECT
1631 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001632 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001634 This driver supports graphics boards with the 3Dfx Banshee,
1635 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1636 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 To compile this driver as a module, choose M here: the
1639 module will be called tdfxfb.
1640
1641config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001642 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 depends on FB_3DFX && EXPERIMENTAL
1644 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001645 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1646 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001648config FB_3DFX_I2C
1649 bool "Enable DDC/I2C support"
1650 depends on FB_3DFX && EXPERIMENTAL
1651 select FB_DDC
1652 default y
1653 help
1654 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656config FB_VOODOO1
1657 tristate "3Dfx Voodoo Graphics (sst1) support"
1658 depends on FB && PCI
1659 select FB_CFB_FILLRECT
1660 select FB_CFB_COPYAREA
1661 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ---help---
1663 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1664 Voodoo2 (cvg) based graphics card.
1665
1666 To compile this driver as a module, choose M here: the
1667 module will be called sstfb.
1668
1669 WARNING: Do not use any application that uses the 3D engine
1670 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001671 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 options and other important info support.
1673
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001674config FB_VT8623
1675 tristate "VIA VT8623 support"
1676 depends on FB && PCI
1677 select FB_CFB_FILLRECT
1678 select FB_CFB_COPYAREA
1679 select FB_CFB_IMAGEBLIT
1680 select FB_TILEBLITTING
1681 select FB_SVGALIB
1682 select VGASTATE
1683 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1684 ---help---
1685 Driver for CastleRock integrated graphics core in the
1686 VIA VT8623 [Apollo CLE266] chipset.
1687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001689 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 depends on FB && PCI
1691 select FB_CFB_FILLRECT
1692 select FB_CFB_COPYAREA
1693 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001695 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1696 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1697 and Blade XP.
1698 There are also integrated versions of these chips called CyberXXXX,
1699 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001700 but also on some motherboards including early VIA EPIA motherboards.
1701 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 Say Y if you have such a graphics board.
1704
1705 To compile this driver as a module, choose M here: the
1706 module will be called tridentfb.
1707
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001708config FB_ARK
1709 tristate "ARK 2000PV support"
1710 depends on FB && PCI
1711 select FB_CFB_FILLRECT
1712 select FB_CFB_COPYAREA
1713 select FB_CFB_IMAGEBLIT
1714 select FB_TILEBLITTING
1715 select FB_SVGALIB
1716 select VGASTATE
1717 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1718 ---help---
1719 Driver for PCI graphics boards with ARK 2000PV chip
1720 and ICS 5342 RAMDAC.
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001723 tristate "Permedia3 support (EXPERIMENTAL)"
1724 depends on FB && PCI && EXPERIMENTAL
1725 select FB_CFB_FILLRECT
1726 select FB_CFB_COPYAREA
1727 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 help
1729 This is the frame buffer device driver for the 3DLabs Permedia3
1730 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1731 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1732 and maybe other boards.
1733
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001734config FB_CARMINE
1735 tristate "Fujitsu carmine frame buffer support"
1736 depends on FB && PCI
1737 select FB_CFB_FILLRECT
1738 select FB_CFB_COPYAREA
1739 select FB_CFB_IMAGEBLIT
1740 help
1741 This is the frame buffer device driver for the Fujitsu Carmine chip.
1742 The driver provides two independent frame buffer devices.
1743
1744choice
1745 depends on FB_CARMINE
1746 prompt "DRAM timing"
1747 default FB_CARMINE_DRAM_EVAL
1748
1749config FB_CARMINE_DRAM_EVAL
1750 bool "Eval board timings"
1751 help
1752 Use timings which work on the eval card.
1753
1754config CARMINE_DRAM_CUSTOM
1755 bool "Custom board timings"
1756 help
1757 Use custom board timings.
1758endchoice
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760config FB_AU1100
1761 bool "Au1100 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001762 depends on (FB = y) && MIPS_ALCHEMY
Ralf Baechled1709e42007-07-23 18:43:50 -07001763 select FB_CFB_FILLRECT
1764 select FB_CFB_COPYAREA
1765 select FB_CFB_IMAGEBLIT
1766 help
1767 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1768 various panels and CRTs by passing in kernel cmd line option
1769 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001771config FB_AU1200
Manuel Lauss809f36c2011-11-01 20:03:30 +01001772 bool "Au1200/Au1300 LCD Driver"
Manuel Lauss3766386032011-08-12 11:39:45 +02001773 depends on (FB = y) && MIPS_ALCHEMY
Manuel Lauss4ee58462011-06-10 15:23:04 +00001774 select FB_SYS_FILLRECT
1775 select FB_SYS_COPYAREA
1776 select FB_SYS_IMAGEBLIT
1777 select FB_SYS_FOPS
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001778 help
Manuel Lauss809f36c2011-11-01 20:03:30 +01001779 This is the framebuffer driver for the Au1200/Au1300 SOCs.
1780 It can drive various panels and CRTs by passing in kernel cmd line
1781 option au1200fb:panel=<name>.
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001782
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001783config FB_VT8500
1784 bool "VT8500 LCD Driver"
Tony Priske7b99532012-08-03 20:58:22 +12001785 depends on (FB = y) && ARM && ARCH_VT8500
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001786 select FB_WMT_GE_ROPS
1787 select FB_SYS_IMAGEBLIT
1788 help
1789 This is the framebuffer driver for VIA VT8500 integrated LCD
1790 controller.
1791
1792config FB_WM8505
1793 bool "WM8505 frame buffer support"
Tony Priske7b99532012-08-03 20:58:22 +12001794 depends on (FB = y) && ARM && ARCH_VT8500
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001795 select FB_WMT_GE_ROPS
1796 select FB_SYS_IMAGEBLIT
1797 help
Tony Priske7b99532012-08-03 20:58:22 +12001798 This is the framebuffer driver for WonderMedia WM8505/WM8650
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001799 integrated LCD controller.
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801source "drivers/video/geode/Kconfig"
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803config FB_HIT
1804 tristate "HD64461 Frame Buffer support"
1805 depends on FB && HD64461
1806 select FB_CFB_FILLRECT
1807 select FB_CFB_COPYAREA
1808 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 help
1810 This is the frame buffer device driver for the Hitachi HD64461 LCD
1811 frame buffer card.
1812
1813config FB_PMAG_AA
1814 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001815 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 select FB_CFB_FILLRECT
1817 select FB_CFB_COPYAREA
1818 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 help
1820 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1821 used mainly in the MIPS-based DECstation series.
1822
1823config FB_PMAG_BA
Maciej W. Rozycki335dc50c2007-02-05 16:28:28 -08001824 tristate "PMAG-BA TURBOchannel framebuffer support"
1825 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 select FB_CFB_FILLRECT
1827 select FB_CFB_COPYAREA
1828 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 help
1830 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1831 used mainly in the MIPS-based DECstation series.
1832
1833config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001834 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001835 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 select FB_CFB_FILLRECT
1837 select FB_CFB_COPYAREA
1838 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 help
1840 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1841 in the MIPS-based DECstation series. The card is currently only
1842 supported in 1280x1024x8 mode.
1843
1844config FB_MAXINE
1845 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001846 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 select FB_CFB_FILLRECT
1848 select FB_CFB_COPYAREA
1849 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 help
1851 Support for the onboard framebuffer (1024x768x8) in the Personal
1852 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1853 Codename "Maxine").
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001856 bool "G364 frame buffer support"
1857 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 select FB_CFB_FILLRECT
1859 select FB_CFB_COPYAREA
1860 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 help
1862 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1863 Olivetti M700-10 systems.
1864
1865config FB_68328
1866 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001867 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 select FB_CFB_FILLRECT
1869 select FB_CFB_COPYAREA
1870 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 help
1872 Say Y here if you want to support the built-in frame buffer of
1873 the Motorola 68328 CPU family.
1874
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001875config FB_PXA168
1876 tristate "PXA168/910 LCD framebuffer support"
1877 depends on FB && (CPU_PXA168 || CPU_PXA910)
1878 select FB_CFB_FILLRECT
1879 select FB_CFB_COPYAREA
1880 select FB_CFB_IMAGEBLIT
1881 ---help---
1882 Frame buffer driver for the built-in LCD controller in the Marvell
1883 MMP processor.
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885config FB_PXA
1886 tristate "PXA LCD framebuffer support"
1887 depends on FB && ARCH_PXA
1888 select FB_CFB_FILLRECT
1889 select FB_CFB_COPYAREA
1890 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 ---help---
1892 Frame buffer driver for the built-in LCD controller in the Intel
1893 PXA2x0 processor.
1894
1895 This driver is also available as a module ( = code which can be
1896 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001897 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001898 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 If unsure, say N.
1901
Eric Miao198fc102008-12-23 17:49:43 +08001902config FB_PXA_OVERLAY
1903 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1904 default n
1905 depends on FB_PXA && (PXA27x || PXA3xx)
1906
Eric Miao3c42a442008-04-30 00:52:26 -07001907config FB_PXA_SMARTPANEL
1908 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001909 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001910 depends on FB_PXA
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912config FB_PXA_PARAMETERS
1913 bool "PXA LCD command line parameters"
1914 default n
1915 depends on FB_PXA
1916 ---help---
1917 Enable the use of kernel command line or module parameters
1918 to configure the physical properties of the LCD panel when
1919 using the PXA LCD driver.
1920
1921 This option allows you to override the panel parameters
1922 supplied by the platform in order to support multiple
1923 different models of flatpanel. If you will only be using a
1924 single model of flatpanel then you can safely leave this
1925 option disabled.
1926
1927 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1928
Daniel Mack364dbdf2010-11-04 14:44:00 -04001929config PXA3XX_GCU
1930 tristate "PXA3xx 2D graphics accelerator driver"
1931 depends on FB_PXA
1932 help
1933 Kernelspace driver for the 2D graphics controller unit (GCU)
1934 found on PXA3xx processors. There is a counterpart driver in the
1935 DirectFB suite, see http://www.directfb.org/
1936
1937 If you compile this as a module, it will be called pxa3xx_gcu.
1938
Mike Rapoport22caf042006-07-14 00:24:34 -07001939config FB_MBX
1940 tristate "2700G LCD framebuffer support"
1941 depends on FB && ARCH_PXA
1942 select FB_CFB_FILLRECT
1943 select FB_CFB_COPYAREA
1944 select FB_CFB_IMAGEBLIT
1945 ---help---
1946 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1947 Accelerator
1948
1949config FB_MBX_DEBUG
1950 bool "Enable debugging info via debugfs"
1951 depends on FB_MBX && DEBUG_FS
1952 default n
1953 ---help---
1954 Enable this if you want debugging information using the debug
1955 filesystem (debugfs)
1956
1957 If unsure, say N.
1958
York Sun9b53a9e2008-04-28 02:15:34 -07001959config FB_FSL_DIU
1960 tristate "Freescale DIU framebuffer support"
1961 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001962 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001963 select FB_CFB_FILLRECT
1964 select FB_CFB_COPYAREA
1965 select FB_CFB_IMAGEBLIT
1966 select PPC_LIB_RHEAP
1967 ---help---
1968 Framebuffer driver for the Freescale SoC DIU
1969
Randy Dunlapecc41d52005-11-07 01:00:29 -08001970config FB_W100
1971 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001972 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001973 select FB_CFB_FILLRECT
1974 select FB_CFB_COPYAREA
1975 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001976 ---help---
1977 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001978 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001979
1980 This driver is also available as a module ( = code which can be
1981 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001982 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001983 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001984
1985 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001987config FB_SH_MOBILE_LCDC
1988 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001989 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001990 select FB_SYS_FILLRECT
1991 select FB_SYS_COPYAREA
1992 select FB_SYS_IMAGEBLIT
1993 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09001994 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00001995 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00001996 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001997 ---help---
1998 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1999
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002000config FB_SH_MOBILE_HDMI
2001 tristate "SuperH Mobile HDMI controller support"
2002 depends on FB_SH_MOBILE_LCDC
2003 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002004 select SOUND
2005 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002006 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002007 ---help---
2008 Driver for the on-chip SH-Mobile HDMI controller.
2009
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002010config FB_TMIO
2011 tristate "Toshiba Mobile IO FrameBuffer support"
2012 depends on FB && MFD_CORE
2013 select FB_CFB_FILLRECT
2014 select FB_CFB_COPYAREA
2015 select FB_CFB_IMAGEBLIT
2016 ---help---
2017 Frame buffer driver for the Toshiba Mobile IO integrated as found
2018 on the Sharp SL-6000 series
2019
2020 This driver is also available as a module ( = code which can be
2021 inserted and removed from the running kernel whenever you want). The
2022 module will be called tmiofb. If you want to compile it as a module,
2023 say M here and read <file:Documentation/kbuild/modules.txt>.
2024
2025 If unsure, say N.
2026
2027config FB_TMIO_ACCELL
2028 bool "tmiofb acceleration"
2029 depends on FB_TMIO
2030 default y
2031
Ben Dooksec549a02009-03-31 15:25:39 -07002032config FB_S3C
2033 tristate "Samsung S3C framebuffer support"
Jingoo Hanb5480ed2011-08-22 12:16:04 +09002034 depends on FB && (S3C_DEV_FB || S5P_DEV_FIMD0)
Ben Dooksec549a02009-03-31 15:25:39 -07002035 select FB_CFB_FILLRECT
2036 select FB_CFB_COPYAREA
2037 select FB_CFB_IMAGEBLIT
2038 ---help---
2039 Frame buffer driver for the built-in FB controller in the Samsung
2040 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2041 and the S3C64XX series such as the S3C6400 and S3C6410.
2042
2043 These chips all have the same basic framebuffer design with the
2044 actual capabilities depending on the chip. For instance the S3C6400
2045 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2046 currently only have two.
2047
2048 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2049
2050config FB_S3C_DEBUG_REGWRITE
2051 bool "Debug register writes"
2052 depends on FB_S3C
2053 ---help---
Jingoo Han975d3522012-09-27 16:46:19 +09002054 Show all register writes via pr_debug()
Ben Dooksec549a02009-03-31 15:25:39 -07002055
Arnaud Patard20fd5762005-09-09 13:10:07 -07002056config FB_S3C2410
2057 tristate "S3C2410 LCD framebuffer support"
Kukjin Kimb130d5c2012-02-03 14:29:23 +09002058 depends on FB && ARCH_S3C24XX
Arnaud Patard20fd5762005-09-09 13:10:07 -07002059 select FB_CFB_FILLRECT
2060 select FB_CFB_COPYAREA
2061 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002062 ---help---
2063 Frame buffer driver for the built-in LCD controller in the Samsung
2064 S3C2410 processor.
2065
2066 This driver is also available as a module ( = code which can be
2067 inserted and removed from the running kernel whenever you want). The
2068 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002069 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002070
2071 If unsure, say N.
2072config FB_S3C2410_DEBUG
2073 bool "S3C2410 lcd debug messages"
2074 depends on FB_S3C2410
2075 help
2076 Turn on debugging messages. Note that you can set/unset at run time
2077 through sysfs
2078
Wang Qiang86619702010-03-10 15:21:47 -08002079config FB_NUC900
2080 bool "NUC900 LCD framebuffer support"
2081 depends on FB && ARCH_W90X900
2082 select FB_CFB_FILLRECT
2083 select FB_CFB_COPYAREA
2084 select FB_CFB_IMAGEBLIT
2085 ---help---
2086 Frame buffer driver for the built-in LCD controller in the Nuvoton
2087 NUC900 processor
2088
2089config GPM1040A0_320X240
2090 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2091 depends on FB_NUC900
2092
2093config FB_NUC900_DEBUG
2094 bool "NUC900 lcd debug messages"
2095 depends on FB_NUC900
2096 help
2097 Turn on debugging messages. Note that you can set/unset at run time
2098 through sysfs
2099
Ben Dooks5fc404e2007-02-20 13:58:21 -08002100config FB_SM501
2101 tristate "Silicon Motion SM501 framebuffer support"
2102 depends on FB && MFD_SM501
2103 select FB_CFB_FILLRECT
2104 select FB_CFB_COPYAREA
2105 select FB_CFB_IMAGEBLIT
2106 ---help---
2107 Frame buffer driver for the CRT and LCD controllers in the Silicon
2108 Motion SM501.
2109
2110 This driver is also available as a module ( = code which can be
2111 inserted and removed from the running kernel whenever you want). The
2112 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002113 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002114
2115 If unsure, say N.
2116
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01002117config FB_SMSCUFX
2118 tristate "SMSC UFX6000/7000 USB Framebuffer support"
2119 depends on FB && USB
2120 select FB_MODE_HELPERS
2121 select FB_SYS_FILLRECT
2122 select FB_SYS_COPYAREA
2123 select FB_SYS_IMAGEBLIT
2124 select FB_SYS_FOPS
2125 select FB_DEFERRED_IO
2126 ---help---
2127 This is a kernel framebuffer driver for SMSC UFX USB devices.
2128 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2129 mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
2130 (USB 3.0) devices.
2131 To compile as a module, choose M here: the module name is smscufx.
2132
Paul Mundt96f8d8642010-11-16 14:00:24 +09002133config FB_UDL
2134 tristate "Displaylink USB Framebuffer support"
2135 depends on FB && USB
2136 select FB_MODE_HELPERS
2137 select FB_SYS_FILLRECT
2138 select FB_SYS_COPYAREA
2139 select FB_SYS_IMAGEBLIT
2140 select FB_SYS_FOPS
2141 select FB_DEFERRED_IO
2142 ---help---
2143 This is a kernel framebuffer driver for DisplayLink USB devices.
2144 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2145 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2146 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002147
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002148config FB_IBM_GXT4500
Dan Horák6c39dcc2012-09-12 06:06:44 +00002149 tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors"
Randy Dunlap0058f472007-10-16 01:29:35 -07002150 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002151 select FB_CFB_FILLRECT
2152 select FB_CFB_COPYAREA
2153 select FB_CFB_IMAGEBLIT
2154 ---help---
Dan Horák6c39dcc2012-09-12 06:06:44 +00002155 Say Y here to enable support for the IBM GXT4000P/6000P and
2156 GXT4500P/6500P display adaptor based on Raster Engine RC1000,
2157 found on some IBM System P (pSeries) machines. This driver
2158 doesn't use Geometry Engine GT1000.
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002159
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002160config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002161 tristate "PS3 GPU framebuffer driver"
2162 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002163 select FB_SYS_FILLRECT
2164 select FB_SYS_COPYAREA
2165 select FB_SYS_IMAGEBLIT
2166 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002167 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002168 ---help---
2169 Include support for the virtual frame buffer in the PS3 platform.
2170
2171config FB_PS3_DEFAULT_SIZE_M
2172 int "PS3 default frame buffer size (in MiB)"
2173 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002174 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002175 ---help---
2176 This is the default size (in MiB) of the virtual frame buffer in
2177 the PS3.
2178 The default value can be overridden on the kernel command line
2179 using the "ps3fb" option (e.g. "ps3fb=9M");
2180
Andrei Konovalov147394c2007-05-08 00:40:18 -07002181config FB_XILINX
2182 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002183 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002184 select FB_CFB_FILLRECT
2185 select FB_CFB_COPYAREA
2186 select FB_CFB_IMAGEBLIT
2187 ---help---
2188 Include support for the Xilinx ML300/ML403 reference design
2189 framebuffer. ML300 carries a 640*480 LCD display on the board,
2190 ML403 uses a standard DB15 VGA connector.
2191
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002192config FB_COBALT
2193 tristate "Cobalt server LCD frame buffer support"
Steven J. Hill13f36e92012-04-18 09:13:51 -05002194 depends on FB && (MIPS_COBALT || MIPS_SEAD3)
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002195
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002196config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002197 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2198 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2199 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2200 select FB_CFB_FILLRECT
2201 select FB_CFB_COPYAREA
2202 select FB_CFB_IMAGEBLIT
2203 ---help---
2204 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2205 (D)STN/TFT LCD Controller.
2206 Supports display resolutions up to 1024x1024 pixel, grayscale and
2207 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2208 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2209 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002210
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002211config FB_DA8XX
2212 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2213 depends on FB && ARCH_DAVINCI_DA8XX
2214 select FB_CFB_FILLRECT
2215 select FB_CFB_COPYAREA
2216 select FB_CFB_IMAGEBLIT
Anatolij Gustschinf4130702012-03-13 14:13:57 +01002217 select FB_CFB_REV_PIXELS_IN_BYTE
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002218 ---help---
2219 This is the frame buffer device driver for the TI LCD controller
2220 found on DA8xx/OMAP-L1xx SoCs.
2221 If unsure, say N.
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223config FB_VIRTUAL
2224 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2225 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002226 select FB_SYS_FILLRECT
2227 select FB_SYS_COPYAREA
2228 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002229 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 ---help---
2231 This is a `virtual' frame buffer device. It operates on a chunk of
2232 unswappable kernel memory instead of on the memory of a graphics
2233 board. This means you cannot see any output sent to this frame
2234 buffer device, while it does consume precious memory. The main use
2235 of this frame buffer device is testing and debugging the frame
2236 buffer subsystem. Do NOT enable it for normal systems! To protect
2237 the innocent, it has to be enabled explicitly at boot time using the
2238 kernel option `video=vfb:'.
2239
2240 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002241 module will be called vfb. In order to load it, you must use
2242 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002245
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002246config XEN_FBDEV_FRONTEND
2247 tristate "Xen virtual frame buffer support"
2248 depends on FB && XEN
2249 select FB_SYS_FILLRECT
2250 select FB_SYS_COPYAREA
2251 select FB_SYS_IMAGEBLIT
2252 select FB_SYS_FOPS
2253 select FB_DEFERRED_IO
Andrew Jones4bc25af2012-01-06 10:43:09 +01002254 select INPUT_XEN_KBDDEV_FRONTEND
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002255 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002256 default y
2257 help
2258 This driver implements the front-end of the Xen virtual
2259 frame buffer driver. It communicates with a back-end
2260 in another domain.
2261
Jaya Kumare9355082008-08-19 11:17:55 +01002262config FB_METRONOME
2263 tristate "E-Ink Metronome/8track controller support"
2264 depends on FB
2265 select FB_SYS_FILLRECT
2266 select FB_SYS_COPYAREA
2267 select FB_SYS_IMAGEBLIT
2268 select FB_SYS_FOPS
2269 select FB_DEFERRED_IO
2270 help
2271 This driver implements support for the E-Ink Metronome
2272 controller. The pre-release name for this device was 8track
2273 and could also have been called by some vendors as PVI-nnnn.
2274
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002275config FB_MB862XX
2276 tristate "Fujitsu MB862xx GDC support"
2277 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002278 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002279 select FB_CFB_FILLRECT
2280 select FB_CFB_COPYAREA
2281 select FB_CFB_IMAGEBLIT
2282 ---help---
2283 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2284
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002285choice
2286 prompt "GDC variant"
2287 depends on FB_MB862XX
2288
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002289config FB_MB862XX_PCI_GDC
2290 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002291 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002292 ---help---
2293 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2294 PCI graphics controller devices.
2295
2296config FB_MB862XX_LIME
2297 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002298 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002299 select FB_FOREIGN_ENDIAN
2300 select FB_LITTLE_ENDIAN
2301 ---help---
2302 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2303
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002304endchoice
2305
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002306config FB_MB862XX_I2C
2307 bool "Support I2C bus on MB862XX GDC"
2308 depends on FB_MB862XX && I2C
2309 default y
2310 help
2311 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2312 driver to support accessing I2C devices on controller's I2C bus.
2313 These are usually some video decoder chips.
2314
Ryan Mallon88017bda2009-09-22 16:47:09 -07002315config FB_EP93XX
2316 tristate "EP93XX frame buffer support"
2317 depends on FB && ARCH_EP93XX
2318 select FB_CFB_FILLRECT
2319 select FB_CFB_COPYAREA
2320 select FB_CFB_IMAGEBLIT
2321 ---help---
2322 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2323 This driver is also available as a module. The module will be called
2324 ep93xx-fb.
2325
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002326config FB_PRE_INIT_FB
2327 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002328 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002329 ---help---
2330 Select this option if display contents should be inherited as set by
2331 the bootloader.
2332
Pavel Machekd480ace2009-09-22 16:47:03 -07002333config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002334 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002335 depends on FB && ARCH_MSM
2336 select FB_CFB_FILLRECT
2337 select FB_CFB_COPYAREA
2338 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002339
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002340config FB_MX3
Guennadi Liakhovetski6e1588cb2009-02-26 21:34:28 +01002341 tristate "MX3 Framebuffer support"
2342 depends on FB && MX3_IPU
2343 select FB_CFB_FILLRECT
2344 select FB_CFB_COPYAREA
2345 select FB_CFB_IMAGEBLIT
2346 default y
2347 help
2348 This is a framebuffer device for the i.MX31 LCD Controller. So
2349 far only synchronous displays are supported. If you plan to use
2350 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002351
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002352config FB_BROADSHEET
2353 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2354 depends on FB
2355 select FB_SYS_FILLRECT
2356 select FB_SYS_COPYAREA
2357 select FB_SYS_IMAGEBLIT
2358 select FB_SYS_FOPS
2359 select FB_DEFERRED_IO
2360 help
2361 This driver implements support for the E-Ink Broadsheet
2362 controller. The release name for this device was Epson S1D13521
2363 and could also have been called by other names when coupled with
2364 a bridge adapter.
2365
Heiko Stübner2c8304d2012-04-28 12:20:00 +02002366config FB_AUO_K190X
2367 tristate "AUO-K190X EPD controller support"
2368 depends on FB
2369 select FB_SYS_FILLRECT
2370 select FB_SYS_COPYAREA
2371 select FB_SYS_IMAGEBLIT
2372 select FB_SYS_FOPS
2373 select FB_DEFERRED_IO
2374 help
2375 Provides support for epaper controllers from the K190X series
2376 of AUO. These controllers can be used to drive epaper displays
2377 from Sipix.
2378
2379 This option enables the common support, shared by the individual
2380 controller drivers. You will also have to enable the driver
2381 for the controller type used in your device.
2382
Heiko Stübner96b1d502012-04-28 12:21:12 +02002383config FB_AUO_K1900
2384 tristate "AUO-K1900 EPD controller support"
2385 depends on FB && FB_AUO_K190X
2386 help
2387 This driver implements support for the AUO K1900 epd-controller.
2388 This controller can drive Sipix epaper displays but can only do
2389 serial updates, reducing the number of possible frames per second.
2390
Heiko Stübner53027cd2012-04-28 12:22:08 +02002391config FB_AUO_K1901
2392 tristate "AUO-K1901 EPD controller support"
2393 depends on FB && FB_AUO_K190X
2394 help
2395 This driver implements support for the AUO K1901 epd-controller.
2396 This controller can drive Sipix epaper displays and supports
2397 concurrent updates, making higher frames per second possible.
2398
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002399config FB_JZ4740
2400 tristate "JZ4740 LCD framebuffer support"
2401 depends on FB && MACH_JZ4740
2402 select FB_SYS_FILLRECT
2403 select FB_SYS_COPYAREA
2404 select FB_SYS_IMAGEBLIT
2405 help
2406 Framebuffer support for the JZ4740 SoC.
2407
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002408config FB_MXS
2409 tristate "MXS LCD framebuffer support"
2410 depends on FB && ARCH_MXS
2411 select FB_CFB_FILLRECT
2412 select FB_CFB_COPYAREA
2413 select FB_CFB_IMAGEBLIT
2414 help
2415 Framebuffer support for the MXS SoC.
2416
GuanXuetaoce443ab2011-02-26 21:39:10 +08002417config FB_PUV3_UNIGFX
2418 tristate "PKUnity v3 Unigfx framebuffer support"
2419 depends on FB && UNICORE32 && ARCH_PUV3
2420 select FB_SYS_FILLRECT
2421 select FB_SYS_COPYAREA
2422 select FB_SYS_IMAGEBLIT
2423 select FB_SYS_FOPS
2424 help
2425 Choose this option if you want to use the Unigfx device as a
2426 framebuffer device. Without the support of PCI & AGP.
2427
Randy Dunlapf08f3892007-10-29 14:37:16 -07002428source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002429source "drivers/video/omap2/Kconfig"
Donghwa Lee7258cc12012-02-08 12:47:39 -08002430source "drivers/video/exynos/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002431source "drivers/video/backlight/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433if VT
2434 source "drivers/video/console/Kconfig"
2435endif
2436
2437if FB || SGI_NEWPORT_CONSOLE
2438 source "drivers/video/logo/Kconfig"
2439endif
2440
Kuninori Morimotof363afc2012-03-20 18:27:08 -07002441config FB_SH_MOBILE_MERAM
2442 tristate "SuperH Mobile MERAM read ahead support"
2443 depends on (SUPERH || ARCH_SHMOBILE)
2444 select GENERIC_ALLOCATOR
2445 ---help---
2446 Enable MERAM support for the SuperH controller.
2447
2448 This will allow for caching of the framebuffer to provide more
2449 reliable access under heavy main memory bus traffic situations.
2450 Up to 4 memory channels can be configured, allowing 4 RGB or
2451 2 YCbCr framebuffers to be configured.
2452
Maxime Riparda2ed00d2012-12-07 12:30:38 -08002453config FB_SSD1307
2454 tristate "Solomon SSD1307 framebuffer support"
2455 depends on FB && I2C
2456 depends on OF
2457 depends on GENERIC_GPIO
2458 select FB_SYS_FOPS
2459 select FB_SYS_FILLRECT
2460 select FB_SYS_COPYAREA
2461 select FB_SYS_IMAGEBLIT
2462 select FB_DEFERRED_IO
2463 select PWM
2464 help
2465 This driver implements support for the Solomon SSD1307
2466 OLED controller over I2C.
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468endmenu