summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Bofferding <bofferdn@us.ibm.com>2018-07-26 16:10:34 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2018-07-30 12:31:58 -0500
commit6b3ddf52b517bba26db55d950ac9de37b9bd2a74 (patch)
tree2cd0735bc0853dcb021cbe8e6e34c30b00b96e67
parentda9d0e7c5ed5ad0d86edb19edd0ebfc94a1de078 (diff)
downloadtalos-hostboot-6b3ddf52b517bba26db55d950ac9de37b9bd2a74.tar.gz
talos-hostboot-6b3ddf52b517bba26db55d950ac9de37b9bd2a74.zip
eRepair: Pass RX/TX vectors into lane power down HWPs in right order
Inverts the order that call_dmi_erepair passes TX and RX lane vectors into the p9_io_dmi_restore_erepair and p9_io_cen_restore_erepair HWPs in order to conform to the API defintiion. Change-Id: Iede0a9938427432bebdb7770854160524c7b0268 CQ: SW439818 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/63413 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: Daniel M. Crowell <dcrowell@us.ibm.com>
-rw-r--r--src/usr/isteps/istep12/call_dmi_erepair.C8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/isteps/istep12/call_dmi_erepair.C b/src/usr/isteps/istep12/call_dmi_erepair.C
index cfd817079..a4dd8108e 100644
--- a/src/usr/isteps/istep12/call_dmi_erepair.C
+++ b/src/usr/isteps/istep12/call_dmi_erepair.C
@@ -159,8 +159,8 @@ void* call_dmi_erepair (void *io_pArgs)
FAPI_INVOKE_HWP(l_errPtr,
p9_io_dmi_restore_erepair,
l_fapi_endp1_target,
- l_endp1_txFaillanes,
- l_endp1_rxFaillanes);
+ l_endp1_rxFaillanes,
+ l_endp1_txFaillanes);
if(l_errPtr)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
@@ -209,8 +209,8 @@ void* call_dmi_erepair (void *io_pArgs)
FAPI_INVOKE_HWP(l_errPtr,
p9_io_cen_restore_erepair,
l_fapi_endp2_target,
- l_endp2_txFaillanes,
- l_endp2_rxFaillanes);
+ l_endp2_rxFaillanes,
+ l_endp2_txFaillanes);
if (l_errPtr)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
OpenPOWER on IntegriCloud