Add complete guide and all config variants
This commit is contained in:
73
hackintosh-guide/docs/AcpiSamples/Source/SSDT-EC.dsl
Executable file
73
hackintosh-guide/docs/AcpiSamples/Source/SSDT-EC.dsl
Executable file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* AppleUsbPower compatibility table for legacy hardware.
|
||||
*
|
||||
* Be warned that power supply values can be different
|
||||
* for different systems. Depending on the configuration
|
||||
* the values must be present in injected IOKitPersonalities
|
||||
* for com.apple.driver.AppleUSBMergeNub. iPad remains being
|
||||
* the most reliable device for testing USB port charging.
|
||||
*
|
||||
* Try NOT to rename EC0, H_EC, etc. to EC.
|
||||
* These devices are incompatible with macOS and may break
|
||||
* at any time. AppleACPIEC kext must NOT load on desktops.
|
||||
* See the disable code below.
|
||||
*
|
||||
* While on some laptops, this kext is essential to access EC
|
||||
* region for battery status etc. Please ignore EC related
|
||||
* patches under the circumstance.
|
||||
*
|
||||
* Reference USB: https://applelife.ru/posts/550233
|
||||
* Reference EC: https://applelife.ru/posts/807985
|
||||
*/
|
||||
DefinitionBlock ("", "SSDT", 2, "ACDT", "SsdtEC", 0x00001000)
|
||||
{
|
||||
External (_SB_.PCI0.LPCB, DeviceObj)
|
||||
|
||||
/*
|
||||
* Uncomment replacing EC0 with your own value in case your
|
||||
* motherboard has an existing embedded controller of PNP0C09 type.
|
||||
*
|
||||
* While renaming EC0 to EC might potentially work initially,
|
||||
* it connects an incompatible driver (AppleACPIEC) to your hardware.
|
||||
* This can make your system unbootable at any time or hide bugs that
|
||||
* could trigger randomly.
|
||||
*/
|
||||
|
||||
/**
|
||||
External (_SB_.PCI0.LPCB.EC0, DeviceObj)
|
||||
|
||||
Scope (\_SB.PCI0.LPCB.EC0)
|
||||
{
|
||||
Method (_STA, 0, NotSerialized) // _STA: Status
|
||||
{
|
||||
If (_OSI ("Darwin"))
|
||||
{
|
||||
Return (0)
|
||||
}
|
||||
Else
|
||||
{
|
||||
Return (0x0F)
|
||||
}
|
||||
}
|
||||
}
|
||||
**/
|
||||
|
||||
Scope (\_SB.PCI0.LPCB)
|
||||
{
|
||||
Device (EC)
|
||||
{
|
||||
Name (_HID, "ACID0001") // _HID: Hardware ID
|
||||
Method (_STA, 0, NotSerialized) // _STA: Status
|
||||
{
|
||||
If (_OSI ("Darwin"))
|
||||
{
|
||||
Return (0x0F)
|
||||
}
|
||||
Else
|
||||
{
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user