blob: 67b3defb750f9bcd028ad6ad29216e74f6c9653c [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
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20config NORTHBRIDGE_INTEL_SANDYBRIDGE
21 bool
22 select CACHE_MRC_BIN
23 select CPU_INTEL_MODEL_206AX
24
25config NORTHBRIDGE_INTEL_IVYBRIDGE
26 bool
27 select CACHE_MRC_BIN
28 select CPU_INTEL_MODEL_306AX
29
30if NORTHBRIDGE_INTEL_SANDYBRIDGE
31
32config VGA_BIOS_ID
33 string
34 default "8086,0106"
35
36config CACHE_MRC_SIZE_KB
37 int
38 default 256
39
Stefan Reinauer1244f4b2012-05-10 11:31:40 -070040# FIXME: build from rom size
41config MRC_CACHE_BASE
42 hex
43 default 0xff800000
44
45config MRC_CACHE_LOCATION
46 hex
47 default 0x1ec000
48
49config MRC_CACHE_SIZE
50 hex
51 default 0x10000
52
53config MRC_CACHE_ALIGNMENT
54 hex
55 default 0x1000
56
Stefan Reinauer00636b02012-04-04 00:08:51 +020057config DCACHE_RAM_BASE
58 hex
59 default 0xff7f0000
60
61config DCACHE_RAM_SIZE
62 hex
63 default 0x10000
64
65endif
66
67if NORTHBRIDGE_INTEL_IVYBRIDGE
68
69config VGA_BIOS_ID
70 string
71 default "8086,0166"
72
73config EXTERNAL_MRC_BLOB
74 bool
75 default n
76
77config CACHE_MRC_SIZE_KB
78 int
79 default 512
80
81config DCACHE_RAM_BASE
82 hex
83 default 0xff7e0000
84
85config DCACHE_RAM_SIZE
86 hex
87 default 0x20000
88
89endif
90
91if NORTHBRIDGE_INTEL_SANDYBRIDGE || NORTHBRIDGE_INTEL_IVYBRIDGE
92
93config DCACHE_RAM_MRC_VAR_SIZE
94 hex
95 default 0x4000
96
97config HAVE_MRC
98 bool "Add a System Agent binary"
99 help
100 Select this option to add a System Agent binary to
101 the resulting coreboot image.
102
103 Note: Without this binary coreboot will not work
104
105config MRC_FILE
106 string "Intel System Agent path and filename"
107 depends on HAVE_MRC
108 default "mrc.bin"
109 help
110 The path and filename of the file to use as System Agent
111 binary.
112
113endif