aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSumeet Pawnikar <sumeet.r.pawnikar@intel.com>2021-08-31 21:19:56 +0530
committerFelix Held <felix-coreboot@felixheld.de>2021-09-05 19:28:35 +0000
commit92db5d734c7c20c70c3a87b23cd48ccb8acbaf1a (patch)
treeec54d17c3c2ec890da1f4a8fded302f4dc3d0ac4 /src
parenta91d93111470475d3b9deafefc49f0cf23ab48de (diff)
soc/intel/alderlake: Add tpch device information under dptf
Add tpch device information for thermal functionality under dptf for alderlake soc based platform. BUG=b:198582766 BRANCH=None TEST=Build FW and test on brya0 board Change-Id: Iad8e8bc0b7a104bbe582bc477936d0d00087f1d1 Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57097 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/alderlake/dptf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/dptf.c b/src/soc/intel/alderlake/dptf.c
index 2af96df5bb..ba604cae88 100644
--- a/src/soc/intel/alderlake/dptf.c
+++ b/src/soc/intel/alderlake/dptf.c
@@ -10,6 +10,12 @@ static const struct dptf_platform_info adl_dptf_platform_info = {
.generic_hid = "INTC1046",
/* _HID for Intel DPTF Fan Device */
.fan_hid = "INTC1048",
+ /* _HID for the toplevel TPCH device, typically \_SB.TPCH */
+ .tpch_device_hid = "INTC1049",
+ /* RFC0 method name */
+ .tpch_rfc0_method = "RFC0",
+ /* RFC1 method name */
+ .tpch_rfc1_method = "RFC1",
};
const struct dptf_platform_info *get_dptf_platform_info(void)