blob: b5962f02670d3e8ac3ca6a19c1bd5d1b7f50e57a [file] [log] [blame]
Angel Pons210a0082020-04-02 23:48:24 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerd7bd4eb2013-02-11 11:11:36 -08002
3// Scope is \_SB.PCI0.LPCB
4
5Device (SIO) {
6 Name (_UID, 0)
7 Name (_ADR, 0)
8
9
10#ifdef SIO_EC_ENABLE_PS2K
11 Device (PS2K) // Keyboard
12 {
13 Name (_UID, 0)
Stefan Reinauerd7bd4eb2013-02-11 11:11:36 -080014 Name (_HID, EISAID("PNP0303"))
15 Name (_CID, EISAID("PNP030B"))
16
17 Method (_STA, 0, NotSerialized) {
18 Return (0x0F)
19 }
20
21 Name (_CRS, ResourceTemplate()
22 {
23 FixedIO (0x60, 0x01)
24 FixedIO (0x64, 0x01)
25 IRQNoFlags () {1}
26 })
Stefan Reinauerd7bd4eb2013-02-11 11:11:36 -080027 }
28#endif
29}