soc/amd/acpi: Expand 5 DPTC thermal profiles acpigen support for Alib

Update acpigen_write_alib_dptc() to support extra 5 thermal profiles.
User can use these profiles for dynamic thermal table switching support.

BUG=b:232946420
TEST=emerge-skyrim coreboot

Signed-off-by: EricKY Cheng <ericky_cheng@compal.corp-partner.google.com>
Change-Id: I9e6d5c0fc6f492340c935899920d9ee7c9396256
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68470
Reviewed-by: Tim Van Patten <timvp@google.com>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Dtrain Hsu <dtrain_hsu@compal.corp-partner.google.com>
diff --git a/src/soc/amd/common/block/include/amdblocks/alib.h b/src/soc/amd/common/block/include/amdblocks/alib.h
index 3de4018..82d6935 100644
--- a/src/soc/amd/common/block/include/amdblocks/alib.h
+++ b/src/soc/amd/common/block/include/amdblocks/alib.h
@@ -20,6 +20,12 @@
 	ALIB_DPTC_VRM_MAXIMUM_CURRENT_LIMIT = 0xc,
 	/* Picasso: SetVrmSocCurrentLimit (0xe) is not implemented in alib. */
 	ALIB_DPTC_VRM_SOC_CURRENT_LIMIT_ID = 0xe,
+
+	ALIB_DPTC_STT_SKIN_TEMPERATURE_LIMIT_APU_ID = 0x22,
+	ALIB_DPTC_STT_M1_ID = 0x26,
+	ALIB_DPTC_STT_M2_ID = 0x27,
+	ALIB_DPTC_STT_C_APU_ID = 0x2C,
+	ALIB_DPTC_STT_MIN_LIMIT_ID = 0x2E,
 };
 
 struct alib_dptc_param {
@@ -30,7 +36,11 @@
 void acpigen_write_alib_dptc_default(uint8_t *default_param, size_t default_param_len);
 void acpigen_write_alib_dptc_no_battery(uint8_t *no_battery_param, size_t no_battery_param_len);
 void acpigen_write_alib_dptc_tablet(uint8_t *tablet_param, size_t tablet_param_len);
-
+void acpigen_write_alib_dptc_thermal_B(uint8_t *thermal_param_B, size_t thermal_param_B_len);
+void acpigen_write_alib_dptc_thermal_C(uint8_t *thermal_param_C, size_t thermal_param_C_len);
+void acpigen_write_alib_dptc_thermal_D(uint8_t *thermal_param_D, size_t thermal_param_D_len);
+void acpigen_write_alib_dptc_thermal_E(uint8_t *thermal_param_E, size_t thermal_param_E_len);
+void acpigen_write_alib_dptc_thermal_F(uint8_t *thermal_param_F, size_t thermal_param_F_len);
 #endif /* !__ACPI__ */
 
 #endif /* AMD_COMMON_ALIB_H */