aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2023-07-13 12:51:55 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-09-05 12:18:27 +0000
commit820a31263dd6e291bdf740be7a526f0c0e686d7c (patch)
tree7d8c08c1ad1afad9fa57a6237acb1c5fecab35c3
parent525d8d86c399d751caaf6535084d775075499986 (diff)
mb/amd/onyx: Add FMD file and update romsize
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: Idd6f711f5ca5c8a421c0c38edd404b1900bb29b4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/76497 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/mainboard/amd/onyx/Kconfig5
-rw-r--r--src/mainboard/amd/onyx/board.fmd8
2 files changed, 13 insertions, 0 deletions
diff --git a/src/mainboard/amd/onyx/Kconfig b/src/mainboard/amd/onyx/Kconfig
index ce1b980359..260a498c65 100644
--- a/src/mainboard/amd/onyx/Kconfig
+++ b/src/mainboard/amd/onyx/Kconfig
@@ -4,6 +4,11 @@ config BOARD_SPECIFIC_OPTIONS
def_bool y
select SOC_AMD_GENOA
select MISSING_BOARD_RESET
+ select BOARD_ROMSIZE_KB_32768
+
+config FMDFILE
+ default "src/mainboard/amd/onyx/board.fmd"
+
config MAINBOARD_DIR
default "amd/onyx"
diff --git a/src/mainboard/amd/onyx/board.fmd b/src/mainboard/amd/onyx/board.fmd
new file mode 100644
index 0000000000..a5118c3ef5
--- /dev/null
+++ b/src/mainboard/amd/onyx/board.fmd
@@ -0,0 +1,8 @@
+FLASH 32M {
+ BIOS 16M {
+ COREBOOT(CBFS)
+ FMAP 4K
+ RW_VPD 8K
+ RO_VPD 8K
+ }
+}