diff options
| author | Stephen Cprek <smcprek@us.ibm.com> | 2014-02-27 10:32:44 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-03-21 17:28:09 -0500 |
| commit | c1b2c3d4d0030b063b06cc553c016351ce096cc3 (patch) | |
| tree | 2116b1256c8f7cea10e44ddb5087c5f30d9479c1 /src/include | |
| parent | 3dbe360bc8151fb45938d1843e6b984efeb7e3d9 (diff) | |
| download | blackbird-hostboot-c1b2c3d4d0030b063b06cc553c016351ce096cc3.tar.gz blackbird-hostboot-c1b2c3d4d0030b063b06cc553c016351ce096cc3.zip | |
Add sha512perEC to SBEC and version to WINK
Change-Id: I2e5dadc3b8b8280d8eaa5e7662e9ecbc4dda5d88
RTC: 96020
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9211
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Michael Baiocchi <baiocchi@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/pnor/pnorif.H | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/include/usr/pnor/pnorif.H b/src/include/usr/pnor/pnorif.H index 58b0108d6..d178d7018 100644 --- a/src/include/usr/pnor/pnorif.H +++ b/src/include/usr/pnor/pnorif.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2013 */ +/* COPYRIGHT International Business Machines Corp. 2011,2014 */ /* */ /* p1 */ /* */ @@ -60,33 +60,21 @@ enum SectionId }; /** - * Select a side of flash to access - */ -enum SideSelect -{ - SIDE_A, /**< A-side of flash */ - SIDE_B, /**< B-side of flash */ - CURRENT_SIDE, /**< Use the currently selected side */ -}; - -/** * Information about a section of PNOR */ // Size and layout of this structure must be maintained for debug framework. struct SectionInfo_t { SectionId id; /**< Identifier for this section */ - SideSelect side; /**< Identifier for the side of flash */ const char* name; /**< Name of the section */ uint64_t vaddr; /**< Virtual address for the start of the section */ uint64_t size; /**< Actual size of content in bytes */ bool eccProtected; /**< Section is ECC protected */ + bool sha512Version; /**< Version Checking */ + bool sha512perEC; /**< Version Checking perEC */ }; - - - /** * @brief Return the size and address of a given section of PNOR data * |

