blob: 7e27cfd11824c00b51d9e797d9a13f8ab72d648a [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2010 Google Inc.
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
20config NORTHBRIDGE_INTEL_HASWELL
21 bool
22 select CACHE_MRC_BIN
23 select CPU_INTEL_HASWELL
24 select REQUIRES_BLOB
25
26if NORTHBRIDGE_INTEL_HASWELL
27
28config VGA_BIOS_ID
29 string
30 default "8086,0166"
31
32config EXTERNAL_MRC_BLOB
33 bool
34 default n
35
36config CACHE_MRC_SIZE_KB
37 int
38 default 512
39
40# FIXME: build from rom size
41config MRC_CACHE_BASE
42 hex
43 default 0xff800000
44
45config MRC_CACHE_LOCATION
46 hex
47 depends on !CHROMEOS
48 default 0x370000
49
50config MRC_CACHE_SIZE
51 hex
52 depends on !CHROMEOS
53 default 0x10000
54
55config DCACHE_RAM_BASE
56 hex
57 default 0xff7e0000
58
59config DCACHE_RAM_SIZE
60 hex
61 default 0x20000
62
63config DCACHE_RAM_MRC_VAR_SIZE
64 hex
65 default 0x4000
66
67config HAVE_MRC
68 bool "Add a System Agent binary"
69 help
70 Select this option to add a System Agent binary to
71 the resulting coreboot image.
72
73 Note: Without this binary coreboot will not work
74
75config MRC_FILE
76 string "Intel System Agent path and filename"
77 depends on HAVE_MRC
78 default "mrc.bin"
79 help
80 The path and filename of the file to use as System Agent
81 binary.
82
83config CBFS_SIZE
84 hex "Size of CBFS filesystem in ROM"
85 default 0x100000
86 help
87 On Haswell systems the firmware image has to store a lot more
88 than just coreboot, including:
89 - a firmware descriptor
90 - Intel Management Engine firmware
91 - MRC cache information
92 This option allows to limit the size of the CBFS portion in the
93 firmware image.
94
95endif