summaryrefslogtreecommitdiff
path: root/src/soc/intel/jasperlake/include
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2022-12-19 18:02:42 +0530
committerSubrata Banik <subratabanik@google.com>2022-12-22 08:05:43 +0000
commitfd8c596c406ad23484e293dd3892ccf99c95e25b (patch)
tree658537d5beee5400949abbc7c01ba4dadc4c237d /src/soc/intel/jasperlake/include
parente4aee2b178820be7a68d2b370595b20fe3f0cbee (diff)
soc/intel/jasperlake: Move DPTF ACPI Device IDs into header file
This patch moves DPTF ACPI Device IDs into the header file (soc/dptf.h) so that upcoming patches in this patch train can achieve more common code. TEST=Able to build and boot Google/Kano. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: Ibb31ab29c803dde70ef9ccf2b7c7c2ca0845b568 Reviewed-on: https://review.coreboot.org/c/coreboot/+/71106 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Diffstat (limited to 'src/soc/intel/jasperlake/include')
-rw-r--r--src/soc/intel/jasperlake/include/soc/dptf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/soc/intel/jasperlake/include/soc/dptf.h b/src/soc/intel/jasperlake/include/soc/dptf.h
new file mode 100644
index 0000000000..9917697af8
--- /dev/null
+++ b/src/soc/intel/jasperlake/include/soc/dptf.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef _SOC_DPTF_H_
+#define _SOC_DPTF_H_
+
+/* Below are the unique ACPI Device IDs for thermal/dptf on Jasper Lake SoC. */
+/* DPTF ACPI Device ID */
+#define DPTF_DPTF_DEVICE "INT3400"
+/* Generic ACPI Device ID for TSR0/1/2/3 and charger */
+#define DPTF_GEN_DEVICE "INT3403"
+/* Fan ACPI Device ID */
+#define DPTF_FAN_DEVICE "INT3404"
+
+#endif /* _SOC_DPTF_H_ */