diff options
author | Aaron Durbin <adurbin@chromium.org> | 2014-03-20 14:59:31 -0500 |
---|---|---|
committer | Marc Jones <marc.jones@se-eng.com> | 2014-11-14 07:28:43 +0100 |
commit | b9597b06072fbf5c277793f9c5227f98d86e5c23 (patch) | |
tree | 48e01c643b6e439c664a5756aed9737908adc37a /src | |
parent | e7cb1bc7d5bb8afc60888cd79b0fb1834c92d5e7 (diff) | |
download | coreboot-b9597b06072fbf5c277793f9c5227f98d86e5c23.tar.xz |
tegra124: allow tegra124 devices to run vboot rmodule
The non-x86 systems need the monotonic timer interface.
Add tegra124's timer implementation so vboot can link.
BUG=chrome-os-partner:27094
BRANCH=None
TEST=Built nyan with vboot verfication.
Original-Change-Id: I75b99b6e07eeab0324495f97472f14a36883161e
Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/190925
(cherry picked from commit 1e632e861f0e6d10cea0010561e410c1d6c2f317)
Signed-off-by: Marc Jones <marc.jones@se-eng.com>
Change-Id: I9ef177f7c7bb90ceacfe25162bb97047a7c8599d
Reviewed-on: http://review.coreboot.org/7463
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/nvidia/tegra124/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra124/Makefile.inc b/src/soc/nvidia/tegra124/Makefile.inc index 8d5fb26eb2..fe66d43dbe 100644 --- a/src/soc/nvidia/tegra124/Makefile.inc +++ b/src/soc/nvidia/tegra124/Makefile.inc @@ -55,6 +55,9 @@ ramstage-y += ../tegra/usb.c ramstage-y += timer.c ramstage-$(CONFIG_CONSOLE_SERIAL) += uart.c +rmodules-y += monotonic_timer.c +VBOOT_STUB_DEPS += $(obj)/soc/nvidia/tegra124/monotonic_timer.rmodules.o + CPPFLAGS_common += -Isrc/soc/nvidia/tegra124/include/ # We want to grab the bootblock right before it goes into the image and wrap |