diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2018-08-24 21:52:53 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-09-15 03:19:07 +0200 |
commit | 0e286c529f395947dbb96da93081883aca40a57f (patch) | |
tree | e638fc09414f8a8124769966adc064a119e7ed2a /include/configs/rcar-gen2-common.h | |
parent | f02c1f695e13ee0ce01f111952ceaac094700de1 (diff) |
sh: tmu: Zap get_tbclk and timer_read_counter
Replace those two functions with generic ones by defining the
timer macros in include/config/*.h .
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Diffstat (limited to 'include/configs/rcar-gen2-common.h')
-rw-r--r-- | include/configs/rcar-gen2-common.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/configs/rcar-gen2-common.h b/include/configs/rcar-gen2-common.h index 2a5cd6b832..d606da8b0e 100644 --- a/include/configs/rcar-gen2-common.h +++ b/include/configs/rcar-gen2-common.h @@ -22,7 +22,6 @@ #define CONFIG_ARCH_CPU_INIT -#define CONFIG_TMU_TIMER #ifndef CONFIG_PINCTRL_PFC #define CONFIG_SH_GPIO_PFC #endif @@ -57,4 +56,10 @@ #undef CONFIG_SPI_FLASH_MTD #endif +/* Timer */ +#define CONFIG_TMU_TIMER +#define CONFIG_SYS_TIMER_COUNTS_DOWN +#define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ +#define CONFIG_SYS_TIMER_RATE (CONFIG_SYS_CLK_FREQ / 8) + #endif /* __RCAR_GEN2_COMMON_H */ |