pistachio: allow more room for bootblock

32K is a more appropriate room for Pistachio bootblock.

BRANCH=none
BUG=chrome-os-partner:31438
TEST=there is no bootblock overflow even when compiled with -O0.

Change-Id: I454746ce0b9daabc93ccbf3316655fac836af8ff
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Original-Commit-Id: 56adf22ba12f5a7c69d11c0c720996de32ca9149
Original-Change-Id: I74b6674aea95b1138e2168527239e2cfb4a7ad42
Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/232291
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/9190
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Vadim Bendebury 2014-11-29 15:28:23 -08:00 committed by Stefan Reinauer
parent 52a8879853
commit cbc44f7012
2 changed files with 3 additions and 2 deletions

View File

@ -23,6 +23,7 @@ if BOARD_GOOGLE_URARA
config BOARD_SPECIFIC_OPTIONS config BOARD_SPECIFIC_OPTIONS
def_bool y def_bool y
select BOARD_ROMSIZE_KB_512
select BOOTBLOCK_CONSOLE select BOOTBLOCK_CONSOLE
select CONFIG_SPI_FLASH_WINBOND select CONFIG_SPI_FLASH_WINBOND
select CPU_IMGTEC_PISTACHIO select CPU_IMGTEC_PISTACHIO

View File

@ -37,11 +37,11 @@ config BOOTBLOCK_CPU_INIT
config CBFS_ROM_OFFSET config CBFS_ROM_OFFSET
hex hex
default 0x4100 default 0x8100
config CBFS_HEADER_ROM_OFFSET config CBFS_HEADER_ROM_OFFSET
# Effectively the maximum size of the bootblock # Effectively the maximum size of the bootblock
hex hex
default 0x4000 default 0x8000
endif endif