diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2023-05-12 11:59:55 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-05-15 13:29:04 +0000 |
commit | f5a2ce5c6acea6b8464f5ec06b8f87d104a5ca6f (patch) | |
tree | ab15787134a0d783ee62f26f68c0047045700399 /src/mainboard/google/myst | |
parent | eb9f1e14380301c9691bbed2fcc1d968fc2cdc8c (diff) |
mb/google/myst: Re-organize the FMAP layout
By moving certain FW UI assets from RO to RW sections, 4 MiB is
sufficient for RO section. Split the resultant available 4 MiB equally
between 2 RW sections. This will help in getting to 16 MiB SPI flash for
the mainboard.
BUG=b:281567816
TEST=Build Myst BIOS image with the updated layout.
Cq-Depend: chromium:4519688
Change-Id: I09948ceac0a6a1cb109322fc4856b8b486318664
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75184
Reviewed-by: Jon Murphy <jpmurphy@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Van Patten <timvp@google.com>
Diffstat (limited to 'src/mainboard/google/myst')
-rw-r--r-- | src/mainboard/google/myst/chromeos.fmd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/google/myst/chromeos.fmd b/src/mainboard/google/myst/chromeos.fmd index 56a163d24b..e1502e1683 100644 --- a/src/mainboard/google/myst/chromeos.fmd +++ b/src/mainboard/google/myst/chromeos.fmd @@ -1,7 +1,7 @@ # TODO(b/276944900): Update for 32 MB support, evaluate WP_RO size FLASH@0xFF000000 16M { SI_BIOS { - WP_RO 8M { + WP_RO 4M { RO_GSCVD 8K RO_VPD(PRESERVE) 16K RO_SECTION { @@ -11,16 +11,16 @@ FLASH@0xFF000000 16M { GBB 12K } } - RW_SECTION_A 3M { + RW_SECTION_A 5M { VBLOCK_A 8K FW_MAIN_A(CBFS) - SIGNED_AMDFW_A 1536K + SIGNED_AMDFW_A 2304K RW_FWID_A 256 } - RW_SECTION_B 3M { + RW_SECTION_B 5M { VBLOCK_B 8K FW_MAIN_B(CBFS) - SIGNED_AMDFW_B 1536K + SIGNED_AMDFW_B 2304K RW_FWID_B 256 } RW_ELOG(PRESERVE) 4K |