diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2020-12-02 14:25:40 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-12-05 09:43:32 +0000 |
commit | d9fd2e29356bfe182158f2bed391e9bf7f062c60 (patch) | |
tree | 2ee5293012614e8499e066794978185b92375523 /src/mainboard/amd/majolica/Kconfig | |
parent | dc2d3566ffa9bdf6edbb000c1d66c6bcd1939e9d (diff) |
mb/amd/majolica: add skeleton of Cezanne reference board
This is an adapted copy of mainboard/example/min86 that is currently
only used for Jenkins to test the SoC code in soc/amd/cezanne and isn't
expected to reach boot block at the moment. It will be extended in
future follow-up commits.
Change-Id: I6806955952fbfa3227294cfc44fdf9156140e933
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48238
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/mainboard/amd/majolica/Kconfig')
-rw-r--r-- | src/mainboard/amd/majolica/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mainboard/amd/majolica/Kconfig b/src/mainboard/amd/majolica/Kconfig new file mode 100644 index 0000000000..eeaf3b04e2 --- /dev/null +++ b/src/mainboard/amd/majolica/Kconfig @@ -0,0 +1,16 @@ +# SPDX-License-Identifier: GPL-2.0-only + +if BOARD_AMD_MAJOLICA + +config BOARD_SPECIFIC_OPTIONS + def_bool y + select SOC_AMD_CEZANNE + select MISSING_BOARD_RESET + +config MAINBOARD_DIR + default "amd/majolica" + +config MAINBOARD_PART_NUMBER + default "MAJOLICA" + +endif # BOARD_AMD_MAJOLICA |