xref: /linux/drivers/video/fbdev/Kconfig (revision e0f05e643eb1ff9588d38c46ad12ff74efb09959)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
2f7018c21STomi Valkeinen#
3f7018c21STomi Valkeinen# fbdev configuration
4f7018c21STomi Valkeinen#
5f7018c21STomi Valkeinen
6f7018c21STomi Valkeinenmenuconfig FB
755bffc81SJavier Martinez Canillas	tristate "Support for frame buffer device drivers"
855bffc81SJavier Martinez Canillas	select FB_CORE
95ec96538SEzequiel Garcia	select FB_NOTIFY
10a7f7f624SMasahiro Yamada	help
11f7018c21STomi Valkeinen	  The frame buffer device provides an abstraction for the graphics
12f7018c21STomi Valkeinen	  hardware. It represents the frame buffer of some video hardware and
13f7018c21STomi Valkeinen	  allows application software to access the graphics hardware through
14f7018c21STomi Valkeinen	  a well-defined interface, so the software doesn't need to know
15f7018c21STomi Valkeinen	  anything about the low-level (hardware register) stuff.
16f7018c21STomi Valkeinen
17f7018c21STomi Valkeinen	  Frame buffer devices work identically across the different
18f7018c21STomi Valkeinen	  architectures supported by Linux and make the implementation of
19f7018c21STomi Valkeinen	  application programs easier and more portable; at this point, an X
20f7018c21STomi Valkeinen	  server exists which uses the frame buffer device exclusively.
21f7018c21STomi Valkeinen	  On several non-X86 architectures, the frame buffer device is the
22f7018c21STomi Valkeinen	  only way to use the graphics hardware.
23f7018c21STomi Valkeinen
24f7018c21STomi Valkeinen	  The device is accessed through special device nodes, usually located
25f7018c21STomi Valkeinen	  in the /dev directory, i.e. /dev/fb*.
26f7018c21STomi Valkeinen
27f7018c21STomi Valkeinen	  You need an utility program called fbset to make full use of frame
28ab42b818SMauro Carvalho Chehab	  buffer devices. Please read <file:Documentation/fb/framebuffer.rst>
29f7018c21STomi Valkeinen	  and the Framebuffer-HOWTO at
30f7018c21STomi Valkeinen	  <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
31f7018c21STomi Valkeinen	  information.
32f7018c21STomi Valkeinen
3355bffc81SJavier Martinez Canillas	  This enables support for native frame buffer device (fbdev) drivers.
3455bffc81SJavier Martinez Canillas
3555bffc81SJavier Martinez Canillas	  The DRM subsystem provides support for emulated frame buffer devices
3655bffc81SJavier Martinez Canillas	  on top of KMS drivers, but this option allows legacy fbdev drivers to
3755bffc81SJavier Martinez Canillas	  be enabled as well.
3855bffc81SJavier Martinez Canillas
39f7018c21STomi Valkeinen	  Say Y here and to the driver for your graphics board below if you
40f7018c21STomi Valkeinen	  are compiling a kernel for a non-x86 architecture.
41f7018c21STomi Valkeinen
42f7018c21STomi Valkeinen	  If you are compiling for the x86 architecture, you can say Y if you
43f7018c21STomi Valkeinen	  want to play with it, but it is not essential. Please note that
44f7018c21STomi Valkeinen	  running graphical applications that directly touch the hardware
45f7018c21STomi Valkeinen	  (e.g. an accelerated X server) and that are not frame buffer
46f7018c21STomi Valkeinen	  device-aware may cause unexpected results. If unsure, say N.
47f7018c21STomi Valkeinen
48f7018c21STomi Valkeinenconfig FB_HECUBA
49f7018c21STomi Valkeinen	tristate
50f7018c21STomi Valkeinen	depends on FB
51cd8a064fSThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
52f7018c21STomi Valkeinen
53f7018c21STomi Valkeinenconfig FB_SVGALIB
54f7018c21STomi Valkeinen	tristate
55f7018c21STomi Valkeinen	depends on FB
56a7f7f624SMasahiro Yamada	help
57f7018c21STomi Valkeinen	  Common utility functions useful to fbdev drivers of VGA-based
58f7018c21STomi Valkeinen	  cards.
59f7018c21STomi Valkeinen
60f7018c21STomi Valkeinenconfig FB_MACMODES
61f7018c21STomi Valkeinen	tristate
62f7018c21STomi Valkeinen	depends on FB
63f7018c21STomi Valkeinen
64f7018c21STomi Valkeinenconfig FB_GRVGA
65f7018c21STomi Valkeinen	tristate "Aeroflex Gaisler framebuffer support"
66f7018c21STomi Valkeinen	depends on FB && SPARC
677a0d2c4cSThomas Zimmermann	select FB_IOMEM_HELPERS
68a7f7f624SMasahiro Yamada	help
69f7018c21STomi Valkeinen	  This enables support for the SVGACTRL framebuffer in the GRLIB IP library from Aeroflex Gaisler.
70f7018c21STomi Valkeinen
71f7018c21STomi Valkeinenconfig FB_CIRRUS
72f7018c21STomi Valkeinen	tristate "Cirrus Logic support"
73f7018c21STomi Valkeinen	depends on FB && (ZORRO || PCI)
74f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
75f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
76f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
770296ddfeSThomas Zimmermann	select FB_IOMEM_FOPS
780ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
79a7f7f624SMasahiro Yamada	help
80f7018c21STomi Valkeinen	  This enables support for Cirrus Logic GD542x/543x based boards on
81f7018c21STomi Valkeinen	  Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
82f7018c21STomi Valkeinen
83f7018c21STomi Valkeinen	  If you have a PCI-based system, this enables support for these
84f7018c21STomi Valkeinen	  chips: GD-543x, GD-544x, GD-5480.
85f7018c21STomi Valkeinen
86ab42b818SMauro Carvalho Chehab	  Please read the file <file:Documentation/fb/cirrusfb.rst>.
87f7018c21STomi Valkeinen
88f7018c21STomi Valkeinen	  Say N unless you have such a graphics board or plan to get one
89f7018c21STomi Valkeinen	  before you next recompile the kernel.
90f7018c21STomi Valkeinen
91f7018c21STomi Valkeinenconfig FB_PM2
92f7018c21STomi Valkeinen	tristate "Permedia2 support"
93f7018c21STomi Valkeinen	depends on FB && ((AMIGA && BROKEN) || PCI)
94f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
95f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
96f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
97a9b0061fSThomas Zimmermann	select FB_IOMEM_FOPS
980ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
99f7018c21STomi Valkeinen	help
100f7018c21STomi Valkeinen	  This is the frame buffer device driver for cards based on
101f7018c21STomi Valkeinen	  the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
102f7018c21STomi Valkeinen	  The driver was tested on the following cards:
103f7018c21STomi Valkeinen		Diamond FireGL 1000 PRO AGP
104f7018c21STomi Valkeinen		ELSA Gloria Synergy PCI
105f7018c21STomi Valkeinen		Appian Jeronimo PRO (both heads) PCI
106f7018c21STomi Valkeinen		3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
107f7018c21STomi Valkeinen		Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
108f7018c21STomi Valkeinen		ASK Graphic Blaster Exxtreme AGP
109f7018c21STomi Valkeinen
110f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
111f7018c21STomi Valkeinen	  module will be called pm2fb.
112f7018c21STomi Valkeinen
113f7018c21STomi Valkeinenconfig FB_PM2_FIFO_DISCONNECT
114f7018c21STomi Valkeinen	bool "enable FIFO disconnect feature"
115f7018c21STomi Valkeinen	depends on FB_PM2 && PCI
116f7018c21STomi Valkeinen	help
117f7018c21STomi Valkeinen	  Support the Permedia2 FIFO disconnect feature.
118f7018c21STomi Valkeinen
119112c3523SPeter Collingbourneconfig FB_ARMCLCD
120112c3523SPeter Collingbourne	tristate "ARM PrimeCell PL110 support"
121112c3523SPeter Collingbourne	depends on ARM || ARM64 || COMPILE_TEST
122112c3523SPeter Collingbourne	depends on FB && ARM_AMBA && HAS_IOMEM
123b910005cSThomas Zimmermann	select FB_IOMEM_HELPERS
124112c3523SPeter Collingbourne	select FB_MODE_HELPERS if OF
125112c3523SPeter Collingbourne	select VIDEOMODE_HELPERS if OF
126112c3523SPeter Collingbourne	select BACKLIGHT_CLASS_DEVICE if OF
127112c3523SPeter Collingbourne	help
128112c3523SPeter Collingbourne	  This framebuffer device driver is for the ARM PrimeCell PL110
129112c3523SPeter Collingbourne	  Colour LCD controller.  ARM PrimeCells provide the building
130112c3523SPeter Collingbourne	  blocks for System on a Chip devices.
131112c3523SPeter Collingbourne
132112c3523SPeter Collingbourne	  If you want to compile this as a module (=code which can be
133112c3523SPeter Collingbourne	  inserted into and removed from the running kernel), say M
134112c3523SPeter Collingbourne	  here and read <file:Documentation/kbuild/modules.rst>.  The module
135112c3523SPeter Collingbourne	  will be called amba-clcd.
136112c3523SPeter Collingbourne
137f7018c21STomi Valkeinenconfig FB_ACORN
138f7018c21STomi Valkeinen	bool "Acorn VIDC support"
139f7018c21STomi Valkeinen	depends on (FB = y) && ARM && ARCH_ACORN
1409037afdeSThomas Zimmermann	select FB_IOMEM_HELPERS
141f7018c21STomi Valkeinen	help
142f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Acorn VIDC graphics
143f7018c21STomi Valkeinen	  hardware found in Acorn RISC PCs and other ARM-based machines.  If
144f7018c21STomi Valkeinen	  unsure, say N.
145f7018c21STomi Valkeinen
146ef74d46aSAlexander Shiyanconfig FB_CLPS711X
147ef74d46aSAlexander Shiyan	tristate "CLPS711X LCD support"
148ef74d46aSAlexander Shiyan	depends on FB && (ARCH_CLPS711X || COMPILE_TEST)
149dec2d609SThomas Zimmermann	select FB_IOMEM_HELPERS
150ef74d46aSAlexander Shiyan	select FB_MODE_HELPERS
151ef74d46aSAlexander Shiyan	select LCD_CLASS_DEVICE
152ef74d46aSAlexander Shiyan	select VIDEOMODE_HELPERS
153f7018c21STomi Valkeinen	help
154ef74d46aSAlexander Shiyan	  Say Y to enable the Framebuffer driver for the Cirrus Logic
155ef74d46aSAlexander Shiyan	  CLPS711X CPUs.
156f7018c21STomi Valkeinen
157f7018c21STomi Valkeinenconfig FB_SA1100
158f7018c21STomi Valkeinen	bool "SA-1100 LCD support"
159f7018c21STomi Valkeinen	depends on (FB = y) && ARM && ARCH_SA1100
1603bf4f1b3SThomas Zimmermann	select FB_IOMEM_HELPERS
161f7018c21STomi Valkeinen	help
162f7018c21STomi Valkeinen	  This is a framebuffer device for the SA-1100 LCD Controller.
163f7018c21STomi Valkeinen	  See <http://www.linux-fbdev.org/> for information on framebuffer
164f7018c21STomi Valkeinen	  devices.
165f7018c21STomi Valkeinen
166f7018c21STomi Valkeinen	  If you plan to use the LCD display with your SA-1100 system, say
167f7018c21STomi Valkeinen	  Y here.
168f7018c21STomi Valkeinen
169f7018c21STomi Valkeinenconfig FB_IMX
170f7018c21STomi Valkeinen	tristate "Freescale i.MX1/21/25/27 LCD support"
171b90b279eSBartlomiej Zolnierkiewicz	depends on FB && HAVE_CLK && HAS_IOMEM
172b90b279eSBartlomiej Zolnierkiewicz	depends on ARCH_MXC || COMPILE_TEST
173f7018c21STomi Valkeinen	select LCD_CLASS_DEVICE
1744df6457cSThomas Zimmermann	select FB_IOMEM_HELPERS
175f7018c21STomi Valkeinen	select FB_MODE_HELPERS
176f7018c21STomi Valkeinen	select VIDEOMODE_HELPERS
177f7018c21STomi Valkeinen
178f7018c21STomi Valkeinenconfig FB_CYBER2000
179f7018c21STomi Valkeinen	tristate "CyberPro 2000/2010/5000 support"
180f7018c21STomi Valkeinen	depends on FB && PCI && (BROKEN || !SPARC64)
181*e0f05e64SThomas Zimmermann	select FB_IOMEM_HELPERS
1820ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
183f7018c21STomi Valkeinen	help
184f7018c21STomi Valkeinen	  This enables support for the Integraphics CyberPro 20x0 and 5000
185f7018c21STomi Valkeinen	  VGA chips used in the Rebel.com Netwinder and other machines.
186f7018c21STomi Valkeinen	  Say Y if you have a NetWinder or a graphics card containing this
187f7018c21STomi Valkeinen	  device, otherwise say N.
188f7018c21STomi Valkeinen
189f7018c21STomi Valkeinenconfig FB_CYBER2000_DDC
190f7018c21STomi Valkeinen	bool "DDC for CyberPro support"
191f7018c21STomi Valkeinen	depends on FB_CYBER2000
192f7018c21STomi Valkeinen	select FB_DDC
193f7018c21STomi Valkeinen	default y
194f7018c21STomi Valkeinen	help
195f7018c21STomi Valkeinen	  Say Y here if you want DDC support for your CyberPro graphics
196f7018c21STomi Valkeinen	  card. This is only I2C bus support, driver does not use EDID.
197f7018c21STomi Valkeinen
198f7018c21STomi Valkeinenconfig FB_CYBER2000_I2C
199f7018c21STomi Valkeinen	bool "CyberPro 2000/2010/5000 I2C support"
200f7018c21STomi Valkeinen	depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
201f7200b68SArnd Bergmann	depends on I2C=y || FB_CYBER2000=m
202f7018c21STomi Valkeinen	select I2C_ALGOBIT
203f7018c21STomi Valkeinen	help
204f7018c21STomi Valkeinen	  Enable support for the I2C video decoder interface on the
205f7018c21STomi Valkeinen	  Integraphics CyberPro 20x0 and 5000 VGA chips.  This is used
206f7018c21STomi Valkeinen	  on the Netwinder machines for the SAA7111 video capture.
207f7018c21STomi Valkeinen
208f7018c21STomi Valkeinenconfig FB_APOLLO
209f7018c21STomi Valkeinen	bool
210f7018c21STomi Valkeinen	depends on (FB = y) && APOLLO
211f7018c21STomi Valkeinen	default y
212f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
213f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
214a7942a32SThomas Zimmermann	select FB_IOMEM_FOPS
215f7018c21STomi Valkeinen
216f7018c21STomi Valkeinenconfig FB_Q40
217f7018c21STomi Valkeinen	bool
218f7018c21STomi Valkeinen	depends on (FB = y) && Q40
219f7018c21STomi Valkeinen	default y
220d88e49adSThomas Zimmermann	select FB_IOMEM_HELPERS
221f7018c21STomi Valkeinen
222f7018c21STomi Valkeinenconfig FB_AMIGA
223f7018c21STomi Valkeinen	tristate "Amiga native chipset support"
224f7018c21STomi Valkeinen	depends on FB && AMIGA
22548c3734dSThomas Zimmermann	select FB_IOMEM_FOPS
226f7018c21STomi Valkeinen	help
227f7018c21STomi Valkeinen	  This is the frame buffer device driver for the builtin graphics
228f7018c21STomi Valkeinen	  chipset found in Amigas.
229f7018c21STomi Valkeinen
230f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
231f7018c21STomi Valkeinen	  module will be called amifb.
232f7018c21STomi Valkeinen
233f7018c21STomi Valkeinenconfig FB_AMIGA_OCS
234f7018c21STomi Valkeinen	bool "Amiga OCS chipset support"
235f7018c21STomi Valkeinen	depends on FB_AMIGA
236f7018c21STomi Valkeinen	help
237f7018c21STomi Valkeinen	  This enables support for the original Agnus and Denise video chips,
238f7018c21STomi Valkeinen	  found in the Amiga 1000 and most A500's and A2000's. If you intend
239f7018c21STomi Valkeinen	  to run Linux on any of these systems, say Y; otherwise say N.
240f7018c21STomi Valkeinen
241f7018c21STomi Valkeinenconfig FB_AMIGA_ECS
242f7018c21STomi Valkeinen	bool "Amiga ECS chipset support"
243f7018c21STomi Valkeinen	depends on FB_AMIGA
244f7018c21STomi Valkeinen	help
245f7018c21STomi Valkeinen	  This enables support for the Enhanced Chip Set, found in later
246f7018c21STomi Valkeinen	  A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
247f7018c21STomi Valkeinen	  you intend to run Linux on any of these systems, say Y; otherwise
248f7018c21STomi Valkeinen	  say N.
249f7018c21STomi Valkeinen
250f7018c21STomi Valkeinenconfig FB_AMIGA_AGA
251f7018c21STomi Valkeinen	bool "Amiga AGA chipset support"
252f7018c21STomi Valkeinen	depends on FB_AMIGA
253f7018c21STomi Valkeinen	help
254f7018c21STomi Valkeinen	  This enables support for the Advanced Graphics Architecture (also
255f7018c21STomi Valkeinen	  known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
256f7018c21STomi Valkeinen	  and CD32. If you intend to run Linux on any of these systems, say Y;
257f7018c21STomi Valkeinen	  otherwise say N.
258f7018c21STomi Valkeinen
259f7018c21STomi Valkeinenconfig FB_FM2
260f7018c21STomi Valkeinen	bool "Amiga FrameMaster II/Rainbow II support"
261f7018c21STomi Valkeinen	depends on (FB = y) && ZORRO
262210bbb71SThomas Zimmermann	select FB_IOMEM_HELPERS
263f7018c21STomi Valkeinen	help
264f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Amiga FrameMaster
265f7018c21STomi Valkeinen	  card from BSC (exhibited 1992 but not shipped as a CBM product).
266f7018c21STomi Valkeinen
267f7018c21STomi Valkeinenconfig FB_ARC
268f7018c21STomi Valkeinen	tristate "Arc Monochrome LCD board support"
2693d3287e6SBartlomiej Zolnierkiewicz	depends on FB && (X86 || COMPILE_TEST)
27028f57d03SThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
271f7018c21STomi Valkeinen	help
272f7018c21STomi Valkeinen	  This enables support for the Arc Monochrome LCD board. The board
273f7018c21STomi Valkeinen	  is based on the KS-108 lcd controller and is typically a matrix
274f7018c21STomi Valkeinen	  of 2*n chips. This driver was tested with a 128x64 panel. This
275f7018c21STomi Valkeinen	  driver supports it for use with x86 SBCs through a 16 bit GPIO
276f7018c21STomi Valkeinen	  interface (8 bit data, 8 bit control). If you anticipate using
277f7018c21STomi Valkeinen	  this driver, say Y or M; otherwise say N. You must specify the
278f7018c21STomi Valkeinen	  GPIO IO address to be used for setting control and data.
279f7018c21STomi Valkeinen
280f7018c21STomi Valkeinenconfig FB_ATARI
281f7018c21STomi Valkeinen	bool "Atari native chipset support"
282f7018c21STomi Valkeinen	depends on (FB = y) && ATARI
283f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
284f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
285f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
286425562beSThomas Zimmermann	select FB_IOMEM_FOPS
287f7018c21STomi Valkeinen	help
288f7018c21STomi Valkeinen	  This is the frame buffer device driver for the builtin graphics
289f7018c21STomi Valkeinen	  chipset found in Ataris.
290f7018c21STomi Valkeinen
291f7018c21STomi Valkeinenconfig FB_OF
2929d8b5376SRandy Dunlap	tristate "Open Firmware frame buffer device support"
2939d8b5376SRandy Dunlap	depends on FB && PPC && (!PPC_PSERIES || PCI)
294c8a17756SThomas Zimmermann	depends on !DRM_OFDRM
2957283f862SThomas Zimmermann	select APERTURE_HELPERS
296a5cd280bSThomas Zimmermann	select FB_IOMEM_HELPERS
297f7018c21STomi Valkeinen	select FB_MACMODES
298f7018c21STomi Valkeinen	help
299f7018c21STomi Valkeinen	  Say Y if you want support with Open Firmware for your graphics
300f7018c21STomi Valkeinen	  board.
301f7018c21STomi Valkeinen
302f7018c21STomi Valkeinenconfig FB_CONTROL
303f7018c21STomi Valkeinen	bool "Apple \"control\" display support"
304a07a63b0SBartlomiej Zolnierkiewicz	depends on (FB = y) && ((PPC_PMAC && PPC32) || COMPILE_TEST)
305076b705dSThomas Zimmermann	select FB_IOMEM_HELPERS
306f7018c21STomi Valkeinen	select FB_MACMODES
307f7018c21STomi Valkeinen	help
308f7018c21STomi Valkeinen	  This driver supports a frame buffer for the graphics adapter in the
309f7018c21STomi Valkeinen	  Power Macintosh 7300 and others.
310f7018c21STomi Valkeinen
311f7018c21STomi Valkeinenconfig FB_PLATINUM
312f7018c21STomi Valkeinen	bool "Apple \"platinum\" display support"
313f7018c21STomi Valkeinen	depends on (FB = y) && PPC_PMAC && PPC32
3145a5a31d8SThomas Zimmermann	select FB_IOMEM_HELPERS
315f7018c21STomi Valkeinen	select FB_MACMODES
316f7018c21STomi Valkeinen	help
317f7018c21STomi Valkeinen	  This driver supports a frame buffer for the "platinum" graphics
318f7018c21STomi Valkeinen	  adapter in some Power Macintoshes.
319f7018c21STomi Valkeinen
320f7018c21STomi Valkeinenconfig FB_VALKYRIE
321f7018c21STomi Valkeinen	bool "Apple \"valkyrie\" display support"
322f7018c21STomi Valkeinen	depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
323b8a49bebSThomas Zimmermann	select FB_IOMEM_HELPERS
324f7018c21STomi Valkeinen	select FB_MACMODES
325f7018c21STomi Valkeinen	help
326f7018c21STomi Valkeinen	  This driver supports a frame buffer for the "valkyrie" graphics
327f7018c21STomi Valkeinen	  adapter in some Power Macintoshes.
328f7018c21STomi Valkeinen
329f7018c21STomi Valkeinenconfig FB_CT65550
330f7018c21STomi Valkeinen	bool "Chips 65550 display support"
331f7018c21STomi Valkeinen	depends on (FB = y) && PPC32 && PCI
3325e13afabSThomas Zimmermann	select FB_IOMEM_HELPERS
3330ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
334f7018c21STomi Valkeinen	help
335f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Chips & Technologies
336f7018c21STomi Valkeinen	  65550 graphics chip in PowerBooks.
337f7018c21STomi Valkeinen
338f7018c21STomi Valkeinenconfig FB_ASILIANT
339f7018c21STomi Valkeinen	bool "Asiliant (Chips) 69000 display support"
340f7018c21STomi Valkeinen	depends on (FB = y) && PCI
34186cab5dbSThomas Zimmermann	select FB_IOMEM_HELPERS
3420ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
343f7018c21STomi Valkeinen	help
344f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Asiliant 69030 chipset
345f7018c21STomi Valkeinen
346f7018c21STomi Valkeinenconfig FB_IMSTT
347f7018c21STomi Valkeinen	bool "IMS Twin Turbo display support"
348f7018c21STomi Valkeinen	depends on (FB = y) && PCI
349f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
35080ac1058SThomas Zimmermann	select FB_IOMEM_FOPS
351066ac5c3SFinn Thain	select FB_MACMODES if PPC_PMAC
3520ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
353f7018c21STomi Valkeinen	help
354f7018c21STomi Valkeinen	  The IMS Twin Turbo is a PCI-based frame buffer card bundled with
355f7018c21STomi Valkeinen	  many Macintosh and compatible computers.
356f7018c21STomi Valkeinen
357f7018c21STomi Valkeinenconfig FB_VGA16
358f7018c21STomi Valkeinen	tristate "VGA 16-color graphics support"
359b858a97bSArnd Bergmann	depends on FB && X86
3607283f862SThomas Zimmermann	select APERTURE_HELPERS
361f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
362f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
363f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
364e47e199cSThomas Zimmermann	select FB_IOMEM_FOPS
365f7018c21STomi Valkeinen	select VGASTATE
366f7018c21STomi Valkeinen	select FONT_8x16 if FRAMEBUFFER_CONSOLE
367f7018c21STomi Valkeinen	help
368f7018c21STomi Valkeinen	  This is the frame buffer device driver for VGA 16 color graphic
369f7018c21STomi Valkeinen	  cards. Say Y if you have such a card.
370f7018c21STomi Valkeinen
371f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
372f7018c21STomi Valkeinen	  module will be called vga16fb.
373f7018c21STomi Valkeinen
374f7018c21STomi Valkeinenconfig FB_STI
375f7018c21STomi Valkeinen	tristate "HP STI frame buffer device support"
376f7018c21STomi Valkeinen	depends on FB && PARISC
377f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
378f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
379f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
3806cdc804eSThomas Zimmermann	select FB_IOMEM_FOPS
38174708497SThomas Zimmermann	select STI_CORE
382f7018c21STomi Valkeinen	default y
383a7f7f624SMasahiro Yamada	help
384f7018c21STomi Valkeinen	  Enabling this option will implement the linux framebuffer device
385f7018c21STomi Valkeinen	  using calls to the STI BIOS routines for initialisation.
386f7018c21STomi Valkeinen
387f7018c21STomi Valkeinen	  If you enable this option, you will get a planar framebuffer device
388f7018c21STomi Valkeinen	  /dev/fb which will work on the most common HP graphic cards of the
389f7018c21STomi Valkeinen	  NGLE family, including the artist chips (in the 7xx and Bxxx series),
390f7018c21STomi Valkeinen	  HCRX, HCRX24, CRX, CRX24 and VisEG series.
391f7018c21STomi Valkeinen
392f7018c21STomi Valkeinen	  It is safe to enable this option, so you should probably say "Y".
393f7018c21STomi Valkeinen
394f7018c21STomi Valkeinenconfig FB_MAC
395f7018c21STomi Valkeinen	bool "Generic Macintosh display support"
396f7018c21STomi Valkeinen	depends on (FB = y) && MAC
3976ca44d64SThomas Zimmermann	select FB_IOMEM_HELPERS
398f7018c21STomi Valkeinen	select FB_MACMODES
399f7018c21STomi Valkeinen
400f7018c21STomi Valkeinenconfig FB_HP300
401f7018c21STomi Valkeinen	bool
402f7018c21STomi Valkeinen	depends on (FB = y) && DIO
403f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
404b933456cSThomas Zimmermann	select FB_IOMEM_FOPS
405f7018c21STomi Valkeinen	default y
406f7018c21STomi Valkeinen
407f7018c21STomi Valkeinenconfig FB_TGA
408f7018c21STomi Valkeinen	tristate "TGA/SFB+ framebuffer support"
409cd395d52SLinus Torvalds	depends on FB
410cd395d52SLinus Torvalds	depends on PCI || TC
411cd395d52SLinus Torvalds	depends on ALPHA || TC
412153fc9bbSThomas Zimmermann	select BITREVERSE
413f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
414f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
415f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
416153fc9bbSThomas Zimmermann	select FB_IOMEM_FOPS
4170ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
418a7f7f624SMasahiro Yamada	help
419f7018c21STomi Valkeinen	  This is the frame buffer device driver for generic TGA and SFB+
420f7018c21STomi Valkeinen	  graphic cards.  These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
421f7018c21STomi Valkeinen	  also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
422f7018c21STomi Valkeinen	  TURBOchannel cards, also known as PMAGD-A, -B and -C.
423f7018c21STomi Valkeinen
424f7018c21STomi Valkeinen	  Due to hardware limitations ZLX-E2 and E3 cards are not supported
425f7018c21STomi Valkeinen	  for DECstation 5000/200 systems.  Additionally due to firmware
426f7018c21STomi Valkeinen	  limitations these cards may cause troubles with booting DECstation
427f7018c21STomi Valkeinen	  5000/240 and /260 systems, but are fully supported under Linux if
428f7018c21STomi Valkeinen	  you manage to get it going. ;-)
429f7018c21STomi Valkeinen
430f7018c21STomi Valkeinen	  Say Y if you have one of those.
431f7018c21STomi Valkeinen
432f7018c21STomi Valkeinenconfig FB_UVESA
433f7018c21STomi Valkeinen	tristate "Userspace VESA VGA graphics support"
434f7018c21STomi Valkeinen	depends on FB && CONNECTOR
43535b4f4d4SRandy Dunlap	depends on !UML
436f96c3629SThomas Zimmermann	select FB_IOMEM_HELPERS
437f7018c21STomi Valkeinen	select FB_MODE_HELPERS
438f7018c21STomi Valkeinen	help
439f7018c21STomi Valkeinen	  This is the frame buffer driver for generic VBE 2.0 compliant
440f7018c21STomi Valkeinen	  graphic cards. It can also take advantage of VBE 3.0 features,
441f7018c21STomi Valkeinen	  such as refresh rate adjustment.
442f7018c21STomi Valkeinen
443f7018c21STomi Valkeinen	  This driver generally provides more features than vesafb but
444f7018c21STomi Valkeinen	  requires a userspace helper application called 'v86d'. See
445ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/uvesafb.rst> for more information.
446f7018c21STomi Valkeinen
447f7018c21STomi Valkeinen	  If unsure, say N.
448f7018c21STomi Valkeinen
449f7018c21STomi Valkeinenconfig FB_VESA
450f7018c21STomi Valkeinen	bool "VESA VGA graphics support"
4510d4e57e5SJavier Martinez Canillas	depends on (FB = y) && X86
4527283f862SThomas Zimmermann	select APERTURE_HELPERS
453517c00c3SThomas Zimmermann	select FB_IOMEM_HELPERS
454a4a072d9SMichal Suchanek	select SYSFB
455f7018c21STomi Valkeinen	help
456f7018c21STomi Valkeinen	  This is the frame buffer device driver for generic VESA 2.0
457f7018c21STomi Valkeinen	  compliant graphic cards. The older VESA 1.2 cards are not supported.
458f7018c21STomi Valkeinen	  You will get a boot time penguin logo at no additional cost. Please
459ab42b818SMauro Carvalho Chehab	  read <file:Documentation/fb/vesafb.rst>. If unsure, say Y.
460f7018c21STomi Valkeinen
461f7018c21STomi Valkeinenconfig FB_EFI
462f7018c21STomi Valkeinen	bool "EFI-based Framebuffer Support"
463cf8e8658SArd Biesheuvel	depends on (FB = y) && EFI
4647283f862SThomas Zimmermann	select APERTURE_HELPERS
465028b186fSHans de Goede	select DRM_PANEL_ORIENTATION_QUIRKS
46666d658b9SThomas Zimmermann	select FB_IOMEM_HELPERS
467a4a072d9SMichal Suchanek	select SYSFB
468f7018c21STomi Valkeinen	help
469f7018c21STomi Valkeinen	  This is the EFI frame buffer device driver. If the firmware on
470f7018c21STomi Valkeinen	  your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
471f7018c21STomi Valkeinen	  using the EFI framebuffer as your console.
472f7018c21STomi Valkeinen
473f7018c21STomi Valkeinenconfig FB_N411
474f7018c21STomi Valkeinen	tristate "N411 Apollo/Hecuba devkit support"
475f7018c21STomi Valkeinen	depends on FB && X86 && MMU
476f7018c21STomi Valkeinen	select FB_HECUBA
477f7018c21STomi Valkeinen	help
478f7018c21STomi Valkeinen	  This enables support for the Apollo display controller in its
479f7018c21STomi Valkeinen	  Hecuba form using the n411 devkit.
480f7018c21STomi Valkeinen
481f7018c21STomi Valkeinenconfig FB_HGA
482f7018c21STomi Valkeinen	tristate "Hercules mono graphics support"
483f7018c21STomi Valkeinen	depends on FB && X86
48421951551SThomas Zimmermann	select FB_IOMEM_FOPS
485f7018c21STomi Valkeinen	help
486f7018c21STomi Valkeinen	  Say Y here if you have a Hercules mono graphics card.
487f7018c21STomi Valkeinen
488f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
489f7018c21STomi Valkeinen	  module will be called hgafb.
490f7018c21STomi Valkeinen
491f7018c21STomi Valkeinen	  As this card technology is at least 25 years old,
492f7018c21STomi Valkeinen	  most people will answer N here.
493f7018c21STomi Valkeinen
494f7018c21STomi Valkeinenconfig FB_GBE
495f7018c21STomi Valkeinen	bool "SGI Graphics Backend frame buffer support"
496552ccf6bSBartlomiej Zolnierkiewicz	depends on (FB = y) && HAS_IOMEM
497552ccf6bSBartlomiej Zolnierkiewicz	depends on SGI_IP32 || COMPILE_TEST
498e7011bf8SThomas Zimmermann	select FB_IOMEM_HELPERS
499f7018c21STomi Valkeinen	help
500f7018c21STomi Valkeinen	  This is the frame buffer device driver for SGI Graphics Backend.
501f7018c21STomi Valkeinen	  This chip is used in SGI O2 and Visual Workstation 320/540.
502f7018c21STomi Valkeinen
503f7018c21STomi Valkeinenconfig FB_GBE_MEM
504f7018c21STomi Valkeinen	int "Video memory size in MB"
505f7018c21STomi Valkeinen	depends on FB_GBE
506f7018c21STomi Valkeinen	default 4
507f7018c21STomi Valkeinen	help
508f7018c21STomi Valkeinen	  This is the amount of memory reserved for the framebuffer,
509f7018c21STomi Valkeinen	  which can be any value between 1MB and 8MB.
510f7018c21STomi Valkeinen
511f7018c21STomi Valkeinenconfig FB_SBUS
512f7018c21STomi Valkeinen	bool "SBUS and UPA framebuffers"
513f7018c21STomi Valkeinen	depends on (FB = y) && SPARC
514f7018c21STomi Valkeinen	help
515f7018c21STomi Valkeinen	  Say Y if you want support for SBUS or UPA based frame buffer device.
516f7018c21STomi Valkeinen
517cbe606f3SThomas Zimmermannconfig FB_SBUS_HELPERS
518cbe606f3SThomas Zimmermann	bool
519cbe606f3SThomas Zimmermann	select FB_CFB_COPYAREA
520cbe606f3SThomas Zimmermann	select FB_CFB_FILLRECT
521cbe606f3SThomas Zimmermann	select FB_CFB_IMAGEBLIT
522cbe606f3SThomas Zimmermann
523f7018c21STomi Valkeinenconfig FB_BW2
524f7018c21STomi Valkeinen	bool "BWtwo support"
525f7018c21STomi Valkeinen	depends on (FB = y) && (SPARC && FB_SBUS)
52634093433SThomas Zimmermann	select FB_SBUS_HELPERS
527f7018c21STomi Valkeinen	help
528f7018c21STomi Valkeinen	  This is the frame buffer device driver for the BWtwo frame buffer.
529f7018c21STomi Valkeinen
530f7018c21STomi Valkeinenconfig FB_CG3
531f7018c21STomi Valkeinen	bool "CGthree support"
532f7018c21STomi Valkeinen	depends on (FB = y) && (SPARC && FB_SBUS)
5336e424134SThomas Zimmermann	select FB_SBUS_HELPERS
534f7018c21STomi Valkeinen	help
535f7018c21STomi Valkeinen	  This is the frame buffer device driver for the CGthree frame buffer.
536f7018c21STomi Valkeinen
537f7018c21STomi Valkeinenconfig FB_CG6
538f7018c21STomi Valkeinen	bool "CGsix (GX,TurboGX) support"
539f7018c21STomi Valkeinen	depends on (FB = y) && (SPARC && FB_SBUS)
540f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
541f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
542f7018c21STomi Valkeinen	help
543f7018c21STomi Valkeinen	  This is the frame buffer device driver for the CGsix (GX, TurboGX)
544f7018c21STomi Valkeinen	  frame buffer.
545f7018c21STomi Valkeinen
546f7018c21STomi Valkeinenconfig FB_FFB
547f7018c21STomi Valkeinen	bool "Creator/Creator3D/Elite3D support"
548f7018c21STomi Valkeinen	depends on FB_SBUS && SPARC64
549f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
550f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
551f7018c21STomi Valkeinen	help
552f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Creator, Creator3D,
553f7018c21STomi Valkeinen	  and Elite3D graphics boards.
554f7018c21STomi Valkeinen
555f7018c21STomi Valkeinenconfig FB_TCX
556f7018c21STomi Valkeinen	bool "TCX (SS4/SS5 only) support"
557f7018c21STomi Valkeinen	depends on FB_SBUS
558a5bb8a64SThomas Zimmermann	select FB_SBUS_HELPERS
559f7018c21STomi Valkeinen	help
560f7018c21STomi Valkeinen	  This is the frame buffer device driver for the TCX 24/8bit frame
561f7018c21STomi Valkeinen	  buffer.
562f7018c21STomi Valkeinen
563f7018c21STomi Valkeinenconfig FB_CG14
564f7018c21STomi Valkeinen	bool "CGfourteen (SX) support"
565f7018c21STomi Valkeinen	depends on FB_SBUS
5661d3bba30SThomas Zimmermann	select FB_SBUS_HELPERS
567f7018c21STomi Valkeinen	help
568f7018c21STomi Valkeinen	  This is the frame buffer device driver for the CGfourteen frame
569f7018c21STomi Valkeinen	  buffer on Desktop SPARCsystems with the SX graphics option.
570f7018c21STomi Valkeinen
571f7018c21STomi Valkeinenconfig FB_P9100
572f7018c21STomi Valkeinen	bool "P9100 (Sparcbook 3 only) support"
573f7018c21STomi Valkeinen	depends on FB_SBUS
574d1ed0f1dSThomas Zimmermann	select FB_SBUS_HELPERS
575f7018c21STomi Valkeinen	help
576f7018c21STomi Valkeinen	  This is the frame buffer device driver for the P9100 card
577f7018c21STomi Valkeinen	  supported on Sparcbook 3 machines.
578f7018c21STomi Valkeinen
579f7018c21STomi Valkeinenconfig FB_LEO
580f7018c21STomi Valkeinen	bool "Leo (ZX) support"
581f7018c21STomi Valkeinen	depends on FB_SBUS
58210ff3e6cSThomas Zimmermann	select FB_SBUS_HELPERS
583f7018c21STomi Valkeinen	help
584f7018c21STomi Valkeinen	  This is the frame buffer device driver for the SBUS-based Sun ZX
585f7018c21STomi Valkeinen	  (leo) frame buffer cards.
586f7018c21STomi Valkeinen
587f7018c21STomi Valkeinenconfig FB_XVR500
588f7018c21STomi Valkeinen	bool "Sun XVR-500 3DLABS Wildcat support"
589f7018c21STomi Valkeinen	depends on (FB = y) && PCI && SPARC64
590f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
591f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
592f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
593188a8646SThomas Zimmermann	select FB_IOMEM_FOPS
5940ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
595f7018c21STomi Valkeinen	help
596f7018c21STomi Valkeinen	  This is the framebuffer device for the Sun XVR-500 and similar
597f7018c21STomi Valkeinen	  graphics cards based upon the 3DLABS Wildcat chipset.  The driver
598f7018c21STomi Valkeinen	  only works on sparc64 systems where the system firmware has
599f7018c21STomi Valkeinen	  mostly initialized the card already.  It is treated as a
600f7018c21STomi Valkeinen	  completely dumb framebuffer device.
601f7018c21STomi Valkeinen
602f7018c21STomi Valkeinenconfig FB_XVR2500
603f7018c21STomi Valkeinen	bool "Sun XVR-2500 3DLABS Wildcat support"
604f7018c21STomi Valkeinen	depends on (FB = y) && PCI && SPARC64
6054921d034SThomas Zimmermann	select FB_IOMEM_HELPERS
6060ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
607f7018c21STomi Valkeinen	help
608f7018c21STomi Valkeinen	  This is the framebuffer device for the Sun XVR-2500 and similar
609f7018c21STomi Valkeinen	  graphics cards based upon the 3DLABS Wildcat chipset.  The driver
610f7018c21STomi Valkeinen	  only works on sparc64 systems where the system firmware has
611f7018c21STomi Valkeinen	  mostly initialized the card already.  It is treated as a
612f7018c21STomi Valkeinen	  completely dumb framebuffer device.
613f7018c21STomi Valkeinen
614f7018c21STomi Valkeinenconfig FB_XVR1000
615f7018c21STomi Valkeinen	bool "Sun XVR-1000 support"
616f7018c21STomi Valkeinen	depends on (FB = y) && SPARC64
6176236402bSThomas Zimmermann	select FB_IOMEM_HELPERS
618f7018c21STomi Valkeinen	help
619f7018c21STomi Valkeinen	  This is the framebuffer device for the Sun XVR-1000 and similar
620f7018c21STomi Valkeinen	  graphics cards.  The driver only works on sparc64 systems where
621f7018c21STomi Valkeinen	  the system firmware has mostly initialized the card already.  It
622f7018c21STomi Valkeinen	  is treated as a completely dumb framebuffer device.
623f7018c21STomi Valkeinen
624f7018c21STomi Valkeinenconfig FB_PVR2
625f7018c21STomi Valkeinen	tristate "NEC PowerVR 2 display support"
6260f5a5712SBartlomiej Zolnierkiewicz	depends on FB && HAS_IOMEM
6270f5a5712SBartlomiej Zolnierkiewicz	depends on SH_DREAMCAST || COMPILE_TEST
628f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
629f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
630f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
63142327397SThomas Zimmermann	select FB_IOMEM_FOPS
6320ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
633a7f7f624SMasahiro Yamada	help
634f7018c21STomi Valkeinen	  Say Y here if you have a PowerVR 2 card in your box.  If you plan to
635f7018c21STomi Valkeinen	  run linux on your Dreamcast, you will have to say Y here.
636f7018c21STomi Valkeinen	  This driver may or may not work on other PowerVR 2 cards, but is
637f7018c21STomi Valkeinen	  totally untested.  Use at your own risk.  If unsure, say N.
638f7018c21STomi Valkeinen
639f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
640f7018c21STomi Valkeinen	  module will be called pvr2fb.
641f7018c21STomi Valkeinen
642f7018c21STomi Valkeinen	  You can pass several parameters to the driver at boot time or at
643f7018c21STomi Valkeinen	  module load time.  The parameters look like "video=pvr2:XXX", where
644f7018c21STomi Valkeinen	  the meaning of XXX can be found at the end of the main source file
645c5510f53SWei Ming Chen	  (<file:drivers/video/fbdev/pvr2fb.c>). Please see the file
646ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/pvr2fb.rst>.
647f7018c21STomi Valkeinen
648f7018c21STomi Valkeinenconfig FB_OPENCORES
649f7018c21STomi Valkeinen	tristate "OpenCores VGA/LCD core 2.0 framebuffer support"
650f7018c21STomi Valkeinen	depends on FB && HAS_DMA
6512671e8a4SThomas Zimmermann	select FB_IOMEM_HELPERS
652f7018c21STomi Valkeinen	help
653f7018c21STomi Valkeinen	  This enables support for the OpenCores VGA/LCD core.
654f7018c21STomi Valkeinen
655f7018c21STomi Valkeinen	  The OpenCores VGA/LCD core is typically used together with
656f7018c21STomi Valkeinen	  softcore CPUs (e.g. OpenRISC or Microblaze) or hard processor
657f7018c21STomi Valkeinen	  systems (e.g. Altera socfpga or Xilinx Zynq) on FPGAs.
658f7018c21STomi Valkeinen
659f7018c21STomi Valkeinen	  The source code and specification for the core is available at
6607c7b2a35SAlexander A. Klimov	  <https://opencores.org/project,vga_lcd>
661f7018c21STomi Valkeinen
662f7018c21STomi Valkeinenconfig FB_S1D13XXX
663f7018c21STomi Valkeinen	tristate "Epson S1D13XXX framebuffer support"
664f7018c21STomi Valkeinen	depends on FB
665f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
666f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
667f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
668bf0f401fSThomas Zimmermann	select FB_IOMEM_FOPS
669f7018c21STomi Valkeinen	help
670f7018c21STomi Valkeinen	  Support for S1D13XXX framebuffer device family (currently only
671f7018c21STomi Valkeinen	  working with S1D13806). Product specs at
6727c7b2a35SAlexander A. Klimov	  <https://vdc.epson.com/>
673f7018c21STomi Valkeinen
674f7018c21STomi Valkeinenconfig FB_ATMEL
675546f98c1SAlexandre Belloni	tristate "AT91 LCD Controller support"
67659c1ad91SBartlomiej Zolnierkiewicz	depends on FB && OF && HAVE_CLK && HAS_IOMEM
67759c1ad91SBartlomiej Zolnierkiewicz	depends on HAVE_FB_ATMEL || COMPILE_TEST
6783cdd1537SArnd Bergmann	select FB_BACKLIGHT
67996659c4cSThomas Zimmermann	select FB_IOMEM_HELPERS
680f7018c21STomi Valkeinen	select FB_MODE_HELPERS
681f7018c21STomi Valkeinen	select VIDEOMODE_HELPERS
682f7018c21STomi Valkeinen	help
683546f98c1SAlexandre Belloni	  This enables support for the AT91 LCD Controller.
684f7018c21STomi Valkeinen
685f7018c21STomi Valkeinenconfig FB_NVIDIA
686f7018c21STomi Valkeinen	tristate "nVidia Framebuffer Support"
687f7018c21STomi Valkeinen	depends on FB && PCI
688f7018c21STomi Valkeinen	select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
689f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
690f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
691f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
69250182ed4SThomas Zimmermann	select FB_IOMEM_FOPS
693f7018c21STomi Valkeinen	select BITREVERSE
694f7018c21STomi Valkeinen	select VGASTATE
6950ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
696f7018c21STomi Valkeinen	help
697f7018c21STomi Valkeinen	  This driver supports graphics boards with the nVidia chips, TNT
698f7018c21STomi Valkeinen	  and newer. For very old chipsets, such as the RIVA128, then use
699f7018c21STomi Valkeinen	  the rivafb.
700f7018c21STomi Valkeinen	  Say Y if you have such a graphics board.
701f7018c21STomi Valkeinen
702f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
703f7018c21STomi Valkeinen	  module will be called nvidiafb.
704f7018c21STomi Valkeinen
705f7018c21STomi Valkeinenconfig FB_NVIDIA_I2C
706f7018c21STomi Valkeinen	bool "Enable DDC Support"
707f7018c21STomi Valkeinen	depends on FB_NVIDIA
708f7018c21STomi Valkeinen	select FB_DDC
709f7018c21STomi Valkeinen	help
710f7018c21STomi Valkeinen	  This enables I2C support for nVidia Chipsets.  This is used
711f7018c21STomi Valkeinen	  only for getting EDID information from the attached display
712f7018c21STomi Valkeinen	  allowing for robust video mode handling and switching.
713f7018c21STomi Valkeinen
714f7018c21STomi Valkeinen	  Because fbdev-2.6 requires that drivers must be able to
715f7018c21STomi Valkeinen	  independently validate video mode parameters, you should say Y
716f7018c21STomi Valkeinen	  here.
717f7018c21STomi Valkeinen
718f7018c21STomi Valkeinenconfig FB_NVIDIA_DEBUG
719f7018c21STomi Valkeinen	bool "Lots of debug output"
720f7018c21STomi Valkeinen	depends on FB_NVIDIA
721f7018c21STomi Valkeinen	help
722f7018c21STomi Valkeinen	  Say Y here if you want the nVidia driver to output all sorts
723f7018c21STomi Valkeinen	  of debugging information to provide to the maintainer when
724f7018c21STomi Valkeinen	  something goes wrong.
725f7018c21STomi Valkeinen
726f7018c21STomi Valkeinenconfig FB_NVIDIA_BACKLIGHT
727f7018c21STomi Valkeinen	bool "Support for backlight control"
728f7018c21STomi Valkeinen	depends on FB_NVIDIA
729f7018c21STomi Valkeinen	default y
730f7018c21STomi Valkeinen	help
731f7018c21STomi Valkeinen	  Say Y here if you want to control the backlight of your display.
732f7018c21STomi Valkeinen
733f7018c21STomi Valkeinenconfig FB_RIVA
734f7018c21STomi Valkeinen	tristate "nVidia Riva support"
735f7018c21STomi Valkeinen	depends on FB && PCI
736f7018c21STomi Valkeinen	select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
737f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
738f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
739f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
74098807533SThomas Zimmermann	select FB_IOMEM_FOPS
74198807533SThomas Zimmermann	select FB_MODE_HELPERS
742f7018c21STomi Valkeinen	select BITREVERSE
743f7018c21STomi Valkeinen	select VGASTATE
7440ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
745f7018c21STomi Valkeinen	help
746f7018c21STomi Valkeinen	  This driver supports graphics boards with the nVidia Riva/Geforce
747f7018c21STomi Valkeinen	  chips.
748f7018c21STomi Valkeinen	  Say Y if you have such a graphics board.
749f7018c21STomi Valkeinen
750f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
751f7018c21STomi Valkeinen	  module will be called rivafb.
752f7018c21STomi Valkeinen
753f7018c21STomi Valkeinenconfig FB_RIVA_I2C
754f7018c21STomi Valkeinen	bool "Enable DDC Support"
755f7018c21STomi Valkeinen	depends on FB_RIVA
756f7018c21STomi Valkeinen	select FB_DDC
757f7018c21STomi Valkeinen	help
758f7018c21STomi Valkeinen	  This enables I2C support for nVidia Chipsets.  This is used
759f7018c21STomi Valkeinen	  only for getting EDID information from the attached display
760f7018c21STomi Valkeinen	  allowing for robust video mode handling and switching.
761f7018c21STomi Valkeinen
762f7018c21STomi Valkeinen	  Because fbdev-2.6 requires that drivers must be able to
763f7018c21STomi Valkeinen	  independently validate video mode parameters, you should say Y
764f7018c21STomi Valkeinen	  here.
765f7018c21STomi Valkeinen
766f7018c21STomi Valkeinenconfig FB_RIVA_DEBUG
767f7018c21STomi Valkeinen	bool "Lots of debug output"
768f7018c21STomi Valkeinen	depends on FB_RIVA
769f7018c21STomi Valkeinen	help
770f7018c21STomi Valkeinen	  Say Y here if you want the Riva driver to output all sorts
771f7018c21STomi Valkeinen	  of debugging information to provide to the maintainer when
772f7018c21STomi Valkeinen	  something goes wrong.
773f7018c21STomi Valkeinen
774f7018c21STomi Valkeinenconfig FB_RIVA_BACKLIGHT
775f7018c21STomi Valkeinen	bool "Support for backlight control"
776f7018c21STomi Valkeinen	depends on FB_RIVA
777f7018c21STomi Valkeinen	default y
778f7018c21STomi Valkeinen	help
779f7018c21STomi Valkeinen	  Say Y here if you want to control the backlight of your display.
780f7018c21STomi Valkeinen
781f7018c21STomi Valkeinenconfig FB_I740
782f7018c21STomi Valkeinen	tristate "Intel740 support"
783f7018c21STomi Valkeinen	depends on FB && PCI
7847f075499SThomas Zimmermann	select FB_IOMEM_HELPERS
785f7018c21STomi Valkeinen	select FB_MODE_HELPERS
786f7018c21STomi Valkeinen	select VGASTATE
7870ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
788f7018c21STomi Valkeinen	select FB_DDC
789f7018c21STomi Valkeinen	help
790f7018c21STomi Valkeinen	  This driver supports graphics cards based on Intel740 chip.
791f7018c21STomi Valkeinen
792f7018c21STomi Valkeinenconfig FB_I810
793f7018c21STomi Valkeinen	tristate "Intel 810/815 support"
794f7018c21STomi Valkeinen	depends on FB && PCI && X86_32 && AGP_INTEL
7957e568f77SThomas Zimmermann	select FB_IOMEM_FOPS
796f7018c21STomi Valkeinen	select FB_MODE_HELPERS
797f7018c21STomi Valkeinen	select VGASTATE
7980ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
799f7018c21STomi Valkeinen	help
800f7018c21STomi Valkeinen	  This driver supports the on-board graphics built in to the Intel 810
801f7018c21STomi Valkeinen	  and 815 chipsets.  Say Y if you have and plan to use such a board.
802f7018c21STomi Valkeinen
803f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
804f7018c21STomi Valkeinen	  module will be called i810fb.
805f7018c21STomi Valkeinen
806f7018c21STomi Valkeinen	  For more information, please read
807ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/intel810.rst>
808f7018c21STomi Valkeinen
809f7018c21STomi Valkeinenconfig FB_I810_GTF
810f7018c21STomi Valkeinen	bool "use VESA Generalized Timing Formula"
811f7018c21STomi Valkeinen	depends on FB_I810
812f7018c21STomi Valkeinen	help
813f7018c21STomi Valkeinen	  If you say Y, then the VESA standard, Generalized Timing Formula
814f7018c21STomi Valkeinen	  or GTF, will be used to calculate the required video timing values
815f7018c21STomi Valkeinen	  per video mode.  Since the GTF allows nondiscrete timings
816f7018c21STomi Valkeinen	  (nondiscrete being a range of values as opposed to discrete being a
817f7018c21STomi Valkeinen	  set of values), you'll be able to use any combination of horizontal
818f7018c21STomi Valkeinen	  and vertical resolutions, and vertical refresh rates without having
819f7018c21STomi Valkeinen	  to specify your own timing parameters.  This is especially useful
820f7018c21STomi Valkeinen	  to maximize the performance of an aging display, or if you just
821f7018c21STomi Valkeinen	  have a display with nonstandard dimensions. A VESA compliant
822f7018c21STomi Valkeinen	  monitor is recommended, but can still work with non-compliant ones.
823f7018c21STomi Valkeinen	  If you need or want this, then select this option. The timings may
824f7018c21STomi Valkeinen	  not be compliant with Intel's recommended values. Use at your own
825f7018c21STomi Valkeinen	  risk.
826f7018c21STomi Valkeinen
827f7018c21STomi Valkeinen	  If you say N, the driver will revert to discrete video timings
828f7018c21STomi Valkeinen	  using a set recommended by Intel in their documentation.
829f7018c21STomi Valkeinen
830f7018c21STomi Valkeinen	  If unsure, say N.
831f7018c21STomi Valkeinen
832f7018c21STomi Valkeinenconfig FB_I810_I2C
833f7018c21STomi Valkeinen	bool "Enable DDC Support"
834f7018c21STomi Valkeinen	depends on FB_I810 && FB_I810_GTF
835f7018c21STomi Valkeinen	select FB_DDC
836e3419c6aSUlf Magnusson	help
837e3419c6aSUlf Magnusson	  Add DDC/I2C support for i810fb.  This will allow the driver to get
838e3419c6aSUlf Magnusson	  display information, especially for monitors with fickle timings.
839e3419c6aSUlf Magnusson
840e3419c6aSUlf Magnusson	  If unsure, say Y.
841f7018c21STomi Valkeinen
842f7018c21STomi Valkeinenconfig FB_LE80578
843f7018c21STomi Valkeinen	tristate "Intel LE80578 (Vermilion) support"
844f7018c21STomi Valkeinen	depends on FB && PCI && X86
845c7457542SThomas Zimmermann	select FB_IOMEM_HELPERS
846f7018c21STomi Valkeinen	select FB_MODE_HELPERS
8470ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
848f7018c21STomi Valkeinen	help
849f7018c21STomi Valkeinen	  This driver supports the LE80578 (Vermilion Range) chipset
850f7018c21STomi Valkeinen
851f7018c21STomi Valkeinenconfig FB_CARILLO_RANCH
852f7018c21STomi Valkeinen	tristate "Intel Carillo Ranch support"
853f7018c21STomi Valkeinen	depends on FB_LE80578 && FB && PCI && X86
854f7018c21STomi Valkeinen	help
855f7018c21STomi Valkeinen	  This driver supports the LE80578 (Carillo Ranch) board
856f7018c21STomi Valkeinen
857f7018c21STomi Valkeinenconfig FB_INTEL
858f7018c21STomi Valkeinen	tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support"
859f7018c21STomi Valkeinen	depends on FB && PCI && X86 && AGP_INTEL && EXPERT
860f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
861f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
862f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
86368deeb02SThomas Zimmermann	select FB_IOMEM_FOPS
86468deeb02SThomas Zimmermann	select FB_MODE_HELPERS
8658b766b0fSMichal Suchanek	select BOOT_VESA_SUPPORT if FB_INTEL = y
8660ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
867f7018c21STomi Valkeinen	depends on !DRM_I915
868f7018c21STomi Valkeinen	help
869f7018c21STomi Valkeinen	  This driver supports the on-board graphics built in to the Intel
870f7018c21STomi Valkeinen	  830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
871f7018c21STomi Valkeinen	  Say Y if you have and plan to use such a board.
872f7018c21STomi Valkeinen
873530a6397SRandy Dunlap	  To make FB_INTEL=Y work you need to say AGP_INTEL=y too.
874f7018c21STomi Valkeinen
875f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
876f7018c21STomi Valkeinen	  module will be called intelfb.
877f7018c21STomi Valkeinen
878ab42b818SMauro Carvalho Chehab	  For more information, please read <file:Documentation/fb/intelfb.rst>
879f7018c21STomi Valkeinen
880f7018c21STomi Valkeinenconfig FB_INTEL_DEBUG
881f7018c21STomi Valkeinen	bool "Intel driver Debug Messages"
882f7018c21STomi Valkeinen	depends on FB_INTEL
883a7f7f624SMasahiro Yamada	help
884f7018c21STomi Valkeinen	  Say Y here if you want the Intel driver to output all sorts
885f7018c21STomi Valkeinen	  of debugging information to provide to the maintainer when
886f7018c21STomi Valkeinen	  something goes wrong.
887f7018c21STomi Valkeinen
888f7018c21STomi Valkeinenconfig FB_INTEL_I2C
889f7018c21STomi Valkeinen	bool "DDC/I2C for Intel framebuffer support"
890f7018c21STomi Valkeinen	depends on FB_INTEL
891f7018c21STomi Valkeinen	select FB_DDC
892f7018c21STomi Valkeinen	default y
893f7018c21STomi Valkeinen	help
894f7018c21STomi Valkeinen	  Say Y here if you want DDC/I2C support for your on-board Intel graphics.
895f7018c21STomi Valkeinen
896f7018c21STomi Valkeinenconfig FB_MATROX
897f7018c21STomi Valkeinen	tristate "Matrox acceleration"
898f7018c21STomi Valkeinen	depends on FB && PCI
899f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
900f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
901f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
902dc9c80b0SThomas Zimmermann	select FB_IOMEM_FOPS
903f7018c21STomi Valkeinen	select FB_TILEBLITTING
904f7018c21STomi Valkeinen	select FB_MACMODES if PPC_PMAC
9050ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
906a7f7f624SMasahiro Yamada	help
907f7018c21STomi Valkeinen	  Say Y here if you have a Matrox Millennium, Matrox Millennium II,
908f7018c21STomi Valkeinen	  Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
909f7018c21STomi Valkeinen	  Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
910f7018c21STomi Valkeinen	  Matrox G400, G450 or G550 card in your box.
911f7018c21STomi Valkeinen
912f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
913f7018c21STomi Valkeinen	  module will be called matroxfb.
914f7018c21STomi Valkeinen
915f7018c21STomi Valkeinen	  You can pass several parameters to the driver at boot time or at
916f7018c21STomi Valkeinen	  module load time. The parameters look like "video=matroxfb:XXX", and
917ab42b818SMauro Carvalho Chehab	  are described in <file:Documentation/fb/matroxfb.rst>.
918f7018c21STomi Valkeinen
919f7018c21STomi Valkeinenconfig FB_MATROX_MILLENIUM
920f7018c21STomi Valkeinen	bool "Millennium I/II support"
921f7018c21STomi Valkeinen	depends on FB_MATROX
922f7018c21STomi Valkeinen	help
923f7018c21STomi Valkeinen	  Say Y here if you have a Matrox Millennium or Matrox Millennium II
924f7018c21STomi Valkeinen	  video card. If you select "Advanced lowlevel driver options" below,
925f7018c21STomi Valkeinen	  you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
926f7018c21STomi Valkeinen	  packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
927f7018c21STomi Valkeinen	  also use font widths different from 8.
928f7018c21STomi Valkeinen
929f7018c21STomi Valkeinenconfig FB_MATROX_MYSTIQUE
930f7018c21STomi Valkeinen	bool "Mystique support"
931f7018c21STomi Valkeinen	depends on FB_MATROX
932f7018c21STomi Valkeinen	help
933f7018c21STomi Valkeinen	  Say Y here if you have a Matrox Mystique or Matrox Mystique 220
934f7018c21STomi Valkeinen	  video card. If you select "Advanced lowlevel driver options" below,
935f7018c21STomi Valkeinen	  you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
936f7018c21STomi Valkeinen	  packed pixel and 32 bpp packed pixel. You can also use font widths
937f7018c21STomi Valkeinen	  different from 8.
938f7018c21STomi Valkeinen
939f7018c21STomi Valkeinenconfig FB_MATROX_G
940f7018c21STomi Valkeinen	bool "G100/G200/G400/G450/G550 support"
941f7018c21STomi Valkeinen	depends on FB_MATROX
942a7f7f624SMasahiro Yamada	help
943f7018c21STomi Valkeinen	  Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
944f7018c21STomi Valkeinen	  video card. If you select "Advanced lowlevel driver options", you
945f7018c21STomi Valkeinen	  should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
946f7018c21STomi Valkeinen	  pixel and 32 bpp packed pixel. You can also use font widths
947f7018c21STomi Valkeinen	  different from 8.
948f7018c21STomi Valkeinen
949f7018c21STomi Valkeinen	  If you need support for G400 secondary head, you must say Y to
950f7018c21STomi Valkeinen	  "Matrox I2C support" and "G400 second head support" right below.
951f7018c21STomi Valkeinen	  G450/G550 secondary head and digital output are supported without
952f7018c21STomi Valkeinen	  additional modules.
953f7018c21STomi Valkeinen
954f7018c21STomi Valkeinen	  The driver starts in monitor mode. You must use the matroxset tool
955f7018c21STomi Valkeinen	  (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
956f7018c21STomi Valkeinen	  swap primary and secondary head outputs, or to change output mode.
957f7018c21STomi Valkeinen	  Secondary head driver always start in 640x480 resolution and you
958f7018c21STomi Valkeinen	  must use fbset to change it.
959f7018c21STomi Valkeinen
960f7018c21STomi Valkeinen	  Do not forget that second head supports only 16 and 32 bpp
961f7018c21STomi Valkeinen	  packed pixels, so it is a good idea to compile them into the kernel
962f7018c21STomi Valkeinen	  too. You can use only some font widths, as the driver uses generic
963f7018c21STomi Valkeinen	  painting procedures (the secondary head does not use acceleration
964f7018c21STomi Valkeinen	  engine).
965f7018c21STomi Valkeinen
966f7018c21STomi Valkeinen	  G450/G550 hardware can display TV picture only from secondary CRTC,
967f7018c21STomi Valkeinen	  and it performs no scaling, so picture must have 525 or 625 lines.
968f7018c21STomi Valkeinen
969f7018c21STomi Valkeinenconfig FB_MATROX_I2C
970f7018c21STomi Valkeinen	tristate "Matrox I2C support"
971f7018c21STomi Valkeinen	depends on FB_MATROX
972f7018c21STomi Valkeinen	select FB_DDC
973a7f7f624SMasahiro Yamada	help
974f7018c21STomi Valkeinen	  This drivers creates I2C buses which are needed for accessing the
975f7018c21STomi Valkeinen	  DDC (I2C) bus present on all Matroxes, an I2C bus which
976f7018c21STomi Valkeinen	  interconnects Matrox optional devices, like MGA-TVO on G200 and
977f7018c21STomi Valkeinen	  G400, and the secondary head DDC bus, present on G400 only.
978f7018c21STomi Valkeinen
979f7018c21STomi Valkeinen	  You can say Y or M here if you want to experiment with monitor
980f7018c21STomi Valkeinen	  detection code. You must say Y or M here if you want to use either
981f7018c21STomi Valkeinen	  second head of G400 or MGA-TVO on G200 or G400.
982f7018c21STomi Valkeinen
983f7018c21STomi Valkeinen	  If you compile it as module, it will create a module named
984f7018c21STomi Valkeinen	  i2c-matroxfb.
985f7018c21STomi Valkeinen
986f7018c21STomi Valkeinenconfig FB_MATROX_MAVEN
987f7018c21STomi Valkeinen	tristate "G400 second head support"
988f7018c21STomi Valkeinen	depends on FB_MATROX_G && FB_MATROX_I2C
989dc9c80b0SThomas Zimmermann	select FB_IOMEM_HELPERS
990a7f7f624SMasahiro Yamada	help
991f7018c21STomi Valkeinen	  WARNING !!! This support does not work with G450 !!!
992f7018c21STomi Valkeinen
993f7018c21STomi Valkeinen	  Say Y or M here if you want to use a secondary head (meaning two
994f7018c21STomi Valkeinen	  monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
995f7018c21STomi Valkeinen	  head is not compatible with accelerated XFree 3.3.x SVGA servers -
996f7018c21STomi Valkeinen	  secondary head output is blanked while you are in X. With XFree
997f7018c21STomi Valkeinen	  3.9.17 preview you can use both heads if you use SVGA over fbdev or
998f7018c21STomi Valkeinen	  the fbdev driver on first head and the fbdev driver on second head.
999f7018c21STomi Valkeinen
1000f7018c21STomi Valkeinen	  If you compile it as module, two modules are created,
1001f7018c21STomi Valkeinen	  matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
1002f7018c21STomi Valkeinen	  both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
1003f7018c21STomi Valkeinen	  also load i2c-matroxfb to get it to run.
1004f7018c21STomi Valkeinen
1005f7018c21STomi Valkeinen	  The driver starts in monitor mode and you must use the matroxset
1006f7018c21STomi Valkeinen	  tool (available at
1007f7018c21STomi Valkeinen	  <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
1008f7018c21STomi Valkeinen	  PAL or NTSC or to swap primary and secondary head outputs.
1009f7018c21STomi Valkeinen	  Secondary head driver also always start in 640x480 resolution, you
1010f7018c21STomi Valkeinen	  must use fbset to change it.
1011f7018c21STomi Valkeinen
1012f7018c21STomi Valkeinen	  Also do not forget that second head supports only 16 and 32 bpp
1013f7018c21STomi Valkeinen	  packed pixels, so it is a good idea to compile them into the kernel
1014f7018c21STomi Valkeinen	  too.  You can use only some font widths, as the driver uses generic
1015f7018c21STomi Valkeinen	  painting procedures (the secondary head does not use acceleration
1016f7018c21STomi Valkeinen	  engine).
1017f7018c21STomi Valkeinen
1018f7018c21STomi Valkeinenconfig FB_RADEON
1019f7018c21STomi Valkeinen	tristate "ATI Radeon display support"
1020f7018c21STomi Valkeinen	depends on FB && PCI
1021f7018c21STomi Valkeinen	select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
1022f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1023f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1024f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1025c6e8f889SThomas Zimmermann	select FB_IOMEM_FOPS
1026758ddd1dSKevin Hao	select FB_MACMODES if PPC
1027c6e8f889SThomas Zimmermann	select FB_MODE_HELPERS
10280ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1029f7018c21STomi Valkeinen	help
1030f7018c21STomi Valkeinen	  Choose this option if you want to use an ATI Radeon graphics card as
1031f7018c21STomi Valkeinen	  a framebuffer device.  There are both PCI and AGP versions.  You
1032f7018c21STomi Valkeinen	  don't need to choose this to run the Radeon in plain VGA mode.
1033f7018c21STomi Valkeinen
1034f7018c21STomi Valkeinen	  There is a product page at
10357c7b2a35SAlexander A. Klimov	  https://products.amd.com/en-us/GraphicCardResult.aspx
1036f7018c21STomi Valkeinen
1037f7018c21STomi Valkeinenconfig FB_RADEON_I2C
1038f7018c21STomi Valkeinen	bool "DDC/I2C for ATI Radeon support"
1039f7018c21STomi Valkeinen	depends on FB_RADEON
1040f7018c21STomi Valkeinen	select FB_DDC
1041f7018c21STomi Valkeinen	default y
1042f7018c21STomi Valkeinen	help
1043f7018c21STomi Valkeinen	  Say Y here if you want DDC/I2C support for your Radeon board.
1044f7018c21STomi Valkeinen
1045f7018c21STomi Valkeinenconfig FB_RADEON_BACKLIGHT
1046f7018c21STomi Valkeinen	bool "Support for backlight control"
1047f7018c21STomi Valkeinen	depends on FB_RADEON
1048f7018c21STomi Valkeinen	default y
1049f7018c21STomi Valkeinen	help
1050f7018c21STomi Valkeinen	  Say Y here if you want to control the backlight of your display.
1051f7018c21STomi Valkeinen
1052f7018c21STomi Valkeinenconfig FB_RADEON_DEBUG
1053f7018c21STomi Valkeinen	bool "Lots of debug output from Radeon driver"
1054f7018c21STomi Valkeinen	depends on FB_RADEON
1055f7018c21STomi Valkeinen	help
1056f7018c21STomi Valkeinen	  Say Y here if you want the Radeon driver to output all sorts
1057f7018c21STomi Valkeinen	  of debugging information to provide to the maintainer when
1058f7018c21STomi Valkeinen	  something goes wrong.
1059f7018c21STomi Valkeinen
1060f7018c21STomi Valkeinenconfig FB_ATY128
1061f7018c21STomi Valkeinen	tristate "ATI Rage128 display support"
1062f7018c21STomi Valkeinen	depends on FB && PCI
1063f7018c21STomi Valkeinen	select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
10649b7ee467SThomas Zimmermann	select FB_IOMEM_HELPERS
1065f7018c21STomi Valkeinen	select FB_MACMODES if PPC_PMAC
10660ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1067f7018c21STomi Valkeinen	help
1068f7018c21STomi Valkeinen	  This driver supports graphics boards with the ATI Rage128 chips.
1069f7018c21STomi Valkeinen	  Say Y if you have such a graphics board and read
1070ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/aty128fb.rst>.
1071f7018c21STomi Valkeinen
1072f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1073f7018c21STomi Valkeinen	  module will be called aty128fb.
1074f7018c21STomi Valkeinen
1075f7018c21STomi Valkeinenconfig FB_ATY128_BACKLIGHT
1076f7018c21STomi Valkeinen	bool "Support for backlight control"
1077f7018c21STomi Valkeinen	depends on FB_ATY128
1078f7018c21STomi Valkeinen	default y
1079f7018c21STomi Valkeinen	help
1080f7018c21STomi Valkeinen	  Say Y here if you want to control the backlight of your display.
1081f7018c21STomi Valkeinen
1082f7018c21STomi Valkeinenconfig FB_ATY
1083f7018c21STomi Valkeinen	tristate "ATI Mach64 display support" if PCI || ATARI
1084f7018c21STomi Valkeinen	depends on FB && !SPARC32
1085f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1086f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1087f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1088f7018c21STomi Valkeinen	select FB_BACKLIGHT if FB_ATY_BACKLIGHT
108994cab8f6SThomas Zimmermann	select FB_IOMEM_FOPS
1090f7018c21STomi Valkeinen	select FB_MACMODES if PPC
1091c6c90c70SRandy Dunlap	select FB_ATY_CT if SPARC64 && PCI
10920ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1093f7018c21STomi Valkeinen	help
1094f7018c21STomi Valkeinen	  This driver supports graphics boards with the ATI Mach64 chips.
1095f7018c21STomi Valkeinen	  Say Y if you have such a graphics board.
1096f7018c21STomi Valkeinen
1097f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1098f7018c21STomi Valkeinen	  module will be called atyfb.
1099f7018c21STomi Valkeinen
1100f7018c21STomi Valkeinenconfig FB_ATY_CT
1101f7018c21STomi Valkeinen	bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
1102f7018c21STomi Valkeinen	depends on PCI && FB_ATY
1103f7018c21STomi Valkeinen	help
1104f7018c21STomi Valkeinen	  Say Y here to support use of ATI's 64-bit Rage boards (or other
1105f7018c21STomi Valkeinen	  boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
1106f7018c21STomi Valkeinen	  framebuffer device.  The ATI product support page for these boards
1107f7018c21STomi Valkeinen	  is at <http://support.ati.com/products/pc/mach64/mach64.html>.
1108f7018c21STomi Valkeinen
1109f7018c21STomi Valkeinenconfig FB_ATY_GENERIC_LCD
1110f7018c21STomi Valkeinen	bool "Mach64 generic LCD support"
1111f7018c21STomi Valkeinen	depends on FB_ATY_CT
1112f7018c21STomi Valkeinen	help
1113f7018c21STomi Valkeinen	  Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
1114f7018c21STomi Valkeinen	  Rage XC, or Rage XL chipset.
1115f7018c21STomi Valkeinen
1116f7018c21STomi Valkeinenconfig FB_ATY_GX
1117f7018c21STomi Valkeinen	bool "Mach64 GX support" if PCI
1118f7018c21STomi Valkeinen	depends on FB_ATY
1119f7018c21STomi Valkeinen	default y if ATARI
1120f7018c21STomi Valkeinen	help
1121f7018c21STomi Valkeinen	  Say Y here to support use of the ATI Mach64 Graphics Expression
1122f7018c21STomi Valkeinen	  board (or other boards based on the Mach64 GX chipset) as a
1123f7018c21STomi Valkeinen	  framebuffer device.  The ATI product support page for these boards
1124f7018c21STomi Valkeinen	  is at
1125f7018c21STomi Valkeinen	  <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
1126f7018c21STomi Valkeinen
1127f7018c21STomi Valkeinenconfig FB_ATY_BACKLIGHT
1128f7018c21STomi Valkeinen	bool "Support for backlight control"
1129f7018c21STomi Valkeinen	depends on FB_ATY
1130f7018c21STomi Valkeinen	default y
1131f7018c21STomi Valkeinen	help
1132f7018c21STomi Valkeinen	  Say Y here if you want to control the backlight of your display.
1133f7018c21STomi Valkeinen
1134f7018c21STomi Valkeinenconfig FB_S3
1135f7018c21STomi Valkeinen	tristate "S3 Trio/Virge support"
1136f7018c21STomi Valkeinen	depends on FB && PCI
1137f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1138f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1139f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1140633ca05fSThomas Zimmermann	select FB_IOMEM_FOPS
1141f7018c21STomi Valkeinen	select FB_TILEBLITTING
1142f7018c21STomi Valkeinen	select FB_SVGALIB
1143f7018c21STomi Valkeinen	select VGASTATE
11440ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1145f7018c21STomi Valkeinen	select FONT_8x16 if FRAMEBUFFER_CONSOLE
1146a7f7f624SMasahiro Yamada	help
1147f7018c21STomi Valkeinen	  Driver for graphics boards with S3 Trio / S3 Virge chip.
1148f7018c21STomi Valkeinen
1149f7018c21STomi Valkeinenconfig FB_S3_DDC
1150f7018c21STomi Valkeinen	bool "DDC for S3 support"
1151f7018c21STomi Valkeinen	depends on FB_S3
1152f7018c21STomi Valkeinen	select FB_DDC
1153f7018c21STomi Valkeinen	default y
1154f7018c21STomi Valkeinen	help
1155f7018c21STomi Valkeinen	  Say Y here if you want DDC support for your S3 graphics card.
1156f7018c21STomi Valkeinen
1157f7018c21STomi Valkeinenconfig FB_SAVAGE
1158f7018c21STomi Valkeinen	tristate "S3 Savage support"
1159f7018c21STomi Valkeinen	depends on FB && PCI
1160f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1161f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1162f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1163cee250bcSThomas Zimmermann	select FB_IOMEM_FOPS
1164cee250bcSThomas Zimmermann	select FB_MODE_HELPERS
1165f7018c21STomi Valkeinen	select VGASTATE
11660ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1167f7018c21STomi Valkeinen	help
1168f7018c21STomi Valkeinen	  This driver supports notebooks and computers with S3 Savage PCI/AGP
1169f7018c21STomi Valkeinen	  chips.
1170f7018c21STomi Valkeinen
1171f7018c21STomi Valkeinen	  Say Y if you have such a graphics card.
1172f7018c21STomi Valkeinen
1173f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here; the module
1174f7018c21STomi Valkeinen	  will be called savagefb.
1175f7018c21STomi Valkeinen
1176f7018c21STomi Valkeinenconfig FB_SAVAGE_I2C
1177f7018c21STomi Valkeinen	bool "Enable DDC2 Support"
1178f7018c21STomi Valkeinen	depends on FB_SAVAGE
1179f7018c21STomi Valkeinen	select FB_DDC
1180f7018c21STomi Valkeinen	help
1181f7018c21STomi Valkeinen	  This enables I2C support for S3 Savage Chipsets.  This is used
1182f7018c21STomi Valkeinen	  only for getting EDID information from the attached display
1183f7018c21STomi Valkeinen	  allowing for robust video mode handling and switching.
1184f7018c21STomi Valkeinen
1185f7018c21STomi Valkeinen	  Because fbdev-2.6 requires that drivers must be able to
1186f7018c21STomi Valkeinen	  independently validate video mode parameters, you should say Y
1187f7018c21STomi Valkeinen	  here.
1188f7018c21STomi Valkeinen
1189f7018c21STomi Valkeinenconfig FB_SAVAGE_ACCEL
1190f7018c21STomi Valkeinen	bool "Enable Console Acceleration"
1191f7018c21STomi Valkeinen	depends on FB_SAVAGE
1192f7018c21STomi Valkeinen	help
1193f7018c21STomi Valkeinen	  This option will compile in console acceleration support. If
1194f7018c21STomi Valkeinen	  the resulting framebuffer console has bothersome glitches, then
1195f7018c21STomi Valkeinen	  choose N here.
1196f7018c21STomi Valkeinen
1197f7018c21STomi Valkeinenconfig FB_SIS
1198f7018c21STomi Valkeinen	tristate "SiS/XGI display support"
1199f7018c21STomi Valkeinen	depends on FB && PCI
12003fa0ee77SThomas Zimmermann	select BOOT_VESA_SUPPORT if FB_SIS = y
1201f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1202f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1203f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
12043fa0ee77SThomas Zimmermann	select FB_IOMEM_FOPS
12055b833feaSArnd Bergmann	select FB_SIS_300 if !FB_SIS_315
12060ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1207f7018c21STomi Valkeinen	help
1208f7018c21STomi Valkeinen	  This is the frame buffer device driver for the SiS 300, 315, 330
1209f7018c21STomi Valkeinen	  and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
12107c7b2a35SAlexander A. Klimov	  Specs available at <https://www.sis.com> and <http://www.xgitech.com>.
1211f7018c21STomi Valkeinen
1212f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here; the module
1213f7018c21STomi Valkeinen	  will be called sisfb.
1214f7018c21STomi Valkeinen
1215f7018c21STomi Valkeinenconfig FB_SIS_300
1216f7018c21STomi Valkeinen	bool "SiS 300 series support"
1217f7018c21STomi Valkeinen	depends on FB_SIS
1218f7018c21STomi Valkeinen	help
1219f7018c21STomi Valkeinen	  Say Y here to support use of the SiS 300/305, 540, 630 and 730.
1220f7018c21STomi Valkeinen
1221f7018c21STomi Valkeinenconfig FB_SIS_315
1222f7018c21STomi Valkeinen	bool "SiS 315/330/340 series and XGI support"
1223f7018c21STomi Valkeinen	depends on FB_SIS
1224f7018c21STomi Valkeinen	help
1225f7018c21STomi Valkeinen	  Say Y here to support use of the SiS 315, 330 and 340 series
1226f7018c21STomi Valkeinen	  (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
1227f7018c21STomi Valkeinen	  as XGI V3XT, V5, V8 and Z7.
1228f7018c21STomi Valkeinen
1229f7018c21STomi Valkeinenconfig FB_VIA
1230f7018c21STomi Valkeinen	tristate "VIA UniChrome (Pro) and Chrome9 display support"
1231598041f3SBartlomiej Zolnierkiewicz	depends on FB && PCI && GPIOLIB && I2C && (X86 || COMPILE_TEST)
1232f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1233f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1234f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1235fb159df3SThomas Zimmermann	select FB_IOMEM_FOPS
1236f7018c21STomi Valkeinen	select I2C_ALGOBIT
12370ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1238f7018c21STomi Valkeinen	help
1239f7018c21STomi Valkeinen	  This is the frame buffer device driver for Graphics chips of VIA
1240f7018c21STomi Valkeinen	  UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
1241f7018c21STomi Valkeinen	  CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
1242f7018c21STomi Valkeinen	  /P4M900,VX800)
1243f7018c21STomi Valkeinen	  Say Y if you have a VIA UniChrome graphics board.
1244f7018c21STomi Valkeinen
1245f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1246f7018c21STomi Valkeinen	  module will be called viafb.
1247f7018c21STomi Valkeinen
1248f7018c21STomi Valkeinenif FB_VIA
1249f7018c21STomi Valkeinen
1250f7018c21STomi Valkeinenconfig FB_VIA_DIRECT_PROCFS
1251f7018c21STomi Valkeinen	bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
1252f7018c21STomi Valkeinen	help
1253f7018c21STomi Valkeinen	  Allow direct hardware access to some output registers via procfs.
1254f7018c21STomi Valkeinen	  This is dangerous but may provide the only chance to get the
1255f7018c21STomi Valkeinen	  correct output device configuration.
1256f7018c21STomi Valkeinen	  Its use is strongly discouraged.
1257f7018c21STomi Valkeinen
1258f7018c21STomi Valkeinenconfig FB_VIA_X_COMPATIBILITY
1259f7018c21STomi Valkeinen	bool "X server compatibility"
1260f7018c21STomi Valkeinen	help
1261f7018c21STomi Valkeinen	  This option reduces the functionality (power saving, ...) of the
1262f7018c21STomi Valkeinen	  framebuffer to avoid negative impact on the OpenChrome X server.
1263f7018c21STomi Valkeinen	  If you use any X server other than fbdev you should enable this
1264f7018c21STomi Valkeinen	  otherwise it should be safe to disable it and allow using all
1265f7018c21STomi Valkeinen	  features.
1266f7018c21STomi Valkeinen
1267f7018c21STomi Valkeinenendif
1268f7018c21STomi Valkeinen
1269f7018c21STomi Valkeinenconfig FB_NEOMAGIC
1270f7018c21STomi Valkeinen	tristate "NeoMagic display support"
1271f7018c21STomi Valkeinen	depends on FB && PCI
1272f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1273f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1274f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1275eb9d5c19SThomas Zimmermann	select FB_IOMEM_FOPS
1276eb9d5c19SThomas Zimmermann	select FB_MODE_HELPERS
1277f7018c21STomi Valkeinen	select VGASTATE
12780ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1279f7018c21STomi Valkeinen	help
1280f7018c21STomi Valkeinen	  This driver supports notebooks with NeoMagic PCI chips.
1281f7018c21STomi Valkeinen	  Say Y if you have such a graphics card.
1282f7018c21STomi Valkeinen
1283f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1284f7018c21STomi Valkeinen	  module will be called neofb.
1285f7018c21STomi Valkeinen
1286f7018c21STomi Valkeinenconfig FB_KYRO
1287f7018c21STomi Valkeinen	tristate "IMG Kyro support"
1288f7018c21STomi Valkeinen	depends on FB && PCI
1289dfc676d0SThomas Zimmermann	select FB_IOMEM_HELPERS
12900ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1291f7018c21STomi Valkeinen	help
1292f7018c21STomi Valkeinen	  Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
1293f7018c21STomi Valkeinen	  graphics board.
1294f7018c21STomi Valkeinen
1295f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1296f7018c21STomi Valkeinen	  module will be called kyrofb.
1297f7018c21STomi Valkeinen
1298f7018c21STomi Valkeinenconfig FB_3DFX
1299f7018c21STomi Valkeinen	tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
1300f7018c21STomi Valkeinen	depends on FB && PCI
1301f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1302f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1303309ede0fSThomas Zimmermann	select FB_CFB_IMAGEBLIT
1304309ede0fSThomas Zimmermann	select FB_IOMEM_FOPS
1305f7018c21STomi Valkeinen	select FB_MODE_HELPERS
13060ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1307f7018c21STomi Valkeinen	help
1308f7018c21STomi Valkeinen	  This driver supports graphics boards with the 3Dfx Banshee,
1309f7018c21STomi Valkeinen	  Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
1310f7018c21STomi Valkeinen	  such a graphics board.
1311f7018c21STomi Valkeinen
1312f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1313f7018c21STomi Valkeinen	  module will be called tdfxfb.
1314f7018c21STomi Valkeinen
1315f7018c21STomi Valkeinenconfig FB_3DFX_ACCEL
1316f7018c21STomi Valkeinen	bool "3Dfx Acceleration functions"
1317f7018c21STomi Valkeinen	depends on FB_3DFX
1318a7f7f624SMasahiro Yamada	help
1319f7018c21STomi Valkeinen	This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
1320f7018c21STomi Valkeinen	device driver with acceleration functions.
1321f7018c21STomi Valkeinen
1322f7018c21STomi Valkeinenconfig FB_3DFX_I2C
1323f7018c21STomi Valkeinen	bool "Enable DDC/I2C support"
1324f7018c21STomi Valkeinen	depends on FB_3DFX
1325f7018c21STomi Valkeinen	select FB_DDC
1326f7018c21STomi Valkeinen	default y
1327f7018c21STomi Valkeinen	help
1328f7018c21STomi Valkeinen	  Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
1329f7018c21STomi Valkeinen
1330f7018c21STomi Valkeinenconfig FB_VOODOO1
1331f7018c21STomi Valkeinen	tristate "3Dfx Voodoo Graphics (sst1) support"
1332f7018c21STomi Valkeinen	depends on FB && PCI
1333701d2054SThomas Zimmermann	depends on FB_DEVICE
133499df80c7SThomas Zimmermann	select FB_IOMEM_HELPERS
13350ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1336a7f7f624SMasahiro Yamada	help
1337f7018c21STomi Valkeinen	  Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
1338f7018c21STomi Valkeinen	  Voodoo2 (cvg) based graphics card.
1339f7018c21STomi Valkeinen
1340f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1341f7018c21STomi Valkeinen	  module will be called sstfb.
1342f7018c21STomi Valkeinen
1343f7018c21STomi Valkeinen	  WARNING: Do not use any application that uses the 3D engine
1344f7018c21STomi Valkeinen	  (namely glide) while using this driver.
1345ab42b818SMauro Carvalho Chehab	  Please read the <file:Documentation/fb/sstfb.rst> for supported
1346f7018c21STomi Valkeinen	  options and other important info  support.
1347f7018c21STomi Valkeinen
1348f7018c21STomi Valkeinenconfig FB_VT8623
1349f7018c21STomi Valkeinen	tristate "VIA VT8623 support"
1350f7018c21STomi Valkeinen	depends on FB && PCI
1351f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1352f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1353f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
13542770ea00SThomas Zimmermann	select FB_IOMEM_FOPS
1355f7018c21STomi Valkeinen	select FB_TILEBLITTING
1356f7018c21STomi Valkeinen	select FB_SVGALIB
1357f7018c21STomi Valkeinen	select VGASTATE
13580ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1359f7018c21STomi Valkeinen	select FONT_8x16 if FRAMEBUFFER_CONSOLE
1360a7f7f624SMasahiro Yamada	help
1361f7018c21STomi Valkeinen	  Driver for CastleRock integrated graphics core in the
1362f7018c21STomi Valkeinen	  VIA VT8623 [Apollo CLE266] chipset.
1363f7018c21STomi Valkeinen
1364f7018c21STomi Valkeinenconfig FB_TRIDENT
1365f7018c21STomi Valkeinen	tristate "Trident/CyberXXX/CyberBlade support"
1366f7018c21STomi Valkeinen	depends on FB && PCI
1367f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1368f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1369f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
13706a5e3bd0SOndrej Zary	select FB_DDC
13715e5943feSThomas Zimmermann	select FB_IOMEM_FOPS
13726a5e3bd0SOndrej Zary	select FB_MODE_HELPERS
13730ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1374a7f7f624SMasahiro Yamada	help
1375f7018c21STomi Valkeinen	  This is the frame buffer device driver for Trident PCI/AGP chipsets.
1376f7018c21STomi Valkeinen	  Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
1377f7018c21STomi Valkeinen	  and Blade XP.
1378f7018c21STomi Valkeinen	  There are also integrated versions of these chips called CyberXXXX,
1379f7018c21STomi Valkeinen	  CyberImage or CyberBlade. These chips are mostly found in laptops
1380f7018c21STomi Valkeinen	  but also on some motherboards including early VIA EPIA motherboards.
1381ab42b818SMauro Carvalho Chehab	  For more information, read <file:Documentation/fb/tridentfb.rst>
1382f7018c21STomi Valkeinen
1383f7018c21STomi Valkeinen	  Say Y if you have such a graphics board.
1384f7018c21STomi Valkeinen
1385f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1386f7018c21STomi Valkeinen	  module will be called tridentfb.
1387f7018c21STomi Valkeinen
1388f7018c21STomi Valkeinenconfig FB_ARK
1389f7018c21STomi Valkeinen	tristate "ARK 2000PV support"
1390f7018c21STomi Valkeinen	depends on FB && PCI
1391f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1392f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1393f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
13947421a630SThomas Zimmermann	select FB_IOMEM_FOPS
1395f7018c21STomi Valkeinen	select FB_TILEBLITTING
1396f7018c21STomi Valkeinen	select FB_SVGALIB
1397f7018c21STomi Valkeinen	select VGASTATE
13980ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1399f7018c21STomi Valkeinen	select FONT_8x16 if FRAMEBUFFER_CONSOLE
1400a7f7f624SMasahiro Yamada	help
1401f7018c21STomi Valkeinen	  Driver for PCI graphics boards with ARK 2000PV chip
1402f7018c21STomi Valkeinen	  and ICS 5342 RAMDAC.
1403f7018c21STomi Valkeinen
1404f7018c21STomi Valkeinenconfig FB_PM3
1405f7018c21STomi Valkeinen	tristate "Permedia3 support"
1406f7018c21STomi Valkeinen	depends on FB && PCI
1407f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1408f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1409f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
14105dc84f30SThomas Zimmermann	select FB_IOMEM_FOPS
14110ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1412f7018c21STomi Valkeinen	help
1413f7018c21STomi Valkeinen	  This is the frame buffer device driver for the 3DLabs Permedia3
1414f7018c21STomi Valkeinen	  chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
1415f7018c21STomi Valkeinen	  similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
1416f7018c21STomi Valkeinen	  and maybe other boards.
1417f7018c21STomi Valkeinen
1418f7018c21STomi Valkeinenconfig FB_CARMINE
1419f7018c21STomi Valkeinen	tristate "Fujitsu carmine frame buffer support"
1420f7018c21STomi Valkeinen	depends on FB && PCI
1421c64ded17SThomas Zimmermann	select FB_IOMEM_HELPERS
14220ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1423f7018c21STomi Valkeinen	help
1424f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Fujitsu Carmine chip.
1425f7018c21STomi Valkeinen	  The driver provides two independent frame buffer devices.
1426f7018c21STomi Valkeinen
1427f7018c21STomi Valkeinenchoice
1428f7018c21STomi Valkeinen	depends on FB_CARMINE
1429f7018c21STomi Valkeinen	prompt "DRAM timing"
1430f7018c21STomi Valkeinen	default FB_CARMINE_DRAM_EVAL
1431f7018c21STomi Valkeinen
1432f7018c21STomi Valkeinenconfig FB_CARMINE_DRAM_EVAL
1433f7018c21STomi Valkeinen	bool "Eval board timings"
1434f7018c21STomi Valkeinen	help
1435f7018c21STomi Valkeinen	  Use timings which work on the eval card.
1436f7018c21STomi Valkeinen
1437f7018c21STomi Valkeinenconfig CARMINE_DRAM_CUSTOM
1438f7018c21STomi Valkeinen	bool "Custom board timings"
1439f7018c21STomi Valkeinen	help
1440f7018c21STomi Valkeinen	  Use custom board timings.
1441f7018c21STomi Valkeinenendchoice
1442f7018c21STomi Valkeinen
1443f7018c21STomi Valkeinenconfig FB_AU1100
1444f7018c21STomi Valkeinen	bool "Au1100 LCD Driver"
1445f7018c21STomi Valkeinen	depends on (FB = y) && MIPS_ALCHEMY
144693ede59cSThomas Zimmermann	select FB_IOMEM_HELPERS
1447f7018c21STomi Valkeinen	help
1448f7018c21STomi Valkeinen	  This is the framebuffer driver for the AMD Au1100 SOC.  It can drive
1449f7018c21STomi Valkeinen	  various panels and CRTs by passing in kernel cmd line option
1450f7018c21STomi Valkeinen	  au1100fb:panel=<name>.
1451f7018c21STomi Valkeinen
1452f7018c21STomi Valkeinenconfig FB_AU1200
1453f7018c21STomi Valkeinen	bool "Au1200/Au1300 LCD Driver"
1454f7018c21STomi Valkeinen	depends on (FB = y) && MIPS_ALCHEMY
1455dfc30522SThomas Zimmermann	select FB_DMAMEM_HELPERS
1456f7018c21STomi Valkeinen	help
1457f7018c21STomi Valkeinen	  This is the framebuffer driver for the Au1200/Au1300 SOCs.
1458f7018c21STomi Valkeinen	  It can drive various panels and CRTs by passing in kernel cmd line
1459f7018c21STomi Valkeinen	  option au1200fb:panel=<name>.
1460f7018c21STomi Valkeinen
1461f7018c21STomi Valkeinenconfig FB_VT8500
1462f7018c21STomi Valkeinen	bool "VIA VT8500 framebuffer support"
1463f7018c21STomi Valkeinen	depends on (FB = y) && ARM && ARCH_VT8500
1464f7018c21STomi Valkeinen	select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1465f7018c21STomi Valkeinen	select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
1466f7018c21STomi Valkeinen	select FB_SYS_IMAGEBLIT
146763a11adaSThomas Zimmermann	select FB_SYS_FOPS
1468f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1469f7018c21STomi Valkeinen	select VIDEOMODE_HELPERS
1470f7018c21STomi Valkeinen	help
1471f7018c21STomi Valkeinen	  This is the framebuffer driver for VIA VT8500 integrated LCD
1472f7018c21STomi Valkeinen	  controller.
1473f7018c21STomi Valkeinen
1474f7018c21STomi Valkeinenconfig FB_WM8505
1475f7018c21STomi Valkeinen	bool "Wondermedia WM8xxx-series frame buffer support"
14769e24d63bSBartlomiej Zolnierkiewicz	depends on (FB = y) && HAS_IOMEM && (ARCH_VT8500 || COMPILE_TEST)
1477f7018c21STomi Valkeinen	select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
1478f7018c21STomi Valkeinen	select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
1479f7018c21STomi Valkeinen	select FB_SYS_IMAGEBLIT
148011754a50SThomas Zimmermann	select FB_SYS_FOPS
1481f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1482f7018c21STomi Valkeinen	select VIDEOMODE_HELPERS
1483f7018c21STomi Valkeinen	help
1484f7018c21STomi Valkeinen	  This is the framebuffer driver for WonderMedia WM8xxx-series
1485f7018c21STomi Valkeinen	  integrated LCD controller. This driver covers the WM8505, WM8650
1486f7018c21STomi Valkeinen	  and WM8850 SoCs.
1487f7018c21STomi Valkeinen
1488f7018c21STomi Valkeinenconfig FB_WMT_GE_ROPS
1489f7018c21STomi Valkeinen	bool "VT8500/WM8xxx accelerated raster ops support"
1490f7018c21STomi Valkeinen	depends on (FB = y) && (FB_VT8500 || FB_WM8505)
1491f7018c21STomi Valkeinen	help
1492f7018c21STomi Valkeinen	  This adds support for accelerated raster operations on the
1493f7018c21STomi Valkeinen	  VIA VT8500 and Wondermedia 85xx series SoCs.
1494f7018c21STomi Valkeinen
1495f7018c21STomi Valkeinensource "drivers/video/fbdev/geode/Kconfig"
1496f7018c21STomi Valkeinen
1497f7018c21STomi Valkeinenconfig FB_HIT
1498f7018c21STomi Valkeinen	tristate "HD64461 Frame Buffer support"
1499f7018c21STomi Valkeinen	depends on FB && HD64461
1500f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1501f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
1502a1a1c3faSThomas Zimmermann	select FB_IOMEM_FOPS
1503f7018c21STomi Valkeinen	help
1504f7018c21STomi Valkeinen	  This is the frame buffer device driver for the Hitachi HD64461 LCD
1505f7018c21STomi Valkeinen	  frame buffer card.
1506f7018c21STomi Valkeinen
1507f7018c21STomi Valkeinenconfig FB_PMAG_AA
150860821fecSMaciej W. Rozycki	tristate "PMAG-AA TURBOchannel framebuffer support"
150960821fecSMaciej W. Rozycki	depends on FB && TC
15108a478b00SThomas Zimmermann	select FB_IOMEM_HELPERS
1511f7018c21STomi Valkeinen	help
1512f7018c21STomi Valkeinen	  Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
1513f7018c21STomi Valkeinen	  used mainly in the MIPS-based DECstation series.
1514f7018c21STomi Valkeinen
1515f7018c21STomi Valkeinenconfig FB_PMAG_BA
1516f7018c21STomi Valkeinen	tristate "PMAG-BA TURBOchannel framebuffer support"
1517f7018c21STomi Valkeinen	depends on FB && TC
151851840aaaSThomas Zimmermann	select FB_IOMEM_HELPERS
1519f7018c21STomi Valkeinen	help
1520f7018c21STomi Valkeinen	  Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
1521f7018c21STomi Valkeinen	  used mainly in the MIPS-based DECstation series.
1522f7018c21STomi Valkeinen
1523f7018c21STomi Valkeinenconfig FB_PMAGB_B
1524f7018c21STomi Valkeinen	tristate "PMAGB-B TURBOchannel framebuffer support"
1525f7018c21STomi Valkeinen	depends on FB && TC
1526711b8025SThomas Zimmermann	select FB_IOMEM_HELPERS
1527f7018c21STomi Valkeinen	help
1528f7018c21STomi Valkeinen	  Support for the PMAGB-B TURBOchannel framebuffer card used mainly
1529f7018c21STomi Valkeinen	  in the MIPS-based DECstation series. The card is currently only
1530f7018c21STomi Valkeinen	  supported in 1280x1024x8 mode.
1531f7018c21STomi Valkeinen
1532f7018c21STomi Valkeinenconfig FB_MAXINE
1533f7018c21STomi Valkeinen	bool "Maxine (Personal DECstation) onboard framebuffer support"
1534f7018c21STomi Valkeinen	depends on (FB = y) && MACH_DECSTATION
1535e4f10ea7SThomas Zimmermann	select FB_IOMEM_HELPERS
1536f7018c21STomi Valkeinen	help
1537f7018c21STomi Valkeinen	  Support for the onboard framebuffer (1024x768x8) in the Personal
1538f7018c21STomi Valkeinen	  DECstation series (Personal DECstation 5000/20, /25, /33, /50,
1539f7018c21STomi Valkeinen	  Codename "Maxine").
1540f7018c21STomi Valkeinen
1541f7018c21STomi Valkeinenconfig FB_G364
1542f7018c21STomi Valkeinen	bool "G364 frame buffer support"
1543f7018c21STomi Valkeinen	depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
154450112608SThomas Zimmermann	select FB_IOMEM_HELPERS
1545f7018c21STomi Valkeinen	help
1546f7018c21STomi Valkeinen	  The G364 driver is the framebuffer used in MIPS Magnum 4000 and
1547f7018c21STomi Valkeinen	  Olivetti M700-10 systems.
1548f7018c21STomi Valkeinen
1549f7018c21STomi Valkeinenconfig FB_68328
1550f7018c21STomi Valkeinen	bool "Motorola 68328 native frame buffer support"
1551f7018c21STomi Valkeinen	depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
15525a5015aaSThomas Zimmermann	select FB_IOMEM_HELPERS
1553f7018c21STomi Valkeinen	help
1554f7018c21STomi Valkeinen	  Say Y here if you want to support the built-in frame buffer of
1555f7018c21STomi Valkeinen	  the Motorola 68328 CPU family.
1556f7018c21STomi Valkeinen
1557f7018c21STomi Valkeinenconfig FB_PXA168
1558f7018c21STomi Valkeinen	tristate "PXA168/910 LCD framebuffer support"
1559f0bab2e3SBartlomiej Zolnierkiewicz	depends on FB && HAVE_CLK && HAS_IOMEM
1560f0bab2e3SBartlomiej Zolnierkiewicz	depends on CPU_PXA168 || CPU_PXA910 || COMPILE_TEST
1561cc61e67cSThomas Zimmermann	select FB_IOMEM_HELPERS
1562a7f7f624SMasahiro Yamada	help
1563f7018c21STomi Valkeinen	  Frame buffer driver for the built-in LCD controller in the Marvell
1564f7018c21STomi Valkeinen	  MMP processor.
1565f7018c21STomi Valkeinen
1566f7018c21STomi Valkeinenconfig FB_PXA
1567f7018c21STomi Valkeinen	tristate "PXA LCD framebuffer support"
1568f7018c21STomi Valkeinen	depends on FB && ARCH_PXA
1569525f20b7SThomas Zimmermann	select FB_IOMEM_HELPERS
1570420a4882SRobert Jarzmik	select VIDEOMODE_HELPERS if OF
1571420a4882SRobert Jarzmik	select FB_MODE_HELPERS if OF
1572a7f7f624SMasahiro Yamada	help
1573f7018c21STomi Valkeinen	  Frame buffer driver for the built-in LCD controller in the Intel
1574f7018c21STomi Valkeinen	  PXA2x0 processor.
1575f7018c21STomi Valkeinen
1576f7018c21STomi Valkeinen	  This driver is also available as a module ( = code which can be
1577f7018c21STomi Valkeinen	  inserted and removed from the running kernel whenever you want). The
1578f7018c21STomi Valkeinen	  module will be called pxafb. If you want to compile it as a module,
1579cd238effSMauro Carvalho Chehab	  say M here and read <file:Documentation/kbuild/modules.rst>.
1580f7018c21STomi Valkeinen
1581f7018c21STomi Valkeinen	  If unsure, say N.
1582f7018c21STomi Valkeinen
1583f7018c21STomi Valkeinenconfig FB_PXA_OVERLAY
1584f7018c21STomi Valkeinen	bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
1585f7018c21STomi Valkeinen	depends on FB_PXA && (PXA27x || PXA3xx)
1586f7018c21STomi Valkeinen
1587f7018c21STomi Valkeinenconfig FB_PXA_SMARTPANEL
1588f7018c21STomi Valkeinen	bool "PXA Smartpanel LCD support"
1589f7018c21STomi Valkeinen	depends on FB_PXA
1590f7018c21STomi Valkeinen
1591f7018c21STomi Valkeinenconfig FB_PXA_PARAMETERS
1592f7018c21STomi Valkeinen	bool "PXA LCD command line parameters"
1593f7018c21STomi Valkeinen	depends on FB_PXA
1594a7f7f624SMasahiro Yamada	help
1595f7018c21STomi Valkeinen	  Enable the use of kernel command line or module parameters
1596f7018c21STomi Valkeinen	  to configure the physical properties of the LCD panel when
1597f7018c21STomi Valkeinen	  using the PXA LCD driver.
1598f7018c21STomi Valkeinen
1599f7018c21STomi Valkeinen	  This option allows you to override the panel parameters
1600f7018c21STomi Valkeinen	  supplied by the platform in order to support multiple
1601f7018c21STomi Valkeinen	  different models of flatpanel. If you will only be using a
1602f7018c21STomi Valkeinen	  single model of flatpanel then you can safely leave this
1603f7018c21STomi Valkeinen	  option disabled.
1604f7018c21STomi Valkeinen
1605ab42b818SMauro Carvalho Chehab	  <file:Documentation/fb/pxafb.rst> describes the available parameters.
1606f7018c21STomi Valkeinen
1607f7018c21STomi Valkeinenconfig PXA3XX_GCU
1608f7018c21STomi Valkeinen	tristate "PXA3xx 2D graphics accelerator driver"
1609f7018c21STomi Valkeinen	depends on FB_PXA
1610f7018c21STomi Valkeinen	help
1611f7018c21STomi Valkeinen	  Kernelspace driver for the 2D graphics controller unit (GCU)
1612f7018c21STomi Valkeinen	  found on PXA3xx processors. There is a counterpart driver in the
1613f7018c21STomi Valkeinen	  DirectFB suite, see http://www.directfb.org/
1614f7018c21STomi Valkeinen
1615f7018c21STomi Valkeinen	  If you compile this as a module, it will be called pxa3xx_gcu.
1616f7018c21STomi Valkeinen
1617f7018c21STomi Valkeinenconfig FB_FSL_DIU
1618f7018c21STomi Valkeinen	tristate "Freescale DIU framebuffer support"
1619f7018c21STomi Valkeinen	depends on FB && FSL_SOC
162065479f45SThomas Zimmermann	select FB_IOMEM_HELPERS
1621f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1622f7018c21STomi Valkeinen	select PPC_LIB_RHEAP
1623a7f7f624SMasahiro Yamada	help
1624f7018c21STomi Valkeinen	  Framebuffer driver for the Freescale SoC DIU
1625f7018c21STomi Valkeinen
1626f7018c21STomi Valkeinenconfig FB_SH_MOBILE_LCDC
1627f7018c21STomi Valkeinen	tristate "SuperH Mobile LCDC framebuffer support"
16286df86276SBartlomiej Zolnierkiewicz	depends on FB && HAVE_CLK && HAS_IOMEM
16296df86276SBartlomiej Zolnierkiewicz	depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
1630701d2054SThomas Zimmermann	depends on FB_DEVICE
1631f7018c21STomi Valkeinen	select FB_BACKLIGHT
163201f4fbb3SThomas Zimmermann	select FB_DEFERRED_IO
163301f4fbb3SThomas Zimmermann	select FB_DMAMEM_HELPERS
1634a7f7f624SMasahiro Yamada	help
1635f7018c21STomi Valkeinen	  Frame buffer driver for the on-chip SH-Mobile LCD controller.
1636f7018c21STomi Valkeinen
1637f7018c21STomi Valkeinenconfig FB_S3C
1638f7018c21STomi Valkeinen	tristate "Samsung S3C framebuffer support"
1639f10effe5SBartlomiej Zolnierkiewicz	depends on FB && HAVE_CLK && HAS_IOMEM
1640f48fd50bSArnd Bergmann	depends on ARCH_S3C64XX || COMPILE_TEST
1641588a25e0SThomas Zimmermann	select FB_IOMEM_HELPERS
1642a7f7f624SMasahiro Yamada	help
1643f7018c21STomi Valkeinen	  Frame buffer driver for the built-in FB controller in the Samsung
1644f48fd50bSArnd Bergmann	  SoC line such as the S3C6400 and S3C6410.
1645f7018c21STomi Valkeinen
1646f7018c21STomi Valkeinen	  These chips all have the same basic framebuffer design with the
1647f48fd50bSArnd Bergmann	  actual capabilities depending on the chip. The S3C6400
1648f48fd50bSArnd Bergmann	  and S3C6410 support 4 hardware windows.
1649f7018c21STomi Valkeinen
1650f7018c21STomi Valkeinen	  Currently the support is only for the S3C6400 and S3C6410 SoCs.
1651f7018c21STomi Valkeinen
1652f7018c21STomi Valkeinenconfig FB_S3C_DEBUG_REGWRITE
1653f7018c21STomi Valkeinen	bool "Debug register writes"
1654f7018c21STomi Valkeinen	depends on FB_S3C
1655a7f7f624SMasahiro Yamada	help
1656f7018c21STomi Valkeinen	  Show all register writes via pr_debug()
1657f7018c21STomi Valkeinen
1658f7018c21STomi Valkeinenconfig FB_SM501
1659f7018c21STomi Valkeinen	tristate "Silicon Motion SM501 framebuffer support"
1660f7018c21STomi Valkeinen	depends on FB && MFD_SM501
1661f7018c21STomi Valkeinen	select FB_CFB_FILLRECT
1662f7018c21STomi Valkeinen	select FB_CFB_COPYAREA
1663f7018c21STomi Valkeinen	select FB_CFB_IMAGEBLIT
166430543d36SThomas Zimmermann	select FB_IOMEM_FOPS
1665a7f7f624SMasahiro Yamada	help
1666f7018c21STomi Valkeinen	  Frame buffer driver for the CRT and LCD controllers in the Silicon
1667f7018c21STomi Valkeinen	  Motion SM501.
1668f7018c21STomi Valkeinen
1669f7018c21STomi Valkeinen	  This driver is also available as a module ( = code which can be
1670f7018c21STomi Valkeinen	  inserted and removed from the running kernel whenever you want). The
1671f7018c21STomi Valkeinen	  module will be called sm501fb. If you want to compile it as a module,
1672cd238effSMauro Carvalho Chehab	  say M here and read <file:Documentation/kbuild/modules.rst>.
1673f7018c21STomi Valkeinen
1674f7018c21STomi Valkeinen	  If unsure, say N.
1675f7018c21STomi Valkeinen
1676f7018c21STomi Valkeinenconfig FB_SMSCUFX
1677f7018c21STomi Valkeinen	tristate "SMSC UFX6000/7000 USB Framebuffer support"
1678f7018c21STomi Valkeinen	depends on FB && USB
1679f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1680133a2ca2SThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1681a7f7f624SMasahiro Yamada	help
1682f7018c21STomi Valkeinen	  This is a kernel framebuffer driver for SMSC UFX USB devices.
1683f7018c21STomi Valkeinen	  Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
1684f7018c21STomi Valkeinen	  mplayer -vo fbdev. Supports both UFX6000 (USB 2.0) and UFX7000
1685f7018c21STomi Valkeinen	  (USB 3.0) devices.
1686f7018c21STomi Valkeinen	  To compile as a module, choose M here: the module name is smscufx.
1687f7018c21STomi Valkeinen
1688f7018c21STomi Valkeinenconfig FB_UDL
1689f7018c21STomi Valkeinen	tristate "Displaylink USB Framebuffer support"
1690f7018c21STomi Valkeinen	depends on FB && USB
1691701d2054SThomas Zimmermann	depends on FB_DEVICE
1692f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1693c9496954SThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1694a7f7f624SMasahiro Yamada	help
1695f7018c21STomi Valkeinen	  This is a kernel framebuffer driver for DisplayLink USB devices.
1696f7018c21STomi Valkeinen	  Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
1697f7018c21STomi Valkeinen	  mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
1698f7018c21STomi Valkeinen	  To compile as a module, choose M here: the module name is udlfb.
1699f7018c21STomi Valkeinen
1700f7018c21STomi Valkeinenconfig FB_IBM_GXT4500
1701f7018c21STomi Valkeinen	tristate "Framebuffer support for IBM GXT4000P/4500P/6000P/6500P adaptors"
1702031e37f8SOndrej Zary	depends on FB
1703496c2c8cSThomas Zimmermann	select FB_IOMEM_HELPERS
17040ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1705a7f7f624SMasahiro Yamada	help
1706f7018c21STomi Valkeinen	  Say Y here to enable support for the IBM GXT4000P/6000P and
1707f7018c21STomi Valkeinen	  GXT4500P/6500P display adaptor based on Raster Engine RC1000,
1708f7018c21STomi Valkeinen	  found on some IBM System P (pSeries) machines. This driver
1709031e37f8SOndrej Zary	  doesn't use Geometry Engine GT1000. This driver also supports
1710031e37f8SOndrej Zary	  AGP Fire GL2/3/4 cards on x86.
1711f7018c21STomi Valkeinen
1712f7018c21STomi Valkeinenconfig FB_PS3
1713f7018c21STomi Valkeinen	tristate "PS3 GPU framebuffer driver"
1714f7018c21STomi Valkeinen	depends on FB && PS3_PS3AV
1715741effeaSThomas Zimmermann	select FB_SYSMEM_HELPERS
1716a7f7f624SMasahiro Yamada	help
1717f7018c21STomi Valkeinen	  Include support for the virtual frame buffer in the PS3 platform.
1718f7018c21STomi Valkeinen
1719f7018c21STomi Valkeinenconfig FB_PS3_DEFAULT_SIZE_M
1720f7018c21STomi Valkeinen	int "PS3 default frame buffer size (in MiB)"
1721f7018c21STomi Valkeinen	depends on FB_PS3
1722f7018c21STomi Valkeinen	default 9
1723a7f7f624SMasahiro Yamada	help
1724f7018c21STomi Valkeinen	  This is the default size (in MiB) of the virtual frame buffer in
1725f7018c21STomi Valkeinen	  the PS3.
1726f7018c21STomi Valkeinen	  The default value can be overridden on the kernel command line
1727f7018c21STomi Valkeinen	  using the "ps3fb" option (e.g. "ps3fb=9M");
1728f7018c21STomi Valkeinen
1729f7018c21STomi Valkeinenconfig FB_XILINX
1730f7018c21STomi Valkeinen	tristate "Xilinx frame buffer support"
17317ade8495SMichal Simek	depends on FB && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
1732556c6dd5SThomas Zimmermann	select FB_IOMEM_HELPERS
1733a7f7f624SMasahiro Yamada	help
1734f7018c21STomi Valkeinen	  Include support for the Xilinx ML300/ML403 reference design
1735f7018c21STomi Valkeinen	  framebuffer. ML300 carries a 640*480 LCD display on the board,
1736f7018c21STomi Valkeinen	  ML403 uses a standard DB15 VGA connector.
1737f7018c21STomi Valkeinen
1738f7018c21STomi Valkeinenconfig FB_GOLDFISH
1739f7018c21STomi Valkeinen	tristate "Goldfish Framebuffer"
1740e9462fffSGeert Uytterhoeven	depends on FB
1741e9462fffSGeert Uytterhoeven	depends on GOLDFISH || COMPILE_TEST
174266813970SThomas Zimmermann	select FB_IOMEM_HELPERS
1743a7f7f624SMasahiro Yamada	help
1744f7018c21STomi Valkeinen	  Framebuffer driver for Goldfish Virtual Platform
1745f7018c21STomi Valkeinen
1746f7018c21STomi Valkeinenconfig FB_COBALT
1747f7018c21STomi Valkeinen	tristate "Cobalt server LCD frame buffer support"
1748eb42d760SPaul Burton	depends on FB && MIPS_COBALT
1749d47f9775SThomas Zimmermann	select FB_IOMEM_HELPERS
1750f7018c21STomi Valkeinen
1751f7018c21STomi Valkeinenconfig FB_SH7760
1752f7018c21STomi Valkeinen	bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
1753f75f71b2SThomas Zimmermann	depends on FB=y && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
1754f7018c21STomi Valkeinen		|| CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
17555f863670SThomas Zimmermann	select FB_IOMEM_HELPERS
1756a7f7f624SMasahiro Yamada	help
1757f7018c21STomi Valkeinen	  Support for the SH7760/SH7763/SH7720/SH7721 integrated
1758f7018c21STomi Valkeinen	  (D)STN/TFT LCD Controller.
1759f7018c21STomi Valkeinen	  Supports display resolutions up to 1024x1024 pixel, grayscale and
1760f7018c21STomi Valkeinen	  color operation, with depths ranging from 1 bpp to 8 bpp monochrome
1761f7018c21STomi Valkeinen	  and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
1762f7018c21STomi Valkeinen	  panels <= 320 pixel horizontal resolution.
1763f7018c21STomi Valkeinen
1764f7018c21STomi Valkeinenconfig FB_DA8XX
1765f7018c21STomi Valkeinen	tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support"
1766767ceabcSBartlomiej Zolnierkiewicz	depends on FB && HAVE_CLK && HAS_IOMEM
1767767ceabcSBartlomiej Zolnierkiewicz	depends on ARCH_DAVINCI_DA8XX || SOC_AM33XX || COMPILE_TEST
1768f7018c21STomi Valkeinen	select FB_CFB_REV_PIXELS_IN_BYTE
17691e9fd9d5SThomas Zimmermann	select FB_IOMEM_HELPERS
1770f7018c21STomi Valkeinen	select FB_MODE_HELPERS
1771f7018c21STomi Valkeinen	select VIDEOMODE_HELPERS
1772a7f7f624SMasahiro Yamada	help
1773f7018c21STomi Valkeinen	  This is the frame buffer device driver for the TI LCD controller
1774f7018c21STomi Valkeinen	  found on DA8xx/OMAP-L1xx/AM335x SoCs.
1775f7018c21STomi Valkeinen	  If unsure, say N.
1776f7018c21STomi Valkeinen
1777f7018c21STomi Valkeinenconfig FB_VIRTUAL
1778f7018c21STomi Valkeinen	tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
1779f7018c21STomi Valkeinen	depends on FB
1780853767b6SThomas Zimmermann	select FB_SYSMEM_HELPERS
1781a7f7f624SMasahiro Yamada	help
1782f7018c21STomi Valkeinen	  This is a `virtual' frame buffer device. It operates on a chunk of
1783f7018c21STomi Valkeinen	  unswappable kernel memory instead of on the memory of a graphics
1784f7018c21STomi Valkeinen	  board. This means you cannot see any output sent to this frame
1785f7018c21STomi Valkeinen	  buffer device, while it does consume precious memory. The main use
1786f7018c21STomi Valkeinen	  of this frame buffer device is testing and debugging the frame
1787f7018c21STomi Valkeinen	  buffer subsystem. Do NOT enable it for normal systems! To protect
1788f7018c21STomi Valkeinen	  the innocent, it has to be enabled explicitly at boot time using the
1789f7018c21STomi Valkeinen	  kernel option `video=vfb:'.
1790f7018c21STomi Valkeinen
1791f7018c21STomi Valkeinen	  To compile this driver as a module, choose M here: the
1792f7018c21STomi Valkeinen	  module will be called vfb. In order to load it, you must use
1793f7018c21STomi Valkeinen	  the vfb_enable=1 option.
1794f7018c21STomi Valkeinen
1795f7018c21STomi Valkeinen	  If unsure, say N.
1796f7018c21STomi Valkeinen
1797f7018c21STomi Valkeinenconfig XEN_FBDEV_FRONTEND
1798f7018c21STomi Valkeinen	tristate "Xen virtual frame buffer support"
1799f7018c21STomi Valkeinen	depends on FB && XEN
1800cd8a064fSThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1801f7018c21STomi Valkeinen	select XEN_XENBUS_FRONTEND
1802f7018c21STomi Valkeinen	default y
1803f7018c21STomi Valkeinen	help
1804f7018c21STomi Valkeinen	  This driver implements the front-end of the Xen virtual
1805f7018c21STomi Valkeinen	  frame buffer driver.  It communicates with a back-end
1806f7018c21STomi Valkeinen	  in another domain.
1807f7018c21STomi Valkeinen
1808f7018c21STomi Valkeinenconfig FB_METRONOME
1809f7018c21STomi Valkeinen	tristate "E-Ink Metronome/8track controller support"
1810f7018c21STomi Valkeinen	depends on FB
1811cd8a064fSThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1812f7018c21STomi Valkeinen	help
1813f7018c21STomi Valkeinen	  This driver implements support for the E-Ink Metronome
1814f7018c21STomi Valkeinen	  controller. The pre-release name for this device was 8track
1815f7018c21STomi Valkeinen	  and could also have been called by some vendors as PVI-nnnn.
1816f7018c21STomi Valkeinen
1817f7018c21STomi Valkeinenconfig FB_MB862XX
1818f7018c21STomi Valkeinen	tristate "Fujitsu MB862xx GDC support"
1819f7018c21STomi Valkeinen	depends on FB
1820f7018c21STomi Valkeinen	depends on PCI || (OF && PPC)
1821e035a53eSThomas Zimmermann	select FB_IOMEM_HELPERS
18220ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1823a7f7f624SMasahiro Yamada	help
1824f7018c21STomi Valkeinen	  Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
1825f7018c21STomi Valkeinen
1826f7018c21STomi Valkeinenchoice
1827f7018c21STomi Valkeinen	prompt "GDC variant"
1828f7018c21STomi Valkeinen	depends on FB_MB862XX
1829f7018c21STomi Valkeinen
1830f7018c21STomi Valkeinenconfig FB_MB862XX_PCI_GDC
1831f7018c21STomi Valkeinen	bool "Carmine/Coral-P(A) GDC"
1832f7018c21STomi Valkeinen	depends on PCI
1833a7f7f624SMasahiro Yamada	help
1834f7018c21STomi Valkeinen	  This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
1835f7018c21STomi Valkeinen	  PCI graphics controller devices.
1836f7018c21STomi Valkeinen
1837f7018c21STomi Valkeinenconfig FB_MB862XX_LIME
1838f7018c21STomi Valkeinen	bool "Lime GDC"
1839f7018c21STomi Valkeinen	depends on OF && PPC
1840f7018c21STomi Valkeinen	select FB_FOREIGN_ENDIAN
1841f7018c21STomi Valkeinen	select FB_LITTLE_ENDIAN
1842a7f7f624SMasahiro Yamada	help
1843f7018c21STomi Valkeinen	  Framebuffer support for Fujitsu Lime GDC on host CPU bus.
1844f7018c21STomi Valkeinen
1845f7018c21STomi Valkeinenendchoice
1846f7018c21STomi Valkeinen
1847f7018c21STomi Valkeinenconfig FB_MB862XX_I2C
1848f7018c21STomi Valkeinen	bool "Support I2C bus on MB862XX GDC"
1849f7018c21STomi Valkeinen	depends on FB_MB862XX && I2C
1850f7200b68SArnd Bergmann	depends on FB_MB862XX=m || I2C=y
1851f7018c21STomi Valkeinen	default y
1852f7018c21STomi Valkeinen	help
1853f7018c21STomi Valkeinen	  Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
1854f7018c21STomi Valkeinen	  driver to support accessing I2C devices on controller's I2C bus.
1855f7018c21STomi Valkeinen	  These are usually some video decoder chips.
1856f7018c21STomi Valkeinen
1857f7018c21STomi Valkeinenconfig FB_EP93XX
1858f7018c21STomi Valkeinen	tristate "EP93XX frame buffer support"
1859f7018c21STomi Valkeinen	depends on FB && ARCH_EP93XX
1860244c2b55SThomas Zimmermann	select FB_IOMEM_HELPERS
1861a7f7f624SMasahiro Yamada	help
1862f7018c21STomi Valkeinen	  Framebuffer driver for the Cirrus Logic EP93XX series of processors.
1863f7018c21STomi Valkeinen	  This driver is also available as a module. The module will be called
1864f7018c21STomi Valkeinen	  ep93xx-fb.
1865f7018c21STomi Valkeinen
1866f7018c21STomi Valkeinenconfig FB_PRE_INIT_FB
1867f7018c21STomi Valkeinen	bool "Don't reinitialize, use bootloader's GDC/Display configuration"
1868f225f139SFabio Estevam	depends on FB && FB_MB862XX_LIME
1869a7f7f624SMasahiro Yamada	help
1870f7018c21STomi Valkeinen	  Select this option if display contents should be inherited as set by
1871f7018c21STomi Valkeinen	  the bootloader.
1872f7018c21STomi Valkeinen
1873f7018c21STomi Valkeinenconfig FB_BROADSHEET
1874f7018c21STomi Valkeinen	tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
1875ad4366adSJia-Ju Bai	depends on FB && (ARCH_PXA || COMPILE_TEST)
1876cd8a064fSThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1877f7018c21STomi Valkeinen	help
1878f7018c21STomi Valkeinen	  This driver implements support for the E-Ink Broadsheet
1879f7018c21STomi Valkeinen	  controller. The release name for this device was Epson S1D13521
1880f7018c21STomi Valkeinen	  and could also have been called by other names when coupled with
1881f7018c21STomi Valkeinen	  a bridge adapter.
1882f7018c21STomi Valkeinen
1883f7018c21STomi Valkeinenconfig FB_HYPERV
1884f7018c21STomi Valkeinen	tristate "Microsoft Hyper-V Synthetic Video support"
1885f7018c21STomi Valkeinen	depends on FB && HYPERV
18863a6fb6c4SWei Hu	select DMA_CMA if HAVE_DMA_CONTIGUOUS && CMA
188766a749a7SThomas Zimmermann	select FB_IOMEM_HELPERS_DEFERRED
18880ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
1889f7018c21STomi Valkeinen	help
1890f7018c21STomi Valkeinen	  This framebuffer driver supports Microsoft Hyper-V Synthetic Video.
1891f7018c21STomi Valkeinen
1892f7018c21STomi Valkeinenconfig FB_SIMPLE
1893ec7cc3f7SArnd Bergmann	tristate "Simple framebuffer support"
1894ec7cc3f7SArnd Bergmann	depends on FB
1895ec7cc3f7SArnd Bergmann	depends on !DRM_SIMPLEDRM
18967283f862SThomas Zimmermann	select APERTURE_HELPERS
1897367984ebSThomas Zimmermann	select FB_IOMEM_HELPERS
1898f7018c21STomi Valkeinen	help
1899f7018c21STomi Valkeinen	  Say Y if you want support for a simple frame-buffer.
1900f7018c21STomi Valkeinen
1901f7018c21STomi Valkeinen	  This driver assumes that the display hardware has been initialized
1902f7018c21STomi Valkeinen	  before the kernel boots, and the kernel will simply render to the
1903f7018c21STomi Valkeinen	  pre-allocated frame buffer surface.
1904f7018c21STomi Valkeinen
1905f7018c21STomi Valkeinen	  Configuration re: surface address, size, and format must be provided
1906f7018c21STomi Valkeinen	  through device tree, or plain old platform data.
1907f7018c21STomi Valkeinen
1908f7018c21STomi Valkeinenconfig FB_SSD1307
1909f7018c21STomi Valkeinen	tristate "Solomon SSD1307 framebuffer support"
1910f7018c21STomi Valkeinen	depends on FB && I2C
191171540cfbSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
19126ed5e2dbSThomas Niederprüm	select FB_BACKLIGHT
1913cd8a064fSThomas Zimmermann	select FB_SYSMEM_HELPERS_DEFERRED
1914f7018c21STomi Valkeinen	help
1915f7018c21STomi Valkeinen	  This driver implements support for the Solomon SSD1307
1916f7018c21STomi Valkeinen	  OLED controller over I2C.
19171461d667SSudip Mukherjee
19181461d667SSudip Mukherjeeconfig FB_SM712
19191461d667SSudip Mukherjee	tristate "Silicon Motion SM712 framebuffer support"
19201461d667SSudip Mukherjee	depends on FB && PCI
1921586132cfSThomas Zimmermann	select FB_IOMEM_HELPERS
19220ba2fa8cSThomas Zimmermann	select VIDEO_NOMODESET
19231461d667SSudip Mukherjee	help
19241461d667SSudip Mukherjee	  Frame buffer driver for the Silicon Motion SM710, SM712, SM721
19251461d667SSudip Mukherjee	  and SM722 chips.
19261461d667SSudip Mukherjee
19271461d667SSudip Mukherjee	  This driver is also available as a module. The module will be
19281461d667SSudip Mukherjee	  called sm712fb. If you want to compile it as a module, say M
1929cd238effSMauro Carvalho Chehab	  here and read <file:Documentation/kbuild/modules.rst>.
1930aae3394eSRandy Dunlap
1931aae3394eSRandy Dunlapsource "drivers/video/fbdev/omap/Kconfig"
1932aae3394eSRandy Dunlapsource "drivers/video/fbdev/omap2/Kconfig"
1933aae3394eSRandy Dunlapsource "drivers/video/fbdev/mmp/Kconfig"
1934df791524SJavier Martinez Canillas
1935df791524SJavier Martinez Canillassource "drivers/video/fbdev/core/Kconfig"
1936