Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/57097 )
Change subject: soc/intel/alderlake: Add tpch device information under dptf ......................................................................
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 --- M src/soc/intel/alderlake/dptf.c 1 file changed, 6 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Tim Wawrzynczak: Looks good to me, approved
diff --git a/src/soc/intel/alderlake/dptf.c b/src/soc/intel/alderlake/dptf.c index 2af96df..ba604ca 100644 --- a/src/soc/intel/alderlake/dptf.c +++ b/src/soc/intel/alderlake/dptf.c @@ -10,6 +10,12 @@ .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)