|
@@ -3168,10 +3168,11 @@ void decode_misc_pwr_mgmt_msr(void)
|
|
return;
|
|
return;
|
|
|
|
|
|
if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
|
|
if (!get_msr(base_cpu, MSR_MISC_PWR_MGMT, &msr))
|
|
- fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB)\n",
|
|
|
|
|
|
+ fprintf(outf, "cpu%d: MSR_MISC_PWR_MGMT: 0x%08llx (%sable-EIST_Coordination %sable-EPB %sable-OOB)\n",
|
|
base_cpu, msr,
|
|
base_cpu, msr,
|
|
msr & (1 << 0) ? "DIS" : "EN",
|
|
msr & (1 << 0) ? "DIS" : "EN",
|
|
- msr & (1 << 1) ? "EN" : "DIS");
|
|
|
|
|
|
+ msr & (1 << 1) ? "EN" : "DIS",
|
|
|
|
+ msr & (1 << 8) ? "EN" : "DIS");
|
|
}
|
|
}
|
|
|
|
|
|
void process_cpuid()
|
|
void process_cpuid()
|