diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-05-26 14:22:34 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-05-27 19:56:01 +0200 |
commit | b3f5418ec16b1c0cdc913d0afd49bde94c26728e (patch) | |
tree | 8f049c2d3b89a665d6db80f8bcaeed9652c5985c /src/soc | |
parent | 07dd474d658545b6b284195e7a003c6fe8ca8c44 (diff) |
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>
Reviewed-on: https://review.coreboot.org/14977
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/apollolake/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc index b8f0c1810d..1ea21f6150 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 |