mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
22 lines
462 B
Plaintext
22 lines
462 B
Plaintext
/*
|
|
* Ensures unsed uncore bridges are disabled, otherwise X79 and X99
|
|
* will kernel panic in Big Sur with IOPCIFamily.
|
|
* SSDT Taken from OpenCorePkg repo
|
|
*/
|
|
|
|
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "UNC", 0x00000000)
|
|
{
|
|
External (_SB.UNC0, DeviceObj)
|
|
External (PRBM, IntObj)
|
|
|
|
Scope (_SB.UNC0)
|
|
{
|
|
Method (_INI, 0, NotSerialized)
|
|
{
|
|
If (_OSI ("Darwin")) {
|
|
PRBM = 0
|
|
}
|
|
}
|
|
}
|
|
}
|