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.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with this program; if not, write to the Free Software
|
|
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
##
|
|
|
|
|
|
|
|
# Run an intermediate step when producing coreboot.rom
|
|
|
|
# that adds additional components to the final firmware
|
|
|
|
# image outside of CBFS
|
|
|
|
# FIXME, uncomment as soon as we have ME firmware in the blobs repo
|
|
|
|
# INTERMEDIATE:=lynxpoint_add_me
|
|
|
|
|
|
|
|
ramstage-y += pch.c
|
|
|
|
ramstage-y += azalia.c
|
|
|
|
ramstage-y += lpc.c
|
|
|
|
ramstage-y += pci.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
|
|
|
|
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 += reset.c
|
|
|
|
ramstage-y += watchdog.c
|
|
|
|
ramstage-y += acpi.c
|
|
|
|
|
|
|
|
ramstage-$(CONFIG_ELOG) += elog.c
|
2014-02-16 17:13:19 +01:00
|
|
|
ramstage-y += ../common/spi.c
|
|
|
|
smm-$(CONFIG_SPI_FLASH_SMM) += ../common/spi.c
|
2012-10-30 15:03:43 +01:00
|
|
|
|
2013-03-09 01:01:44 +01:00
|
|
|
ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c
|
2013-07-19 08:02:18 +02:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c me_9.x.c finalize.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
|
2013-02-15 22:52:28 +01:00
|
|
|
romstage-y += reset.c early_spi.c rcba.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
|
|
|
else
|
|
|
|
romstage-y += gpio.c
|
|
|
|
ramstage-y += gpio.c
|
2013-07-04 02:55:38 +02:00
|
|
|
smm-$(CONFIG_HAVE_SMI_HANDLER) += gpio.c
|
2012-12-17 20:29:10 +01:00
|
|
|
endif
|
|
|
|
|
2012-10-30 15:03:43 +01:00
|
|
|
lynxpoint_add_me: $(obj)/coreboot.pre $(IFDTOOL)
|
|
|
|
printf " DD Adding Intel Firmware Descriptor\n"
|
2013-06-13 15:07:02 +02:00
|
|
|
dd if=$(CONFIG_IFD_BIN_PATH) \
|
2012-10-30 15:03:43 +01:00
|
|
|
of=$(obj)/coreboot.pre conv=notrunc >/dev/null 2>&1
|
|
|
|
printf " IFDTOOL me.bin -> coreboot.pre\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool \
|
2013-06-13 15:07:02 +02:00
|
|
|
-i ME:$(CONFIG_ME_BIN_PATH) \
|
2012-10-30 15:03:43 +01:00
|
|
|
$(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
ifeq ($(CONFIG_LOCK_MANAGEMENT_ENGINE),y)
|
|
|
|
printf " IFDTOOL Locking Management Engine\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool -l $(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
else
|
|
|
|
printf " IFDTOOL Unlocking Management Engine\n"
|
|
|
|
$(objutil)/ifdtool/ifdtool -u $(obj)/coreboot.pre
|
|
|
|
mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
|
|
|
|
endif
|
|
|
|
|
|
|
|
PHONY += lynxpoint_add_me
|