aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_bdx1/Kconfig
diff options
context:
space:
mode:
authorWerner Zeh <werner.zeh@siemens.com>2016-04-20 10:08:17 +0200
committerWerner Zeh <werner.zeh@siemens.com>2016-04-29 06:29:54 +0200
commitfa6f861b574f27d5eb8df5e67dd8e2548779ecfc (patch)
tree63d77267fe4f3144a55cceb07ff7aaf1fca102a0 /src/mainboard/siemens/mc_bdx1/Kconfig
parent09e3bfbd8b886f9c4803271bcd87db15fdb89ab6 (diff)
siemens/mc_bdx1: Add new mainboard.
Add new mainboard for MC BDX1 board which is based on Intel Camelback Mountain. This mainboard is an industry type board and has several Ethernet interfaces among with two USB3.0 connectors. It uses 24V DC power supply and has its own form factor which does not match any standard. This commit adds the new mainboard and prepares the Kconfig environment so that this board can be selected and generated. Although the generated image can boot into Linux and DOS, not all functions are implemented yet. Forthcoming commits will add more functionality. Change-Id: I29011cfd3b0d13bcf163223f657e02f69978e39a Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/14516 Tested-by: build bot (Jenkins) Reviewed-by: York Yang <york.yang@intel.com>
Diffstat (limited to 'src/mainboard/siemens/mc_bdx1/Kconfig')
-rw-r--r--src/mainboard/siemens/mc_bdx1/Kconfig52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/mainboard/siemens/mc_bdx1/Kconfig b/src/mainboard/siemens/mc_bdx1/Kconfig
new file mode 100644
index 0000000000..e33b14ab30
--- /dev/null
+++ b/src/mainboard/siemens/mc_bdx1/Kconfig
@@ -0,0 +1,52 @@
+if BOARD_SIEMENS_MC_BDX1
+
+config BOARD_SPECIFIC_OPTIONS
+ def_bool y
+ select SOC_INTEL_FSP_BROADWELL_DE
+ select BOARD_ROMSIZE_KB_16384
+ select HAVE_ACPI_TABLES
+ select HAVE_OPTION_TABLE
+ select TSC_MONOTONIC_TIMER
+ select HAVE_FSP_BIN if FSP_PACKAGE_DEFAULT
+ select CBFS_AUTOGEN_ATTRIBUTES
+
+config MAINBOARD_DIR
+ string
+ default "siemens/mc_bdx1"
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "MC BDX1"
+
+config IRQ_SLOT_COUNT
+ int
+ default 18
+
+config CACHE_ROM_SIZE_OVERRIDE
+ hex
+ default 0x1000000
+
+config CBFS_SIZE
+ hex
+ default 0x00D00000
+
+config VIRTUAL_ROM_SIZE
+ hex
+ default 0x1000000
+
+config CONSOLE_POST
+ bool
+ default y
+
+config INTEGRATED_UART
+ bool
+ default n
+
+config DRIVERS_UART_8250IO
+ def_bool y
+
+config FSP_PACKAGE_DEFAULT
+ bool "Configure defaults for the Intel FSP package"
+ default n
+
+endif # BOARD_SIEMENS_MC_BDX1