blob: 9eb6e75eacf5cc01e7852a339a8ffd6ca34bef12 [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##
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010015
16config NORTHBRIDGE_INTEL_NEHALEM
17 bool
18 select CPU_INTEL_MODEL_2065X
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010019 select VGA
Vladimir Serbinenko13157302014-02-19 22:18:08 +010020 select INTEL_EDID
Edward O'Callaghanba924282014-06-27 12:13:30 +100021 select TSC_MONOTONIC_TIMER
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +010022 select INTEL_GMA_ACPI
Arthur Heymansdc71e252018-01-29 10:14:48 +010023 select CACHE_MRC_SETTINGS
Arthur Heymans02b13fd2018-06-03 12:26:58 +020024 select POSTCAR_STAGE
25 select POSTCAR_CONSOLE
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010026
27if NORTHBRIDGE_INTEL_NEHALEM
28
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020029config MMCONF_BUS_NUMBER
30 int
31 default 256
32
Martin Roth59ff3402016-02-09 09:06:46 -070033config CBFS_SIZE
34 hex
35 default 0x100000
36
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010037config VGA_BIOS_ID
38 string
39 default "8086,0046"
40
41config DCACHE_RAM_BASE
42 hex
Kyösti Mälkkic86c6b32016-12-09 17:43:27 +020043 default 0xfefc0000
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010044
45config DCACHE_RAM_SIZE
46 hex
47 default 0x10000
48
49config BOOTBLOCK_NORTHBRIDGE_INIT
50 string
51 default "northbridge/intel/nehalem/bootblock.c"
52
Arthur Heymansb29e0b72017-01-22 21:24:40 +010053config MRC_CACHE_SIZE
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010054 hex
55 default 0x10000
56
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010057endif