xref: /aosp_15_r20/external/coreboot/src/drivers/pc80/pc/ps2_keyboard.asl (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1/* 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	}
19