diff options
| author | Vlad Zakharov <[email protected]> | 2017-03-21 14:49:47 +0300 |
|---|---|---|
| committer | Alexey Brodkin <[email protected]> | 2017-03-24 14:20:55 +0300 |
| commit | ad9b5f77dffaa38ea830af94cd5de3450318f97c (patch) | |
| tree | 3bb41583e0f1dada28c659aafabd7cc240c88cba /drivers/timer/Makefile | |
| parent | d0ffda8ed208ff2957cd09ccc37e2d6dff81523e (diff) | |
drivers: timer: Introduce ARC timer driver
This commit introduces timer driver for ARC.
ARC timers are configured via ARC AUX registers so we use special
functions to access timer control registers.
This driver allows utilization of either timer0 or timer1
depending on which one is available in real hardware. Essentially
only existing timers should be mentioned in board's Device Tree
description.
Signed-off-by: Vlad Zakharov <[email protected]>
Reviewed-by: Simon Glass <[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 ae94be86c06..bfe65fcb483 100644 --- a/drivers/timer/Makefile +++ b/drivers/timer/Makefile @@ -11,3 +11,4 @@ obj-$(CONFIG_X86_TSC_TIMER) += tsc_timer.o obj-$(CONFIG_OMAP_TIMER) += omap-timer.o obj-$(CONFIG_AST_TIMER) += ast_timer.o obj-$(CONFIG_STI_TIMER) += sti-timer.o +obj-$(CONFIG_ARC_TIMER) += arc_timer.o |
