Attention is currently required from: Tim Wawrzynczak, Patrick Rudolph. Sumeet R Pawnikar has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/57923 )
Change subject: soc/intel/alderlake: Add methods for tpch device ......................................................................
soc/intel/alderlake: Add methods for tpch device
Add various methods for tpch device thermal functionality under dptf for alderlake soc based platform.
BUG=b:198582766 BRANCH=None TEST=Build FW and test on brya0 board
Change-Id: Id340a91646d2a910a0195a2aa29b111c3def5d4b Signed-off-by: Sumeet Pawnikar sumeet.r.pawnikar@intel.com --- M src/soc/intel/alderlake/dptf.c 1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/23/57923/1
diff --git a/src/soc/intel/alderlake/dptf.c b/src/soc/intel/alderlake/dptf.c index ba604ca..156ab9b 100644 --- a/src/soc/intel/alderlake/dptf.c +++ b/src/soc/intel/alderlake/dptf.c @@ -16,6 +16,18 @@ .tpch_rfc0_method = "RFC0", /* RFC1 method name */ .tpch_rfc1_method = "RFC1", + /* SEMI method name */ + .tpch_semi_method = "SEMI", + /* GFC0 method name */ + .tpch_gfc0_method = "GFC0", + /* GFC1 method name */ + .tpch_gfc1_method = "GFC1", + /* GEMI method name */ + .tpch_gemi_method = "GEMI", + /* GFFS method name */ + .tpch_gffs_method = "GFFS", + /* GFCS method name */ + .tpch_gfcs_method = "GFCS", };
const struct dptf_platform_info *get_dptf_platform_info(void)