Aaron Durbin (adurbin@chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14977
-gerrit
commit 49ddda81915fc702d2f1fe65987f231f0f59bbe8 Author: Aaron Durbin adurbin@chromium.org Date: Thu May 26 14:22:34 2016 -0500
soc/intel/apollolake: provide SMM dependency requirements
Depending on which options are selected there needs to be certain functions supplied. However, the spi, mmap_boot, and tsc_freq modules were not included in the SMM builds. Fix the omission.
Change-Id: I25ab42886cfd46770ce0f4beee65f2f4d15649f3 Signed-off-by: Aaron Durbin adurbin@chromium.org --- src/soc/intel/apollolake/Makefile.inc | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc index b8f0c18..1ea21f6 100644 --- a/src/soc/intel/apollolake/Makefile.inc +++ b/src/soc/intel/apollolake/Makefile.inc @@ -29,8 +29,11 @@ romstage-y += mmap_boot.c romstage-y += tsc_freq.c romstage-y += pmutil.c
+smm-y += mmap_boot.c smm-y += pmutil.c smm-y += smihandler.c +smm-y += spi.c +smm-y += tsc_freq.c
ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi.c ramstage-y += cpu.c