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