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