blob: a963650a5fc58e941b59719966cf430d4ebb599d [file] [log] [blame]
Patrick Georgibe61a172010-12-18 07:48:43 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2010 coresystems GmbH
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 Georgibe61a172010-12-18 07:48:43 +000015
Stefan Reinauer13e41822015-04-27 14:02:36 -070016ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_SCH),y)
17
Patrick Georgi23f38cd2012-11-16 14:50:32 +010018ramstage-y += south.c
19ramstage-y += audio.c
20ramstage-y += lpc.c
21ramstage-y += ide.c
22ramstage-y += pcie.c
23ramstage-y += usb.c
24ramstage-y += usb_ehci.c
25ramstage-y += usb_client.c
26ramstage-y += mmc.c
27ramstage-y += smbus.c
Patrick Georgibe61a172010-12-18 07:48:43 +000028
29ramstage-y += reset.c
30
31ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c
Kyösti Mälkkiaa04e182015-06-06 08:49:50 +030032ramstage-$(CONFIG_HAVE_SMI_HANDLER) += ../../../cpu/x86/smm/smmrelocate.S
Patrick Georgibe61a172010-12-18 07:48:43 +000033smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c
34
Jonathan A. Kollaschec505ad22015-07-07 12:57:46 -050035ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
Patrick Georgibe61a172010-12-18 07:48:43 +000036
Patrick Georgia0360af2010-12-18 11:55:06 +000037# We don't ship that, but booting without it is bound to fail
Stefan Reinaueracda2fc2010-12-27 08:21:23 +000038cbfs-files-$(CONFIG_HAVE_CMC) += cmc.bin
Patrick Georgi14653852011-10-21 13:56:04 +020039cmc.bin-file := $(call strip_quotes,$(CONFIG_CMC_FILE))
Martin Roth72a8e5e2015-03-24 16:02:27 -060040cmc.bin-type := raw
Stefan Reinaueracda2fc2010-12-27 08:21:23 +000041cmc.bin-position := 0xfffd0000
Stefan Reinauer13e41822015-04-27 14:02:36 -070042
43endif