diff options
author | Louis Stermole <stermole@us.ibm.com> | 2019-11-22 11:23:56 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-12-03 16:34:21 -0600 |
commit | 2f808f21c2976c94688843b7a6b32fbcd88f5e38 (patch) | |
tree | 8c2c6c4d94ca61ddd12b070974098de17082000c /src | |
parent | 29176896830047abfc63248ff8d38ab65672fd34 (diff) | |
download | talos-hostboot-2f808f21c2976c94688843b7a6b32fbcd88f5e38.tar.gz talos-hostboot-2f808f21c2976c94688843b7a6b32fbcd88f5e38.zip |
Skip setting up emergency throttle settings for Explorer in Cronus mode
Change-Id: Ib631e0a70e8677f7ed05eaedd1096541680ccbc6
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87709
Reviewed-by: Michael D Pardeik <pardeik@us.ibm.com>
Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87724
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_mss_thermal_init.C | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_mss_thermal_init.C b/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_mss_thermal_init.C index 242f3a313..d52ac1ba6 100644 --- a/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_mss_thermal_init.C +++ b/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_mss_thermal_init.C @@ -71,10 +71,13 @@ extern "C" FAPI_TRY( mss::exp::check::sensor_response(i_target, l_response), "Failed sensor_response() for %s", mss::c_str(i_target) ); #endif + +#ifdef __HOSTBOOT_MODULE // Prior to starting OCC, we go into "safemode" throttling // After OCC is started, they can change throttles however they want + // We don't want to do this in Cronus mode FAPI_TRY (mss::exp::mc::setup_emergency_throttles(i_target)); - +#endif // Clear the emergency mode throttle bit FAPI_TRY (mss::exp::mc::disable_safe_mode_throttles(i_target)); |