1dd08ebf6SMatthew Brost# SPDX-License-Identifier: GPL-2.0-only 2dd08ebf6SMatthew Brostconfig DRM_XE 3dd08ebf6SMatthew Brost tristate "Intel Xe Graphics" 4*05b8b6ddSGeert Uytterhoeven depends on DRM && PCI && MMU && (m || (y && KUNIT=y)) 5dd08ebf6SMatthew Brost select INTERVAL_TREE 6dd08ebf6SMatthew Brost # we need shmfs for the swappable backing store, and in particular 7dd08ebf6SMatthew Brost # the shmem_readpage() which depends upon tmpfs 8dd08ebf6SMatthew Brost select SHMEM 9dd08ebf6SMatthew Brost select TMPFS 10dd08ebf6SMatthew Brost select DRM_BUDDY 11d490ecf5SThomas Hellström select DRM_EXEC 12dd08ebf6SMatthew Brost select DRM_KMS_HELPER 130e6fec6dSArnd Bergmann select DRM_KUNIT_TEST_HELPERS if DRM_XE_KUNIT_TEST != n 14dd08ebf6SMatthew Brost select DRM_PANEL 15dd08ebf6SMatthew Brost select DRM_SUBALLOC_HELPER 167fe302aeSGeert Uytterhoeven select DRM_DISPLAY_DP_HELPER 1795734469SGeert Uytterhoeven select DRM_DISPLAY_HDCP_HELPER 18d7c128cbSGeert Uytterhoeven select DRM_DISPLAY_HDMI_HELPER 19*05b8b6ddSGeert Uytterhoeven select DRM_DISPLAY_HELPER 2044e69495SMaarten Lankhorst select DRM_MIPI_DSI 21dd08ebf6SMatthew Brost select RELAY 22dd08ebf6SMatthew Brost select IRQ_WORK 23d2197029SDave Airlie # xe depends on ACPI_VIDEO when ACPI is enabled 2444e69495SMaarten Lankhorst # but for select to work, need to select ACPI_VIDEO's dependencies, ick 2544e69495SMaarten Lankhorst select BACKLIGHT_CLASS_DEVICE if ACPI 2644e69495SMaarten Lankhorst select INPUT if ACPI 2744e69495SMaarten Lankhorst select ACPI_VIDEO if X86 && ACPI 2844e69495SMaarten Lankhorst select ACPI_BUTTON if ACPI 2967a9e86dSLu Yao select X86_PLATFORM_DEVICES if X86 && ACPI 30d2197029SDave Airlie select ACPI_WMI if X86 && ACPI 31dd08ebf6SMatthew Brost select SYNC_FILE 32dd08ebf6SMatthew Brost select IOSF_MBI 33dd08ebf6SMatthew Brost select CRC32 34dd08ebf6SMatthew Brost select SND_HDA_I915 if SND_HDA_CORE 35dd08ebf6SMatthew Brost select CEC_CORE if CEC_NOTIFIER 36dd08ebf6SMatthew Brost select VMAP_PFN 37dd08ebf6SMatthew Brost select DRM_TTM 38dd08ebf6SMatthew Brost select DRM_TTM_HELPER 39d490ecf5SThomas Hellström select DRM_EXEC 40b06d47beSMatthew Brost select DRM_GPUVM 41dd08ebf6SMatthew Brost select DRM_SCHED 42dd08ebf6SMatthew Brost select MMU_NOTIFIER 43e7994850SRodrigo Vivi select WANT_DEV_COREDUMP 4487a4c85dSVitaly Lubart select AUXILIARY_BUS 4581e058a3SOak Zeng select HMM_MIRROR 46dd08ebf6SMatthew Brost help 47dd08ebf6SMatthew Brost Experimental driver for Intel Xe series GPUs 48dd08ebf6SMatthew Brost 49dd08ebf6SMatthew Brost If "M" is selected, the module will be called xe. 50dd08ebf6SMatthew Brost 5144e69495SMaarten Lankhorstconfig DRM_XE_DISPLAY 5244e69495SMaarten Lankhorst bool "Enable display support" 53bf3ff145SJani Nikula depends on DRM_XE && DRM_XE=m 5444e69495SMaarten Lankhorst select FB_IOMEM_HELPERS 5544e69495SMaarten Lankhorst select I2C 5644e69495SMaarten Lankhorst select I2C_ALGOBIT 5744e69495SMaarten Lankhorst default y 5844e69495SMaarten Lankhorst help 5944e69495SMaarten Lankhorst Disable this option only if you want to compile out display support. 6044e69495SMaarten Lankhorst 61dd08ebf6SMatthew Brostconfig DRM_XE_FORCE_PROBE 62dd08ebf6SMatthew Brost string "Force probe xe for selected Intel hardware IDs" 63dd08ebf6SMatthew Brost depends on DRM_XE 64dd08ebf6SMatthew Brost help 65dd08ebf6SMatthew Brost This is the default value for the xe.force_probe module 66dd08ebf6SMatthew Brost parameter. Using the module parameter overrides this option. 67dd08ebf6SMatthew Brost 68dd08ebf6SMatthew Brost Force probe the xe for Intel graphics devices that are 69dd08ebf6SMatthew Brost recognized but not properly supported by this kernel version. It is 70dd08ebf6SMatthew Brost recommended to upgrade to a kernel version with proper support as soon 71dd08ebf6SMatthew Brost as it is available. 72dd08ebf6SMatthew Brost 73dd08ebf6SMatthew Brost It can also be used to block the probe of recognized and fully 74dd08ebf6SMatthew Brost supported devices. 75dd08ebf6SMatthew Brost 76dd08ebf6SMatthew Brost Use "" to disable force probe. If in doubt, use this. 77dd08ebf6SMatthew Brost 78dd08ebf6SMatthew Brost Use "<pci-id>[,<pci-id>,...]" to force probe the xe for listed 79dd08ebf6SMatthew Brost devices. For example, "4500" or "4500,4571". 80dd08ebf6SMatthew Brost 81dd08ebf6SMatthew Brost Use "*" to force probe the driver for all known devices. 82dd08ebf6SMatthew Brost 83dd08ebf6SMatthew Brost Use "!" right before the ID to block the probe of the device. For 84dd08ebf6SMatthew Brost example, "4500,!4571" forces the probe of 4500 and blocks the probe of 85dd08ebf6SMatthew Brost 4571. 86dd08ebf6SMatthew Brost 87dd08ebf6SMatthew Brost Use "!*" to block the probe of the driver for all known devices. 88dd08ebf6SMatthew Brost 89dd08ebf6SMatthew Brostmenu "drm/Xe Debugging" 90dd08ebf6SMatthew Brostdepends on DRM_XE 91dd08ebf6SMatthew Brostdepends on EXPERT 92dd08ebf6SMatthew Brostsource "drivers/gpu/drm/xe/Kconfig.debug" 93dd08ebf6SMatthew Brostendmenu 94d2776564STejas Upadhyay 95d2776564STejas Upadhyaymenu "drm/xe Profile Guided Optimisation" 96d2776564STejas Upadhyay visible if EXPERT 97d2776564STejas Upadhyay depends on DRM_XE 98d2776564STejas Upadhyay source "drivers/gpu/drm/xe/Kconfig.profile" 99d2776564STejas Upadhyayendmenu 100