diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2017-02-16 15:32:20 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-02-17 13:40:54 -0500 |
commit | 00be8ce011bb416d4329d59e03e0437ae46fa5f4 (patch) | |
tree | b45d0f1421dfc74832dddc7031f7d7a7c9c64c46 /src | |
parent | 630fe13c4f0e236533f33fc572a49cdd071bbe02 (diff) | |
download | talos-hostboot-00be8ce011bb416d4329d59e03e0437ae46fa5f4.tar.gz talos-hostboot-00be8ce011bb416d4329d59e03e0437ae46fa5f4.zip |
Update PROC_PCIE_LANE_MASK for proc1 for ZZ
Change lane mask value for proc1 to be different from proc0
Change-Id: I177bb576e6b1aa960ddbbcb9c94cd21e9667e8da
CQ: SW380399
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36588
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: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rwxr-xr-x | src/usr/targeting/common/genHwsvMrwXml.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/targeting/common/genHwsvMrwXml.pl b/src/usr/targeting/common/genHwsvMrwXml.pl index e4b029a86..f705387c5 100755 --- a/src/usr/targeting/common/genHwsvMrwXml.pl +++ b/src/usr/targeting/common/genHwsvMrwXml.pl @@ -4927,13 +4927,14 @@ sub generate_pec } elsif ($pec == 2) { - $pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFF00, 0x0000, 0x00FF, 0x0000"; if ($proc == 0) { + $pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFF00, 0x0000, 0x00FF, 0x0000"; $pciOtherAttr{"PROC_PCIE_IOP_SWAP"} = 0x6; } elsif ($proc == 1) { + $pciOtherAttr{"PROC_PCIE_LANE_MASK"} = "0xFFFF, 0x0000, 0x0000, 0x0000"; $pciOtherAttr{"PROC_PCIE_IOP_SWAP"} = 0x4; } } |