s3c2800_clk.c revision 1.1.2.2 1 1.1.2.2 thorpej /* $NetBSD: s3c2800_clk.c,v 1.1.2.2 2002/12/11 05:53:14 thorpej Exp $ */
2 1.1.2.2 thorpej
3 1.1.2.2 thorpej /*
4 1.1.2.2 thorpej * Copyright (c) 2002 Fujitsu Component Limited
5 1.1.2.2 thorpej * Copyright (c) 2002 Genetec Corporation
6 1.1.2.2 thorpej * All rights reserved.
7 1.1.2.2 thorpej *
8 1.1.2.2 thorpej * Redistribution and use in source and binary forms, with or without
9 1.1.2.2 thorpej * modification, are permitted provided that the following conditions
10 1.1.2.2 thorpej * are met:
11 1.1.2.2 thorpej * 1. Redistributions of source code must retain the above copyright
12 1.1.2.2 thorpej * notice, this list of conditions and the following disclaimer.
13 1.1.2.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
14 1.1.2.2 thorpej * notice, this list of conditions and the following disclaimer in the
15 1.1.2.2 thorpej * documentation and/or other materials provided with the distribution.
16 1.1.2.2 thorpej * 3. Neither the name of The Fujitsu Component Limited nor the name of
17 1.1.2.2 thorpej * Genetec corporation may not be used to endorse or promote products
18 1.1.2.2 thorpej * derived from this software without specific prior written permission.
19 1.1.2.2 thorpej *
20 1.1.2.2 thorpej * THIS SOFTWARE IS PROVIDED BY FUJITSU COMPONENT LIMITED AND GENETEC
21 1.1.2.2 thorpej * CORPORATION ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
22 1.1.2.2 thorpej * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 1.1.2.2 thorpej * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 1.1.2.2 thorpej * DISCLAIMED. IN NO EVENT SHALL FUJITSU COMPONENT LIMITED OR GENETEC
25 1.1.2.2 thorpej * CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 1.1.2.2 thorpej * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 1.1.2.2 thorpej * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 1.1.2.2 thorpej * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 1.1.2.2 thorpej * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 1.1.2.2 thorpej * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 1.1.2.2 thorpej * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1.2.2 thorpej * SUCH DAMAGE.
33 1.1.2.2 thorpej */
34 1.1.2.2 thorpej
35 1.1.2.2 thorpej
36 1.1.2.2 thorpej /*
37 1.1.2.2 thorpej * Clock & Power Management
38 1.1.2.2 thorpej */
39 1.1.2.2 thorpej #include <sys/param.h>
40 1.1.2.2 thorpej #include <sys/systm.h>
41 1.1.2.2 thorpej #include <sys/kernel.h>
42 1.1.2.2 thorpej #include <sys/time.h>
43 1.1.2.2 thorpej
44 1.1.2.2 thorpej #include <machine/bus.h>
45 1.1.2.2 thorpej #include <machine/intr.h>
46 1.1.2.2 thorpej #include <arm/cpufunc.h>
47 1.1.2.2 thorpej
48 1.1.2.2 thorpej #include <arm/s3c2xx0/s3c2800reg.h>
49 1.1.2.2 thorpej #include <arm/s3c2xx0/s3c2800var.h>
50 1.1.2.2 thorpej #include <arm/s3c2xx0/s3c2xx0_intr.h>
51 1.1.2.2 thorpej
52 1.1.2.2 thorpej
53 1.1.2.2 thorpej #ifndef PCLK
54 1.1.2.2 thorpej #define PCLK (50*1000*1000)
55 1.1.2.2 thorpej #endif
56 1.1.2.2 thorpej
57 1.1.2.2 thorpej #ifndef STATHZ
58 1.1.2.2 thorpej #define STATHZ 64
59 1.1.2.2 thorpej #endif
60 1.1.2.2 thorpej
61 1.1.2.2 thorpej #define TIMER_FREQUENCY (PCLK/4) /* divider=1/4 */
62 1.1.2.2 thorpej
63 1.1.2.2 thorpej #define TIMER_RELOAD_VAL 1000
64 1.1.2.2 thorpej #define COUNTS_PER_USEC 100
65 1.1.2.2 thorpej
66 1.1.2.2 thorpej static unsigned int timer0_reload_value;
67 1.1.2.2 thorpej static unsigned int timer0_prescaler;
68 1.1.2.2 thorpej
69 1.1.2.2 thorpej #define counter_to_usec(c) (((c)*timer0_prescaler*1000)/(TIMER_FREQUENCY/1000))
70 1.1.2.2 thorpej
71 1.1.2.2 thorpej /*
72 1.1.2.2 thorpej * microtime:
73 1.1.2.2 thorpej *
74 1.1.2.2 thorpej * Fill in the specified timeval struct with the current time
75 1.1.2.2 thorpej * accurate to the microsecond.
76 1.1.2.2 thorpej */
77 1.1.2.2 thorpej void
78 1.1.2.2 thorpej microtime(struct timeval *tvp)
79 1.1.2.2 thorpej {
80 1.1.2.2 thorpej struct s3c2800_softc *sc = (struct s3c2800_softc *) s3c2xx0_softc;
81 1.1.2.2 thorpej int save, int_pend0, int_pend1, count, delta;
82 1.1.2.2 thorpej static struct timeval last;
83 1.1.2.2 thorpej
84 1.1.2.2 thorpej if( timer0_reload_value == 0 ){
85 1.1.2.2 thorpej /* not initialized yet */
86 1.1.2.2 thorpej tvp->tv_sec = 0;
87 1.1.2.2 thorpej tvp->tv_usec = 0;
88 1.1.2.2 thorpej return;
89 1.1.2.2 thorpej }
90 1.1.2.2 thorpej
91 1.1.2.2 thorpej save = disable_interrupts(I32_bit);
92 1.1.2.2 thorpej
93 1.1.2.2 thorpej again:
94 1.1.2.2 thorpej int_pend0 = S3C2800_INT_TIMER0 &
95 1.1.2.2 thorpej bus_space_read_4(sc->sc_sx.sc_iot, sc->sc_sx.sc_intctl_ioh,
96 1.1.2.2 thorpej INTCTL_SRCPND);
97 1.1.2.2 thorpej count = bus_space_read_2(sc->sc_sx.sc_iot, sc->sc_tmr0_ioh,
98 1.1.2.2 thorpej TIMER_TMCNT);
99 1.1.2.2 thorpej
100 1.1.2.2 thorpej for (;;){
101 1.1.2.2 thorpej
102 1.1.2.2 thorpej int_pend1 = S3C2800_INT_TIMER0 &
103 1.1.2.2 thorpej bus_space_read_4(sc->sc_sx.sc_iot, sc->sc_sx.sc_intctl_ioh,
104 1.1.2.2 thorpej INTCTL_SRCPND);
105 1.1.2.2 thorpej if( int_pend0 == int_pend1 )
106 1.1.2.2 thorpej break;
107 1.1.2.2 thorpej
108 1.1.2.2 thorpej /*
109 1.1.2.2 thorpej * Down counter reached to zero while we were reading
110 1.1.2.2 thorpej * timer values. do it again to get consistent values.
111 1.1.2.2 thorpej */
112 1.1.2.2 thorpej int_pend0 = int_pend1;
113 1.1.2.2 thorpej count = bus_space_read_2(sc->sc_sx.sc_iot, sc->sc_tmr0_ioh,
114 1.1.2.2 thorpej TIMER_TMCNT);
115 1.1.2.2 thorpej }
116 1.1.2.2 thorpej
117 1.1.2.2 thorpej if( __predict_false(count > timer0_reload_value) ){
118 1.1.2.2 thorpej /*
119 1.1.2.2 thorpej * Buggy Hardware Warning --- sometimes timer counter
120 1.1.2.2 thorpej * reads bogus value like 0xffff. I guess it happens when
121 1.1.2.2 thorpej * the timer is reloaded.
122 1.1.2.2 thorpej */
123 1.1.2.2 thorpej #if 0
124 1.1.2.2 thorpej printf( "Bogus value from timer counter: %d\n", count );
125 1.1.2.2 thorpej #endif
126 1.1.2.2 thorpej goto again;
127 1.1.2.2 thorpej }
128 1.1.2.2 thorpej
129 1.1.2.2 thorpej /* copy system time */
130 1.1.2.2 thorpej *tvp = time;
131 1.1.2.2 thorpej
132 1.1.2.2 thorpej restore_interrupts(save);
133 1.1.2.2 thorpej
134 1.1.2.2 thorpej delta = timer0_reload_value - count;
135 1.1.2.2 thorpej
136 1.1.2.2 thorpej if( int_pend1 ){
137 1.1.2.2 thorpej /*
138 1.1.2.2 thorpej * down counter underflow, but
139 1.1.2.2 thorpej * clock interrupt have not serviced yet
140 1.1.2.2 thorpej */
141 1.1.2.2 thorpej #if 1
142 1.1.2.2 thorpej tvp->tv_usec += tick;
143 1.1.2.2 thorpej #else
144 1.1.2.2 thorpej delta = 0;
145 1.1.2.2 thorpej #endif
146 1.1.2.2 thorpej }
147 1.1.2.2 thorpej
148 1.1.2.2 thorpej tvp->tv_usec += counter_to_usec(delta);
149 1.1.2.2 thorpej
150 1.1.2.2 thorpej /* Make sure microseconds doesn't overflow. */
151 1.1.2.2 thorpej tvp->tv_sec += tvp->tv_usec / 1000000;
152 1.1.2.2 thorpej tvp->tv_usec = tvp->tv_usec % 1000000;
153 1.1.2.2 thorpej
154 1.1.2.2 thorpej if (last.tv_sec &&
155 1.1.2.2 thorpej (tvp->tv_sec < last.tv_sec ||
156 1.1.2.2 thorpej (tvp->tv_sec == last.tv_sec &&
157 1.1.2.2 thorpej tvp->tv_usec < last.tv_usec) ) ){
158 1.1.2.2 thorpej
159 1.1.2.2 thorpej /* XXX: This happens very often when the kernel runs
160 1.1.2.2 thorpej under Multi-ICE */
161 1.1.2.2 thorpej #if 0
162 1.1.2.2 thorpej printf("time reversal: %ld.%06ld(%d,%d) -> %ld.%06ld(%d,%d)\n",
163 1.1.2.2 thorpej last.tv_sec, last.tv_usec,
164 1.1.2.2 thorpej last_count, last_pend,
165 1.1.2.2 thorpej tvp->tv_sec, tvp->tv_usec,
166 1.1.2.2 thorpej count, int_pend1 );
167 1.1.2.2 thorpej #endif
168 1.1.2.2 thorpej
169 1.1.2.2 thorpej /* make sure the time has advanced. */
170 1.1.2.2 thorpej *tvp = last;
171 1.1.2.2 thorpej tvp->tv_usec++;
172 1.1.2.2 thorpej if( tvp->tv_usec >= 1000000 ){
173 1.1.2.2 thorpej tvp->tv_usec -= 1000000;
174 1.1.2.2 thorpej tvp->tv_sec++;
175 1.1.2.2 thorpej }
176 1.1.2.2 thorpej }
177 1.1.2.2 thorpej
178 1.1.2.2 thorpej last = *tvp;
179 1.1.2.2 thorpej }
180 1.1.2.2 thorpej
181 1.1.2.2 thorpej static __inline int
182 1.1.2.2 thorpej read_timer(struct s3c2800_softc *sc)
183 1.1.2.2 thorpej {
184 1.1.2.2 thorpej int count;
185 1.1.2.2 thorpej
186 1.1.2.2 thorpej do {
187 1.1.2.2 thorpej count = bus_space_read_2(sc->sc_sx.sc_iot, sc->sc_tmr0_ioh,
188 1.1.2.2 thorpej TIMER_TMCNT);
189 1.1.2.2 thorpej } while ( __predict_false(count > timer0_reload_value) );
190 1.1.2.2 thorpej
191 1.1.2.2 thorpej return count;
192 1.1.2.2 thorpej }
193 1.1.2.2 thorpej
194 1.1.2.2 thorpej /*
195 1.1.2.2 thorpej * delay:
196 1.1.2.2 thorpej *
197 1.1.2.2 thorpej * Delay for at least N microseconds.
198 1.1.2.2 thorpej */
199 1.1.2.2 thorpej void
200 1.1.2.2 thorpej delay(u_int n)
201 1.1.2.2 thorpej {
202 1.1.2.2 thorpej struct s3c2800_softc *sc = (struct s3c2800_softc *) s3c2xx0_softc;
203 1.1.2.2 thorpej int v0, v1, delta;
204 1.1.2.2 thorpej
205 1.1.2.2 thorpej if ( timer0_reload_value == 0 ){
206 1.1.2.2 thorpej /* not initialized yet */
207 1.1.2.2 thorpej while ( n-- > 0 ){
208 1.1.2.2 thorpej int m;
209 1.1.2.2 thorpej
210 1.1.2.2 thorpej for (m=0; m<100; ++m )
211 1.1.2.2 thorpej ;
212 1.1.2.2 thorpej }
213 1.1.2.2 thorpej return;
214 1.1.2.2 thorpej }
215 1.1.2.2 thorpej
216 1.1.2.2 thorpej /* read down counter */
217 1.1.2.2 thorpej v0 = read_timer(sc);
218 1.1.2.2 thorpej
219 1.1.2.2 thorpej for(;;){
220 1.1.2.2 thorpej v1 = read_timer(sc);
221 1.1.2.2 thorpej delta = v0 - v1;
222 1.1.2.2 thorpej if ( delta < 0 ){
223 1.1.2.2 thorpej delta += timer0_reload_value;
224 1.1.2.2 thorpej }
225 1.1.2.2 thorpej #ifdef DEBUG
226 1.1.2.2 thorpej if (delta < 0 || delta > timer0_reload_value)
227 1.1.2.2 thorpej panic("wrong value from timer counter");
228 1.1.2.2 thorpej #endif
229 1.1.2.2 thorpej
230 1.1.2.2 thorpej delta = counter_to_usec(delta);
231 1.1.2.2 thorpej
232 1.1.2.2 thorpej if (delta >= n )
233 1.1.2.2 thorpej return;
234 1.1.2.2 thorpej n -= delta;
235 1.1.2.2 thorpej v0 = v1;
236 1.1.2.2 thorpej }
237 1.1.2.2 thorpej /*NOTREACHED*/
238 1.1.2.2 thorpej }
239 1.1.2.2 thorpej /*
240 1.1.2.2 thorpej * inittodr:
241 1.1.2.2 thorpej *
242 1.1.2.2 thorpej * Initialize time from the time-of-day register.
243 1.1.2.2 thorpej */
244 1.1.2.2 thorpej void
245 1.1.2.2 thorpej inittodr(time_t base)
246 1.1.2.2 thorpej {
247 1.1.2.2 thorpej
248 1.1.2.2 thorpej time.tv_sec = base;
249 1.1.2.2 thorpej time.tv_usec = 0;
250 1.1.2.2 thorpej }
251 1.1.2.2 thorpej /*
252 1.1.2.2 thorpej * resettodr:
253 1.1.2.2 thorpej *
254 1.1.2.2 thorpej * Reset the time-of-day register with the current time.
255 1.1.2.2 thorpej */
256 1.1.2.2 thorpej void
257 1.1.2.2 thorpej resettodr(void)
258 1.1.2.2 thorpej {
259 1.1.2.2 thorpej }
260 1.1.2.2 thorpej
261 1.1.2.2 thorpej void
262 1.1.2.2 thorpej setstatclockrate(hz)
263 1.1.2.2 thorpej int hz;
264 1.1.2.2 thorpej {
265 1.1.2.2 thorpej }
266 1.1.2.2 thorpej
267 1.1.2.2 thorpej
268 1.1.2.2 thorpej #define hardintr (int (*)(void *))hardclock
269 1.1.2.2 thorpej #define statintr (int (*)(void *))statclock
270 1.1.2.2 thorpej
271 1.1.2.2 thorpej void
272 1.1.2.2 thorpej cpu_initclocks()
273 1.1.2.2 thorpej {
274 1.1.2.2 thorpej struct s3c2800_softc *sc = (struct s3c2800_softc *) s3c2xx0_softc;
275 1.1.2.2 thorpej long tc;
276 1.1.2.2 thorpej int prescaler;
277 1.1.2.2 thorpej
278 1.1.2.2 thorpej stathz = STATHZ;
279 1.1.2.2 thorpej profhz = stathz;
280 1.1.2.2 thorpej
281 1.1.2.2 thorpej #define calc_time_constant(hz) \
282 1.1.2.2 thorpej do { \
283 1.1.2.2 thorpej prescaler = 1; \
284 1.1.2.2 thorpej do { \
285 1.1.2.2 thorpej ++prescaler; \
286 1.1.2.2 thorpej tc = TIMER_FREQUENCY /(hz)/ prescaler; \
287 1.1.2.2 thorpej } while( tc > 65536 ); \
288 1.1.2.2 thorpej } while(0)
289 1.1.2.2 thorpej
290 1.1.2.2 thorpej
291 1.1.2.2 thorpej
292 1.1.2.2 thorpej /* Use the channels 0 and 1 for hardclock and statclock, respectively */
293 1.1.2.2 thorpej calc_time_constant(hz);
294 1.1.2.2 thorpej bus_space_write_4(sc->sc_sx.sc_iot, sc->sc_tmr0_ioh, TIMER_TMDAT,
295 1.1.2.2 thorpej ((prescaler - 1) << 16) | (tc - 1));
296 1.1.2.2 thorpej timer0_prescaler = prescaler;
297 1.1.2.2 thorpej timer0_reload_value = tc;
298 1.1.2.2 thorpej
299 1.1.2.2 thorpej printf("clock: hz=%d stathz = %d PCLK=%d prescaler=%d tc=%ld\n",
300 1.1.2.2 thorpej hz, stathz, PCLK, prescaler, tc);
301 1.1.2.2 thorpej
302 1.1.2.2 thorpej calc_time_constant(stathz);
303 1.1.2.2 thorpej bus_space_write_4(sc->sc_sx.sc_iot, sc->sc_tmr1_ioh, TIMER_TMDAT,
304 1.1.2.2 thorpej ((prescaler - 1) << 16) | (tc - 1));
305 1.1.2.2 thorpej
306 1.1.2.2 thorpej
307 1.1.2.2 thorpej s3c2800_intr_establish(S3C2800_INT_TIMER0, IPL_CLOCK, hardintr, 0);
308 1.1.2.2 thorpej s3c2800_intr_establish(S3C2800_INT_TIMER1, IPL_STATCLOCK, statintr, 0);
309 1.1.2.2 thorpej
310 1.1.2.2 thorpej /* start timers */
311 1.1.2.2 thorpej bus_space_write_4(sc->sc_sx.sc_iot, sc->sc_tmr0_ioh, TIMER_TMCON,
312 1.1.2.2 thorpej TMCON_MUX_DIV4 | TMCON_INTENA | TMCON_ENABLE);
313 1.1.2.2 thorpej bus_space_write_4(sc->sc_sx.sc_iot, sc->sc_tmr1_ioh, TIMER_TMCON,
314 1.1.2.2 thorpej TMCON_MUX_DIV4 | TMCON_INTENA | TMCON_ENABLE);
315 1.1.2.2 thorpej
316 1.1.2.2 thorpej /* stop timer2 */
317 1.1.2.2 thorpej {
318 1.1.2.2 thorpej bus_space_handle_t tmp_ioh;
319 1.1.2.2 thorpej
320 1.1.2.2 thorpej bus_space_map(sc->sc_sx.sc_iot, S3C2800_TIMER2_BASE,
321 1.1.2.2 thorpej S3C2800_TIMER_SIZE, 0, &tmp_ioh);
322 1.1.2.2 thorpej
323 1.1.2.2 thorpej bus_space_write_4(sc->sc_sx.sc_iot, tmp_ioh,
324 1.1.2.2 thorpej TIMER_TMCON, 0);
325 1.1.2.2 thorpej
326 1.1.2.2 thorpej bus_space_unmap(sc->sc_sx.sc_iot, tmp_ioh,
327 1.1.2.2 thorpej S3C2800_TIMER_SIZE);
328 1.1.2.2 thorpej
329 1.1.2.2 thorpej }
330 1.1.2.2 thorpej }
331