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