Timer: Remove set_timer completely
[oweals/u-boot.git] / arch / arm / cpu / armv7 / omap-common / timer.c
1 /*
2  * (C) Copyright 2008
3  * Texas Instruments
4  *
5  * Richard Woodruff <r-woodruff2@ti.com>
6  * Syed Moahmmed Khasim <khasim@ti.com>
7  *
8  * (C) Copyright 2002
9  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10  * Marius Groeger <mgroeger@sysgo.de>
11  * Alex Zuepke <azu@sysgo.de>
12  *
13  * (C) Copyright 2002
14  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
15  *
16  * See file CREDITS for list of people who contributed to this
17  * project.
18  *
19  * This program is free software; you can redistribute it and/or
20  * modify it under the terms of the GNU General Public License as
21  * published by the Free Software Foundation; either version 2 of
22  * the License, or (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program; if not, write to the Free Software
31  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32  * MA 02111-1307 USA
33  */
34
35 #include <common.h>
36 #include <asm/io.h>
37
38 DECLARE_GLOBAL_DATA_PTR;
39
40 static struct gptimer *timer_base = (struct gptimer *)CONFIG_SYS_TIMERBASE;
41
42 /*
43  * Nothing really to do with interrupts, just starts up a counter.
44  */
45
46 #define TIMER_CLOCK             (V_SCLK / (2 << CONFIG_SYS_PTV))
47 #define TIMER_OVERFLOW_VAL      0xffffffff
48 #define TIMER_LOAD_VAL          0
49
50 int timer_init(void)
51 {
52         /* start the counter ticking up, reload value on overflow */
53         writel(TIMER_LOAD_VAL, &timer_base->tldr);
54         /* enable timer */
55         writel((CONFIG_SYS_PTV << 2) | TCLR_PRE | TCLR_AR | TCLR_ST,
56                 &timer_base->tclr);
57
58         reset_timer_masked();   /* init the timestamp and lastinc value */
59
60         return 0;
61 }
62
63 /*
64  * timer without interrupts
65  */
66 void reset_timer(void)
67 {
68         reset_timer_masked();
69 }
70
71 ulong get_timer(ulong base)
72 {
73         return get_timer_masked() - base;
74 }
75
76 /* delay x useconds */
77 void __udelay(unsigned long usec)
78 {
79         long tmo = usec * (TIMER_CLOCK / 1000) / 1000;
80         unsigned long now, last = readl(&timer_base->tcrr);
81
82         while (tmo > 0) {
83                 now = readl(&timer_base->tcrr);
84                 if (last > now) /* count up timer overflow */
85                         tmo -= TIMER_OVERFLOW_VAL - last + now + 1;
86                 else
87                         tmo -= now - last;
88                 last = now;
89         }
90 }
91
92 void reset_timer_masked(void)
93 {
94         /* reset time, capture current incrementer value time */
95         gd->lastinc = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
96         gd->tbl = 0;            /* start "advancing" time stamp from 0 */
97 }
98
99 ulong get_timer_masked(void)
100 {
101         /* current tick value */
102         ulong now = readl(&timer_base->tcrr) / (TIMER_CLOCK / CONFIG_SYS_HZ);
103
104         if (now >= gd->lastinc) /* normal mode (non roll) */
105                 /* move stamp fordward with absoulte diff ticks */
106                 gd->tbl += (now - gd->lastinc);
107         else    /* we have rollover of incrementer */
108                 gd->tbl += ((TIMER_LOAD_VAL / (TIMER_CLOCK / CONFIG_SYS_HZ))
109                              - gd->lastinc) + now;
110         gd->lastinc = now;
111         return gd->tbl;
112 }
113
114 /*
115  * This function is derived from PowerPC code (read timebase as long long).
116  * On ARM it just returns the timer value.
117  */
118 unsigned long long get_ticks(void)
119 {
120         return get_timer(0);
121 }
122
123 /*
124  * This function is derived from PowerPC code (timebase clock frequency).
125  * On ARM it returns the number of timer ticks per second.
126  */
127 ulong get_tbclk(void)
128 {
129         return CONFIG_SYS_HZ;
130 }