diff options
author | Subrata Banik <subratabanik@google.com> | 2022-12-20 11:45:09 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-12-23 13:01:03 +0000 |
commit | 42f704a9678b6aa978df3dd4148b69b3f4e7f3d6 (patch) | |
tree | 853813730a69a529a2bdf55600bf431c29e28c86 | |
parent | e9ac9f97e84ea4ceec3f2468f3ca2b5f2c47fbf2 (diff) |
soc/intel/meteorlake: Add DPTF ACPI Device IDs into header file
This patch adds DPTF ACPI Device IDs into the header file
(soc/dptf.h).
Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: Ib78258ac1b9a5252bb5e6fae4d7cc30a3f103e78
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71126
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Sumeet R Pawnikar <sumeet.r.pawnikar@intel.com>
Reviewed-by: Ivy Jian <ivy.jian@quanta.corp-partner.google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/meteorlake/include/soc/dptf.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/include/soc/dptf.h b/src/soc/intel/meteorlake/include/soc/dptf.h new file mode 100644 index 0000000000..4facbe4d84 --- /dev/null +++ b/src/soc/intel/meteorlake/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 Meteor Lake SoC. */ +/* DPTF ACPI Device ID */ +#define DPTF_DPTF_DEVICE "INTC1042" +/* Generic ACPI Device ID for TSR0/1/2/3 and charger */ +#define DPTF_GEN_DEVICE "INTC1062" +/* Fan ACPI Device ID */ +#define DPTF_FAN_DEVICE "INTC1063" +/* TPCH ACPI Device ID */ +#define DPTF_TPCH_DEVICE "INTC1064" +/* TPWR ACPI Device ID */ +#define DPTF_TPWR_DEVICE "INTC1065" +/* BAT1 ACPI Device ID */ +#define DPTF_BAT1_DEVICE "INTC1066" + +#endif /* _SOC_DPTF_H_ */ |