blob: 2f23270ea77dc1c590cd685cbd133a9e9d8b4c06 [file] [log] [blame]
Martin Rothe6df0412014-07-28 14:22:32 -06001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
York Yang4a91f642014-11-25 15:54:08 -07005## Copyright (C) 2014 Intel Corporation
Martin Rothe6df0412014-07-28 14:22:32 -06006##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
Martin Rothe6df0412014-07-28 14:22:32 -060016
17if BOARD_INTEL_MINNOWMAX
18
19config BOARD_SPECIFIC_OPTIONS # dummy
20 def_bool y
21 select SOC_INTEL_FSP_BAYTRAIL
Martin Roth1df70642014-12-04 20:46:55 -070022 select BOARD_ROMSIZE_KB_8192
Martin Rothe6df0412014-07-28 14:22:32 -060023 select HAVE_ACPI_TABLES
24 select HAVE_OPTION_TABLE
Martin Rothe6df0412014-07-28 14:22:32 -060025 select TSC_MONOTONIC_TIMER
Mohan D'Costaf9f53eb2014-09-25 18:17:08 +090026 select HAVE_ACPI_RESUME
Martin Rothe6df0412014-07-28 14:22:32 -060027
28config MAINBOARD_DIR
29 string
30 default "intel/minnowmax"
31
Martin Rothe6df0412014-07-28 14:22:32 -060032config MAINBOARD_PART_NUMBER
33 string
Martin Roth9aadeb52014-12-14 14:12:11 -070034 default "Minnow Max"
Martin Rothe6df0412014-07-28 14:22:32 -060035
Martin Rothe6df0412014-07-28 14:22:32 -060036config MAX_CPUS
37 int
38 default 16
39
40config CACHE_ROM_SIZE_OVERRIDE
41 hex
42 default 0x800000
43
Martin Rothe6df0412014-07-28 14:22:32 -060044config FSP_FILE
45 string
York Yang4a91f642014-11-25 15:54:08 -070046 default "../intel/fsp/baytrail/BAYTRAIL_FSP.fd"
Martin Rothe6df0412014-07-28 14:22:32 -060047
Martin Rothe6df0412014-07-28 14:22:32 -060048config CBFS_SIZE
49 hex
Martin Roth1df70642014-12-04 20:46:55 -070050 default 0x00300000
Martin Rothe6df0412014-07-28 14:22:32 -060051
Martin Rothe6df0412014-07-28 14:22:32 -060052config ENABLE_FSP_FAST_BOOT
53 bool
54 depends on HAVE_FSP_BIN
55 default y
56
57config VIRTUAL_ROM_SIZE
58 hex
59 depends on ENABLE_FSP_FAST_BOOT
60 default 0x800000
61
Martin Rothe6df0412014-07-28 14:22:32 -060062config POST_DEVICE
63 bool
64 default n
65
66config VGA_BIOS
67 bool
York Yang4a91f642014-11-25 15:54:08 -070068 default y if FSP_PACKAGE_DEFAULT
Martin Rothe6df0412014-07-28 14:22:32 -060069
70endif # BOARD_INTEL_MINNOWMAX