aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/protectli/vault_bsw/acpi/superio.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/protectli/vault_bsw/acpi/superio.asl')
-rw-r--r--src/mainboard/protectli/vault_bsw/acpi/superio.asl27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mainboard/protectli/vault_bsw/acpi/superio.asl b/src/mainboard/protectli/vault_bsw/acpi/superio.asl
new file mode 100644
index 0000000000..940cc2377b
--- /dev/null
+++ b/src/mainboard/protectli/vault_bsw/acpi/superio.asl
@@ -0,0 +1,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 ()
+ })
+}