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