summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <tpearson@raptorengineering.com>2018-04-24 21:13:30 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2018-05-20 01:31:19 -0500
commit8d49baa2180fc3cff78c393b19e39816dfa8606f (patch)
treec694da160d4365eb2d5aad404334c6ed1d41a75c
parent19f71466928709ff36dd407beb689b4519be24ed (diff)
downloadtalos-hostboot-8d49baa2180fc3cff78c393b19e39816dfa8606f.tar.gz
talos-hostboot-8d49baa2180fc3cff78c393b19e39816dfa8606f.zip
Cap voltage offset when biasedHEADmaster05-21-2018
This fixes spurious (invalid) voltage requests when the bias frequency exceeds the maximum WoF frequency Signed-off-by: Timothy Pearson <tpearson@raptorengineering.com>
-rw-r--r--src/import/chips/p9/procedures/hwp/pm/p9_pstate_parameter_block.C8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pstate_parameter_block.C b/src/import/chips/p9/procedures/hwp/pm/p9_pstate_parameter_block.C
index 1b1c4f113..4f16ed1f6 100644
--- a/src/import/chips/p9/procedures/hwp/pm/p9_pstate_parameter_block.C
+++ b/src/import/chips/p9/procedures/hwp/pm/p9_pstate_parameter_block.C
@@ -4862,11 +4862,15 @@ uint32_t ps2v_mv(const Pstate i_pstate,
FAPI_INF ("l_SlopeValue %x",l_SlopeValue);
- uint32_t x = (l_SlopeValue * (-i_pstate + i_operating_points[region_start].pstate));
+ int32_t x_candidate = (l_SlopeValue * (-i_pstate + i_operating_points[region_start].pstate));
+ uint32_t x = 0;
uint32_t y = x >> VID_SLOPE_FP_SHIFT_12;
+ if (x_candidate > 0)
+ x = x_candidate;
+
uint32_t l_vdd =
- (((l_SlopeValue * (-i_pstate + i_operating_points[region_start].pstate)) >> VID_SLOPE_FP_SHIFT_12)
+ ((x >> VID_SLOPE_FP_SHIFT_12)
+ revle32(i_operating_points[region_start].vdd_mv));
// Round up
OpenPOWER on IntegriCloud