xref: /linux/drivers/video/Kconfig (revision db10cb9b)
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_CMDLINE
22	bool
23
24config VIDEO_NOMODESET
25	bool
26	default n
27
28source "drivers/auxdisplay/Kconfig"
29
30if HAS_IOMEM
31
32config HAVE_FB_ATMEL
33	bool
34
35source "drivers/char/agp/Kconfig"
36
37source "drivers/gpu/vga/Kconfig"
38
39source "drivers/gpu/host1x/Kconfig"
40source "drivers/gpu/ipu-v3/Kconfig"
41
42source "drivers/gpu/drm/Kconfig"
43
44menu "Frame buffer Devices"
45source "drivers/video/fbdev/Kconfig"
46endmenu
47
48source "drivers/video/backlight/Kconfig"
49
50config VGASTATE
51       tristate
52       default n
53
54config VIDEOMODE_HELPERS
55	bool
56
57config HDMI
58	bool
59
60endif # HAS_IOMEM
61
62if VT
63	source "drivers/video/console/Kconfig"
64endif
65
66if FB_CORE || SGI_NEWPORT_CONSOLE
67	source "drivers/video/logo/Kconfig"
68
69endif
70
71
72endmenu
73