2012-10-30 15:03:43 +01:00
|
|
|
##
|
|
|
|
## This file is part of the coreboot project.
|
|
|
|
##
|
|
|
|
## Copyright (C) 2010 Google Inc.
|
|
|
|
##
|
|
|
|
## This program is free software; you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published by
|
|
|
|
## the Free Software Foundation; version 2 of the License.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
|
2015-04-27 23:02:36 +02:00
|
|
|
ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y)
|
|
|
|
|
2018-06-05 11:19:22 +02:00
|
|
|
bootblock-y += bootblock.c
|
|
|
|
|
2012-10-30 15:03:43 +01:00
|
|
|
ramstage-y += pch.c
|
|
|
|
ramstage-y += azalia.c
|
|
|
|
ramstage-y += lpc.c
|
|
|
|
ramstage-y += pcie.c
|
|
|
|
ramstage-y += sata.c
|
|
|
|
ramstage-y += usb_ehci.c
|
2013-05-30 00:27:55 +02:00
|
|
|
ramstage-y += usb_xhci.c
|
2012-10-30 15:03:43 +01:00
|
|
|
ramstage-y += me_9.x.c
|
|
|
|
ramstage-y += smbus.c
|
2013-06-20 21:40:55 +02:00
|
|
|
ramstage-y += hda_verb.c
|
2013-03-22 19:21:14 +01:00
|
|
|
ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2016-11-16 22:10:50 +01:00
|
|
|
ifneq ($(CONFIG_VARIANT_DIR),)
|
|
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/hda_verb.c
|
|
|
|
else
|
2014-09-05 01:01:31 +02:00
|
|
|
ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
|
2016-11-16 22:10:50 +01:00
|
|
|
endif
|
2014-09-05 01:01:31 +02:00
|
|
|
|
2013-02-15 22:52:28 +01:00
|
|
|
ramstage-y += rcba.c
|
2012-10-30 15:03:43 +01:00
|
|
|
ramstage-y += me_status.c
|
|
|
|
ramstage-y += watchdog.c
|
|
|
|
ramstage-y += acpi.c
|
|
|
|
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
|
|
|
|
2013-03-09 01:01:44 +01:00
|
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c
|
2018-11-30 10:53:50 +01:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c me_9.x.c pch.c
|
2013-07-31 00:53:45 +02:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.c usb_ehci.c usb_xhci.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2012-12-19 18:31:17 +01:00
|
|
|
romstage-y += early_usb.c early_smbus.c early_me.c me_status.c early_pch.c
|
2018-10-01 19:17:11 +02:00
|
|
|
romstage-y += early_spi.c rcba.c pmutil.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2012-12-17 20:29:10 +01:00
|
|
|
ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
|
|
|
|
romstage-y += lp_gpio.c
|
|
|
|
ramstage-y += lp_gpio.c
|
2013-07-04 02:55:38 +02:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += lp_gpio.c
|
2012-12-17 20:29:10 +01:00
|
|
|
endif
|
|
|
|
|
2015-04-27 23:02:36 +02:00
|
|
|
endif
|