xref: /aosp_15_r20/external/coreboot/src/drivers/pc80/pc/ps2_mouse.asl (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1/* SPDX-License-Identifier: GPL-2.0-only */
2	Device (PS2M)		// Mouse
3	{
4		Name(_HID, EISAID(CONFIG_PS2M_EISAID))
5		Name(_CID, EISAID("PNP0F13"))
6		Name(_CRS, ResourceTemplate()
7		{
8			IRQ (Edge, ActiveHigh, Exclusive) { 0x0c } // IRQ 12
9		})
10
11		Method(_STA, 0)
12		{
13			Return (0xf)
14		}
15	}
16