blob: 4dada50aaf2d886a04dac8bdee02967ed51d662c [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
Alexander Couzens92fc0722016-03-09 14:36:46 +010023 select NORTHBRIDGE_INTEL_COMMON_MRC_CACHE
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010024
25if NORTHBRIDGE_INTEL_NEHALEM
26
Martin Roth59ff3402016-02-09 09:06:46 -070027config CBFS_SIZE
28 hex
29 default 0x100000
30
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010031config 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
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010051endif