blob: 2acc4397460b784f62eb8e9980a810711b099d68 [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 Leahy287cd752016-05-28 14:34:44 -070021 select CREATE_BOARD_CHECKLIST
Lee Leahyca65bb72016-05-30 14:02:49 -070022 select ENABLE_BUILTIN_HSUART1
Lee Leahyf7c01aa2016-02-20 17:53:54 -080023 select HAVE_ACPI_TABLES
Lee Leahy93dd5f72016-01-26 10:06:42 -080024 select SOC_INTEL_QUARK
Lee Leahy5e808cb2016-05-28 14:58:57 -070025 select USE_FSP1_1
Lee Leahy93dd5f72016-01-26 10:06:42 -080026
27config MAINBOARD_DIR
28 string
29 default intel/galileo
30
31config MAINBOARD_PART_NUMBER
32 string
33 default "Galileo"
34
35config MAINBOARD_VENDOR
36 string
37 default "Intel"
38
Lee Leahy274d20a2016-05-15 13:52:36 -070039config GALILEO_GEN2
40 bool "Board generation: GEN1 (n) or GEN2 (y)"
41 default y
42 help
43 The coreboot binary will configure only one generation of the Galileo
44 board since coreboot can not determine the board generation at
45 runtime. Select which generation of the Galileo that coreboot
46 should initialize.
47
Lee Leahy5e808cb2016-05-28 14:58:57 -070048config USE_FSP1_1
49 bool
50 default n
51 select PLATFORM_USES_FSP1_1
Lee Leahy77051e02016-07-25 07:18:13 -070052# select ADD_FSP_RAW_BIN
53
54config USE_FSP2_0
55 bool
56 default n
57 select PLATFORM_USES_FSP2_0
Lee Leahyf26fc0f2016-07-25 10:14:07 -070058 select POSTCAR_STAGE
Lee Leahy5e808cb2016-05-28 14:58:57 -070059
Lee Leahy93dd5f72016-01-26 10:06:42 -080060endif # BOARD_INTEL_QUARK