stuck wrote:
I am now seeing:
AppleUSBEHCI [0xfff....]: unable to get filterInterruptEventSource and
AppleUSBEHCI [0xfff....]::UIMInitialize - error occurred (0x0...)
Patching EHCI for sandy bridge laptops doesn't seem to fix this.
That's strange, it should.
Try this patch
Code:
into device name_adr 0x001D0000 insert
begin
OperationRegion (EOWN, PCI_Config, 0x68, 0x04)\n
Field (EOWN, ByteAcc, NoLock, Preserve)\n
{\n
Offset (0x02), \n
HCBO, 1, \n
Offset (0x03), \n
HCOO, 1\n
}
end;
into device name_adr 0x001A0000 insert
begin
OperationRegion (EOWN, PCI_Config, 0x68, 0x04)\n
Field (EOWN, ByteAcc, NoLock, Preserve)\n
{\n
Offset (0x02), \n
HCBO, 1, \n
Offset (0x03), \n
HCOO, 1\n
}
end;
into definitionblock code_regex . insert
begin
Method (PINI, 0, NotSerialized)\n
{\n
Store (Zero, \_SB.PCI0.EHC1.HCBO)\n
Store (One, \_SB.PCI0.EHC1.HCOO)\n
Store (Zero, \_SB.PCI0.EHC2.HCBO)\n
Store (One, \_SB.PCI0.EHC2.HCOO)\n
}
end;
into method label _INI insert
begin
PINI ()
end;
into method label _WAK code_regex Return replace_matched
begin
PINI ()\n
Return
end