blob: 772cc70ef56f881bfd2e0d4e8bc85e0d27772081 [file] [log] [blame]
Martin Rothd75800c2014-05-12 21:56:27 -06001##
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
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20if BOARD_INTEL_BAYLEYBAY_FSP
21
22config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
24 select SOC_INTEL_FSP_BAYTRAIL
25 select BOARD_ROMSIZE_KB_2048
26 select HAVE_ACPI_TABLES
27 select HAVE_OPTION_TABLE
Martin Rothd75800c2014-05-12 21:56:27 -060028 select OVERRIDE_MRC_CACHE_LOC
29 select POST_IO
30 select INCLUDE_MICROCODE_IN_BUILD if FSP_PACKAGE_DEFAULT
31 select ENABLE_BUILTIN_COM1 if FSP_PACKAGE_DEFAULT
32 select HAVE_FSP_BIN if FSP_PACKAGE_DEFAULT
33 select DEFAULT_CONSOLE_LOGLEVEL_7 if FSP_PACKAGE_DEFAULT
34
35config MAINBOARD_DIR
36 string
37 default "intel/bayleybay_fsp"
38
39config INCLUDE_ME
40 bool
41 default n
42
43config LOCK_MANAGEMENT_ENGINE
44 bool
45 default n
46
47config MAINBOARD_PART_NUMBER
48 string
49 default "Bayley Bay CRB"
50
Martin Rothd75800c2014-05-12 21:56:27 -060051config IRQ_SLOT_COUNT
52 int
53 default 18
54
55config MAX_CPUS
56 int
57 default 16
58
59config CACHE_ROM_SIZE_OVERRIDE
60 hex
61 default 0x800000
62
Martin Rothd75800c2014-05-12 21:56:27 -060063config FSP_FILE
64 string
65 default "../intel/fsp/baytrail/BAYTRAIL_FSP.fd"
66
67config MRC_CACHE_LOC_OVERRIDE
68 hex
69 default 0xfff80000
Martin Rothd866e582014-06-11 09:35:37 -060070 depends on ENABLE_FSP_FAST_BOOT
Martin Rothd75800c2014-05-12 21:56:27 -060071
72config CBFS_SIZE
73 hex
74 default 0x00200000
75
76config DRIVERS_PS2_KEYBOARD
77 bool
78 default n
79
80config CONSOLE_POST
81 bool
82 default y
83
84config ENABLE_FSP_FAST_BOOT
85 bool
86 depends on HAVE_FSP_BIN
87 default y
88
89config VIRTUAL_ROM_SIZE
90 hex
91 depends on ENABLE_FSP_FAST_BOOT
92 default 0x800000
93
94config FSP_PACKAGE_DEFAULT
95 bool "Configure defaults for the Intel FSP package"
96 default n
97
98config VGA_BIOS
99 bool
100 default y if FSP_PACKAGE_DEFAULT
101
102endif # BOARD_INTEL_BAYLEYBAY_FSP