diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2021-06-23 14:35:33 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-06-25 15:52:51 +0000 |
commit | 8f9ee36c53abe8e2d07266d1a2014ac35e880d8a (patch) | |
tree | b8afb4cf54bd625622f2fb9d9479bd009bb84252 /src/mainboard | |
parent | e243a60efea1393e9f888fb5839a681739322669 (diff) |
mb/google/{octopus,reef}: Fix size of SI_BIOS region in default.fmd
0xf7f000 - 0x1000 = 0xf7e000, not 0xf6f000.
This fixes build failure when selecting the option to validate the
layout using the flash descriptor (CONFIG_VALIDATE_INTEL_DESCRIPTOR)
Test: build google/casta successfully with IFD validation selected
Change-Id: I6df67f76f5d766a9f4f85ffc3e1f0de4a241f509
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55815
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/octopus/default.fmd | 2 | ||||
-rw-r--r-- | src/mainboard/google/reef/default.fmd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/octopus/default.fmd b/src/mainboard/google/octopus/default.fmd index bf51a1ca4b..79b2a6a143 100644 --- a/src/mainboard/google/octopus/default.fmd +++ b/src/mainboard/google/octopus/default.fmd @@ -1,6 +1,6 @@ FLASH 16M { SI_DESC@0x0 0x1000 - SI_BIOS@0x1000 0xf6f000 { + SI_BIOS@0x1000 0xf7e000 { IFWI@0x0 0x1ff000 # SMMSTORE requires 64k alignment SMMSTORE@0xa5e000 0x40000 diff --git a/src/mainboard/google/reef/default.fmd b/src/mainboard/google/reef/default.fmd index d6433137ab..ff8f8efc92 100644 --- a/src/mainboard/google/reef/default.fmd +++ b/src/mainboard/google/reef/default.fmd @@ -1,6 +1,6 @@ FLASH 16M { SI_DESC@0x0 0x1000 - SI_BIOS@0x1000 0xf6f000 { + SI_BIOS@0x1000 0xf7e000 { IFWI@0x0 0x1ff000 # SMMSTORE requires 64k alignment SMMSTORE@0xa5e000 0x40000 |