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