diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-09-12 11:01:42 +0100 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-09-13 15:21:42 +0000 |
commit | 8fb4c9d95685c140a0a76c13d90610bb1db50d25 (patch) | |
tree | 7c14e59684e04f4e97d3337847bab12353a5aaff /src | |
parent | 9b9a763ca95ff132b10d4e5769c397dbd4c24bea (diff) |
mb/starlabs/starbook/tgl: Tidy up the layout
Tidy up the layout to remove unnecessary sizes. This change also makes
the flash start at 0x0 and increases the size of the FMAP to 0x1000.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I46663003857eb50271c6ad1da6c4e56c8f4bb6c3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67542
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/starlabs/starbook/variants/tgl/board.fmd | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/src/mainboard/starlabs/starbook/variants/tgl/board.fmd b/src/mainboard/starlabs/starbook/variants/tgl/board.fmd index 932739e1e4..e7405bee77 100644 --- a/src/mainboard/starlabs/starbook/variants/tgl/board.fmd +++ b/src/mainboard/starlabs/starbook/variants/tgl/board.fmd @@ -1,18 +1,14 @@ -# -# Manually defined FMD in order to ensure that space is reserved for the EC -# at the top of the BIOS region. -# -FLASH@0xff000000 0x1000000 { - SI_ALL@0x0 0x500000 { - SI_DESC@0x0 0x1000 - SI_ME@0x1000 +FLASH 0x1000000 { + SI_ALL 0x500000 { + SI_DESC 0x1000 + SI_ME } - SI_BIOS@0x500000 0xB00000 { - EC@0x0 0x20000 - RW_MRC_CACHE@0x20000 0x10000 - SMMSTORE@0x30000 0x40000 - CONSOLE@0x70000 0x20000 - FMAP@0x90000 0x800 + SI_BIOS 0xb00000 { + EC@0x0 0x20000 + RW_MRC_CACHE@0x20000 0x10000 + SMMSTORE@0x30000 0x40000 + CONSOLE@0x70000 0x20000 + FMAP@0x90000 0x1000 COREBOOT(CBFS) } } |