Skip to content

Commit

Permalink
Remove proc1pec1phb2 from being active in genHwsvMrwXml.pl
Browse files Browse the repository at this point in the history
Change-Id: I80244308b21c3409a59d18c5412703b9a892b05e
CQ: SW374182
CMVC-Prereq: 1027634
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41814
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Dean Sanner <dsanner@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
ploetzma authored and dcrowell77 committed Jun 30, 2017
1 parent 205f3c4 commit 2ea31dc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/usr/targeting/common/genHwsvMrwXml.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4796,9 +4796,14 @@ sub generate_pec
}
elsif ($pec == 1)
{
$pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFF00, 0x0000, 0x00FF, 0x0000";
if (($proc == 0) || ($proc == 1))
if ($proc == 0)
{
$pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFF00, 0x0000, 0x00FF, 0x0000";
$pciOtherAttr{"PROC_PCIE_IOP_SWAP"} = 0x2;
}
elsif ($proc == 1)
{
$pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFF00, 0x0000, 0x0000, 0x0000";
$pciOtherAttr{"PROC_PCIE_IOP_SWAP"} = 0x2;
}
}
Expand Down

0 comments on commit 2ea31dc

Please sign in to comment.