summaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-10-25 13:11:46 +0100
committerAngel Pons <th3fanbus@gmail.com>2020-11-04 22:03:18 +0000
commit0d8924d880ff22d074d760925413bc4ddfb6cd82 (patch)
tree1369dca7bfafb4cc26456e473e23093e29a0a80b /src/soc/intel/broadwell/pch
parentf239b5a9f35faac861c8efd28d32c458e45cc890 (diff)
downloadcoreboot-0d8924d880ff22d074d760925413bc4ddfb6cd82.tar.xz
soc/intel/broadwell: Align ACPI with Haswell/Lynxpoint
Drop unnecessary smbus.asl in favor of southbridge common code. Tested with BUILD_TIMELESS=1, Purism Librem 13 v1 does not change. Change-Id: I13b35d2155a2cede0a56846b8bf8a79d4ebfc7b3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46757 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/broadwell/pch')
-rw-r--r--src/soc/intel/broadwell/pch/acpi/lpc.asl4
-rw-r--r--src/soc/intel/broadwell/pch/acpi/pch.asl2
-rw-r--r--src/soc/intel/broadwell/pch/acpi/smbus.asl8
3 files changed, 3 insertions, 11 deletions
diff --git a/src/soc/intel/broadwell/pch/acpi/lpc.asl b/src/soc/intel/broadwell/pch/acpi/lpc.asl
index 5bdfea24ce..4422907f88 100644
--- a/src/soc/intel/broadwell/pch/acpi/lpc.asl
+++ b/src/soc/intel/broadwell/pch/acpi/lpc.asl
@@ -181,6 +181,6 @@ Device (LPCB)
#include "gpio.asl"
#include "irqlinks.asl"
- #include <acpi/ec.asl>
- #include <acpi/superio.asl>
+ #include "acpi/ec.asl"
+ #include "acpi/superio.asl"
}
diff --git a/src/soc/intel/broadwell/pch/acpi/pch.asl b/src/soc/intel/broadwell/pch/acpi/pch.asl
index 07db9f7f24..5a94bca181 100644
--- a/src/soc/intel/broadwell/pch/acpi/pch.asl
+++ b/src/soc/intel/broadwell/pch/acpi/pch.asl
@@ -60,7 +60,7 @@ Scope (\)
#include "sata.asl"
// SMBus 0:1f.3
-#include "smbus.asl"
+#include <southbridge/intel/common/acpi/smbus.asl>
// Serial IO
#include "serialio.asl"
diff --git a/src/soc/intel/broadwell/pch/acpi/smbus.asl b/src/soc/intel/broadwell/pch/acpi/smbus.asl
deleted file mode 100644
index 32b0b9cc62..0000000000
--- a/src/soc/intel/broadwell/pch/acpi/smbus.asl
+++ /dev/null
@@ -1,8 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-// Intel SMBus Controller 0:1f.3
-
-Device (SBUS)
-{
- Name (_ADR, 0x001f0003)
-}