diff options
| author | Stephen Cprek <smcprek@us.ibm.com> | 2017-06-20 16:48:07 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-07-20 15:54:48 -0400 |
| commit | 781d316517240e869cc76ceff5cde3eb1fe6bc48 (patch) | |
| tree | 22009f9a9b34b9fe4456e72ce8bd5ce783aa0074 /src/build/simics | |
| parent | 22d6e4636c815eecdcf778c417ef217e32878fba (diff) | |
| download | talos-hostboot-781d316517240e869cc76ceff5cde3eb1fe6bc48.tar.gz talos-hostboot-781d316517240e869cc76ceff5cde3eb1fe6bc48.zip | |
Increase HBB PNOR section max size to 1MB with ECC
Change-Id: Icfd9411deac792d9772e89e35e7da5df272a7ecc
RTC: 175114
CMVC-prereq: 1027576
CMVC-prereq: 1027947
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42170
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/simics')
| -rwxr-xr-x | src/build/simics/standalone.simics | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/build/simics/standalone.simics b/src/build/simics/standalone.simics index 81b56f328..71bd375d0 100755 --- a/src/build/simics/standalone.simics +++ b/src/build/simics/standalone.simics @@ -19,9 +19,17 @@ if ($hb_skip_vpd_preload == 0) { echo "Preload VPD into PNOR" run-python-file (lookup-file hbfw/hb-pnor-vpd-preload.py) - ($hb_pnor).sfc_master_mem.load-file ./sysmvpd.dat.ecc 0x229000 - ($hb_pnor).sfc_master_mem.load-file ./sysspd.dat.ecc 0x1E1000 - ($hb_pnor).sfc_master_mem.load-file ./sysmemvpd.dat.ecc 0x2B9000 + # Must match pnor layout used (see eyecatch in layout) + echo "PNOR layout offset for VPD:" + # PNOR eyecatch MVPD + echo " - MVPD at 0x79000" + ($hb_pnor).sfc_master_mem.load-file ./sysmvpd.dat.ecc 0x79000 + # PNOR eyecatch DJVPD + echo " - DJVPD at 0x31000" + ($hb_pnor).sfc_master_mem.load-file ./sysspd.dat.ecc 0x31000 + # PNOR eyecatch CVPD + echo " - CVPD at 0x109000" + ($hb_pnor).sfc_master_mem.load-file ./sysmemvpd.dat.ecc 0x109000 } except { echo "ERROR: Failed to preload VPD into PNOR." } } |

