diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-12-05 22:43:35 +1100 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-12-06 07:39:41 +0100 |
commit | 05a1dc3c447781b551065e36442851dbcc018be7 (patch) | |
tree | 7c5a50bc6c325aa5a12c94ab1747b24f64039224 /src | |
parent | 14581fc632186ddaad10deb764dd9d87dec5284e (diff) |
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>
Reviewed-on: http://review.coreboot.org/7650
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/ec/compal/ene932/acpi/superio.asl | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/src/ec/compal/ene932/acpi/superio.asl b/src/ec/compal/ene932/acpi/superio.asl index db4b4128f1..bd6dbfaed5 100644 --- a/src/ec/compal/ene932/acpi/superio.asl +++ b/src/ec/compal/ene932/acpi/superio.asl @@ -23,35 +23,8 @@ Device (SIO) { Name (_UID, 0) Name (_ADR, 0) - +// Keyboard or AUX port (a.k.a Mouse) #ifdef SIO_EC_ENABLE_PS2K - Device (PS2K) // Keyboard - { - Name (_UID, 0) - Name (_ADR, 0) - Name (_HID, EISAID("PNP0303")) - Name (_CID, EISAID("PNP030B")) - - Method (_STA, 0, NotSerialized) { - Return (0x0F) - } - - Name (_CRS, ResourceTemplate() - { - FixedIO (0x60, 0x01) - FixedIO (0x64, 0x01) - IRQNoFlags () {1} - }) - - Name (_PRS, ResourceTemplate() - { - StartDependentFn (0, 0) { - FixedIO (0x60, 0x01) - FixedIO (0x64, 0x01) - IRQNoFlags () {1} - } - EndDependentFn () - }) - } + #include <drivers/pc80/ps2_controller.asl> #endif } |