aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSubrata Banik <subrata.banik@intel.com>2021-11-17 15:26:24 +0530
committerSubrata Banik <subrata.banik@intel.com>2021-11-20 05:18:08 +0000
commit5a13d6617cde9c676ce72b31c79a272c70449d29 (patch)
tree0b28e4e5e414946978d5bc7464092601a750550e /src/soc/intel
parentca247629da034e252d2645c7f15a821b0333454f (diff)
soc/intel/common/thermal: Use `clrsetbits32()` for setting LTT
This patch uses `clrsetbits32` helper function to set thermal device Low Temp Threshold (LTT) value. BUG=b:193774296 TEST=Able to build and boot hatch and adlrvp with this change. Change-Id: I51fea7bd2146ea29ef476218c006f7350b32c006 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59310 Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/common/block/thermal/thermal.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/soc/intel/common/block/thermal/thermal.c b/src/soc/intel/common/block/thermal/thermal.c
index 4a2d8d88a8..6106c49639 100644
--- a/src/soc/intel/common/block/thermal/thermal.c
+++ b/src/soc/intel/common/block/thermal/thermal.c
@@ -40,7 +40,6 @@ static uint32_t pch_get_ltt_value(void)
/* Enable thermal sensor power management */
void pch_thermal_configuration(void)
{
- uint16_t reg16;
uintptr_t thermalbar;
uintptr_t thermalbar_pm;
const struct device *dev;
@@ -65,9 +64,5 @@ void pch_thermal_configuration(void)
thermalbar_pm = thermalbar + THERMAL_SENSOR_POWER_MANAGEMENT;
/* Set Low Temp Threshold (LTT) at TSPM offset 0x1c[8:0] */
- reg16 = read16((uint16_t *)thermalbar_pm);
- reg16 &= ~CATASTROPHIC_TRIP_POINT_MASK;
- /* Low Temp Threshold (LTT) */
- reg16 |= pch_get_ltt_value();
- write16((uint16_t *)thermalbar_pm, reg16);
+ clrsetbits32((void *)thermalbar_pm, CATASTROPHIC_TRIP_POINT_MASK, pch_get_ltt_value());
}