blob: bb68d933b6846c851eaafb1a69eb8a87352c7cbf [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2008-2009 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 Georgi0588d192009-08-12 15:00:51 +000015
Stefan Reinauer13e41822015-04-27 14:02:36 -070016ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_I82801GX),y)
17
Patrick Georgi23f38cd2012-11-16 14:50:32 +010018ramstage-y += i82801gx.c
19ramstage-y += ac97.c
20ramstage-y += azalia.c
21ramstage-y += ide.c
22ramstage-y += lpc.c
23ramstage-y += nic.c
24ramstage-y += pci.c
25ramstage-y += pcie.c
26ramstage-y += sata.c
27ramstage-y += smbus.c
28ramstage-y += usb.c
29ramstage-y += usb_ehci.c
Patrick Georgi0588d192009-08-12 15:00:51 +000030
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020031ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
32
stepan836ae292010-12-08 05:42:47 +000033ramstage-y += reset.c
34ramstage-y += watchdog.c
Patrick Georgi0588d192009-08-12 15:00:51 +000035
stepan836ae292010-12-08 05:42:47 +000036ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c
Kyösti Mälkkiaa04e182015-06-06 08:49:50 +030037ramstage-$(CONFIG_HAVE_SMI_HANDLER) += ../../../cpu/x86/smm/smmrelocate.S
stepan836ae292010-12-08 05:42:47 +000038smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c
Patrick Georgid0835952010-10-05 09:07:10 +000039
Kyösti Mälkkie28bd4a2013-09-07 11:38:56 +030040romstage-y += early_smbus.c early_lpc.c
Stefan Reinauer13e41822015-04-27 14:02:36 -070041
42endif