1 // SPDX-License-Identifier: GPL-2.0+
4 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
23 #include <asm/arch/imx-regs.h>
25 /* General purpose timers bitfields */
26 #define GPTCR_SWR (1 << 15) /* Software reset */
27 #define GPTCR_FRR (1 << 8) /* Freerun / restart */
28 #define GPTCR_CLKSOURCE_32 (4 << 1) /* Clock source */
29 #define GPTCR_TEN 1 /* Timer enable */
31 DECLARE_GLOBAL_DATA_PTR;
33 #define timestamp (gd->arch.tbl)
34 #define lastinc (gd->arch.lastinc)
37 * "time" is measured in 1 / CONFIG_SYS_HZ seconds,
38 * "tick" is internal timer period
40 #ifdef CONFIG_MX27_TIMER_HIGH_PRECISION
41 /* ~0.4% error - measured with stop-watch on 100s boot-delay */
42 static inline unsigned long long tick_to_time(unsigned long long tick)
44 tick *= CONFIG_SYS_HZ;
45 do_div(tick, CONFIG_MX27_CLK32);
49 static inline unsigned long long time_to_tick(unsigned long long time)
51 time *= CONFIG_MX27_CLK32;
52 do_div(time, CONFIG_SYS_HZ);
56 static inline unsigned long long us_to_tick(unsigned long long us)
58 us = us * CONFIG_MX27_CLK32 + 999999;
64 #define TICK_PER_TIME ((CONFIG_MX27_CLK32 + CONFIG_SYS_HZ / 2) / \
66 #define US_PER_TICK (1000000 / CONFIG_MX27_CLK32)
68 static inline unsigned long long tick_to_time(unsigned long long tick)
70 do_div(tick, TICK_PER_TIME);
74 static inline unsigned long long time_to_tick(unsigned long long time)
76 return time * TICK_PER_TIME;
79 static inline unsigned long long us_to_tick(unsigned long long us)
81 us += US_PER_TICK - 1;
82 do_div(us, US_PER_TICK);
87 /* nothing really to do with interrupts, just starts up a counter. */
88 /* The 32768Hz 32-bit timer overruns in 131072 seconds */
92 struct gpt_regs *regs = (struct gpt_regs *)IMX_TIM1_BASE;
93 struct pll_regs *pll = (struct pll_regs *)IMX_PLL_BASE;
95 /* setup GP Timer 1 */
96 writel(GPTCR_SWR, ®s->gpt_tctl);
98 writel(readl(&pll->pccr0) | PCCR0_GPT1_EN, &pll->pccr0);
99 writel(readl(&pll->pccr1) | PCCR1_PERCLK1_EN, &pll->pccr1);
101 for (i = 0; i < 100; i++)
102 writel(0, ®s->gpt_tctl); /* We have no udelay by now */
103 writel(0, ®s->gpt_tprer); /* 32Khz */
104 /* Freerun Mode, PERCLK1 input */
105 writel(readl(®s->gpt_tctl) | GPTCR_CLKSOURCE_32 | GPTCR_FRR,
107 writel(readl(®s->gpt_tctl) | GPTCR_TEN, ®s->gpt_tctl);
112 unsigned long long get_ticks(void)
114 struct gpt_regs *regs = (struct gpt_regs *)IMX_TIM1_BASE;
115 ulong now = readl(®s->gpt_tcn); /* current tick value */
117 if (now >= lastinc) {
119 * normal mode (non roll)
120 * move stamp forward with absolut diff ticks
122 timestamp += (now - lastinc);
124 /* we have rollover of incrementer */
125 timestamp += (0xFFFFFFFF - lastinc) + now;
131 static ulong get_timer_masked(void)
134 * get_ticks() returns a long long (64 bit), it wraps in
135 * 2^64 / CONFIG_MX27_CLK32 = 2^64 / 2^15 = 2^49 ~ 5 * 10^14 (s) ~
136 * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
137 * 5 * 10^6 days - long enough.
139 return tick_to_time(get_ticks());
142 ulong get_timer(ulong base)
144 return get_timer_masked() - base;
147 /* delay x useconds AND preserve advance timstamp value */
148 void __udelay(unsigned long usec)
150 unsigned long long tmp;
153 tmo = us_to_tick(usec);
154 tmp = get_ticks() + tmo; /* get current timestamp */
156 while (get_ticks() < tmp) /* loop till event */
160 ulong get_tbclk(void)
162 return CONFIG_MX27_CLK32;