diff options
author | Andrew Geissler <andrewg@us.ibm.com> | 2016-08-19 13:19:03 -0500 |
---|---|---|
committer | Matthew A. Ploetz <maploetz@us.ibm.com> | 2016-09-22 12:26:31 -0400 |
commit | ed6dba09da6b37c57b945e155fbd4df6174a40f2 (patch) | |
tree | bc848acf7bb7e75f812302bc70956abd902c4bf2 /src/usr/pnor | |
parent | c3e8041de1c99af5f9ced249e0c471b10b504e69 (diff) | |
download | talos-hostboot-ed6dba09da6b37c57b945e155fbd4df6174a40f2.tar.gz talos-hostboot-ed6dba09da6b37c57b945e155fbd4df6174a40f2.zip |
Create new ring override section in PNOR
Change-Id: I3565abc10b38ab52b7dcc3d3c37ddbce89aa558f
RTC: 156833
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28548
Tested-by: Jenkins Server <pfd-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: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Matthew A. Ploetz <maploetz@us.ibm.com>
Diffstat (limited to 'src/usr/pnor')
-rw-r--r-- | src/usr/pnor/pnor_utils.C | 1 | ||||
-rw-r--r-- | src/usr/pnor/test/pnorrptest.H | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/usr/pnor/pnor_utils.C b/src/usr/pnor/pnor_utils.C index 33dcb3a27..e522ea942 100644 --- a/src/usr/pnor/pnor_utils.C +++ b/src/usr/pnor/pnor_utils.C @@ -80,6 +80,7 @@ const char* cv_EYECATCHER[] = { "TESTRO", /**< PNOR::TESTRO : ReadOnly Test space for PNOR */ "BACKUP_PART", /**PNOR::BACKUP_PART : Backup of PART*/ "POWERVM", /**< PNOR::POWERVM : Power VM data */ + "RINGOVD", /**< PNOR::RINGOVD : Ring overrides */ }; /** diff --git a/src/usr/pnor/test/pnorrptest.H b/src/usr/pnor/test/pnorrptest.H index 4eee74072..8222063a6 100644 --- a/src/usr/pnor/test/pnorrptest.H +++ b/src/usr/pnor/test/pnorrptest.H @@ -72,8 +72,9 @@ class PnorRpTest : public CxxTest::TestSuite PNOR::HB_DATA, /**< Hostboot Data */ PNOR::DIMM_JEDEC_VPD, /**< DIMM JEDEC VPD */ PNOR::MODULE_VPD, /**< Module VPD */ + PNOR::RINGOVD, /**< Ring override data */ }; - uint64_t numSections = 5; + uint64_t numSections = 6; for( uint64_t idx = 0; idx < numSections; idx++) { |