- Joined
- Feb 19, 2016
- Messages
- 200
- Motherboard
- ASUS ZenBook UX430UA-DH74
- CPU
- i7-8550U
- Graphics
- Intel 620 1920x1080
Below is your SSDT-I2C and you have _STA and _CRS renamed. I mentioned this previously but I believe that is your issue.
Rename XSTA to _STA and XCRS to _CRS
DefinitionBlock ("", "SSDT", 2, "hack", "ETPD", 0x00000000)
{
External (_SB_.PCI0.GPI0, DeviceObj) // (from opcode)
External (_SB_.PCI0.I2C1.ETPD, DeviceObj) // (from opcode)
Scope (_SB.PCI0.GPI0)
{
Method (XSTA, 0, NotSerialized)
{
Return (0x0F)
}
}
Scope (_SB.PCI0.I2C1.ETPD)
{
Name (SBFG, ResourceTemplate ()
{
GpioInt (Level, ActiveLow, ExclusiveAndWake, PullDefault, 0x0000,
"\\_SB.PCI0.GPI0", 0x00, ResourceConsumer, ,
)
{ // Pin list
0x0055
}
})
Method (XCRS, 0, Serialized)
{
Name (SBFB, ResourceTemplate ()
{
I2cSerialBusV2 (0x0015, ControllerInitiated, 0x00061A80,
AddressingMode7Bit, "\\_SB.PCI0.I2C1",
0x00, ResourceConsumer, , Exclusive,
)
})
Return (ConcatenateResTemplate (SBFB, SBFG))
}
}
}
Rename XSTA to _STA and XCRS to _CRS
DefinitionBlock ("", "SSDT", 2, "hack", "ETPD", 0x00000000)
{
External (_SB_.PCI0.GPI0, DeviceObj) // (from opcode)
External (_SB_.PCI0.I2C1.ETPD, DeviceObj) // (from opcode)
Scope (_SB.PCI0.GPI0)
{
Method (XSTA, 0, NotSerialized)
{
Return (0x0F)
}
}
Scope (_SB.PCI0.I2C1.ETPD)
{
Name (SBFG, ResourceTemplate ()
{
GpioInt (Level, ActiveLow, ExclusiveAndWake, PullDefault, 0x0000,
"\\_SB.PCI0.GPI0", 0x00, ResourceConsumer, ,
)
{ // Pin list
0x0055
}
})
Method (XCRS, 0, Serialized)
{
Name (SBFB, ResourceTemplate ()
{
I2cSerialBusV2 (0x0015, ControllerInitiated, 0x00061A80,
AddressingMode7Bit, "\\_SB.PCI0.I2C1",
0x00, ResourceConsumer, , Exclusive,
)
})
Return (ConcatenateResTemplate (SBFB, SBFG))
}
}
}
Last edited: