sa11x0_ost.c revision 1.4 1 /* $NetBSD: sa11x0_ost.c,v 1.4 2001/11/23 19:21:48 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 1997 Mark Brinicombe.
5 * Copyright (c) 1997 Causality Limited.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by IWAMOTO Toshihiro and Ichiro FUKUHARA.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40 #include <sys/types.h>
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/kernel.h>
44 #include <sys/time.h>
45 #include <sys/device.h>
46
47 #include <machine/bus.h>
48 #include <machine/intr.h>
49
50 #include <arm/cpufunc.h>
51
52 #include <arm/arm32/katelib.h>
53
54 #include <arm/sa11x0/sa11x0_reg.h>
55 #include <arm/sa11x0/sa11x0_var.h>
56 #include <arm/sa11x0/sa11x0_ostreg.h>
57
58 static int saost_match(struct device *, struct cfdata *, void *);
59 static void saost_attach(struct device *, struct device *, void *);
60
61 int gettick(void);
62 static int clockintr(void *);
63 static int statintr(void *);
64 void rtcinit(void);
65
66 struct saost_softc {
67 struct device sc_dev;
68 bus_addr_t sc_baseaddr;
69 bus_space_tag_t sc_iot;
70 bus_space_handle_t sc_ioh;
71
72 u_int32_t sc_clock_count;
73 u_int32_t sc_statclock_count;
74 u_int32_t sc_statclock_step;
75 };
76
77 static struct saost_softc *saost_sc = NULL;
78
79 #define TIMER_FREQUENCY 3686400 /* 3.6864MHz */
80 #define TICKS_PER_MICROSECOND (TIMER_FREQUENCY/1000000)
81
82 #ifndef STATHZ
83 #define STATHZ 64
84 #endif
85
86 struct cfattach saost_ca = {
87 sizeof(struct saost_softc), saost_match, saost_attach
88 };
89
90 static int
91 saost_match(parent, match, aux)
92 struct device *parent;
93 struct cfdata *match;
94 void *aux;
95 {
96 return (1);
97 }
98
99 void
100 saost_attach(parent, self, aux)
101 struct device *parent;
102 struct device *self;
103 void *aux;
104 {
105 struct saost_softc *sc = (struct saost_softc*)self;
106 struct sa11x0_attach_args *sa = aux;
107
108 printf("\n");
109
110 sc->sc_iot = sa->sa_iot;
111 sc->sc_baseaddr = sa->sa_addr;
112
113 saost_sc = sc;
114
115 if(bus_space_map(sa->sa_iot, sa->sa_addr, sa->sa_size, 0,
116 &sc->sc_ioh))
117 panic("%s: Cannot map registers\n", self->dv_xname);
118
119 /* disable all channel and clear interrupt status */
120 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_IR, 0);
121 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_SR, 0xf);
122
123 printf("%s: SA-11x0 OS Timer\n", sc->sc_dev.dv_xname);
124 }
125
126 static int
127 clockintr(arg)
128 void *arg;
129 {
130 struct clockframe *frame = arg;
131 u_int32_t oscr, nextmatch, oldmatch;
132 int s;
133
134 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh,
135 SAOST_SR, 1);
136
137 /* schedule next clock intr */
138 oldmatch = saost_sc->sc_clock_count;
139 nextmatch = oldmatch + TIMER_FREQUENCY / hz;
140
141 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_MR0,
142 nextmatch);
143 oscr = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
144 SAOST_CR);
145
146 if ((nextmatch > oldmatch &&
147 (oscr > nextmatch || oscr < oldmatch)) ||
148 (nextmatch < oldmatch && oscr > nextmatch && oscr < oldmatch)) {
149 /*
150 * we couldn't set the matching register in time.
151 * just set it to some value so that next interrupt happens.
152 * XXX is it possible to compansate lost interrupts?
153 */
154
155 s = splhigh();
156 oscr = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
157 SAOST_CR);
158 nextmatch = oscr + 10;
159 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh,
160 SAOST_MR0, nextmatch);
161 splx(s);
162 }
163
164 saost_sc->sc_clock_count = nextmatch;
165 hardclock(frame);
166
167 return(1);
168 }
169
170 static int
171 statintr(arg)
172 void *arg;
173 {
174 struct clockframe *frame = arg;
175 u_int32_t oscr, nextmatch, oldmatch;
176 int s;
177
178 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh,
179 SAOST_SR, 2);
180
181 /* schedule next clock intr */
182 oldmatch = saost_sc->sc_statclock_count;
183 nextmatch = oldmatch + saost_sc->sc_statclock_step;
184
185 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_MR1,
186 nextmatch);
187 oscr = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
188 SAOST_CR);
189
190 if ((nextmatch > oldmatch &&
191 (oscr > nextmatch || oscr < oldmatch)) ||
192 (nextmatch < oldmatch && oscr > nextmatch && oscr < oldmatch)) {
193 /*
194 * we couldn't set the matching register in time.
195 * just set it to some value so that next interrupt happens.
196 * XXX is it possible to compansate lost interrupts?
197 */
198
199 s = splhigh();
200 oscr = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
201 SAOST_CR);
202 nextmatch = oscr + 10;
203 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh,
204 SAOST_MR1, nextmatch);
205 splx(s);
206 }
207
208 saost_sc->sc_statclock_count = nextmatch;
209 statclock(frame);
210
211 return(1);
212 }
213
214
215 void
216 setstatclockrate(hz)
217 int hz;
218 {
219 u_int32_t count;
220
221 saost_sc->sc_statclock_step = TIMER_FREQUENCY / hz;
222 count = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_CR);
223 count += saost_sc->sc_statclock_step;
224 saost_sc->sc_statclock_count = count;
225 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh,
226 SAOST_MR1, count);
227 }
228
229 void
230 cpu_initclocks()
231 {
232 stathz = STATHZ;
233 profhz = stathz;
234 saost_sc->sc_statclock_step = TIMER_FREQUENCY / stathz;
235
236 printf("clock: hz=%d stathz = %d\n", hz, stathz);
237
238 /* Zero the counter value */
239 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_CR, 0);
240
241 /* Use the channels 0 and 1 for hardclock and statclock, respectively */
242 saost_sc->sc_clock_count = TIMER_FREQUENCY / hz;
243 saost_sc->sc_statclock_count = TIMER_FREQUENCY / stathz;
244
245 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_IR, 3);
246 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_MR0,
247 saost_sc->sc_clock_count);
248 bus_space_write_4(saost_sc->sc_iot, saost_sc->sc_ioh, SAOST_MR1,
249 saost_sc->sc_statclock_count);
250
251 sa11x0_intr_establish(0, 26, 1, IPL_CLOCK, clockintr, 0);
252 sa11x0_intr_establish(0, 27, 1, IPL_CLOCK, statintr, 0);
253 }
254
255 int
256 gettick()
257 {
258 int counter;
259 u_int savedints;
260 savedints = disable_interrupts(I32_bit);
261
262 counter = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
263 SAOST_CR);
264
265 restore_interrupts(savedints);
266 return counter;
267 }
268
269 void
270 microtime(tvp)
271 register struct timeval *tvp;
272 {
273 int s = splhigh();
274 int tm;
275 int deltatm;
276 static struct timeval lasttime;
277
278 tm = bus_space_read_4(saost_sc->sc_iot, saost_sc->sc_ioh,
279 SAOST_CR);
280
281 deltatm = saost_sc->sc_clock_count - tm;
282
283 #ifdef DEBUG
284 printf("deltatm = %d\n",deltatm);
285 #endif
286
287 *tvp = time;
288 tvp->tv_usec++; /* XXX */
289 while (tvp->tv_usec >= 1000000) {
290 tvp->tv_sec++;
291 tvp->tv_usec -= 1000000;
292 }
293
294 if (tvp->tv_sec == lasttime.tv_sec &&
295 tvp->tv_usec <= lasttime.tv_usec &&
296 (tvp->tv_usec = lasttime.tv_usec + 1) >= 1000000)
297 {
298 tvp->tv_sec++;
299 tvp->tv_usec -= 1000000;
300 }
301 lasttime = *tvp;
302 splx(s);
303 }
304
305 void
306 delay(usecs)
307 u_int usecs;
308 {
309 u_int32_t tick, otick, delta;
310 int j, csec, usec;
311
312 csec = usecs / 10000;
313 usec = usecs % 10000;
314
315 usecs = (TIMER_FREQUENCY / 100) * csec
316 + (TIMER_FREQUENCY / 100) * usec / 10000;
317
318 if (! saost_sc) {
319 /* clock isn't initialized yet */
320 for(; usecs > 0; usecs--)
321 for(j = 100; j > 0; j--)
322 ;
323 return;
324 }
325
326 otick = gettick();
327
328 while (1) {
329 for(j = 100; j > 0; j--)
330 ;
331 tick = gettick();
332 delta = tick - otick;
333 if (delta > usecs)
334 break;
335 usecs -= delta;
336 otick = tick;
337 }
338 }
339
340 void
341 resettodr()
342 {
343 }
344
345 void
346 inittodr(base)
347 time_t base;
348 {
349 time.tv_sec = base;
350 time.tv_usec = 0;
351 }
352