soc/intel/apollolake: Fix bitshift issue in bootblock

Fix issue where zero-sized BIOS region could cause bitshift
for '-1' which is an unspecified behavior.

Change-Id: Icb62bf413a1a0d293657503ef21fe97b5f9a5484
Signed-off-by: Andrey Petrov <andrey.petrov@intel.com>
Reviewed-on: https://review.coreboot.org/15727
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Andrey Petrov 2016-07-18 07:59:03 -07:00 committed by Martin Roth
parent b921725b52
commit dc97b1ce2f
1 changed files with 4 additions and 1 deletions

View File

@ -98,7 +98,10 @@ static void cache_bios_region(void)
return;
/* Only the IFD BIOS region is memory mapped (at top of 4G) */
rom_size = get_bios_size();
rom_size = get_bios_size();
if (!rom_size)
return;
/* Round to power of two */
alignment = 1 << (log2_ceil(rom_size));