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