diff options
| author | Stefan Herbrechtsmeier <[email protected]> | 2022-08-05 08:16:28 +0200 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2022-09-12 12:03:17 +0200 |
| commit | b7e0750d8872af4f294ec46533fe5243514dcb59 (patch) | |
| tree | 98e6eb4aa83981a002db7e83b2181e47d86ac396 /drivers/timer/Makefile | |
| parent | 98b3a998b31a83d8167f888b11ddd5cce8194f35 (diff) | |
zynq: Convert arm twd timer to DM driver
Move arm twd timer driver from zynq to generic location.
DM timer drivers are designed differently to original driver. Timer is
counting up and not down.
Information about clock rates are find out in timer_pre_probe() that's
why there is no need to get any additional information from DT in the
driver itself (only register offset).
Signed-off-by: Stefan Herbrechtsmeier <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
Diffstat (limited to 'drivers/timer/Makefile')
| -rw-r--r-- | drivers/timer/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/timer/Makefile b/drivers/timer/Makefile index 560e2d27e14..7bfb7749e97 100644 --- a/drivers/timer/Makefile +++ b/drivers/timer/Makefile @@ -6,6 +6,7 @@ obj-y += timer-uclass.o obj-$(CONFIG_ALTERA_TIMER) += altera_timer.o obj-$(CONFIG_ANDES_PLMT_TIMER) += andes_plmt_timer.o obj-$(CONFIG_ARC_TIMER) += arc_timer.o +obj-$(CONFIG_ARM_TWD_TIMER) += arm_twd_timer.o obj-$(CONFIG_AST_TIMER) += ast_timer.o obj-$(CONFIG_ATCPIT100_TIMER) += atcpit100_timer.o obj-$(CONFIG_$(SPL_)ATMEL_PIT_TIMER) += atmel_pit_timer.o |
