Skip to content

Commit

Permalink
Skip NPU scominit until ARTMISS register gets updated
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
crgeddes authored and dcrowell77 committed Feb 11, 2019
1 parent c023204 commit bc12ed0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/usr/isteps/istep10/call_proc_npu_scominit.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2015,2018 */
/* Contributors Listed Below - COPYRIGHT 2015,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -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())
{
Expand All @@ -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();
}
Expand Down

0 comments on commit bc12ed0

Please sign in to comment.