mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:21:01 +07:00
x86/mce/therm_throt: Mask out read-only and reserved MSR bits
While writing to MSR IA32_THERM_STATUS/IA32_PKG_THERM_STATUS, avoid
writing 1 to read only and reserved fields because updating some fields
generates exception.
[ bp: Vertically align for better readability. ]
Fixes: f6656208f0
("x86/mce/therm_throt: Optimize notifications of thermal throttle")
Reported-by: Dominik Brodowski <linux@dominikbrodowski.net>
Tested-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: linux-edac <linux-edac@vger.kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: x86-ml <x86@kernel.org>
Link: https://lkml.kernel.org/r/20191128150824.22413-1-srinivas.pandruvada@linux.intel.com
This commit is contained in:
parent
c2da5bdc66
commit
5a43b87b3c
@ -195,17 +195,24 @@ static const struct attribute_group thermal_attr_group = {
|
||||
#define THERM_THROT_POLL_INTERVAL HZ
|
||||
#define THERM_STATUS_PROCHOT_LOG BIT(1)
|
||||
|
||||
#define THERM_STATUS_CLEAR_CORE_MASK (BIT(1) | BIT(3) | BIT(5) | BIT(7) | BIT(9) | BIT(11) | BIT(13) | BIT(15))
|
||||
#define THERM_STATUS_CLEAR_PKG_MASK (BIT(1) | BIT(3) | BIT(5) | BIT(7) | BIT(9) | BIT(11))
|
||||
|
||||
static void clear_therm_status_log(int level)
|
||||
{
|
||||
int msr;
|
||||
u64 msr_val;
|
||||
u64 mask, msr_val;
|
||||
|
||||
if (level == CORE_LEVEL)
|
||||
msr = MSR_IA32_THERM_STATUS;
|
||||
else
|
||||
msr = MSR_IA32_PACKAGE_THERM_STATUS;
|
||||
if (level == CORE_LEVEL) {
|
||||
msr = MSR_IA32_THERM_STATUS;
|
||||
mask = THERM_STATUS_CLEAR_CORE_MASK;
|
||||
} else {
|
||||
msr = MSR_IA32_PACKAGE_THERM_STATUS;
|
||||
mask = THERM_STATUS_CLEAR_PKG_MASK;
|
||||
}
|
||||
|
||||
rdmsrl(msr, msr_val);
|
||||
msr_val &= mask;
|
||||
wrmsrl(msr, msr_val & ~THERM_STATUS_PROCHOT_LOG);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user