From: Marek Vasut Date: Wed, 19 Sep 2018 14:33:09 +0000 (+0200) Subject: ARM: rmobile: Repair TMU clock on Gen2 X-Git-Tag: v2018.11-rc2~62^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6f031302a0f8ab99d2a51cd66f3fb69782496ed7;p=oweals%2Fu-boot.git ARM: rmobile: Repair TMU clock on Gen2 The CPfi/4 is derived from XTAL clock and is not fixed. Undo the previous commit 7984ac8d1635aebd11175c96b07f937a39f0384d. Signed-off-by: Marek Vasut --- diff --git a/include/configs/rcar-gen2-common.h b/include/configs/rcar-gen2-common.h index 01583f8cc2..d606da8b0e 100644 --- a/include/configs/rcar-gen2-common.h +++ b/include/configs/rcar-gen2-common.h @@ -60,6 +60,6 @@ #define CONFIG_TMU_TIMER #define CONFIG_SYS_TIMER_COUNTS_DOWN #define CONFIG_SYS_TIMER_COUNTER (TMU_BASE + 0xc) /* TCNT0 */ -#define CONFIG_SYS_TIMER_RATE (32500000 / 4) /* CP/4 */ +#define CONFIG_SYS_TIMER_RATE (CONFIG_SYS_CLK_FREQ / 8) #endif /* __RCAR_GEN2_COMMON_H */