drm/xe: Add mocs kunit
authorRuthuvikas Ravikumar <ruthuvikas.ravikumar@intel.com>
Thu, 16 Nov 2023 21:51:52 +0000 (03:21 +0530)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 21 Dec 2023 16:44:52 +0000 (11:44 -0500)
This kunit verifies the hardware values of mocs and
l3cc registers with the KMD programmed values.

v14: Fix CHECK.

v13: Remove ret after forcewake.

v11: Add KUNIT_ASSERT_EQ_MSG for Forcewake.

v9/v10: Add Forcewake Fail.

v8: Remove xe_bo.h and xe_pm.h
    Remove mocs and l3cc from live_mocs.
    Pull debug and err msg for mocs/l3cc out of if else block.
    Add HAS_LNCF_MOCS.

v7: correct checkpath

v6: Change ssize_t type.
    Change forcewake domain to XE_FW_GT.
    Update change of MOCS registers are multicast on Xe_HP and beyond
    patch.

v5: Release forcewake.
    Remove single statement braces.
    Fix debug statements.

v4: Drop stratch and vaddr.
    Fix debug statements.
    Fix indentation.

v3: Fix checkpath.

v2: Fix checkpath.

Cc: Aravind Iddamsetty <aravind.iddamsetty@intel.com>
Cc: Mathew D Roper <matthew.d.roper@intel.com>
Reviewed-by: Mathew D Roper <matthew.d.roper@intel.com>
Signed-off-by: Ruthuvikas Ravikumar <ruthuvikas.ravikumar@intel.com>
Link: https://lore.kernel.org/r/20231116215152.2248859-1-ruthuvikas.ravikumar@intel.com
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/xe/tests/Makefile
drivers/gpu/drm/xe/tests/xe_mocs.c [new file with mode: 0644]
drivers/gpu/drm/xe/tests/xe_mocs_test.c [new file with mode: 0644]
drivers/gpu/drm/xe/tests/xe_mocs_test.h [new file with mode: 0644]
drivers/gpu/drm/xe/xe_mocs.c

index 51f1a7f017d4d891cdbf62dea42d3d567e9e10aa..39d8a0892274ab9d0188e83b330cce0acc3e81ea 100644 (file)
@@ -4,6 +4,7 @@ obj-$(CONFIG_DRM_XE_KUNIT_TEST) += \
        xe_bo_test.o \
        xe_dma_buf_test.o \
        xe_migrate_test.o \
+       xe_mocs_test.o \
        xe_pci_test.o \
        xe_rtp_test.o \
        xe_wa_test.o
