blob: 6381ae82ba03bf31f0bd393ec7113304686892bd [file] [log] [blame]
Lee Leahy93dd5f72016-01-26 10:06:42 -08001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2015-2016 Intel Corp.
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
16if BOARD_INTEL_GALILEO
17
18config BOARD_SPECIFIC_OPTIONS
19 def_bool y
20 select BOARD_ROMSIZE_KB_8192
Lee Leahyf7c01aa2016-02-20 17:53:54 -080021 select HAVE_ACPI_TABLES
Lee Leahy93dd5f72016-01-26 10:06:42 -080022 select PLATFORM_USES_FSP1_1
23 select SOC_INTEL_QUARK
24
25config MAINBOARD_DIR
26 string
27 default intel/galileo
28
29config MAINBOARD_PART_NUMBER
30 string
31 default "Galileo"
32
33config MAINBOARD_VENDOR
34 string
35 default "Intel"
36
Lee Leahy274d20a2016-05-15 13:52:36 -070037config GALILEO_GEN2
38 bool "Board generation: GEN1 (n) or GEN2 (y)"
39 default y
40 help
41 The coreboot binary will configure only one generation of the Galileo
42 board since coreboot can not determine the board generation at
43 runtime. Select which generation of the Galileo that coreboot
44 should initialize.
45
Lee Leahy93dd5f72016-01-26 10:06:42 -080046endif # BOARD_INTEL_QUARK