diff options
| author | Stephen Cprek <smcprek@us.ibm.com> | 2017-06-19 15:26:19 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-07-20 15:54:29 -0400 |
| commit | 0b680113fbc55b91bc7785ef235df32df6103eda (patch) | |
| tree | a8c11e0beee39d5d7e615a92791cc232f3624dcf /src/include/bootloader | |
| parent | e43ee27ebd0f6028f74ee51793f4ca00b1fb04b9 (diff) | |
| download | blackbird-hostboot-0b680113fbc55b91bc7785ef235df32df6103eda.tar.gz blackbird-hostboot-0b680113fbc55b91bc7785ef235df32df6103eda.zip | |
Remove half cache init and do it in the page manager
Change-Id: I3e870c9b50d13704c4c88adfc96e5943cff9dae2
RTC: 175114
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/42153
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@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: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/bootloader')
| -rw-r--r-- | src/include/bootloader/bootloaderif.H | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/bootloader/bootloaderif.H b/src/include/bootloader/bootloaderif.H index dd1c3a8ff..25b3520e8 100644 --- a/src/include/bootloader/bootloaderif.H +++ b/src/include/bootloader/bootloaderif.H @@ -40,11 +40,13 @@ namespace Bootloader{ // Size of exception vector reserved space at start of the HBBL section #define HBBL_EXCEPTION_VECTOR_SIZE (12 * KILOBYTE) +#define MAX_HBB_SIZE (512 * KILOBYTE) + // The Bootloader to Hostboot communication area exists after the working HBB #ifdef BOOTLOADER -#define BLTOHB_COMM_DATA_ADDR (getHRMOR() - ( 2*MEGABYTE) + 512*KILOBYTE) +#define BLTOHB_COMM_DATA_ADDR (getHRMOR() - ( 2*MEGABYTE) + MAX_HBB_SIZE) #else -#define BLTOHB_COMM_DATA_ADDR (getHRMOR() + 512*KILOBYTE) +#define BLTOHB_COMM_DATA_ADDR (getHRMOR() + MAX_HBB_SIZE) #endif // Expected BlToHbData eye catch |

