diff options
author | Nicholas E. Bofferding <bofferdn@us.ibm.com> | 2018-03-21 10:37:19 -0400 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-03-26 13:08:58 -0400 |
commit | a7decd2eeff585cf534c2aeb1293a1ac02e3f049 (patch) | |
tree | 9e5f902dfcc002162a001f88d13f0586ea43cd90 /src/include | |
parent | b2bffd27478b2558c08103de957a9eeaadabb4ff (diff) | |
download | talos-hostboot-a7decd2eeff585cf534c2aeb1293a1ac02e3f049.tar.gz talos-hostboot-a7decd2eeff585cf534c2aeb1293a1ac02e3f049.zip |
Revert "Check the Section Headers in Non-Secure Mode"
This reverts commit c82b626e6ea1d56c0d25cbd5954064e256135002.
Change-Id: I0ae2328866e0f90ec583b19044ff917a4f52726c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56126
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: ILYA SMIRNOV <ismirno@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/usr/pnor/pnor_reasoncodes.H | 2 | ||||
-rw-r--r-- | src/include/usr/pnor/pnorif.H | 10 |
2 files changed, 0 insertions, 12 deletions
diff --git a/src/include/usr/pnor/pnor_reasoncodes.H b/src/include/usr/pnor/pnor_reasoncodes.H index e0c156e74..4dd2ef1c4 100644 --- a/src/include/usr/pnor/pnor_reasoncodes.H +++ b/src/include/usr/pnor/pnor_reasoncodes.H @@ -96,7 +96,6 @@ namespace PNOR // pnor_common.C MOD_PNORCOMMON_PARSETOC = 0xC0, /**< PNOR::parseTOC */ - MOD_PNORCOMMON_GETSECTIONINFO = 0xC1, /**< PNOR::getSectionInfo */ // spnorrp.C // Note: 0xD0 is available, so should be the next one used for spnorrp. @@ -188,7 +187,6 @@ namespace PNOR RC_SECURE_SIZE_MISMATCH = PNOR_COMP_ID | 0x3A, RC_NOT_PAGE_ALIGNED = PNOR_COMP_ID | 0x3B, RC_SECURE_PRO_SIZE_MISMATCH = PNOR_COMP_ID | 0x3C, - RC_BAD_HEADER_FORMAT = PNOR_COMP_ID | 0x3D, //@fixme-RTC:131607-Temporary value to allow HWSV compile //termination_rc diff --git a/src/include/usr/pnor/pnorif.H b/src/include/usr/pnor/pnorif.H index b4d1a668f..8b4d4de80 100644 --- a/src/include/usr/pnor/pnorif.H +++ b/src/include/usr/pnor/pnorif.H @@ -226,16 +226,6 @@ const char * SectionIdToString( uint32_t i_secIdIndex ); bool cmpSecurebootMagicNumber(const uint8_t* i_vaddr); /** - * @brief Determines whether requested PNOR section has a recognized header - * @param[in] i_vaddr: vaddr of the beginning of the secureboot header. - * @param[in] o_magicNumber: the read value of the header's magic number. - Used for error logging purposes. Always populated. - * @return bool: True if the header was recognized, false otherwise. - */ -bool hasKnownHeader(const uint8_t* i_vaddr, - uint64_t& o_magicNumber); - -/** * @brief Determine if a PNOR section is empty by checking if first PAGE * is all 0xFF's or 0x00's depending on ECC or not. * |