blob: f13b58d9108984c5f64779379adfc74f0218d1ff [file] [log] [blame]
Stefan Reinauer00636b02012-04-04 00:08:51 +02001##
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
Paul Menzela46a7122013-02-23 18:37:27 +010017## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer00636b02012-04-04 00:08:51 +020018##
19
20config NORTHBRIDGE_INTEL_SANDYBRIDGE
21 bool
22 select CACHE_MRC_BIN
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030023 select MMCONF_SUPPORT
24 select MMCONF_SUPPORT_DEFAULT
Kyösti Mälkkid9cf38f2014-06-13 11:07:34 +030025 select DYNAMIC_CBMEM
Stefan Reinauer00636b02012-04-04 00:08:51 +020026 select CPU_INTEL_MODEL_206AX
27
28config NORTHBRIDGE_INTEL_IVYBRIDGE
29 bool
30 select CACHE_MRC_BIN
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030031 select MMCONF_SUPPORT
32 select MMCONF_SUPPORT_DEFAULT
Kyösti Mälkkid9cf38f2014-06-13 11:07:34 +030033 select DYNAMIC_CBMEM
Stefan Reinauer00636b02012-04-04 00:08:51 +020034 select CPU_INTEL_MODEL_306AX
35
Stefan Reinauer3c46ca32013-07-29 13:00:03 -070036if NORTHBRIDGE_INTEL_SANDYBRIDGE || NORTHBRIDGE_INTEL_IVYBRIDGE
Stefan Reinauer00636b02012-04-04 00:08:51 +020037
38config VGA_BIOS_ID
39 string
40 default "8086,0106"
41
42config CACHE_MRC_SIZE_KB
43 int
Stefan Reinauer00636b02012-04-04 00:08:51 +020044 default 512
45
Stefan Reinauer48214892012-06-06 13:24:32 -070046config MRC_CACHE_SIZE
47 hex
Stefan Reinauer357bb2d2012-08-09 13:44:38 -070048 depends on !CHROMEOS
Stefan Reinauer48214892012-06-06 13:24:32 -070049 default 0x10000
50
Stefan Reinauer00636b02012-04-04 00:08:51 +020051config DCACHE_RAM_BASE
52 hex
53 default 0xff7e0000
54
55config DCACHE_RAM_SIZE
56 hex
57 default 0x20000
58
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030059config BOOTBLOCK_NORTHBRIDGE_INIT
60 string
61 default "northbridge/intel/sandybridge/bootblock.c"
62
Stefan Reinauer00636b02012-04-04 00:08:51 +020063config 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
Vladimir Serbinenko5e73be22014-01-12 19:25:00 +010075config HAVE_MRC_CACHE
76 bool
77 default HAVE_MRC
78
Stefan Reinauer00636b02012-04-04 00:08:51 +020079config MRC_FILE
80 string "Intel System Agent path and filename"
81 depends on HAVE_MRC
Stefan Reinauer3c46ca32013-07-29 13:00:03 -070082 default "3rdparty/northbridge/intel/sandybridge/systemagent-r6.bin"
Stefan Reinauer00636b02012-04-04 00:08:51 +020083 help
84 The path and filename of the file to use as System Agent
85 binary.
86
Stefan Reinauera1ea8222012-08-15 16:28:48 -070087config CBFS_SIZE
88 hex "Size of CBFS filesystem in ROM"
89 default 0x100000
90 help
91 On Sandybridge and Ivybridge systems the firmware image has to
92 store a lot more than just coreboot, including:
93 - a firmware descriptor
94 - Intel Management Engine firmware
95 - MRC cache information
96 This option allows to limit the size of the CBFS portion in the
97 firmware image.
98
Stefan Reinauer00636b02012-04-04 00:08:51 +020099endif