mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Set C1 "I/O then Halt" capability bit for Intel EIST. Some broken BIOSes
refuse to load external SSDTs if this bit is unset for _PDC. It seems Linux and OpenSolaris did the same long ago. MFC after: 1 week
This commit is contained in:
parent
339f34e3a0
commit
49abdda9b7
1 changed files with 5 additions and 2 deletions
|
|
@ -947,8 +947,11 @@ static int
|
|||
est_features(driver_t *driver, u_int *features)
|
||||
{
|
||||
|
||||
/* Notify the ACPI CPU that we support direct access to MSRs */
|
||||
*features = ACPI_CAP_PERF_MSRS;
|
||||
/*
|
||||
* Notify the ACPI CPU that we support direct access to MSRs.
|
||||
* XXX C1 "I/O then Halt" seems necessary for some broken BIOS.
|
||||
*/
|
||||
*features = ACPI_CAP_PERF_MSRS | ACPI_CAP_C1_IO_HALT;
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue