summaryrefslogtreecommitdiffstats
path: root/src/mainboard/protectli/vault_bsw/acpi/superio.asl
blob: 940cc2377b5a0b2521642a28fab053ca386ab71a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */

Device (COM1) {
	Name (_HID, EISAID ("PNP0501"))
	Name (_UID, One)

	Method (_STA, 0, NotSerialized)
	{
		Return (0x0F)
	}

	Name (_CRS, ResourceTemplate ()
	{
		FixedIO (0x03F8, 0x08)
		IRQNoFlags () {4}
	})

	Name (_PRS, ResourceTemplate ()
	{
		StartDependentFn (0, 0) {
			FixedIO (0x03F8, 0x08)
			IRQNoFlags () {4}
		}
		EndDependentFn ()
	})
}