diff --git a/drivers/gpu/drm/xe/tests/xe_mocs.c b/drivers/gpu/drm/xe/tests/xe_mocs.c
new file mode 100644 (file)
index 0000000..7dd34f9
--- /dev/null
@@ -0,0 +1,130 @@
+// SPDX-License-Identifier: GPL-2.0 AND MIT
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#include <kunit/test.h>
+#include <kunit/visibility.h>
+
+#include "tests/xe_mocs_test.h"
+#include "tests/xe_pci_test.h"
+#include "tests/xe_test.h"
+
+#include "xe_pci.h"
+#include "xe_gt.h"
+#include "xe_mocs.h"
+#include "xe_device.h"
+
+struct live_mocs {
+       struct xe_mocs_info table;
+};
+
+static int live_mocs_init(struct live_mocs *arg, struct xe_gt *gt)
+{
+       unsigned int flags;
+       struct kunit *test = xe_cur_kunit();
+
+       memset(arg, 0, sizeof(*arg));
+
+       flags = get_mocs_settings(gt_to_xe(gt), &arg->table);
+
+       kunit_info(test, "table size %d", arg->table.size);
+       kunit_info(test, "table uc_index %d", arg->table.uc_index);
+       kunit_info(test, "table n_entries %d", arg->table.n_entries);
+
+       return flags;
+}
+
+static void read_l3cc_table(struct xe_gt *gt,
+                           const struct xe_mocs_info *info)
+{
+       unsigned int i;
+       u32 l3cc;
+       u32 reg_val;
+       u32 ret;
+
+       struct kunit *test = xe_cur_kunit();
+
+       xe_device_mem_access_get(gt_to_xe(gt));
+       ret = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+       KUNIT_ASSERT_EQ_MSG(test, ret, 0, "Forcewake Failed.\n");
+       mocs_dbg(&gt_to_xe(gt)->drm, "L3CC entries:%d\n", info->n_entries);
+       for (i = 0;
+            i < (info->n_entries + 1) / 2 ?
+            (l3cc = l3cc_combine(get_entry_l3cc(info, 2 * i),
+                                 get_entry_l3cc(info, 2 * i + 1))), 1 : 0;
+            i++) {
+               if (GRAPHICS_VERx100(gt_to_xe(gt)) >= 1250)
+                       reg_val = xe_gt_mcr_unicast_read_any(gt, XEHP_LNCFCMOCS(i));
+               else
+                       reg_val = xe_mmio_read32(gt, XELP_LNCFCMOCS(i));
+               mocs_dbg(&gt_to_xe(gt)->drm, "%d 0x%x 0x%x 0x%x\n", i,
+                        XELP_LNCFCMOCS(i).addr, reg_val, l3cc);
+               if (reg_val != l3cc)
+                       KUNIT_FAIL(test, "l3cc reg 0x%x has incorrect val.\n",
+                                  XELP_LNCFCMOCS(i).addr);
+       }
+       xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
+       xe_device_mem_access_put(gt_to_xe(gt));
+}
+
+static void read_mocs_table(struct xe_gt *gt,
+                           const struct xe_mocs_info *info)
+{
+       struct xe_device *xe = gt_to_xe(gt);
+
+       unsigned int i;
+       u32 mocs;
+       u32 reg_val;
+       u32 ret;
+
+       struct kunit *test = xe_cur_kunit();
+
+       xe_device_mem_access_get(gt_to_xe(gt));
+       ret = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
+       KUNIT_ASSERT_EQ_MSG(test, ret, 0, "Forcewake Failed.\n");
+       mocs_dbg(&gt_to_xe(gt)->drm, "Global MOCS entries:%d\n", info->n_entries);
+       drm_WARN_ONCE(&xe->drm, !info->unused_entries_index,
+                     "Unused entries index should have been defined\n");
+       for (i = 0;
+            i < info->n_entries ? (mocs = get_entry_control(info, i)), 1 : 0;
+            i++) {
+               if (GRAPHICS_VERx100(gt_to_xe(gt)) >= 1250)
+                       reg_val = xe_gt_mcr_unicast_read_any(gt, XEHP_GLOBAL_MOCS(i));
+               else
+                       reg_val = xe_mmio_read32(gt, XELP_GLOBAL_MOCS(i));
+               mocs_dbg(&gt_to_xe(gt)->drm, "%d 0x%x 0x%x 0x%x\n", i,
+                        XELP_GLOBAL_MOCS(i).addr, reg_val, mocs);
+               if (reg_val != mocs)
+                       KUNIT_FAIL(test, "mocs reg 0x%x has incorrect val.\n",
+                                  XELP_GLOBAL_MOCS(i).addr);
+       }
+       xe_force_wake_put(gt_to_fw(gt), XE_FW_GT);
+       xe_device_mem_access_put(gt_to_xe(gt));
+}
+
+static int mocs_kernel_test_run_device(struct xe_device *xe)
+{
+       /* Basic check the system is configured with the expected mocs table */
+
+       struct live_mocs mocs;
+       struct xe_gt *gt;
+
+       unsigned int flags;
+       int id;
+
+       for_each_gt(gt, xe, id) {
+               flags = live_mocs_init(&mocs, gt);
+               if (flags & HAS_GLOBAL_MOCS)
+                       read_mocs_table(gt, &mocs.table);
+               if (flags & HAS_LNCF_MOCS)
+                       read_l3cc_table(gt, &mocs.table);
+       }
+       return 0;
+}
+
+void xe_live_mocs_kernel_kunit(struct kunit *test)
+{
+       xe_call_for_each_device(mocs_kernel_test_run_device);
+}
+EXPORT_SYMBOL_IF_KUNIT(xe_live_mocs_kernel_kunit);
diff --git a/drivers/gpu/drm/xe/tests/xe_mocs_test.c b/drivers/gpu/drm/xe/tests/xe_mocs_test.c
new file mode 100644 (file)
index 0000000..ef56bd5
--- /dev/null
@@ -0,0 +1,24 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright © 2022 Intel Corporation
+ */
+
+#include "xe_mocs_test.h"
+
+#include <kunit/test.h>
+
+static struct kunit_case xe_mocs_tests[] = {
+       KUNIT_CASE(xe_live_mocs_kernel_kunit),
+       {}
+};
+
+static struct kunit_suite xe_mocs_test_suite = {
+       .name = "xe_mocs",
+       .test_cases = xe_mocs_tests,
+};
+
+kunit_test_suite(xe_mocs_test_suite);
+
+MODULE_AUTHOR("Intel Corporation");
+MODULE_LICENSE("GPL");
+MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
diff --git a/drivers/gpu/drm/xe/tests/xe_mocs_test.h b/drivers/gpu/drm/xe/tests/xe_mocs_test.h
new file mode 100644 (file)
index 0000000..7faa357
--- /dev/null
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0 AND MIT */
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+#ifndef _XE_MOCS_TEST_H_
+#define _XE_MOCS_TEST_H_
+
+struct kunit;
+
+void xe_live_mocs_kernel_kunit(struct kunit *test);
+
+#endif
index cbb1619f17e0a01ee25a7df856ac00bb3c04afc9..12a6d39fcd4a4aebad334cfef3eb82008c49a4aa 100644 (file)
@@ -574,3 +574,7 @@ void xe_mocs_init(struct xe_gt *gt)
        if (flags & HAS_LNCF_MOCS)
                init_l3cc_table(gt, &table);
 }
+
+#if IS_ENABLED(CONFIG_DRM_XE_KUNIT_TEST)
+#include "tests/xe_mocs.c"
+#endif