diff options
| author | Matt Derksen <mderkse1@us.ibm.com> | 2019-04-02 16:59:58 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-04-19 10:17:42 -0500 |
| commit | 2431563fb687e2cafeb2bd4739302542c4fe8430 (patch) | |
| tree | d8e973c5bb5e1c1ea2d65ecbad724b0fb6f86808 /src/usr/pnor | |
| parent | 8112a619ebf4861f3f85226de3e8dfd79cc43a5f (diff) | |
| download | blackbird-hostboot-2431563fb687e2cafeb2bd4739302542c4fe8430.tar.gz blackbird-hostboot-2431563fb687e2cafeb2bd4739302542c4fe8430.zip | |
Remove DJVPD and CVPD sections from axone pnor layout
Remove unneeded Centaur VPD and DIMM JEDEC VPD sections
to help reduce axone pnor memory space.
Hit a simics issue where sysmvpd.data.ecc size was
overwriting the first four 4-byte words of HBB, so
procmvpd_p9a.dat size was corrected to 64KB.
procmvpd_p9c.dat had same issue, but the overwrite
was being corrected by a following CVPD write.
Change-Id: I70eb12709be0ac7b73609fb080d956ee2faa39a2
RTC:207995
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/75896
Reviewed-by: Glenn Miles <milesg@ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@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: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/pnor')
| -rw-r--r-- | src/usr/pnor/test/pnorrptest.H | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/usr/pnor/test/pnorrptest.H b/src/usr/pnor/test/pnorrptest.H index 5108840f5..9d9dd95c1 100644 --- a/src/usr/pnor/test/pnorrptest.H +++ b/src/usr/pnor/test/pnorrptest.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2018 */ +/* Contributors Listed Below - COPYRIGHT 2011,2019 */ /* [+] Google Inc. */ /* [+] International Business Machines Corp. */ /* */ @@ -90,6 +90,14 @@ class PnorRpTest : public CxxTest::TestSuite continue; } + if(( testSections[idx] == PNOR::DIMM_JEDEC_VPD ) && + ( TARGETING::MODEL_AXONE == + TARGETING::targetService().getProcessorModel() )) + { + TRACFCOMP(g_trac_pnor, "PnorRpTest::test_sectionInfo> Skipping non-existent DIMM_JEDEC_VPD section for Axone"); + continue; + } + total++; errhdl = PNOR::getSectionInfo( testSections[idx], info ); |

