summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaptor Engineering Development Team <support@raptorengineering.com>2018-04-30 03:55:48 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2018-05-30 16:37:05 -0500
commit5bd3978da391d2ebb3698ab782300ca260ecf325 (patch)
treeb001adf051777146d5b92fcfcb8b5558fb903e97
parent31a16d1a570892231844fe95ffbc78c8fa7a7017 (diff)
downloadtalos-skiboot-5bd3978da391d2ebb3698ab782300ca260ecf325.tar.gz
talos-skiboot-5bd3978da391d2ebb3698ab782300ca260ecf325.zip
Disable fast reset unless explicitly enabled
Fast reset causes the OCC to randomly stop communicating with the BMC, leading to a fan control failure and possible second CPU guard due to the resultant FSI bus communication issues. Disable until Issue 1699 (https://github.com/openbmc/openbmc/issues/1699) is fixed
-rw-r--r--core/platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/platform.c b/core/platform.c
index f09ea3c1..5872d75b 100644
--- a/core/platform.c
+++ b/core/platform.c
@@ -60,8 +60,8 @@ static int64_t opal_cec_reboot(void)
console_complete_flush();
- /* Try fast-reset unless explicitly disabled */
- if (!nvram_query_eq("fast-reset","0"))
+ /* Don't try fast-reset unless explicitly enabled */
+ if (nvram_query_eq("fast-reset","1"))
fast_reboot();
if (platform.cec_reboot)
OpenPOWER on IntegriCloud