blob: 16a9ddb6480ae48ff1f8b3c350b4146e9b288874 [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
Arthur Heymans3b0eb602019-01-31 22:47:09 +010030romstage-y += romstage.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010031
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010032ramstage-y += acpi.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010033
Stefan Reinauer721265b2012-11-27 14:47:49 -080034ramstage-y += ram_calc.c
35ramstage-y += northbridge.c
Vladimir Serbinenko6481e102014-08-10 23:48:11 +020036ramstage-y += gma.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010037
Martin Rotheaebbd12016-11-08 16:49:52 -070038smm-$(CONFIG_HAVE_SMI_HANDLER) += ../../../cpu/x86/lapic/apic_timer.c
Stefan Reinauere1133b72015-04-27 14:04:38 -070039
Arthur Heymans3a4edb62018-06-03 12:42:10 +020040postcar-y += ram_calc.c
41
Arthur Heymansc3e9ba02018-04-10 16:12:29 +020042romstage-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
43ramstage-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
44postcar-$(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM) += stage_cache.c
45
Stefan Reinauere1133b72015-04-27 14:04:38 -070046endif