]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/i915: move and rename reg_in_range_table
authorMatt Atwood <matthew.s.atwood@intel.com>
Thu, 9 Oct 2025 21:52:08 +0000 (14:52 -0700)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 16 Oct 2025 19:20:56 +0000 (15:20 -0400)
reg_in_range_table is a useful function that is used in multiple places,
and will be needed for WA_BB implementation later.

Let's move this function and i915_range struct to its own file, as we are
trying to move away from i915_utils files.

v2: move functions to their own file
v3: use correct naming convention

Suggested-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Matt Atwood <matthew.s.atwood@intel.com>
Link:
https://lore.kernel.org/r/20251009215210.41000-1-matthew.s.atwood@intel.com
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/i915/Makefile
drivers/gpu/drm/i915/gt/intel_workarounds.c
drivers/gpu/drm/i915/i915_mmio_range.c [new file with mode: 0644]
drivers/gpu/drm/i915/i915_mmio_range.h [new file with mode: 0644]
drivers/gpu/drm/i915/i915_perf.c
drivers/gpu/drm/i915/intel_uncore.c
drivers/gpu/drm/i915/intel_uncore.h
drivers/gpu/drm/i915/selftests/intel_uncore.c

index aa2f0fd951171d549088118b436ad87c9ebb2ccd..14ed66bfed8e03c47cb058860f742ef399e02681 100644 (file)
@@ -31,6 +31,7 @@ i915-y += \
        i915_ioctl.o \
        i915_irq.o \
        i915_mitigations.o \
+       i915_mmio_range.o \
        i915_module.o \
        i915_params.o \
        i915_pci.o \
index 7d486dfa2fc1bc4cdddf4f78ec9a757d51083587..ece88c612e2789df8e07e48e11e6c645768b42bd 100644 (file)
@@ -5,6 +5,7 @@
 
 #include "i915_drv.h"
 #include "i915_reg.h"
+#include "i915_mmio_range.h"
 #include "intel_context.h"
 #include "intel_engine_pm.h"
 #include "intel_engine_regs.h"
@@ -2923,7 +2924,7 @@ void intel_engine_apply_workarounds(struct intel_engine_cs *engine)
        wa_list_apply(&engine->wa_list);
 }
 
