blob: df68db2473717fd11072d72dfbb4d9a3e0d0665e [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2010 Google Inc.
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##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
Stefan Reinauer13e41822015-04-27 14:02:36 -070020ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y)
21
Aaron Durbin76c37002012-10-30 09:03:43 -050022# Run an intermediate step when producing coreboot.rom
23# that adds additional components to the final firmware
24# image outside of CBFS
Duncan Laurie9238c112013-04-19 11:03:40 -070025INTERMEDIATE:=lynxpoint_add_me
Aaron Durbin76c37002012-10-30 09:03:43 -050026
27ramstage-y += pch.c
28ramstage-y += azalia.c
29ramstage-y += lpc.c
30ramstage-y += pci.c
31ramstage-y += pcie.c
32ramstage-y += sata.c
33ramstage-y += usb_ehci.c
Duncan Laurie2d9d39a2013-05-29 15:27:55 -070034ramstage-y += usb_xhci.c
Aaron Durbin76c37002012-10-30 09:03:43 -050035ramstage-y += me_9.x.c
36ramstage-y += smbus.c
Duncan Laurie0a7c49e2013-06-20 12:40:55 -070037ramstage-y += hda_verb.c
Duncan Laurieb39ba2e2013-03-22 11:21:14 -070038ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c
Aaron Durbin76c37002012-10-30 09:03:43 -050039
Vladimir Serbinenko75c83872014-09-05 01:01:31 +020040ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c
41
Duncan Laurie8584b222013-02-15 13:52:28 -080042ramstage-y += rcba.c
Aaron Durbin76c37002012-10-30 09:03:43 -050043ramstage-y += me_status.c
44ramstage-y += reset.c
45ramstage-y += watchdog.c
46ramstage-y += acpi.c
47
48ramstage-$(CONFIG_ELOG) += elog.c
Vladimir Serbinenko42c4a9d2014-02-16 17:13:19 +010049ramstage-y += ../common/spi.c
50smm-$(CONFIG_SPI_FLASH_SMM) += ../common/spi.c
Aaron Durbin76c37002012-10-30 09:03:43 -050051
Duncan Laurie55cdf552013-03-08 16:01:44 -080052ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c
Duncan Laurieaf980622013-07-18 23:02:18 -070053smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c me_9.x.c finalize.c pch.c
Duncan Laurie1f529082013-07-30 15:53:45 -070054smm-$(CONFIG_HAVE_SMI_HANDLER) += pmutil.c usb_ehci.c usb_xhci.c
Aaron Durbin76c37002012-10-30 09:03:43 -050055
Aaron Durbin239c2e82012-12-19 11:31:17 -060056romstage-y += early_usb.c early_smbus.c early_me.c me_status.c early_pch.c
Duncan Laurie8584b222013-02-15 13:52:28 -080057romstage-y += reset.c early_spi.c rcba.c
Aaron Durbin76c37002012-10-30 09:03:43 -050058
Duncan Laurie045f1532012-12-17 11:29:10 -080059ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y)
60romstage-y += lp_gpio.c
61ramstage-y += lp_gpio.c
Shawn Nematbakhshccb12fb2013-07-03 17:55:38 -070062smm-$(CONFIG_HAVE_SMI_HANDLER) += lp_gpio.c
Duncan Laurie045f1532012-12-17 11:29:10 -080063else
64romstage-y += gpio.c
65ramstage-y += gpio.c
Shawn Nematbakhshccb12fb2013-07-03 17:55:38 -070066smm-$(CONFIG_HAVE_SMI_HANDLER) += gpio.c
Duncan Laurie045f1532012-12-17 11:29:10 -080067endif
68
Paul Menzel5218e612014-06-16 09:28:36 +020069ifeq ($(CONFIG_BUILD_WITH_FAKE_IFD),y)
70IFD_BIN_PATH := $(objgenerated)/ifdfake.bin
71IFD_SECTIONS := $(addprefix -b ,$(CONFIG_IFD_BIOS_SECTION:"%"=%)) \
72 $(addprefix -m ,$(CONFIG_IFD_ME_SECTION:"%"=%)) \
73 $(addprefix -g ,$(CONFIG_IFD_GBE_SECTION:"%"=%)) \
74 $(addprefix -p ,$(CONFIG_IFD_PLATFORM_SECTION:"%"=%))
75else
76IFD_BIN_PATH := $(CONFIG_IFD_BIN_PATH)
77endif
78
79lynxpoint_add_me: $(obj)/coreboot.pre $(IFDTOOL) $(IFDFAKE)
80ifeq ($(CONFIG_BUILD_WITH_FAKE_IFD),y)
81 printf "\n** WARNING **\n"
82 printf "Coreboot will be built with a fake Intel Firmware Descriptor (IFD).\n"
83 printf "Never write a complete coreboot.rom with a fake IFD to your board's\n"
84 printf "flash ROM! Make sure that you only write valid flash regions.\n\n"
85 printf " IFDFAKE Building a fake Intel Firmware Descriptor\n"
86 $(IFDFAKE) $(IFD_SECTIONS) $(IFD_BIN_PATH)
87endif
Aaron Durbin76c37002012-10-30 09:03:43 -050088 printf " DD Adding Intel Firmware Descriptor\n"
Paul Menzel5218e612014-06-16 09:28:36 +020089 dd if=$(IFD_BIN_PATH) \
Aaron Durbin76c37002012-10-30 09:03:43 -050090 of=$(obj)/coreboot.pre conv=notrunc >/dev/null 2>&1
Paul Menzel0089c242014-06-16 14:59:44 +020091ifeq ($(CONFIG_HAVE_ME_BIN),y)
Aaron Durbin76c37002012-10-30 09:03:43 -050092 printf " IFDTOOL me.bin -> coreboot.pre\n"
93 $(objutil)/ifdtool/ifdtool \
Patrick Georgi3cc151e2013-06-13 15:07:02 +020094 -i ME:$(CONFIG_ME_BIN_PATH) \
Aaron Durbin76c37002012-10-30 09:03:43 -050095 $(obj)/coreboot.pre
96 mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
Paul Menzel0089c242014-06-16 14:59:44 +020097endif
Aaron Durbin76c37002012-10-30 09:03:43 -050098ifeq ($(CONFIG_LOCK_MANAGEMENT_ENGINE),y)
99 printf " IFDTOOL Locking Management Engine\n"
100 $(objutil)/ifdtool/ifdtool -l $(obj)/coreboot.pre
101 mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
Paul Menzel5218e612014-06-16 09:28:36 +0200102else ifneq ($(CONFIG_BUILD_WITH_FAKE_IFD),y)
Aaron Durbin76c37002012-10-30 09:03:43 -0500103 printf " IFDTOOL Unlocking Management Engine\n"
104 $(objutil)/ifdtool/ifdtool -u $(obj)/coreboot.pre
105 mv $(obj)/coreboot.pre.new $(obj)/coreboot.pre
106endif
107
108PHONY += lynxpoint_add_me
Stefan Reinauer13e41822015-04-27 14:02:36 -0700109
110endif