Attention is currently required from: Felix Held. Hello Felix Held,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/50560
to review the following change.
Change subject: mb/google/guybrush: Add plain dsdt ......................................................................
mb/google/guybrush: Add plain dsdt
Needed to enable ACPI support for cezanne.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: Ia5869905ed053cdca5f61697cffc7f9b59370859 --- A src/mainboard/google/guybrush/dsdt.asl 1 file changed, 23 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/50560/1
diff --git a/src/mainboard/google/guybrush/dsdt.asl b/src/mainboard/google/guybrush/dsdt.asl new file mode 100644 index 0000000..ffe6f40 --- /dev/null +++ b/src/mainboard/google/guybrush/dsdt.asl @@ -0,0 +1,23 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +/* DefinitionBlock Statement */ +#include <acpi/acpi.h> +DefinitionBlock ( + "dsdt.aml", + "DSDT", + ACPI_DSDT_REV_2, + OEM_ID, + ACPI_TABLE_CREATOR, + 0x00010001 /* OEM Revision */ + ) +{ /* Start of ASL file */ + #include <acpi/dsdt_top.asl> + + /* System Bus */ + Scope(_SB) { /* Start _SB scope */ + /* global utility methods expected within the _SB scope */ + #include <arch/x86/acpi/globutil.asl> + + } /* End _SB scope */ +} +/* End of ASL file */