blob: f0c4526f6a13c7d2d0f7a0740e9f4ce0b052e366 [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
Martin Rothe6df0412014-07-28 14:22:32 -060026
27config MAINBOARD_DIR
28 string
29 default "intel/minnowmax"
30
Martin Rothe6df0412014-07-28 14:22:32 -060031config MAINBOARD_PART_NUMBER
32 string
Martin Roth9aadeb52014-12-14 14:12:11 -070033 default "Minnow Max"
Martin Rothe6df0412014-07-28 14:22:32 -060034
Martin Rothe6df0412014-07-28 14:22:32 -060035config MAX_CPUS
36 int
37 default 16
38
39config CACHE_ROM_SIZE_OVERRIDE
40 hex
41 default 0x800000
42
Martin Rothe6df0412014-07-28 14:22:32 -060043config FSP_FILE
44 string
York Yang4a91f642014-11-25 15:54:08 -070045 default "../intel/fsp/baytrail/BAYTRAIL_FSP.fd"
Martin Rothe6df0412014-07-28 14:22:32 -060046
Martin Rothe6df0412014-07-28 14:22:32 -060047config CBFS_SIZE
48 hex
Martin Roth1df70642014-12-04 20:46:55 -070049 default 0x00300000
Martin Rothe6df0412014-07-28 14:22:32 -060050
Martin Rothe6df0412014-07-28 14:22:32 -060051config ENABLE_FSP_FAST_BOOT
52 bool
53 depends on HAVE_FSP_BIN
54 default y
55
56config VIRTUAL_ROM_SIZE
57 hex
58 depends on ENABLE_FSP_FAST_BOOT
59 default 0x800000
60
Martin Rothe6df0412014-07-28 14:22:32 -060061config POST_DEVICE
62 bool
63 default n
64
65config VGA_BIOS
66 bool
York Yang4a91f642014-11-25 15:54:08 -070067 default y if FSP_PACKAGE_DEFAULT
Martin Rothe6df0412014-07-28 14:22:32 -060068
69endif # BOARD_INTEL_MINNOWMAX