aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/amd/mayan/dsdt.asl
diff options
context:
space:
mode:
authorRitul Guru <ritul.bits@gmail.com>2022-11-25 11:31:26 +0530
committerMartin L Roth <gaumless@gmail.com>2022-11-27 17:18:13 +0000
commitf123ffe78c2a519fdf0a32bcbfd1ec36733bb13a (patch)
treec55736e1ec014b52d32af70b2112915f0558638a /src/mainboard/amd/mayan/dsdt.asl
parent21e0da31282f584a1a830c6621e0673f1d0f1b76 (diff)
mb/amd/mayan: Add framework for morgana crb mayan
mayan is the reference board for the morgana SoC. It needs to be updated to match the actual board design as well. amd/mayan is started as a copy of amd/birman. Change-Id: Id6801e6c6e706ae3878ce9e2c3d6452964235148 Signed-off-by: Ritul Guru <ritul.bits@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70010 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/amd/mayan/dsdt.asl')
-rw-r--r--src/mainboard/amd/mayan/dsdt.asl16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/amd/mayan/dsdt.asl b/src/mainboard/amd/mayan/dsdt.asl
new file mode 100644
index 0000000000..7b8982a645
--- /dev/null
+++ b/src/mainboard/amd/mayan/dsdt.asl
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <acpi/acpi.h>
+DefinitionBlock (
+ "dsdt.aml",
+ "DSDT",
+ ACPI_DSDT_REV_2,
+ OEM_ID,
+ ACPI_TABLE_CREATOR,
+ 0x00010001 /* OEM Revision */
+ )
+{
+ #include <acpi/dsdt_top.asl>
+
+ #include <soc.asl>
+}