xref: /linux/drivers/video/Kconfig (revision 2da68a77)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Video configuration
4#
5
6menu "Graphics support"
7
8config APERTURE_HELPERS
9	bool
10	help
11	  Support tracking and hand-over of aperture ownership. Required
12	  by graphics drivers for firmware-provided framebuffers.
13
14if HAS_IOMEM
15
16config HAVE_FB_ATMEL
17	bool
18
19source "drivers/char/agp/Kconfig"
20
21source "drivers/gpu/vga/Kconfig"
22
23source "drivers/gpu/host1x/Kconfig"
24source "drivers/gpu/ipu-v3/Kconfig"
25
26source "drivers/gpu/drm/Kconfig"
27
28menu "Frame buffer Devices"
29source "drivers/video/fbdev/Kconfig"
30endmenu
31
32source "drivers/video/backlight/Kconfig"
33
34config VGASTATE
35       tristate
36       default n
37
38config VIDEOMODE_HELPERS
39	bool
40
41config HDMI
42	bool
43
44endif # HAS_IOMEM
45
46if VT
47	source "drivers/video/console/Kconfig"
48endif
49
50if FB || SGI_NEWPORT_CONSOLE
51	source "drivers/video/logo/Kconfig"
52
53endif
54
55
56endmenu
57