74 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Video configuration4#5 6menu "Graphics support"7 8config APERTURE_HELPERS9 bool10 help11 Support tracking and hand-over of aperture ownership. Required12 by graphics drivers for firmware-provided framebuffers.13 14config SCREEN_INFO15 bool16 default n17 18config STI_CORE19 bool20 depends on PARISC21 help22 STI refers to the HP "Standard Text Interface" which is a set of23 BIOS routines contained in a ROM chip in HP PA-RISC based machines.24 25config VIDEO26 bool27 default n28 29source "drivers/auxdisplay/Kconfig"30 31if HAS_IOMEM32 33config HAVE_FB_ATMEL34 bool35 36source "drivers/char/agp/Kconfig"37 38source "drivers/gpu/vga/Kconfig"39 40source "drivers/gpu/host1x/Kconfig"41source "drivers/gpu/ipu-v3/Kconfig"42 43source "drivers/gpu/drm/Kconfig"44 45menu "Frame buffer Devices"46source "drivers/video/fbdev/Kconfig"47endmenu48 49source "drivers/video/backlight/Kconfig"50 51config VGASTATE52 tristate53 default n54 55config VIDEOMODE_HELPERS56 bool57 58config HDMI59 bool60 61endif # HAS_IOMEM62 63if VT64 source "drivers/video/console/Kconfig"65endif66 67if FB_CORE || SGI_NEWPORT_CONSOLE68 source "drivers/video/logo/Kconfig"69 70endif71 72 73endmenu74