summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/onyx_poc/Kconfig
diff options
context:
space:
mode:
authorVarshit Pandya <pandyavarshit@gmail.com>2023-12-15 20:00:34 +0530
committerFelix Held <felix-coreboot@felixheld.de>2023-12-16 20:15:02 +0000
commitb0d0de2ba61f09227b2612eedb3c9f86abbf7d84 (patch)
tree66ebc917f947445abf33cc6d3f333b49c6bec632 /src/mainboard/amd/onyx_poc/Kconfig
parent9314bb6f0a991593b5fb9a6a6cced5aad02e6587 (diff)
downloadcoreboot-b0d0de2ba61f09227b2612eedb3c9f86abbf7d84.tar.gz
coreboot-b0d0de2ba61f09227b2612eedb3c9f86abbf7d84.tar.bz2
coreboot-b0d0de2ba61f09227b2612eedb3c9f86abbf7d84.zip
mb/amd/onyx: rename to onyx_poc
Even though this mainboard is called 'Onyx', the openSIL implementation and the corresponding coreboot integration is only a proof of concept that isn't fully featured, has known limitations and bugs, and is not meant for or ready to being productized. Adding the proof of concept suffix to the name should point this out clearly enough so that no potential customer could infer that this might be a fully functional and supported implementation which it is not. Change-Id: I157a8fffdc2a8543465fe8d444ac87f3f417389f Signed-off-by: Varshit Pandya <pandyavarshit@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77896 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/mainboard/amd/onyx_poc/Kconfig')
-rw-r--r--src/mainboard/amd/onyx_poc/Kconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mainboard/amd/onyx_poc/Kconfig b/src/mainboard/amd/onyx_poc/Kconfig
new file mode 100644
index 000000000000..bac8ec80a818
--- /dev/null
+++ b/src/mainboard/amd/onyx_poc/Kconfig
@@ -0,0 +1,23 @@
+if BOARD_AMD_ONYX_POC
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select SOC_AMD_GENOA_POC
+ select BOARD_ROMSIZE_KB_32768
+ select AMD_SOC_CONSOLE_UART
+
+config FMDFILE
+ default "src/mainboard/amd/onyx_poc/board.fmd"
+
+
+config MAINBOARD_DIR
+ default "amd/onyx_poc"
+
+config MAINBOARD_PART_NUMBER
+ default "Onyx_poc"
+
+# Use BMC SOL console on SoC UART1 by default
+config UART_FOR_CONSOLE
+ default 1
+
+endif