blob: b3d5efada33915e8145ca26cf956f74569286040 [file] [log] [blame]
Jonathon Hall89aee532023-07-14 15:32:28 -04001/* SPDX-License-Identifier: GPL-2.0-only */
2 Device (PS2K) // Keyboard
3 {
4 Name(_HID, EISAID(CONFIG_PS2K_EISAID))
5 Name(_CID, EISAID("PNP030B"))
6
7 Name(_CRS, ResourceTemplate()
8 {
9 IO (Decode16, 0x60, 0x60, 0x01, 0x01)
10 IO (Decode16, 0x64, 0x64, 0x01, 0x01)
11 IRQ (Edge, ActiveHigh, Exclusive) { 0x01 } // IRQ 1
12 })
13
14 Method (_STA, 0)
15 {
16 Return (0xf)
17 }
18 }