diff options
author | Aaron Durbin <adurbin@chromium.org> | 2018-01-24 17:16:30 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2018-01-25 22:36:39 +0000 |
commit | 0660d1fa40e88f01ad7b9e5d0369e0dfcb2fb08f (patch) | |
tree | 657c5bffd02fe5e55df3b3e03d73445031d2d164 /src/lib | |
parent | b94a27506ebd027214124985301b553c710292af (diff) |
lib: include timer.c for all stages for GENERIC_UDELAY
In order to fully utilize GENERIC_UDELAY in smm and postcar
the udelay() implementation needs to be included. Do that.
BUG=b:72378235,b:72170796
Change-Id: Ia20c1ed41ee439bb079e00fb7bd9c1855e31e349
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/23421
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Justin TerAvest <teravest@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index d77884c3d9..3ddf01705f 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -177,6 +177,7 @@ ramstage-y += boot_device.c smm-y += boot_device.c smm-y += fmap.c smm-y += cbfs.c memcmp.c +smm-$(CONFIG_GENERIC_UDELAY) += timer.c bootblock-y += version.c romstage-y += version.c @@ -238,6 +239,7 @@ postcar-y += prog_loaders.c postcar-y += prog_ops.c postcar-y += rmodule.c postcar-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c +postcar-$(CONFIG_GENERIC_UDELAY) += timer.c # Use program.ld for all the platforms which use C fo the bootblock. bootblock-$(CONFIG_C_ENVIRONMENT_BOOTBLOCK) += program.ld |