diff --git a/sys/arch/x86/x86/identcpu.c b/sys/arch/x86/x86/identcpu.c index 8d6d91a5866..32995941f82 100644 --- a/sys/arch/x86/x86/identcpu.c +++ b/sys/arch/x86/x86/identcpu.c @@ -144,13 +144,25 @@ cpu_probe_intel_cache(struct cpu_info *ci) static void cpu_probe_intel_errata(struct cpu_info *ci) { - u_int family, model, stepping; + u_int family, model; family = CPUID_TO_FAMILY(ci->ci_signature); model = CPUID_TO_MODEL(ci->ci_signature); - stepping = CPUID_TO_STEPPING(ci->ci_signature); - if (family == 0x6 && model == 0x5C && stepping == 0x9) { /* Apollo Lake */ + /* + * For details, refer to the Intel Pentium and Celeron Processor + * N- and J- Series Specification Update (Document number: 334820-010), + * August 2022, Revision 010. See page 28, Section 5.30: "APL30 A Store + * Instruction May Not Wake Up MWAIT." + * https://cdrdv2-public.intel.com/334820/334820-APL_Spec_Update_rev010.pdf + * + * Disable MWAIT/MONITOR on Apollo Lake CPUs to address the APL30 erratum. + * When using the MONITOR/MWAIT instruction pair, stores to the armed + * address range may fail to trigger MWAIT to resume execution. + * When these instructions are used to hatch secondary CPUs, + * this erratum causes SMP boot failures. + */ + if (family == 0x6 && model == 0x5C) { wrmsr(MSR_MISC_ENABLE, rdmsr(MSR_MISC_ENABLE) & ~IA32_MISC_MWAIT_EN);