mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 13:58:30 -04:00
x86: Add another cpuid for Apollo Lake errata APL30
Sponsored by: Beckhoff Automation GmbH & Co. KG MFC after: 1 week
This commit is contained in:
parent
e9ae9fa937
commit
b223c1f1a0
1 changed files with 2 additions and 1 deletions
|
|
@ -827,7 +827,8 @@ cpu_idle_tun(void *unused __unused)
|
|||
mwait_cpustop_broken = true;
|
||||
}
|
||||
|
||||
if (cpu_vendor_id == CPU_VENDOR_INTEL && cpu_id == 0x506c9) {
|
||||
if (cpu_vendor_id == CPU_VENDOR_INTEL &&
|
||||
((cpu_id == 0x506c9) || cpu_id == 0x506ca)) {
|
||||
/*
|
||||
* Apollo Lake errata APL31 (public errata APL30).
|
||||
* Stores to the armed address range may not trigger
|
||||
|
|
|
|||
Loading…
Reference in a new issue