blob: c0d46c9a0c568d364af708310f18b7c86cef9817 [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
Stefan Reinauere1133b72015-04-27 14:04:38 -070016ifeq ($(CONFIG_NORTHBRIDGE_INTEL_NEHALEM),y)
17
Kyösti Mälkki191d2212014-06-15 12:06:12 +030018ramstage-y += ram_calc.c
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010019ramstage-y += northbridge.c
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020020ramstage-y += smi.c
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010021ramstage-y += gma.c
22
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010023ramstage-y += acpi.c
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010024
Kyösti Mälkki191d2212014-06-15 12:06:12 +030025romstage-y += ram_calc.c
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010026romstage-y += raminit.c
27romstage-y += early_init.c
Stefan Reinauer6cb3a592015-07-13 09:39:15 +020028romstage-y += ../../../arch/x86/walkcbfs.S
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010029
Kyösti Mälkki9265f892019-07-07 23:58:34 +030030smm-y += finalize.c
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010031
Arthur Heymans02b13fd2018-06-03 12:26:58 +020032postcar-y += ram_calc.c
33
Stefan Reinauere1133b72015-04-27 14:04:38 -070034endif