1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
5 * The file use ls102xa/timer.c as a reference.
11 #include <asm/arch/imx-regs.h>
12 #include <asm/arch/sys_proto.h>
13 #include <asm/mach-imx/syscounter.h>
15 DECLARE_GLOBAL_DATA_PTR;
18 * This function is intended for SHORT delays only.
19 * It will overflow at around 10 seconds @ 400MHz,
20 * or 20 seconds @ 200MHz.
22 unsigned long usec2ticks(unsigned long usec)
27 ticks = ((usec * (get_tbclk()/1000)) + 500) / 1000;
29 ticks = ((usec / 10) * (get_tbclk() / 100000));
34 static inline unsigned long long tick_to_time(unsigned long long tick)
38 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
40 tick *= CONFIG_SYS_HZ;
46 static inline unsigned long long us_to_tick(unsigned long long usec)
50 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
52 usec = usec * freq + 999999;
53 do_div(usec, 1000000);
60 struct sctr_regs *sctr = (struct sctr_regs *)SCTR_BASE_ADDR;
61 unsigned long val, freq;
63 freq = CONFIG_SC_TIMER_CLK;
64 asm volatile("mcr p15, 0, %0, c14, c0, 0" : : "r" (freq));
66 writel(freq, &sctr->cntfid0);
68 /* Enable system counter */
69 val = readl(&sctr->cntcr);
70 val &= ~(SC_CNTCR_FREQ0 | SC_CNTCR_FREQ1);
71 val |= SC_CNTCR_FREQ0 | SC_CNTCR_ENABLE | SC_CNTCR_HDBG;
72 writel(val, &sctr->cntcr);
80 unsigned long long get_ticks(void)
82 unsigned long long now;
84 asm volatile("mrrc p15, 0, %Q0, %R0, c14" : "=r" (now));
86 gd->arch.tbl = (unsigned long)(now & 0xffffffff);
87 gd->arch.tbu = (unsigned long)(now >> 32);
92 ulong get_timer_masked(void)
94 return tick_to_time(get_ticks());
97 ulong get_timer(ulong base)
99 return get_timer_masked() - base;
102 void __udelay(unsigned long usec)
104 unsigned long long tmp;
107 tmo = us_to_tick(usec);
108 tmp = get_ticks() + tmo; /* get current timestamp */
110 while (get_ticks() < tmp) /* loop till event */
115 * This function is derived from PowerPC code (timebase clock frequency).
116 * On ARM it returns the number of timer ticks per second.
118 ulong get_tbclk(void)
122 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));