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-04-30 03:55:48 -0500
commit2d1519ef16b773401ddcc532592505f1251c82e4 (patch)
tree3c2448ae462c1fbac877da415fa2a34f21b064e1
parent9821bf7bb6eab97eb758167be1578f19c2634e94 (diff)
downloadtalos-skiboot-2d1519ef16b773401ddcc532592505f1251c82e4.tar.gz
talos-skiboot-2d1519ef16b773401ddcc532592505f1251c82e4.zip
Disable fast reset unless explicitly enabledHEADmaster04-30-2018
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