diff options
author | Matt Derksen <mderkse1@us.ibm.com> | 2017-06-22 12:04:19 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-07-10 12:24:45 -0400 |
commit | c623059686ee2da857b2db64f3a0c85664213420 (patch) | |
tree | 692acc70b4f927b2b2aa1be86a45b326d38b8708 /src/usr/util | |
parent | 8d8d4eae265c2f9ae6443a7f252231d9362ce5f4 (diff) | |
download | talos-hostboot-c623059686ee2da857b2db64f3a0c85664213420.tar.gz talos-hostboot-c623059686ee2da857b2db64f3a0c85664213420.zip |
Grab RINGOVD data on FSP systems from lid
Change-Id: Ic6acf3e0785d00618a75023a38b26bca4d77b5ed
RTC: 171484
CMVC-Prereq: 1027252
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42623
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: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/util')
-rw-r--r-- | src/usr/util/utillidpnor.H | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/usr/util/utillidpnor.H b/src/usr/util/utillidpnor.H index acec01462..f4da469dc 100644 --- a/src/usr/util/utillidpnor.H +++ b/src/usr/util/utillidpnor.H @@ -57,11 +57,12 @@ bool cmpLidToPnor (const std::pair<uint32_t, PNOR::SectionId> p1, const std::pair<uint32_t, PNOR::SectionId> lidToPnor[] = { - std::make_pair(Util::TEST_LIDID, PNOR::TESTRO), // 0x00000111 - std::make_pair(Util::OCC_LIDID, PNOR::OCC), // 0x81e00430 - std::make_pair(Util::WOF_LIDID, PNOR::WOFDATA), // 0x81e00440 - std::make_pair(Util::NIMBUS_HCODE_LIDID, PNOR::HCODE), // 0x81e00602 - std::make_pair(Util::CUMULUS_HCODE_LIDID, PNOR::HCODE) // 0x81e00603 + std::make_pair(Util::TEST_LIDID, PNOR::TESTRO), // 0x00000111 + std::make_pair(Util::OCC_LIDID, PNOR::OCC), // 0x81e00430 + std::make_pair(Util::WOF_LIDID, PNOR::WOFDATA), // 0x81e00440 + std::make_pair(Util::NIMBUS_HCODE_LIDID, PNOR::HCODE), // 0x81e00602 + std::make_pair(Util::CUMULUS_HCODE_LIDID, PNOR::HCODE), // 0x81e00603 + std::make_pair(Util::HWREFIMG_RINGOVD_LIDID, PNOR::RINGOVD)// 0x81e00620 }; // Size of lidToPnor[] @@ -70,4 +71,4 @@ const size_t NUM_LID_TO_PNOR = ( sizeof(lidToPnor) / } -#endif
\ No newline at end of file +#endif |