xref: /linux/drivers/video/Kconfig (revision 7204df5e7e681238d457da03502f4b653403d7e7)
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
14config STI_CORE
15	bool
16	depends on PARISC
17	help
18	  STI refers to the HP "Standard Text Interface" which is a set of
19	  BIOS routines contained in a ROM chip in HP PA-RISC based machines.
20
21config VIDEO
22	bool
23	default n
24
25source "drivers/auxdisplay/Kconfig"
26
27if HAS_IOMEM
28
29config HAVE_FB_ATMEL
30	bool
31
32source "drivers/char/agp/Kconfig"
33
34source "drivers/gpu/vga/Kconfig"
35
36source "drivers/gpu/host1x/Kconfig"
37source "drivers/gpu/ipu-v3/Kconfig"
38
39source "drivers/gpu/drm/Kconfig"
40
41menu "Frame buffer Devices"
42source "drivers/video/fbdev/Kconfig"
43endmenu
44
45source "drivers/video/backlight/Kconfig"
46
47config VGASTATE
48       tristate
49       default n
50
51config VIDEOMODE_HELPERS
52	bool
53
54config HDMI
55	bool
56
57endif # HAS_IOMEM
58
59if VT
60	source "drivers/video/console/Kconfig"
61endif
62
63if FB_CORE || SGI_NEWPORT_CONSOLE
64	source "drivers/video/logo/Kconfig"
65
66endif
67
68
69endmenu
70