Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd3933ca authored by Len Brown's avatar Len Brown
Browse files

tools/power turbostat: fix MSR_IA32_MISC_ENABLE MWAIT printout



MSR_IA32_MISC_ENABLE[18] is the MWAIT ENABLE bit, not DISABLE bit...

so

MSR_IA32_MISC_ENABLE: 0x00850089 (TCC EIST No-MWAIT PREFETCH TURBO)

should print as:

MSR_IA32_MISC_ENABLE: 0x00850089 (TCC EIST MWAIT PREFETCH TURBO)

Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 47936f94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4056,7 +4056,7 @@ void decode_misc_enable_msr(void)
			base_cpu, msr,
			msr & MSR_IA32_MISC_ENABLE_TM1 ? "" : "No-",
			msr & MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP ? "" : "No-",
			msr & MSR_IA32_MISC_ENABLE_MWAIT ? "No-" : "",
			msr & MSR_IA32_MISC_ENABLE_MWAIT ? "" : "No-",
			msr & MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE ? "No-" : "",
			msr & MSR_IA32_MISC_ENABLE_TURBO_DISABLE ? "No-" : "");
}