diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2022-05-23 17:12:28 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-25 15:13:54 +0000 |
commit | d7d551523d8f9f3f35cdb95094f2fe650d078dc0 (patch) | |
tree | 6284a3fabbb5970b03581fe418883e97d1070952 /src/ec/google | |
parent | e27e1c1c6389e0a4d87c97dfef14068bfc7ddde6 (diff) |
ec/google/wilco/superio: Fix PS2K under Windows
PS2K device needs to be under PCI0, not LPCB, for Windows to
recognize it. Same change was made to ChromeEC previously.
Test: Boot Win11 on Drallion, verify built-in keyboard functional.
Change-Id: I12019592dfa1d869ba57c1ff6c25ac6bdeb7a300
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68463
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Diffstat (limited to 'src/ec/google')
-rw-r--r-- | src/ec/google/wilco/acpi/superio.asl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ec/google/wilco/acpi/superio.asl b/src/ec/google/wilco/acpi/superio.asl index a779147abb..b2737c321f 100644 --- a/src/ec/google/wilco/acpi/superio.asl +++ b/src/ec/google/wilco/acpi/superio.asl @@ -36,7 +36,10 @@ Device (SIO) EndDependentFn () }) } +} +Scope (\_SB.PCI0) +{ Device (PS2K) { Name (_HID, EisaId ("PNP0303")) |