blob: c12bbf14aefe77f8555d78cc20a5cb707e8f5dbd [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001#
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2012 secunet Security Networks AG
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#
Patrick Georgi2efc8802012-11-06 11:03:53 +010015
Stefan Reinauere1133b72015-04-27 14:04:38 -070016ifeq ($(CONFIG_NORTHBRIDGE_INTEL_GM45),y)
17
Patrick Georgi2efc8802012-11-06 11:03:53 +010018romstage-y += early_init.c
19romstage-y += early_reset.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010020romstage-y += raminit.c
21romstage-y += raminit_rcomp_calibration.c
22romstage-y += raminit_receive_enable_calibration.c
23romstage-y += raminit_read_write_training.c
24romstage-y += pcie.c
25romstage-y += thermal.c
26romstage-y += igd.c
27romstage-y += pm.c
28romstage-y += ram_calc.c
Martin Roth4a666422015-08-25 17:04:59 -060029romstage-y += iommu.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010030
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010031ramstage-y += acpi.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010032
Stefan Reinauer721265b2012-11-27 14:47:49 -080033ramstage-y += ram_calc.c
34ramstage-y += northbridge.c
Vladimir Serbinenko6481e102014-08-10 23:48:11 +020035ramstage-y += gma.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010036
Martin Rotheaebbd12016-11-08 16:49:52 -070037smm-$(CONFIG_HAVE_SMI_HANDLER) += ../../../cpu/x86/lapic/apic_timer.c
Stefan Reinauere1133b72015-04-27 14:04:38 -070038
Arthur Heymans3a4edb62018-06-03 12:42:10 +020039postcar-y += ram_calc.c
40
Stefan Reinauere1133b72015-04-27 14:04:38 -070041endif