]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/imx-common/timer.c
merged tx6dl-devel into denx master branch
[karo-tx-uboot.git] / arch / arm / imx-common / timer.c
1 /*
2  * (C) Copyright 2007
3  * Sascha Hauer, Pengutronix
4  *
5  * (C) Copyright 2009 Freescale Semiconductor, Inc.
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #include <common.h>
11 #include <asm/io.h>
12 #include <div64.h>
13 #include <asm/arch/imx-regs.h>
14 #include <asm/arch/clock.h>
15
16 /* General purpose timers registers */
17 struct mxc_gpt {
18         unsigned int control;
19         unsigned int prescaler;
20         unsigned int status;
21         unsigned int nouse[6];
22         unsigned int counter;
23 };
24
25 static struct mxc_gpt *cur_gpt = (struct mxc_gpt *)GPT1_BASE_ADDR;
26
27 /* General purpose timers bitfields */
28 #define GPTCR_SWR               (1 << 15)       /* Software reset */
29 #define GPTCR_FRR               (1 << 9)        /* Freerun / restart */
30 #define GPTCR_CLKSOURCE_32      (4 << 6)        /* Clock source */
31 #define GPTCR_TEN               1               /* Timer enable */
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 static inline unsigned long long tick_to_time(unsigned long long tick)
36 {
37         tick *= CONFIG_SYS_HZ;
38         do_div(tick, MXC_CLK32);
39
40         return tick;
41 }
42
43 static inline unsigned long long us_to_tick(unsigned long long usec)
44 {
45         usec = usec * MXC_CLK32 + 999999;
46         do_div(usec, 1000000);
47
48         return usec;
49 }
50
51 int timer_init(void)
52 {
53         int i;
54
55         /* setup GP Timer 1 */
56         __raw_writel(GPTCR_SWR, &cur_gpt->control);
57
58         /* We have no udelay by now */
59         for (i = 0; i < 100; i++)
60                 __raw_writel(0, &cur_gpt->control);
61
62         __raw_writel(0, &cur_gpt->prescaler); /* 32Khz */
63
64         /* Freerun Mode, PERCLK1 input */
65         i = __raw_readl(&cur_gpt->control);
66         __raw_writel(i | GPTCR_CLKSOURCE_32 | GPTCR_TEN, &cur_gpt->control);
67
68         gd->arch.tbl = __raw_readl(&cur_gpt->counter);
69         gd->arch.tbu = 0;
70
71         gd->arch.timer_rate_hz = MXC_CLK32;
72         return 0;
73 }
74
75 unsigned long long get_ticks(void)
76 {
77         ulong now = __raw_readl(&cur_gpt->counter); /* current tick value */
78
79         /* increment tbu if tbl has rolled over */
80         if (now < gd->arch.tbl)
81                 gd->arch.tbu++;
82         gd->arch.tbl = now;
83         return (((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl;
84 }
85
86 ulong get_timer_masked(void)
87 {
88         /*
89          * get_ticks() returns a long long (64 bit), it wraps in
90          * 2^64 / MXC_CLK32 = 2^64 / 2^15 = 2^49 ~ 5 * 10^14 (s) ~
91          * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
92          * 5 * 10^6 days - long enough.
93          */
94         return tick_to_time(get_ticks());
95 }
96
97 ulong get_timer(ulong base)
98 {
99         return get_timer_masked() - base;
100 }
101
102 /* delay x useconds AND preserve advance timstamp value */
103 void __udelay(unsigned long usec)
104 {
105         unsigned long long tmp;
106         ulong tmo;
107
108         tmo = us_to_tick(usec);
109         tmp = get_ticks() + tmo;        /* get current timestamp */
110
111         while (get_ticks() < tmp)       /* loop till event */
112                  /*NOP*/;
113 }
114
115 /*
116  * This function is derived from PowerPC code (timebase clock frequency).
117  * On ARM it returns the number of timer ticks per second.
118  */
119 ulong get_tbclk(void)
120 {
121         return gd->arch.timer_rate_hz;
122 }