-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b84193
commit 111f571
Showing
258 changed files
with
1,200 additions
and
18,908 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Discovered on X99-series. | ||
* These platforms have uncore PCI bridges for 4 CPU sockets | ||
* present in ACPI despite having none physically. | ||
* | ||
* Under normal conditions these are disabled depending on | ||
* CPU presence in the socket via Processor Bit Mask (PRBM), | ||
* but on X99 this code is unused or broken as such bridges | ||
* simply do not exist. We fix that by writing 0 to PRBM. | ||
* | ||
* Doing so is important as starting with macOS 11 IOPCIFamily | ||
* will crash as soon as it sees non-existent PCI bridges. | ||
*/ | ||
|
||
DefinitionBlock ("", "SSDT", 2, "ACDT", "UNC", 0x00000000) | ||
{ | ||
External (_SB.UNC0, DeviceObj) | ||
External (PRBM, IntObj) | ||
|
||
Scope (_SB.UNC0) | ||
{ | ||
Method (_INI, 0, NotSerialized) | ||
{ | ||
// In most cases this patch does benefit all operating systems, | ||
// yet on select pre-Windows 10 it may cause issues. | ||
// Remove If (_OSI ("Darwin")) in case you have none. | ||
If (_OSI ("Darwin")) { | ||
PRBM = 0 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Oops, something went wrong.