aboutsummaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-06-18 17:29:16 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-24 15:59:07 +1000
commit9fc0c1287ada4d3ba50dcb76bbc3fc9beaae0bb1 (patch)
tree93d4ae19a5987af0b48c5633cd899663e87fcfca /platforms
parent915097bdb87f0bb7402ccf3ea7a9c6438ad25a05 (diff)
downloadskiboot-9fc0c1287ada4d3ba50dcb76bbc3fc9beaae0bb1.zip
skiboot-9fc0c1287ada4d3ba50dcb76bbc3fc9beaae0bb1.tar.gz
skiboot-9fc0c1287ada4d3ba50dcb76bbc3fc9beaae0bb1.tar.bz2
Move FSP specific op-panel calls to platform.exit()
We move the platform exit call much closer to executing the kernel, which should all be safe, and in fact a much better time to do watchdog related things. Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/ibm-fsp/common.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/platforms/ibm-fsp/common.c b/platforms/ibm-fsp/common.c
index 573cd51..97fba33 100644
--- a/platforms/ibm-fsp/common.c
+++ b/platforms/ibm-fsp/common.c
@@ -193,6 +193,10 @@ void ibm_fsp_exit(void)
fsp_console_select_stdout();
+ op_panel_disable_src_echo();
+
+ /* Clear SRCs on the op-panel when Linux starts */
+ op_panel_clear_src();
}
int64_t ibm_fsp_cec_reboot(void)