From 80ed5012ef38fdc3bca04d76cfc91a2fcceaff43 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Mon, 19 Dec 2022 17:35:47 +0530 Subject: soc/intel/alderlake: 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 Change-Id: Ied32eb301b0702ad7cf12b662886c9060415eb72 Reviewed-on: https://review.coreboot.org/c/coreboot/+/71103 Reviewed-by: Eric Lai Reviewed-by: Sumeet R Pawnikar Tested-by: build bot (Jenkins) Reviewed-by: Kapil Porwal --- src/soc/intel/alderlake/include/soc/dptf.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/soc/intel/alderlake/include/soc/dptf.h (limited to 'src/soc/intel/alderlake/include') diff --git a/src/soc/intel/alderlake/include/soc/dptf.h b/src/soc/intel/alderlake/include/soc/dptf.h new file mode 100644 index 0000000000..a15d51c41f --- /dev/null +++ b/src/soc/intel/alderlake/include/soc/dptf.h @@ -0,0 +1,20 @@ +/* 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 Alder Lake SoC. */ +/* DPTF ACPI Device ID */ +#define DPTF_DPTF_DEVICE "INTC1041" +/* Generic ACPI Device ID for TSR0/1/2/3 and charger */ +#define DPTF_GEN_DEVICE "INTC1046" +/* Fan ACPI Device ID */ +#define DPTF_FAN_DEVICE "INTC1048" +/* TPCH ACPI Device ID */ +#define DPTF_TPCH_DEVICE "INTC1049" +/* TPWR ACPI Device ID */ +#define DPTF_TPWR_DEVICE "INTC1060" +/* BAT1 ACPI Device ID */ +#define DPTF_BAT1_DEVICE "INTC1061" + +#endif /* _SOC_DPTF_H_ */ -- cgit v1.2.3