diff options
| author | Marty Gloff <mgloff@us.ibm.com> | 2017-05-04 11:49:53 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-05-08 17:37:12 -0400 |
| commit | 8d2f642444d8581ea7dda1219f2ffccc79a63dce (patch) | |
| tree | b4e923d4f96d4792f41c8209d78cda82bc91d4ad /src/include/bootloader/bootloaderif.H | |
| parent | 8527fc2b9549b9b6782fdffde29ff8713e677bc4 (diff) | |
| download | blackbird-hostboot-8d2f642444d8581ea7dda1219f2ffccc79a63dce.tar.gz blackbird-hostboot-8d2f642444d8581ea7dda1219f2ffccc79a63dce.zip | |
Bootloader updates to support remapped memory - Initial pass
Add support to BlToHbData structure and create new version.
Put in TODOs for pending p9_sbe_hb_structures.H changes.
Move selected Bootloader data out of image due to size issues.
Update BlTrace tool for new location of trace data.
Change-Id: Ic513a95b8f4054d467537c4623d5a7b7aa09e25e
RTC:173526
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40096
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@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/include/bootloader/bootloaderif.H')
| -rw-r--r-- | src/include/bootloader/bootloaderif.H | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/include/bootloader/bootloaderif.H b/src/include/bootloader/bootloaderif.H index e4d422d20..9c7b73201 100644 --- a/src/include/bootloader/bootloaderif.H +++ b/src/include/bootloader/bootloaderif.H @@ -53,8 +53,9 @@ const uint64_t BLTOHB_EYECATCHER = 0x23626C746F686200; // #BLTOHB\0 enum BlToHbDataVersion { // [release:4][version:4] - BLTOHB_INIT = 0x0000000900000001, - BLTOHB_SAB = 0x0000000900000002 + BLTOHB_INIT = 0x0000000900000001, + BLTOHB_SAB = 0x0000000900000002, + BLTOHB_MMIOBARS = 0x0000000900000003 }; @@ -73,7 +74,8 @@ struct BlToHbData branchtableOffset(0), secureRom(nullptr), secureRomSize(0), hwKeysHash(nullptr), hwKeysHashSize(0), hbbHeader(nullptr), - hbbHeaderSize(0), secureAccessBit(false) {} + hbbHeaderSize(0), secureAccessBit(false), + xscomBAR(0), lpcBAR(0) {} // Simple way to tell if data is valid uint64_t eyeCatch; @@ -95,6 +97,10 @@ struct BlToHbData size_t hbbHeaderSize; // Secure Access Bit bool secureAccessBit; + // XSCOM MMIO BAR + uint64_t xscomBAR; + // LPC MMIO BAR + uint64_t lpcBAR; } __attribute__((packed)); /** |

