CBFS: Correct ROM_SIZE for ARM boards, use CBFS_SIZE for cbfstool
Some projects (like ChromeOS) put more content than described by CBFS onto their image. For top-aligned images (read: x86), this has traditionally been achieved with a CBFS_SIZE Kconfig (which denotes the area actually managed by CBFS, as opposed to ROM_SIZE) that is used to calculate the CBFS entry start offset. On bottom-aligned boards, many define a fake (smaller) ROM_SIZE for only the CBFS part, which is not consistently done and can be an issue because ROM_SIZE is expected to be a power of two. This patch changes all non-x86 boards to describe their actual (physical) ROM size via one of the BOARD_ROMSIZE_KB_xxx options as a mainboard Kconfig select (which is the correct place to declare unchangeable physical properties of the board). It also changes the cbfstool create invocation to use CBFS_SIZE as the -s parameter for those architectures, which defaults to ROM_SIZE but gets overridden for special use cases like ChromeOS. This has the advantage that cbfstool has a consistent idea of where the area it is responsible for ends, which offers better bounds-checking and is needed for a subsequent fix. Also change the FMAP offset to default to right behind the (now consistently known) CBFS region for non-x86 boards, which has emerged as a de-facto standard on those architectures and allows us to reduce the amount of custom configuration. In the future, the nightmare that is ChromeOS's image build system could be redesigned to enforce this automatically, and also confirm that it doesn't overwrite any space used by CBFS (which is now consistently defined as the file size of coreboot.rom on non-x86). CQ-DEPEND=CL:231576,CL:231475 BRANCH=None BUG=chromium:422501 TEST=Built and booted on Veyron_Pinky. Change-Id: I4fce5a56a8d72f4c4dd3a08c129025f1565351cc Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/229974 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
4f064fdca5
commit
e707c67c69
18 changed files with 35 additions and 17 deletions
|
|
@ -87,6 +87,7 @@ config FLASHMAP_OFFSET
|
|||
hex "Flash Map Offset"
|
||||
default 0x00670000 if NORTHBRIDGE_INTEL_SANDYBRIDGE
|
||||
default 0x00610000 if NORTHBRIDGE_INTEL_IVYBRIDGE
|
||||
default CBFS_SIZE if !ARCH_X86
|
||||
default 0
|
||||
help
|
||||
Offset of flash map in firmware image
|
||||
|
|
@ -161,4 +162,4 @@ config PHYSICAL_REC_SWITCH
|
|||
Whether this platform has a physical recovery switch
|
||||
|
||||
source src/vendorcode/google/chromeos/vboot1/Kconfig
|
||||
source src/vendorcode/google/chromeos/vboot2/Kconfig
|
||||
source src/vendorcode/google/chromeos/vboot2/Kconfig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue