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 VIDEO_CMDLINE 15 bool 16 17config VIDEO_NOMODESET 18 bool 19 default n 20 21if HAS_IOMEM 22 23config HAVE_FB_ATMEL 24 bool 25 26source "drivers/char/agp/Kconfig" 27 28source "drivers/gpu/vga/Kconfig" 29 30source "drivers/gpu/host1x/Kconfig" 31source "drivers/gpu/ipu-v3/Kconfig" 32 33source "drivers/gpu/drm/Kconfig" 34 35menu "Frame buffer Devices" 36source "drivers/video/fbdev/Kconfig" 37endmenu 38 39source "drivers/video/backlight/Kconfig" 40 41config VGASTATE 42 tristate 43 default n 44 45config VIDEOMODE_HELPERS 46 bool 47 48config HDMI 49 bool 50 51endif # HAS_IOMEM 52 53if VT 54 source "drivers/video/console/Kconfig" 55endif 56 57if FB || SGI_NEWPORT_CONSOLE 58 source "drivers/video/logo/Kconfig" 59 60endif 61 62 63endmenu 64