diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2023-02-08 12:35:37 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-13 13:44:03 +0000 |
commit | 62ab9a777b789697afa6e0c659cdfdb7d4df89e9 (patch) | |
tree | b45cb54c921656c2ff7c272dd7b99af0d3455e9f /src/mainboard/amd | |
parent | c59efc10fc86e4bdb7ed69d4e7437241df97841c (diff) |
mb/amd/mayan/board.fmd: Move MRC cache
The EFS must be located at the 128K offset. The combination of EC,
MRC_CACHE, and FMAP push the start of the coreboot CBFS region to 128K,
leaving no room for the CBFS headers for the EFS.
Move the MRC_CACHE region to the end of the image. This matches the
chromeos MRC_CACHE layout.
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Change-Id: I3919fba40f22ee84b0a3eee1ac7b6e48c076d713
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72903
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/mayan/board.fmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/mayan/board.fmd b/src/mainboard/amd/mayan/board.fmd index 6c6ad92a28..32c7a5a6dd 100644 --- a/src/mainboard/amd/mayan/board.fmd +++ b/src/mainboard/amd/mayan/board.fmd @@ -1,8 +1,8 @@ FLASH@0xFF000000 16M { BIOS { EC 4K - RW_MRC_CACHE 120K FMAP 4K COREBOOT(CBFS) + RW_MRC_CACHE 120K } } |