]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/arm920t/s3c24x0/timer.c
Merge branch 'master' of /home/wd/git/u-boot/custodians
[karo-tx-uboot.git] / cpu / arm920t / s3c24x0 / timer.c
1 /*
2  * (C) Copyright 2002
3  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4  * Marius Groeger <mgroeger@sysgo.de>
5  *
6  * (C) Copyright 2002
7  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8  * Alex Zuepke <azu@sysgo.de>
9  *
10  * (C) Copyright 2002
11  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
12  *
13  * See file CREDITS for list of people who contributed to this
14  * project.
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License as
18  * published by the Free Software Foundation; either version 2 of
19  * the License, or (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29  * MA 02111-1307 USA
30  */
31
32 #include <common.h>
33 #if defined(CONFIG_S3C2400) || \
34     defined(CONFIG_S3C2410) || \
35     defined(CONFIG_TRAB)
36
37 #include <asm/io.h>
38
39 #if defined(CONFIG_S3C2400)
40 #include <s3c2400.h>
41 #elif defined(CONFIG_S3C2410)
42 #include <s3c2410.h>
43 #endif
44
45 int timer_load_val = 0;
46 static ulong timer_clk;
47
48 /* macro to read the 16 bit timer */
49 static inline ulong READ_TIMER(void)
50 {
51         struct s3c24x0_timers *timers = s3c24x0_get_base_timers();
52
53         return readl(&timers->TCNTO4) & 0xffff;
54 }
55
56 static ulong timestamp;
57 static ulong lastdec;
58
59 int timer_init(void)
60 {
61         struct s3c24x0_timers *timers = s3c24x0_get_base_timers();
62         ulong tmr;
63
64         /* use PWM Timer 4 because it has no output */
65         /* prescaler for Timer 4 is 16 */
66         writel(0x0f00, &timers->TCFG0);
67         if (timer_load_val == 0) {
68                 /*
69                  * for 10 ms clock period @ PCLK with 4 bit divider = 1/2
70                  * (default) and prescaler = 16. Should be 10390
71                  * @33.25MHz and 15625 @ 50 MHz
72                  */
73                 timer_load_val = get_PCLK() / (2 * 16 * 100);
74                 timer_clk = get_PCLK() / (2 * 16);
75         }
76         /* load value for 10 ms timeout */
77         lastdec = timer_load_val;
78         writel(timer_load_val, &timers->TCNTB4);
79         /* auto load, manual update of Timer 4 */
80         tmr = (readl(&timers->TCON) & ~0x0700000) | 0x0600000;
81         writel(tmr, &timers->TCON);
82         /* auto load, start Timer 4 */
83         tmr = (tmr & ~0x0700000) | 0x0500000;
84         writel(tmr, &timers->TCON);
85         timestamp = 0;
86
87         return (0);
88 }
89
90 /*
91  * timer without interrupts
92  */
93
94 void reset_timer(void)
95 {
96         reset_timer_masked();
97 }
98
99 ulong get_timer(ulong base)
100 {
101         return get_timer_masked() - base;
102 }
103
104 void set_timer(ulong t)
105 {
106         timestamp = t;
107 }
108
109 void udelay(unsigned long usec)
110 {
111         ulong tmo;
112         ulong start = get_ticks();
113
114         tmo = usec / 1000;
115         tmo *= (timer_load_val * 100);
116         tmo /= 1000;
117
118         while ((ulong) (get_ticks() - start) < tmo)
119                 /*NOP*/;
120 }
121
122 void reset_timer_masked(void)
123 {
124         /* reset time */
125         lastdec = READ_TIMER();
126         timestamp = 0;
127 }
128
129 ulong get_timer_masked(void)
130 {
131         ulong tmr = get_ticks();
132
133         return tmr / (timer_clk / CONFIG_SYS_HZ);
134 }
135
136 void udelay_masked(unsigned long usec)
137 {
138         ulong tmo;
139         ulong endtime;
140         signed long diff;
141
142         if (usec >= 1000) {
143                 tmo = usec / 1000;
144                 tmo *= (timer_load_val * 100);
145                 tmo /= 1000;
146         } else {
147                 tmo = usec * (timer_load_val * 100);
148                 tmo /= (1000 * 1000);
149         }
150
151         endtime = get_ticks() + tmo;
152
153         do {
154                 ulong now = get_ticks();
155                 diff = endtime - now;
156         } while (diff >= 0);
157 }
158
159 /*
160  * This function is derived from PowerPC code (read timebase as long long).
161  * On ARM it just returns the timer value.
162  */
163 unsigned long long get_ticks(void)
164 {
165         ulong now = READ_TIMER();
166
167         if (lastdec >= now) {
168                 /* normal mode */
169                 timestamp += lastdec - now;
170         } else {
171                 /* we have an overflow ... */
172                 timestamp += lastdec + timer_load_val - now;
173         }
174         lastdec = now;
175
176         return timestamp;
177 }
178
179 /*
180  * This function is derived from PowerPC code (timebase clock frequency).
181  * On ARM it returns the number of timer ticks per second.
182  */
183 ulong get_tbclk(void)
184 {
185         ulong tbclk;
186
187 #if defined(CONFIG_SMDK2400) || defined(CONFIG_TRAB)
188         tbclk = timer_load_val * 100;
189 #elif defined(CONFIG_SBC2410X) || \
190       defined(CONFIG_SMDK2410) || \
191       defined(CONFIG_VCMA9)
192         tbclk = CONFIG_SYS_HZ;
193 #else
194 #       error "tbclk not configured"
195 #endif
196
197         return tbclk;
198 }
199
200 /*
201  * reset the cpu by setting up the watchdog timer and let him time out
202  */
203 void reset_cpu(ulong ignored)
204 {
205         struct s3c24x0_watchdog *watchdog;
206
207 #ifdef CONFIG_TRAB
208         disable_vfd();
209 #endif
210
211         watchdog = s3c24x0_get_base_watchdog();
212
213         /* Disable watchdog */
214         writel(0x0000, &watchdog->WTCON);
215
216         /* Initialize watchdog timer count register */
217         writel(0x0001, &watchdog->WTCNT);
218
219         /* Enable watchdog timer; assert reset at timer timeout */
220         writel(0x0021, &watchdog->WTCON);
221
222         while (1)
223                 /* loop forever and wait for reset to happen */;
224
225         /*NOTREACHED*/
226 }
227
228 #endif /* defined(CONFIG_S3C2400)  ||
229           defined (CONFIG_S3C2410) ||
230           defined (CONFIG_TRAB) */