aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/dragonegg/dsdt.asl
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2020-05-27 08:31:26 -0600
committerAaron Durbin <adurbin@chromium.org>2020-05-28 19:38:33 +0000
commit0013623b7c976b8f79778cecf3f146dc7aeab6e9 (patch)
tree9cd19358a84a2ffe1c103f8186def1097be6d959 /src/mainboard/google/dragonegg/dsdt.asl
parenta85febcb1cfd31bd4d27e955fc2bcf9f8ef16cd5 (diff)
mb/google/dragonegg: remove abandoned project
Dragonegg is no longer in development nor used. Remove it. Change-Id: Ida30dba662bc517671824f8b70b73b4856836e97 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41783 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/dragonegg/dsdt.asl')
-rw-r--r--src/mainboard/google/dragonegg/dsdt.asl47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/mainboard/google/dragonegg/dsdt.asl b/src/mainboard/google/dragonegg/dsdt.asl
deleted file mode 100644
index 15e0498a1e..0000000000
--- a/src/mainboard/google/dragonegg/dsdt.asl
+++ /dev/null
@@ -1,47 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <acpi/acpi.h>
-#include "variant/ec.h"
-#include "variant/gpio.h"
-
-DefinitionBlock(
- "dsdt.aml",
- "DSDT",
- 0x02, // DSDT revision
- OEM_ID,
- ACPI_TABLE_CREATOR,
- 0x20110725 // OEM revision
-)
-{
- #include <soc/intel/icelake/acpi/platform.asl>
-
- // global NVS and variables
- #include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
-
- // CPU
- #include <cpu/intel/common/acpi/cpu.asl>
-
- Scope (\_SB) {
- Device (PCI0)
- {
- #include <soc/intel/common/block/acpi/acpi/northbridge.asl>
- #include <soc/intel/icelake/acpi/southbridge.asl>
- }
- }
-
-#if CONFIG(CHROMEOS)
- // Chrome OS specific
- #include <vendorcode/google/chromeos/acpi/chromeos.asl>
-#endif
-
- #include <southbridge/intel/common/acpi/sleepstates.asl>
-
- /* Chrome OS Embedded Controller */
- Scope (\_SB.PCI0.LPCB)
- {
- /* ACPI code for EC SuperIO functions */
- #include <ec/google/chromeec/acpi/superio.asl>
- /* ACPI code for EC functions */
- #include <ec/google/chromeec/acpi/ec.asl>
- }
-}