diff options
author | Mathew King <mathewk@chromium.org> | 2020-12-08 11:33:58 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-02-19 08:38:58 +0000 |
commit | 422501fb14780090527c9a45bcca6628cd6bba71 (patch) | |
tree | 3892b8ffd3ba9ff54e50f73669fab64db08f638e /src/mainboard/google/mancomb/Kconfig | |
parent | e75f1807e1150eaf777a12a0503a9b5b7d302bc7 (diff) |
mb/google/mancomb: Add new mainboard
Mancomb is a new Google mainboard with an AMD Cezanne SOC.
BUG=b:175143925
TEST=builds
Change-Id: I1264f44a0b986f7f7c89ac7b42f1e4e4119a35e6
Signed-off-by: Mathew King <mathewk@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50007
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/mancomb/Kconfig')
-rw-r--r-- | src/mainboard/google/mancomb/Kconfig | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/mainboard/google/mancomb/Kconfig b/src/mainboard/google/mancomb/Kconfig new file mode 100644 index 0000000000..6cb5f1854e --- /dev/null +++ b/src/mainboard/google/mancomb/Kconfig @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +config BOARD_GOOGLE_BASEBOARD_MANCOMB + def_bool n + +if BOARD_GOOGLE_BASEBOARD_MANCOMB + +config BOARD_SPECIFIC_OPTIONS + def_bool y + select BOARD_ROMSIZE_KB_16384 + select SOC_AMD_CEZANNE + +config FMDFILE + string + default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" + +config MAINBOARD_DIR + string + default "google/mancomb" + +config MAINBOARD_PART_NUMBER + string + default "Mancomb" if BOARD_GOOGLE_MANCOMB + +config AMD_FWM_POSITION_INDEX + int + default 3 + help + TODO: might need to be adapted for better placement of files in cbfs + +config DEVICETREE + string + default "variants/baseboard/devicetree.cb" + +config MAINBOARD_FAMILY + string + default "Google_Mancomb" + +endif # BOARD_GOOGLE_BASEBOARD_MANCOMB |