From 92db5d734c7c20c70c3a87b23cd48ccb8acbaf1a Mon Sep 17 00:00:00 2001 From: Sumeet Pawnikar Date: Tue, 31 Aug 2021 21:19:56 +0530 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57097 Tested-by: build bot (Jenkins) Reviewed-by: Tim Wawrzynczak --- src/soc/intel/alderlake/dptf.c | 6 ++++++ 1 file changed, 6 insertions(+) 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)