From 23232827783e84aad794c525533edacc8d8750e6 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Thu, 9 Feb 2017 13:27:23 -0600 Subject: sio/smsc/mec1308: fix SIO/PS2 keyboard ACPI for Windows Add _HID to parent SIO device so Windows can find the PS2K, and remove _ADR since HID and ADR are mutually exclusive. TEST=build/boot Win11 on samsung/lumpy, verify keyboard functional. Change-Id: I7b6b09da1a3fdc34ef43789c699f7fd22b4b655b Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/75175 Tested-by: build bot (Jenkins) Reviewed-by: Felix Held --- src/superio/smsc/mec1308/acpi/superio.asl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/superio/smsc/mec1308/acpi/superio.asl b/src/superio/smsc/mec1308/acpi/superio.asl index 117de961db..3e1a9d38ca 100644 --- a/src/superio/smsc/mec1308/acpi/superio.asl +++ b/src/superio/smsc/mec1308/acpi/superio.asl @@ -3,7 +3,8 @@ // Scope is \_SB.PCI0.LPCB Device (SIO) { - Name (_ADR, 0x2E) + Name (_HID, EisaId ("PNP0A05")) + OperationRegion (SIOA, SystemIO, 0x2E, 0x02) Field (SIOA, ByteAcc, NoLock, Preserve) { -- cgit v1.2.1