]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
misc/mei: Decouple ME interfaces from GPU drivers
authorSimon Richter <Simon.Richter@hogyros.de>
Wed, 7 Jan 2026 18:26:03 +0000 (03:26 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Jan 2026 15:30:38 +0000 (16:30 +0100)
These are enumerated via an auxiliary bus, so there is no functional
dependency between these drivers, therefore allow compiling MEI as builtin
even when i915/xe are built as modules.

Cc: Usyskin, Alexander <alexander.usyskin@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Simon Richter <Simon.Richter@hogyros.de>
Link: https://patch.msgid.link/20260107182615.488194-3-Simon.Richter@hogyros.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/Kconfig
drivers/misc/mei/gsc_proxy/Kconfig
drivers/misc/mei/hdcp/Kconfig
drivers/misc/mei/pxp/Kconfig

index 6da518f3b73c3aa17a7979e76066bb1efe7e71f8..a62992909f85ffab84bc3ecd61bf020b88431501 100644 (file)
@@ -49,7 +49,7 @@ config INTEL_MEI_TXE
 config INTEL_MEI_GSC
        tristate "Intel MEI GSC embedded device"
        depends on INTEL_MEI_ME
-       depends on DRM_I915 || DRM_XE
+       depends on DRM_I915!=n || DRM_XE!=n
        help
          Intel auxiliary driver for GSC devices embedded in Intel graphics devices.
 
@@ -84,7 +84,7 @@ config INTEL_MEI_VSC
 config INTEL_MEI_LB
        tristate "Intel Late Binding (LB) support on ME Interface"
        depends on INTEL_MEI_ME
-       depends on DRM_XE
+       depends on DRM_XE!=n
        help
          Enable support for Intel Late Binding (LB) via the MEI interface.
 
index ac78b9d1eccd11a0514cc5095a2fa3e779bb48e3..30811117fc650ef8cb600ec0e543638e4570aa10 100644 (file)
@@ -4,7 +4,7 @@
 config INTEL_MEI_GSC_PROXY
        tristate "Intel GSC Proxy services of ME Interface"
        depends on INTEL_MEI_ME
-       depends on DRM_I915
+       depends on DRM_I915!=n
        help
          MEI Support for GSC Proxy Services on Intel platforms.
 
index 631dd9651d7c9dbc0f812725f1537f367c82300c..a9af4918e5b2ff4a80c43050bd96796c868004ee 100644 (file)
@@ -4,7 +4,7 @@
 config INTEL_MEI_HDCP
        tristate "Intel HDCP2.2 services of ME Interface"
        depends on INTEL_MEI_ME
-       depends on DRM_I915 || DRM_XE
+       depends on DRM_I915!=n || DRM_XE!=n
        help
          MEI Support for HDCP2.2 Services on Intel platforms.
 
index aa2dece4a927a570c1e325fad8607424b935434c..d0f8bb6aa2dec841b809ccc78c898870249024a2 100644 (file)
@@ -4,7 +4,7 @@
 config INTEL_MEI_PXP
        tristate "Intel PXP services of ME Interface"
        depends on INTEL_MEI_ME
-       depends on DRM_I915 || DRM_XE
+       depends on DRM_I915!=n || DRM_XE!=n
        help
          MEI Support for PXP Services on Intel platforms.