summaryrefslogtreecommitdiffstats
path: root/src/mainboard/intel/cedarisland_crb/Kconfig
diff options
context:
space:
mode:
authorAndrey Petrov <anpetrov@fb.com>2020-03-20 12:12:12 -0700
committerAndrey Petrov <anpetrov@fb.com>2020-03-26 18:14:46 +0000
commit1b325dd971c84d75aa5a53405c11e0ad8f2517b9 (patch)
treeeb26b8a0d5f5d2895c872ec5c034c90a0159aa92 /src/mainboard/intel/cedarisland_crb/Kconfig
parent7b42bba3cf287e13eff6b86326f55ef6bf6ff6e0 (diff)
downloadcoreboot-1b325dd971c84d75aa5a53405c11e0ad8f2517b9.tar.gz
coreboot-1b325dd971c84d75aa5a53405c11e0ad8f2517b9.tar.bz2
coreboot-1b325dd971c84d75aa5a53405c11e0ad8f2517b9.zip
mb/intel/cedarisland_crb: Add Cedar Island CRB
Just a minimal set of board files needed to get it to boot in 1 CPU mode. Signed-off-by: Andrey Petrov <anpetrov@fb.com> Change-Id: Ie2f944964e938d8026a6d5d8a22a8449199d08aa Reviewed-on: https://review.coreboot.org/c/coreboot/+/39714 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Maxim Polyakov <max.senia.poliak@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/intel/cedarisland_crb/Kconfig')
-rw-r--r--src/mainboard/intel/cedarisland_crb/Kconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mainboard/intel/cedarisland_crb/Kconfig b/src/mainboard/intel/cedarisland_crb/Kconfig
new file mode 100644
index 000000000000..9e9e66ee147e
--- /dev/null
+++ b/src/mainboard/intel/cedarisland_crb/Kconfig
@@ -0,0 +1,23 @@
+if BOARD_INTEL_CEDARISLAND_CRB
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select BOARD_ROMSIZE_KB_65536
+ select MAINBOARD_USES_FSP2_0
+ select SOC_INTEL_COOPERLAKE_SP
+ select SUPERIO_ASPEED_AST2400
+ select HAVE_ACPI_TABLES
+
+config MAINBOARD_DIR
+ string
+ default "intel/cedarisland_crb"
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "Cedar Island CRB"
+
+config FMDFILE
+ string
+ default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/board.fmd"
+
+endif