forked from RehabMan/Intel-NUC-DSDT-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preliminary NUC8 (Bean Canyon, CoffeeLake) support
- Loading branch information
Showing
36 changed files
with
853 additions
and
234 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// SSDT-KBLSPF.dsl | ||
// | ||
// The purpose of this file is to allow CoffeeLake systems to spoof KabyLake graphics. | ||
// Just include the built version of this file in ACPI/patched. | ||
|
||
DefinitionBlock("", "SSDT", 2, "hack", "_KBLSPF", 0) | ||
{ | ||
Name(RMGO, Package() | ||
{ | ||
// Coffee Lake/UHD630 (not tested) | ||
0x3e9b, 0x3e92, 0x3e91, 0, Package() | ||
{ | ||
"AAPL,ig-platform-id", Buffer() { 0x00, 0x00, 0x1b, 0x59 }, | ||
"hda-gfx", Buffer() { "onboard-1" }, | ||
"model", Buffer() { "Intel UHD Graphics 630" }, | ||
"device-id", Buffer() { 0x1b, 0x59, 0x00, 0x00 }, | ||
}, | ||
// Coffee Lake/UHD655 | ||
0x3ea5, 0, Package() | ||
{ | ||
"AAPL,ig-platform-id", Buffer() { 0x00, 0x00, 0x27, 0x59 }, | ||
"hda-gfx", Buffer() { "onboard-1" }, | ||
"model", Buffer() { "Intel Iris Plus Graphics 655" }, | ||
"device-id", Buffer() { 0x27, 0x59, 0x00, 0x00 }, | ||
}, | ||
}) | ||
} | ||
//EOF |
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 @@ | ||
// NUC8 Bean Canyon model specific SSDT | ||
|
||
DefinitionBlock("", "SSDT", 2, "hack", "_NUC8-BC", 0) | ||
{ | ||
Device(RMCF) | ||
{ | ||
Name(_ADR, 0) // do not remove | ||
|
||
// AUDL: Audio Layout | ||
// | ||
// The value here will be used to inject layout-id for HDEF and HDAU | ||
// If set to Ones, no audio injection will be done. | ||
Name(AUDL, 3) | ||
|
||
// FAKH: Fake HDMI Aduio | ||
// | ||
// 0: Disable spoofing of HDEF for FakePCIID_Intel_HDMI_Audio.kext | ||
// 1: Allow spoofing of HDEF for FakePCIID_Intel_HDMI_Audio.kext | ||
Name(FAKH, 1) | ||
} | ||
|
||
#include "SSDT-XOSI.dsl" | ||
#include "SSDT-IGPU.dsl" | ||
#include "SSDT-USBX.dsl" | ||
#include "SSDT-USB-NUC8-BC.dsl" | ||
#include "SSDT-XHC.dsl" | ||
#include "SSDT-XDCI.dsl" | ||
#include "SSDT-SATA.dsl" | ||
//#include "SSDT-NUCHDA.dsl" | ||
#include "SSDT-HDEF.dsl" | ||
} | ||
//EOF |
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
Oops, something went wrong.