Skip to content

Commit

Permalink
fix(tests): bring back the AMD Genoa check
Browse files Browse the repository at this point in the history
Fixes: f4f7536

Signed-off-by: Pablo Barbáchano <[email protected]>
  • Loading branch information
pb8o committed Dec 6, 2024
1 parent 1f94a59 commit 6ff54a7
Showing 1 changed file with 81 additions and 62 deletions.
143 changes: 81 additions & 62 deletions tests/integration_tests/functional/test_cpu_features_host_vs_guest.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,78 @@
"xtpr",
}

AMD_HOST_ONLY_FEATS = {
"amd_ppin",
"aperfmperf",
"bpext",
"cat_l3",
"cdp_l3",
"cpb",
"cqm",
"cqm_llc",
"cqm_mbm_local",
"cqm_mbm_total",
"cqm_occup_llc",
"decodeassists",
"extapic",
"extd_apicid",
"flushbyasid",
"hw_pstate",
"ibs",
"irperf",
"lbrv",
"mba",
"monitor",
"mwaitx",
"overflow_recov",
"pausefilter",
"perfctr_llc",
"perfctr_nb",
"pfthreshold",
"rdpru",
"rdt_a",
"sev",
"sev_es",
"skinit",
"smca",
"sme",
"succor",
"svm_lock",
"tce",
"tsc_scale",
"v_vmsave_vmload",
"vgif",
"vmcb_clean",
"wdt",
}

AMD_GUEST_ONLY_FEATS = {
"hypervisor", "tsc_adjust", "tsc_deadline_timer", "tsc_known_freq",
}

AMD_HOST_ONLY_FEATS_6_1 = AMD_HOST_ONLY_FEATS | {
"lbrv",
"pausefilter",
"pfthreshold",
"sme",
"tsc_scale",
"v_vmsave_vmload",
"vgif",
"vmcb_clean",
} | {"brs", "rapl", "v_spec_ctrl"}

AMD_GENOA_HOST_ONLY_FEATS = AMD_HOST_ONLY_FEATS | {
"flush_l1d",
"ibrs_enhanced",
"avic",
}

AMD_GENOA_HOST_ONLY_FEATS_6_1 = AMD_HOST_ONLY_FEATS | {
"flush_l1d",
"ibrs_enhanced",
"avic",
}


def test_host_vs_guest_cpu_features(uvm_nano):
"""Check CPU features host vs guest"""
Expand All @@ -82,73 +154,20 @@ def test_host_vs_guest_cpu_features(uvm_nano):

match CPU_MODEL:
case CpuModel.AMD_MILAN:
host_guest_diff_5_10 = {
"amd_ppin",
"aperfmperf",
"bpext",
"cat_l3",
"cdp_l3",
"cpb",
"cqm",
"cqm_llc",
"cqm_mbm_local",
"cqm_mbm_total",
"cqm_occup_llc",
"decodeassists",
"extapic",
"extd_apicid",
"flushbyasid",
"hw_pstate",
"ibs",
"irperf",
"lbrv",
"mba",
"monitor",
"mwaitx",
"overflow_recov",
"pausefilter",
"perfctr_llc",
"perfctr_nb",
"pfthreshold",
"rdpru",
"rdt_a",
"sev",
"sev_es",
"skinit",
"smca",
"sme",
"succor",
"svm_lock",
"tce",
"tsc_scale",
"v_vmsave_vmload",
"vgif",
"vmcb_clean",
"wdt",
}
if global_props.host_linux_version_tpl < (6, 1):
assert host_feats - guest_feats == AMD_HOST_ONLY_FEATS
else:
assert host_feats - guest_feats == AMD_HOST_ONLY_FEATS_6_1

host_guest_diff_6_1 = host_guest_diff_5_10 - {
"lbrv",
"pausefilter",
"pfthreshold",
"sme",
"tsc_scale",
"v_vmsave_vmload",
"vgif",
"vmcb_clean",
} | {"brs", "rapl", "v_spec_ctrl"}
assert guest_feats - host_feats == AMD_GUEST_ONLY_FEATS

case CpuModel.AMD_GENOA:
if global_props.host_linux_version_tpl < (6, 1):
assert host_feats - guest_feats == host_guest_diff_5_10
assert host_feats - guest_feats == AMD_GENOA_HOST_ONLY_FEATS
else:
assert host_feats - guest_feats == host_guest_diff_6_1
assert host_feats - guest_feats == AMD_GENOA_HOST_ONLY_FEATS_6_1

assert guest_feats - host_feats == {
"hypervisor",
"tsc_adjust",
"tsc_deadline_timer",
"tsc_known_freq",
}
assert guest_feats - host_feats == AMD_GUEST_ONLY_FEATS

case CpuModel.INTEL_SKYLAKE:
assert host_feats - guest_feats == INTEL_HOST_ONLY_FEATS
Expand Down

0 comments on commit 6ff54a7

Please sign in to comment.