blob: b2fd5307bfff31f059472d38298d2cbf6ffeb8f6 [file] [log] [blame]
Patrick Georgic49d7a32020-05-08 22:50:46 +02001# SPDX-License-Identifier: GPL-2.0-only
Aaron Durbin76c37002012-10-30 09:03:43 -05002
Stefan Reinauere1133b72015-04-27 14:04:38 -07003ifeq ($(CONFIG_NORTHBRIDGE_INTEL_HASWELL),y)
4
Arthur Heymans8e646e72018-06-05 11:19:22 +02005bootblock-y += bootblock.c
6
Kyösti Mälkkife481eb2019-08-03 21:28:40 +03007ramstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -05008ramstage-y += northbridge.c
Chris Morgan5e5e7892020-02-07 09:40:42 -06009ramstage-y += pcie.c
Aaron Durbin76c37002012-10-30 09:03:43 -050010ramstage-y += gma.c
11
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010012ramstage-y += acpi.c
Duncan Laurie0a7c49e2013-06-20 12:40:55 -070013ramstage-y += minihd.c
Aaron Durbin76c37002012-10-30 09:03:43 -050014
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030015romstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -050016romstage-y += raminit.c
Angel Pons2e25ac62020-07-03 12:06:04 +020017romstage-y += romstage.c
Aaron Durbin76c37002012-10-30 09:03:43 -050018romstage-y += early_init.c
19romstage-y += report_platform.c
Aaron Durbin76c37002012-10-30 09:03:43 -050020
Kyösti Mälkki9265f892019-07-07 23:58:34 +030021smm-y += finalize.c
Aaron Durbin76c37002012-10-30 09:03:43 -050022
23# We don't ship that, but booting without it is bound to fail
24cbfs-files-$(CONFIG_HAVE_MRC) += mrc.bin
25mrc.bin-file := $(call strip_quotes,$(CONFIG_MRC_FILE))
26mrc.bin-position := 0xfffa0000
Martin Roth72a8e5e2015-03-24 16:02:27 -060027mrc.bin-type := mrc
Aaron Durbin76c37002012-10-30 09:03:43 -050028
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030029postcar-y += memmap.c
Arthur Heymans88af0f32018-06-03 12:37:54 +020030
Stefan Reinauere1133b72015-04-27 14:04:38 -070031endif