xref: /linux/drivers/gpu/drm/xe/Kconfig (revision 08516de501fae647fb29bf3b62718de56cc24014)
1# SPDX-License-Identifier: GPL-2.0-only
2config DRM_XE
3	tristate "Intel Xe Graphics"
4	depends on DRM && PCI && MMU
5	select INTERVAL_TREE
6	# we need shmfs for the swappable backing store, and in particular
7	# the shmem_readpage() which depends upon tmpfs
8	select SHMEM
9	select TMPFS
10	select DRM_BUDDY
11	select DRM_KMS_HELPER
12	select DRM_PANEL
13	select DRM_SUBALLOC_HELPER
14	select RELAY
15	select IRQ_WORK
16	select SYNC_FILE
17	select IOSF_MBI
18	select CRC32
19	select SND_HDA_I915 if SND_HDA_CORE
20	select CEC_CORE if CEC_NOTIFIER
21	select VMAP_PFN
22	select DRM_TTM
23	select DRM_TTM_HELPER
24	select DRM_SCHED
25	select MMU_NOTIFIER
26	select WANT_DEV_COREDUMP
27	help
28	  Experimental driver for Intel Xe series GPUs
29
30	  If "M" is selected, the module will be called xe.
31
32config DRM_XE_FORCE_PROBE
33	string "Force probe xe for selected Intel hardware IDs"
34	depends on DRM_XE
35	help
36	  This is the default value for the xe.force_probe module
37	  parameter. Using the module parameter overrides this option.
38
39	  Force probe the xe for Intel graphics devices that are
40	  recognized but not properly supported by this kernel version. It is
41	  recommended to upgrade to a kernel version with proper support as soon
42	  as it is available.
43
44	  It can also be used to block the probe of recognized and fully
45	  supported devices.
46
47	  Use "" to disable force probe. If in doubt, use this.
48
49	  Use "<pci-id>[,<pci-id>,...]" to force probe the xe for listed
50	  devices. For example, "4500" or "4500,4571".
51
52	  Use "*" to force probe the driver for all known devices.
53
54	  Use "!" right before the ID to block the probe of the device. For
55	  example, "4500,!4571" forces the probe of 4500 and blocks the probe of
56	  4571.
57
58	  Use "!*" to block the probe of the driver for all known devices.
59
60menu "drm/Xe Debugging"
61depends on DRM_XE
62depends on EXPERT
63source "drivers/gpu/drm/xe/Kconfig.debug"
64endmenu
65