-static const struct i915_range mcr_ranges_gen8[] = {
+static const struct i915_mmio_range mcr_ranges_gen8[] = {
        { .start = 0x5500, .end = 0x55ff },
        { .start = 0x7000, .end = 0x7fff },
        { .start = 0x9400, .end = 0x97ff },
@@ -2932,7 +2933,7 @@ static const struct i915_range mcr_ranges_gen8[] = {
        {},
 };
 
-static const struct i915_range mcr_ranges_gen12[] = {
+static const struct i915_mmio_range mcr_ranges_gen12[] = {
        { .start =  0x8150, .end =  0x815f },
        { .start =  0x9520, .end =  0x955f },
        { .start =  0xb100, .end =  0xb3ff },
@@ -2941,7 +2942,7 @@ static const struct i915_range mcr_ranges_gen12[] = {
        {},
 };
 
-static const struct i915_range mcr_ranges_xehp[] = {
+static const struct i915_mmio_range mcr_ranges_xehp[] = {
        { .start =  0x4000, .end =  0x4aff },
        { .start =  0x5200, .end =  0x52ff },
        { .start =  0x5400, .end =  0x7fff },
@@ -2960,7 +2961,7 @@ static const struct i915_range mcr_ranges_xehp[] = {
 
 static bool mcr_range(struct drm_i915_private *i915, u32 offset)
 {
-       const struct i915_range *mcr_ranges;
+       const struct i915_mmio_range *mcr_ranges;
        int i;
 
        if (GRAPHICS_VER_FULL(i915) >= IP_VER(12, 55))
diff --git a/drivers/gpu/drm/i915/i915_mmio_range.c b/drivers/gpu/drm/i915/i915_mmio_range.c
new file mode 100644 (file)
index 0000000..724041e
--- /dev/null
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "i915_mmio_range.h"
+
+bool i915_mmio_range_table_contains(u32 addr, const struct i915_mmio_range *table)
+{
+       while (table->start || table->end) {
+               if (addr >= table->start && addr <= table->end)
+                       return true;
+
+               table++;
+       }
+
+       return false;
+}
diff --git a/drivers/gpu/drm/i915/i915_mmio_range.h b/drivers/gpu/drm/i915/i915_mmio_range.h
new file mode 100644 (file)
index 0000000..f1c7086
--- /dev/null
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __I915_MMIO_RANGE_H__
+#define __I915_MMIO_RANGE_H__
+
+#include <linux/types.h>
+
+/* Other register ranges (e.g., shadow tables, MCR tables, etc.) */
+struct i915_mmio_range {
+       u32 start;
+       u32 end;
+};
+
+bool i915_mmio_range_table_contains(u32 addr, const struct i915_mmio_range *table);
+
+#endif /* __I915_MMIO_RANGE_H__ */
index 1658f1246c6faf0c88236586f059f62469e42263..0b9d9f3f7813d13634295f66fd1c42902980682a 100644 (file)
 #include "i915_perf.h"
 #include "i915_perf_oa_regs.h"
 #include "i915_reg.h"
+#include "i915_mmio_range.h"
 
 /* HW requires this to be a power of two, between 128k and 16M, though driver
  * is currently generally designed assuming the largest 16M size is used such
@@ -4320,29 +4321,17 @@ static bool gen8_is_valid_flex_addr(struct i915_perf *perf, u32 addr)
        return false;
 }
 
-static bool reg_in_range_table(u32 addr, const struct i915_range *table)
-{
-       while (table->start || table->end) {
-               if (addr >= table->start && addr <= table->end)
-                       return true;
-
-               table++;
-       }
-
-       return false;
-}
-
 #define REG_EQUAL(addr, mmio) \
        ((addr) == i915_mmio_reg_offset(mmio))
 
-static const struct i915_range gen7_oa_b_counters[] = {
+static const struct i915_mmio_range gen7_oa_b_counters[] = {
        { .start = 0x2710, .end = 0x272c },     /* OASTARTTRIG[1-8] */
        { .start = 0x2740, .end = 0x275c },     /* OAREPORTTRIG[1-8] */
        { .start = 0x2770, .end = 0x27ac },     /* OACEC[0-7][0-1] */
        {}
 };
 
-static const struct i915_range gen12_oa_b_counters[] = {
+static const struct i915_mmio_range gen12_oa_b_counters[] = {
        { .start = 0x2b2c, .end = 0x2b2c },     /* GEN12_OAG_OA_PESS */
        { .start = 0xd900, .end = 0xd91c },     /* GEN12_OAG_OASTARTTRIG[1-8] */
        { .start = 0xd920, .end = 0xd93c },     /* GEN12_OAG_OAREPORTTRIG1[1-8] */
@@ -4353,7 +4342,7 @@ static const struct i915_range gen12_oa_b_counters[] = {
        {}
 };
 
-static const struct i915_range mtl_oam_b_counters[] = {
+static const struct i915_mmio_range mtl_oam_b_counters[] = {
        { .start = 0x393000, .end = 0x39301c }, /* GEN12_OAM_STARTTRIG1[1-8] */
        { .start = 0x393020, .end = 0x39303c }, /* GEN12_OAM_REPORTTRIG1[1-8] */
        { .start = 0x393040, .end = 0x39307c }, /* GEN12_OAM_CEC[0-7][0-1] */
@@ -4361,43 +4350,43 @@ static const struct i915_range mtl_oam_b_counters[] = {
        {}
 };
 
-static const struct i915_range xehp_oa_b_counters[] = {
+static const struct i915_mmio_range xehp_oa_b_counters[] = {
        { .start = 0xdc48, .end = 0xdc48 },     /* OAA_ENABLE_REG */
        { .start = 0xdd00, .end = 0xdd48 },     /* OAG_LCE0_0 - OAA_LENABLE_REG */
        {}
 };
 
-static const struct i915_range gen7_oa_mux_regs[] = {
+static const struct i915_mmio_range gen7_oa_mux_regs[] = {
        { .start = 0x91b8, .end = 0x91cc },     /* OA_PERFCNT[1-2], OA_PERFMATRIX */
        { .start = 0x9800, .end = 0x9888 },     /* MICRO_BP0_0 - NOA_WRITE */
        { .start = 0xe180, .end = 0xe180 },     /* HALF_SLICE_CHICKEN2 */
        {}
 };
 
-static const struct i915_range hsw_oa_mux_regs[] = {
+static const struct i915_mmio_range hsw_oa_mux_regs[] = {
        { .start = 0x09e80, .end = 0x09ea4 }, /* HSW_MBVID2_NOA[0-9] */
        { .start = 0x09ec0, .end = 0x09ec0 }, /* HSW_MBVID2_MISR0 */
        { .start = 0x25100, .end = 0x2ff90 },
        {}
 };
 
-static const struct i915_range chv_oa_mux_regs[] = {
+static const struct i915_mmio_range chv_oa_mux_regs[] = {
        { .start = 0x182300, .end = 0x1823a4 },
        {}
 };
 
-static const struct i915_range gen8_oa_mux_regs[] = {
+static const struct i915_mmio_range gen8_oa_mux_regs[] = {
        { .start = 0x0d00, .end = 0x0d2c },     /* RPM_CONFIG[0-1], NOA_CONFIG[0-8] */
        { .start = 0x20cc, .end = 0x20cc },     /* WAIT_FOR_RC6_EXIT */
        {}
 };
 
-static const struct i915_range gen11_oa_mux_regs[] = {
+static const struct i915_mmio_range gen11_oa_mux_regs[] = {
        { .start = 0x91c8, .end = 0x91dc },     /* OA_PERFCNT[3-4] */
        {}
 };
 
-static const struct i915_range gen12_oa_mux_regs[] = {
+static const struct i915_mmio_range gen12_oa_mux_regs[] = {
        { .start = 0x0d00, .end = 0x0d04 },     /* RPM_CONFIG[0-1] */
        { .start = 0x0d0c, .end = 0x0d2c },     /* NOA_CONFIG[0-8] */
        { .start = 0x9840, .end = 0x9840 },     /* GDT_CHICKEN_BITS */
@@ -4410,7 +4399,7 @@ static const struct i915_range gen12_oa_mux_regs[] = {
  * Ref: 14010536224:
  * 0x20cc is repurposed on MTL, so use a separate array for MTL.
  */
-static const struct i915_range mtl_oa_mux_regs[] = {
+static const struct i915_mmio_range mtl_oa_mux_regs[] = {
        { .start = 0x0d00, .end = 0x0d04 },     /* RPM_CONFIG[0-1] */
        { .start = 0x0d0c, .end = 0x0d2c },     /* NOA_CONFIG[0-8] */
        { .start = 0x9840, .end = 0x9840 },     /* GDT_CHICKEN_BITS */
@@ -4421,61 +4410,61 @@ static const struct i915_range mtl_oa_mux_regs[] = {
 
 static bool gen7_is_valid_b_counter_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen7_oa_b_counters);
+       return i915_mmio_range_table_contains(addr, gen7_oa_b_counters);
 }
 
 static bool gen8_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen7_oa_mux_regs) ||
-               reg_in_range_table(addr, gen8_oa_mux_regs);
+       return i915_mmio_range_table_contains(addr, gen7_oa_mux_regs) ||
+               i915_mmio_range_table_contains(addr, gen8_oa_mux_regs);
 }
 
 static bool gen11_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen7_oa_mux_regs) ||
-               reg_in_range_table(addr, gen8_oa_mux_regs) ||
-               reg_in_range_table(addr, gen11_oa_mux_regs);
+       return i915_mmio_range_table_contains(addr, gen7_oa_mux_regs) ||
+               i915_mmio_range_table_contains(addr, gen8_oa_mux_regs) ||
+               i915_mmio_range_table_contains(addr, gen11_oa_mux_regs);
 }
 
 static bool hsw_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen7_oa_mux_regs) ||
-               reg_in_range_table(addr, hsw_oa_mux_regs);
+       return i915_mmio_range_table_contains(addr, gen7_oa_mux_regs) ||
+               i915_mmio_range_table_contains(addr, hsw_oa_mux_regs);
 }
 
 static bool chv_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen7_oa_mux_regs) ||
-               reg_in_range_table(addr, chv_oa_mux_regs);
+       return i915_mmio_range_table_contains(addr, gen7_oa_mux_regs) ||
+               i915_mmio_range_table_contains(addr, chv_oa_mux_regs);
 }
 
 static bool gen12_is_valid_b_counter_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, gen12_oa_b_counters);
+       return i915_mmio_range_table_contains(addr, gen12_oa_b_counters);
 }
 
 static bool mtl_is_valid_oam_b_counter_addr(struct i915_perf *perf, u32 addr)
 {
        if (HAS_OAM(perf->i915) &&
            GRAPHICS_VER_FULL(perf->i915) >= IP_VER(12, 70))
-               return reg_in_range_table(addr, mtl_oam_b_counters);
+               return i915_mmio_range_table_contains(addr, mtl_oam_b_counters);
 
        return false;
 }
 
 static bool xehp_is_valid_b_counter_addr(struct i915_perf *perf, u32 addr)
 {
-       return reg_in_range_table(addr, xehp_oa_b_counters) ||
-               reg_in_range_table(addr, gen12_oa_b_counters) ||
+       return i915_mmio_range_table_contains(addr, xehp_oa_b_counters) ||
+               i915_mmio_range_table_contains(addr, gen12_oa_b_counters) ||
                mtl_is_valid_oam_b_counter_addr(perf, addr);
 }
 
 static bool gen12_is_valid_mux_addr(struct i915_perf *perf, u32 addr)
 {
        if (GRAPHICS_VER_FULL(perf->i915) >= IP_VER(12, 70))
-               return reg_in_range_table(addr, mtl_oa_mux_regs);
+               return i915_mmio_range_table_contains(addr, mtl_oa_mux_regs);
        else
-               return reg_in_range_table(addr, gen12_oa_mux_regs);
+               return i915_mmio_range_table_contains(addr, gen12_oa_mux_regs);
 }
 
 static u32 mask_reg_value(u32 reg, u32 val)
index 8cb59f8d1f4c7ec82a75c579d5e8ce11658580af..aba90b80854f8a8c9ddf04ccc6a3c4dfa5e661fb 100644 (file)
@@ -35,6 +35,7 @@
 #include "i915_reg.h"
 #include "i915_vgpu.h"
 #include "i915_wait_util.h"
+#include "i915_mmio_range.h"
 #include "intel_uncore_trace.h"
 
 #define FORCEWAKE_ACK_TIMEOUT_MS 50
@@ -999,7 +1000,7 @@ find_fw_domain(struct intel_uncore *uncore, u32 offset)
  * scanned for obvious mistakes or typos by the selftests.
  */
 
-static const struct i915_range gen8_shadowed_regs[] = {
+static const struct i915_mmio_range gen8_shadowed_regs[] = {
        { .start =  0x2030, .end =  0x2030 },
        { .start =  0xA008, .end =  0xA00C },
        { .start = 0x12030, .end = 0x12030 },
@@ -1007,7 +1008,7 @@ static const struct i915_range gen8_shadowed_regs[] = {
        { .start = 0x22030, .end = 0x22030 },
 };
 
-static const struct i915_range gen11_shadowed_regs[] = {
+static const struct i915_mmio_range gen11_shadowed_regs[] = {
        { .start =   0x2030, .end =   0x2030 },
        { .start =   0x2550, .end =   0x2550 },
        { .start =   0xA008, .end =   0xA00C },
@@ -1034,7 +1035,7 @@ static const struct i915_range gen11_shadowed_regs[] = {
        { .start = 0x1D8510, .end = 0x1D8550 },
 };
 
-static const struct i915_range gen12_shadowed_regs[] = {
+static const struct i915_mmio_range gen12_shadowed_regs[] = {
        { .start =   0x2030, .end =   0x2030 },
        { .start =   0x2510, .end =   0x2550 },
        { .start =   0xA008, .end =   0xA00C },
@@ -1078,7 +1079,7 @@ static const struct i915_range gen12_shadowed_regs[] = {
        { .start = 0x1F8510, .end = 0x1F8550 },
 };
 
-static const struct i915_range dg2_shadowed_regs[] = {
+static const struct i915_mmio_range dg2_shadowed_regs[] = {
        { .start =   0x2030, .end =   0x2030 },
        { .start =   0x2510, .end =   0x2550 },
        { .start =   0xA008, .end =   0xA00C },
@@ -1117,7 +1118,7 @@ static const struct i915_range dg2_shadowed_regs[] = {
        { .start = 0x1F8510, .end = 0x1F8550 },
 };
 
-static const struct i915_range mtl_shadowed_regs[] = {
+static const struct i915_mmio_range mtl_shadowed_regs[] = {
        { .start =   0x2030, .end =   0x2030 },
        { .start =   0x2510, .end =   0x2550 },
        { .start =   0xA008, .end =   0xA00C },
@@ -1135,7 +1136,7 @@ static const struct i915_range mtl_shadowed_regs[] = {
        { .start =  0x22510, .end =  0x22550 },
 };
 
-static const struct i915_range xelpmp_shadowed_regs[] = {
+static const struct i915_mmio_range xelpmp_shadowed_regs[] = {
        { .start = 0x1C0030, .end = 0x1C0030 },
        { .start = 0x1C0510, .end = 0x1C0550 },
        { .start = 0x1C8030, .end = 0x1C8030 },
@@ -1156,7 +1157,7 @@ static const struct i915_range xelpmp_shadowed_regs[] = {
        { .start = 0x38CFD4, .end = 0x38CFDC },
 };
 
-static int mmio_range_cmp(u32 key, const struct i915_range *range)
+static int mmio_range_cmp(u32 key, const struct i915_mmio_range *range)
 {
        if (key < range->start)
                return -1;
index 6048b99b96cb99f1d76cc7cf3a09d9a0b513d379..fafc2ca9a237665307a3508419b23a772ea6207e 100644 (file)
@@ -123,12 +123,6 @@ struct intel_forcewake_range {
        enum forcewake_domains domains;
 };
 
-/* Other register ranges (e.g., shadow tables, MCR tables, etc.) */
-struct i915_range {
-       u32 start;
-       u32 end;
-};
-
 struct intel_uncore {
        void __iomem *regs;
 
@@ -162,7 +156,7 @@ struct intel_uncore {
         * Shadowed registers are special cases where we can safely write
         * to the register *without* grabbing forcewake.
         */
-       const struct i915_range *shadowed_reg_table;
+       const struct i915_mmio_range *shadowed_reg_table;
        unsigned int shadowed_reg_table_entries;
 
        struct notifier_block pmic_bus_access_nb;
index 58bcbdcef56328a2633ae099180d5b954e30fe2c..507bf42a1aafb08ea3adc009e7f39484c0d6b297 100644 (file)
@@ -64,7 +64,7 @@ static int intel_fw_table_check(const struct intel_forcewake_range *ranges,
 static int intel_shadow_table_check(void)
 {
        struct {
-               const struct i915_range *regs;
+               const struct i915_mmio_range *regs;
                unsigned int size;
        } range_lists[] = {
                { gen8_shadowed_regs, ARRAY_SIZE(gen8_shadowed_regs) },
@@ -74,7 +74,7 @@ static int intel_shadow_table_check(void)
                { mtl_shadowed_regs, ARRAY_SIZE(mtl_shadowed_regs) },
                { xelpmp_shadowed_regs, ARRAY_SIZE(xelpmp_shadowed_regs) },
        };
-       const struct i915_range *range;
+       const struct i915_mmio_range *range;
        unsigned int i, j;
        s32 prev;