89b4f69746
Currently ifdtool --validate will not correctly validate the FMAP against the IFD regions, since it will compare the IFD bios region with an FMAP region called SI_BIOS. It's probably a good idea to define default name for the BIOS FMAP region like we have for 'COREBOOT' or 'FMAP' FMAP region. Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Change-Id: I55eddfb5641b3011d4525893604ccf87fa05a1e2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73449 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
20 lines
556 B
Text
20 lines
556 B
Text
# layout for firmware residing at top of 4GB address space
|
|
# +-------------+ <-- 4GB - ROM_SIZE / start of flash
|
|
# | unspecified |
|
|
# +-------------+ <-- 4GB - BIOS_SIZE
|
|
# | FMAP |
|
|
# +-------------+ <-- 4GB - BIOS_SIZE + FMAP_SIZE
|
|
# | CBFS |
|
|
# +-------------+ <-- 4GB / end of flash
|
|
|
|
FLASH@##ROM_BASE## ##ROM_SIZE## {
|
|
SI_BIOS@##BIOS_BASE## ##BIOS_SIZE## {
|
|
##CONSOLE_ENTRY##
|
|
##MRC_CACHE_ENTRY##
|
|
##SMMSTORE_ENTRY##
|
|
##SPD_CACHE_ENTRY##
|
|
##VPD_ENTRY##
|
|
FMAP@##FMAP_BASE## ##FMAP_SIZE##
|
|
COREBOOT(CBFS)@##CBFS_BASE## ##CBFS_SIZE##
|
|
}
|
|
}
|