2 * Copyright (C) Marvell International Ltd. and its affiliates
3 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/arch/soc.h>
12 #define UBOOT_CNTR 0 /* counter to use for U-Boot timer */
15 * ARM Timers Registers Map
17 #define CNTMR_CTRL_REG &tmr_regs->ctrl
18 #define CNTMR_RELOAD_REG(tmrnum) &tmr_regs->tmr[tmrnum].reload
19 #define CNTMR_VAL_REG(tmrnum) &tmr_regs->tmr[tmrnum].val
22 * ARM Timers Control Register
23 * CPU_TIMERS_CTRL_REG (CTCR)
25 #define CTCR_ARM_TIMER_EN_OFFS(cntr) (cntr * 2)
26 #define CTCR_ARM_TIMER_EN(cntr) (1 << CTCR_ARM_TIMER_EN_OFFS(cntr))
28 #define CTCR_ARM_TIMER_AUTO_OFFS(cntr) ((cntr * 2) + 1)
29 #define CTCR_ARM_TIMER_AUTO_EN(cntr) (1 << CTCR_ARM_TIMER_AUTO_OFFS(cntr))
31 /* Only Armada XP have the 25MHz enable bit (Kirkwood doesn't) */
32 #if defined(CONFIG_ARMADA_XP)
33 #define CTCR_ARM_TIMER_25MHZ_OFFS(cntr) (cntr + 11)
34 #define CTCR_ARM_TIMER_25MHZ(cntr) (1 << CTCR_ARM_TIMER_25MHZ_OFFS(cntr))
36 #define CTCR_ARM_TIMER_25MHZ(cntr) 0
39 #define TIMER_LOAD_VAL 0xffffffff
41 #define timestamp gd->arch.tbl
42 #define lastdec gd->arch.lastinc
44 static int init_done __attribute__((section(".data"))) = 0;
46 /* Timer reload and current value registers */
48 u32 reload; /* Timer reload reg */
49 u32 val; /* Timer value reg */
53 struct kwtmr_registers {
54 u32 ctrl; /* Timer control reg */
56 struct kwtmr_val tmr[4];
61 DECLARE_GLOBAL_DATA_PTR;
63 static struct kwtmr_registers *tmr_regs =
64 (struct kwtmr_registers *)MVEBU_TIMER_BASE;
66 static inline ulong read_timer(void)
68 return readl(CNTMR_VAL_REG(UBOOT_CNTR)) / (CONFIG_SYS_TCLK / 1000);
71 ulong get_timer_masked(void)
73 ulong now = read_timer();
77 timestamp += lastdec - now;
79 /* we have an overflow ... */
80 timestamp += lastdec +
81 (TIMER_LOAD_VAL / (CONFIG_SYS_TCLK / 1000)) - now;
88 ulong get_timer(ulong base)
90 return get_timer_masked() - base;
93 void __udelay(unsigned long usec)
98 current = readl(CNTMR_VAL_REG(UBOOT_CNTR));
99 delayticks = (usec * (CONFIG_SYS_TCLK / 1000000));
101 if (current < delayticks) {
102 delayticks -= current;
103 while (readl(CNTMR_VAL_REG(UBOOT_CNTR)) < current) ;
104 while ((TIMER_LOAD_VAL - delayticks) <
105 readl(CNTMR_VAL_REG(UBOOT_CNTR))) ;
107 while (readl(CNTMR_VAL_REG(UBOOT_CNTR)) >
108 (current - delayticks)) ;
117 /* Only init the timer once */
122 /* load value into timer */
123 writel(TIMER_LOAD_VAL, CNTMR_RELOAD_REG(UBOOT_CNTR));
124 writel(TIMER_LOAD_VAL, CNTMR_VAL_REG(UBOOT_CNTR));
126 /* enable timer in auto reload mode */
127 clrsetbits_le32(CNTMR_CTRL_REG, CTCR_ARM_TIMER_25MHZ(UBOOT_CNTR),
128 CTCR_ARM_TIMER_EN(UBOOT_CNTR) |
129 CTCR_ARM_TIMER_AUTO_EN(UBOOT_CNTR));
131 /* init the timestamp and lastdec value */
132 lastdec = read_timer();
139 * This function is derived from PowerPC code (read timebase as long long).
140 * On ARM it just returns the timer value.
142 unsigned long long get_ticks(void)
148 * This function is derived from PowerPC code (timebase clock frequency).
149 * On ARM it returns the number of timer ticks per second.
151 ulong get_tbclk (void)
153 return (ulong)CONFIG_SYS_HZ;