aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mainboard/google/volteer/dsdt.asl4
-rw-r--r--src/soc/intel/tigerlake/acpi/dptf.asl9
2 files changed, 11 insertions, 2 deletions
diff --git a/src/mainboard/google/volteer/dsdt.asl b/src/mainboard/google/volteer/dsdt.asl
index fa39e79e8e..3189767455 100644
--- a/src/mainboard/google/volteer/dsdt.asl
+++ b/src/mainboard/google/volteer/dsdt.asl
@@ -57,8 +57,8 @@ DefinitionBlock(
{
/* Per board variant specific definitions. */
#include <variant/acpi/dptf.asl>
- /* Include soc specific DPTF changes */
- #include <soc/intel/common/acpi/dptf.asl>
+ /* Include Tiger Lake soc specific DPTF changes */
+ #include <soc/intel/tigerlake/acpi/dptf.asl>
/* Include common dptf ASL files */
#include <soc/intel/common/acpi/dptf/dptf.asl>
}
diff --git a/src/soc/intel/tigerlake/acpi/dptf.asl b/src/soc/intel/tigerlake/acpi/dptf.asl
new file mode 100644
index 0000000000..4877c88569
--- /dev/null
+++ b/src/soc/intel/tigerlake/acpi/dptf.asl
@@ -0,0 +1,9 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+/* Below are the unique ACPI Device IDs for thermal/dptf on Tiger Lake SoC. */
+/* DPTF ACPI Device ID */
+#define DPTF_DPTF_DEVICE "INTC1040"
+/* Generic ACPI Device ID for TSR0/1/2/3 and charger */
+#define DPTF_GEN_DEVICE "INTC1043"
+/* Fan ACPI Device ID */
+#define DPTF_FAN_DEVICE "INTC1044"