aboutsummaryrefslogtreecommitdiff
path: root/src/soc/ti/am335x/Makefile.inc
diff options
context:
space:
mode:
authorSam Lewis <sam.vr.lewis@gmail.com>2020-08-04 19:47:50 +1000
committerPatrick Georgi <pgeorgi@google.com>2020-11-22 22:32:46 +0000
commitfde084bc490daf99da85292ef87d6dcf3446c212 (patch)
treef005134a3dadedc4fa91ff0f9c07fdd69412fba8 /src/soc/ti/am335x/Makefile.inc
parentb5353965e1b7eff860faaa3312728a935311a8c6 (diff)
soc/ti/am335x: Fix timer implementation
Implements the monotonic timer using the am335x dmtimer peripheral. Change-Id: I4736b6d3b6e26370be9e8f369fc02285ad519223 Signed-off-by: Sam Lewis <sam.vr.lewis@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44383 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/ti/am335x/Makefile.inc')
-rw-r--r--src/soc/ti/am335x/Makefile.inc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/soc/ti/am335x/Makefile.inc b/src/soc/ti/am335x/Makefile.inc
index e744c72526..60e00fbbcc 100644
--- a/src/soc/ti/am335x/Makefile.inc
+++ b/src/soc/ti/am335x/Makefile.inc
@@ -1,18 +1,15 @@
ifeq ($(CONFIG_SOC_TI_AM335X),y)
bootblock-y += bootblock.c
bootblock-y += bootblock_media.c
-bootblock-y += dmtimer.c
+bootblock-y += timer.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
+romstage-y += timer.c
-ramstage-y += dmtimer.c
-ramstage-y += monotonic_timer.c
+ramstage-y += timer.c
ramstage-y += nand.c
ramstage-y += soc.c