blob: e15a09f6a5ee6c42479991d129a9a7c593910d9c [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001#
2# This file is part of the coreboot project.
3#
Aaron Durbin76c37002012-10-30 09:03:43 -05004#
Patrick Georgic49d7a32020-05-08 22:50:46 +02005# SPDX-License-Identifier: GPL-2.0-only
Aaron Durbin76c37002012-10-30 09:03:43 -05006
Stefan Reinauere1133b72015-04-27 14:04:38 -07007ifeq ($(CONFIG_NORTHBRIDGE_INTEL_HASWELL),y)
8
Arthur Heymans8e646e72018-06-05 11:19:22 +02009bootblock-y += bootblock.c
10
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030011ramstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -050012ramstage-y += northbridge.c
Chris Morgan5e5e7892020-02-07 09:40:42 -060013ramstage-y += pcie.c
Aaron Durbin76c37002012-10-30 09:03:43 -050014ramstage-y += gma.c
15
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010016ramstage-y += acpi.c
Duncan Laurie0a7c49e2013-06-20 12:40:55 -070017ramstage-y += minihd.c
Aaron Durbin76c37002012-10-30 09:03:43 -050018
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030019romstage-y += memmap.c
Aaron Durbin76c37002012-10-30 09:03:43 -050020romstage-y += raminit.c
Aaron Durbin76c37002012-10-30 09:03:43 -050021romstage-y += early_init.c
22romstage-y += report_platform.c
Aaron Durbin76c37002012-10-30 09:03:43 -050023
Kyösti Mälkki9265f892019-07-07 23:58:34 +030024smm-y += finalize.c
Aaron Durbin76c37002012-10-30 09:03:43 -050025
26# We don't ship that, but booting without it is bound to fail
27cbfs-files-$(CONFIG_HAVE_MRC) += mrc.bin
28mrc.bin-file := $(call strip_quotes,$(CONFIG_MRC_FILE))
29mrc.bin-position := 0xfffa0000
Martin Roth72a8e5e2015-03-24 16:02:27 -060030mrc.bin-type := mrc
Aaron Durbin76c37002012-10-30 09:03:43 -050031
Kyösti Mälkkife481eb2019-08-03 21:28:40 +030032postcar-y += memmap.c
Arthur Heymans88af0f32018-06-03 12:37:54 +020033
Stefan Reinauere1133b72015-04-27 14:04:38 -070034endif