blob: e0c7edf6c82bee8ce68434ca728a1cf3b2a1f454 [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
Thadeu Lima de Souza Cascardob1413352010-06-04 14:15:00 -070011config HAVE_FB_IMX
12 bool
13
Dmitry Eremin-Solenikovf00117a2011-01-12 15:19:35 +000014config SH_MIPI_DSI
15 tristate
16 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
17
18config SH_LCD_MIPI_DSI
19 bool
20
Randy Dunlap179b0252007-10-16 01:29:39 -070021source "drivers/char/agp/Kconfig"
22
Benjamin Herrenschmidtdeb2d2e2009-08-11 15:52:06 +100023source "drivers/gpu/vga/Kconfig"
24
Dave Airliec0e09202008-05-29 10:09:59 +100025source "drivers/gpu/drm/Kconfig"
Antonino A. Daplasba707102006-06-26 00:26:37 -070026
Lee, Chun-Yie26fd112010-10-20 13:51:19 +080027source "drivers/gpu/stub/Kconfig"
28
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -070029config VGASTATE
30 tristate
31 default n
32
Luming Yu23b0f012007-05-09 21:07:05 +080033config VIDEO_OUTPUT_CONTROL
34 tristate "Lowlevel video output switch controls"
Luming Yu23b0f012007-05-09 21:07:05 +080035 help
36 This framework adds support for low-level control of the video
37 output switch.
38
Randy Dunlap179b0252007-10-16 01:29:39 -070039menuconfig FB
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 tristate "Support for frame buffer devices"
41 ---help---
42 The frame buffer device provides an abstraction for the graphics
43 hardware. It represents the frame buffer of some video hardware and
44 allows application software to access the graphics hardware through
45 a well-defined interface, so the software doesn't need to know
46 anything about the low-level (hardware register) stuff.
47
48 Frame buffer devices work identically across the different
49 architectures supported by Linux and make the implementation of
50 application programs easier and more portable; at this point, an X
51 server exists which uses the frame buffer device exclusively.
52 On several non-X86 architectures, the frame buffer device is the
53 only way to use the graphics hardware.
54
55 The device is accessed through special device nodes, usually located
56 in the /dev directory, i.e. /dev/fb*.
57
58 You need an utility program called fbset to make full use of frame
59 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
60 and the Framebuffer-HOWTO at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020061 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 information.
63
64 Say Y here and to the driver for your graphics board below if you
65 are compiling a kernel for a non-x86 architecture.
66
67 If you are compiling for the x86 architecture, you can say Y if you
68 want to play with it, but it is not essential. Please note that
69 running graphical applications that directly touch the hardware
70 (e.g. an accelerated X server) and that are not frame buffer
71 device-aware may cause unexpected results. If unsure, say N.
72
James Simmonse0e34ef2007-02-10 14:15:43 +000073config FIRMWARE_EDID
74 bool "Enable firmware EDID"
75 depends on FB
76 default n
77 ---help---
78 This enables access to the EDID transferred from the firmware.
79 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
80 transfers do not work for your driver and if you are using
81 nvidiafb, i810fb or savagefb.
82
83 In general, choosing Y for this option is safe. If you
84 experience extremely long delays while booting before you get
85 something on your display, try setting this to N. Matrox cards in
86 combination with certain motherboards and monitors are known to
87 suffer from this problem.
88
Dennis Munsiefc5891c2006-10-03 01:14:42 -070089config FB_DDC
90 tristate
James Simmonse0e34ef2007-02-10 14:15:43 +000091 depends on FB
92 select I2C_ALGOBIT
93 select I2C
Dennis Munsiefc5891c2006-10-03 01:14:42 -070094 default n
95
Michal Januszewski4d31a2b2008-10-15 22:03:51 -070096config FB_BOOT_VESA_SUPPORT
97 bool
98 depends on FB
99 default n
100 ---help---
101 If true, at least one selected framebuffer driver can take advantage
102 of VESA video modes set at an early boot stage via the vga= parameter.
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104config FB_CFB_FILLRECT
105 tristate
106 depends on FB
107 default n
108 ---help---
109 Include the cfb_fillrect function for generic software rectangle
110 filling. This is used by drivers that don't provide their own
111 (accelerated) version.
112
113config FB_CFB_COPYAREA
114 tristate
115 depends on FB
116 default n
117 ---help---
118 Include the cfb_copyarea function for generic software area copying.
119 This is used by drivers that don't provide their own (accelerated)
120 version.
121
122config FB_CFB_IMAGEBLIT
123 tristate
124 depends on FB
125 default n
126 ---help---
127 Include the cfb_imageblit function for generic software image
128 blitting. This is used by drivers that don't provide their own
129 (accelerated) version.
130
Pavel Pisa779121e2007-10-16 01:29:21 -0700131config FB_CFB_REV_PIXELS_IN_BYTE
132 bool
133 depends on FB
134 default n
135 ---help---
136 Allow generic frame-buffer functions to work on displays with 1, 2
137 and 4 bits per pixel depths which has opposite order of pixels in
138 byte order to bytes in long order.
139
Antonino A. Daplas68648ed2007-05-08 00:38:57 -0700140config FB_SYS_FILLRECT
141 tristate
142 depends on FB
143 default n
144 ---help---
145 Include the sys_fillrect function for generic software rectangle
146 filling. This is used by drivers that don't provide their own
147 (accelerated) version and the framebuffer is in system RAM.
148
149config FB_SYS_COPYAREA
150 tristate
151 depends on FB
152 default n
153 ---help---
154 Include the sys_copyarea function for generic software area copying.
155 This is used by drivers that don't provide their own (accelerated)
156 version and the framebuffer is in system RAM.
157
158config FB_SYS_IMAGEBLIT
159 tristate
160 depends on FB
161 default n
162 ---help---
163 Include the sys_imageblit function for generic software image
164 blitting. This is used by drivers that don't provide their own
165 (accelerated) version and the framebuffer is in system RAM.
166
Anton Vorontsove4c690e2008-04-28 02:14:49 -0700167menuconfig FB_FOREIGN_ENDIAN
168 bool "Framebuffer foreign endianness support"
169 depends on FB
170 ---help---
171 This menu will let you enable support for the framebuffers with
172 non-native endianness (e.g. Little-Endian framebuffer on a
173 Big-Endian machine). Most probably you don't have such hardware,
174 so it's safe to say "n" here.
175
176choice
177 prompt "Choice endianness support"
178 depends on FB_FOREIGN_ENDIAN
179
180config FB_BOTH_ENDIAN
181 bool "Support for Big- and Little-Endian framebuffers"
182
183config FB_BIG_ENDIAN
184 bool "Support for Big-Endian framebuffers only"
185
186config FB_LITTLE_ENDIAN
187 bool "Support for Little-Endian framebuffers only"
188
189endchoice
190
Antonino A. Daplas09aaf262007-05-08 00:39:03 -0700191config FB_SYS_FOPS
192 tristate
193 depends on FB
194 default n
195
Alexey Charkovd6ff7d02010-11-09 02:42:39 +0300196config FB_WMT_GE_ROPS
197 tristate
198 depends on FB
199 default n
200 ---help---
201 Include functions for accelerated rectangle filling and area
202 copying using WonderMedia Graphics Engine operations.
203
Jaya Kumar60b59be2007-05-08 00:37:37 -0700204config FB_DEFERRED_IO
205 bool
206 depends on FB
Jaya Kumar60b59be2007-05-08 00:37:37 -0700207
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700208config FB_HECUBA
209 tristate
210 depends on FB
211 depends on FB_DEFERRED_IO
212
Ondrej Zajiceka2684222007-02-12 00:54:49 -0800213config FB_SVGALIB
214 tristate
215 depends on FB
216 default n
217 ---help---
218 Common utility functions useful to fbdev drivers of VGA-based
219 cards.
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221config FB_MACMODES
222 tristate
223 depends on FB
224 default n
225
Michael Hanselmann5474c122006-06-25 05:47:08 -0700226config FB_BACKLIGHT
Michael Hanselmann4b755992006-07-30 03:04:19 -0700227 bool
228 depends on FB
229 select BACKLIGHT_LCD_SUPPORT
230 select BACKLIGHT_CLASS_DEVICE
231 default n
Michael Hanselmann5474c122006-06-25 05:47:08 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233config FB_MODE_HELPERS
234 bool "Enable Video Mode Handling Helpers"
235 depends on FB
236 default n
237 ---help---
238 This enables functions for handling video modes using the
239 Generalized Timing Formula and the EDID parser. A few drivers rely
240 on this feature such as the radeonfb, rivafb, and the i810fb. If
241 your driver does not take advantage of this feature, choosing Y will
242 just increase the kernel size by about 5K.
243
244config FB_TILEBLITTING
245 bool "Enable Tile Blitting Support"
246 depends on FB
247 default n
248 ---help---
249 This enables tile blitting. Tile blitting is a drawing technique
250 where the screen is divided into rectangular sections (tiles), whereas
251 the standard blitting divides the screen into pixels. Because the
252 default drawing element is a tile, drawing functions will be passed
253 parameters in terms of number of tiles instead of number of pixels.
254 For example, to draw a single character, instead of using bitmaps,
255 an index to an array of bitmaps will be used. To clear or move a
256 rectangular section of a screen, the rectangle will be described in
257 terms of number of tiles in the x- and y-axis.
258
259 This is particularly important to one driver, matroxfb. If
260 unsure, say N.
261
Miguel Ojeda10ccaf42007-04-23 14:41:09 -0700262comment "Frame buffer hardware drivers"
James Simmonse0e34ef2007-02-10 14:15:43 +0000263 depends on FB
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265config FB_CIRRUS
266 tristate "Cirrus Logic support"
267 depends on FB && (ZORRO || PCI)
268 select FB_CFB_FILLRECT
269 select FB_CFB_COPYAREA
270 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 ---help---
272 This enables support for Cirrus Logic GD542x/543x based boards on
273 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
274
275 If you have a PCI-based system, this enables support for these
276 chips: GD-543x, GD-544x, GD-5480.
277
278 Please read the file <file:Documentation/fb/cirrusfb.txt>.
279
280 Say N unless you have such a graphics board or plan to get one
281 before you next recompile the kernel.
282
283config FB_PM2
284 tristate "Permedia2 support"
285 depends on FB && ((AMIGA && BROKEN) || PCI)
286 select FB_CFB_FILLRECT
287 select FB_CFB_COPYAREA
288 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700290 This is the frame buffer device driver for cards based on
291 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
292 The driver was tested on the following cards:
293 Diamond FireGL 1000 PRO AGP
294 ELSA Gloria Synergy PCI
295 Appian Jeronimo PRO (both heads) PCI
296 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
297 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
298 ASK Graphic Blaster Exxtreme AGP
299
300 To compile this driver as a module, choose M here: the
301 module will be called pm2fb.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303config FB_PM2_FIFO_DISCONNECT
304 bool "enable FIFO disconnect feature"
305 depends on FB_PM2 && PCI
306 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -0700307 Support the Permedia2 FIFO disconnect feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309config FB_ARMCLCD
310 tristate "ARM PrimeCell PL110 support"
311 depends on FB && ARM && ARM_AMBA
312 select FB_CFB_FILLRECT
313 select FB_CFB_COPYAREA
314 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 help
316 This framebuffer device driver is for the ARM PrimeCell PL110
317 Colour LCD controller. ARM PrimeCells provide the building
318 blocks for System on a Chip devices.
319
320 If you want to compile this as a module (=code which can be
321 inserted into and removed from the running kernel), say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500322 here and read <file:Documentation/kbuild/modules.txt>. The module
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 will be called amba-clcd.
324
Marc Singer903e2bb2006-05-16 11:41:30 +0100325choice
326
327 depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
328 prompt "LCD Panel"
329 default FB_ARMCLCD_SHARP_LQ035Q7DB02
330
331config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
332 bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
333 help
334 This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
Matt LaPlantecab00892006-10-03 22:36:44 +0200335 color QVGA, HRTFT panel. The LogicPD device includes
Marc Singer903e2bb2006-05-16 11:41:30 +0100336 an integrated HRTFT controller IC.
337 The native resolution is 240x320.
338
339config FB_ARMCLCD_SHARP_LQ057Q3DC02
340 bool "LogicPD LCD 5.7\" QVGA"
341 help
342 This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
343 color QVGA, TFT panel. The LogicPD device includes an
344 The native resolution is 320x240.
345
346config FB_ARMCLCD_SHARP_LQ64D343
347 bool "LogicPD LCD 6.4\" VGA"
348 help
349 This is an implementation of the Sharp LQ64D343, a 6.4"
350 color VGA, TFT panel. The LogicPD device includes an
351 The native resolution is 640x480.
352
353config FB_ARMCLCD_SHARP_LQ10D368
354 bool "LogicPD LCD 10.4\" VGA"
355 help
356 This is an implementation of the Sharp LQ10D368, a 10.4"
357 color VGA, TFT panel. The LogicPD device includes an
358 The native resolution is 640x480.
359
360
361config FB_ARMCLCD_SHARP_LQ121S1DG41
362 bool "LogicPD LCD 12.1\" SVGA"
363 help
364 This is an implementation of the Sharp LQ121S1DG41, a 12.1"
365 color SVGA, TFT panel. The LogicPD device includes an
366 The native resolution is 800x600.
367
368 This panel requires a clock rate may be an integer fraction
369 of the base LCDCLK frequency. The driver will select the
370 highest frequency available that is lower than the maximum
371 allowed. The panel may flicker if the clock rate is
372 slower than the recommended minimum.
373
374config FB_ARMCLCD_AUO_A070VW01_WIDE
375 bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
376 help
377 This is an implementation of the AU Optronics, a 7.0"
378 WIDE Color. The native resolution is 234x480.
379
380config FB_ARMCLCD_HITACHI
381 bool "Hitachi Wide Screen 800x480"
382 help
383 This is an implementation of the Hitachi 800x480.
384
385endchoice
386
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388config FB_ACORN
389 bool "Acorn VIDC support"
Russell King635f0252008-10-28 09:43:54 +0000390 depends on (FB = y) && ARM && ARCH_ACORN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 select FB_CFB_FILLRECT
392 select FB_CFB_COPYAREA
393 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 help
395 This is the frame buffer device driver for the Acorn VIDC graphics
396 hardware found in Acorn RISC PCs and other ARM-based machines. If
397 unsure, say N.
398
399config FB_CLPS711X
400 bool "CLPS711X LCD support"
401 depends on (FB = y) && ARM && ARCH_CLPS711X
402 select FB_CFB_FILLRECT
403 select FB_CFB_COPYAREA
404 select FB_CFB_IMAGEBLIT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800405 help
406 Say Y to enable the Framebuffer driver for the CLPS7111 and
407 EP7212 processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409config FB_SA1100
410 bool "SA-1100 LCD support"
411 depends on (FB = y) && ARM && ARCH_SA1100
412 select FB_CFB_FILLRECT
413 select FB_CFB_COPYAREA
414 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 help
416 This is a framebuffer device for the SA-1100 LCD Controller.
417 See <http://www.linux-fbdev.org/> for information on framebuffer
418 devices.
419
420 If you plan to use the LCD display with your SA-1100 system, say
421 Y here.
422
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700423config FB_IMX
Fabio Estevame3d5fb72011-01-10 09:47:41 -0200424 tristate "Freescale i.MX LCD support"
Baruch Siachf6014412010-02-17 12:33:23 +0200425 depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700426 select FB_CFB_FILLRECT
427 select FB_CFB_COPYAREA
428 select FB_CFB_IMAGEBLIT
Sascha Hauer7c2f891c2005-05-01 08:59:24 -0700429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430config FB_CYBER2000
431 tristate "CyberPro 2000/2010/5000 support"
432 depends on FB && PCI && (BROKEN || !SPARC64)
433 select FB_CFB_FILLRECT
434 select FB_CFB_COPYAREA
435 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 help
437 This enables support for the Integraphics CyberPro 20x0 and 5000
438 VGA chips used in the Rebel.com Netwinder and other machines.
439 Say Y if you have a NetWinder or a graphics card containing this
440 device, otherwise say N.
441
Ondrej Zarye5dedf82010-08-11 21:48:03 +0200442config FB_CYBER2000_DDC
443 bool "DDC for CyberPro support"
444 depends on FB_CYBER2000
445 select FB_DDC
446 default y
447 help
448 Say Y here if you want DDC support for your CyberPro graphics
449 card. This is only I2C bus support, driver does not use EDID.
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451config FB_APOLLO
452 bool
453 depends on (FB = y) && APOLLO
454 default y
455 select FB_CFB_FILLRECT
456 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458config FB_Q40
459 bool
460 depends on (FB = y) && Q40
461 default y
462 select FB_CFB_FILLRECT
463 select FB_CFB_COPYAREA
464 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466config FB_AMIGA
467 tristate "Amiga native chipset support"
468 depends on FB && AMIGA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 help
470 This is the frame buffer device driver for the builtin graphics
471 chipset found in Amigas.
472
473 To compile this driver as a module, choose M here: the
474 module will be called amifb.
475
476config FB_AMIGA_OCS
477 bool "Amiga OCS chipset support"
478 depends on FB_AMIGA
479 help
480 This enables support for the original Agnus and Denise video chips,
481 found in the Amiga 1000 and most A500's and A2000's. If you intend
482 to run Linux on any of these systems, say Y; otherwise say N.
483
484config FB_AMIGA_ECS
485 bool "Amiga ECS chipset support"
486 depends on FB_AMIGA
487 help
488 This enables support for the Enhanced Chip Set, found in later
489 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
490 you intend to run Linux on any of these systems, say Y; otherwise
491 say N.
492
493config FB_AMIGA_AGA
494 bool "Amiga AGA chipset support"
495 depends on FB_AMIGA
496 help
497 This enables support for the Advanced Graphics Architecture (also
498 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
499 and CD32. If you intend to run Linux on any of these systems, say Y;
500 otherwise say N.
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502config FB_FM2
503 bool "Amiga FrameMaster II/Rainbow II support"
504 depends on (FB = y) && ZORRO
505 select FB_CFB_FILLRECT
506 select FB_CFB_COPYAREA
507 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 help
509 This is the frame buffer device driver for the Amiga FrameMaster
510 card from BSC (exhibited 1992 but not shipped as a CBM product).
511
Jaya Kumar1154ea72005-06-21 17:17:04 -0700512config FB_ARC
513 tristate "Arc Monochrome LCD board support"
514 depends on FB && X86
Antonino A. Daplas922e6f92007-05-08 00:38:58 -0700515 select FB_SYS_FILLRECT
516 select FB_SYS_COPYAREA
517 select FB_SYS_IMAGEBLIT
Antonino A. Daplasd9a05f12007-05-08 00:39:04 -0700518 select FB_SYS_FOPS
Jaya Kumar1154ea72005-06-21 17:17:04 -0700519 help
520 This enables support for the Arc Monochrome LCD board. The board
521 is based on the KS-108 lcd controller and is typically a matrix
522 of 2*n chips. This driver was tested with a 128x64 panel. This
523 driver supports it for use with x86 SBCs through a 16 bit GPIO
Matt LaPlante09509602006-10-03 22:31:37 +0200524 interface (8 bit data, 8 bit control). If you anticipate using
Jaya Kumar1154ea72005-06-21 17:17:04 -0700525 this driver, say Y or M; otherwise say N. You must specify the
526 GPIO IO address to be used for setting control and data.
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528config FB_ATARI
529 bool "Atari native chipset support"
Michael Schmitza1005012007-05-01 22:32:39 +0200530 depends on (FB = y) && ATARI
531 select FB_CFB_FILLRECT
532 select FB_CFB_COPYAREA
533 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 help
535 This is the frame buffer device driver for the builtin graphics
536 chipset found in Ataris.
537
538config FB_OF
539 bool "Open Firmware frame buffer device support"
Stephen Rothwellbed59272007-03-04 17:04:44 +1100540 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 select FB_CFB_FILLRECT
542 select FB_CFB_COPYAREA
543 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 select FB_MACMODES
545 help
546 Say Y if you want support with Open Firmware for your graphics
547 board.
548
549config FB_CONTROL
550 bool "Apple \"control\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700551 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 select FB_CFB_FILLRECT
553 select FB_CFB_COPYAREA
554 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 select FB_MACMODES
556 help
557 This driver supports a frame buffer for the graphics adapter in the
558 Power Macintosh 7300 and others.
559
560config FB_PLATINUM
561 bool "Apple \"platinum\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700562 depends on (FB = y) && PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 select FB_CFB_FILLRECT
564 select FB_CFB_COPYAREA
565 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 select FB_MACMODES
567 help
568 This driver supports a frame buffer for the "platinum" graphics
569 adapter in some Power Macintoshes.
570
571config FB_VALKYRIE
572 bool "Apple \"valkyrie\" display support"
Olaf Heringa04b61d2006-07-30 03:03:52 -0700573 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 select FB_CFB_FILLRECT
575 select FB_CFB_COPYAREA
576 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 select FB_MACMODES
578 help
579 This driver supports a frame buffer for the "valkyrie" graphics
580 adapter in some Power Macintoshes.
581
582config FB_CT65550
583 bool "Chips 65550 display support"
Randy Dunlap0f8c02342007-11-14 16:58:45 -0800584 depends on (FB = y) && PPC32 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 select FB_CFB_FILLRECT
586 select FB_CFB_COPYAREA
587 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 help
589 This is the frame buffer device driver for the Chips & Technologies
590 65550 graphics chip in PowerBooks.
591
592config FB_ASILIANT
Randy.Dunlape65c0852005-11-07 01:00:28 -0800593 bool "Asiliant (Chips) 69000 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 depends on (FB = y) && PCI
595 select FB_CFB_FILLRECT
596 select FB_CFB_COPYAREA
597 select FB_CFB_IMAGEBLIT
Antonino A. Daplas4de0b1e2006-04-27 18:40:47 -0700598 help
599 This is the frame buffer device driver for the Asiliant 69030 chipset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601config FB_IMSTT
602 bool "IMS Twin Turbo display support"
603 depends on (FB = y) && PCI
604 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 select FB_MACMODES if PPC
606 help
607 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
608 many Macintosh and compatible computers.
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610config FB_VGA16
611 tristate "VGA 16-color graphics support"
612 depends on FB && (X86 || PPC)
613 select FB_CFB_FILLRECT
614 select FB_CFB_COPYAREA
615 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -0700616 select VGASTATE
Antonino A. Daplasd60d2d82007-05-08 00:39:12 -0700617 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 help
619 This is the frame buffer device driver for VGA 16 color graphic
620 cards. Say Y if you have such a card.
621
622 To compile this driver as a module, choose M here: the
623 module will be called vga16fb.
624
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700625config FB_BF54X_LQ043
626 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
Mike Frysingere7a05aa2008-04-28 02:15:47 -0700627 depends on FB && (BF54x) && !BF542
Michael Henneriche9fa7c42007-10-16 01:29:38 -0700628 select FB_CFB_FILLRECT
629 select FB_CFB_COPYAREA
630 select FB_CFB_IMAGEBLIT
631 help
632 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
633
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700634config FB_BFIN_T350MCQB
635 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
636 depends on FB && BLACKFIN
637 select BFIN_GPTIMERS
638 select FB_CFB_FILLRECT
639 select FB_CFB_COPYAREA
640 select FB_CFB_IMAGEBLIT
641 help
642 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
643 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
644 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
645
Michael Hennerich9cfe4a92009-12-15 16:46:21 -0800646config FB_BFIN_LQ035Q1
647 tristate "SHARP LQ035Q1DH02 TFT LCD"
648 depends on FB && BLACKFIN && SPI
649 select FB_CFB_FILLRECT
650 select FB_CFB_COPYAREA
651 select FB_CFB_IMAGEBLIT
652 select BFIN_GPTIMERS
653 help
654 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
655 the Blackfin Landscape LCD EZ-Extender Card.
656 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
657 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
658
659 To compile this driver as a module, choose M here: the
660 module will be called bfin-lq035q1-fb.
Michael Hennerich99eeed47a2008-03-10 11:44:04 -0700661
Michael Hennerichdbcc4652010-11-24 09:33:58 +0000662config FB_BF537_LQ035
663 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
664 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
665 select FB_CFB_FILLRECT
666 select FB_CFB_COPYAREA
667 select FB_CFB_IMAGEBLIT
668 select BFIN_GPTIMERS
669 help
670 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
671 attached to a BF537.
672
673 To compile this driver as a module, choose M here: the
674 module will be called bf537-lq035.
675
Michael Hennerichcffd9342010-11-24 09:33:59 +0000676config FB_BFIN_7393
677 tristate "Blackfin ADV7393 Video encoder"
678 depends on FB && BLACKFIN
679 select I2C
680 select FB_CFB_FILLRECT
681 select FB_CFB_COPYAREA
682 select FB_CFB_IMAGEBLIT
683 help
684 This is the framebuffer device for a ADV7393 video encoder
685 attached to a Blackfin on the PPI port.
686 If your Blackfin board has a ADV7393 select Y.
687
688 To compile this driver as a module, choose M here: the
689 module will be called bfin_adv7393fb.
690
691choice
692 prompt "Video mode support"
693 depends on FB_BFIN_7393
694 default NTSC
695
696config NTSC
697 bool 'NTSC 720x480'
698
699config PAL
700 bool 'PAL 720x576'
701
702config NTSC_640x480
703 bool 'NTSC 640x480 (Experimental)'
704
705config PAL_640x480
706 bool 'PAL 640x480 (Experimental)'
707
708config NTSC_YCBCR
709 bool 'NTSC 720x480 YCbCR input'
710
711config PAL_YCBCR
712 bool 'PAL 720x576 YCbCR input'
713
714endchoice
715
716choice
717 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
718 depends on (FB_BFIN_7393)
719 default ADV7393_1XMEM
720
721config ADV7393_1XMEM
722 bool 'Single'
723
724config ADV7393_2XMEM
725 bool 'Double'
726endchoice
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728config FB_STI
729 tristate "HP STI frame buffer device support"
730 depends on FB && PARISC
731 select FB_CFB_FILLRECT
732 select FB_CFB_COPYAREA
733 select FB_CFB_IMAGEBLIT
Alexander Beregalov17085a92009-04-03 13:33:32 +0000734 select STI_CONSOLE
735 select VT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 default y
737 ---help---
738 STI refers to the HP "Standard Text Interface" which is a set of
739 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
740 Enabling this option will implement the linux framebuffer device
741 using calls to the STI BIOS routines for initialisation.
742
743 If you enable this option, you will get a planar framebuffer device
744 /dev/fb which will work on the most common HP graphic cards of the
745 NGLE family, including the artist chips (in the 7xx and Bxxx series),
746 HCRX, HCRX24, CRX, CRX24 and VisEG series.
747
748 It is safe to enable this option, so you should probably say "Y".
749
750config FB_MAC
751 bool "Generic Macintosh display support"
752 depends on (FB = y) && MAC
753 select FB_CFB_FILLRECT
754 select FB_CFB_COPYAREA
755 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 select FB_MACMODES
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758config FB_HP300
759 bool
Geert Uytterhoevenad7e4842008-05-18 20:47:09 +0200760 depends on (FB = y) && DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 default y
763
764config FB_TGA
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700765 tristate "TGA/SFB+ framebuffer support"
766 depends on FB && (ALPHA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 select FB_CFB_FILLRECT
768 select FB_CFB_COPYAREA
769 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -0800770 select BITREVERSE
Maciej W. Rozycki86c6f7d2007-05-08 00:37:48 -0700771 ---help---
772 This is the frame buffer device driver for generic TGA and SFB+
773 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
774 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
775 TURBOchannel cards, also known as PMAGD-A, -B and -C.
776
777 Due to hardware limitations ZLX-E2 and E3 cards are not supported
778 for DECstation 5000/200 systems. Additionally due to firmware
779 limitations these cards may cause troubles with booting DECstation
780 5000/240 and /260 systems, but are fully supported under Linux if
781 you manage to get it going. ;-)
782
783 Say Y if you have one of those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Michal Januszewski8bdb3a22007-10-16 01:28:26 -0700785config FB_UVESA
786 tristate "Userspace VESA VGA graphics support"
787 depends on FB && CONNECTOR
788 select FB_CFB_FILLRECT
789 select FB_CFB_COPYAREA
790 select FB_CFB_IMAGEBLIT
791 select FB_MODE_HELPERS
792 help
793 This is the frame buffer driver for generic VBE 2.0 compliant
794 graphic cards. It can also take advantage of VBE 3.0 features,
795 such as refresh rate adjustment.
796
797 This driver generally provides more features than vesafb but
798 requires a userspace helper application called 'v86d'. See
799 <file:Documentation/fb/uvesafb.txt> for more information.
800
801 If unsure, say N.
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803config FB_VESA
804 bool "VESA VGA graphics support"
Brian Gerst0d078f62005-10-30 14:59:20 -0800805 depends on (FB = y) && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 select FB_CFB_FILLRECT
807 select FB_CFB_COPYAREA
808 select FB_CFB_IMAGEBLIT
Michal Januszewski4d31a2b2008-10-15 22:03:51 -0700809 select FB_BOOT_VESA_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 help
811 This is the frame buffer device driver for generic VESA 2.0
812 compliant graphic cards. The older VESA 1.2 cards are not supported.
813 You will get a boot time penguin logo at no additional cost. Please
814 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
815
Huang, Ying7c831722007-11-28 16:21:55 -0800816config FB_EFI
817 bool "EFI-based Framebuffer Support"
Edgar Hucekb64ef8a2006-08-13 23:24:16 -0700818 depends on (FB = y) && X86 && EFI
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700819 select FB_CFB_FILLRECT
820 select FB_CFB_COPYAREA
821 select FB_CFB_IMAGEBLIT
822 help
Peter Jones7c08c9a2008-10-15 22:03:43 -0700823 This is the EFI frame buffer device driver. If the firmware on
824 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
825 using the EFI framebuffer as your console.
Edgar Hucek90b4f9a2006-06-26 00:26:59 -0700826
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700827config FB_N411
828 tristate "N411 Apollo/Hecuba devkit support"
Jaya Kumaraad09e52007-05-08 00:37:43 -0700829 depends on FB && X86 && MMU
Antonino A. Daplasd6774932007-05-08 00:39:00 -0700830 select FB_SYS_FILLRECT
831 select FB_SYS_COPYAREA
832 select FB_SYS_IMAGEBLIT
Antonino A. Daplas28d45642007-05-08 00:39:06 -0700833 select FB_SYS_FOPS
Jaya Kumaraad09e52007-05-08 00:37:43 -0700834 select FB_DEFERRED_IO
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700835 select FB_HECUBA
Jaya Kumaraad09e52007-05-08 00:37:43 -0700836 help
Jaya Kumar0e27aa32008-04-28 02:15:40 -0700837 This enables support for the Apollo display controller in its
838 Hecuba form using the n411 devkit.
Jaya Kumaraad09e52007-05-08 00:37:43 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840config FB_HGA
841 tristate "Hercules mono graphics support"
842 depends on FB && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 help
844 Say Y here if you have a Hercules mono graphics card.
845
846 To compile this driver as a module, choose M here: the
847 module will be called hgafb.
848
Brent Cook529ed802010-12-31 05:56:50 +0000849 As this card technology is at least 25 years old,
850 most people will answer N here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852config FB_SGIVW
853 tristate "SGI Visual Workstation framebuffer support"
854 depends on FB && X86_VISWS
855 select FB_CFB_FILLRECT
856 select FB_CFB_COPYAREA
857 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 help
859 SGI Visual Workstation support for framebuffer graphics.
860
861config FB_GBE
862 bool "SGI Graphics Backend frame buffer support"
863 depends on (FB = y) && (SGI_IP32 || X86_VISWS)
864 select FB_CFB_FILLRECT
865 select FB_CFB_COPYAREA
866 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 help
868 This is the frame buffer device driver for SGI Graphics Backend.
869 This chip is used in SGI O2 and Visual Workstation 320/540.
870
871config FB_GBE_MEM
872 int "Video memory size in MB"
873 depends on FB_GBE
Martin Michlmayr80c410d2006-02-24 13:04:16 -0800874 default 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 help
876 This is the amount of memory reserved for the framebuffer,
877 which can be any value between 1MB and 8MB.
878
Mark Fortescue1a571982005-11-29 19:34:44 -0800879config FB_SBUS
880 bool "SBUS and UPA framebuffers"
Adrian Bunk0b57ee92005-12-22 21:03:47 -0800881 depends on (FB = y) && SPARC
Mark Fortescue1a571982005-11-29 19:34:44 -0800882 help
883 Say Y if you want support for SBUS or UPA based frame buffer device.
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885config FB_BW2
886 bool "BWtwo support"
Adrian Bunke0196302007-02-12 00:54:50 -0800887 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 select FB_CFB_FILLRECT
889 select FB_CFB_COPYAREA
890 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 help
892 This is the frame buffer device driver for the BWtwo frame buffer.
893
894config FB_CG3
895 bool "CGthree support"
Adrian Bunke0196302007-02-12 00:54:50 -0800896 depends on (FB = y) && (SPARC && FB_SBUS)
Mark Fortescue1a571982005-11-29 19:34:44 -0800897 select FB_CFB_FILLRECT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 select FB_CFB_COPYAREA
899 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 help
901 This is the frame buffer device driver for the CGthree frame buffer.
902
903config FB_CG6
904 bool "CGsix (GX,TurboGX) support"
Adrian Bunke0196302007-02-12 00:54:50 -0800905 depends on (FB = y) && (SPARC && FB_SBUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 select FB_CFB_COPYAREA
907 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 help
909 This is the frame buffer device driver for the CGsix (GX, TurboGX)
910 frame buffer.
911
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700912config FB_FFB
913 bool "Creator/Creator3D/Elite3D support"
914 depends on FB_SBUS && SPARC64
915 select FB_CFB_COPYAREA
916 select FB_CFB_IMAGEBLIT
917 help
918 This is the frame buffer device driver for the Creator, Creator3D,
919 and Elite3D graphics boards.
920
921config FB_TCX
922 bool "TCX (SS4/SS5 only) support"
923 depends on FB_SBUS
924 select FB_CFB_FILLRECT
925 select FB_CFB_COPYAREA
926 select FB_CFB_IMAGEBLIT
927 help
928 This is the frame buffer device driver for the TCX 24/8bit frame
929 buffer.
930
931config FB_CG14
932 bool "CGfourteen (SX) support"
933 depends on FB_SBUS
934 select FB_CFB_FILLRECT
935 select FB_CFB_COPYAREA
936 select FB_CFB_IMAGEBLIT
937 help
938 This is the frame buffer device driver for the CGfourteen frame
939 buffer on Desktop SPARCsystems with the SX graphics option.
940
941config FB_P9100
942 bool "P9100 (Sparcbook 3 only) support"
943 depends on FB_SBUS
944 select FB_CFB_FILLRECT
945 select FB_CFB_COPYAREA
946 select FB_CFB_IMAGEBLIT
947 help
948 This is the frame buffer device driver for the P9100 card
949 supported on Sparcbook 3 machines.
950
951config FB_LEO
952 bool "Leo (ZX) support"
953 depends on FB_SBUS
954 select FB_CFB_FILLRECT
955 select FB_CFB_COPYAREA
956 select FB_CFB_IMAGEBLIT
957 help
958 This is the frame buffer device driver for the SBUS-based Sun ZX
959 (leo) frame buffer cards.
960
961config FB_IGA
962 bool "IGA 168x display support"
David S. Millere11a6c22007-06-03 17:35:24 -0700963 depends on (FB = y) && SPARC32
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700964 select FB_CFB_FILLRECT
965 select FB_CFB_COPYAREA
966 select FB_CFB_IMAGEBLIT
967 help
968 This is the framebuffer device for the INTERGRAPHICS 1680 and
969 successor frame buffer cards.
970
971config FB_XVR500
972 bool "Sun XVR-500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700973 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700974 select FB_CFB_FILLRECT
975 select FB_CFB_COPYAREA
976 select FB_CFB_IMAGEBLIT
977 help
978 This is the framebuffer device for the Sun XVR-500 and similar
979 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200980 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700981 mostly initialized the card already. It is treated as a
982 completely dumb framebuffer device.
983
984config FB_XVR2500
985 bool "Sun XVR-2500 3DLABS Wildcat support"
David S. Millere11a6c22007-06-03 17:35:24 -0700986 depends on (FB = y) && PCI && SPARC64
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700987 select FB_CFB_FILLRECT
988 select FB_CFB_COPYAREA
989 select FB_CFB_IMAGEBLIT
990 help
991 This is the framebuffer device for the Sun XVR-2500 and similar
992 graphics cards based upon the 3DLABS Wildcat chipset. The driver
Matt LaPlante01dd2fb2007-10-20 01:34:40 +0200993 only works on sparc64 systems where the system firmware has
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -0700994 mostly initialized the card already. It is treated as a
995 completely dumb framebuffer device.
996
David S. Miller2d378b92010-03-13 16:25:03 -0800997config FB_XVR1000
998 bool "Sun XVR-1000 support"
David S. Millerf04e8792010-03-16 14:40:42 -0700999 depends on (FB = y) && SPARC64
David S. Miller2d378b92010-03-13 16:25:03 -08001000 select FB_CFB_FILLRECT
1001 select FB_CFB_COPYAREA
1002 select FB_CFB_IMAGEBLIT
1003 help
1004 This is the framebuffer device for the Sun XVR-1000 and similar
1005 graphics cards. The driver only works on sparc64 systems where
1006 the system firmware has mostly initialized the card already. It
1007 is treated as a completely dumb framebuffer device.
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009config FB_PVR2
1010 tristate "NEC PowerVR 2 display support"
1011 depends on FB && SH_DREAMCAST
1012 select FB_CFB_FILLRECT
1013 select FB_CFB_COPYAREA
1014 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 ---help---
1016 Say Y here if you have a PowerVR 2 card in your box. If you plan to
1017 run linux on your Dreamcast, you will have to say Y here.
1018 This driver may or may not work on other PowerVR 2 cards, but is
1019 totally untested. Use at your own risk. If unsure, say N.
1020
1021 To compile this driver as a module, choose M here: the
1022 module will be called pvr2fb.
1023
1024 You can pass several parameters to the driver at boot time or at
1025 module load time. The parameters look like "video=pvr2:XXX", where
1026 the meaning of XXX can be found at the end of the main source file
1027 (<file:drivers/video/pvr2fb.c>). Please see the file
1028 <file:Documentation/fb/pvr2fb.txt>.
1029
1030config FB_EPSON1355
1031 bool "Epson 1355 framebuffer support"
Paul Mundt1a3f2882007-07-17 04:05:48 -07001032 depends on (FB = y) && ARCH_CEIVA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 select FB_CFB_FILLRECT
1034 select FB_CFB_COPYAREA
1035 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 help
1037 Build in support for the SED1355 Epson Research Embedded RAMDAC
1038 LCD/CRT Controller (since redesignated as the S1D13505) as a
1039 framebuffer. Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001040 <http://vdc.epson.com/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Randy Dunlapecc41d52005-11-07 01:00:29 -08001042config FB_S1D13XXX
1043 tristate "Epson S1D13XXX framebuffer support"
1044 depends on FB
1045 select FB_CFB_FILLRECT
1046 select FB_CFB_COPYAREA
1047 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001048 help
1049 Support for S1D13XXX framebuffer device family (currently only
1050 working with S1D13806). Product specs at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001051 <http://vdc.epson.com/>
Randy Dunlapecc41d52005-11-07 01:00:29 -08001052
Nicolas Ferre14340582007-05-10 22:23:26 -07001053config FB_ATMEL
1054 tristate "AT91/AT32 LCD Controller support"
Nicolas Ferre0912e532009-06-23 16:30:56 +02001055 depends on FB && HAVE_FB_ATMEL
Nicolas Ferre14340582007-05-10 22:23:26 -07001056 select FB_CFB_FILLRECT
1057 select FB_CFB_COPYAREA
1058 select FB_CFB_IMAGEBLIT
1059 help
1060 This enables support for the AT91/AT32 LCD Controller.
1061
1062config FB_INTSRAM
1063 bool "Frame Buffer in internal SRAM"
1064 depends on FB_ATMEL && ARCH_AT91SAM9261
1065 help
1066 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
1067 to let frame buffer in external SDRAM.
1068
Nicolas Ferre250a2692007-07-21 04:37:59 -07001069config FB_ATMEL_STN
1070 bool "Use a STN display with AT91/AT32 LCD Controller"
Nicolas Ferre915190f2009-07-21 11:31:29 +01001071 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
Nicolas Ferre250a2692007-07-21 04:37:59 -07001072 default n
1073 help
1074 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1075 Controller. Say N if you want to connect a TFT.
1076
1077 If unsure, say N.
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079config FB_NVIDIA
1080 tristate "nVidia Framebuffer Support"
1081 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001082 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 select FB_MODE_HELPERS
1084 select FB_CFB_FILLRECT
1085 select FB_CFB_COPYAREA
1086 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001087 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001088 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 help
1090 This driver supports graphics boards with the nVidia chips, TNT
1091 and newer. For very old chipsets, such as the RIVA128, then use
1092 the rivafb.
1093 Say Y if you have such a graphics board.
1094
1095 To compile this driver as a module, choose M here: the
1096 module will be called nvidiafb.
1097
1098config FB_NVIDIA_I2C
1099 bool "Enable DDC Support"
Benjamin Herrenschmidt85f15032005-11-07 01:00:30 -08001100 depends on FB_NVIDIA
James Simmons166f60d2007-03-06 01:42:02 -08001101 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 help
1103 This enables I2C support for nVidia Chipsets. This is used
1104 only for getting EDID information from the attached display
1105 allowing for robust video mode handling and switching.
1106
1107 Because fbdev-2.6 requires that drivers must be able to
1108 independently validate video mode parameters, you should say Y
1109 here.
1110
Jean Delvare647f2e72007-05-10 22:23:29 -07001111config FB_NVIDIA_DEBUG
1112 bool "Lots of debug output"
1113 depends on FB_NVIDIA
1114 default n
1115 help
1116 Say Y here if you want the nVidia driver to output all sorts
1117 of debugging information to provide to the maintainer when
1118 something goes wrong.
1119
Michael Hanselmann5474c122006-06-25 05:47:08 -07001120config FB_NVIDIA_BACKLIGHT
1121 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001122 depends on FB_NVIDIA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001123 default y
1124 help
1125 Say Y here if you want to control the backlight of your display.
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127config FB_RIVA
1128 tristate "nVidia Riva support"
1129 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001130 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 select FB_MODE_HELPERS
1132 select FB_CFB_FILLRECT
1133 select FB_CFB_COPYAREA
1134 select FB_CFB_IMAGEBLIT
Akinobu Mita1c667682006-12-08 02:36:26 -08001135 select BITREVERSE
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001136 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 help
1138 This driver supports graphics boards with the nVidia Riva/Geforce
1139 chips.
1140 Say Y if you have such a graphics board.
1141
1142 To compile this driver as a module, choose M here: the
1143 module will be called rivafb.
1144
1145config FB_RIVA_I2C
1146 bool "Enable DDC Support"
1147 depends on FB_RIVA
James Simmons166f60d2007-03-06 01:42:02 -08001148 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 help
1150 This enables I2C support for nVidia Chipsets. This is used
1151 only for getting EDID information from the attached display
1152 allowing for robust video mode handling and switching.
1153
1154 Because fbdev-2.6 requires that drivers must be able to
1155 independently validate video mode parameters, you should say Y
1156 here.
1157
1158config FB_RIVA_DEBUG
Jean Delvare647f2e72007-05-10 22:23:29 -07001159 bool "Lots of debug output"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 depends on FB_RIVA
1161 default n
1162 help
1163 Say Y here if you want the Riva driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001164 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 something goes wrong.
1166
Michael Hanselmann5474c122006-06-25 05:47:08 -07001167config FB_RIVA_BACKLIGHT
1168 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001169 depends on FB_RIVA
Michael Hanselmann5474c122006-06-25 05:47:08 -07001170 default y
1171 help
1172 Say Y here if you want to control the backlight of your display.
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174config FB_I810
1175 tristate "Intel 810/815 support (EXPERIMENTAL)"
Krzysztof Helta1a5c3b2009-02-18 14:48:38 -08001176 depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 select FB_MODE_HELPERS
1178 select FB_CFB_FILLRECT
1179 select FB_CFB_COPYAREA
1180 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001181 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 help
1183 This driver supports the on-board graphics built in to the Intel 810
1184 and 815 chipsets. Say Y if you have and plan to use such a board.
1185
1186 To compile this driver as a module, choose M here: the
1187 module will be called i810fb.
1188
1189 For more information, please read
1190 <file:Documentation/fb/intel810.txt>
1191
1192config FB_I810_GTF
1193 bool "use VESA Generalized Timing Formula"
1194 depends on FB_I810
1195 help
1196 If you say Y, then the VESA standard, Generalized Timing Formula
1197 or GTF, will be used to calculate the required video timing values
1198 per video mode. Since the GTF allows nondiscrete timings
1199 (nondiscrete being a range of values as opposed to discrete being a
1200 set of values), you'll be able to use any combination of horizontal
1201 and vertical resolutions, and vertical refresh rates without having
1202 to specify your own timing parameters. This is especially useful
1203 to maximize the performance of an aging display, or if you just
1204 have a display with nonstandard dimensions. A VESA compliant
1205 monitor is recommended, but can still work with non-compliant ones.
1206 If you need or want this, then select this option. The timings may
1207 not be compliant with Intel's recommended values. Use at your own
1208 risk.
1209
1210 If you say N, the driver will revert to discrete video timings
1211 using a set recommended by Intel in their documentation.
1212
1213 If unsure, say N.
1214
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001215config FB_I810_I2C
1216 bool "Enable DDC Support"
Antonino A. Daplasdb845022005-09-13 01:25:02 -07001217 depends on FB_I810 && FB_I810_GTF
Antonino A. Daplase80987f2006-10-03 01:14:44 -07001218 select FB_DDC
Antonino A. Daplas74f6ae82005-09-09 13:10:04 -07001219 help
1220
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001221config FB_LE80578
1222 tristate "Intel LE80578 (Vermilion) support"
1223 depends on FB && PCI && X86
1224 select FB_MODE_HELPERS
1225 select FB_CFB_FILLRECT
1226 select FB_CFB_COPYAREA
1227 select FB_CFB_IMAGEBLIT
1228 help
1229 This driver supports the LE80578 (Vermilion Range) chipset
1230
1231config FB_CARILLO_RANCH
1232 tristate "Intel Carillo Ranch support"
1233 depends on FB_LE80578 && FB && PCI && X86
1234 help
1235 This driver supports the LE80578 (Carillo Ranch) board
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237config FB_INTEL
Maik Broemme0e170c72008-04-28 02:15:43 -07001238 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
David Rientjes6a108a12011-01-20 14:44:16 -08001239 depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 select FB_MODE_HELPERS
1241 select FB_CFB_FILLRECT
1242 select FB_CFB_COPYAREA
1243 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001244 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
Jesse Barnesba0ab822009-07-03 11:24:46 -07001245 depends on !DRM_I915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 help
1247 This driver supports the on-board graphics built in to the Intel
Maik Broemme0e170c72008-04-28 02:15:43 -07001248 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 Say Y if you have and plan to use such a board.
1250
Krzysztof Helt4b198282009-06-18 16:49:21 -07001251 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1252
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001253 To compile this driver as a module, choose M here: the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 module will be called intelfb.
1255
Christian Merkled463d342006-08-22 10:07:01 +10001256 For more information, please read <file:Documentation/fb/intelfb.txt>
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258config FB_INTEL_DEBUG
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001259 bool "Intel driver Debug Messages"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 depends on FB_INTEL
1261 ---help---
1262 Say Y here if you want the Intel driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001263 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 something goes wrong.
1265
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001266config FB_INTEL_I2C
1267 bool "DDC/I2C for Intel framebuffer support"
1268 depends on FB_INTEL
James Simmons166f60d2007-03-06 01:42:02 -08001269 select FB_DDC
Dennis Munsie1f6e8442006-06-20 14:55:55 -04001270 default y
1271 help
1272 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274config FB_MATROX
1275 tristate "Matrox acceleration"
1276 depends on FB && PCI
1277 select FB_CFB_FILLRECT
1278 select FB_CFB_COPYAREA
1279 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 select FB_TILEBLITTING
1281 select FB_MACMODES if PPC_PMAC
1282 ---help---
1283 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1284 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1285 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1286 Matrox G400, G450 or G550 card in your box.
1287
1288 To compile this driver as a module, choose M here: the
1289 module will be called matroxfb.
1290
1291 You can pass several parameters to the driver at boot time or at
Vicente Jiménez90a48152011-01-08 00:54:26 +00001292 module load time. The parameters look like "video=matroxfb:XXX", and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 are described in <file:Documentation/fb/matroxfb.txt>.
1294
1295config FB_MATROX_MILLENIUM
1296 bool "Millennium I/II support"
1297 depends on FB_MATROX
1298 help
1299 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1300 video card. If you select "Advanced lowlevel driver options" below,
1301 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1302 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1303 also use font widths different from 8.
1304
1305config FB_MATROX_MYSTIQUE
1306 bool "Mystique support"
1307 depends on FB_MATROX
1308 help
1309 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1310 video card. If you select "Advanced lowlevel driver options" below,
1311 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1312 packed pixel and 32 bpp packed pixel. You can also use font widths
1313 different from 8.
1314
1315config FB_MATROX_G
1316 bool "G100/G200/G400/G450/G550 support"
1317 depends on FB_MATROX
1318 ---help---
1319 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1320 video card. If you select "Advanced lowlevel driver options", you
1321 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1322 pixel and 32 bpp packed pixel. You can also use font widths
1323 different from 8.
1324
Jean Delvareee831262009-05-12 13:19:41 -07001325 If you need support for G400 secondary head, you must say Y to
1326 "Matrox I2C support" and "G400 second head support" right below.
1327 G450/G550 secondary head and digital output are supported without
1328 additional modules.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 The driver starts in monitor mode. You must use the matroxset tool
1331 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1332 swap primary and secondary head outputs, or to change output mode.
1333 Secondary head driver always start in 640x480 resolution and you
1334 must use fbset to change it.
1335
1336 Do not forget that second head supports only 16 and 32 bpp
1337 packed pixels, so it is a good idea to compile them into the kernel
1338 too. You can use only some font widths, as the driver uses generic
1339 painting procedures (the secondary head does not use acceleration
1340 engine).
1341
1342 G450/G550 hardware can display TV picture only from secondary CRTC,
1343 and it performs no scaling, so picture must have 525 or 625 lines.
1344
1345config FB_MATROX_I2C
1346 tristate "Matrox I2C support"
James Simmons166f60d2007-03-06 01:42:02 -08001347 depends on FB_MATROX
1348 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 ---help---
1350 This drivers creates I2C buses which are needed for accessing the
1351 DDC (I2C) bus present on all Matroxes, an I2C bus which
1352 interconnects Matrox optional devices, like MGA-TVO on G200 and
1353 G400, and the secondary head DDC bus, present on G400 only.
1354
1355 You can say Y or M here if you want to experiment with monitor
1356 detection code. You must say Y or M here if you want to use either
1357 second head of G400 or MGA-TVO on G200 or G400.
1358
1359 If you compile it as module, it will create a module named
1360 i2c-matroxfb.
1361
1362config FB_MATROX_MAVEN
1363 tristate "G400 second head support"
1364 depends on FB_MATROX_G && FB_MATROX_I2C
1365 ---help---
1366 WARNING !!! This support does not work with G450 !!!
1367
1368 Say Y or M here if you want to use a secondary head (meaning two
1369 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1370 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1371 secondary head output is blanked while you are in X. With XFree
1372 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1373 the fbdev driver on first head and the fbdev driver on second head.
1374
1375 If you compile it as module, two modules are created,
1376 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1377 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1378 also load i2c-matroxfb to get it to run.
1379
1380 The driver starts in monitor mode and you must use the matroxset
1381 tool (available at
1382 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1383 PAL or NTSC or to swap primary and secondary head outputs.
1384 Secondary head driver also always start in 640x480 resolution, you
1385 must use fbset to change it.
1386
1387 Also do not forget that second head supports only 16 and 32 bpp
1388 packed pixels, so it is a good idea to compile them into the kernel
1389 too. You can use only some font widths, as the driver uses generic
1390 painting procedures (the secondary head does not use acceleration
1391 engine).
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393config FB_RADEON
1394 tristate "ATI Radeon display support"
1395 depends on FB && PCI
James Simmonse0e34ef2007-02-10 14:15:43 +00001396 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 select FB_MODE_HELPERS
1398 select FB_CFB_FILLRECT
1399 select FB_CFB_COPYAREA
1400 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 select FB_MACMODES if PPC_OF
1402 help
1403 Choose this option if you want to use an ATI Radeon graphics card as
1404 a framebuffer device. There are both PCI and AGP versions. You
1405 don't need to choose this to run the Radeon in plain VGA mode.
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 There is a product page at
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001408 http://products.amd.com/en-us/GraphicCardResult.aspx
Michael Hanselmann5474c122006-06-25 05:47:08 -07001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410config FB_RADEON_I2C
1411 bool "DDC/I2C for ATI Radeon support"
1412 depends on FB_RADEON
James Simmons166f60d2007-03-06 01:42:02 -08001413 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 default y
1415 help
1416 Say Y here if you want DDC/I2C support for your Radeon board.
1417
Michael Hanselmann5474c122006-06-25 05:47:08 -07001418config FB_RADEON_BACKLIGHT
1419 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001420 depends on FB_RADEON
Michael Hanselmann5474c122006-06-25 05:47:08 -07001421 default y
1422 help
1423 Say Y here if you want to control the backlight of your display.
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425config FB_RADEON_DEBUG
1426 bool "Lots of debug output from Radeon driver"
1427 depends on FB_RADEON
1428 default n
1429 help
1430 Say Y here if you want the Radeon driver to output all sorts
Matt LaPlante09509602006-10-03 22:31:37 +02001431 of debugging information to provide to the maintainer when
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 something goes wrong.
1433
1434config FB_ATY128
1435 tristate "ATI Rage128 display support"
1436 depends on FB && PCI
1437 select FB_CFB_FILLRECT
1438 select FB_CFB_COPYAREA
1439 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001440 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 select FB_MACMODES if PPC_PMAC
1442 help
1443 This driver supports graphics boards with the ATI Rage128 chips.
1444 Say Y if you have such a graphics board and read
1445 <file:Documentation/fb/aty128fb.txt>.
1446
1447 To compile this driver as a module, choose M here: the
1448 module will be called aty128fb.
1449
Michael Hanselmann5474c122006-06-25 05:47:08 -07001450config FB_ATY128_BACKLIGHT
1451 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001452 depends on FB_ATY128
Michael Hanselmann5474c122006-06-25 05:47:08 -07001453 default y
1454 help
1455 Say Y here if you want to control the backlight of your display.
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457config FB_ATY
1458 tristate "ATI Mach64 display support" if PCI || ATARI
Andrew Mortonf2e782e2006-04-10 22:55:45 -07001459 depends on FB && !SPARC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 select FB_CFB_FILLRECT
1461 select FB_CFB_COPYAREA
1462 select FB_CFB_IMAGEBLIT
James Simmonse0e34ef2007-02-10 14:15:43 +00001463 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 select FB_MACMODES if PPC
1465 help
1466 This driver supports graphics boards with the ATI Mach64 chips.
1467 Say Y if you have such a graphics board.
1468
1469 To compile this driver as a module, choose M here: the
1470 module will be called atyfb.
1471
1472config FB_ATY_CT
1473 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1474 depends on PCI && FB_ATY
Krzysztof Helt8d74c1f2007-05-23 13:57:46 -07001475 default y if SPARC64 && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 help
1477 Say Y here to support use of ATI's 64-bit Rage boards (or other
1478 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1479 framebuffer device. The ATI product support page for these boards
Justin P. Mattock631dd1a2010-10-18 11:03:14 +02001480 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482config FB_ATY_GENERIC_LCD
1483 bool "Mach64 generic LCD support (EXPERIMENTAL)"
1484 depends on FB_ATY_CT
1485 help
1486 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1487 Rage XC, or Rage XL chipset.
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489config FB_ATY_GX
1490 bool "Mach64 GX support" if PCI
1491 depends on FB_ATY
1492 default y if ATARI
1493 help
1494 Say Y here to support use of the ATI Mach64 Graphics Expression
1495 board (or other boards based on the Mach64 GX chipset) as a
1496 framebuffer device. The ATI product support page for these boards
1497 is at
1498 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1499
Michael Hanselmann5474c122006-06-25 05:47:08 -07001500config FB_ATY_BACKLIGHT
1501 bool "Support for backlight control"
James Simmonse0e34ef2007-02-10 14:15:43 +00001502 depends on FB_ATY
Michael Hanselmann5474c122006-06-25 05:47:08 -07001503 default y
1504 help
1505 Say Y here if you want to control the backlight of your display.
1506
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001507config FB_S3
1508 tristate "S3 Trio/Virge support"
1509 depends on FB && PCI
1510 select FB_CFB_FILLRECT
1511 select FB_CFB_COPYAREA
1512 select FB_CFB_IMAGEBLIT
1513 select FB_TILEBLITTING
1514 select FB_SVGALIB
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001515 select VGASTATE
Antonino A. Daplas8db51662007-05-08 00:39:14 -07001516 select FONT_8x16 if FRAMEBUFFER_CONSOLE
Ondrej Zajiceka2684222007-02-12 00:54:49 -08001517 ---help---
1518 Driver for graphics boards with S3 Trio / S3 Virge chip.
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520config FB_SAVAGE
1521 tristate "S3 Savage support"
1522 depends on FB && PCI && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 select FB_MODE_HELPERS
1524 select FB_CFB_FILLRECT
1525 select FB_CFB_COPYAREA
1526 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001527 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 help
1529 This driver supports notebooks and computers with S3 Savage PCI/AGP
1530 chips.
1531
1532 Say Y if you have such a graphics card.
1533
1534 To compile this driver as a module, choose M here; the module
1535 will be called savagefb.
1536
1537config FB_SAVAGE_I2C
1538 bool "Enable DDC2 Support"
1539 depends on FB_SAVAGE
James Simmons166f60d2007-03-06 01:42:02 -08001540 select FB_DDC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 help
1542 This enables I2C support for S3 Savage Chipsets. This is used
1543 only for getting EDID information from the attached display
1544 allowing for robust video mode handling and switching.
1545
1546 Because fbdev-2.6 requires that drivers must be able to
1547 independently validate video mode parameters, you should say Y
1548 here.
1549
1550config FB_SAVAGE_ACCEL
1551 bool "Enable Console Acceleration"
1552 depends on FB_SAVAGE
1553 default n
1554 help
1555 This option will compile in console acceleration support. If
1556 the resulting framebuffer console has bothersome glitches, then
1557 choose N here.
1558
1559config FB_SIS
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001560 tristate "SiS/XGI display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 depends on FB && PCI
1562 select FB_CFB_FILLRECT
1563 select FB_CFB_COPYAREA
1564 select FB_CFB_IMAGEBLIT
Krzysztof Helt4b198282009-06-18 16:49:21 -07001565 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001567 This is the frame buffer device driver for the SiS 300, 315, 330
1568 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1569 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 To compile this driver as a module, choose M here; the module
1572 will be called sisfb.
1573
1574config FB_SIS_300
1575 bool "SiS 300 series support"
1576 depends on FB_SIS
1577 help
1578 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1579
1580config FB_SIS_315
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001581 bool "SiS 315/330/340 series and XGI support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 depends on FB_SIS
1583 help
Thomas Winischhofer544393f2005-09-09 13:04:45 -07001584 Say Y here to support use of the SiS 315, 330 and 340 series
1585 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1586 as XGI V3XT, V5, V8 and Z7.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001588config FB_VIA
1589 tristate "VIA UniChrome (Pro) and Chrome9 display support"
Ben Hutchings901b97d2010-07-20 00:40:16 +01001590 depends on FB && PCI && X86
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001591 select FB_CFB_FILLRECT
1592 select FB_CFB_COPYAREA
1593 select FB_CFB_IMAGEBLIT
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001594 select I2C_ALGOBIT
1595 select I2C
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001596 select GPIOLIB
Joseph Chan6bde3ed2008-10-15 22:03:20 -07001597 help
1598 This is the frame buffer device driver for Graphics chips of VIA
1599 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1600 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1601 /P4M900,VX800)
1602 Say Y if you have a VIA UniChrome graphics board.
1603
1604 To compile this driver as a module, choose M here: the
1605 module will be called viafb.
Jonathan Corbet7e0de022009-12-01 20:39:57 -07001606
Florian Tobias Schandinat2b78a962010-04-17 19:44:57 +00001607if FB_VIA
1608
1609config FB_VIA_DIRECT_PROCFS
1610 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1611 depends on FB_VIA
1612 default n
1613 help
1614 Allow direct hardware access to some output registers via procfs.
1615 This is dangerous but may provide the only chance to get the
1616 correct output device configuration.
1617 Its use is strongly discouraged.
1618
1619endif
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621config FB_NEOMAGIC
1622 tristate "NeoMagic display support"
1623 depends on FB && PCI
1624 select FB_MODE_HELPERS
1625 select FB_CFB_FILLRECT
1626 select FB_CFB_COPYAREA
1627 select FB_CFB_IMAGEBLIT
Antonino A. Daplasb2f594f2007-05-08 00:38:38 -07001628 select VGASTATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 help
1630 This driver supports notebooks with NeoMagic PCI chips.
1631 Say Y if you have such a graphics card.
1632
1633 To compile this driver as a module, choose M here: the
1634 module will be called neofb.
1635
1636config FB_KYRO
1637 tristate "IMG Kyro support"
1638 depends on FB && PCI
1639 select FB_CFB_FILLRECT
1640 select FB_CFB_COPYAREA
1641 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 help
1643 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1644 graphics board.
1645
1646 To compile this driver as a module, choose M here: the
1647 module will be called kyrofb.
1648
1649config FB_3DFX
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001650 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 depends on FB && PCI
1652 select FB_CFB_IMAGEBLIT
1653 select FB_CFB_FILLRECT
1654 select FB_CFB_COPYAREA
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001655 select FB_MODE_HELPERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 help
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001657 This driver supports graphics boards with the 3Dfx Banshee,
1658 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1659 such a graphics board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 To compile this driver as a module, choose M here: the
1662 module will be called tdfxfb.
1663
1664config FB_3DFX_ACCEL
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001665 bool "3Dfx Acceleration functions (EXPERIMENTAL)"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 depends on FB_3DFX && EXPERIMENTAL
1667 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001668 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1669 device driver with acceleration functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Krzysztof Heltfeff3882009-04-06 19:01:03 -07001671config FB_3DFX_I2C
1672 bool "Enable DDC/I2C support"
1673 depends on FB_3DFX && EXPERIMENTAL
1674 select FB_DDC
1675 default y
1676 help
1677 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679config FB_VOODOO1
1680 tristate "3Dfx Voodoo Graphics (sst1) support"
1681 depends on FB && PCI
1682 select FB_CFB_FILLRECT
1683 select FB_CFB_COPYAREA
1684 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 ---help---
1686 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1687 Voodoo2 (cvg) based graphics card.
1688
1689 To compile this driver as a module, choose M here: the
1690 module will be called sstfb.
1691
1692 WARNING: Do not use any application that uses the 3D engine
1693 (namely glide) while using this driver.
Dirk Hohndele4031492007-10-30 13:37:19 -07001694 Please read the <file:Documentation/fb/sstfb.txt> for supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 options and other important info support.
1696
Ondrej Zajicek558b7bd2007-05-09 02:35:31 -07001697config FB_VT8623
1698 tristate "VIA VT8623 support"
1699 depends on FB && PCI
1700 select FB_CFB_FILLRECT
1701 select FB_CFB_COPYAREA
1702 select FB_CFB_IMAGEBLIT
1703 select FB_TILEBLITTING
1704 select FB_SVGALIB
1705 select VGASTATE
1706 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1707 ---help---
1708 Driver for CastleRock integrated graphics core in the
1709 VIA VT8623 [Apollo CLE266] chipset.
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711config FB_TRIDENT
Krzysztof Helt04645fc2009-03-31 15:25:48 -07001712 tristate "Trident/CyberXXX/CyberBlade support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 depends on FB && PCI
1714 select FB_CFB_FILLRECT
1715 select FB_CFB_COPYAREA
1716 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 ---help---
Krzysztof Helt4edad7f2008-10-15 22:03:32 -07001718 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1719 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1720 and Blade XP.
1721 There are also integrated versions of these chips called CyberXXXX,
1722 CyberImage or CyberBlade. These chips are mostly found in laptops
Krzysztof Heltddb53d42009-03-31 15:25:40 -07001723 but also on some motherboards including early VIA EPIA motherboards.
1724 For more information, read <file:Documentation/fb/tridentfb.txt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 Say Y if you have such a graphics board.
1727
1728 To compile this driver as a module, choose M here: the
1729 module will be called tridentfb.
1730
Ondrej Zajicek681e1472007-05-09 02:35:31 -07001731config FB_ARK
1732 tristate "ARK 2000PV support"
1733 depends on FB && PCI
1734 select FB_CFB_FILLRECT
1735 select FB_CFB_COPYAREA
1736 select FB_CFB_IMAGEBLIT
1737 select FB_TILEBLITTING
1738 select FB_SVGALIB
1739 select VGASTATE
1740 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1741 ---help---
1742 Driver for PCI graphics boards with ARK 2000PV chip
1743 and ICS 5342 RAMDAC.
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745config FB_PM3
Krzysztof Heltf23a06f2007-05-10 22:23:25 -07001746 tristate "Permedia3 support (EXPERIMENTAL)"
1747 depends on FB && PCI && EXPERIMENTAL
1748 select FB_CFB_FILLRECT
1749 select FB_CFB_COPYAREA
1750 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 help
1752 This is the frame buffer device driver for the 3DLabs Permedia3
1753 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1754 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1755 and maybe other boards.
1756
Sebastian Siewior2ece5f432008-07-23 21:30:49 -07001757config FB_CARMINE
1758 tristate "Fujitsu carmine frame buffer support"
1759 depends on FB && PCI
1760 select FB_CFB_FILLRECT
1761 select FB_CFB_COPYAREA
1762 select FB_CFB_IMAGEBLIT
1763 help
1764 This is the frame buffer device driver for the Fujitsu Carmine chip.
1765 The driver provides two independent frame buffer devices.
1766
1767choice
1768 depends on FB_CARMINE
1769 prompt "DRAM timing"
1770 default FB_CARMINE_DRAM_EVAL
1771
1772config FB_CARMINE_DRAM_EVAL
1773 bool "Eval board timings"
1774 help
1775 Use timings which work on the eval card.
1776
1777config CARMINE_DRAM_CUSTOM
1778 bool "Custom board timings"
1779 help
1780 Use custom board timings.
1781endchoice
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783config FB_AU1100
1784 bool "Au1100 LCD Driver"
Ralf Baechled1709e42007-07-23 18:43:50 -07001785 depends on (FB = y) && MIPS && SOC_AU1100
1786 select FB_CFB_FILLRECT
1787 select FB_CFB_COPYAREA
1788 select FB_CFB_IMAGEBLIT
1789 help
1790 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1791 various panels and CRTs by passing in kernel cmd line option
1792 au1100fb:panel=<name>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001794config FB_AU1200
1795 bool "Au1200 LCD Driver"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001796 depends on (FB = y) && MIPS && SOC_AU1200
Ralf Baechlef95ec3c2006-03-27 01:17:27 -08001797 select FB_CFB_FILLRECT
1798 select FB_CFB_COPYAREA
1799 select FB_CFB_IMAGEBLIT
1800 help
1801 This is the framebuffer driver for the AMD Au1200 SOC. It can drive
1802 various panels and CRTs by passing in kernel cmd line option
1803 au1200fb:panel=<name>.
1804
Alexey Charkovd6ff7d02010-11-09 02:42:39 +03001805config FB_VT8500
1806 bool "VT8500 LCD Driver"
1807 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
1808 select FB_WMT_GE_ROPS
1809 select FB_SYS_IMAGEBLIT
1810 help
1811 This is the framebuffer driver for VIA VT8500 integrated LCD
1812 controller.
1813
1814config FB_WM8505
1815 bool "WM8505 frame buffer support"
1816 depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
1817 select FB_WMT_GE_ROPS
1818 select FB_SYS_IMAGEBLIT
1819 help
1820 This is the framebuffer driver for WonderMedia WM8505
1821 integrated LCD controller.
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823source "drivers/video/geode/Kconfig"
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825config FB_HIT
1826 tristate "HD64461 Frame Buffer support"
1827 depends on FB && HD64461
1828 select FB_CFB_FILLRECT
1829 select FB_CFB_COPYAREA
1830 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 help
1832 This is the frame buffer device driver for the Hitachi HD64461 LCD
1833 frame buffer card.
1834
1835config FB_PMAG_AA
1836 bool "PMAG-AA TURBOchannel framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001837 depends on (FB = y) && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 select FB_CFB_FILLRECT
1839 select FB_CFB_COPYAREA
1840 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 help
1842 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1843 used mainly in the MIPS-based DECstation series.
1844
1845config FB_PMAG_BA
Maciej W. Rozycki335dc502007-02-05 16:28:28 -08001846 tristate "PMAG-BA TURBOchannel framebuffer support"
1847 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 select FB_CFB_FILLRECT
1849 select FB_CFB_COPYAREA
1850 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 help
1852 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1853 used mainly in the MIPS-based DECstation series.
1854
1855config FB_PMAGB_B
Maciej W. Rozycki9084b002007-02-05 16:28:29 -08001856 tristate "PMAGB-B TURBOchannel framebuffer support"
Maciej W. Rozycki28ea28a2007-10-16 01:29:28 -07001857 depends on FB && TC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 select FB_CFB_FILLRECT
1859 select FB_CFB_COPYAREA
1860 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 help
1862 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1863 in the MIPS-based DECstation series. The card is currently only
1864 supported in 1280x1024x8 mode.
1865
1866config FB_MAXINE
1867 bool "Maxine (Personal DECstation) onboard framebuffer support"
Maciej W. Rozyckia9350002005-06-13 19:50:42 +00001868 depends on (FB = y) && MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 select FB_CFB_FILLRECT
1870 select FB_CFB_COPYAREA
1871 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 help
1873 Support for the onboard framebuffer (1024x768x8) in the Personal
1874 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1875 Codename "Maxine").
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877config FB_G364
Yoichi Yuasab38817d2005-07-27 11:43:28 -07001878 bool "G364 frame buffer support"
1879 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 select FB_CFB_FILLRECT
1881 select FB_CFB_COPYAREA
1882 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 help
1884 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1885 Olivetti M700-10 systems.
1886
1887config FB_68328
1888 bool "Motorola 68328 native frame buffer support"
Geert Uytterhoeven833f8062007-03-16 13:38:23 -08001889 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 select FB_CFB_FILLRECT
1891 select FB_CFB_COPYAREA
1892 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 help
1894 Say Y here if you want to support the built-in frame buffer of
1895 the Motorola 68328 CPU family.
1896
Lennert Buytenhek638772c2009-02-11 17:25:24 +08001897config FB_PXA168
1898 tristate "PXA168/910 LCD framebuffer support"
1899 depends on FB && (CPU_PXA168 || CPU_PXA910)
1900 select FB_CFB_FILLRECT
1901 select FB_CFB_COPYAREA
1902 select FB_CFB_IMAGEBLIT
1903 ---help---
1904 Frame buffer driver for the built-in LCD controller in the Marvell
1905 MMP processor.
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907config FB_PXA
1908 tristate "PXA LCD framebuffer support"
1909 depends on FB && ARCH_PXA
1910 select FB_CFB_FILLRECT
1911 select FB_CFB_COPYAREA
1912 select FB_CFB_IMAGEBLIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 ---help---
1914 Frame buffer driver for the built-in LCD controller in the Intel
1915 PXA2x0 processor.
1916
1917 This driver is also available as a module ( = code which can be
1918 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08001919 module will be called pxafb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001920 say M here and read <file:Documentation/kbuild/modules.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 If unsure, say N.
1923
Eric Miao198fc102008-12-23 17:49:43 +08001924config FB_PXA_OVERLAY
1925 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1926 default n
1927 depends on FB_PXA && (PXA27x || PXA3xx)
1928
Eric Miao3c42a442008-04-30 00:52:26 -07001929config FB_PXA_SMARTPANEL
1930 bool "PXA Smartpanel LCD support"
Eric Miao7f1133c2008-04-30 00:52:27 -07001931 default n
Eric Miao3c42a442008-04-30 00:52:26 -07001932 depends on FB_PXA
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934config FB_PXA_PARAMETERS
1935 bool "PXA LCD command line parameters"
1936 default n
1937 depends on FB_PXA
1938 ---help---
1939 Enable the use of kernel command line or module parameters
1940 to configure the physical properties of the LCD panel when
1941 using the PXA LCD driver.
1942
1943 This option allows you to override the panel parameters
1944 supplied by the platform in order to support multiple
1945 different models of flatpanel. If you will only be using a
1946 single model of flatpanel then you can safely leave this
1947 option disabled.
1948
1949 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1950
Daniel Mack364dbdf2010-11-04 14:44:00 -04001951config PXA3XX_GCU
1952 tristate "PXA3xx 2D graphics accelerator driver"
1953 depends on FB_PXA
1954 help
1955 Kernelspace driver for the 2D graphics controller unit (GCU)
1956 found on PXA3xx processors. There is a counterpart driver in the
1957 DirectFB suite, see http://www.directfb.org/
1958
1959 If you compile this as a module, it will be called pxa3xx_gcu.
1960
Mike Rapoport22caf042006-07-14 00:24:34 -07001961config FB_MBX
1962 tristate "2700G LCD framebuffer support"
1963 depends on FB && ARCH_PXA
1964 select FB_CFB_FILLRECT
1965 select FB_CFB_COPYAREA
1966 select FB_CFB_IMAGEBLIT
1967 ---help---
1968 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1969 Accelerator
1970
1971config FB_MBX_DEBUG
1972 bool "Enable debugging info via debugfs"
1973 depends on FB_MBX && DEBUG_FS
1974 default n
1975 ---help---
1976 Enable this if you want debugging information using the debug
1977 filesystem (debugfs)
1978
1979 If unsure, say N.
1980
York Sun9b53a9e2008-04-28 02:15:34 -07001981config FB_FSL_DIU
1982 tristate "Freescale DIU framebuffer support"
1983 depends on FB && FSL_SOC
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001984 select FB_MODE_HELPERS
York Sun9b53a9e2008-04-28 02:15:34 -07001985 select FB_CFB_FILLRECT
1986 select FB_CFB_COPYAREA
1987 select FB_CFB_IMAGEBLIT
1988 select PPC_LIB_RHEAP
1989 ---help---
1990 Framebuffer driver for the Freescale SoC DIU
1991
Randy Dunlapecc41d52005-11-07 01:00:29 -08001992config FB_W100
1993 tristate "W100 frame buffer support"
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07001994 depends on FB && ARCH_PXA
Randy Dunlapecc41d52005-11-07 01:00:29 -08001995 select FB_CFB_FILLRECT
1996 select FB_CFB_COPYAREA
1997 select FB_CFB_IMAGEBLIT
Randy Dunlapecc41d52005-11-07 01:00:29 -08001998 ---help---
1999 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
Philipp Zabele5dd3cb2008-07-04 09:59:52 -07002000 It can also drive the w3220 chip found on iPAQ hx4700.
Randy Dunlapecc41d52005-11-07 01:00:29 -08002001
2002 This driver is also available as a module ( = code which can be
2003 inserted and removed from the running kernel whenever you want). The
YOSHIFUJI Hideaki74b4f042006-01-09 20:53:46 -08002004 module will be called w100fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002005 say M here and read <file:Documentation/kbuild/modules.txt>.
Randy Dunlapecc41d52005-11-07 01:00:29 -08002006
2007 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002009config FB_SH_MOBILE_LCDC
2010 tristate "SuperH Mobile LCDC framebuffer support"
Magnus Damm7278a222010-03-10 11:33:10 +00002011 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Magnus Damm2540c112008-12-17 17:29:49 +09002012 select FB_SYS_FILLRECT
2013 select FB_SYS_COPYAREA
2014 select FB_SYS_IMAGEBLIT
2015 select FB_SYS_FOPS
Magnus Damm85645572008-12-19 15:34:41 +09002016 select FB_DEFERRED_IO
Guennadi Liakhovetski9fd04fe2010-05-23 14:00:43 +00002017 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
Magnus Dammcfb4f5d2008-07-23 21:31:24 -07002018 ---help---
2019 Frame buffer driver for the on-chip SH-Mobile LCD controller.
2020
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002021config FB_SH_MOBILE_HDMI
2022 tristate "SuperH Mobile HDMI controller support"
2023 depends on FB_SH_MOBILE_LCDC
2024 select FB_MODE_HELPERS
Guennadi Liakhovetski630f2d42010-10-15 08:58:00 +02002025 select SOUND
2026 select SND
Kuninori Morimoto3056c702010-09-09 16:30:18 +09002027 select SND_SOC
Guennadi Liakhovetski6011bde2010-07-21 10:13:21 +00002028 ---help---
2029 Driver for the on-chip SH-Mobile HDMI controller.
2030
Dmitry Baryshkovb53cde32008-10-15 22:03:55 -07002031config FB_TMIO
2032 tristate "Toshiba Mobile IO FrameBuffer support"
2033 depends on FB && MFD_CORE
2034 select FB_CFB_FILLRECT
2035 select FB_CFB_COPYAREA
2036 select FB_CFB_IMAGEBLIT
2037 ---help---
2038 Frame buffer driver for the Toshiba Mobile IO integrated as found
2039 on the Sharp SL-6000 series
2040
2041 This driver is also available as a module ( = code which can be
2042 inserted and removed from the running kernel whenever you want). The
2043 module will be called tmiofb. If you want to compile it as a module,
2044 say M here and read <file:Documentation/kbuild/modules.txt>.
2045
2046 If unsure, say N.
2047
2048config FB_TMIO_ACCELL
2049 bool "tmiofb acceleration"
2050 depends on FB_TMIO
2051 default y
2052
Ben Dooksec549a02009-03-31 15:25:39 -07002053config FB_S3C
2054 tristate "Samsung S3C framebuffer support"
Ben Dooks45649fd2010-08-10 18:02:30 -07002055 depends on FB && S3C_DEV_FB
Ben Dooksec549a02009-03-31 15:25:39 -07002056 select FB_CFB_FILLRECT
2057 select FB_CFB_COPYAREA
2058 select FB_CFB_IMAGEBLIT
2059 ---help---
2060 Frame buffer driver for the built-in FB controller in the Samsung
2061 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2062 and the S3C64XX series such as the S3C6400 and S3C6410.
2063
2064 These chips all have the same basic framebuffer design with the
2065 actual capabilities depending on the chip. For instance the S3C6400
2066 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2067 currently only have two.
2068
2069 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2070
2071config FB_S3C_DEBUG_REGWRITE
2072 bool "Debug register writes"
2073 depends on FB_S3C
2074 ---help---
2075 Show all register writes via printk(KERN_DEBUG)
2076
Arnaud Patard20fd5762005-09-09 13:10:07 -07002077config FB_S3C2410
2078 tristate "S3C2410 LCD framebuffer support"
2079 depends on FB && ARCH_S3C2410
2080 select FB_CFB_FILLRECT
2081 select FB_CFB_COPYAREA
2082 select FB_CFB_IMAGEBLIT
Arnaud Patard20fd5762005-09-09 13:10:07 -07002083 ---help---
2084 Frame buffer driver for the built-in LCD controller in the Samsung
2085 S3C2410 processor.
2086
2087 This driver is also available as a module ( = code which can be
2088 inserted and removed from the running kernel whenever you want). The
2089 module will be called s3c2410fb. If you want to compile it as a module,
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05002090 say M here and read <file:Documentation/kbuild/modules.txt>.
Arnaud Patard20fd5762005-09-09 13:10:07 -07002091
2092 If unsure, say N.
2093config FB_S3C2410_DEBUG
2094 bool "S3C2410 lcd debug messages"
2095 depends on FB_S3C2410
2096 help
2097 Turn on debugging messages. Note that you can set/unset at run time
2098 through sysfs
2099
Wang Qiang86619702010-03-10 15:21:47 -08002100config FB_NUC900
2101 bool "NUC900 LCD framebuffer support"
2102 depends on FB && ARCH_W90X900
2103 select FB_CFB_FILLRECT
2104 select FB_CFB_COPYAREA
2105 select FB_CFB_IMAGEBLIT
2106 ---help---
2107 Frame buffer driver for the built-in LCD controller in the Nuvoton
2108 NUC900 processor
2109
2110config GPM1040A0_320X240
2111 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2112 depends on FB_NUC900
2113
2114config FB_NUC900_DEBUG
2115 bool "NUC900 lcd debug messages"
2116 depends on FB_NUC900
2117 help
2118 Turn on debugging messages. Note that you can set/unset at run time
2119 through sysfs
2120
Ben Dooks5fc404e2007-02-20 13:58:21 -08002121config FB_SM501
2122 tristate "Silicon Motion SM501 framebuffer support"
2123 depends on FB && MFD_SM501
2124 select FB_CFB_FILLRECT
2125 select FB_CFB_COPYAREA
2126 select FB_CFB_IMAGEBLIT
2127 ---help---
2128 Frame buffer driver for the CRT and LCD controllers in the Silicon
2129 Motion SM501.
2130
2131 This driver is also available as a module ( = code which can be
2132 inserted and removed from the running kernel whenever you want). The
2133 module will be called sm501fb. If you want to compile it as a module,
Dirk Hohndele4031492007-10-30 13:37:19 -07002134 say M here and read <file:Documentation/kbuild/modules.txt>.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002135
2136 If unsure, say N.
2137
Paul Mundt96f8d862010-11-16 14:00:24 +09002138config FB_UDL
2139 tristate "Displaylink USB Framebuffer support"
2140 depends on FB && USB
2141 select FB_MODE_HELPERS
2142 select FB_SYS_FILLRECT
2143 select FB_SYS_COPYAREA
2144 select FB_SYS_IMAGEBLIT
2145 select FB_SYS_FOPS
2146 select FB_DEFERRED_IO
2147 ---help---
2148 This is a kernel framebuffer driver for DisplayLink USB devices.
2149 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2150 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2151 To compile as a module, choose M here: the module name is udlfb.
Ben Dooks5fc404e2007-02-20 13:58:21 -08002152
Vitaly Wool36c93662006-07-03 00:24:19 -07002153config FB_PNX4008_DUM
2154 tristate "Display Update Module support on Philips PNX4008 board"
2155 depends on FB && ARCH_PNX4008
2156 ---help---
2157 Say Y here to enable support for PNX4008 Display Update Module (DUM)
2158
2159config FB_PNX4008_DUM_RGB
2160 tristate "RGB Framebuffer support on Philips PNX4008 board"
2161 depends on FB_PNX4008_DUM
2162 select FB_CFB_FILLRECT
2163 select FB_CFB_COPYAREA
2164 select FB_CFB_IMAGEBLIT
2165 ---help---
2166 Say Y here to enable support for PNX4008 RGB Framebuffer
2167
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002168config FB_IBM_GXT4500
2169 tristate "Framebuffer support for IBM GXT4500P adaptor"
Randy Dunlap0058f472007-10-16 01:29:35 -07002170 depends on FB && PPC
Paul Mackerrasa3d89982006-12-10 02:20:42 -08002171 select FB_CFB_FILLRECT
2172 select FB_CFB_COPYAREA
2173 select FB_CFB_IMAGEBLIT
2174 ---help---
2175 Say Y here to enable support for the IBM GXT4500P display
2176 adaptor, found on some IBM System P (pSeries) machines.
2177
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002178config FB_PS3
Geert Uytterhoeven9e6b99b2007-06-16 08:05:38 +10002179 tristate "PS3 GPU framebuffer driver"
2180 depends on FB && PS3_PS3AV
Geert Uytterhoeven92c45792007-05-23 13:57:50 -07002181 select FB_SYS_FILLRECT
2182 select FB_SYS_COPYAREA
2183 select FB_SYS_IMAGEBLIT
2184 select FB_SYS_FOPS
Geert Uytterhoeven23e9c942007-07-21 04:37:49 -07002185 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002186 ---help---
2187 Include support for the virtual frame buffer in the PS3 platform.
2188
2189config FB_PS3_DEFAULT_SIZE_M
2190 int "PS3 default frame buffer size (in MiB)"
2191 depends on FB_PS3
Geert Uytterhoeven50b25292007-07-21 04:37:50 -07002192 default 9
Geert Uytterhoeven310d8c12007-02-12 00:55:23 -08002193 ---help---
2194 This is the default size (in MiB) of the virtual frame buffer in
2195 the PS3.
2196 The default value can be overridden on the kernel command line
2197 using the "ps3fb" option (e.g. "ps3fb=9M");
2198
Andrei Konovalov147394c2007-05-08 00:40:18 -07002199config FB_XILINX
2200 tristate "Xilinx frame buffer support"
Michal Simek6fa612b2009-05-11 15:49:12 +02002201 depends on FB && (XILINX_VIRTEX || MICROBLAZE)
Andrei Konovalov147394c2007-05-08 00:40:18 -07002202 select FB_CFB_FILLRECT
2203 select FB_CFB_COPYAREA
2204 select FB_CFB_IMAGEBLIT
2205 ---help---
2206 Include support for the Xilinx ML300/ML403 reference design
2207 framebuffer. ML300 carries a 640*480 LCD display on the board,
2208 ML403 uses a standard DB15 VGA connector.
2209
Yoichi Yuasa5abe3b42008-07-23 21:31:40 -07002210config FB_COBALT
2211 tristate "Cobalt server LCD frame buffer support"
2212 depends on FB && MIPS_COBALT
2213
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002214config FB_SH7760
Nobuhiro Iwamatsu5c72f302008-11-21 14:35:29 +09002215 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2216 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2217 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2218 select FB_CFB_FILLRECT
2219 select FB_CFB_COPYAREA
2220 select FB_CFB_IMAGEBLIT
2221 ---help---
2222 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2223 (D)STN/TFT LCD Controller.
2224 Supports display resolutions up to 1024x1024 pixel, grayscale and
2225 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2226 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2227 panels <= 320 pixel horizontal resolution.
Nobuhiro Iwamatsu4a25e412008-07-23 21:31:46 -07002228
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07002229config FB_DA8XX
2230 tristate "DA8xx/OMAP-L1xx Framebuffer support"
2231 depends on FB && ARCH_DAVINCI_DA8XX
2232 select FB_CFB_FILLRECT
2233 select FB_CFB_COPYAREA
2234 select FB_CFB_IMAGEBLIT
2235 ---help---
2236 This is the frame buffer device driver for the TI LCD controller
2237 found on DA8xx/OMAP-L1xx SoCs.
2238 If unsure, say N.
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240config FB_VIRTUAL
2241 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2242 depends on FB
Antonino A. Daplas87b48842007-05-08 00:39:01 -07002243 select FB_SYS_FILLRECT
2244 select FB_SYS_COPYAREA
2245 select FB_SYS_IMAGEBLIT
Antonino A. Daplas52102c02007-05-08 00:39:07 -07002246 select FB_SYS_FOPS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 ---help---
2248 This is a `virtual' frame buffer device. It operates on a chunk of
2249 unswappable kernel memory instead of on the memory of a graphics
2250 board. This means you cannot see any output sent to this frame
2251 buffer device, while it does consume precious memory. The main use
2252 of this frame buffer device is testing and debugging the frame
2253 buffer subsystem. Do NOT enable it for normal systems! To protect
2254 the innocent, it has to be enabled explicitly at boot time using the
2255 kernel option `video=vfb:'.
2256
2257 To compile this driver as a module, choose M here: the
Mike Frysinger66cf7512006-10-03 01:14:41 -07002258 module will be called vfb. In order to load it, you must use
2259 the vfb_enable=1 option.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
2261 If unsure, say N.
James Simmonse0e34ef2007-02-10 14:15:43 +00002262
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002263config XEN_FBDEV_FRONTEND
2264 tristate "Xen virtual frame buffer support"
2265 depends on FB && XEN
2266 select FB_SYS_FILLRECT
2267 select FB_SYS_COPYAREA
2268 select FB_SYS_IMAGEBLIT
2269 select FB_SYS_FOPS
2270 select FB_DEFERRED_IO
Konrad Rzeszutek Wilkba69ea42009-10-08 13:23:08 -04002271 select XEN_XENBUS_FRONTEND
Markus Armbruster4ee36dc2008-04-02 10:54:07 -07002272 default y
2273 help
2274 This driver implements the front-end of the Xen virtual
2275 frame buffer driver. It communicates with a back-end
2276 in another domain.
2277
Jaya Kumare9355082008-08-19 11:17:55 +01002278config FB_METRONOME
2279 tristate "E-Ink Metronome/8track controller support"
2280 depends on FB
2281 select FB_SYS_FILLRECT
2282 select FB_SYS_COPYAREA
2283 select FB_SYS_IMAGEBLIT
2284 select FB_SYS_FOPS
2285 select FB_DEFERRED_IO
2286 help
2287 This driver implements support for the E-Ink Metronome
2288 controller. The pre-release name for this device was 8track
2289 and could also have been called by some vendors as PVI-nnnn.
2290
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002291config FB_MB862XX
2292 tristate "Fujitsu MB862xx GDC support"
2293 depends on FB
2294 select FB_CFB_FILLRECT
2295 select FB_CFB_COPYAREA
2296 select FB_CFB_IMAGEBLIT
2297 ---help---
2298 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2299
2300config FB_MB862XX_PCI_GDC
2301 bool "Carmine/Coral-P(A) GDC"
2302 depends on PCI && FB_MB862XX
2303 ---help---
2304 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2305 PCI graphics controller devices.
2306
2307config FB_MB862XX_LIME
2308 bool "Lime GDC"
2309 depends on FB_MB862XX
2310 depends on OF && !FB_MB862XX_PCI_GDC
Julian Calaby336e7472009-06-16 15:34:29 -07002311 depends on PPC
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002312 select FB_FOREIGN_ENDIAN
2313 select FB_LITTLE_ENDIAN
2314 ---help---
2315 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2316
Ryan Mallon88017bd2009-09-22 16:47:09 -07002317config FB_EP93XX
2318 tristate "EP93XX frame buffer support"
2319 depends on FB && ARCH_EP93XX
2320 select FB_CFB_FILLRECT
2321 select FB_CFB_COPYAREA
2322 select FB_CFB_IMAGEBLIT
2323 ---help---
2324 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2325 This driver is also available as a module. The module will be called
2326 ep93xx-fb.
2327
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002328config FB_PRE_INIT_FB
2329 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
Guennadi Liakhovetski93f40e62009-11-11 14:26:47 -08002330 depends on FB && FB_MB862XX_LIME
Anatolij Gustschin17a12172008-11-06 12:53:29 -08002331 ---help---
2332 Select this option if display contents should be inherited as set by
2333 the bootloader.
2334
Pavel Machekd480ace2009-09-22 16:47:03 -07002335config FB_MSM
Pavel Machek4e00dc72009-12-08 11:10:28 -08002336 tristate "MSM Framebuffer support"
Pavel Machekd480ace2009-09-22 16:47:03 -07002337 depends on FB && ARCH_MSM
2338 select FB_CFB_FILLRECT
2339 select FB_CFB_COPYAREA
2340 select FB_CFB_IMAGEBLIT
Pavel Machekd480ace2009-09-22 16:47:03 -07002341
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002342config FB_MX3
Guennadi Liakhovetski6e1588c2009-02-26 21:34:28 +01002343 tristate "MX3 Framebuffer support"
2344 depends on FB && MX3_IPU
2345 select FB_CFB_FILLRECT
2346 select FB_CFB_COPYAREA
2347 select FB_CFB_IMAGEBLIT
2348 default y
2349 help
2350 This is a framebuffer device for the i.MX31 LCD Controller. So
2351 far only synchronous displays are supported. If you plan to use
2352 an LCD display with your i.MX31 system, say Y here.
Guennadi Liakhovetski86528da2009-01-21 10:32:34 -07002353
Jaya Kumar0d4ff4d2009-01-01 17:49:19 +01002354config FB_BROADSHEET
2355 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2356 depends on FB
2357 select FB_SYS_FILLRECT
2358 select FB_SYS_COPYAREA
2359 select FB_SYS_IMAGEBLIT
2360 select FB_SYS_FOPS
2361 select FB_DEFERRED_IO
2362 help
2363 This driver implements support for the E-Ink Broadsheet
2364 controller. The release name for this device was Epson S1D13521
2365 and could also have been called by other names when coupled with
2366 a bridge adapter.
2367
Lars-Peter Clausen7a92d542010-07-17 11:14:34 +00002368config FB_JZ4740
2369 tristate "JZ4740 LCD framebuffer support"
2370 depends on FB && MACH_JZ4740
2371 select FB_SYS_FILLRECT
2372 select FB_SYS_COPYAREA
2373 select FB_SYS_IMAGEBLIT
2374 help
2375 Framebuffer support for the JZ4740 SoC.
2376
Randy Dunlapf08f3892007-10-29 14:37:16 -07002377source "drivers/video/omap/Kconfig"
Tomi Valkeinenafedec12009-08-07 12:01:55 +03002378source "drivers/video/omap2/Kconfig"
Randy Dunlap0058f472007-10-16 01:29:35 -07002379
Randy Dunlap179b0252007-10-16 01:29:39 -07002380source "drivers/video/backlight/Kconfig"
2381source "drivers/video/display/Kconfig"
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383if VT
2384 source "drivers/video/console/Kconfig"
2385endif
2386
2387if FB || SGI_NEWPORT_CONSOLE
2388 source "drivers/video/logo/Kconfig"
2389endif
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391endmenu