diff options
author | Tim Crawford <tcrawford@system76.com> | 2024-05-22 10:43:43 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-22 13:58:48 +0000 |
commit | 8b17b9b1967c5299c021cb65e9322668ad32b9cc (patch) | |
tree | ac020e0b01273786612bb4feebda521f2ad3f8c9 /src/mainboard/system76/mtl/dsdt.asl | |
parent | a4b9c182dded30d2a9437b6e78df9f60251cb85e (diff) |
mb/system76/mtl: Add Darter Pro 10
The Darter Pro 10 (darp10) is an Intel Meteor Lake-H based board.
There are 2 variants to differentiate them as they have different
keyboards and so use different EC firmware.
- darp10: 16" model with 102 key keyboard
- darp10-b: 14" model with 83 key keyboard
Change-Id: Iaef03a47cf108591ef823bfa779777c7c05c6337
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82609
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/system76/mtl/dsdt.asl')
-rw-r--r-- | src/mainboard/system76/mtl/dsdt.asl | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mainboard/system76/mtl/dsdt.asl b/src/mainboard/system76/mtl/dsdt.asl new file mode 100644 index 0000000000..cf8d58d434 --- /dev/null +++ b/src/mainboard/system76/mtl/dsdt.asl @@ -0,0 +1,36 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +//TODO: HACK FOR MISSING MISCCFG_GPIO_PM_CONFIG_BITS +#include <soc/gpio.h> + +#include <acpi/acpi.h> +DefinitionBlock( + "dsdt.aml", + "DSDT", + ACPI_DSDT_REV_2, + OEM_ID, + ACPI_TABLE_CREATOR, + 0x20110725 +) +{ + #include <acpi/dsdt_top.asl> + #include <soc/intel/common/block/acpi/acpi/platform.asl> + #include <soc/intel/common/block/acpi/acpi/globalnvs.asl> + #include <cpu/intel/common/acpi/cpu.asl> + + Device (\_SB.PCI0) + { + #include <soc/intel/common/block/acpi/acpi/northbridge.asl> + #include <soc/intel/meteorlake/acpi/southbridge.asl> + #include <soc/intel/meteorlake/acpi/tcss.asl> + } + + #include <southbridge/intel/common/acpi/sleepstates.asl> + + Scope (\_SB.PCI0.LPCB) + { + #include <drivers/pc80/pc/ps2_controller.asl> + } + + #include "acpi/mainboard.asl" +} |