]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe/compat: remove old pcode compat interface
authorJani Nikula <jani.nikula@intel.com>
Mon, 23 Jun 2025 11:43:49 +0000 (14:43 +0300)
committerJani Nikula <jani.nikula@intel.com>
Mon, 23 Jun 2025 18:45:17 +0000 (21:45 +0300)
With display code using the struct drm_device based pcode interface, we
can drop the old pcode compat interface.

We can also drop the __compat_uncore_to_tile() helper from
intel_uncore.h compat header.

Turns out a couple of headers depended on the intel_uncore.h include via
intel_pcode.h. Fix them.

Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://lore.kernel.org/r/948016a031dcb2acef0c97071aac09fa49613e07.1750678991.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/display/intel_bw.c
drivers/gpu/drm/i915/soc/intel_dram.c
drivers/gpu/drm/xe/compat-i915-headers/intel_pcode.h
drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h

index b85912e00a3604e30048ac3845414af7453951d8..8f5bc6872edae6f89c0ca289ec7a1e4ce3db8fc0 100644 (file)
@@ -18,6 +18,7 @@
 #include "intel_display_types.h"
 #include "intel_mchbar_regs.h"
 #include "intel_pcode.h"
+#include "intel_uncore.h"
 #include "skl_watermark.h"
 
 /* Parameters for Qclk Geyserville (QGV) */
index 5d43042b0fb582ef8aa39e8ab50d4780be8841fb..deb159548a094c21920590e10fbc7043eee95029 100644 (file)
@@ -14,6 +14,7 @@
 #include "intel_dram.h"
 #include "intel_mchbar_regs.h"
 #include "intel_pcode.h"
+#include "intel_uncore.h"
 #include "vlv_iosf_sb.h"
 
 struct dram_dimm_info {
index 32da708680c23b443736d5f06373cf77bbb97ac0..4fcd3bf6b76f8ff9645e1dc06993dbc3a3cd15d7 100644 (file)
@@ -6,35 +6,6 @@
 #ifndef __INTEL_PCODE_H__
 #define __INTEL_PCODE_H__
 
-#include "intel_uncore.h"
 #include "xe_pcode.h"
 
-static inline int
-snb_pcode_write_timeout(struct intel_uncore *uncore, u32 mbox, u32 val, int timeout_ms)
-{
-       return xe_pcode_write_timeout(__compat_uncore_to_tile(uncore), mbox, val, timeout_ms);
-}
-
-static inline int
-snb_pcode_write(struct intel_uncore *uncore, u32 mbox, u32 val)
-{
-
-       return xe_pcode_write(__compat_uncore_to_tile(uncore), mbox, val);
-}
-
-static inline int
-snb_pcode_read(struct intel_uncore *uncore, u32 mbox, u32 *val, u32 *val1)
-{
-       return xe_pcode_read(__compat_uncore_to_tile(uncore), mbox, val, val1);
-}
-
-static inline int
-skl_pcode_request(struct intel_uncore *uncore, u32 mbox,
-                 u32 request, u32 reply_mask, u32 reply,
-                 int timeout_base_ms)
-{
-       return xe_pcode_request(__compat_uncore_to_tile(uncore), mbox, request, reply_mask, reply,
-                               timeout_base_ms);
-}
-
 #endif /* __INTEL_PCODE_H__ */
index 797091cf1c99d328fdb958b7381cb2b54299cc86..d012f02bc84f7c49e119c276b4c06e470270298a 100644 (file)
@@ -24,13 +24,6 @@ static inline struct xe_mmio *__compat_uncore_to_mmio(struct intel_uncore *uncor
        return xe_root_tile_mmio(xe);
 }
 
-static inline struct xe_tile *__compat_uncore_to_tile(struct intel_uncore *uncore)
-{
-       struct xe_device *xe = container_of(uncore, struct xe_device, uncore);
-
-       return xe_device_get_root_tile(xe);
-}
-
 static inline u32 intel_uncore_read(struct intel_uncore *uncore,
                                    i915_reg_t i915_reg)
 {