blob: 4a1a54dcf1777675707a8610817c44df8f66b28c [file] [log] [blame]
Sergey Kubushync74b2102007-08-10 20:26:18 +02001/*
2 * (C) Copyright 2003
3 * Texas Instruments <www.ti.com>
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * (C) Copyright 2002-2004
14 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
15 *
16 * (C) Copyright 2004
17 * Philippe Robin, ARM Ltd. <philippe.robin@arm.com>
18 *
19 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
20 *
21 * See file CREDITS for list of people who contributed to this
22 * project.
23 *
24 * This program is free software; you can redistribute it and/or
25 * modify it under the terms of the GNU General Public License as
26 * published by the Free Software Foundation; either version 2 of
27 * the License, or (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
37 * MA 02111-1307 USA
38 */
39
40#include <common.h>
41#include <arm926ejs.h>
42
43typedef volatile struct {
44 u_int32_t pid12;
45 u_int32_t emumgt_clksped;
46 u_int32_t gpint_en;
47 u_int32_t gpdir_dat;
48 u_int32_t tim12;
49 u_int32_t tim34;
50 u_int32_t prd12;
51 u_int32_t prd34;
52 u_int32_t tcr;
53 u_int32_t tgcr;
54 u_int32_t wdtcr;
55 u_int32_t tlgc;
56 u_int32_t tlmr;
57} davinci_timer;
58
59davinci_timer *timer = (davinci_timer *)CFG_TIMERBASE;
60
61#define TIMER_LOAD_VAL (CFG_HZ_CLOCK / CFG_HZ)
62#define READ_TIMER timer->tim34
63
Peter Pearseea686f52008-02-01 16:50:24 +000064/* Timer runs with CFG_HZ_CLOCK, currently 27MHz. To avoid wrap
65 around of timestamp already after min ~159s, divide it, e.g. by 16.
66 timestamp will then wrap around all min ~42min */
67#define DIV(x) ((x) >> 4)
68
Sergey Kubushync74b2102007-08-10 20:26:18 +020069static ulong timestamp;
70static ulong lastinc;
71
72int timer_init(void)
73{
74 /* We are using timer34 in unchained 32-bit mode, full speed */
75 timer->tcr = 0x0;
76 timer->tgcr = 0x0;
77 timer->tgcr = 0x06;
78 timer->tim34 = 0x0;
79 timer->prd34 = TIMER_LOAD_VAL;
80 lastinc = 0;
81 timer->tcr = 0x80 << 16;
82 timestamp = 0;
83
84 return(0);
85}
86
87void reset_timer(void)
88{
89 reset_timer_masked();
90}
91
92ulong get_timer(ulong base)
93{
94 return(get_timer_masked() - base);
95}
96
97void set_timer(ulong t)
98{
99 timestamp = t;
100}
101
102void udelay(unsigned long usec)
103{
104 udelay_masked(usec);
105}
106
107void reset_timer_masked(void)
108{
Peter Pearseea686f52008-02-01 16:50:24 +0000109 lastinc = DIV(READ_TIMER);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200110 timestamp = 0;
111}
112
113ulong get_timer_raw(void)
114{
Peter Pearseea686f52008-02-01 16:50:24 +0000115 ulong now = DIV(READ_TIMER);
Sergey Kubushync74b2102007-08-10 20:26:18 +0200116
117 if (now >= lastinc) {
118 /* normal mode */
119 timestamp += now - lastinc;
120 } else {
121 /* overflow ... */
Peter Pearseea686f52008-02-01 16:50:24 +0000122 timestamp += now + DIV(TIMER_LOAD_VAL) - lastinc;
Sergey Kubushync74b2102007-08-10 20:26:18 +0200123 }
124 lastinc = now;
125 return timestamp;
126}
127
128ulong get_timer_masked(void)
129{
Peter Pearseea686f52008-02-01 16:50:24 +0000130 return(get_timer_raw() / DIV(TIMER_LOAD_VAL));
Sergey Kubushync74b2102007-08-10 20:26:18 +0200131}
132
133void udelay_masked(unsigned long usec)
134{
135 ulong tmo;
136 ulong endtime;
137 signed long diff;
138
139 tmo = CFG_HZ_CLOCK / 1000;
140 tmo *= usec;
141 tmo /= 1000;
142
143 endtime = get_timer_raw() + tmo;
144
145 do {
146 ulong now = get_timer_raw();
147 diff = endtime - now;
148 } while (diff >= 0);
149}
150
151/*
152 * This function is derived from PowerPC code (read timebase as long long).
153 * On ARM it just returns the timer value.
154 */
155unsigned long long get_ticks(void)
156{
157 return(get_timer(0));
158}
159
160/*
161 * This function is derived from PowerPC code (timebase clock frequency).
162 * On ARM it returns the number of timer ticks per second.
163 */
164ulong get_tbclk(void)
165{
166 ulong tbclk;
167
168 tbclk = CFG_HZ;
169 return(tbclk);
170}