blob: 729b305d8631acc1a484277e8c16515dece0b7b7 [file] [log] [blame]
Werner Zehc42a6132015-02-12 12:40:15 +01001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017## Foundation, Inc.
Werner Zehc42a6132015-02-12 12:40:15 +010018##
19
20if BOARD_SIEMENS_MC_TCU3
21
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select SOC_INTEL_FSP_BAYTRAIL
25 select BOARD_ROMSIZE_KB_16384
26 select HAVE_ACPI_TABLES
27 select HAVE_OPTION_TABLE
Werner Zehc42a6132015-02-12 12:40:15 +010028 select ENABLE_BUILTIN_COM1
29 select HAVE_FSP_BIN if FSP_PACKAGE_DEFAULT
30 select ENABLE_FSP_FAST_BOOT
31 select TSC_MONOTONIC_TIMER
32 select DRIVER_INTEL_I210
33 select SOC_INTEL_FSP_BAYTRAIL_MD
Werner Zeh538c6c92015-10-01 13:50:23 +020034 select USE_BLOBS
Werner Zehc42a6132015-02-12 12:40:15 +010035
36config MAINBOARD_DIR
37 string
38 default "siemens/mc_tcu3"
39
Werner Zehc42a6132015-02-12 12:40:15 +010040config MAINBOARD_PART_NUMBER
41 string
42 default "MC_TCU3 (FSP)"
43
44
45config MAX_CPUS
46 int
47 default 16
48
49config CACHE_ROM_SIZE_OVERRIDE
50 hex
51 default 0x1000000
52
Werner Zehc42a6132015-02-12 12:40:15 +010053config CBFS_SIZE
54 hex
55 default 0x00e00000
56
57config FSP_PACKAGE_DEFAULT
58 bool "Configure defaults for the Intel FSP package"
59 default n
60
61config VGA_BIOS
62 bool
63 default y if FSP_PACKAGE_DEFAULT
64
65endif # BOARD_SIEMENS_MC_TCU3