clock_pcctwo.c revision 1.14 1 1.14 dsl /* $NetBSD: clock_pcctwo.c,v 1.14 2009/03/14 15:36:19 dsl Exp $ */
2 1.1 scw
3 1.1 scw /*-
4 1.1 scw * Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
5 1.1 scw * All rights reserved.
6 1.1 scw *
7 1.1 scw * This code is derived from software contributed to The NetBSD Foundation
8 1.1 scw * by Steve C. Woodford.
9 1.1 scw *
10 1.1 scw * Redistribution and use in source and binary forms, with or without
11 1.1 scw * modification, are permitted provided that the following conditions
12 1.1 scw * are met:
13 1.1 scw * 1. Redistributions of source code must retain the above copyright
14 1.1 scw * notice, this list of conditions and the following disclaimer.
15 1.1 scw * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 scw * notice, this list of conditions and the following disclaimer in the
17 1.1 scw * documentation and/or other materials provided with the distribution.
18 1.1 scw *
19 1.1 scw * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 scw * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 scw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 scw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 scw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 scw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 scw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 scw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 scw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 scw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 scw * POSSIBILITY OF SUCH DAMAGE.
30 1.1 scw */
31 1.1 scw
32 1.1 scw /*
33 1.1 scw * Glue for the Peripheral Channel Controller Two (PCCChip2) timers,
34 1.1 scw * the Memory Controller ASIC (MCchip, and the Mostek clock chip found
35 1.1 scw * on the MVME-1[67]7, MVME-1[67]2 and MVME-187 series of boards.
36 1.1 scw */
37 1.5 lukem
38 1.5 lukem #include <sys/cdefs.h>
39 1.14 dsl __KERNEL_RCSID(0, "$NetBSD: clock_pcctwo.c,v 1.14 2009/03/14 15:36:19 dsl Exp $");
40 1.1 scw
41 1.1 scw #include <sys/param.h>
42 1.1 scw #include <sys/kernel.h>
43 1.1 scw #include <sys/systm.h>
44 1.1 scw #include <sys/device.h>
45 1.12 tsutsui #include <sys/timetc.h>
46 1.1 scw
47 1.1 scw #include <machine/psl.h>
48 1.11 ad #include <sys/bus.h>
49 1.1 scw
50 1.1 scw #include <dev/mvme/clockvar.h>
51 1.1 scw #include <dev/mvme/pcctwovar.h>
52 1.1 scw #include <dev/mvme/pcctworeg.h>
53 1.1 scw
54 1.1 scw
55 1.6 perry int clock_pcctwo_match(struct device *, struct cfdata *, void *);
56 1.6 perry void clock_pcctwo_attach(struct device *, struct device *, void *);
57 1.1 scw
58 1.1 scw struct clock_pcctwo_softc {
59 1.1 scw struct device sc_dev;
60 1.1 scw struct clock_attach_args sc_clock_args;
61 1.1 scw u_char sc_clock_lvl;
62 1.12 tsutsui struct timecounter sc_tc;
63 1.1 scw };
64 1.1 scw
65 1.7 scw CFATTACH_DECL(clock_pcctwo, sizeof(struct clock_pcctwo_softc),
66 1.4 thorpej clock_pcctwo_match, clock_pcctwo_attach, NULL, NULL);
67 1.1 scw
68 1.1 scw extern struct cfdriver clock_cd;
69 1.1 scw
70 1.6 perry static int clock_pcctwo_profintr(void *);
71 1.6 perry static int clock_pcctwo_statintr(void *);
72 1.6 perry static void clock_pcctwo_initclocks(void *, int, int);
73 1.12 tsutsui static u_int clock_pcctwo_getcount(struct timecounter *);
74 1.6 perry static void clock_pcctwo_shutdown(void *);
75 1.1 scw
76 1.1 scw static struct clock_pcctwo_softc *clock_pcctwo_sc;
77 1.12 tsutsui static uint32_t clock_pcctwo_count;
78 1.1 scw
79 1.1 scw /* ARGSUSED */
80 1.1 scw int
81 1.14 dsl clock_pcctwo_match(struct device *parent, struct cfdata *cf, void *aux)
82 1.1 scw {
83 1.1 scw struct pcctwo_attach_args *pa = aux;
84 1.1 scw
85 1.1 scw /* Only one clock, please. */
86 1.1 scw if (clock_pcctwo_sc)
87 1.1 scw return (0);
88 1.1 scw
89 1.1 scw if (strcmp(pa->pa_name, clock_cd.cd_name))
90 1.1 scw return (0);
91 1.1 scw
92 1.1 scw pa->pa_ipl = cf->pcctwocf_ipl;
93 1.1 scw
94 1.1 scw return (1);
95 1.1 scw }
96 1.1 scw
97 1.1 scw /* ARGSUSED */
98 1.1 scw void
99 1.14 dsl clock_pcctwo_attach(struct device *parent, struct device *self, void *aux)
100 1.1 scw {
101 1.1 scw struct clock_pcctwo_softc *sc;
102 1.1 scw struct pcctwo_attach_args *pa;
103 1.1 scw
104 1.10 thorpej sc = clock_pcctwo_sc = device_private(self);
105 1.1 scw pa = aux;
106 1.1 scw
107 1.1 scw if (pa->pa_ipl != CLOCK_LEVEL)
108 1.1 scw panic("clock_pcctwo_attach: wrong interrupt level");
109 1.1 scw
110 1.1 scw sc->sc_clock_args.ca_arg = sc;
111 1.1 scw sc->sc_clock_args.ca_initfunc = clock_pcctwo_initclocks;
112 1.1 scw
113 1.1 scw /* Do common portions of clock config. */
114 1.1 scw clock_config(self, &sc->sc_clock_args, pcctwointr_evcnt(pa->pa_ipl));
115 1.1 scw
116 1.1 scw /* Ensure our interrupts get disabled at shutdown time. */
117 1.1 scw (void) shutdownhook_establish(clock_pcctwo_shutdown, NULL);
118 1.1 scw
119 1.1 scw sc->sc_clock_lvl = (pa->pa_ipl & PCCTWO_ICR_LEVEL_MASK) |
120 1.1 scw PCCTWO_ICR_ICLR | PCCTWO_ICR_IEN;
121 1.1 scw
122 1.1 scw /* Attach the interrupt handlers. */
123 1.1 scw pcctwointr_establish(PCCTWOV_TIMER1, clock_pcctwo_profintr,
124 1.1 scw pa->pa_ipl, NULL, &clock_profcnt);
125 1.1 scw pcctwointr_establish(PCCTWOV_TIMER2, clock_pcctwo_statintr,
126 1.1 scw pa->pa_ipl, NULL, &clock_statcnt);
127 1.1 scw }
128 1.1 scw
129 1.1 scw void
130 1.14 dsl clock_pcctwo_initclocks(void *arg, int prof_us, int stat_us)
131 1.1 scw {
132 1.1 scw struct clock_pcctwo_softc *sc;
133 1.1 scw
134 1.1 scw sc = arg;
135 1.1 scw
136 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_CONTROL, PCCTWO_TT_CTRL_COVF);
137 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER1_COUNTER, 0);
138 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER1_COMPARE,
139 1.8 scw PCCTWO_US2LIM(prof_us));
140 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_CONTROL,
141 1.1 scw PCCTWO_TT_CTRL_CEN | PCCTWO_TT_CTRL_COC | PCCTWO_TT_CTRL_COVF);
142 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_ICSR, sc->sc_clock_lvl);
143 1.1 scw
144 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_CONTROL, PCCTWO_TT_CTRL_COVF);
145 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER2_COUNTER, 0);
146 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER2_COMPARE,
147 1.8 scw PCCTWO_US2LIM(stat_us));
148 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_CONTROL,
149 1.1 scw PCCTWO_TT_CTRL_CEN | PCCTWO_TT_CTRL_COC | PCCTWO_TT_CTRL_COVF);
150 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_ICSR, sc->sc_clock_lvl);
151 1.12 tsutsui
152 1.12 tsutsui sc->sc_tc.tc_get_timecount = clock_pcctwo_getcount;
153 1.12 tsutsui sc->sc_tc.tc_name = "pcctwo_count";
154 1.12 tsutsui sc->sc_tc.tc_frequency = PCCTWO_TIMERFREQ;
155 1.12 tsutsui sc->sc_tc.tc_quality = 100;
156 1.12 tsutsui sc->sc_tc.tc_counter_mask = ~0;
157 1.12 tsutsui tc_init(&sc->sc_tc);
158 1.1 scw }
159 1.1 scw
160 1.1 scw /* ARGSUSED */
161 1.12 tsutsui u_int
162 1.12 tsutsui clock_pcctwo_getcount(struct timecounter *tc)
163 1.1 scw {
164 1.12 tsutsui u_int cnt;
165 1.12 tsutsui uint32_t tc1, tc2;
166 1.12 tsutsui uint8_t cr;
167 1.12 tsutsui int s;
168 1.12 tsutsui
169 1.12 tsutsui s = splhigh();
170 1.1 scw
171 1.1 scw /*
172 1.1 scw * There's no way to latch the counter and overflow registers
173 1.1 scw * without pausing the clock, so compensate for the possible
174 1.1 scw * race by checking for counter wrap-around and re-reading the
175 1.1 scw * overflow counter if necessary.
176 1.1 scw *
177 1.12 tsutsui * Note: This only works because we're at splhigh().
178 1.1 scw */
179 1.12 tsutsui tc1 = pcc2_reg_read32(sys_pcctwo, PCC2REG_TIMER1_COUNTER);
180 1.1 scw cr = pcc2_reg_read(sys_pcctwo, PCC2REG_TIMER1_CONTROL);
181 1.12 tsutsui tc2 = pcc2_reg_read32(sys_pcctwo, PCC2REG_TIMER1_COUNTER);
182 1.12 tsutsui if (tc1 > tc2) {
183 1.1 scw cr = pcc2_reg_read(sys_pcctwo, PCC2REG_TIMER1_CONTROL);
184 1.12 tsutsui tc1 = tc2;
185 1.1 scw }
186 1.12 tsutsui cnt = clock_pcctwo_count;
187 1.12 tsutsui splx(s);
188 1.12 tsutsui /* XXX assume HZ == 100 */
189 1.12 tsutsui cnt += tc1 + (PCCTWO_TIMERFREQ / 100) * PCCTWO_TT_CTRL_OVF(cr);
190 1.1 scw
191 1.12 tsutsui return cnt;
192 1.1 scw }
193 1.1 scw
194 1.1 scw int
195 1.14 dsl clock_pcctwo_profintr(void *frame)
196 1.1 scw {
197 1.1 scw u_int8_t cr;
198 1.1 scw u_int32_t tc;
199 1.1 scw int s;
200 1.1 scw
201 1.1 scw s = splhigh();
202 1.1 scw tc = pcc2_reg_read32(sys_pcctwo, PCC2REG_TIMER1_COUNTER);
203 1.1 scw cr = pcc2_reg_read(sys_pcctwo, PCC2REG_TIMER1_CONTROL);
204 1.1 scw if (tc > pcc2_reg_read32(sys_pcctwo, PCC2REG_TIMER1_COUNTER))
205 1.1 scw cr = pcc2_reg_read(sys_pcctwo, PCC2REG_TIMER1_CONTROL);
206 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_CONTROL,
207 1.1 scw PCCTWO_TT_CTRL_CEN | PCCTWO_TT_CTRL_COC | PCCTWO_TT_CTRL_COVF);
208 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_ICSR,
209 1.1 scw clock_pcctwo_sc->sc_clock_lvl);
210 1.1 scw splx(s);
211 1.1 scw
212 1.12 tsutsui for (cr = PCCTWO_TT_CTRL_OVF(cr); cr; cr--) {
213 1.12 tsutsui /* XXX assume HZ == 100 */
214 1.12 tsutsui clock_pcctwo_count += PCCTWO_TIMERFREQ / 100;
215 1.1 scw hardclock(frame);
216 1.12 tsutsui }
217 1.1 scw
218 1.1 scw return (1);
219 1.1 scw }
220 1.1 scw
221 1.1 scw int
222 1.14 dsl clock_pcctwo_statintr(void *frame)
223 1.1 scw {
224 1.1 scw
225 1.1 scw /* Disable the timer interrupt while we handle it. */
226 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_ICSR, 0);
227 1.1 scw
228 1.1 scw statclock((struct clockframe *) frame);
229 1.1 scw
230 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_CONTROL, PCCTWO_TT_CTRL_COVF);
231 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER2_COUNTER, 0);
232 1.1 scw pcc2_reg_write32(sys_pcctwo, PCC2REG_TIMER2_COMPARE,
233 1.1 scw PCCTWO_US2LIM(CLOCK_NEWINT(clock_statvar, clock_statmin)));
234 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_CONTROL,
235 1.1 scw PCCTWO_TT_CTRL_CEN | PCCTWO_TT_CTRL_COC | PCCTWO_TT_CTRL_COVF);
236 1.1 scw
237 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_ICSR,
238 1.1 scw clock_pcctwo_sc->sc_clock_lvl);
239 1.1 scw
240 1.1 scw return (1);
241 1.1 scw }
242 1.1 scw
243 1.1 scw /* ARGSUSED */
244 1.1 scw void
245 1.14 dsl clock_pcctwo_shutdown(void *arg)
246 1.1 scw {
247 1.1 scw
248 1.1 scw /* Make sure the timer interrupts are turned off. */
249 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_CONTROL, PCCTWO_TT_CTRL_COVF);
250 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER1_ICSR, 0);
251 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_CONTROL, PCCTWO_TT_CTRL_COVF);
252 1.1 scw pcc2_reg_write(sys_pcctwo, PCC2REG_TIMER2_ICSR, 0);
253 1.1 scw }
254