diff options
author | Shaik Sajida Bhanu <sbhanu@codeaurora.org> | 2021-05-26 12:54:04 +0530 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2021-09-16 00:16:54 +0000 |
commit | 34ac8c614d89e11c291fdb16728f25b454ee952a (patch) | |
tree | a7634d62e0e19965ced3e427a637b21f74ec54f4 /src/mainboard | |
parent | bf141981a8ad56673250d52f1d347a4cb6fe43c9 (diff) |
mb/google/herobrine: Increase the ROM size to 64 MB
SPI NOR size should match with coreboot ROM size. On QCOM Piglin board SPI
NOR size is 64MB and the default coreboot ROM size is 8MB. So, update the
coreboot ROM size to match with SPI NOR size.
BUG=b:182963902
TEST=Validated on qualcomm sc7280 development board and checked
basic boot up.
Change-Id: I78f3f402b383bbad303f26c31d3d973c5f20d172
Signed-off-by: Shaik Sajida Bhanu <sbhanu@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55376
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/herobrine/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/herobrine/Kconfig b/src/mainboard/google/herobrine/Kconfig index 95f223f6c9..57e4edb8b6 100644 --- a/src/mainboard/google/herobrine/Kconfig +++ b/src/mainboard/google/herobrine/Kconfig @@ -5,7 +5,8 @@ if BOARD_GOOGLE_HEROBRINE_COMMON config BOARD_SPECIFIC_OPTIONS def_bool y - select BOARD_ROMSIZE_KB_8192 + select BOARD_ROMSIZE_KB_65536 if BOARD_GOOGLE_PIGLIN + select BOARD_ROMSIZE_KB_8192 if !BOARD_GOOGLE_PIGLIN select COMMON_CBFS_SPI_WRAPPER select EC_GOOGLE_CHROMEEC if !BOARD_GOOGLE_SENOR select EC_GOOGLE_CHROMEEC_RTC if !BOARD_GOOGLE_SENOR |