1 // SPDX-License-Identifier: GPL-2.0 AND MIT 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #include <kunit/test.h> 7 #include <kunit/visibility.h> 8 9 #include "tests/xe_mocs_test.h" 10 #include "tests/xe_pci_test.h" 11 #include "tests/xe_test.h" 12 13 #include "xe_device.h" 14 #include "xe_gt.h" 15 #include "xe_mocs.h" 16 #include "xe_pci.h" 17 #include "xe_pm.h" 18 19 struct live_mocs { 20 struct xe_mocs_info table; 21 }; 22 23 static int live_mocs_init(struct live_mocs *arg, struct xe_gt *gt) 24 { 25 unsigned int flags; 26 struct kunit *test = xe_cur_kunit(); 27 28 memset(arg, 0, sizeof(*arg)); 29 30 flags = get_mocs_settings(gt_to_xe(gt), &arg->table); 31 32 kunit_info(test, "gt %d", gt->info.id); 33 kunit_info(test, "gt type %d", gt->info.type); 34 kunit_info(test, "table size %d", arg->table.size); 35 kunit_info(test, "table uc_index %d", arg->table.uc_index); 36 kunit_info(test, "table n_entries %d", arg->table.n_entries); 37 38 return flags; 39 } 40 41 static void read_l3cc_table(struct xe_gt *gt, 42 const struct xe_mocs_info *info) 43 { 44 struct kunit *test = xe_cur_kunit(); 45 u32 l3cc, l3cc_expected; 46 unsigned int i; 47 u32 reg_val; 48 u32 ret; 49 50 ret = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); 51 KUNIT_ASSERT_EQ_MSG(test, ret, 0, "Forcewake Failed.\n"); 52 53 for (i = 0; i < info->n_entries; i++) { 54 if (!(i & 1)) { 55 if (regs_are_mcr(gt)) 56 reg_val = xe_gt_mcr_unicast_read_any(gt, XEHP_LNCFCMOCS(i >> 1)); 57 else 58 reg_val = xe_mmio_read32(gt, XELP_LNCFCMOCS(i >> 1)); 59 60 mocs_dbg(gt, "reg_val=0x%x\n", reg_val); 61 } else { 62 /* Just re-use value read on previous iteration */ 63 reg_val >>= 16; 64 } 65 66 l3cc_expected = get_entry_l3cc(info, i); 67 l3cc = reg_val & 0xffff; 68 69 mocs_dbg(gt, "[%u] expected=0x%x actual=0x%x\n", 70 i, l3cc_expected, l3cc); 71 72 KUNIT_EXPECT_EQ_MSG(test, l3cc_expected, l3cc, 73 "l3cc idx=%u has incorrect val.\n", i); 74 } 75 xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); 76 } 77 78 static void read_mocs_table(struct xe_gt *gt, 79 const struct xe_mocs_info *info) 80 { 81 struct kunit *test = xe_cur_kunit(); 82 u32 mocs, mocs_expected; 83 unsigned int i; 84 u32 reg_val; 85 u32 ret; 86 87 KUNIT_EXPECT_TRUE_MSG(test, info->unused_entries_index, 88 "Unused entries index should have been defined\n"); 89 90 ret = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT); 91 KUNIT_ASSERT_EQ_MSG(test, ret, 0, "Forcewake Failed.\n"); 92 93 for (i = 0; i < info->n_entries; i++) { 94 if (regs_are_mcr(gt)) 95 reg_val = xe_gt_mcr_unicast_read_any(gt, XEHP_GLOBAL_MOCS(i)); 96 else 97 reg_val = xe_mmio_read32(gt, XELP_GLOBAL_MOCS(i)); 98 99 mocs_expected = get_entry_control(info, i); 100 mocs = reg_val; 101 102 mocs_dbg(gt, "[%u] expected=0x%x actual=0x%x\n", 103 i, mocs_expected, mocs); 104 105 KUNIT_EXPECT_EQ_MSG(test, mocs_expected, mocs, 106 "mocs reg 0x%x has incorrect val.\n", i); 107 } 108 109 xe_force_wake_put(gt_to_fw(gt), XE_FW_GT); 110 } 111 112 static int mocs_kernel_test_run_device(struct xe_device *xe) 113 { 114 /* Basic check the system is configured with the expected mocs table */ 115 116 struct live_mocs mocs; 117 struct xe_gt *gt; 118 119 unsigned int flags; 120 int id; 121 122 xe_pm_runtime_get(xe); 123 124 for_each_gt(gt, xe, id) { 125 flags = live_mocs_init(&mocs, gt); 126 if (flags & HAS_GLOBAL_MOCS) 127 read_mocs_table(gt, &mocs.table); 128 if (flags & HAS_LNCF_MOCS) 129 read_l3cc_table(gt, &mocs.table); 130 } 131 132 xe_pm_runtime_put(xe); 133 134 return 0; 135 } 136 137 void xe_live_mocs_kernel_kunit(struct kunit *test) 138 { 139 xe_call_for_each_device(mocs_kernel_test_run_device); 140 } 141 EXPORT_SYMBOL_IF_KUNIT(xe_live_mocs_kernel_kunit); 142 143 static int mocs_reset_test_run_device(struct xe_device *xe) 144 { 145 /* Check the mocs setup is retained over GT reset */ 146 147 struct live_mocs mocs; 148 struct xe_gt *gt; 149 unsigned int flags; 150 int id; 151 struct kunit *test = xe_cur_kunit(); 152 153 xe_pm_runtime_get(xe); 154 155 for_each_gt(gt, xe, id) { 156 flags = live_mocs_init(&mocs, gt); 157 kunit_info(test, "mocs_reset_test before reset\n"); 158 if (flags & HAS_GLOBAL_MOCS) 159 read_mocs_table(gt, &mocs.table); 160 if (flags & HAS_LNCF_MOCS) 161 read_l3cc_table(gt, &mocs.table); 162 163 xe_gt_reset_async(gt); 164 flush_work(>->reset.worker); 165 166 kunit_info(test, "mocs_reset_test after reset\n"); 167 if (flags & HAS_GLOBAL_MOCS) 168 read_mocs_table(gt, &mocs.table); 169 if (flags & HAS_LNCF_MOCS) 170 read_l3cc_table(gt, &mocs.table); 171 } 172 173 xe_pm_runtime_put(xe); 174 175 return 0; 176 } 177 178 void xe_live_mocs_reset_kunit(struct kunit *test) 179 { 180 xe_call_for_each_device(mocs_reset_test_run_device); 181 } 182 EXPORT_SYMBOL_IF_KUNIT(xe_live_mocs_reset_kunit); 183