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