blob: 1da2ef9a4a679e74b59deff63cc9387ff679447a [file] [log] [blame]
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +01001##
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_NEHALEM
21 bool
22 select CPU_INTEL_MODEL_2065X
23 select MMCONF_SUPPORT
24 select MMCONF_SUPPORT_DEFAULT
Kyösti Mälkki502e1dc2014-06-13 11:07:34 +030025 select DYNAMIC_CBMEM
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010026 select VGA
Vladimir Serbinenko13157302014-02-19 22:18:08 +010027 select INTEL_EDID
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010028
29if NORTHBRIDGE_INTEL_NEHALEM
30
31config VGA_BIOS_ID
32 string
33 default "8086,0046"
34
35config DCACHE_RAM_BASE
36 hex
37 default 0xff7f0000
38
39config DCACHE_RAM_SIZE
40 hex
41 default 0x10000
42
43config BOOTBLOCK_NORTHBRIDGE_INIT
44 string
45 default "northbridge/intel/nehalem/bootblock.c"
46
47config TRAINING_CACHE_SIZE
48 hex
49 default 0x10000
50
51config CBFS_SIZE
52 hex "Size of CBFS filesystem in ROM"
53 default 0x100000
54 help
55 On Nehalem systems the firmware image has to
56 store a lot more than just coreboot, including:
57 - a firmware descriptor
58 - Intel Management Engine firmware
59 This option allows to limit the size of the CBFS portion in the
60 firmware image.
61
62endif