Edward O'Callaghan (eocallaghan@alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7650
-gerrit
commit f659ee763ca83ff10de5fd6c745b8d1b8a0fa563 Author: Edward O'Callaghan eocallaghan@alterapraxis.com Date: Fri Dec 5 22:43:35 2014 +1100
ec/compal/ene932/acpi/superio.asl: Provide PNP0F13 AUX ASL
Provide ASL to support the AUX port (a.k.a Mouse) found at 0x60,0x64 irq 12 on this EC.
Change-Id: I6969ae4d492570136a8e14e42509638857e1ed85 Signed-off-by: Edward O'Callaghan eocallaghan@alterapraxis.com --- src/ec/compal/ene932/acpi/superio.asl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+)
diff --git a/src/ec/compal/ene932/acpi/superio.asl b/src/ec/compal/ene932/acpi/superio.asl index db4b412..e7d5551 100644 --- a/src/ec/compal/ene932/acpi/superio.asl +++ b/src/ec/compal/ene932/acpi/superio.asl @@ -54,4 +54,35 @@ Device (SIO) { }) } #endif + +#ifdef SIO_EC_ENABLE_PS2M + Device (PS2M) // AUX port (a.k.a Mouse) + { + Name (_UID, 0) + Name (_ADR, 0) + Name (_HID, EISAID("PNP0F13")) + Name (_CID, EISAID("PNP0F13")) + + Method (_STA, 0, NotSerialized) { + Return (0x0F) + } + + Name (_CRS, ResourceTemplate() + { + FixedIO (0x60, 0x01) + FixedIO (0x64, 0x01) + IRQNoFlags () {12} + }) + + Name (_PRS, ResourceTemplate() + { + StartDependentFn (0, 0) { + FixedIO (0x60, 0x01) + FixedIO (0x64, 0x01) + IRQNoFlags () {12} + } + EndDependentFn () + }) + } +#endif }