blob: 6f451ad34afcf7561b92fab8e535e20a79eb24a8 [file] [log] [blame]
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02001#
2# fbdev configuration
3#
4
5menuconfig FB
6 tristate "Support for frame buffer devices"
7 ---help---
8 The frame buffer device provides an abstraction for the graphics
9 hardware. It represents the frame buffer of some video hardware and
10 allows application software to access the graphics hardware through
11 a well-defined interface, so the software doesn't need to know
12 anything about the low-level (hardware register) stuff.
13
14 Frame buffer devices work identically across the different
15 architectures supported by Linux and make the implementation of
16 application programs easier and more portable; at this point, an X
17 server exists which uses the frame buffer device exclusively.
18 On several non-X86 architectures, the frame buffer device is the
19 only way to use the graphics hardware.
20
21 The device is accessed through special device nodes, usually located
22 in the /dev directory, i.e. /dev/fb*.
23
24 You need an utility program called fbset to make full use of frame
25 buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
26 and the Framebuffer-HOWTO at
27 <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
28 information.
29
30 Say Y here and to the driver for your graphics board below if you
31 are compiling a kernel for a non-x86 architecture.
32
33 If you are compiling for the x86 architecture, you can say Y if you
34 want to play with it, but it is not essential. Please note that
35 running graphical applications that directly touch the hardware
36 (e.g. an accelerated X server) and that are not frame buffer
37 device-aware may cause unexpected results. If unsure, say N.
38
39config FIRMWARE_EDID
40 bool "Enable firmware EDID"
41 depends on FB
42 default n
43 ---help---
44 This enables access to the EDID transferred from the firmware.
45 On the i386, this is from the Video BIOS. Enable this if DDC/I2C
46 transfers do not work for your driver and if you are using
47 nvidiafb, i810fb or savagefb.
48
49 In general, choosing Y for this option is safe. If you
50 experience extremely long delays while booting before you get
51 something on your display, try setting this to N. Matrox cards in
52 combination with certain motherboards and monitors are known to
53 suffer from this problem.
54
55config FB_DDC
56 tristate
57 depends on FB
58 select I2C_ALGOBIT
59 select I2C
60 default n
61
62config FB_BOOT_VESA_SUPPORT
63 bool
64 depends on FB
65 default n
66 ---help---
67 If true, at least one selected framebuffer driver can take advantage
68 of VESA video modes set at an early boot stage via the vga= parameter.
69
70config FB_CFB_FILLRECT
71 tristate
72 depends on FB
73 default n
74 ---help---
75 Include the cfb_fillrect function for generic software rectangle
76 filling. This is used by drivers that don't provide their own
77 (accelerated) version.
78
79config FB_CFB_COPYAREA
80 tristate
81 depends on FB
82 default n
83 ---help---
84 Include the cfb_copyarea function for generic software area copying.
85 This is used by drivers that don't provide their own (accelerated)
86 version.
87
88config FB_CFB_IMAGEBLIT
89 tristate
90 depends on FB
91 default n
92 ---help---
93 Include the cfb_imageblit function for generic software image
94 blitting. This is used by drivers that don't provide their own
95 (accelerated) version.
96
97config FB_CFB_REV_PIXELS_IN_BYTE
98 bool
99 depends on FB
100 default n
101 ---help---
102 Allow generic frame-buffer functions to work on displays with 1, 2
103 and 4 bits per pixel depths which has opposite order of pixels in
104 byte order to bytes in long order.
105
106config FB_SYS_FILLRECT
107 tristate
108 depends on FB
109 default n
110 ---help---
111 Include the sys_fillrect function for generic software rectangle
112 filling. This is used by drivers that don't provide their own
113 (accelerated) version and the framebuffer is in system RAM.
114
115config FB_SYS_COPYAREA
116 tristate
117 depends on FB
118 default n
119 ---help---
120 Include the sys_copyarea function for generic software area copying.
121 This is used by drivers that don't provide their own (accelerated)
122 version and the framebuffer is in system RAM.
123
124config FB_SYS_IMAGEBLIT
125 tristate
126 depends on FB
127 default n
128 ---help---
129 Include the sys_imageblit function for generic software image
130 blitting. This is used by drivers that don't provide their own
131 (accelerated) version and the framebuffer is in system RAM.
132
133menuconfig FB_FOREIGN_ENDIAN
134 bool "Framebuffer foreign endianness support"
135 depends on FB
136 ---help---
137 This menu will let you enable support for the framebuffers with
138 non-native endianness (e.g. Little-Endian framebuffer on a
139 Big-Endian machine). Most probably you don't have such hardware,
140 so it's safe to say "n" here.
141
142choice
143 prompt "Choice endianness support"
144 depends on FB_FOREIGN_ENDIAN
145
146config FB_BOTH_ENDIAN
147 bool "Support for Big- and Little-Endian framebuffers"
148
149config FB_BIG_ENDIAN
150 bool "Support for Big-Endian framebuffers only"
151
152config FB_LITTLE_ENDIAN
153 bool "Support for Little-Endian framebuffers only"
154
155endchoice
156
157config FB_SYS_FOPS
158 tristate
159 depends on FB
160 default n
161
162config FB_DEFERRED_IO
163 bool
164 depends on FB
165
166config FB_HECUBA
167 tristate
168 depends on FB
169 depends on FB_DEFERRED_IO
170
171config FB_SVGALIB
172 tristate
173 depends on FB
174 default n
175 ---help---
176 Common utility functions useful to fbdev drivers of VGA-based
177 cards.
178
179config FB_MACMODES
180 tristate
181 depends on FB
182 default n
183
184config FB_BACKLIGHT
185 bool
186 depends on FB
187 select BACKLIGHT_LCD_SUPPORT
188 select BACKLIGHT_CLASS_DEVICE
189 default n
190
191config FB_MODE_HELPERS
192 bool "Enable Video Mode Handling Helpers"
193 depends on FB
194 default n
195 ---help---
196 This enables functions for handling video modes using the
197 Generalized Timing Formula and the EDID parser. A few drivers rely
198 on this feature such as the radeonfb, rivafb, and the i810fb. If
199 your driver does not take advantage of this feature, choosing Y will
200 just increase the kernel size by about 5K.
201
202config FB_TILEBLITTING
203 bool "Enable Tile Blitting Support"
204 depends on FB
205 default n
206 ---help---
207 This enables tile blitting. Tile blitting is a drawing technique
208 where the screen is divided into rectangular sections (tiles), whereas
209 the standard blitting divides the screen into pixels. Because the
210 default drawing element is a tile, drawing functions will be passed
211 parameters in terms of number of tiles instead of number of pixels.
212 For example, to draw a single character, instead of using bitmaps,
213 an index to an array of bitmaps will be used. To clear or move a
214 rectangular section of a screen, the rectangle will be described in
215 terms of number of tiles in the x- and y-axis.
216
217 This is particularly important to one driver, matroxfb. If
218 unsure, say N.
219
220comment "Frame buffer hardware drivers"
221 depends on FB
222
223config FB_GRVGA
224 tristate "Aeroflex Gaisler framebuffer support"
225 depends on FB && SPARC
226 select FB_CFB_FILLRECT
227 select FB_CFB_COPYAREA
228 select FB_CFB_IMAGEBLIT
229 ---help---
230 This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
231
232config FB_CIRRUS
233 tristate "Cirrus Logic support"
234 depends on FB && (ZORRO || PCI)
235 select FB_CFB_FILLRECT
236 select FB_CFB_COPYAREA
237 select FB_CFB_IMAGEBLIT
238 ---help---
239 This enables support for Cirrus Logic GD542x/543x based boards on
240 Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
241
242 If you have a PCI-based system, this enables support for these
243 chips: GD-543x, GD-544x, GD-5480.
244
245 Please read the file <file:Documentation/fb/cirrusfb.txt>.
246
247 Say N unless you have such a graphics board or plan to get one
248 before you next recompile the kernel.
249
250config FB_PM2
251 tristate "Permedia2 support"
252 depends on FB && ((AMIGA && BROKEN) || PCI)
253 select FB_CFB_FILLRECT
254 select FB_CFB_COPYAREA
255 select FB_CFB_IMAGEBLIT
256 help
257 This is the frame buffer device driver for cards based on
258 the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
259 The driver was tested on the following cards:
260 Diamond FireGL 1000 PRO AGP
261 ELSA Gloria Synergy PCI
262 Appian Jeronimo PRO (both heads) PCI
263 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
264 Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
265 ASK Graphic Blaster Exxtreme AGP
266
267 To compile this driver as a module, choose M here: the
268 module will be called pm2fb.
269
270config FB_PM2_FIFO_DISCONNECT
271 bool "enable FIFO disconnect feature"
272 depends on FB_PM2 && PCI
273 help
274 Support the Permedia2 FIFO disconnect feature.
275
276config FB_ARMCLCD
277 tristate "ARM PrimeCell PL110 support"
278 depends on ARM || ARM64 || COMPILE_TEST
279 depends on FB && ARM_AMBA
280 select FB_CFB_FILLRECT
281 select FB_CFB_COPYAREA
282 select FB_CFB_IMAGEBLIT
Pawel Molld10715b2014-06-24 12:55:11 +0100283 select VIDEOMODE_HELPERS if OF
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200284 help
285 This framebuffer device driver is for the ARM PrimeCell PL110
286 Colour LCD controller. ARM PrimeCells provide the building
287 blocks for System on a Chip devices.
288
289 If you want to compile this as a module (=code which can be
290 inserted into and removed from the running kernel), say M
291 here and read <file:Documentation/kbuild/modules.txt>. The module
292 will be called amba-clcd.
293
294config FB_ACORN
295 bool "Acorn VIDC support"
296 depends on (FB = y) && ARM && ARCH_ACORN
297 select FB_CFB_FILLRECT
298 select FB_CFB_COPYAREA
299 select FB_CFB_IMAGEBLIT
300 help
301 This is the frame buffer device driver for the Acorn VIDC graphics
302 hardware found in Acorn RISC PCs and other ARM-based machines. If
303 unsure, say N.
304
Alexander Shiyanef74d462014-06-19 20:20:43 +0400305config FB_CLPS711X_OLD
Alexander Shiyan6471b302014-06-28 10:34:05 +0400306 tristate
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200307 select FB_CFB_FILLRECT
308 select FB_CFB_COPYAREA
309 select FB_CFB_IMAGEBLIT
Alexander Shiyanef74d462014-06-19 20:20:43 +0400310
311config FB_CLPS711X
312 tristate "CLPS711X LCD support"
313 depends on FB && (ARCH_CLPS711X || COMPILE_TEST)
314 select FB_CLPS711X_OLD if ARCH_CLPS711X && !ARCH_MULTIPLATFORM
315 select BACKLIGHT_LCD_SUPPORT
316 select FB_MODE_HELPERS
317 select FB_SYS_FILLRECT
318 select FB_SYS_COPYAREA
319 select FB_SYS_IMAGEBLIT
320 select LCD_CLASS_DEVICE
321 select VIDEOMODE_HELPERS
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200322 help
Alexander Shiyanef74d462014-06-19 20:20:43 +0400323 Say Y to enable the Framebuffer driver for the Cirrus Logic
324 CLPS711X CPUs.
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200325
326config FB_SA1100
327 bool "SA-1100 LCD support"
328 depends on (FB = y) && ARM && ARCH_SA1100
329 select FB_CFB_FILLRECT
330 select FB_CFB_COPYAREA
331 select FB_CFB_IMAGEBLIT
332 help
333 This is a framebuffer device for the SA-1100 LCD Controller.
334 See <http://www.linux-fbdev.org/> for information on framebuffer
335 devices.
336
337 If you plan to use the LCD display with your SA-1100 system, say
338 Y here.
339
340config FB_IMX
341 tristate "Freescale i.MX1/21/25/27 LCD support"
342 depends on FB && ARCH_MXC
343 select BACKLIGHT_LCD_SUPPORT
344 select LCD_CLASS_DEVICE
345 select FB_CFB_FILLRECT
346 select FB_CFB_COPYAREA
347 select FB_CFB_IMAGEBLIT
348 select FB_MODE_HELPERS
349 select VIDEOMODE_HELPERS
350
351config FB_CYBER2000
352 tristate "CyberPro 2000/2010/5000 support"
353 depends on FB && PCI && (BROKEN || !SPARC64)
354 select FB_CFB_FILLRECT
355 select FB_CFB_COPYAREA
356 select FB_CFB_IMAGEBLIT
357 help
358 This enables support for the Integraphics CyberPro 20x0 and 5000
359 VGA chips used in the Rebel.com Netwinder and other machines.
360 Say Y if you have a NetWinder or a graphics card containing this
361 device, otherwise say N.
362
363config FB_CYBER2000_DDC
364 bool "DDC for CyberPro support"
365 depends on FB_CYBER2000
366 select FB_DDC
367 default y
368 help
369 Say Y here if you want DDC support for your CyberPro graphics
370 card. This is only I2C bus support, driver does not use EDID.
371
372config FB_CYBER2000_I2C
373 bool "CyberPro 2000/2010/5000 I2C support"
374 depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
Arnd Bergmannf7200b62014-04-24 13:28:19 +0100375 depends on I2C=y || FB_CYBER2000=m
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200376 select I2C_ALGOBIT
377 help
378 Enable support for the I2C video decoder interface on the
379 Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
380 on the Netwinder machines for the SAA7111 video capture.
381
382config FB_APOLLO
383 bool
384 depends on (FB = y) && APOLLO
385 default y
386 select FB_CFB_FILLRECT
387 select FB_CFB_IMAGEBLIT
388
389config FB_Q40
390 bool
391 depends on (FB = y) && Q40
392 default y
393 select FB_CFB_FILLRECT
394 select FB_CFB_COPYAREA
395 select FB_CFB_IMAGEBLIT
396
397config FB_AMIGA
398 tristate "Amiga native chipset support"
399 depends on FB && AMIGA
400 help
401 This is the frame buffer device driver for the builtin graphics
402 chipset found in Amigas.
403
404 To compile this driver as a module, choose M here: the
405 module will be called amifb.
406
407config FB_AMIGA_OCS
408 bool "Amiga OCS chipset support"
409 depends on FB_AMIGA
410 help
411 This enables support for the original Agnus and Denise video chips,
412 found in the Amiga 1000 and most A500's and A2000's. If you intend
413 to run Linux on any of these systems, say Y; otherwise say N.
414
415config FB_AMIGA_ECS
416 bool "Amiga ECS chipset support"
417 depends on FB_AMIGA
418 help
419 This enables support for the Enhanced Chip Set, found in later
420 A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
421 you intend to run Linux on any of these systems, say Y; otherwise
422 say N.
423
424config FB_AMIGA_AGA
425 bool "Amiga AGA chipset support"
426 depends on FB_AMIGA
427 help
428 This enables support for the Advanced Graphics Architecture (also
429 known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
430 and CD32. If you intend to run Linux on any of these systems, say Y;
431 otherwise say N.
432
433config FB_FM2
434 bool "Amiga FrameMaster II/Rainbow II support"
435 depends on (FB = y) && ZORRO
436 select FB_CFB_FILLRECT
437 select FB_CFB_COPYAREA
438 select FB_CFB_IMAGEBLIT
439 help
440 This is the frame buffer device driver for the Amiga FrameMaster
441 card from BSC (exhibited 1992 but not shipped as a CBM product).
442
443config FB_ARC
444 tristate "Arc Monochrome LCD board support"
445 depends on FB && X86
446 select FB_SYS_FILLRECT
447 select FB_SYS_COPYAREA
448 select FB_SYS_IMAGEBLIT
449 select FB_SYS_FOPS
450 help
451 This enables support for the Arc Monochrome LCD board. The board
452 is based on the KS-108 lcd controller and is typically a matrix
453 of 2*n chips. This driver was tested with a 128x64 panel. This
454 driver supports it for use with x86 SBCs through a 16 bit GPIO
455 interface (8 bit data, 8 bit control). If you anticipate using
456 this driver, say Y or M; otherwise say N. You must specify the
457 GPIO IO address to be used for setting control and data.
458
459config FB_ATARI
460 bool "Atari native chipset support"
461 depends on (FB = y) && ATARI
462 select FB_CFB_FILLRECT
463 select FB_CFB_COPYAREA
464 select FB_CFB_IMAGEBLIT
465 help
466 This is the frame buffer device driver for the builtin graphics
467 chipset found in Ataris.
468
469config FB_OF
470 bool "Open Firmware frame buffer device support"
471 depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
472 select FB_CFB_FILLRECT
473 select FB_CFB_COPYAREA
474 select FB_CFB_IMAGEBLIT
475 select FB_MACMODES
476 help
477 Say Y if you want support with Open Firmware for your graphics
478 board.
479
480config FB_CONTROL
481 bool "Apple \"control\" display support"
482 depends on (FB = y) && PPC_PMAC && PPC32
483 select FB_CFB_FILLRECT
484 select FB_CFB_COPYAREA
485 select FB_CFB_IMAGEBLIT
486 select FB_MACMODES
487 help
488 This driver supports a frame buffer for the graphics adapter in the
489 Power Macintosh 7300 and others.
490
491config FB_PLATINUM
492 bool "Apple \"platinum\" display support"
493 depends on (FB = y) && PPC_PMAC && PPC32
494 select FB_CFB_FILLRECT
495 select FB_CFB_COPYAREA
496 select FB_CFB_IMAGEBLIT
497 select FB_MACMODES
498 help
499 This driver supports a frame buffer for the "platinum" graphics
500 adapter in some Power Macintoshes.
501
502config FB_VALKYRIE
503 bool "Apple \"valkyrie\" display support"
504 depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
505 select FB_CFB_FILLRECT
506 select FB_CFB_COPYAREA
507 select FB_CFB_IMAGEBLIT
508 select FB_MACMODES
509 help
510 This driver supports a frame buffer for the "valkyrie" graphics
511 adapter in some Power Macintoshes.
512
513config FB_CT65550
514 bool "Chips 65550 display support"
515 depends on (FB = y) && PPC32 && PCI
516 select FB_CFB_FILLRECT
517 select FB_CFB_COPYAREA
518 select FB_CFB_IMAGEBLIT
519 help
520 This is the frame buffer device driver for the Chips & Technologies
521 65550 graphics chip in PowerBooks.
522
523config FB_ASILIANT
524 bool "Asiliant (Chips) 69000 display support"
525 depends on (FB = y) && PCI
526 select FB_CFB_FILLRECT
527 select FB_CFB_COPYAREA
528 select FB_CFB_IMAGEBLIT
529 help
530 This is the frame buffer device driver for the Asiliant 69030 chipset
531
532config FB_IMSTT
533 bool "IMS Twin Turbo display support"
534 depends on (FB = y) && PCI
535 select FB_CFB_IMAGEBLIT
536 select FB_MACMODES if PPC
537 help
538 The IMS Twin Turbo is a PCI-based frame buffer card bundled with
539 many Macintosh and compatible computers.
540
541config FB_VGA16
542 tristate "VGA 16-color graphics support"
543 depends on FB && (X86 || PPC)
544 select FB_CFB_FILLRECT
545 select FB_CFB_COPYAREA
546 select FB_CFB_IMAGEBLIT
547 select VGASTATE
548 select FONT_8x16 if FRAMEBUFFER_CONSOLE
549 help
550 This is the frame buffer device driver for VGA 16 color graphic
551 cards. Say Y if you have such a card.
552
553 To compile this driver as a module, choose M here: the
554 module will be called vga16fb.
555
556config FB_BF54X_LQ043
557 tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
558 depends on FB && (BF54x) && !BF542
559 select FB_CFB_FILLRECT
560 select FB_CFB_COPYAREA
561 select FB_CFB_IMAGEBLIT
562 help
563 This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
564
565config FB_BFIN_T350MCQB
566 tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
567 depends on FB && BLACKFIN
568 select BFIN_GPTIMERS
569 select FB_CFB_FILLRECT
570 select FB_CFB_COPYAREA
571 select FB_CFB_IMAGEBLIT
572 help
573 This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
574 This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
575 It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
576
577config FB_BFIN_LQ035Q1
578 tristate "SHARP LQ035Q1DH02 TFT LCD"
579 depends on FB && BLACKFIN && SPI
580 select FB_CFB_FILLRECT
581 select FB_CFB_COPYAREA
582 select FB_CFB_IMAGEBLIT
583 select BFIN_GPTIMERS
584 help
585 This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
586 the Blackfin Landscape LCD EZ-Extender Card.
587 This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
588 It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
589
590 To compile this driver as a module, choose M here: the
591 module will be called bfin-lq035q1-fb.
592
593config FB_BF537_LQ035
594 tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
595 depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
596 select FB_CFB_FILLRECT
597 select FB_CFB_COPYAREA
598 select FB_CFB_IMAGEBLIT
599 select BFIN_GPTIMERS
600 help
601 This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
602 attached to a BF537.
603
604 To compile this driver as a module, choose M here: the
605 module will be called bf537-lq035.
606
607config FB_BFIN_7393
608 tristate "Blackfin ADV7393 Video encoder"
609 depends on FB && BLACKFIN
610 select I2C
611 select FB_CFB_FILLRECT
612 select FB_CFB_COPYAREA
613 select FB_CFB_IMAGEBLIT
614 help
615 This is the framebuffer device for a ADV7393 video encoder
616 attached to a Blackfin on the PPI port.
617 If your Blackfin board has a ADV7393 select Y.
618
619 To compile this driver as a module, choose M here: the
620 module will be called bfin_adv7393fb.
621
622choice
623 prompt "Video mode support"
624 depends on FB_BFIN_7393
625 default NTSC
626
627config NTSC
628 bool 'NTSC 720x480'
629
630config PAL
631 bool 'PAL 720x576'
632
633config NTSC_640x480
634 bool 'NTSC 640x480 (Experimental)'
635
636config PAL_640x480
637 bool 'PAL 640x480 (Experimental)'
638
639config NTSC_YCBCR
640 bool 'NTSC 720x480 YCbCR input'
641
642config PAL_YCBCR
643 bool 'PAL 720x576 YCbCR input'
644
645endchoice
646
647choice
648 prompt "Size of ADV7393 frame buffer memory Single/Double Size"
649 depends on (FB_BFIN_7393)
650 default ADV7393_1XMEM
651
652config ADV7393_1XMEM
653 bool 'Single'
654
655config ADV7393_2XMEM
656 bool 'Double'
657endchoice
658
659config FB_STI
660 tristate "HP STI frame buffer device support"
661 depends on FB && PARISC
662 select FB_CFB_FILLRECT
663 select FB_CFB_COPYAREA
664 select FB_CFB_IMAGEBLIT
665 select STI_CONSOLE
666 select VT
667 default y
668 ---help---
669 STI refers to the HP "Standard Text Interface" which is a set of
670 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
671 Enabling this option will implement the linux framebuffer device
672 using calls to the STI BIOS routines for initialisation.
673
674 If you enable this option, you will get a planar framebuffer device
675 /dev/fb which will work on the most common HP graphic cards of the
676 NGLE family, including the artist chips (in the 7xx and Bxxx series),
677 HCRX, HCRX24, CRX, CRX24 and VisEG series.
678
679 It is safe to enable this option, so you should probably say "Y".
680
681config FB_MAC
682 bool "Generic Macintosh display support"
683 depends on (FB = y) && MAC
684 select FB_CFB_FILLRECT
685 select FB_CFB_COPYAREA
686 select FB_CFB_IMAGEBLIT
687 select FB_MACMODES
688
689config FB_HP300
690 bool
691 depends on (FB = y) && DIO
692 select FB_CFB_IMAGEBLIT
693 default y
694
695config FB_TGA
696 tristate "TGA/SFB+ framebuffer support"
697 depends on FB && (ALPHA || TC)
698 select FB_CFB_FILLRECT
699 select FB_CFB_COPYAREA
700 select FB_CFB_IMAGEBLIT
701 select BITREVERSE
702 ---help---
703 This is the frame buffer device driver for generic TGA and SFB+
704 graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
705 also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
706 TURBOchannel cards, also known as PMAGD-A, -B and -C.
707
708 Due to hardware limitations ZLX-E2 and E3 cards are not supported
709 for DECstation 5000/200 systems. Additionally due to firmware
710 limitations these cards may cause troubles with booting DECstation
711 5000/240 and /260 systems, but are fully supported under Linux if
712 you manage to get it going. ;-)
713
714 Say Y if you have one of those.
715
716config FB_UVESA
717 tristate "Userspace VESA VGA graphics support"
718 depends on FB && CONNECTOR
719 select FB_CFB_FILLRECT
720 select FB_CFB_COPYAREA
721 select FB_CFB_IMAGEBLIT
722 select FB_MODE_HELPERS
723 help
724 This is the frame buffer driver for generic VBE 2.0 compliant
725 graphic cards. It can also take advantage of VBE 3.0 features,
726 such as refresh rate adjustment.
727
728 This driver generally provides more features than vesafb but
729 requires a userspace helper application called 'v86d'. See
730 <file:Documentation/fb/uvesafb.txt> for more information.
731
732 If unsure, say N.
733
734config FB_VESA
735 bool "VESA VGA graphics support"
736 depends on (FB = y) && X86
737 select FB_CFB_FILLRECT
738 select FB_CFB_COPYAREA
739 select FB_CFB_IMAGEBLIT
740 select FB_BOOT_VESA_SUPPORT
741 help
742 This is the frame buffer device driver for generic VESA 2.0
743 compliant graphic cards. The older VESA 1.2 cards are not supported.
744 You will get a boot time penguin logo at no additional cost. Please
745 read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
746
747config FB_EFI
748 bool "EFI-based Framebuffer Support"
749 depends on (FB = y) && X86 && EFI
750 select FB_CFB_FILLRECT
751 select FB_CFB_COPYAREA
752 select FB_CFB_IMAGEBLIT
753 help
754 This is the EFI frame buffer device driver. If the firmware on
755 your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
756 using the EFI framebuffer as your console.
757
758config FB_N411
759 tristate "N411 Apollo/Hecuba devkit support"
760 depends on FB && X86 && MMU
761 select FB_SYS_FILLRECT
762 select FB_SYS_COPYAREA
763 select FB_SYS_IMAGEBLIT
764 select FB_SYS_FOPS
765 select FB_DEFERRED_IO
766 select FB_HECUBA
767 help
768 This enables support for the Apollo display controller in its
769 Hecuba form using the n411 devkit.
770
771config FB_HGA
772 tristate "Hercules mono graphics support"
773 depends on FB && X86
774 help
775 Say Y here if you have a Hercules mono graphics card.
776
777 To compile this driver as a module, choose M here: the
778 module will be called hgafb.
779
780 As this card technology is at least 25 years old,
781 most people will answer N here.
782
783config FB_GBE
784 bool "SGI Graphics Backend frame buffer support"
785 depends on (FB = y) && SGI_IP32
786 select FB_CFB_FILLRECT
787 select FB_CFB_COPYAREA
788 select FB_CFB_IMAGEBLIT
789 help
790 This is the frame buffer device driver for SGI Graphics Backend.
791 This chip is used in SGI O2 and Visual Workstation 320/540.
792
793config FB_GBE_MEM
794 int "Video memory size in MB"
795 depends on FB_GBE
796 default 4
797 help
798 This is the amount of memory reserved for the framebuffer,
799 which can be any value between 1MB and 8MB.
800
801config FB_SBUS
802 bool "SBUS and UPA framebuffers"
803 depends on (FB = y) && SPARC
804 help
805 Say Y if you want support for SBUS or UPA based frame buffer device.
806
807config FB_BW2
808 bool "BWtwo support"
809 depends on (FB = y) && (SPARC && FB_SBUS)
810 select FB_CFB_FILLRECT
811 select FB_CFB_COPYAREA
812 select FB_CFB_IMAGEBLIT
813 help
814 This is the frame buffer device driver for the BWtwo frame buffer.
815
816config FB_CG3
817 bool "CGthree support"
818 depends on (FB = y) && (SPARC && FB_SBUS)
819 select FB_CFB_FILLRECT
820 select FB_CFB_COPYAREA
821 select FB_CFB_IMAGEBLIT
822 help
823 This is the frame buffer device driver for the CGthree frame buffer.
824
825config FB_CG6
826 bool "CGsix (GX,TurboGX) support"
827 depends on (FB = y) && (SPARC && FB_SBUS)
828 select FB_CFB_COPYAREA
829 select FB_CFB_IMAGEBLIT
830 help
831 This is the frame buffer device driver for the CGsix (GX, TurboGX)
832 frame buffer.
833
834config FB_FFB
835 bool "Creator/Creator3D/Elite3D support"
836 depends on FB_SBUS && SPARC64
837 select FB_CFB_COPYAREA
838 select FB_CFB_IMAGEBLIT
839 help
840 This is the frame buffer device driver for the Creator, Creator3D,
841 and Elite3D graphics boards.
842
843config FB_TCX
844 bool "TCX (SS4/SS5 only) support"
845 depends on FB_SBUS
846 select FB_CFB_FILLRECT
847 select FB_CFB_COPYAREA
848 select FB_CFB_IMAGEBLIT
849 help
850 This is the frame buffer device driver for the TCX 24/8bit frame
851 buffer.
852
853config FB_CG14
854 bool "CGfourteen (SX) support"
855 depends on FB_SBUS
856 select FB_CFB_FILLRECT
857 select FB_CFB_COPYAREA
858 select FB_CFB_IMAGEBLIT
859 help
860 This is the frame buffer device driver for the CGfourteen frame
861 buffer on Desktop SPARCsystems with the SX graphics option.
862
863config FB_P9100
864 bool "P9100 (Sparcbook 3 only) support"
865 depends on FB_SBUS
866 select FB_CFB_FILLRECT
867 select FB_CFB_COPYAREA
868 select FB_CFB_IMAGEBLIT
869 help
870 This is the frame buffer device driver for the P9100 card
871 supported on Sparcbook 3 machines.
872
873config FB_LEO
874 bool "Leo (ZX) support"
875 depends on FB_SBUS
876 select FB_CFB_FILLRECT
877 select FB_CFB_COPYAREA
878 select FB_CFB_IMAGEBLIT
879 help
880 This is the frame buffer device driver for the SBUS-based Sun ZX
881 (leo) frame buffer cards.
882
883config FB_IGA
884 bool "IGA 168x display support"
885 depends on (FB = y) && SPARC32
886 select FB_CFB_FILLRECT
887 select FB_CFB_COPYAREA
888 select FB_CFB_IMAGEBLIT
889 help
890 This is the framebuffer device for the INTERGRAPHICS 1680 and
891 successor frame buffer cards.
892
893config FB_XVR500
894 bool "Sun XVR-500 3DLABS Wildcat support"
895 depends on (FB = y) && PCI && SPARC64
896 select FB_CFB_FILLRECT
897 select FB_CFB_COPYAREA
898 select FB_CFB_IMAGEBLIT
899 help
900 This is the framebuffer device for the Sun XVR-500 and similar
901 graphics cards based upon the 3DLABS Wildcat chipset. The driver
902 only works on sparc64 systems where the system firmware has
903 mostly initialized the card already. It is treated as a
904 completely dumb framebuffer device.
905
906config FB_XVR2500
907 bool "Sun XVR-2500 3DLABS Wildcat support"
908 depends on (FB = y) && PCI && SPARC64
909 select FB_CFB_FILLRECT
910 select FB_CFB_COPYAREA
911 select FB_CFB_IMAGEBLIT
912 help
913 This is the framebuffer device for the Sun XVR-2500 and similar
914 graphics cards based upon the 3DLABS Wildcat chipset. The driver
915 only works on sparc64 systems where the system firmware has
916 mostly initialized the card already. It is treated as a
917 completely dumb framebuffer device.
918
919config FB_XVR1000
920 bool "Sun XVR-1000 support"
921 depends on (FB = y) && SPARC64
922 select FB_CFB_FILLRECT
923 select FB_CFB_COPYAREA
924 select FB_CFB_IMAGEBLIT
925 help
926 This is the framebuffer device for the Sun XVR-1000 and similar
927 graphics cards. The driver only works on sparc64 systems where
928 the system firmware has mostly initialized the card already. It
929 is treated as a completely dumb framebuffer device.
930
931config FB_PVR2
932 tristate "NEC PowerVR 2 display support"
933 depends on FB && SH_DREAMCAST
934 select FB_CFB_FILLRECT
935 select FB_CFB_COPYAREA
936 select FB_CFB_IMAGEBLIT
937 ---help---
938 Say Y here if you have a PowerVR 2 card in your box. If you plan to
939 run linux on your Dreamcast, you will have to say Y here.
940 This driver may or may not work on other PowerVR 2 cards, but is
941 totally untested. Use at your own risk. If unsure, say N.
942
943 To compile this driver as a module, choose M here: the
944 module will be called pvr2fb.
945
946 You can pass several parameters to the driver at boot time or at
947 module load time. The parameters look like "video=pvr2:XXX", where
948 the meaning of XXX can be found at the end of the main source file
949 (<file:drivers/video/pvr2fb.c>). Please see the file
950 <file:Documentation/fb/pvr2fb.txt>.
951
952config FB_OPENCORES
953 tristate "OpenCores VGA/LCD core 2.0 framebuffer support"
954 depends on FB && HAS_DMA
955 select FB_CFB_FILLRECT
956 select FB_CFB_COPYAREA
957 select FB_CFB_IMAGEBLIT
958 help
959 This enables support for the OpenCores VGA/LCD core.
960
961 The OpenCores VGA/LCD core is typically used together with
962 softcore CPUs (e.g. OpenRISC or Microblaze) or hard processor
963 systems (e.g. Altera socfpga or Xilinx Zynq) on FPGAs.
964
965 The source code and specification for the core is available at
966 <http://opencores.org/project,vga_lcd>
967
968config FB_S1D13XXX
969 tristate "Epson S1D13XXX framebuffer support"
970 depends on FB
971 select FB_CFB_FILLRECT
972 select FB_CFB_COPYAREA
973 select FB_CFB_IMAGEBLIT
974 help
975 Support for S1D13XXX framebuffer device family (currently only
976 working with S1D13806). Product specs at
977 <http://vdc.epson.com/>
978
979config FB_ATMEL
980 tristate "AT91/AT32 LCD Controller support"
981 depends on FB && HAVE_FB_ATMEL
Arnd Bergmann3cdd1532014-04-24 13:28:23 +0100982 select FB_BACKLIGHT
Tomi Valkeinenf7018c22014-02-13 15:31:38 +0200983 select FB_CFB_FILLRECT
984 select FB_CFB_COPYAREA
985 select FB_CFB_IMAGEBLIT
986 select FB_MODE_HELPERS
987 select VIDEOMODE_HELPERS
988 help
989 This enables support for the AT91/AT32 LCD Controller.
990
991config FB_INTSRAM
992 bool "Frame Buffer in internal SRAM"
993 depends on FB_ATMEL && ARCH_AT91SAM9261
994 help
995 Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
996 to let frame buffer in external SDRAM.
997
998config FB_ATMEL_STN
999 bool "Use a STN display with AT91/AT32 LCD Controller"
1000 depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
1001 default n
1002 help
1003 Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
1004 Controller. Say N if you want to connect a TFT.
1005
1006 If unsure, say N.
1007
1008config FB_NVIDIA
1009 tristate "nVidia Framebuffer Support"
1010 depends on FB && PCI
1011 select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
1012 select FB_MODE_HELPERS
1013 select FB_CFB_FILLRECT
1014 select FB_CFB_COPYAREA
1015 select FB_CFB_IMAGEBLIT
1016 select BITREVERSE
1017 select VGASTATE
1018 help
1019 This driver supports graphics boards with the nVidia chips, TNT
1020 and newer. For very old chipsets, such as the RIVA128, then use
1021 the rivafb.
1022 Say Y if you have such a graphics board.
1023
1024 To compile this driver as a module, choose M here: the
1025 module will be called nvidiafb.
1026
1027config FB_NVIDIA_I2C
1028 bool "Enable DDC Support"
1029 depends on FB_NVIDIA
1030 select FB_DDC
1031 help
1032 This enables I2C support for nVidia Chipsets. This is used
1033 only for getting EDID information from the attached display
1034 allowing for robust video mode handling and switching.
1035
1036 Because fbdev-2.6 requires that drivers must be able to
1037 independently validate video mode parameters, you should say Y
1038 here.
1039
1040config FB_NVIDIA_DEBUG
1041 bool "Lots of debug output"
1042 depends on FB_NVIDIA
1043 default n
1044 help
1045 Say Y here if you want the nVidia driver to output all sorts
1046 of debugging information to provide to the maintainer when
1047 something goes wrong.
1048
1049config FB_NVIDIA_BACKLIGHT
1050 bool "Support for backlight control"
1051 depends on FB_NVIDIA
1052 default y
1053 help
1054 Say Y here if you want to control the backlight of your display.
1055
1056config FB_RIVA
1057 tristate "nVidia Riva support"
1058 depends on FB && PCI
1059 select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
1060 select FB_MODE_HELPERS
1061 select FB_CFB_FILLRECT
1062 select FB_CFB_COPYAREA
1063 select FB_CFB_IMAGEBLIT
1064 select BITREVERSE
1065 select VGASTATE
1066 help
1067 This driver supports graphics boards with the nVidia Riva/Geforce
1068 chips.
1069 Say Y if you have such a graphics board.
1070
1071 To compile this driver as a module, choose M here: the
1072 module will be called rivafb.
1073
1074config FB_RIVA_I2C
1075 bool "Enable DDC Support"
1076 depends on FB_RIVA
1077 select FB_DDC
1078 help
1079 This enables I2C support for nVidia Chipsets. This is used
1080 only for getting EDID information from the attached display
1081 allowing for robust video mode handling and switching.
1082
1083 Because fbdev-2.6 requires that drivers must be able to
1084 independently validate video mode parameters, you should say Y
1085 here.
1086
1087config FB_RIVA_DEBUG
1088 bool "Lots of debug output"
1089 depends on FB_RIVA
1090 default n
1091 help
1092 Say Y here if you want the Riva driver to output all sorts
1093 of debugging information to provide to the maintainer when
1094 something goes wrong.
1095
1096config FB_RIVA_BACKLIGHT
1097 bool "Support for backlight control"
1098 depends on FB_RIVA
1099 default y
1100 help
1101 Say Y here if you want to control the backlight of your display.
1102
1103config FB_I740
1104 tristate "Intel740 support"
1105 depends on FB && PCI
1106 select FB_MODE_HELPERS
1107 select FB_CFB_FILLRECT
1108 select FB_CFB_COPYAREA
1109 select FB_CFB_IMAGEBLIT
1110 select VGASTATE
1111 select FB_DDC
1112 help
1113 This driver supports graphics cards based on Intel740 chip.
1114
1115config FB_I810
1116 tristate "Intel 810/815 support"
1117 depends on FB && PCI && X86_32 && AGP_INTEL
1118 select FB_MODE_HELPERS
1119 select FB_CFB_FILLRECT
1120 select FB_CFB_COPYAREA
1121 select FB_CFB_IMAGEBLIT
1122 select VGASTATE
1123 help
1124 This driver supports the on-board graphics built in to the Intel 810
1125 and 815 chipsets. Say Y if you have and plan to use such a board.
1126
1127 To compile this driver as a module, choose M here: the
1128 module will be called i810fb.
1129
1130 For more information, please read
1131 <file:Documentation/fb/intel810.txt>
1132
1133config FB_I810_GTF
1134 bool "use VESA Generalized Timing Formula"
1135 depends on FB_I810
1136 help
1137 If you say Y, then the VESA standard, Generalized Timing Formula
1138 or GTF, will be used to calculate the required video timing values
1139 per video mode. Since the GTF allows nondiscrete timings
1140 (nondiscrete being a range of values as opposed to discrete being a
1141 set of values), you'll be able to use any combination of horizontal
1142 and vertical resolutions, and vertical refresh rates without having
1143 to specify your own timing parameters. This is especially useful
1144 to maximize the performance of an aging display, or if you just
1145 have a display with nonstandard dimensions. A VESA compliant
1146 monitor is recommended, but can still work with non-compliant ones.
1147 If you need or want this, then select this option. The timings may
1148 not be compliant with Intel's recommended values. Use at your own
1149 risk.
1150
1151 If you say N, the driver will revert to discrete video timings
1152 using a set recommended by Intel in their documentation.
1153
1154 If unsure, say N.
1155
1156config FB_I810_I2C
1157 bool "Enable DDC Support"
1158 depends on FB_I810 && FB_I810_GTF
1159 select FB_DDC
1160 help
1161
1162config FB_LE80578
1163 tristate "Intel LE80578 (Vermilion) support"
1164 depends on FB && PCI && X86
1165 select FB_MODE_HELPERS
1166 select FB_CFB_FILLRECT
1167 select FB_CFB_COPYAREA
1168 select FB_CFB_IMAGEBLIT
1169 help
1170 This driver supports the LE80578 (Vermilion Range) chipset
1171
1172config FB_CARILLO_RANCH
1173 tristate "Intel Carillo Ranch support"
1174 depends on FB_LE80578 && FB && PCI && X86
1175 help
1176 This driver supports the LE80578 (Carillo Ranch) board
1177
1178config FB_INTEL
1179 tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support"
1180 depends on FB && PCI && X86 && AGP_INTEL && EXPERT
1181 select FB_MODE_HELPERS
1182 select FB_CFB_FILLRECT
1183 select FB_CFB_COPYAREA
1184 select FB_CFB_IMAGEBLIT
1185 select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
1186 depends on !DRM_I915
1187 help
1188 This driver supports the on-board graphics built in to the Intel
1189 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
1190 Say Y if you have and plan to use such a board.
1191
1192 To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
1193
1194 To compile this driver as a module, choose M here: the
1195 module will be called intelfb.
1196
1197 For more information, please read <file:Documentation/fb/intelfb.txt>
1198
1199config FB_INTEL_DEBUG
1200 bool "Intel driver Debug Messages"
1201 depends on FB_INTEL
1202 ---help---
1203 Say Y here if you want the Intel driver to output all sorts
1204 of debugging information to provide to the maintainer when
1205 something goes wrong.
1206
1207config FB_INTEL_I2C
1208 bool "DDC/I2C for Intel framebuffer support"
1209 depends on FB_INTEL
1210 select FB_DDC
1211 default y
1212 help
1213 Say Y here if you want DDC/I2C support for your on-board Intel graphics.
1214
1215config FB_MATROX
1216 tristate "Matrox acceleration"
1217 depends on FB && PCI
1218 select FB_CFB_FILLRECT
1219 select FB_CFB_COPYAREA
1220 select FB_CFB_IMAGEBLIT
1221 select FB_TILEBLITTING
1222 select FB_MACMODES if PPC_PMAC
1223 ---help---
1224 Say Y here if you have a Matrox Millennium, Matrox Millennium II,
1225 Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
1226 Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
1227 Matrox G400, G450 or G550 card in your box.
1228
1229 To compile this driver as a module, choose M here: the
1230 module will be called matroxfb.
1231
1232 You can pass several parameters to the driver at boot time or at
1233 module load time. The parameters look like "video=matroxfb:XXX", and
1234 are described in <file:Documentation/fb/matroxfb.txt>.
1235
1236config FB_MATROX_MILLENIUM
1237 bool "Millennium I/II support"
1238 depends on FB_MATROX
1239 help
1240 Say Y here if you have a Matrox Millennium or Matrox Millennium II
1241 video card. If you select "Advanced lowlevel driver options" below,
1242 you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
1243 packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
1244 also use font widths different from 8.
1245
1246config FB_MATROX_MYSTIQUE
1247 bool "Mystique support"
1248 depends on FB_MATROX
1249 help
1250 Say Y here if you have a Matrox Mystique or Matrox Mystique 220
1251 video card. If you select "Advanced lowlevel driver options" below,
1252 you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
1253 packed pixel and 32 bpp packed pixel. You can also use font widths
1254 different from 8.
1255
1256config FB_MATROX_G
1257 bool "G100/G200/G400/G450/G550 support"
1258 depends on FB_MATROX
1259 ---help---
1260 Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
1261 video card. If you select "Advanced lowlevel driver options", you
1262 should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
1263 pixel and 32 bpp packed pixel. You can also use font widths
1264 different from 8.
1265
1266 If you need support for G400 secondary head, you must say Y to
1267 "Matrox I2C support" and "G400 second head support" right below.
1268 G450/G550 secondary head and digital output are supported without
1269 additional modules.
1270
1271 The driver starts in monitor mode. You must use the matroxset tool
1272 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1273 swap primary and secondary head outputs, or to change output mode.
1274 Secondary head driver always start in 640x480 resolution and you
1275 must use fbset to change it.
1276
1277 Do not forget that second head supports only 16 and 32 bpp
1278 packed pixels, so it is a good idea to compile them into the kernel
1279 too. You can use only some font widths, as the driver uses generic
1280 painting procedures (the secondary head does not use acceleration
1281 engine).
1282
1283 G450/G550 hardware can display TV picture only from secondary CRTC,
1284 and it performs no scaling, so picture must have 525 or 625 lines.
1285
1286config FB_MATROX_I2C
1287 tristate "Matrox I2C support"
1288 depends on FB_MATROX
1289 select FB_DDC
1290 ---help---
1291 This drivers creates I2C buses which are needed for accessing the
1292 DDC (I2C) bus present on all Matroxes, an I2C bus which
1293 interconnects Matrox optional devices, like MGA-TVO on G200 and
1294 G400, and the secondary head DDC bus, present on G400 only.
1295
1296 You can say Y or M here if you want to experiment with monitor
1297 detection code. You must say Y or M here if you want to use either
1298 second head of G400 or MGA-TVO on G200 or G400.
1299
1300 If you compile it as module, it will create a module named
1301 i2c-matroxfb.
1302
1303config FB_MATROX_MAVEN
1304 tristate "G400 second head support"
1305 depends on FB_MATROX_G && FB_MATROX_I2C
1306 ---help---
1307 WARNING !!! This support does not work with G450 !!!
1308
1309 Say Y or M here if you want to use a secondary head (meaning two
1310 monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
1311 head is not compatible with accelerated XFree 3.3.x SVGA servers -
1312 secondary head output is blanked while you are in X. With XFree
1313 3.9.17 preview you can use both heads if you use SVGA over fbdev or
1314 the fbdev driver on first head and the fbdev driver on second head.
1315
1316 If you compile it as module, two modules are created,
1317 matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1318 both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1319 also load i2c-matroxfb to get it to run.
1320
1321 The driver starts in monitor mode and you must use the matroxset
1322 tool (available at
1323 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1324 PAL or NTSC or to swap primary and secondary head outputs.
1325 Secondary head driver also always start in 640x480 resolution, you
1326 must use fbset to change it.
1327
1328 Also do not forget that second head supports only 16 and 32 bpp
1329 packed pixels, so it is a good idea to compile them into the kernel
1330 too. You can use only some font widths, as the driver uses generic
1331 painting procedures (the secondary head does not use acceleration
1332 engine).
1333
1334config FB_RADEON
1335 tristate "ATI Radeon display support"
1336 depends on FB && PCI
1337 select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
1338 select FB_MODE_HELPERS
1339 select FB_CFB_FILLRECT
1340 select FB_CFB_COPYAREA
1341 select FB_CFB_IMAGEBLIT
1342 select FB_MACMODES if PPC_OF
1343 help
1344 Choose this option if you want to use an ATI Radeon graphics card as
1345 a framebuffer device. There are both PCI and AGP versions. You
1346 don't need to choose this to run the Radeon in plain VGA mode.
1347
1348 There is a product page at
1349 http://products.amd.com/en-us/GraphicCardResult.aspx
1350
1351config FB_RADEON_I2C
1352 bool "DDC/I2C for ATI Radeon support"
1353 depends on FB_RADEON
1354 select FB_DDC
1355 default y
1356 help
1357 Say Y here if you want DDC/I2C support for your Radeon board.
1358
1359config FB_RADEON_BACKLIGHT
1360 bool "Support for backlight control"
1361 depends on FB_RADEON
1362 default y
1363 help
1364 Say Y here if you want to control the backlight of your display.
1365
1366config FB_RADEON_DEBUG
1367 bool "Lots of debug output from Radeon driver"
1368 depends on FB_RADEON
1369 default n
1370 help
1371 Say Y here if you want the Radeon driver to output all sorts
1372 of debugging information to provide to the maintainer when
1373 something goes wrong.
1374
1375config FB_ATY128
1376 tristate "ATI Rage128 display support"
1377 depends on FB && PCI
1378 select FB_CFB_FILLRECT
1379 select FB_CFB_COPYAREA
1380 select FB_CFB_IMAGEBLIT
1381 select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
1382 select FB_MACMODES if PPC_PMAC
1383 help
1384 This driver supports graphics boards with the ATI Rage128 chips.
1385 Say Y if you have such a graphics board and read
1386 <file:Documentation/fb/aty128fb.txt>.
1387
1388 To compile this driver as a module, choose M here: the
1389 module will be called aty128fb.
1390
1391config FB_ATY128_BACKLIGHT
1392 bool "Support for backlight control"
1393 depends on FB_ATY128
1394 default y
1395 help
1396 Say Y here if you want to control the backlight of your display.
1397
1398config FB_ATY
1399 tristate "ATI Mach64 display support" if PCI || ATARI
1400 depends on FB && !SPARC32
1401 select FB_CFB_FILLRECT
1402 select FB_CFB_COPYAREA
1403 select FB_CFB_IMAGEBLIT
1404 select FB_BACKLIGHT if FB_ATY_BACKLIGHT
1405 select FB_MACMODES if PPC
1406 help
1407 This driver supports graphics boards with the ATI Mach64 chips.
1408 Say Y if you have such a graphics board.
1409
1410 To compile this driver as a module, choose M here: the
1411 module will be called atyfb.
1412
1413config FB_ATY_CT
1414 bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1415 depends on PCI && FB_ATY
1416 default y if SPARC64 && PCI
1417 help
1418 Say Y here to support use of ATI's 64-bit Rage boards (or other
1419 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1420 framebuffer device. The ATI product support page for these boards
1421 is at <http://support.ati.com/products/pc/mach64/mach64.html>.
1422
1423config FB_ATY_GENERIC_LCD
1424 bool "Mach64 generic LCD support"
1425 depends on FB_ATY_CT
1426 help
1427 Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1428 Rage XC, or Rage XL chipset.
1429
1430config FB_ATY_GX
1431 bool "Mach64 GX support" if PCI
1432 depends on FB_ATY
1433 default y if ATARI
1434 help
1435 Say Y here to support use of the ATI Mach64 Graphics Expression
1436 board (or other boards based on the Mach64 GX chipset) as a
1437 framebuffer device. The ATI product support page for these boards
1438 is at
1439 <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1440
1441config FB_ATY_BACKLIGHT
1442 bool "Support for backlight control"
1443 depends on FB_ATY
1444 default y
1445 help
1446 Say Y here if you want to control the backlight of your display.
1447
1448config FB_S3
1449 tristate "S3 Trio/Virge support"
1450 depends on FB && PCI
1451 select FB_CFB_FILLRECT
1452 select FB_CFB_COPYAREA
1453 select FB_CFB_IMAGEBLIT
1454 select FB_TILEBLITTING
1455 select FB_SVGALIB
1456 select VGASTATE
1457 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1458 ---help---
1459 Driver for graphics boards with S3 Trio / S3 Virge chip.
1460
1461config FB_S3_DDC
1462 bool "DDC for S3 support"
1463 depends on FB_S3
1464 select FB_DDC
1465 default y
1466 help
1467 Say Y here if you want DDC support for your S3 graphics card.
1468
1469config FB_SAVAGE
1470 tristate "S3 Savage support"
1471 depends on FB && PCI
1472 select FB_MODE_HELPERS
1473 select FB_CFB_FILLRECT
1474 select FB_CFB_COPYAREA
1475 select FB_CFB_IMAGEBLIT
1476 select VGASTATE
1477 help
1478 This driver supports notebooks and computers with S3 Savage PCI/AGP
1479 chips.
1480
1481 Say Y if you have such a graphics card.
1482
1483 To compile this driver as a module, choose M here; the module
1484 will be called savagefb.
1485
1486config FB_SAVAGE_I2C
1487 bool "Enable DDC2 Support"
1488 depends on FB_SAVAGE
1489 select FB_DDC
1490 help
1491 This enables I2C support for S3 Savage Chipsets. This is used
1492 only for getting EDID information from the attached display
1493 allowing for robust video mode handling and switching.
1494
1495 Because fbdev-2.6 requires that drivers must be able to
1496 independently validate video mode parameters, you should say Y
1497 here.
1498
1499config FB_SAVAGE_ACCEL
1500 bool "Enable Console Acceleration"
1501 depends on FB_SAVAGE
1502 default n
1503 help
1504 This option will compile in console acceleration support. If
1505 the resulting framebuffer console has bothersome glitches, then
1506 choose N here.
1507
1508config FB_SIS
1509 tristate "SiS/XGI display support"
1510 depends on FB && PCI
1511 select FB_CFB_FILLRECT
1512 select FB_CFB_COPYAREA
1513 select FB_CFB_IMAGEBLIT
1514 select FB_BOOT_VESA_SUPPORT if FB_SIS = y
1515 help
1516 This is the frame buffer device driver for the SiS 300, 315, 330
1517 and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
1518 Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
1519
1520 To compile this driver as a module, choose M here; the module
1521 will be called sisfb.
1522
1523config FB_SIS_300
1524 bool "SiS 300 series support"
1525 depends on FB_SIS
1526 help
1527 Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1528
1529config FB_SIS_315
1530 bool "SiS 315/330/340 series and XGI support"
1531 depends on FB_SIS
1532 help
1533 Say Y here to support use of the SiS 315, 330 and 340 series
1534 (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1535 as XGI V3XT, V5, V8 and Z7.
1536
1537config FB_VIA
1538 tristate "VIA UniChrome (Pro) and Chrome9 display support"
1539 depends on FB && PCI && X86
1540 select FB_CFB_FILLRECT
1541 select FB_CFB_COPYAREA
1542 select FB_CFB_IMAGEBLIT
1543 select I2C_ALGOBIT
1544 select I2C
1545 select GPIOLIB
1546 help
1547 This is the frame buffer device driver for Graphics chips of VIA
1548 UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1549 CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1550 /P4M900,VX800)
1551 Say Y if you have a VIA UniChrome graphics board.
1552
1553 To compile this driver as a module, choose M here: the
1554 module will be called viafb.
1555
1556if FB_VIA
1557
1558config FB_VIA_DIRECT_PROCFS
1559 bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1560 depends on FB_VIA
1561 default n
1562 help
1563 Allow direct hardware access to some output registers via procfs.
1564 This is dangerous but may provide the only chance to get the
1565 correct output device configuration.
1566 Its use is strongly discouraged.
1567
1568config FB_VIA_X_COMPATIBILITY
1569 bool "X server compatibility"
1570 depends on FB_VIA
1571 default n
1572 help
1573 This option reduces the functionality (power saving, ...) of the
1574 framebuffer to avoid negative impact on the OpenChrome X server.
1575 If you use any X server other than fbdev you should enable this
1576 otherwise it should be safe to disable it and allow using all
1577 features.
1578
1579endif
1580
1581config FB_NEOMAGIC
1582 tristate "NeoMagic display support"
1583 depends on FB && PCI
1584 select FB_MODE_HELPERS
1585 select FB_CFB_FILLRECT
1586 select FB_CFB_COPYAREA
1587 select FB_CFB_IMAGEBLIT
1588 select VGASTATE
1589 help
1590 This driver supports notebooks with NeoMagic PCI chips.
1591 Say Y if you have such a graphics card.
1592
1593 To compile this driver as a module, choose M here: the
1594 module will be called neofb.
1595
1596config FB_KYRO
1597 tristate "IMG Kyro support"
1598 depends on FB && PCI
1599 select FB_CFB_FILLRECT
1600 select FB_CFB_COPYAREA
1601 select FB_CFB_IMAGEBLIT
1602 help
1603 Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1604 graphics board.
1605
1606 To compile this driver as a module, choose M here: the
1607 module will be called kyrofb.
1608
1609config FB_3DFX
1610 tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
1611 depends on FB && PCI
1612 select FB_CFB_IMAGEBLIT
1613 select FB_CFB_FILLRECT
1614 select FB_CFB_COPYAREA
1615 select FB_MODE_HELPERS
1616 help
1617 This driver supports graphics boards with the 3Dfx Banshee,
1618 Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1619 such a graphics board.
1620
1621 To compile this driver as a module, choose M here: the
1622 module will be called tdfxfb.
1623
1624config FB_3DFX_ACCEL
1625 bool "3Dfx Acceleration functions"
1626 depends on FB_3DFX
1627 ---help---
1628 This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1629 device driver with acceleration functions.
1630
1631config FB_3DFX_I2C
1632 bool "Enable DDC/I2C support"
1633 depends on FB_3DFX
1634 select FB_DDC
1635 default y
1636 help
1637 Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1638
1639config FB_VOODOO1
1640 tristate "3Dfx Voodoo Graphics (sst1) support"
1641 depends on FB && PCI
1642 select FB_CFB_FILLRECT
1643 select FB_CFB_COPYAREA
1644 select FB_CFB_IMAGEBLIT
1645 ---help---
1646 Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1647 Voodoo2 (cvg) based graphics card.
1648
1649 To compile this driver as a module, choose M here: the
1650 module will be called sstfb.
1651
1652 WARNING: Do not use any application that uses the 3D engine
1653 (namely glide) while using this driver.
1654 Please read the <file:Documentation/fb/sstfb.txt> for supported
1655 options and other important info support.
1656
1657config FB_VT8623
1658 tristate "VIA VT8623 support"
1659 depends on FB && PCI
1660 select FB_CFB_FILLRECT
1661 select FB_CFB_COPYAREA
1662 select FB_CFB_IMAGEBLIT
1663 select FB_TILEBLITTING
1664 select FB_SVGALIB
1665 select VGASTATE
1666 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1667 ---help---
1668 Driver for CastleRock integrated graphics core in the
1669 VIA VT8623 [Apollo CLE266] chipset.
1670
1671config FB_TRIDENT
1672 tristate "Trident/CyberXXX/CyberBlade support"
1673 depends on FB && PCI
1674 select FB_CFB_FILLRECT
1675 select FB_CFB_COPYAREA
1676 select FB_CFB_IMAGEBLIT
1677 ---help---
1678 This is the frame buffer device driver for Trident PCI/AGP chipsets.
1679 Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1680 and Blade XP.
1681 There are also integrated versions of these chips called CyberXXXX,
1682 CyberImage or CyberBlade. These chips are mostly found in laptops
1683 but also on some motherboards including early VIA EPIA motherboards.
1684 For more information, read <file:Documentation/fb/tridentfb.txt>
1685
1686 Say Y if you have such a graphics board.
1687
1688 To compile this driver as a module, choose M here: the
1689 module will be called tridentfb.
1690
1691config FB_ARK
1692 tristate "ARK 2000PV support"
1693 depends on FB && PCI
1694 select FB_CFB_FILLRECT
1695 select FB_CFB_COPYAREA
1696 select FB_CFB_IMAGEBLIT
1697 select FB_TILEBLITTING
1698 select FB_SVGALIB
1699 select VGASTATE
1700 select FONT_8x16 if FRAMEBUFFER_CONSOLE
1701 ---help---
1702 Driver for PCI graphics boards with ARK 2000PV chip
1703 and ICS 5342 RAMDAC.
1704
1705config FB_PM3
1706 tristate "Permedia3 support"
1707 depends on FB && PCI
1708 select FB_CFB_FILLRECT
1709 select FB_CFB_COPYAREA
1710 select FB_CFB_IMAGEBLIT
1711 help
1712 This is the frame buffer device driver for the 3DLabs Permedia3
1713 chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1714 similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1715 and maybe other boards.
1716
1717config FB_CARMINE
1718 tristate "Fujitsu carmine frame buffer support"
1719 depends on FB && PCI
1720 select FB_CFB_FILLRECT
1721 select FB_CFB_COPYAREA
1722 select FB_CFB_IMAGEBLIT
1723 help
1724 This is the frame buffer device driver for the Fujitsu Carmine chip.
1725 The driver provides two independent frame buffer devices.
1726
1727choice
1728 depends on FB_CARMINE
1729 prompt "DRAM timing"
1730 default FB_CARMINE_DRAM_EVAL
1731
1732config FB_CARMINE_DRAM_EVAL
1733 bool "Eval board timings"
1734 help
1735 Use timings which work on the eval card.
1736
1737config CARMINE_DRAM_CUSTOM
1738 bool "Custom board timings"
1739 help
1740 Use custom board timings.
1741endchoice
1742
1743config FB_AU1100
1744 bool "Au1100 LCD Driver"
1745 depends on (FB = y) && MIPS_ALCHEMY
1746 select FB_CFB_FILLRECT
1747 select FB_CFB_COPYAREA
1748 select FB_CFB_IMAGEBLIT
1749 help
1750 This is the framebuffer driver for the AMD Au1100 SOC. It can drive
1751 various panels and CRTs by passing in kernel cmd line option
1752 au1100fb:panel=<name>.
1753
1754config FB_AU1200
1755 bool "Au1200/Au1300 LCD Driver"
1756 depends on (FB = y) && MIPS_ALCHEMY
1757 select FB_SYS_FILLRECT
1758 select FB_SYS_COPYAREA
1759 select FB_SYS_IMAGEBLIT
1760 select FB_SYS_FOPS
1761 help
1762 This is the framebuffer driver for the Au1200/Au1300 SOCs.
1763 It can drive various panels and CRTs by passing in kernel cmd line
1764 option au1200fb:panel=<name>.
1765
1766config FB_VT8500
1767 bool "VIA VT8500 framebuffer support"
1768 depends on (FB = y) && ARM && ARCH_VT8500
1769 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1770 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
1771 select FB_SYS_IMAGEBLIT
1772 select FB_MODE_HELPERS
1773 select VIDEOMODE_HELPERS
1774 help
1775 This is the framebuffer driver for VIA VT8500 integrated LCD
1776 controller.
1777
1778config FB_WM8505
1779 bool "Wondermedia WM8xxx-series frame buffer support"
1780 depends on (FB = y) && ARM && ARCH_VT8500
1781 select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1782 select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
1783 select FB_SYS_IMAGEBLIT
1784 select FB_MODE_HELPERS
1785 select VIDEOMODE_HELPERS
1786 help
1787 This is the framebuffer driver for WonderMedia WM8xxx-series
1788 integrated LCD controller. This driver covers the WM8505, WM8650
1789 and WM8850 SoCs.
1790
1791config FB_WMT_GE_ROPS
1792 bool "VT8500/WM8xxx accelerated raster ops support"
1793 depends on (FB = y) && (FB_VT8500 || FB_WM8505)
1794 default n
1795 help
1796 This adds support for accelerated raster operations on the
1797 VIA VT8500 and Wondermedia 85xx series SoCs.
1798
1799source "drivers/video/fbdev/geode/Kconfig"
1800
1801config FB_HIT
1802 tristate "HD64461 Frame Buffer support"
1803 depends on FB && HD64461
1804 select FB_CFB_FILLRECT
1805 select FB_CFB_COPYAREA
1806 select FB_CFB_IMAGEBLIT
1807 help
1808 This is the frame buffer device driver for the Hitachi HD64461 LCD
1809 frame buffer card.
1810
1811config FB_PMAG_AA
1812 bool "PMAG-AA TURBOchannel framebuffer support"
1813 depends on (FB = y) && TC
1814 select FB_CFB_FILLRECT
1815 select FB_CFB_COPYAREA
1816 select FB_CFB_IMAGEBLIT
1817 help
1818 Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1819 used mainly in the MIPS-based DECstation series.
1820
1821config FB_PMAG_BA
1822 tristate "PMAG-BA TURBOchannel framebuffer support"
1823 depends on FB && TC
1824 select FB_CFB_FILLRECT
1825 select FB_CFB_COPYAREA
1826 select FB_CFB_IMAGEBLIT
1827 help
1828 Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1829 used mainly in the MIPS-based DECstation series.
1830
1831config FB_PMAGB_B
1832 tristate "PMAGB-B TURBOchannel framebuffer support"
1833 depends on FB && TC
1834 select FB_CFB_FILLRECT
1835 select FB_CFB_COPYAREA
1836 select FB_CFB_IMAGEBLIT
1837 help
1838 Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1839 in the MIPS-based DECstation series. The card is currently only
1840 supported in 1280x1024x8 mode.
1841
1842config FB_MAXINE
1843 bool "Maxine (Personal DECstation) onboard framebuffer support"
1844 depends on (FB = y) && MACH_DECSTATION
1845 select FB_CFB_FILLRECT
1846 select FB_CFB_COPYAREA
1847 select FB_CFB_IMAGEBLIT
1848 help
1849 Support for the onboard framebuffer (1024x768x8) in the Personal
1850 DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1851 Codename "Maxine").
1852
1853config FB_G364
1854 bool "G364 frame buffer support"
1855 depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
1856 select FB_CFB_FILLRECT
1857 select FB_CFB_COPYAREA
1858 select FB_CFB_IMAGEBLIT
1859 help
1860 The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1861 Olivetti M700-10 systems.
1862
1863config FB_68328
1864 bool "Motorola 68328 native frame buffer support"
1865 depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
1866 select FB_CFB_FILLRECT
1867 select FB_CFB_COPYAREA
1868 select FB_CFB_IMAGEBLIT
1869 help
1870 Say Y here if you want to support the built-in frame buffer of
1871 the Motorola 68328 CPU family.
1872
1873config FB_PXA168
1874 tristate "PXA168/910 LCD framebuffer support"
1875 depends on FB && (CPU_PXA168 || CPU_PXA910)
1876 select FB_CFB_FILLRECT
1877 select FB_CFB_COPYAREA
1878 select FB_CFB_IMAGEBLIT
1879 ---help---
1880 Frame buffer driver for the built-in LCD controller in the Marvell
1881 MMP processor.
1882
1883config FB_PXA
1884 tristate "PXA LCD framebuffer support"
1885 depends on FB && ARCH_PXA
1886 select FB_CFB_FILLRECT
1887 select FB_CFB_COPYAREA
1888 select FB_CFB_IMAGEBLIT
1889 ---help---
1890 Frame buffer driver for the built-in LCD controller in the Intel
1891 PXA2x0 processor.
1892
1893 This driver is also available as a module ( = code which can be
1894 inserted and removed from the running kernel whenever you want). The
1895 module will be called pxafb. If you want to compile it as a module,
1896 say M here and read <file:Documentation/kbuild/modules.txt>.
1897
1898 If unsure, say N.
1899
1900config FB_PXA_OVERLAY
1901 bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1902 default n
1903 depends on FB_PXA && (PXA27x || PXA3xx)
1904
1905config FB_PXA_SMARTPANEL
1906 bool "PXA Smartpanel LCD support"
1907 default n
1908 depends on FB_PXA
1909
1910config FB_PXA_PARAMETERS
1911 bool "PXA LCD command line parameters"
1912 default n
1913 depends on FB_PXA
1914 ---help---
1915 Enable the use of kernel command line or module parameters
1916 to configure the physical properties of the LCD panel when
1917 using the PXA LCD driver.
1918
1919 This option allows you to override the panel parameters
1920 supplied by the platform in order to support multiple
1921 different models of flatpanel. If you will only be using a
1922 single model of flatpanel then you can safely leave this
1923 option disabled.
1924
1925 <file:Documentation/fb/pxafb.txt> describes the available parameters.
1926
1927config PXA3XX_GCU
1928 tristate "PXA3xx 2D graphics accelerator driver"
1929 depends on FB_PXA
1930 help
1931 Kernelspace driver for the 2D graphics controller unit (GCU)
1932 found on PXA3xx processors. There is a counterpart driver in the
1933 DirectFB suite, see http://www.directfb.org/
1934
1935 If you compile this as a module, it will be called pxa3xx_gcu.
1936
1937config FB_MBX
1938 tristate "2700G LCD framebuffer support"
1939 depends on FB && ARCH_PXA
1940 select FB_CFB_FILLRECT
1941 select FB_CFB_COPYAREA
1942 select FB_CFB_IMAGEBLIT
1943 ---help---
1944 Framebuffer driver for the Intel 2700G (Marathon) Graphics
1945 Accelerator
1946
1947config FB_MBX_DEBUG
1948 bool "Enable debugging info via debugfs"
1949 depends on FB_MBX && DEBUG_FS
1950 default n
1951 ---help---
1952 Enable this if you want debugging information using the debug
1953 filesystem (debugfs)
1954
1955 If unsure, say N.
1956
1957config FB_FSL_DIU
1958 tristate "Freescale DIU framebuffer support"
1959 depends on FB && FSL_SOC
1960 select FB_MODE_HELPERS
1961 select FB_CFB_FILLRECT
1962 select FB_CFB_COPYAREA
1963 select FB_CFB_IMAGEBLIT
1964 select PPC_LIB_RHEAP
1965 ---help---
1966 Framebuffer driver for the Freescale SoC DIU
1967
1968config FB_W100
1969 tristate "W100 frame buffer support"
1970 depends on FB && ARCH_PXA
1971 select FB_CFB_FILLRECT
1972 select FB_CFB_COPYAREA
1973 select FB_CFB_IMAGEBLIT
1974 ---help---
1975 Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
1976 It can also drive the w3220 chip found on iPAQ hx4700.
1977
1978 This driver is also available as a module ( = code which can be
1979 inserted and removed from the running kernel whenever you want). The
1980 module will be called w100fb. If you want to compile it as a module,
1981 say M here and read <file:Documentation/kbuild/modules.txt>.
1982
1983 If unsure, say N.
1984
1985config FB_SH_MOBILE_LCDC
1986 tristate "SuperH Mobile LCDC framebuffer support"
1987 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
Arnd Bergmann423431a2014-04-24 13:28:17 +01001988 depends on FB_SH_MOBILE_MERAM || !FB_SH_MOBILE_MERAM
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02001989 select FB_SYS_FILLRECT
1990 select FB_SYS_COPYAREA
1991 select FB_SYS_IMAGEBLIT
1992 select FB_SYS_FOPS
1993 select FB_DEFERRED_IO
1994 select FB_BACKLIGHT
1995 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
1996 ---help---
1997 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1998
1999config FB_SH_MOBILE_HDMI
2000 tristate "SuperH Mobile HDMI controller support"
2001 depends on FB_SH_MOBILE_LCDC
2002 select FB_MODE_HELPERS
2003 select SOUND
2004 select SND
2005 select SND_SOC
2006 ---help---
2007 Driver for the on-chip SH-Mobile HDMI controller.
2008
2009config FB_TMIO
2010 tristate "Toshiba Mobile IO FrameBuffer support"
Jean Delvare81fe17b2014-04-24 10:32:58 +02002011 depends on FB && (MFD_TMIO || COMPILE_TEST)
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02002012 select FB_CFB_FILLRECT
2013 select FB_CFB_COPYAREA
2014 select FB_CFB_IMAGEBLIT
2015 ---help---
2016 Frame buffer driver for the Toshiba Mobile IO integrated as found
2017 on the Sharp SL-6000 series
2018
2019 This driver is also available as a module ( = code which can be
2020 inserted and removed from the running kernel whenever you want). The
2021 module will be called tmiofb. If you want to compile it as a module,
2022 say M here and read <file:Documentation/kbuild/modules.txt>.
2023
2024 If unsure, say N.
2025
2026config FB_TMIO_ACCELL
2027 bool "tmiofb acceleration"
2028 depends on FB_TMIO
2029 default y
2030
2031config FB_S3C
2032 tristate "Samsung S3C framebuffer support"
2033 depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || ARCH_S5P64X0 || \
2034 ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
2035 select FB_CFB_FILLRECT
2036 select FB_CFB_COPYAREA
2037 select FB_CFB_IMAGEBLIT
2038 ---help---
2039 Frame buffer driver for the built-in FB controller in the Samsung
2040 SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
2041 and the S3C64XX series such as the S3C6400 and S3C6410.
2042
2043 These chips all have the same basic framebuffer design with the
2044 actual capabilities depending on the chip. For instance the S3C6400
2045 and S3C6410 support 4 hardware windows whereas the S3C24XX series
2046 currently only have two.
2047
2048 Currently the support is only for the S3C6400 and S3C6410 SoCs.
2049
2050config FB_S3C_DEBUG_REGWRITE
2051 bool "Debug register writes"
2052 depends on FB_S3C
2053 ---help---
2054 Show all register writes via pr_debug()
2055
2056config FB_S3C2410
2057 tristate "S3C2410 LCD framebuffer support"
2058 depends on FB && ARCH_S3C24XX
2059 select FB_CFB_FILLRECT
2060 select FB_CFB_COPYAREA
2061 select FB_CFB_IMAGEBLIT
2062 ---help---
2063 Frame buffer driver for the built-in LCD controller in the Samsung
2064 S3C2410 processor.
2065
2066 This driver is also available as a module ( = code which can be
2067 inserted and removed from the running kernel whenever you want). The
2068 module will be called s3c2410fb. If you want to compile it as a module,
2069 say M here and read <file:Documentation/kbuild/modules.txt>.
2070
2071 If unsure, say N.
2072config FB_S3C2410_DEBUG
2073 bool "S3C2410 lcd debug messages"
2074 depends on FB_S3C2410
2075 help
2076 Turn on debugging messages. Note that you can set/unset at run time
2077 through sysfs
2078
2079config FB_NUC900
Arnd Bergmanne3e11f52014-04-24 13:28:27 +01002080 tristate "NUC900 LCD framebuffer support"
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02002081 depends on FB && ARCH_W90X900
2082 select FB_CFB_FILLRECT
2083 select FB_CFB_COPYAREA
2084 select FB_CFB_IMAGEBLIT
2085 ---help---
2086 Frame buffer driver for the built-in LCD controller in the Nuvoton
2087 NUC900 processor
2088
2089config GPM1040A0_320X240
2090 bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
2091 depends on FB_NUC900
2092
2093config FB_SM501
2094 tristate "Silicon Motion SM501 framebuffer support"
2095 depends on FB && MFD_SM501
2096 select FB_CFB_FILLRECT
2097 select FB_CFB_COPYAREA
2098 select FB_CFB_IMAGEBLIT
2099 ---help---
2100 Frame buffer driver for the CRT and LCD controllers in the Silicon
2101 Motion SM501.
2102
2103 This driver is also available as a module ( = code which can be
2104 inserted and removed from the running kernel whenever you want). The
2105 module will be called sm501fb. If you want to compile it as a module,
2106 say M here and read <file:Documentation/kbuild/modules.txt>.
2107
2108 If unsure, say N.
2109
2110config FB_SMSCUFX
2111 tristate "SMSC UFX6000/7000 USB Framebuffer support"
2112 depends on FB && USB
2113 select FB_MODE_HELPERS
2114 select FB_SYS_FILLRECT
2115 select FB_SYS_COPYAREA
2116 select FB_SYS_IMAGEBLIT
2117 select FB_SYS_FOPS
2118 select FB_DEFERRED_IO
2119 ---help---
2120 This is a kernel framebuffer driver for SMSC UFX USB devices.
2121 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2122 mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
2123 (USB 3.0) devices.
2124 To compile as a module, choose M here: the module name is smscufx.
2125
2126config FB_UDL
2127 tristate "Displaylink USB Framebuffer support"
2128 depends on FB && USB
2129 select FB_MODE_HELPERS
2130 select FB_SYS_FILLRECT
2131 select FB_SYS_COPYAREA
2132 select FB_SYS_IMAGEBLIT
2133 select FB_SYS_FOPS
2134 select FB_DEFERRED_IO
2135 ---help---
2136 This is a kernel framebuffer driver for DisplayLink USB devices.
2137 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2138 mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
2139 To compile as a module, choose M here: the module name is udlfb.
2140
2141config FB_IBM_GXT4500
2142 tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors"
2143 depends on FB && PPC
2144 select FB_CFB_FILLRECT
2145 select FB_CFB_COPYAREA
2146 select FB_CFB_IMAGEBLIT
2147 ---help---
2148 Say Y here to enable support for the IBM GXT4000P/6000P and
2149 GXT4500P/6500P display adaptor based on Raster Engine RC1000,
2150 found on some IBM System P (pSeries) machines. This driver
2151 doesn't use Geometry Engine GT1000.
2152
2153config FB_PS3
2154 tristate "PS3 GPU framebuffer driver"
2155 depends on FB && PS3_PS3AV
2156 select FB_SYS_FILLRECT
2157 select FB_SYS_COPYAREA
2158 select FB_SYS_IMAGEBLIT
2159 select FB_SYS_FOPS
2160 select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
2161 ---help---
2162 Include support for the virtual frame buffer in the PS3 platform.
2163
2164config FB_PS3_DEFAULT_SIZE_M
2165 int "PS3 default frame buffer size (in MiB)"
2166 depends on FB_PS3
2167 default 9
2168 ---help---
2169 This is the default size (in MiB) of the virtual frame buffer in
2170 the PS3.
2171 The default value can be overridden on the kernel command line
2172 using the "ps3fb" option (e.g. "ps3fb=9M");
2173
2174config FB_XILINX
2175 tristate "Xilinx frame buffer support"
2176 depends on FB && (XILINX_VIRTEX || MICROBLAZE || ARCH_ZYNQ)
2177 select FB_CFB_FILLRECT
2178 select FB_CFB_COPYAREA
2179 select FB_CFB_IMAGEBLIT
2180 ---help---
2181 Include support for the Xilinx ML300/ML403 reference design
2182 framebuffer. ML300 carries a 640*480 LCD display on the board,
2183 ML403 uses a standard DB15 VGA connector.
2184
2185config FB_GOLDFISH
2186 tristate "Goldfish Framebuffer"
Jean Delvare632de702014-04-23 12:42:10 +02002187 depends on FB && HAS_DMA && (GOLDFISH || COMPILE_TEST)
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02002188 select FB_CFB_FILLRECT
2189 select FB_CFB_COPYAREA
2190 select FB_CFB_IMAGEBLIT
2191 ---help---
2192 Framebuffer driver for Goldfish Virtual Platform
2193
2194config FB_COBALT
2195 tristate "Cobalt server LCD frame buffer support"
2196 depends on FB && (MIPS_COBALT || MIPS_SEAD3)
2197
2198config FB_SH7760
2199 bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
2200 depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
2201 || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
2202 select FB_CFB_FILLRECT
2203 select FB_CFB_COPYAREA
2204 select FB_CFB_IMAGEBLIT
2205 ---help---
2206 Support for the SH7760/SH7763/SH7720/SH7721 integrated
2207 (D)STN/TFT LCD Controller.
2208 Supports display resolutions up to 1024x1024 pixel, grayscale and
2209 color operation, with depths ranging from 1 bpp to 8 bpp monochrome
2210 and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
2211 panels <= 320 pixel horizontal resolution.
2212
2213config FB_DA8XX
2214 tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support"
2215 depends on FB && (ARCH_DAVINCI_DA8XX || SOC_AM33XX)
2216 select FB_CFB_FILLRECT
2217 select FB_CFB_COPYAREA
2218 select FB_CFB_IMAGEBLIT
2219 select FB_CFB_REV_PIXELS_IN_BYTE
2220 select FB_MODE_HELPERS
2221 select VIDEOMODE_HELPERS
2222 ---help---
2223 This is the frame buffer device driver for the TI LCD controller
2224 found on DA8xx/OMAP-L1xx/AM335x SoCs.
2225 If unsure, say N.
2226
2227config FB_VIRTUAL
2228 tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
2229 depends on FB
2230 select FB_SYS_FILLRECT
2231 select FB_SYS_COPYAREA
2232 select FB_SYS_IMAGEBLIT
2233 select FB_SYS_FOPS
2234 ---help---
2235 This is a `virtual' frame buffer device. It operates on a chunk of
2236 unswappable kernel memory instead of on the memory of a graphics
2237 board. This means you cannot see any output sent to this frame
2238 buffer device, while it does consume precious memory. The main use
2239 of this frame buffer device is testing and debugging the frame
2240 buffer subsystem. Do NOT enable it for normal systems! To protect
2241 the innocent, it has to be enabled explicitly at boot time using the
2242 kernel option `video=vfb:'.
2243
2244 To compile this driver as a module, choose M here: the
2245 module will be called vfb. In order to load it, you must use
2246 the vfb_enable=1 option.
2247
2248 If unsure, say N.
2249
2250config XEN_FBDEV_FRONTEND
2251 tristate "Xen virtual frame buffer support"
2252 depends on FB && XEN
2253 select FB_SYS_FILLRECT
2254 select FB_SYS_COPYAREA
2255 select FB_SYS_IMAGEBLIT
2256 select FB_SYS_FOPS
2257 select FB_DEFERRED_IO
2258 select INPUT_XEN_KBDDEV_FRONTEND if INPUT_MISC
2259 select XEN_XENBUS_FRONTEND
2260 default y
2261 help
2262 This driver implements the front-end of the Xen virtual
2263 frame buffer driver. It communicates with a back-end
2264 in another domain.
2265
2266config FB_METRONOME
2267 tristate "E-Ink Metronome/8track controller support"
2268 depends on FB
2269 select FB_SYS_FILLRECT
2270 select FB_SYS_COPYAREA
2271 select FB_SYS_IMAGEBLIT
2272 select FB_SYS_FOPS
2273 select FB_DEFERRED_IO
2274 help
2275 This driver implements support for the E-Ink Metronome
2276 controller. The pre-release name for this device was 8track
2277 and could also have been called by some vendors as PVI-nnnn.
2278
2279config FB_MB862XX
2280 tristate "Fujitsu MB862xx GDC support"
2281 depends on FB
2282 depends on PCI || (OF && PPC)
2283 select FB_CFB_FILLRECT
2284 select FB_CFB_COPYAREA
2285 select FB_CFB_IMAGEBLIT
2286 ---help---
2287 Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
2288
2289choice
2290 prompt "GDC variant"
2291 depends on FB_MB862XX
2292
2293config FB_MB862XX_PCI_GDC
2294 bool "Carmine/Coral-P(A) GDC"
2295 depends on PCI
2296 ---help---
2297 This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
2298 PCI graphics controller devices.
2299
2300config FB_MB862XX_LIME
2301 bool "Lime GDC"
2302 depends on OF && PPC
2303 select FB_FOREIGN_ENDIAN
2304 select FB_LITTLE_ENDIAN
2305 ---help---
2306 Framebuffer support for Fujitsu Lime GDC on host CPU bus.
2307
2308endchoice
2309
2310config FB_MB862XX_I2C
2311 bool "Support I2C bus on MB862XX GDC"
2312 depends on FB_MB862XX && I2C
Arnd Bergmannf7200b62014-04-24 13:28:19 +01002313 depends on FB_MB862XX=m || I2C=y
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02002314 default y
2315 help
2316 Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
2317 driver to support accessing I2C devices on controller's I2C bus.
2318 These are usually some video decoder chips.
2319
2320config FB_EP93XX
2321 tristate "EP93XX frame buffer support"
2322 depends on FB && ARCH_EP93XX
2323 select FB_CFB_FILLRECT
2324 select FB_CFB_COPYAREA
2325 select FB_CFB_IMAGEBLIT
2326 ---help---
2327 Framebuffer driver for the Cirrus Logic EP93XX series of processors.
2328 This driver is also available as a module. The module will be called
2329 ep93xx-fb.
2330
2331config FB_PRE_INIT_FB
2332 bool "Don't reinitialize, use bootloader's GDC/Display configuration"
2333 depends on FB && FB_MB862XX_LIME
2334 ---help---
2335 Select this option if display contents should be inherited as set by
2336 the bootloader.
2337
2338config FB_MSM
2339 tristate "MSM Framebuffer support"
2340 depends on FB && ARCH_MSM
2341 select FB_CFB_FILLRECT
2342 select FB_CFB_COPYAREA
2343 select FB_CFB_IMAGEBLIT
2344
2345config FB_MX3
2346 tristate "MX3 Framebuffer support"
2347 depends on FB && MX3_IPU
2348 select FB_CFB_FILLRECT
2349 select FB_CFB_COPYAREA
2350 select FB_CFB_IMAGEBLIT
Alexander Stein7edaa762014-05-12 08:34:14 +02002351 select BACKLIGHT_CLASS_DEVICE
Tomi Valkeinenf7018c22014-02-13 15:31:38 +02002352 default y
2353 help
2354 This is a framebuffer device for the i.MX31 LCD Controller. So
2355 far only synchronous displays are supported. If you plan to use
2356 an LCD display with your i.MX31 system, say Y here.
2357
2358config FB_BROADSHEET
2359 tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
2360 depends on FB
2361 select FB_SYS_FILLRECT
2362 select FB_SYS_COPYAREA
2363 select FB_SYS_IMAGEBLIT
2364 select FB_SYS_FOPS
2365 select FB_DEFERRED_IO
2366 help
2367 This driver implements support for the E-Ink Broadsheet
2368 controller. The release name for this device was Epson S1D13521
2369 and could also have been called by other names when coupled with
2370 a bridge adapter.
2371
2372config FB_AUO_K190X
2373 tristate "AUO-K190X EPD controller support"
2374 depends on FB
2375 select FB_SYS_FILLRECT
2376 select FB_SYS_COPYAREA
2377 select FB_SYS_IMAGEBLIT
2378 select FB_SYS_FOPS
2379 select FB_DEFERRED_IO
2380 help
2381 Provides support for epaper controllers from the K190X series
2382 of AUO. These controllers can be used to drive epaper displays
2383 from Sipix.
2384
2385 This option enables the common support, shared by the individual
2386 controller drivers. You will also have to enable the driver
2387 for the controller type used in your device.
2388
2389config FB_AUO_K1900
2390 tristate "AUO-K1900 EPD controller support"
2391 depends on FB && FB_AUO_K190X
2392 help
2393 This driver implements support for the AUO K1900 epd-controller.
2394 This controller can drive Sipix epaper displays but can only do
2395 serial updates, reducing the number of possible frames per second.
2396
2397config FB_AUO_K1901
2398 tristate "AUO-K1901 EPD controller support"
2399 depends on FB && FB_AUO_K190X
2400 help
2401 This driver implements support for the AUO K1901 epd-controller.
2402 This controller can drive Sipix epaper displays and supports
2403 concurrent updates, making higher frames per second possible.
2404
2405config FB_JZ4740
2406 tristate "JZ4740 LCD framebuffer support"
2407 depends on FB && MACH_JZ4740
2408 select FB_SYS_FILLRECT
2409 select FB_SYS_COPYAREA
2410 select FB_SYS_IMAGEBLIT
2411 help
2412 Framebuffer support for the JZ4740 SoC.
2413
2414config FB_MXS
2415 tristate "MXS LCD framebuffer support"
2416 depends on FB && ARCH_MXS
2417 select FB_CFB_FILLRECT
2418 select FB_CFB_COPYAREA
2419 select FB_CFB_IMAGEBLIT
2420 select FB_MODE_HELPERS
2421 select VIDEOMODE_HELPERS
2422 help
2423 Framebuffer support for the MXS SoC.
2424
2425config FB_PUV3_UNIGFX
2426 tristate "PKUnity v3 Unigfx framebuffer support"
2427 depends on FB && UNICORE32 && ARCH_PUV3
2428 select FB_SYS_FILLRECT
2429 select FB_SYS_COPYAREA
2430 select FB_SYS_IMAGEBLIT
2431 select FB_SYS_FOPS
2432 help
2433 Choose this option if you want to use the Unigfx device as a
2434 framebuffer device. Without the support of PCI & AGP.
2435
2436config FB_HYPERV
2437 tristate "Microsoft Hyper-V Synthetic Video support"
2438 depends on FB && HYPERV
2439 select FB_CFB_FILLRECT
2440 select FB_CFB_COPYAREA
2441 select FB_CFB_IMAGEBLIT
2442 help
2443 This framebuffer driver supports Microsoft Hyper-V Synthetic Video.
2444
2445config FB_SIMPLE
2446 bool "Simple framebuffer support"
2447 depends on (FB = y)
2448 select FB_CFB_FILLRECT
2449 select FB_CFB_COPYAREA
2450 select FB_CFB_IMAGEBLIT
2451 help
2452 Say Y if you want support for a simple frame-buffer.
2453
2454 This driver assumes that the display hardware has been initialized
2455 before the kernel boots, and the kernel will simply render to the
2456 pre-allocated frame buffer surface.
2457
2458 Configuration re: surface address, size, and format must be provided
2459 through device tree, or plain old platform data.
2460
2461source "drivers/video/fbdev/omap/Kconfig"
2462source "drivers/video/fbdev/omap2/Kconfig"
2463source "drivers/video/fbdev/exynos/Kconfig"
2464source "drivers/video/fbdev/mmp/Kconfig"
2465
2466config FB_SH_MOBILE_MERAM
2467 tristate "SuperH Mobile MERAM read ahead support"
2468 depends on (SUPERH || ARCH_SHMOBILE)
2469 select GENERIC_ALLOCATOR
2470 ---help---
2471 Enable MERAM support for the SuperH controller.
2472
2473 This will allow for caching of the framebuffer to provide more
2474 reliable access under heavy main memory bus traffic situations.
2475 Up to 4 memory channels can be configured, allowing 4 RGB or
2476 2 YCbCr framebuffers to be configured.
2477
2478config FB_SSD1307
2479 tristate "Solomon SSD1307 framebuffer support"
2480 depends on FB && I2C
2481 depends on OF
2482 depends on GPIOLIB
2483 select FB_SYS_FOPS
2484 select FB_SYS_FILLRECT
2485 select FB_SYS_COPYAREA
2486 select FB_SYS_IMAGEBLIT
2487 select FB_DEFERRED_IO
2488 select PWM
2489 help
2490 This driver implements support for the Solomon SSD1307
2491 OLED controller over I2C.