summaryrefslogtreecommitdiffstats
path: root/import
diff options
context:
space:
mode:
authorCHRISTINA L. GRAVES <clgraves@us.ibm.com>2016-08-05 14:05:41 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2016-08-19 12:55:29 -0400
commit51c15ad56bde6773ae7fd67784b12875ca2905ab (patch)
tree83a199e7800265e749a02a4509ac82992745f710 /import
parentbca69c55b393e112eab4777e4d966f503a811c56 (diff)
downloadtalos-sbe-51c15ad56bde6773ae7fd67784b12875ca2905ab.tar.gz
talos-sbe-51c15ad56bde6773ae7fd67784b12875ca2905ab.zip
Fixing a problem in sbe_load_bootloader
The code was not calling the status check because there was just a > and not a >= for checking if we were on the last line Change-Id: I78cfef0fa378ca1302f1beb638cd8d6d1c98edf6 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27933 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com> Reviewed-by: JOSHUA L. HANNAN <jlhannan@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com> Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-by: Dean Sanner <dsanner@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27935 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Diffstat (limited to 'import')
-rw-r--r--import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C b/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C
index 6b394e4b..ba238852 100644
--- a/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C
+++ b/import/chips/p9/procedures/hwp/nest/p9_sbe_load_bootloader.C
@@ -278,7 +278,7 @@ fapi2::ReturnCode p9_sbe_load_bootloader(
l_myPbaFlag.setFlag(),
l_firstAccess,
(l_num_cachelines_to_roll == 1) ||
- ((l_target_address + FABRIC_CACHELINE_SIZE) >
+ ((l_target_address + FABRIC_CACHELINE_SIZE) >=
(l_chip_base_address_nm + i_payload_size + l_exception_vector_size)),
l_data_to_pass_to_pba_array), "Error from p9_pba_access");
l_firstAccess = false;
OpenPOWER on IntegriCloud