blob: 65b07f4d4e59a6df93422bbba3fb767d4e0388bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Video configuration
3#
4
5menu "Graphics support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Nicolas Ferre0912e532009-06-23 16:30:56 +02008config HAVE_FB_ATMEL
9 bool
10
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000011config SH_MIPI_DSI
12 tristate
13 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
14
15config SH_LCD_MIPI_DSI
16 bool
17
Randy Dunlap179b0252007-10-16 01:29:39 -070018source "drivers/char/agp/Kconfig"
19
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100020source "drivers/gpu/vga/Kconfig"
21
Dave Airliec0e09202008-05-29 10:09:59 +100022source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070023
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080024source "drivers/gpu/stub/Kconfig"
25
Rebecca Schultz Zavin0c38bfd2011-06-29 19:44:29 -070026source "drivers/gpu/ion/Kconfig"
27
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070028config VGASTATE
29 tristate
30 default n
31
Luming Yu23b0f012007-05-09 21:07:05 +080032config VIDEO_OUTPUT_CONTROL
33 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080034 help
35 This framework adds support for low-level control of the video
36 output switch.
37
Randy Dunlap179b0252007-10-16 01:29:39 -070038menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 tristate "Support for frame buffer devices"
40 ---help---
41 The frame buffer device provides an abstraction for the graphics
42 hardware. It represents the frame buffer of some video hardware and
43 allows application software to access the graphics hardware through
44 a well-defined interface, so the software doesn't need to know
45 anything about the low-level (hardware register) stuff.
46
47 Frame buffer devices work identically across the different
48 architectures supported by Linux and make the implementation of
49 application programs easier and more portable; at this point, an X
50 server exists which uses the frame buffer device exclusively.
51 On several non-X86 architectures, the frame buffer device is the
52 only way to use the graphics hardware.
53
54 The device is accessed through special device nodes, usually located
55 in the /dev directory, i.e. /dev/fb*.
56
57 You need an utility program called fbset to make full use of frame
58 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
59 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020060 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 information.
62
63 Say Y here and to the driver for your graphics board below if you
64 are compiling a kernel for a non-x86 architecture.
65
66 If you are compiling for the x86 architecture, you can say Y if you
67 want to play with it, but it is not essential. Please note that
68 running graphical applications that directly touch the hardware
69 (e.g. an accelerated X server) and that are not frame buffer
70 device-aware may cause unexpected results. If unsure, say N.
71
James Simmonse0e34ef2007-02-10 14:15:43 +000072config FIRMWARE_EDID
73 bool "Enable firmware EDID"
74 depends on FB
75 default n
76 ---help---
77 This enables access to the EDID transferred from the firmware.
78 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
79 transfers do not work for your driver and if you are using
80 nvidiafb, i810fb or savagefb.
81
82 In general, choosing Y for this option is safe. If you
83 experience extremely long delays while booting before you get
84 something on your display, try setting this to N. Matrox cards in
85 combination with certain motherboards and monitors are known to
86 suffer from this problem.
87
Dennis Munsiefc5891c2006-10-03 01:14:42 -070088config FB_DDC
89 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000090 depends on FB
91 select I2C_ALGOBIT
92 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070093 default n
94
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070095config FB_BOOT_VESA_SUPPORT
96 bool
97 depends on FB
98 default n
99 ---help---
100 If true, at least one selected framebuffer driver can take advantage
101 of VESA video modes set at an early boot stage via the vga= parameter.
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103config FB_CFB_FILLRECT
104 tristate
105 depends on FB
106 default n
107 ---help---
108 Include the cfb_fillrect function for generic software rectangle
109 filling. This is used by drivers that don't provide their own
110 (accelerated) version.
111
112config FB_CFB_COPYAREA
113 tristate
114 depends on FB
115 default n
116 ---help---
117 Include the cfb_copyarea function for generic software area copying.
118 This is used by drivers that don't provide their own (accelerated)
119 version.
120
121config FB_CFB_IMAGEBLIT
122 tristate
123 depends on FB
124 default n
125 ---help---
126 Include the cfb_imageblit function for generic software image
127 blitting. This is used by drivers that don't provide their own
128 (accelerated) version.
129
Pavel Pisa779121e2007-10-16 01:29:21 -0700130config FB_CFB_REV_PIXELS_IN_BYTE
131 bool
132 depends on FB
133 default n
134 ---help---
135 Allow generic frame-buffer functions to work on displays with 1, 2
136 and 4 bits per pixel depths which has opposite order of pixels in
137 byte order to bytes in long order.
138
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700139config FB_SYS_FILLRECT
140 tristate
141 depends on FB
142 default n
143 ---help---
144 Include the sys_fillrect function for generic software rectangle
145 filling. This is used by drivers that don't provide their own
146 (accelerated) version and the framebuffer is in system RAM.
147
148config FB_SYS_COPYAREA
149 tristate
150 depends on FB
151 default n
152 ---help---
153 Include the sys_copyarea function for generic software area copying.
154 This is used by drivers that don't provide their own (accelerated)
155 version and the framebuffer is in system RAM.
156
157config FB_SYS_IMAGEBLIT
158 tristate
159 depends on FB
160 default n
161 ---help---
162 Include the sys_imageblit function for generic software image
163 blitting. This is used by drivers that don't provide their own
164 (accelerated) version and the framebuffer is in system RAM.
165
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700166menuconfig FB_FOREIGN_ENDIAN
167 bool "Framebuffer foreign endianness support"
168 depends on FB
169 ---help---
170 This menu will let you enable support for the framebuffers with
171 non-native endianness (e.g. Little-Endian framebuffer on a
172 Big-Endian machine). Most probably you don't have such hardware,
173 so it's safe to say "n" here.
174
175choice
176 prompt "Choice endianness support"
177 depends on FB_FOREIGN_ENDIAN
178
179config FB_BOTH_ENDIAN
180 bool "Support for Big- and Little-Endian framebuffers"
181
182config FB_BIG_ENDIAN
183 bool "Support for Big-Endian framebuffers only"
184
185config FB_LITTLE_ENDIAN
186 bool "Support for Little-Endian framebuffers only"
187
188endchoice
189
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700190config FB_SYS_FOPS
191 tristate
192 depends on FB
193 default n
194
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300195config FB_WMT_GE_ROPS
196 tristate
197 depends on FB
198 default n
199 ---help---
200 Include functions for accelerated rectangle filling and area
201 copying using WonderMedia Graphics Engine operations.
202
Jaya Kumar60b59be2007-05-08 00:37:37 -0700203config FB_DEFERRED_IO
204 bool
205 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700206
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700207config FB_HECUBA
208 tristate
209 depends on FB
210 depends on FB_DEFERRED_IO
211
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800212config FB_SVGALIB
213 tristate
214 depends on FB
215 default n
216 ---help---
217 Common utility functions useful to fbdev drivers of VGA-based
218 cards.
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220config FB_MACMODES
221 tristate
222 depends on FB
223 default n
224
Michael Hanselmann5474c122006-06-25 05:47:08 -0700225config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700226 bool
227 depends on FB
228 select BACKLIGHT_LCD_SUPPORT
229 select BACKLIGHT_CLASS_DEVICE
230 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232config FB_MODE_HELPERS
233 bool "Enable Video Mode Handling Helpers"
234 depends on FB
235 default n
236 ---help---
237 This enables functions for handling video modes using the
238 Generalized Timing Formula and the EDID parser. A few drivers rely
239 on this feature such as the radeonfb, rivafb, and the i810fb. If
240 your driver does not take advantage of this feature, choosing Y will
241 just increase the kernel size by about 5K.
242
243config FB_TILEBLITTING
244 bool "Enable Tile Blitting Support"
245 depends on FB
246 default n
247 ---help---
248 This enables tile blitting. Tile blitting is a drawing technique
249 where the screen is divided into rectangular sections (tiles), whereas
250 the standard blitting divides the screen into pixels. Because the
251 default drawing element is a tile, drawing functions will be passed
252 parameters in terms of number of tiles instead of number of pixels.
253 For example, to draw a single character, instead of using bitmaps,
254 an index to an array of bitmaps will be used. To clear or move a
255 rectangular section of a screen, the rectangle will be described in
256 terms of number of tiles in the x- and y-axis.
257
258 This is particularly important to one driver, matroxfb. If
259 unsure, say N.
260
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700261comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000262 depends on FB
263
Kristoffer Glemboa4b8f972011-07-05 09:29:19 +0200264config FB_GRVGA
265 tristate "Aeroflex Gaisler framebuffer support"
266 depends on FB && SPARC
267 select FB_CFB_FILLRECT
268 select FB_CFB_COPYAREA
269 select FB_CFB_IMAGEBLIT
270 ---help---
271 This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273config FB_CIRRUS
274 tristate "Cirrus Logic support"
275 depends on FB && (ZORRO || PCI)
276 select FB_CFB_FILLRECT
277 select FB_CFB_COPYAREA
278 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 ---help---
280 This enables support for Cirrus Logic GD542x/543x based boards on
281 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
282
283 If you have a PCI-based system, this enables support for these
284 chips: GD-543x, GD-544x, GD-5480.
285
286 Please read the file <file:Documentation/fb/cirrusfb.txt>.
287
288 Say N unless you have such a graphics board or plan to get one
289 before you next recompile the kernel.
290
291config FB_PM2
292 tristate "Permedia2 support"
293 depends on FB && ((AMIGA && BROKEN) || PCI)
294 select FB_CFB_FILLRECT
295 select FB_CFB_COPYAREA
296 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700298 This is the frame buffer device driver for cards based on
299 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
300 The driver was tested on the following cards:
301 Diamond FireGL 1000 PRO AGP
302 ELSA Gloria Synergy PCI
303 Appian Jeronimo PRO (both heads) PCI
304 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
305 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
306 ASK Graphic Blaster Exxtreme AGP
307
308 To compile this driver as a module, choose M here: the
309 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311config FB_PM2_FIFO_DISCONNECT
312 bool "enable FIFO disconnect feature"
313 depends on FB_PM2 && PCI
314 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700315 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317config FB_ARMCLCD
318 tristate "ARM PrimeCell PL110 support"
319 depends on FB && ARM && ARM_AMBA
320 select FB_CFB_FILLRECT
321 select FB_CFB_COPYAREA
322 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 help
324 This framebuffer device driver is for the ARM PrimeCell PL110
325 Colour LCD controller. ARM PrimeCells provide the building
326 blocks for System on a Chip devices.
327
328 If you want to compile this as a module (=code which can be
329 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500330 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 will be called amba-clcd.
332
333config FB_ACORN
334 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000335 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 select FB_CFB_FILLRECT
337 select FB_CFB_COPYAREA
338 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 help
340 This is the frame buffer device driver for the Acorn VIDC graphics
341 hardware found in Acorn RISC PCs and other ARM-based machines. If
342 unsure, say N.
343
344config FB_CLPS711X
345 bool "CLPS711X LCD support"
346 depends on (FB = y) && ARM && ARCH_CLPS711X
347 select FB_CFB_FILLRECT
348 select FB_CFB_COPYAREA
349 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800350 help
351 Say Y to enable the Framebuffer driver for the CLPS7111 and
352 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354config FB_SA1100
355 bool "SA-1100 LCD support"
356 depends on (FB = y) && ARM && ARCH_SA1100
357 select FB_CFB_FILLRECT
358 select FB_CFB_COPYAREA
359 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 help
361 This is a framebuffer device for the SA-1100 LCD Controller.
362 See <http://www.linux-fbdev.org/> for information on framebuffer
363 devices.
364
365 If you plan to use the LCD display with your SA-1100 system, say
366 Y here.
367
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700368config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200369 tristate "Freescale i.MX LCD support"
Sascha Hauerf142b612011-03-03 15:12:44 +0100370 depends on FB && IMX_HAVE_PLATFORM_IMX_FB
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700371 select FB_CFB_FILLRECT
372 select FB_CFB_COPYAREA
373 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375config FB_CYBER2000
376 tristate "CyberPro 2000/2010/5000 support"
377 depends on FB && PCI && (BROKEN || !SPARC64)
378 select FB_CFB_FILLRECT
379 select FB_CFB_COPYAREA
380 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 help
382 This enables support for the Integraphics CyberPro 20x0 and 5000
383 VGA chips used in the Rebel.com Netwinder and other machines.
384 Say Y if you have a NetWinder or a graphics card containing this
385 device, otherwise say N.
386
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200387config FB_CYBER2000_DDC
388 bool "DDC for CyberPro support"
389 depends on FB_CYBER2000
390 select FB_DDC
391 default y
392 help
393 Say Y here if you want DDC support for your CyberPro graphics
394 card. This is only I2C bus support, driver does not use EDID.
395
Russell Kingb7ca01a2010-08-02 09:57:07 +0100396config FB_CYBER2000_I2C
397 bool "CyberPro 2000/2010/5000 I2C support"
398 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
399 select I2C_ALGOBIT
400 help
401 Enable support for the I2C video decoder interface on the
402 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
403 on the Netwinder machines for the SAA7111 video capture.
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405config FB_APOLLO
406 bool
407 depends on (FB = y) && APOLLO
408 default y
409 select FB_CFB_FILLRECT
410 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412config FB_Q40
413 bool
414 depends on (FB = y) && Q40
415 default y
416 select FB_CFB_FILLRECT
417 select FB_CFB_COPYAREA
418 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420config FB_AMIGA
421 tristate "Amiga native chipset support"
422 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 help
424 This is the frame buffer device driver for the builtin graphics
425 chipset found in Amigas.
426
427 To compile this driver as a module, choose M here: the
428 module will be called amifb.
429
430config FB_AMIGA_OCS
431 bool "Amiga OCS chipset support"
432 depends on FB_AMIGA
433 help
434 This enables support for the original Agnus and Denise video chips,
435 found in the Amiga 1000 and most A500's and A2000's. If you intend
436 to run Linux on any of these systems, say Y; otherwise say N.
437
438config FB_AMIGA_ECS
439 bool "Amiga ECS chipset support"
440 depends on FB_AMIGA
441 help
442 This enables support for the Enhanced Chip Set, found in later
443 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
444 you intend to run Linux on any of these systems, say Y; otherwise
445 say N.
446
447config FB_AMIGA_AGA
448 bool "Amiga AGA chipset support"
449 depends on FB_AMIGA
450 help
451 This enables support for the Advanced Graphics Architecture (also
452 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
453 and CD32. If you intend to run Linux on any of these systems, say Y;
454 otherwise say N.
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456config FB_FM2
457 bool "Amiga FrameMaster II/Rainbow II support"
458 depends on (FB = y) && ZORRO
459 select FB_CFB_FILLRECT
460 select FB_CFB_COPYAREA
461 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 help
463 This is the frame buffer device driver for the Amiga FrameMaster
464 card from BSC (exhibited 1992 but not shipped as a CBM product).
465
Jaya Kumar1154ea72005-06-21 17:17:04 -0700466config FB_ARC
467 tristate "Arc Monochrome LCD board support"
468 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700469 select FB_SYS_FILLRECT
470 select FB_SYS_COPYAREA
471 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700472 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700473 help
474 This enables support for the Arc Monochrome LCD board. The board
475 is based on the KS-108 lcd controller and is typically a matrix
476 of 2*n chips. This driver was tested with a 128x64 panel. This
477 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200478 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700479 this driver, say Y or M; otherwise say N. You must specify the
480 GPIO IO address to be used for setting control and data.
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482config FB_ATARI
483 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200484 depends on (FB = y) && ATARI
485 select FB_CFB_FILLRECT
486 select FB_CFB_COPYAREA
487 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 help
489 This is the frame buffer device driver for the builtin graphics
490 chipset found in Ataris.
491
492config FB_OF
493 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100494 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 select FB_CFB_FILLRECT
496 select FB_CFB_COPYAREA
497 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 select FB_MACMODES
499 help
500 Say Y if you want support with Open Firmware for your graphics
501 board.
502
503config FB_CONTROL
504 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700505 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 select FB_CFB_FILLRECT
507 select FB_CFB_COPYAREA
508 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 select FB_MACMODES
510 help
511 This driver supports a frame buffer for the graphics adapter in the
512 Power Macintosh 7300 and others.
513
514config FB_PLATINUM
515 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700516 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 select FB_CFB_FILLRECT
518 select FB_CFB_COPYAREA
519 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 select FB_MACMODES
521 help
522 This driver supports a frame buffer for the "platinum" graphics
523 adapter in some Power Macintoshes.
524
525config FB_VALKYRIE
526 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700527 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 select FB_CFB_FILLRECT
529 select FB_CFB_COPYAREA
530 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 select FB_MACMODES
532 help
533 This driver supports a frame buffer for the "valkyrie" graphics
534 adapter in some Power Macintoshes.
535
536config FB_CT65550
537 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800538 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 select FB_CFB_FILLRECT
540 select FB_CFB_COPYAREA
541 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 help
543 This is the frame buffer device driver for the Chips & Technologies
544 65550 graphics chip in PowerBooks.
545
546config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800547 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 depends on (FB = y) && PCI
549 select FB_CFB_FILLRECT
550 select FB_CFB_COPYAREA
551 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700552 help
553 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555config FB_IMSTT
556 bool "IMS Twin Turbo display support"
557 depends on (FB = y) && PCI
558 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 select FB_MACMODES if PPC
560 help
561 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
562 many Macintosh and compatible computers.
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564config FB_VGA16
565 tristate "VGA 16-color graphics support"
566 depends on FB && (X86 || PPC)
567 select FB_CFB_FILLRECT
568 select FB_CFB_COPYAREA
569 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700570 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700571 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 help
573 This is the frame buffer device driver for VGA 16 color graphic
574 cards. Say Y if you have such a card.
575
576 To compile this driver as a module, choose M here: the
577 module will be called vga16fb.
578
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700579config FB_BF54X_LQ043
580 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700581 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700582 select FB_CFB_FILLRECT
583 select FB_CFB_COPYAREA
584 select FB_CFB_IMAGEBLIT
585 help
586 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
587
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700588config FB_BFIN_T350MCQB
589 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
590 depends on FB && BLACKFIN
591 select BFIN_GPTIMERS
592 select FB_CFB_FILLRECT
593 select FB_CFB_COPYAREA
594 select FB_CFB_IMAGEBLIT
595 help
596 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
597 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
598 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
599
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800600config FB_BFIN_LQ035Q1
601 tristate "SHARP LQ035Q1DH02 TFT LCD"
602 depends on FB && BLACKFIN && SPI
603 select FB_CFB_FILLRECT
604 select FB_CFB_COPYAREA
605 select FB_CFB_IMAGEBLIT
606 select BFIN_GPTIMERS
607 help
608 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
609 the Blackfin Landscape LCD EZ-Extender Card.
610 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
611 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
612
613 To compile this driver as a module, choose M here: the
614 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700615
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000616config FB_BF537_LQ035
617 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
618 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
619 select FB_CFB_FILLRECT
620 select FB_CFB_COPYAREA
621 select FB_CFB_IMAGEBLIT
622 select BFIN_GPTIMERS
623 help
624 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
625 attached to a BF537.
626
627 To compile this driver as a module, choose M here: the
628 module will be called bf537-lq035.
629
Michael Hennerichcffd9342010-11-24 09:33:59 +0000630config FB_BFIN_7393
631 tristate "Blackfin ADV7393 Video encoder"
632 depends on FB && BLACKFIN
633 select I2C
634 select FB_CFB_FILLRECT
635 select FB_CFB_COPYAREA
636 select FB_CFB_IMAGEBLIT
637 help
638 This is the framebuffer device for a ADV7393 video encoder
639 attached to a Blackfin on the PPI port.
640 If your Blackfin board has a ADV7393 select Y.
641
642 To compile this driver as a module, choose M here: the
643 module will be called bfin_adv7393fb.
644
645choice
646 prompt "Video mode support"
647 depends on FB_BFIN_7393
648 default NTSC
649
650config NTSC
651 bool 'NTSC 720x480'
652
653config PAL
654 bool 'PAL 720x576'
655
656config NTSC_640x480
657 bool 'NTSC 640x480 (Experimental)'
658
659config PAL_640x480
660 bool 'PAL 640x480 (Experimental)'
661
662config NTSC_YCBCR
663 bool 'NTSC 720x480 YCbCR input'
664
665config PAL_YCBCR
666 bool 'PAL 720x576 YCbCR input'
667
668endchoice
669
670choice
671 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
672 depends on (FB_BFIN_7393)
673 default ADV7393_1XMEM
674
675config ADV7393_1XMEM
676 bool 'Single'
677
678config ADV7393_2XMEM
679 bool 'Double'
680endchoice
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682config FB_STI
683 tristate "HP STI frame buffer device support"
684 depends on FB && PARISC
685 select FB_CFB_FILLRECT
686 select FB_CFB_COPYAREA
687 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000688 select STI_CONSOLE
689 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 default y
691 ---help---
692 STI refers to the HP "Standard Text Interface" which is a set of
693 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
694 Enabling this option will implement the linux framebuffer device
695 using calls to the STI BIOS routines for initialisation.
696
697 If you enable this option, you will get a planar framebuffer device
698 /dev/fb which will work on the most common HP graphic cards of the
699 NGLE family, including the artist chips (in the 7xx and Bxxx series),
700 HCRX, HCRX24, CRX, CRX24 and VisEG series.
701
702 It is safe to enable this option, so you should probably say "Y".
703
704config FB_MAC
705 bool "Generic Macintosh display support"
706 depends on (FB = y) && MAC
707 select FB_CFB_FILLRECT
708 select FB_CFB_COPYAREA
709 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 select FB_MACMODES
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712config FB_HP300
713 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200714 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 default y
717
718config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700719 tristate "TGA/SFB+ framebuffer support"
720 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 select FB_CFB_FILLRECT
722 select FB_CFB_COPYAREA
723 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800724 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700725 ---help---
726 This is the frame buffer device driver for generic TGA and SFB+
727 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
728 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
729 TURBOchannel cards, also known as PMAGD-A, -B and -C.
730
731 Due to hardware limitations ZLX-E2 and E3 cards are not supported
732 for DECstation 5000/200 systems. Additionally due to firmware
733 limitations these cards may cause troubles with booting DECstation
734 5000/240 and /260 systems, but are fully supported under Linux if
735 you manage to get it going. ;-)
736
737 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700739config FB_UVESA
740 tristate "Userspace VESA VGA graphics support"
741 depends on FB && CONNECTOR
742 select FB_CFB_FILLRECT
743 select FB_CFB_COPYAREA
744 select FB_CFB_IMAGEBLIT
745 select FB_MODE_HELPERS
746 help
747 This is the frame buffer driver for generic VBE 2.0 compliant
748 graphic cards. It can also take advantage of VBE 3.0 features,
749 such as refresh rate adjustment.
750
751 This driver generally provides more features than vesafb but
752 requires a userspace helper application called 'v86d'. See
753 <file:Documentation/fb/uvesafb.txt> for more information.
754
755 If unsure, say N.
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757config FB_VESA
758 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800759 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 select FB_CFB_FILLRECT
761 select FB_CFB_COPYAREA
762 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700763 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 help
765 This is the frame buffer device driver for generic VESA 2.0
766 compliant graphic cards. The older VESA 1.2 cards are not supported.
767 You will get a boot time penguin logo at no additional cost. Please
768 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
769
Huang, Ying7c831722007-11-28 16:21:55 -0800770config FB_EFI
771 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700772 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700773 select FB_CFB_FILLRECT
774 select FB_CFB_COPYAREA
775 select FB_CFB_IMAGEBLIT
776 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700777 This is the EFI frame buffer device driver. If the firmware on
778 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
779 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700780
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700781config FB_N411
782 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700783 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700784 select FB_SYS_FILLRECT
785 select FB_SYS_COPYAREA
786 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700787 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700788 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700789 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700790 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700791 This enables support for the Apollo display controller in its
792 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794config FB_HGA
795 tristate "Hercules mono graphics support"
796 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 help
798 Say Y here if you have a Hercules mono graphics card.
799
800 To compile this driver as a module, choose M here: the
801 module will be called hgafb.
802
Brent Cook529ed802010-12-31 05:56:50 +0000803 As this card technology is at least 25 years old,
804 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806config FB_SGIVW
807 tristate "SGI Visual Workstation framebuffer support"
808 depends on FB && X86_VISWS
809 select FB_CFB_FILLRECT
810 select FB_CFB_COPYAREA
811 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 help
813 SGI Visual Workstation support for framebuffer graphics.
814
815config FB_GBE
816 bool "SGI Graphics Backend frame buffer support"
817 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
818 select FB_CFB_FILLRECT
819 select FB_CFB_COPYAREA
820 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 help
822 This is the frame buffer device driver for SGI Graphics Backend.
823 This chip is used in SGI O2 and Visual Workstation 320/540.
824
825config FB_GBE_MEM
826 int "Video memory size in MB"
827 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800828 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 help
830 This is the amount of memory reserved for the framebuffer,
831 which can be any value between 1MB and 8MB.
832
Mark Fortescue1a571982005-11-29 19:34:44 -0800833config FB_SBUS
834 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800835 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800836 help
837 Say Y if you want support for SBUS or UPA based frame buffer device.
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839config FB_BW2
840 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800841 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 select FB_CFB_FILLRECT
843 select FB_CFB_COPYAREA
844 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 help
846 This is the frame buffer device driver for the BWtwo frame buffer.
847
848config FB_CG3
849 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800850 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800851 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 select FB_CFB_COPYAREA
853 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 help
855 This is the frame buffer device driver for the CGthree frame buffer.
856
857config FB_CG6
858 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800859 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 select FB_CFB_COPYAREA
861 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 help
863 This is the frame buffer device driver for the CGsix (GX, TurboGX)
864 frame buffer.
865
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700866config FB_FFB
867 bool "Creator/Creator3D/Elite3D support"
868 depends on FB_SBUS && SPARC64
869 select FB_CFB_COPYAREA
870 select FB_CFB_IMAGEBLIT
871 help
872 This is the frame buffer device driver for the Creator, Creator3D,
873 and Elite3D graphics boards.
874
875config FB_TCX
876 bool "TCX (SS4/SS5 only) support"
877 depends on FB_SBUS
878 select FB_CFB_FILLRECT
879 select FB_CFB_COPYAREA
880 select FB_CFB_IMAGEBLIT
881 help
882 This is the frame buffer device driver for the TCX 24/8bit frame
883 buffer.
884
885config FB_CG14
886 bool "CGfourteen (SX) support"
887 depends on FB_SBUS
888 select FB_CFB_FILLRECT
889 select FB_CFB_COPYAREA
890 select FB_CFB_IMAGEBLIT
891 help
892 This is the frame buffer device driver for the CGfourteen frame
893 buffer on Desktop SPARCsystems with the SX graphics option.
894
895config FB_P9100
896 bool "P9100 (Sparcbook 3 only) support"
897 depends on FB_SBUS
898 select FB_CFB_FILLRECT
899 select FB_CFB_COPYAREA
900 select FB_CFB_IMAGEBLIT
901 help
902 This is the frame buffer device driver for the P9100 card
903 supported on Sparcbook 3 machines.
904
905config FB_LEO
906 bool "Leo (ZX) support"
907 depends on FB_SBUS
908 select FB_CFB_FILLRECT
909 select FB_CFB_COPYAREA
910 select FB_CFB_IMAGEBLIT
911 help
912 This is the frame buffer device driver for the SBUS-based Sun ZX
913 (leo) frame buffer cards.
914
915config FB_IGA
916 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700917 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700918 select FB_CFB_FILLRECT
919 select FB_CFB_COPYAREA
920 select FB_CFB_IMAGEBLIT
921 help
922 This is the framebuffer device for the INTERGRAPHICS 1680 and
923 successor frame buffer cards.
924
925config FB_XVR500
926 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700927 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700928 select FB_CFB_FILLRECT
929 select FB_CFB_COPYAREA
930 select FB_CFB_IMAGEBLIT
931 help
932 This is the framebuffer device for the Sun XVR-500 and similar
933 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200934 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700935 mostly initialized the card already. It is treated as a
936 completely dumb framebuffer device.
937
938config FB_XVR2500
939 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700940 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700941 select FB_CFB_FILLRECT
942 select FB_CFB_COPYAREA
943 select FB_CFB_IMAGEBLIT
944 help
945 This is the framebuffer device for the Sun XVR-2500 and similar
946 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200947 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700948 mostly initialized the card already. It is treated as a
949 completely dumb framebuffer device.
950
David S. Miller2d378b92010-03-13 16:25:03 -0800951config FB_XVR1000
952 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700953 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -0800954 select FB_CFB_FILLRECT
955 select FB_CFB_COPYAREA
956 select FB_CFB_IMAGEBLIT
957 help
958 This is the framebuffer device for the Sun XVR-1000 and similar
959 graphics cards. The driver only works on sparc64 systems where
960 the system firmware has mostly initialized the card already. It
961 is treated as a completely dumb framebuffer device.
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963config FB_PVR2
964 tristate "NEC PowerVR 2 display support"
965 depends on FB && SH_DREAMCAST
966 select FB_CFB_FILLRECT
967 select FB_CFB_COPYAREA
968 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ---help---
970 Say Y here if you have a PowerVR 2 card in your box. If you plan to
971 run linux on your Dreamcast, you will have to say Y here.
972 This driver may or may not work on other PowerVR 2 cards, but is
973 totally untested. Use at your own risk. If unsure, say N.
974
975 To compile this driver as a module, choose M here: the
976 module will be called pvr2fb.
977
978 You can pass several parameters to the driver at boot time or at
979 module load time. The parameters look like "video=pvr2:XXX", where
980 the meaning of XXX can be found at the end of the main source file
981 (<file:drivers/video/pvr2fb.c>). Please see the file
982 <file:Documentation/fb/pvr2fb.txt>.
983
984config FB_EPSON1355
985 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -0700986 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 select FB_CFB_FILLRECT
988 select FB_CFB_COPYAREA
989 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 help
991 Build in support for the SED1355 Epson Research Embedded RAMDAC
992 LCD/CRT Controller (since redesignated as the S1D13505) as a
993 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200994 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Randy Dunlapecc41d52005-11-07 01:00:29 -0800996config FB_S1D13XXX
997 tristate "Epson S1D13XXX framebuffer support"
998 depends on FB
999 select FB_CFB_FILLRECT
1000 select FB_CFB_COPYAREA
1001 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001002 help
1003 Support for S1D13XXX framebuffer device family (currently only
1004 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001005 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -08001006
Nicolas Ferre14340582007-05-10 22:23:26 -07001007config FB_ATMEL
1008 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001009 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001010 select FB_CFB_FILLRECT
1011 select FB_CFB_COPYAREA
1012 select FB_CFB_IMAGEBLIT
1013 help
1014 This enables support for the AT91/AT32 LCD Controller.
1015
1016config FB_INTSRAM
1017 bool "Frame Buffer in internal SRAM"
1018 depends on FB_ATMEL && ARCH_AT91SAM9261
1019 help
1020 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1021 to let frame buffer in external SDRAM.
1022
Nicolas Ferre250a2692007-07-21 04:37:59 -07001023config FB_ATMEL_STN
1024 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001025 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001026 default n
1027 help
1028 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1029 Controller. Say N if you want to connect a TFT.
1030
1031 If unsure, say N.
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033config FB_NVIDIA
1034 tristate "nVidia Framebuffer Support"
1035 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001036 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 select FB_MODE_HELPERS
1038 select FB_CFB_FILLRECT
1039 select FB_CFB_COPYAREA
1040 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001041 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001042 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 help
1044 This driver supports graphics boards with the nVidia chips, TNT
1045 and newer. For very old chipsets, such as the RIVA128, then use
1046 the rivafb.
1047 Say Y if you have such a graphics board.
1048
1049 To compile this driver as a module, choose M here: the
1050 module will be called nvidiafb.
1051
1052config FB_NVIDIA_I2C
1053 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001054 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001055 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 help
1057 This enables I2C support for nVidia Chipsets. This is used
1058 only for getting EDID information from the attached display
1059 allowing for robust video mode handling and switching.
1060
1061 Because fbdev-2.6 requires that drivers must be able to
1062 independently validate video mode parameters, you should say Y
1063 here.
1064
Jean Delvare647f2e72007-05-10 22:23:29 -07001065config FB_NVIDIA_DEBUG
1066 bool "Lots of debug output"
1067 depends on FB_NVIDIA
1068 default n
1069 help
1070 Say Y here if you want the nVidia driver to output all sorts
1071 of debugging information to provide to the maintainer when
1072 something goes wrong.
1073
Michael Hanselmann5474c122006-06-25 05:47:08 -07001074config FB_NVIDIA_BACKLIGHT
1075 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001076 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001077 default y
1078 help
1079 Say Y here if you want to control the backlight of your display.
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081config FB_RIVA
1082 tristate "nVidia Riva support"
1083 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001084 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 select FB_MODE_HELPERS
1086 select FB_CFB_FILLRECT
1087 select FB_CFB_COPYAREA
1088 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001089 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001090 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 help
1092 This driver supports graphics boards with the nVidia Riva/Geforce
1093 chips.
1094 Say Y if you have such a graphics board.
1095
1096 To compile this driver as a module, choose M here: the
1097 module will be called rivafb.
1098
1099config FB_RIVA_I2C
1100 bool "Enable DDC Support"
1101 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001102 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 help
1104 This enables I2C support for nVidia Chipsets. This is used
1105 only for getting EDID information from the attached display
1106 allowing for robust video mode handling and switching.
1107
1108 Because fbdev-2.6 requires that drivers must be able to
1109 independently validate video mode parameters, you should say Y
1110 here.
1111
1112config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001113 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 depends on FB_RIVA
1115 default n
1116 help
1117 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001118 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 something goes wrong.
1120
Michael Hanselmann5474c122006-06-25 05:47:08 -07001121config FB_RIVA_BACKLIGHT
1122 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001123 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001124 default y
1125 help
1126 Say Y here if you want to control the backlight of your display.
1127
Ondrej Zary5350c652012-02-10 18:59:17 +01001128config FB_I740
1129 tristate "Intel740 support (EXPERIMENTAL)"
1130 depends on EXPERIMENTAL && FB && PCI
1131 select FB_MODE_HELPERS
1132 select FB_CFB_FILLRECT
1133 select FB_CFB_COPYAREA
1134 select FB_CFB_IMAGEBLIT
1135 select VGASTATE
1136 select FB_DDC
1137 help
1138 This driver supports graphics cards based on Intel740 chip.
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140config FB_I810
1141 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001142 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 select FB_MODE_HELPERS
1144 select FB_CFB_FILLRECT
1145 select FB_CFB_COPYAREA
1146 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001147 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 help
1149 This driver supports the on-board graphics built in to the Intel 810
1150 and 815 chipsets. Say Y if you have and plan to use such a board.
1151
1152 To compile this driver as a module, choose M here: the
1153 module will be called i810fb.
1154
1155 For more information, please read
1156 <file:Documentation/fb/intel810.txt>
1157
1158config FB_I810_GTF
1159 bool "use VESA Generalized Timing Formula"
1160 depends on FB_I810
1161 help
1162 If you say Y, then the VESA standard, Generalized Timing Formula
1163 or GTF, will be used to calculate the required video timing values
1164 per video mode. Since the GTF allows nondiscrete timings
1165 (nondiscrete being a range of values as opposed to discrete being a
1166 set of values), you'll be able to use any combination of horizontal
1167 and vertical resolutions, and vertical refresh rates without having
1168 to specify your own timing parameters. This is especially useful
1169 to maximize the performance of an aging display, or if you just
1170 have a display with nonstandard dimensions. A VESA compliant
1171 monitor is recommended, but can still work with non-compliant ones.
1172 If you need or want this, then select this option. The timings may
1173 not be compliant with Intel's recommended values. Use at your own
1174 risk.
1175
1176 If you say N, the driver will revert to discrete video timings
1177 using a set recommended by Intel in their documentation.
1178
1179 If unsure, say N.
1180
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001181config FB_I810_I2C
1182 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001183 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001184 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001185 help
1186
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001187config FB_LE80578
1188 tristate "Intel LE80578 (Vermilion) support"
1189 depends on FB && PCI && X86
1190 select FB_MODE_HELPERS
1191 select FB_CFB_FILLRECT
1192 select FB_CFB_COPYAREA
1193 select FB_CFB_IMAGEBLIT
1194 help
1195 This driver supports the LE80578 (Vermilion Range) chipset
1196
1197config FB_CARILLO_RANCH
1198 tristate "Intel Carillo Ranch support"
1199 depends on FB_LE80578 && FB && PCI && X86
1200 help
1201 This driver supports the LE80578 (Carillo Ranch) board
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001204 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001205 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 select FB_MODE_HELPERS
1207 select FB_CFB_FILLRECT
1208 select FB_CFB_COPYAREA
1209 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001210 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001211 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 help
1213 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001214 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 Say Y if you have and plan to use such a board.
1216
Krzysztof Helt4b198282009-06-18 16:49:21 -07001217 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1218
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001219 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 module will be called intelfb.
1221
Christian Merkled463d342006-08-22 10:07:01 +10001222 For more information, please read <file:Documentation/fb/intelfb.txt>
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001225 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 depends on FB_INTEL
1227 ---help---
1228 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001229 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 something goes wrong.
1231
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001232config FB_INTEL_I2C
1233 bool "DDC/I2C for Intel framebuffer support"
1234 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001235 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001236 default y
1237 help
1238 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240config FB_MATROX
1241 tristate "Matrox acceleration"
1242 depends on FB && PCI
1243 select FB_CFB_FILLRECT
1244 select FB_CFB_COPYAREA
1245 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 select FB_TILEBLITTING
1247 select FB_MACMODES if PPC_PMAC
1248 ---help---
1249 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1250 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1251 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1252 Matrox G400, G450 or G550 card in your box.
1253
1254 To compile this driver as a module, choose M here: the
1255 module will be called matroxfb.
1256
1257 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001258 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 are described in <file:Documentation/fb/matroxfb.txt>.
1260
1261config FB_MATROX_MILLENIUM
1262 bool "Millennium I/II support"
1263 depends on FB_MATROX
1264 help
1265 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1266 video card. If you select "Advanced lowlevel driver options" below,
1267 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1268 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1269 also use font widths different from 8.
1270
1271config FB_MATROX_MYSTIQUE
1272 bool "Mystique support"
1273 depends on FB_MATROX
1274 help
1275 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1276 video card. If you select "Advanced lowlevel driver options" below,
1277 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1278 packed pixel and 32 bpp packed pixel. You can also use font widths
1279 different from 8.
1280
1281config FB_MATROX_G
1282 bool "G100/G200/G400/G450/G550 support"
1283 depends on FB_MATROX
1284 ---help---
1285 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1286 video card. If you select "Advanced lowlevel driver options", you
1287 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1288 pixel and 32 bpp packed pixel. You can also use font widths
1289 different from 8.
1290
Jean Delvareee831262009-05-12 13:19:41 -07001291 If you need support for G400 secondary head, you must say Y to
1292 "Matrox I2C support" and "G400 second head support" right below.
1293 G450/G550 secondary head and digital output are supported without
1294 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 The driver starts in monitor mode. You must use the matroxset tool
1297 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1298 swap primary and secondary head outputs, or to change output mode.
1299 Secondary head driver always start in 640x480 resolution and you
1300 must use fbset to change it.
1301
1302 Do not forget that second head supports only 16 and 32 bpp
1303 packed pixels, so it is a good idea to compile them into the kernel
1304 too. You can use only some font widths, as the driver uses generic
1305 painting procedures (the secondary head does not use acceleration
1306 engine).
1307
1308 G450/G550 hardware can display TV picture only from secondary CRTC,
1309 and it performs no scaling, so picture must have 525 or 625 lines.
1310
1311config FB_MATROX_I2C
1312 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001313 depends on FB_MATROX
1314 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 ---help---
1316 This drivers creates I2C buses which are needed for accessing the
1317 DDC (I2C) bus present on all Matroxes, an I2C bus which
1318 interconnects Matrox optional devices, like MGA-TVO on G200 and
1319 G400, and the secondary head DDC bus, present on G400 only.
1320
1321 You can say Y or M here if you want to experiment with monitor
1322 detection code. You must say Y or M here if you want to use either
1323 second head of G400 or MGA-TVO on G200 or G400.
1324
1325 If you compile it as module, it will create a module named
1326 i2c-matroxfb.
1327
1328config FB_MATROX_MAVEN
1329 tristate "G400 second head support"
1330 depends on FB_MATROX_G && FB_MATROX_I2C
1331 ---help---
1332 WARNING !!! This support does not work with G450 !!!
1333
1334 Say Y or M here if you want to use a secondary head (meaning two
1335 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1336 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1337 secondary head output is blanked while you are in X. With XFree
1338 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1339 the fbdev driver on first head and the fbdev driver on second head.
1340
1341 If you compile it as module, two modules are created,
1342 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1343 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1344 also load i2c-matroxfb to get it to run.
1345
1346 The driver starts in monitor mode and you must use the matroxset
1347 tool (available at
1348 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1349 PAL or NTSC or to swap primary and secondary head outputs.
1350 Secondary head driver also always start in 640x480 resolution, you
1351 must use fbset to change it.
1352
1353 Also do not forget that second head supports only 16 and 32 bpp
1354 packed pixels, so it is a good idea to compile them into the kernel
1355 too. You can use only some font widths, as the driver uses generic
1356 painting procedures (the secondary head does not use acceleration
1357 engine).
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359config FB_RADEON
1360 tristate "ATI Radeon display support"
1361 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001362 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 select FB_MODE_HELPERS
1364 select FB_CFB_FILLRECT
1365 select FB_CFB_COPYAREA
1366 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 select FB_MACMODES if PPC_OF
1368 help
1369 Choose this option if you want to use an ATI Radeon graphics card as
1370 a framebuffer device. There are both PCI and AGP versions. You
1371 don't need to choose this to run the Radeon in plain VGA mode.
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001374 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376config FB_RADEON_I2C
1377 bool "DDC/I2C for ATI Radeon support"
1378 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001379 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 default y
1381 help
1382 Say Y here if you want DDC/I2C support for your Radeon board.
1383
Michael Hanselmann5474c122006-06-25 05:47:08 -07001384config FB_RADEON_BACKLIGHT
1385 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001386 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001387 default y
1388 help
1389 Say Y here if you want to control the backlight of your display.
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391config FB_RADEON_DEBUG
1392 bool "Lots of debug output from Radeon driver"
1393 depends on FB_RADEON
1394 default n
1395 help
1396 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001397 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 something goes wrong.
1399
1400config FB_ATY128
1401 tristate "ATI Rage128 display support"
1402 depends on FB && PCI
1403 select FB_CFB_FILLRECT
1404 select FB_CFB_COPYAREA
1405 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001406 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 select FB_MACMODES if PPC_PMAC
1408 help
1409 This driver supports graphics boards with the ATI Rage128 chips.
1410 Say Y if you have such a graphics board and read
1411 <file:Documentation/fb/aty128fb.txt>.
1412
1413 To compile this driver as a module, choose M here: the
1414 module will be called aty128fb.
1415
Michael Hanselmann5474c122006-06-25 05:47:08 -07001416config FB_ATY128_BACKLIGHT
1417 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001418 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001419 default y
1420 help
1421 Say Y here if you want to control the backlight of your display.
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423config FB_ATY
1424 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001425 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 select FB_CFB_FILLRECT
1427 select FB_CFB_COPYAREA
1428 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001429 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 select FB_MACMODES if PPC
1431 help
1432 This driver supports graphics boards with the ATI Mach64 chips.
1433 Say Y if you have such a graphics board.
1434
1435 To compile this driver as a module, choose M here: the
1436 module will be called atyfb.
1437
1438config FB_ATY_CT
1439 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1440 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001441 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 help
1443 Say Y here to support use of ATI's 64-bit Rage boards (or other
1444 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1445 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001446 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448config FB_ATY_GENERIC_LCD
1449 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1450 depends on FB_ATY_CT
1451 help
1452 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1453 Rage XC, or Rage XL chipset.
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455config FB_ATY_GX
1456 bool "Mach64 GX support" if PCI
1457 depends on FB_ATY
1458 default y if ATARI
1459 help
1460 Say Y here to support use of the ATI Mach64 Graphics Expression
1461 board (or other boards based on the Mach64 GX chipset) as a
1462 framebuffer device. The ATI product support page for these boards
1463 is at
1464 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1465
Michael Hanselmann5474c122006-06-25 05:47:08 -07001466config FB_ATY_BACKLIGHT
1467 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001468 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001469 default y
1470 help
1471 Say Y here if you want to control the backlight of your display.
1472
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001473config FB_S3
1474 tristate "S3 Trio/Virge support"
1475 depends on FB && PCI
1476 select FB_CFB_FILLRECT
1477 select FB_CFB_COPYAREA
1478 select FB_CFB_IMAGEBLIT
1479 select FB_TILEBLITTING
1480 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001481 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001482 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001483 ---help---
1484 Driver for graphics boards with S3 Trio / S3 Virge chip.
1485
Ondrej Zary86c0f0432011-04-18 10:14:57 +00001486config FB_S3_DDC
1487 bool "DDC for S3 support"
1488 depends on FB_S3
1489 select FB_DDC
1490 default y
1491 help
1492 Say Y here if you want DDC support for your S3 graphics card.
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494config FB_SAVAGE
1495 tristate "S3 Savage support"
1496 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 select FB_MODE_HELPERS
1498 select FB_CFB_FILLRECT
1499 select FB_CFB_COPYAREA
1500 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001501 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 help
1503 This driver supports notebooks and computers with S3 Savage PCI/AGP
1504 chips.
1505
1506 Say Y if you have such a graphics card.
1507
1508 To compile this driver as a module, choose M here; the module
1509 will be called savagefb.
1510
1511config FB_SAVAGE_I2C
1512 bool "Enable DDC2 Support"
1513 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001514 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 help
1516 This enables I2C support for S3 Savage Chipsets. This is used
1517 only for getting EDID information from the attached display
1518 allowing for robust video mode handling and switching.
1519
1520 Because fbdev-2.6 requires that drivers must be able to
1521 independently validate video mode parameters, you should say Y
1522 here.
1523
1524config FB_SAVAGE_ACCEL
1525 bool "Enable Console Acceleration"
1526 depends on FB_SAVAGE
1527 default n
1528 help
1529 This option will compile in console acceleration support. If
1530 the resulting framebuffer console has bothersome glitches, then
1531 choose N here.
1532
1533config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001534 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 depends on FB && PCI
1536 select FB_CFB_FILLRECT
1537 select FB_CFB_COPYAREA
1538 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001539 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001541 This is the frame buffer device driver for the SiS 300, 315, 330
1542 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1543 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 To compile this driver as a module, choose M here; the module
1546 will be called sisfb.
1547
1548config FB_SIS_300
1549 bool "SiS 300 series support"
1550 depends on FB_SIS
1551 help
1552 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1553
1554config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001555 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 depends on FB_SIS
1557 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001558 Say Y here to support use of the SiS 315, 330 and 340 series
1559 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1560 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001562config FB_VIA
1563 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001564 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001565 select FB_CFB_FILLRECT
1566 select FB_CFB_COPYAREA
1567 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001568 select I2C_ALGOBIT
1569 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001570 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001571 help
1572 This is the frame buffer device driver for Graphics chips of VIA
1573 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1574 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1575 /P4M900,VX800)
1576 Say Y if you have a VIA UniChrome graphics board.
1577
1578 To compile this driver as a module, choose M here: the
1579 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001580
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001581if FB_VIA
1582
1583config FB_VIA_DIRECT_PROCFS
1584 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1585 depends on FB_VIA
1586 default n
1587 help
1588 Allow direct hardware access to some output registers via procfs.
1589 This is dangerous but may provide the only chance to get the
1590 correct output device configuration.
1591 Its use is strongly discouraged.
1592
Florian Tobias Schandinat29462942011-04-23 23:52:45 +00001593config FB_VIA_X_COMPATIBILITY
1594 bool "X server compatibility"
1595 depends on FB_VIA
1596 default n
1597 help
1598 This option reduces the functionality (power saving, ...) of the
1599 framebuffer to avoid negative impact on the OpenChrome X server.
1600 If you use any X server other than fbdev you should enable this
1601 otherwise it should be safe to disable it and allow using all
1602 features.
1603
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001604endif
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606config FB_NEOMAGIC
1607 tristate "NeoMagic display support"
1608 depends on FB && PCI
1609 select FB_MODE_HELPERS
1610 select FB_CFB_FILLRECT
1611 select FB_CFB_COPYAREA
1612 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001613 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 help
1615 This driver supports notebooks with NeoMagic PCI chips.
1616 Say Y if you have such a graphics card.
1617
1618 To compile this driver as a module, choose M here: the
1619 module will be called neofb.
1620
1621config FB_KYRO
1622 tristate "IMG Kyro support"
1623 depends on FB && PCI
1624 select FB_CFB_FILLRECT
1625 select FB_CFB_COPYAREA
1626 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 help
1628 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1629 graphics board.
1630
1631 To compile this driver as a module, choose M here: the
1632 module will be called kyrofb.
1633
1634config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001635 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 depends on FB && PCI
1637 select FB_CFB_IMAGEBLIT
1638 select FB_CFB_FILLRECT
1639 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001640 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001642 This driver supports graphics boards with the 3Dfx Banshee,
1643 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1644 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646 To compile this driver as a module, choose M here: the
1647 module will be called tdfxfb.
1648
1649config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001650 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 depends on FB_3DFX && EXPERIMENTAL
1652 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001653 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1654 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001656config FB_3DFX_I2C
1657 bool "Enable DDC/I2C support"
1658 depends on FB_3DFX && EXPERIMENTAL
1659 select FB_DDC
1660 default y
1661 help
1662 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664config FB_VOODOO1
1665 tristate "3Dfx Voodoo Graphics (sst1) support"
1666 depends on FB && PCI
1667 select FB_CFB_FILLRECT
1668 select FB_CFB_COPYAREA
1669 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 ---help---
1671 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1672 Voodoo2 (cvg) based graphics card.
1673
1674 To compile this driver as a module, choose M here: the
1675 module will be called sstfb.
1676
1677 WARNING: Do not use any application that uses the 3D engine
1678 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001679 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 options and other important info support.
1681
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001682config FB_VT8623
1683 tristate "VIA VT8623 support"
1684 depends on FB && PCI
1685 select FB_CFB_FILLRECT
1686 select FB_CFB_COPYAREA
1687 select FB_CFB_IMAGEBLIT
1688 select FB_TILEBLITTING
1689 select FB_SVGALIB
1690 select VGASTATE
1691 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1692 ---help---
1693 Driver for CastleRock integrated graphics core in the
1694 VIA VT8623 [Apollo CLE266] chipset.
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001697 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 depends on FB && PCI
1699 select FB_CFB_FILLRECT
1700 select FB_CFB_COPYAREA
1701 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001703 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1704 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1705 and Blade XP.
1706 There are also integrated versions of these chips called CyberXXXX,
1707 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001708 but also on some motherboards including early VIA EPIA motherboards.
1709 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 Say Y if you have such a graphics board.
1712
1713 To compile this driver as a module, choose M here: the
1714 module will be called tridentfb.
1715
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001716config FB_ARK
1717 tristate "ARK 2000PV support"
1718 depends on FB && PCI
1719 select FB_CFB_FILLRECT
1720 select FB_CFB_COPYAREA
1721 select FB_CFB_IMAGEBLIT
1722 select FB_TILEBLITTING
1723 select FB_SVGALIB
1724 select VGASTATE
1725 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1726 ---help---
1727 Driver for PCI graphics boards with ARK 2000PV chip
1728 and ICS 5342 RAMDAC.
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001731 tristate "Permedia3 support (EXPERIMENTAL)"
1732 depends on FB && PCI && EXPERIMENTAL
1733 select FB_CFB_FILLRECT
1734 select FB_CFB_COPYAREA
1735 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 help
1737 This is the frame buffer device driver for the 3DLabs Permedia3
1738 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1739 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1740 and maybe other boards.
1741
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001742config FB_CARMINE
1743 tristate "Fujitsu carmine frame buffer support"
1744 depends on FB && PCI
1745 select FB_CFB_FILLRECT
1746 select FB_CFB_COPYAREA
1747 select FB_CFB_IMAGEBLIT
1748 help
1749 This is the frame buffer device driver for the Fujitsu Carmine chip.
1750 The driver provides two independent frame buffer devices.
1751
1752choice
1753 depends on FB_CARMINE
1754 prompt "DRAM timing"
1755 default FB_CARMINE_DRAM_EVAL
1756
1757config FB_CARMINE_DRAM_EVAL
1758 bool "Eval board timings"
1759 help
1760 Use timings which work on the eval card.
1761
1762config CARMINE_DRAM_CUSTOM
1763 bool "Custom board timings"
1764 help
1765 Use custom board timings.
1766endchoice
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768config FB_AU1100
1769 bool "Au1100 LCD Driver"
Manuel Lauss37663862011-08-12 11:39:45 +02001770 depends on (FB = y) && MIPS_ALCHEMY
Ralf Baechled1709e42007-07-23 18:43:50 -07001771 select FB_CFB_FILLRECT
1772 select FB_CFB_COPYAREA
1773 select FB_CFB_IMAGEBLIT
1774 help
1775 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1776 various panels and CRTs by passing in kernel cmd line option
1777 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001779config FB_AU1200
Manuel Lauss809f36c2011-11-01 20:03:30 +01001780 bool "Au1200/Au1300 LCD Driver"
Manuel Lauss37663862011-08-12 11:39:45 +02001781 depends on (FB = y) && MIPS_ALCHEMY
Manuel Lauss4ee58462011-06-10 15:23:04 +00001782 select FB_SYS_FILLRECT
1783 select FB_SYS_COPYAREA
1784 select FB_SYS_IMAGEBLIT
1785 select FB_SYS_FOPS
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001786 help
Manuel Lauss809f36c2011-11-01 20:03:30 +01001787 This is the framebuffer driver for the Au1200/Au1300 SOCs.
1788 It can drive various panels and CRTs by passing in kernel cmd line
1789 option au1200fb:panel=<name>.
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001790
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001791config FB_VT8500
1792 bool "VT8500 LCD Driver"
1793 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1794 select FB_WMT_GE_ROPS
1795 select FB_SYS_IMAGEBLIT
1796 help
1797 This is the framebuffer driver for VIA VT8500 integrated LCD
1798 controller.
1799
1800config FB_WM8505
1801 bool "WM8505 frame buffer support"
1802 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1803 select FB_WMT_GE_ROPS
1804 select FB_SYS_IMAGEBLIT
1805 help
1806 This is the framebuffer driver for WonderMedia WM8505
1807 integrated LCD controller.
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809source "drivers/video/geode/Kconfig"
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811config FB_HIT
1812 tristate "HD64461 Frame Buffer support"
1813 depends on FB && HD64461
1814 select FB_CFB_FILLRECT
1815 select FB_CFB_COPYAREA
1816 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 help
1818 This is the frame buffer device driver for the Hitachi HD64461 LCD
1819 frame buffer card.
1820
1821config FB_PMAG_AA
1822 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001823 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 select FB_CFB_FILLRECT
1825 select FB_CFB_COPYAREA
1826 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 help
1828 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1829 used mainly in the MIPS-based DECstation series.
1830
1831config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001832 tristate "PMAG-BA TURBOchannel framebuffer support"
1833 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 select FB_CFB_FILLRECT
1835 select FB_CFB_COPYAREA
1836 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 help
1838 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1839 used mainly in the MIPS-based DECstation series.
1840
1841config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001842 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001843 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 select FB_CFB_FILLRECT
1845 select FB_CFB_COPYAREA
1846 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 help
1848 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1849 in the MIPS-based DECstation series. The card is currently only
1850 supported in 1280x1024x8 mode.
1851
1852config FB_MAXINE
1853 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001854 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 select FB_CFB_FILLRECT
1856 select FB_CFB_COPYAREA
1857 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 help
1859 Support for the onboard framebuffer (1024x768x8) in the Personal
1860 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1861 Codename "Maxine").
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001864 bool "G364 frame buffer support"
1865 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 select FB_CFB_FILLRECT
1867 select FB_CFB_COPYAREA
1868 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 help
1870 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1871 Olivetti M700-10 systems.
1872
1873config FB_68328
1874 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001875 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 select FB_CFB_FILLRECT
1877 select FB_CFB_COPYAREA
1878 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 help
1880 Say Y here if you want to support the built-in frame buffer of
1881 the Motorola 68328 CPU family.
1882
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001883config FB_PXA168
1884 tristate "PXA168/910 LCD framebuffer support"
1885 depends on FB && (CPU_PXA168 || CPU_PXA910)
1886 select FB_CFB_FILLRECT
1887 select FB_CFB_COPYAREA
1888 select FB_CFB_IMAGEBLIT
1889 ---help---
1890 Frame buffer driver for the built-in LCD controller in the Marvell
1891 MMP processor.
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893config FB_PXA
1894 tristate "PXA LCD framebuffer support"
1895 depends on FB && ARCH_PXA
1896 select FB_CFB_FILLRECT
1897 select FB_CFB_COPYAREA
1898 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 ---help---
1900 Frame buffer driver for the built-in LCD controller in the Intel
1901 PXA2x0 processor.
1902
1903 This driver is also available as a module ( = code which can be
1904 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001905 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001906 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 If unsure, say N.
1909
Eric Miao198fc102008-12-23 17:49:43 +08001910config FB_PXA_OVERLAY
1911 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1912 default n
1913 depends on FB_PXA && (PXA27x || PXA3xx)
1914
Eric Miao3c42a442008-04-30 00:52:26 -07001915config FB_PXA_SMARTPANEL
1916 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001917 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001918 depends on FB_PXA
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920config FB_PXA_PARAMETERS
1921 bool "PXA LCD command line parameters"
1922 default n
1923 depends on FB_PXA
1924 ---help---
1925 Enable the use of kernel command line or module parameters
1926 to configure the physical properties of the LCD panel when
1927 using the PXA LCD driver.
1928
1929 This option allows you to override the panel parameters
1930 supplied by the platform in order to support multiple
1931 different models of flatpanel. If you will only be using a
1932 single model of flatpanel then you can safely leave this
1933 option disabled.
1934
1935 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1936
Daniel Mack364dbdf2010-11-04 14:44:00 -04001937config PXA3XX_GCU
1938 tristate "PXA3xx 2D graphics accelerator driver"
1939 depends on FB_PXA
1940 help
1941 Kernelspace driver for the 2D graphics controller unit (GCU)
1942 found on PXA3xx processors. There is a counterpart driver in the
1943 DirectFB suite, see http://www.directfb.org/
1944
1945 If you compile this as a module, it will be called pxa3xx_gcu.
1946
Mike Rapoport22caf042006-07-14 00:24:34 -07001947config FB_MBX
1948 tristate "2700G LCD framebuffer support"
1949 depends on FB && ARCH_PXA
1950 select FB_CFB_FILLRECT
1951 select FB_CFB_COPYAREA
1952 select FB_CFB_IMAGEBLIT
1953 ---help---
1954 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1955 Accelerator
1956
1957config FB_MBX_DEBUG
1958 bool "Enable debugging info via debugfs"
1959 depends on FB_MBX && DEBUG_FS
1960 default n
1961 ---help---
1962 Enable this if you want debugging information using the debug
1963 filesystem (debugfs)
1964
1965 If unsure, say N.
1966
York Sun9b53a9e2008-04-28 02:15:34 -07001967config FB_FSL_DIU
1968 tristate "Freescale DIU framebuffer support"
1969 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001970 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001971 select FB_CFB_FILLRECT
1972 select FB_CFB_COPYAREA
1973 select FB_CFB_IMAGEBLIT
1974 select PPC_LIB_RHEAP
1975 ---help---
1976 Framebuffer driver for the Freescale SoC DIU
1977
Randy Dunlapecc41d52005-11-07 01:00:29 -08001978config FB_W100
1979 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001980 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001981 select FB_CFB_FILLRECT
1982 select FB_CFB_COPYAREA
1983 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001984 ---help---
1985 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001986 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001987
1988 This driver is also available as a module ( = code which can be
1989 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001990 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001991 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08001992
1993 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07001995config FB_SH_MOBILE_LCDC
1996 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00001997 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09001998 select FB_SYS_FILLRECT
1999 select FB_SYS_COPYAREA
2000 select FB_SYS_IMAGEBLIT
2001 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09002002 select FB_DEFERRED_IO
Alexandre Courbot3b0fd9d2011-02-16 03:49:01 +00002003 select FB_BACKLIGHT
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002004 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002005 ---help---
2006 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2007
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002008config FB_SH_MOBILE_HDMI
2009 tristate "SuperH Mobile HDMI controller support"
2010 depends on FB_SH_MOBILE_LCDC
2011 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002012 select SOUND
2013 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002014 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002015 ---help---
2016 Driver for the on-chip SH-Mobile HDMI controller.
2017
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002018config FB_TMIO
2019 tristate "Toshiba Mobile IO FrameBuffer support"
2020 depends on FB && MFD_CORE
2021 select FB_CFB_FILLRECT
2022 select FB_CFB_COPYAREA
2023 select FB_CFB_IMAGEBLIT
2024 ---help---
2025 Frame buffer driver for the Toshiba Mobile IO integrated as found
2026 on the Sharp SL-6000 series
2027
2028 This driver is also available as a module ( = code which can be
2029 inserted and removed from the running kernel whenever you want). The
2030 module will be called tmiofb. If you want to compile it as a module,
2031 say M here and read <file:Documentation/kbuild/modules.txt>.
2032
2033 If unsure, say N.
2034
2035config FB_TMIO_ACCELL
2036 bool "tmiofb acceleration"
2037 depends on FB_TMIO
2038 default y
2039
Ben Dooksec549a02009-03-31 15:25:39 -07002040config FB_S3C
2041 tristate "Samsung S3C framebuffer support"
Jingoo Hanb5480ed2011-08-22 12:16:04 +09002042 depends on FB && (S3C_DEV_FB || S5P_DEV_FIMD0)
Ben Dooksec549a02009-03-31 15:25:39 -07002043 select FB_CFB_FILLRECT
2044 select FB_CFB_COPYAREA
2045 select FB_CFB_IMAGEBLIT
2046 ---help---
2047 Frame buffer driver for the built-in FB controller in the Samsung
2048 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2049 and the S3C64XX series such as the S3C6400 and S3C6410.
2050
2051 These chips all have the same basic framebuffer design with the
2052 actual capabilities depending on the chip. For instance the S3C6400
2053 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2054 currently only have two.
2055
2056 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2057
2058config FB_S3C_DEBUG_REGWRITE
2059 bool "Debug register writes"
2060 depends on FB_S3C
2061 ---help---
2062 Show all register writes via printk(KERN_DEBUG)
2063
Arnaud Patard20fd5762005-09-09 13:10:07 -07002064config FB_S3C2410
2065 tristate "S3C2410 LCD framebuffer support"
Kukjin Kimb130d5c2012-02-03 14:29:23 +09002066 depends on FB && ARCH_S3C24XX
Arnaud Patard20fd5762005-09-09 13:10:07 -07002067 select FB_CFB_FILLRECT
2068 select FB_CFB_COPYAREA
2069 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002070 ---help---
2071 Frame buffer driver for the built-in LCD controller in the Samsung
2072 S3C2410 processor.
2073
2074 This driver is also available as a module ( = code which can be
2075 inserted and removed from the running kernel whenever you want). The
2076 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002077 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002078
2079 If unsure, say N.
2080config FB_S3C2410_DEBUG
2081 bool "S3C2410 lcd debug messages"
2082 depends on FB_S3C2410
2083 help
2084 Turn on debugging messages. Note that you can set/unset at run time
2085 through sysfs
2086
Wang Qiang86619702010-03-10 15:21:47 -08002087config FB_NUC900
2088 bool "NUC900 LCD framebuffer support"
2089 depends on FB && ARCH_W90X900
2090 select FB_CFB_FILLRECT
2091 select FB_CFB_COPYAREA
2092 select FB_CFB_IMAGEBLIT
2093 ---help---
2094 Frame buffer driver for the built-in LCD controller in the Nuvoton
2095 NUC900 processor
2096
2097config GPM1040A0_320X240
2098 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2099 depends on FB_NUC900
2100
2101config FB_NUC900_DEBUG
2102 bool "NUC900 lcd debug messages"
2103 depends on FB_NUC900
2104 help
2105 Turn on debugging messages. Note that you can set/unset at run time
2106 through sysfs
2107
Ben Dooks5fc404e2007-02-20 13:58:21 -08002108config FB_SM501
2109 tristate "Silicon Motion SM501 framebuffer support"
2110 depends on FB && MFD_SM501
2111 select FB_CFB_FILLRECT
2112 select FB_CFB_COPYAREA
2113 select FB_CFB_IMAGEBLIT
2114 ---help---
2115 Frame buffer driver for the CRT and LCD controllers in the Silicon
2116 Motion SM501.
2117
2118 This driver is also available as a module ( = code which can be
2119 inserted and removed from the running kernel whenever you want). The
2120 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002121 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002122
2123 If unsure, say N.
2124
Steve Glendinning3c8a63e2011-08-18 15:20:07 +01002125config FB_SMSCUFX
2126 tristate "SMSC UFX6000/7000 USB Framebuffer support"
2127 depends on FB && USB
2128 select FB_MODE_HELPERS
2129 select FB_SYS_FILLRECT
2130 select FB_SYS_COPYAREA
2131 select FB_SYS_IMAGEBLIT
2132 select FB_SYS_FOPS
2133 select FB_DEFERRED_IO
2134 ---help---
2135 This is a kernel framebuffer driver for SMSC UFX USB devices.
2136 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2137 mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
2138 (USB 3.0) devices.
2139 To compile as a module, choose M here: the module name is smscufx.
2140
Paul Mundt96f8d862010-11-16 14:00:24 +09002141config FB_UDL
2142 tristate "Displaylink USB Framebuffer support"
2143 depends on FB && USB
2144 select FB_MODE_HELPERS
2145 select FB_SYS_FILLRECT
2146 select FB_SYS_COPYAREA
2147 select FB_SYS_IMAGEBLIT
2148 select FB_SYS_FOPS
2149 select FB_DEFERRED_IO
2150 ---help---
2151 This is a kernel framebuffer driver for DisplayLink USB devices.
2152 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2153 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2154 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002155
Vitaly Wool36c93662006-07-03 00:24:19 -07002156config FB_PNX4008_DUM
2157 tristate "Display Update Module support on Philips PNX4008 board"
2158 depends on FB && ARCH_PNX4008
2159 ---help---
2160 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2161
2162config FB_PNX4008_DUM_RGB
2163 tristate "RGB Framebuffer support on Philips PNX4008 board"
2164 depends on FB_PNX4008_DUM
2165 select FB_CFB_FILLRECT
2166 select FB_CFB_COPYAREA
2167 select FB_CFB_IMAGEBLIT
2168 ---help---
2169 Say Y here to enable support for PNX4008 RGB Framebuffer
2170
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002171config FB_IBM_GXT4500
2172 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002173 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002174 select FB_CFB_FILLRECT
2175 select FB_CFB_COPYAREA
2176 select FB_CFB_IMAGEBLIT
2177 ---help---
2178 Say Y here to enable support for the IBM GXT4500P display
2179 adaptor, found on some IBM System P (pSeries) machines.
2180
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002181config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002182 tristate "PS3 GPU framebuffer driver"
2183 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002184 select FB_SYS_FILLRECT
2185 select FB_SYS_COPYAREA
2186 select FB_SYS_IMAGEBLIT
2187 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002188 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002189 ---help---
2190 Include support for the virtual frame buffer in the PS3 platform.
2191
2192config FB_PS3_DEFAULT_SIZE_M
2193 int "PS3 default frame buffer size (in MiB)"
2194 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002195 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002196 ---help---
2197 This is the default size (in MiB) of the virtual frame buffer in
2198 the PS3.
2199 The default value can be overridden on the kernel command line
2200 using the "ps3fb" option (e.g. "ps3fb=9M");
2201
Andrei Konovalov147394c2007-05-08 00:40:18 -07002202config FB_XILINX
2203 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002204 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002205 select FB_CFB_FILLRECT
2206 select FB_CFB_COPYAREA
2207 select FB_CFB_IMAGEBLIT
2208 ---help---
2209 Include support for the Xilinx ML300/ML403 reference design
2210 framebuffer. ML300 carries a 640*480 LCD display on the board,
2211 ML403 uses a standard DB15 VGA connector.
2212
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002213config FB_COBALT
2214 tristate "Cobalt server LCD frame buffer support"
2215 depends on FB && MIPS_COBALT
2216
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002217config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002218 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2219 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2220 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2221 select FB_CFB_FILLRECT
2222 select FB_CFB_COPYAREA
2223 select FB_CFB_IMAGEBLIT
2224 ---help---
2225 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2226 (D)STN/TFT LCD Controller.
2227 Supports display resolutions up to 1024x1024 pixel, grayscale and
2228 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2229 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2230 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002231
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002232config FB_DA8XX
2233 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2234 depends on FB && ARCH_DAVINCI_DA8XX
2235 select FB_CFB_FILLRECT
2236 select FB_CFB_COPYAREA
2237 select FB_CFB_IMAGEBLIT
Anatolij Gustschinf4130702012-03-13 14:13:57 +01002238 select FB_CFB_REV_PIXELS_IN_BYTE
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002239 ---help---
2240 This is the frame buffer device driver for the TI LCD controller
2241 found on DA8xx/OMAP-L1xx SoCs.
2242 If unsure, say N.
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244config FB_VIRTUAL
2245 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2246 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002247 select FB_SYS_FILLRECT
2248 select FB_SYS_COPYAREA
2249 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002250 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 ---help---
2252 This is a `virtual' frame buffer device. It operates on a chunk of
2253 unswappable kernel memory instead of on the memory of a graphics
2254 board. This means you cannot see any output sent to this frame
2255 buffer device, while it does consume precious memory. The main use
2256 of this frame buffer device is testing and debugging the frame
2257 buffer subsystem. Do NOT enable it for normal systems! To protect
2258 the innocent, it has to be enabled explicitly at boot time using the
2259 kernel option `video=vfb:'.
2260
2261 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002262 module will be called vfb. In order to load it, you must use
2263 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002266
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002267config XEN_FBDEV_FRONTEND
2268 tristate "Xen virtual frame buffer support"
2269 depends on FB && XEN
2270 select FB_SYS_FILLRECT
2271 select FB_SYS_COPYAREA
2272 select FB_SYS_IMAGEBLIT
2273 select FB_SYS_FOPS
2274 select FB_DEFERRED_IO
Andrew Jones4bc25af2012-01-06 10:43:09 +01002275 select INPUT_XEN_KBDDEV_FRONTEND
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002276 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002277 default y
2278 help
2279 This driver implements the front-end of the Xen virtual
2280 frame buffer driver. It communicates with a back-end
2281 in another domain.
2282
Jaya Kumare9355082008-08-19 11:17:55 +01002283config FB_METRONOME
2284 tristate "E-Ink Metronome/8track controller support"
2285 depends on FB
2286 select FB_SYS_FILLRECT
2287 select FB_SYS_COPYAREA
2288 select FB_SYS_IMAGEBLIT
2289 select FB_SYS_FOPS
2290 select FB_DEFERRED_IO
2291 help
2292 This driver implements support for the E-Ink Metronome
2293 controller. The pre-release name for this device was 8track
2294 and could also have been called by some vendors as PVI-nnnn.
2295
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002296config FB_MB862XX
2297 tristate "Fujitsu MB862xx GDC support"
2298 depends on FB
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002299 depends on PCI || (OF && PPC)
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002300 select FB_CFB_FILLRECT
2301 select FB_CFB_COPYAREA
2302 select FB_CFB_IMAGEBLIT
2303 ---help---
2304 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2305
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002306choice
2307 prompt "GDC variant"
2308 depends on FB_MB862XX
2309
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002310config FB_MB862XX_PCI_GDC
2311 bool "Carmine/Coral-P(A) GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002312 depends on PCI
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002313 ---help---
2314 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2315 PCI graphics controller devices.
2316
2317config FB_MB862XX_LIME
2318 bool "Lime GDC"
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002319 depends on OF && PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002320 select FB_FOREIGN_ENDIAN
2321 select FB_LITTLE_ENDIAN
2322 ---help---
2323 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2324
Ben Hutchingsb9b52cf2011-05-12 12:42:17 +00002325endchoice
2326
Anatolij Gustschinf8a6b1f2011-05-24 15:19:48 +02002327config FB_MB862XX_I2C
2328 bool "Support I2C bus on MB862XX GDC"
2329 depends on FB_MB862XX && I2C
2330 default y
2331 help
2332 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2333 driver to support accessing I2C devices on controller's I2C bus.
2334 These are usually some video decoder chips.
2335
Ryan Mallon88017bd2009-09-22 16:47:09 -07002336config FB_EP93XX
2337 tristate "EP93XX frame buffer support"
2338 depends on FB && ARCH_EP93XX
2339 select FB_CFB_FILLRECT
2340 select FB_CFB_COPYAREA
2341 select FB_CFB_IMAGEBLIT
2342 ---help---
2343 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2344 This driver is also available as a module. The module will be called
2345 ep93xx-fb.
2346
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002347config FB_PRE_INIT_FB
2348 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002349 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002350 ---help---
2351 Select this option if display contents should be inherited as set by
2352 the bootloader.
2353
Pavel Machekd480ace2009-09-22 16:47:03 -07002354config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002355 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002356 depends on FB && ARCH_MSM
2357 select FB_CFB_FILLRECT
2358 select FB_CFB_COPYAREA
2359 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002360
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002361config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002362 tristate "MX3 Framebuffer support"
2363 depends on FB && MX3_IPU
2364 select FB_CFB_FILLRECT
2365 select FB_CFB_COPYAREA
2366 select FB_CFB_IMAGEBLIT
2367 default y
2368 help
2369 This is a framebuffer device for the i.MX31 LCD Controller. So
2370 far only synchronous displays are supported. If you plan to use
2371 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002372
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002373config FB_BROADSHEET
2374 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2375 depends on FB
2376 select FB_SYS_FILLRECT
2377 select FB_SYS_COPYAREA
2378 select FB_SYS_IMAGEBLIT
2379 select FB_SYS_FOPS
2380 select FB_DEFERRED_IO
2381 help
2382 This driver implements support for the E-Ink Broadsheet
2383 controller. The release name for this device was Epson S1D13521
2384 and could also have been called by other names when coupled with
2385 a bridge adapter.
2386
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002387config FB_JZ4740
2388 tristate "JZ4740 LCD framebuffer support"
2389 depends on FB && MACH_JZ4740
2390 select FB_SYS_FILLRECT
2391 select FB_SYS_COPYAREA
2392 select FB_SYS_IMAGEBLIT
2393 help
2394 Framebuffer support for the JZ4740 SoC.
2395
Sascha Hauerf0a523b2011-01-14 15:22:31 +01002396config FB_MXS
2397 tristate "MXS LCD framebuffer support"
2398 depends on FB && ARCH_MXS
2399 select FB_CFB_FILLRECT
2400 select FB_CFB_COPYAREA
2401 select FB_CFB_IMAGEBLIT
2402 help
2403 Framebuffer support for the MXS SoC.
2404
GuanXuetaoce443ab2011-02-26 21:39:10 +08002405config FB_PUV3_UNIGFX
2406 tristate "PKUnity v3 Unigfx framebuffer support"
2407 depends on FB && UNICORE32 && ARCH_PUV3
2408 select FB_SYS_FILLRECT
2409 select FB_SYS_COPYAREA
2410 select FB_SYS_IMAGEBLIT
2411 select FB_SYS_FOPS
2412 help
2413 Choose this option if you want to use the Unigfx device as a
2414 framebuffer device. Without the support of PCI & AGP.
2415
Randy Dunlapf08f3892007-10-29 14:37:16 -07002416source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002417source "drivers/video/omap2/Kconfig"
Donghwa Lee7258cc12012-02-08 12:47:39 -08002418source "drivers/video/exynos/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002419source "drivers/video/backlight/Kconfig"
Randy Dunlap179b0252007-10-16 01:29:39 -07002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421if VT
2422 source "drivers/video/console/Kconfig"
2423endif
2424
2425if FB || SGI_NEWPORT_CONSOLE
2426 source "drivers/video/logo/Kconfig"
2427endif
2428
Kuninori Morimotof363afc2012-03-20 18:27:08 -07002429config FB_SH_MOBILE_MERAM
2430 tristate "SuperH Mobile MERAM read ahead support"
2431 depends on (SUPERH || ARCH_SHMOBILE)
2432 select GENERIC_ALLOCATOR
2433 ---help---
2434 Enable MERAM support for the SuperH controller.
2435
2436 This will allow for caching of the framebuffer to provide more
2437 reliable access under heavy main memory bus traffic situations.
2438 Up to 4 memory channels can be configured, allowing 4 RGB or
2439 2 YCbCr framebuffers to be configured.
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441endmenu