diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-11-03 08:24:48 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-11-05 13:41:37 +0000 |
commit | cc5193604f1b2fcd6659888df22a1a6e06635482 (patch) | |
tree | 0d15077ffed6c99ba5711bc87afccc8faeece625 /src/cpu | |
parent | acc88f8e66c4bee9397347f57a5553bbacbc2377 (diff) |
cpu/ti/am335x: Extend monotonic timer to early stages
It is actually all completely broken, dmtimer.c is
not really implemented.
Change-Id: Ifb3f624930c9ef663fae30cd5ddcb1d3d46f06b1
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36593
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/ti/am335x/Makefile.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/ti/am335x/Makefile.inc b/src/cpu/ti/am335x/Makefile.inc index d3ef9701e8..e1a3b9c7b9 100644 --- a/src/cpu/ti/am335x/Makefile.inc +++ b/src/cpu/ti/am335x/Makefile.inc @@ -3,9 +3,12 @@ bootblock-y += bootblock_media.c bootblock-y += dmtimer.c bootblock-y += gpio.c bootblock-y += pinmux.c +bootblock-y += monotonic_timer.c romstage-y += nand.c romstage-y += cbmem.c +romstage-y += dmtimer.c +romstage-y += monotonic_timer.c ramstage-y += dmtimer.c ramstage-y += monotonic_timer.c |