|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] x86/platform: Consider PTM for exposing package-related MSR
Package-related MSR is actually gated behind "PTM" CPUID flag rather than
"DTS" one. Make sure we check the right CPUID for package-related MSR.
Check for either DTS or PTM for MSR_TEMPERATURE_TARGET.
The only visible difference in practice would be that EPERM would now
be reported instead of EFAULT if we tried accessing the package MSR on
a platform that doesn't have it.
Amends: 615c9f3f820 ("x86/platform: Expose DTS sensors MSR")
Reported-by: Tu Dinh <ngoc-tu.dinh@xxxxxxxxxx>
Signed-off-by: Teddy Astie <teddy.astie@xxxxxxxxxx>
---
xen/arch/x86/platform_hypercall.c | 5 ++++-
xen/include/xen/lib/x86/cpu-policy.h | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/xen/arch/x86/platform_hypercall.c
b/xen/arch/x86/platform_hypercall.c
index c6c5135806..a52fed3bd6 100644
--- a/xen/arch/x86/platform_hypercall.c
+++ b/xen/arch/x86/platform_hypercall.c
@@ -89,9 +89,12 @@ static bool msr_read_allowed(unsigned int msr)
return cpu_has_srbds_ctrl;
case MSR_IA32_THERM_STATUS:
+ return host_cpu_policy.basic.digital_temp_sensor;
case MSR_TEMPERATURE_TARGET:
+ return host_cpu_policy.basic.digital_temp_sensor ||
+ host_cpu_policy.basic.package_therm_management;
case MSR_PACKAGE_THERM_STATUS:
- return host_cpu_policy.basic.digital_temp_sensor;
+ return host_cpu_policy.basic.package_therm_management;
}
if ( ppin_msr && msr == ppin_msr )
diff --git a/xen/include/xen/lib/x86/cpu-policy.h
b/xen/include/xen/lib/x86/cpu-policy.h
index db8d035589..d9d57e932a 100644
--- a/xen/include/xen/lib/x86/cpu-policy.h
+++ b/xen/include/xen/lib/x86/cpu-policy.h
@@ -132,7 +132,7 @@ struct cpu_policy
:1,
:1,
:1,
- :1,
+ package_therm_management:1,
hwp:1,
hwp_interrupt:1,
hwp_activity_window:1,
--
2.53.0
--
Teddy Astie | Vates XCP-ng Developer
XCP-ng & Xen Orchestra - Vates solutions
web: https://vates.tech
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |