blob: 20fdbbe32c11004bc3cff7711aa94d1d395f1274 [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
Arthur Heymansbe9533a2019-10-12 14:35:25 +020018bootblock-y += bootblock.c
19
Patrick Georgi2efc8802012-11-06 11:03:53 +010020romstage-y += early_init.c
21romstage-y += early_reset.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010022romstage-y += raminit.c
23romstage-y += raminit_rcomp_calibration.c
24romstage-y += raminit_receive_enable_calibration.c
25romstage-y += raminit_read_write_training.c
26romstage-y += pcie.c
27romstage-y += thermal.c
28romstage-y += igd.c
29romstage-y += pm.c
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030030romstage-y += memmap.c
Martin Roth4a666422015-08-25 17:04:59 -060031romstage-y += iommu.c
Arthur Heymans3b0eb602019-01-31 22:47:09 +010032romstage-y += romstage.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010033
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010034ramstage-y += acpi.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010035
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030036ramstage-y += memmap.c
Stefan Reinauer721265b2012-11-27 14:47:49 -080037ramstage-y += northbridge.c
Vladimir Serbinenko6481e102014-08-10 23:48:11 +020038ramstage-y += gma.c
Patrick Georgi2efc8802012-11-06 11:03:53 +010039
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030040postcar-y += memmap.c
Arthur Heymans3a4edb62018-06-03 12:42:10 +020041
Stefan Reinauere1133b72015-04-27 14:04:38 -070042endif