diff options
author | Christian Geddes <crgeddes@us.ibm.com> | 2019-02-07 15:55:39 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-02-11 10:18:42 -0600 |
commit | bc12ed0cd43896d9ac7e0f40cf920435c253a21b (patch) | |
tree | beca48e80d15a26582ca457499352bdff7f89aa5 /src | |
parent | c023204d6e3cf5239058cbcf18f4c6f6387486d5 (diff) | |
download | talos-hostboot-bc12ed0cd43896d9ac7e0f40cf920435c253a21b.tar.gz talos-hostboot-bc12ed0cd43896d9ac7e0f40cf920435c253a21b.zip |
Skip NPU scominit until ARTMISS register gets updated
This ARTMISS register that gets updated during npu_scominit changed
for axone. If we run this step we take errors so we will skip it
in the Axone flow till we get some updates.
Change-Id: I4f1607ab2147692eef864ce0bf3ee73c43ba8bb3
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71547
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/isteps/istep10/call_proc_npu_scominit.C | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usr/isteps/istep10/call_proc_npu_scominit.C b/src/usr/isteps/istep10/call_proc_npu_scominit.C index 623ca6088..c29be9535 100644 --- a/src/usr/isteps/istep10/call_proc_npu_scominit.C +++ b/src/usr/isteps/istep10/call_proc_npu_scominit.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015,2018 */ +/* Contributors Listed Below - COPYRIGHT 2015,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -67,6 +67,7 @@ void* call_proc_npu_scominit( void *io_pArgs ) { IStepError l_stepError; + #ifndef CONFIG_AXONE_BRING_UP TRACFCOMP(g_trac_isteps_trace, ENTER_MRK"call_proc_npu_scominit entry"); if (!INITSERVICE::isSMPWrapConfig()) { @@ -75,6 +76,9 @@ void* call_proc_npu_scominit( void *io_pArgs ) HWPF_COMP_ID, TYPE_PROC); } TRACFCOMP(g_trac_isteps_trace, EXIT_MRK"call_proc_npu_scominit exit"); + #else + TRACFCOMP(g_trac_isteps_trace, "Skipping call_proc_npu_scominit in Axone during bringup"); + #endif return l_stepError.getErrorHandle(); } |