blob: 73a20f2dfb2baf9c0d4d5a8c2f0e8f8d87de65f2 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001#
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#
Aaron Durbin76c37002012-10-30 09:03:43 -050015
Stefan Reinauere1133b72015-04-27 14:04:38 -070016ifeq ($(CONFIG_NORTHBRIDGE_INTEL_HASWELL),y)
17
Arthur Heymans8e646e72018-06-05 11:19:22 +020018bootblock-y += bootblock.c
19
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030020ramstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -050021ramstage-y += northbridge.c
Chris Morgan5e5e7892020-02-07 09:40:42 -060022ramstage-y += pcie.c
Aaron Durbin76c37002012-10-30 09:03:43 -050023ramstage-y += gma.c
24
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010025ramstage-y += acpi.c
Duncan Laurie0a7c49e2013-06-20 12:40:55 -070026ramstage-y += minihd.c
Aaron Durbin76c37002012-10-30 09:03:43 -050027
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030028romstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -050029romstage-y += raminit.c
Aaron Durbin76c37002012-10-30 09:03:43 -050030romstage-y += early_init.c
31romstage-y += report_platform.c
Aaron Durbin76c37002012-10-30 09:03:43 -050032
Kyösti Mälkki9265f892019-07-07 23:58:34 +030033smm-y += finalize.c
Aaron Durbin76c37002012-10-30 09:03:43 -050034
35# We don't ship that, but booting without it is bound to fail
36cbfs-files-$(CONFIG_HAVE_MRC) += mrc.bin
37mrc.bin-file := $(call strip_quotes,$(CONFIG_MRC_FILE))
38mrc.bin-position := 0xfffa0000
Martin Roth72a8e5e2015-03-24 16:02:27 -060039mrc.bin-type := mrc
Aaron Durbin76c37002012-10-30 09:03:43 -050040
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030041postcar-y += memmap.c
Arthur Heymans88af0f32018-06-03 12:37:54 +020042
Stefan Reinauere1133b72015-04-27 14:04:38 -070043endif