vrip.c revision 1.19 1 1.19 takemura /* $NetBSD: vrip.c,v 1.19 2002/02/11 07:55:51 takemura Exp $ */
2 1.1 takemura
3 1.1 takemura /*-
4 1.14 takemura * Copyright (c) 1999, 2002
5 1.1 takemura * Shin Takemura and PocketBSD Project. All rights reserved.
6 1.1 takemura *
7 1.1 takemura * Redistribution and use in source and binary forms, with or without
8 1.1 takemura * modification, are permitted provided that the following conditions
9 1.1 takemura * are met:
10 1.1 takemura * 1. Redistributions of source code must retain the above copyright
11 1.1 takemura * notice, this list of conditions and the following disclaimer.
12 1.1 takemura * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 takemura * notice, this list of conditions and the following disclaimer in the
14 1.1 takemura * documentation and/or other materials provided with the distribution.
15 1.14 takemura * 3. Neither the name of the project nor the names of its contributors
16 1.1 takemura * may be used to endorse or promote products derived from this software
17 1.1 takemura * without specific prior written permission.
18 1.1 takemura *
19 1.1 takemura * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 takemura * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 takemura * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 takemura * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 takemura * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 takemura * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 takemura * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 takemura * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 takemura * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 takemura * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 takemura * SUCH DAMAGE.
30 1.1 takemura *
31 1.1 takemura */
32 1.7 sato #include "opt_vr41xx.h"
33 1.7 sato #include "opt_tx39xx.h"
34 1.7 sato
35 1.1 takemura #include <sys/param.h>
36 1.1 takemura #include <sys/systm.h>
37 1.1 takemura #include <sys/device.h>
38 1.1 takemura #include <sys/reboot.h>
39 1.1 takemura
40 1.1 takemura #include <machine/cpu.h>
41 1.1 takemura #include <machine/bus.h>
42 1.1 takemura #include <machine/autoconf.h>
43 1.8 sato #include <machine/platid.h>
44 1.8 sato #include <machine/platid_mask.h>
45 1.1 takemura
46 1.1 takemura #include <hpcmips/vr/vr.h>
47 1.9 sato #include <hpcmips/vr/vrcpudef.h>
48 1.15 takemura #include <hpcmips/vr/vripunit.h>
49 1.15 takemura #include <hpcmips/vr/vripif.h>
50 1.1 takemura #include <hpcmips/vr/vripreg.h>
51 1.1 takemura #include <hpcmips/vr/vripvar.h>
52 1.1 takemura #include <hpcmips/vr/icureg.h>
53 1.15 takemura #include <hpcmips/vr/cmureg.h>
54 1.1 takemura #include "locators.h"
55 1.1 takemura
56 1.16 uch #ifdef VRIP_DEBUG
57 1.16 uch #define DPRINTF_ENABLE
58 1.16 uch #define DPRINTF_DEBUG vrip_debug
59 1.16 uch #endif
60 1.16 uch #define USE_HPC_DPRINTF
61 1.16 uch #include <machine/debug.h>
62 1.16 uch
63 1.16 uch #ifdef VRIP_DEBUG
64 1.16 uch #define DBG_BIT_PRINT(reg) if (vrip_debug) dbg_bit_print(reg);
65 1.16 uch #define DUMP_LEVEL2MASK(sc,arg) if (vrip_debug) __vrip_dump_level2mask(sc,arg)
66 1.3 takemura #else
67 1.16 uch #define DBG_BIT_PRINT(arg)
68 1.16 uch #define DUMP_LEVEL2MASK(sc,arg)
69 1.3 takemura #endif
70 1.3 takemura
71 1.15 takemura #define VALID_UNIT(sc, unit) (0 <= (unit) && (unit) < (sc)->sc_nunits)
72 1.15 takemura
73 1.18 takemura #ifdef SINGLE_VRIP_BASE
74 1.12 uch int vripmatch(struct device *, struct cfdata *, void *);
75 1.12 uch void vripattach(struct device *, struct device *, void *);
76 1.18 takemura #endif
77 1.12 uch int vrip_print(void *, const char *);
78 1.12 uch int vrip_search(struct device *, struct cfdata *, void *);
79 1.12 uch int vrip_intr(void *, u_int32_t, u_int32_t);
80 1.1 takemura
81 1.15 takemura int __vrip_power(vrip_chipset_tag_t, int, int);
82 1.15 takemura vrip_intr_handle_t __vrip_intr_establish(vrip_chipset_tag_t, int, int,
83 1.15 takemura int, int(*)(void*), void*);
84 1.15 takemura void __vrip_intr_disestablish(vrip_chipset_tag_t, vrip_intr_handle_t);
85 1.15 takemura void __vrip_intr_setmask1(vrip_chipset_tag_t, vrip_intr_handle_t, int);
86 1.15 takemura void __vrip_intr_setmask2(vrip_chipset_tag_t, vrip_intr_handle_t,
87 1.15 takemura u_int32_t, int);
88 1.15 takemura void __vrip_intr_getstatus2(vrip_chipset_tag_t, vrip_intr_handle_t,
89 1.15 takemura u_int32_t*);
90 1.15 takemura void __vrip_register_cmu(vrip_chipset_tag_t, vrcmu_chipset_tag_t);
91 1.15 takemura void __vrip_register_gpio(vrip_chipset_tag_t, hpcio_chip_t);
92 1.17 takemura void __vrip_register_dmaau(vrip_chipset_tag_t, vrdmaau_chipset_tag_t);
93 1.17 takemura void __vrip_register_dcu(vrip_chipset_tag_t, vrdcu_chipset_tag_t);
94 1.15 takemura void __vrip_dump_level2mask(vrip_chipset_tag_t, void *);
95 1.1 takemura
96 1.15 takemura struct vrip_softc *the_vrip_sc = NULL;
97 1.1 takemura
98 1.15 takemura static const struct vrip_chipset_tag vrip_chipset_methods = {
99 1.15 takemura .vc_power = __vrip_power,
100 1.15 takemura .vc_intr_establish = __vrip_intr_establish,
101 1.15 takemura .vc_intr_disestablish = __vrip_intr_disestablish,
102 1.15 takemura .vc_intr_setmask1 = __vrip_intr_setmask1,
103 1.15 takemura .vc_intr_setmask2 = __vrip_intr_setmask2,
104 1.15 takemura .vc_intr_getstatus2 = __vrip_intr_getstatus2,
105 1.15 takemura .vc_register_cmu = __vrip_register_cmu,
106 1.15 takemura .vc_register_gpio = __vrip_register_gpio,
107 1.17 takemura .vc_register_dmaau = __vrip_register_dmaau,
108 1.17 takemura .vc_register_dcu = __vrip_register_dcu,
109 1.15 takemura };
110 1.2 takemura
111 1.18 takemura #ifdef SINGLE_VRIP_BASE
112 1.18 takemura struct cfattach vrip_ca = {
113 1.18 takemura sizeof(struct vrip_softc), vripmatch, vripattach
114 1.18 takemura };
115 1.18 takemura
116 1.15 takemura static const struct vrip_unit vrip_units[] = {
117 1.15 takemura [VRIP_UNIT_PMU] = { "pmu",
118 1.15 takemura { VRIP_INTR_POWER, VRIP_INTR_BAT, }, },
119 1.15 takemura [VRIP_UNIT_RTC] = { "rtc",
120 1.15 takemura { VRIP_INTR_RTCL1, }, },
121 1.15 takemura [VRIP_UNIT_PIU] = { "piu",
122 1.15 takemura { VRIP_INTR_PIU, },
123 1.15 takemura CMUMASK_PIU,
124 1.15 takemura ICUPIUINT_REG_W, MPIUINT_REG_W },
125 1.15 takemura [VRIP_UNIT_KIU] = { "kiu",
126 1.15 takemura { VRIP_INTR_KIU, },
127 1.15 takemura CMUMASK_KIU,
128 1.15 takemura KIUINT_REG_W, MKIUINT_REG_W },
129 1.15 takemura [VRIP_UNIT_SIU] = { "siu",
130 1.15 takemura { VRIP_INTR_SIU, }, },
131 1.15 takemura [VRIP_UNIT_GIU] = { "giu",
132 1.15 takemura { VRIP_INTR_GIU, },
133 1.15 takemura 0,
134 1.15 takemura GIUINT_L_REG_W,MGIUINT_L_REG_W,
135 1.12 uch GIUINT_H_REG_W, MGIUINT_H_REG_W },
136 1.15 takemura [VRIP_UNIT_LED] = { "led",
137 1.15 takemura { VRIP_INTR_LED, }, },
138 1.15 takemura [VRIP_UNIT_AIU] = { "aiu",
139 1.15 takemura { VRIP_INTR_AIU, },
140 1.15 takemura CMUMASK_AIU,
141 1.15 takemura AIUINT_REG_W, MAIUINT_REG_W },
142 1.15 takemura [VRIP_UNIT_FIR] = { "fir",
143 1.15 takemura { VRIP_INTR_FIR, },
144 1.15 takemura CMUMASK_FIR,
145 1.15 takemura FIRINT_REG_W, MFIRINT_REG_W },
146 1.15 takemura [VRIP_UNIT_DSIU]= { "dsiu",
147 1.15 takemura { VRIP_INTR_DSIU, },
148 1.15 takemura CMUMASK_DSIU,
149 1.15 takemura DSIUINT_REG_W, MDSIUINT_REG_W },
150 1.15 takemura [VRIP_UNIT_PCIU]= { "pciu",
151 1.15 takemura { VRIP_INTR_PCI, },
152 1.15 takemura CMUMASK_PCIU,
153 1.15 takemura PCIINT_REG_W, MPCIINT_REG_W },
154 1.15 takemura [VRIP_UNIT_SCU] = { "scu",
155 1.15 takemura { VRIP_INTR_SCU, },
156 1.15 takemura 0,
157 1.15 takemura SCUINT_REG_W, MSCUINT_REG_W },
158 1.15 takemura [VRIP_UNIT_CSI] = { "csi",
159 1.15 takemura { VRIP_INTR_CSI, },
160 1.15 takemura CMUMASK_CSI,
161 1.15 takemura CSIINT_REG_W, MCSIINT_REG_W },
162 1.15 takemura [VRIP_UNIT_BCU] = { "bcu",
163 1.15 takemura { VRIP_INTR_BCU, },
164 1.15 takemura 0,
165 1.17 takemura BCUINT_REG_W, MBCUINT_REG_W },
166 1.1 takemura };
167 1.9 sato
168 1.1 takemura int
169 1.12 uch vripmatch(struct device *parent, struct cfdata *match, void *aux)
170 1.1 takemura {
171 1.1 takemura struct mainbus_attach_args *ma = aux;
172 1.7 sato
173 1.7 sato #ifdef TX39XX
174 1.7 sato if (!platid_match(&platid, &platid_mask_CPU_MIPS_VR_41XX))
175 1.13 uch return (0);
176 1.13 uch #endif /* TX39XX */
177 1.1 takemura if (strcmp(ma->ma_name, match->cf_driver->cd_name))
178 1.12 uch return (0);
179 1.12 uch
180 1.12 uch return (1);
181 1.1 takemura }
182 1.1 takemura
183 1.1 takemura void
184 1.12 uch vripattach(struct device *parent, struct device *self, void *aux)
185 1.1 takemura {
186 1.15 takemura struct vrip_softc *sc = (struct vrip_softc*)self;
187 1.15 takemura
188 1.15 takemura printf("\n");
189 1.15 takemura
190 1.15 takemura sc->sc_units = vrip_units;
191 1.15 takemura sc->sc_nunits = sizeof(vrip_units)/sizeof(struct vrip_unit);
192 1.18 takemura sc->sc_icu_addr = VRIP_ICU_ADDR;
193 1.18 takemura sc->sc_sysint2 = SYSINT2_REG_W;
194 1.18 takemura sc->sc_msysint2 = MSYSINT2_REG_W;
195 1.15 takemura
196 1.15 takemura vripattach_common(parent, self, aux);
197 1.15 takemura }
198 1.18 takemura #endif /* SINGLE_VRIP_BASE */
199 1.15 takemura
200 1.15 takemura void
201 1.15 takemura vripattach_common(struct device *parent, struct device *self, void *aux)
202 1.15 takemura {
203 1.1 takemura struct mainbus_attach_args *ma = aux;
204 1.1 takemura struct vrip_softc *sc = (struct vrip_softc*)self;
205 1.1 takemura
206 1.15 takemura sc->sc_chipset = vrip_chipset_methods; /* structure assignment */
207 1.15 takemura sc->sc_chipset.vc_sc = sc;
208 1.19 takemura
209 1.19 takemura #ifdef DIAGNOSTIC
210 1.19 takemura if (sc->sc_icu_addr == 0 ||
211 1.19 takemura sc->sc_sysint2 == 0 ||
212 1.19 takemura sc->sc_msysint2 == 0)
213 1.19 takemura panic("vripattach: missing register info.");
214 1.19 takemura #endif /* DIAGNOSTIC */
215 1.15 takemura
216 1.1 takemura /*
217 1.1 takemura * Map ICU (Interrupt Control Unit) register space.
218 1.1 takemura */
219 1.1 takemura sc->sc_iot = ma->ma_iot;
220 1.18 takemura if (bus_space_map(sc->sc_iot, sc->sc_icu_addr,
221 1.12 uch 0x20 /*XXX lower area only*/,
222 1.12 uch 0, /* no flags */
223 1.12 uch &sc->sc_ioh)) {
224 1.1 takemura printf("vripattach: can't map ICU register.\n");
225 1.1 takemura return;
226 1.1 takemura }
227 1.1 takemura
228 1.1 takemura /*
229 1.1 takemura * Disable all Level 1 interrupts.
230 1.1 takemura */
231 1.2 takemura sc->sc_intrmask = 0;
232 1.1 takemura bus_space_write_2(sc->sc_iot, sc->sc_ioh, MSYSINT1_REG_W, 0x0000);
233 1.18 takemura bus_space_write_2(sc->sc_iot, sc->sc_ioh, sc->sc_msysint2, 0x0000);
234 1.1 takemura /*
235 1.1 takemura * Level 1 interrupts are redirected to HwInt0
236 1.1 takemura */
237 1.1 takemura vr_intr_establish(VR_INTR0, vrip_intr, self);
238 1.2 takemura the_vrip_sc = sc;
239 1.1 takemura /*
240 1.1 takemura * Attach each devices
241 1.17 takemura * GIU CMU DMAAU DCU interface interface is used by other system
242 1.17 takemura * device. so attach first
243 1.1 takemura */
244 1.1 takemura sc->sc_pri = 2;
245 1.1 takemura config_search(vrip_search, self, vrip_print);
246 1.1 takemura /* Other system devices. */
247 1.1 takemura sc->sc_pri = 1;
248 1.1 takemura config_search(vrip_search, self, vrip_print);
249 1.1 takemura }
250 1.1 takemura
251 1.1 takemura int
252 1.12 uch vrip_print(void *aux, const char *hoge)
253 1.1 takemura {
254 1.1 takemura struct vrip_attach_args *va = (struct vrip_attach_args*)aux;
255 1.1 takemura
256 1.1 takemura if (va->va_addr)
257 1.5 takemura printf(" addr 0x%lx", va->va_addr);
258 1.1 takemura if (va->va_size > 1)
259 1.5 takemura printf("-0x%lx", va->va_addr + va->va_size - 1);
260 1.12 uch
261 1.1 takemura return (UNCONF);
262 1.1 takemura }
263 1.1 takemura
264 1.1 takemura int
265 1.12 uch vrip_search(struct device *parent, struct cfdata *cf, void *aux)
266 1.1 takemura {
267 1.1 takemura struct vrip_softc *sc = (struct vrip_softc *)parent;
268 1.1 takemura struct vrip_attach_args va;
269 1.1 takemura
270 1.15 takemura va.va_vc = &sc->sc_chipset;
271 1.1 takemura va.va_iot = sc->sc_iot;
272 1.15 takemura va.va_unit = cf->cf_loc[VRIPIFCF_UNIT];
273 1.15 takemura va.va_addr = cf->cf_loc[VRIPIFCF_ADDR];
274 1.15 takemura va.va_size = cf->cf_loc[VRIPIFCF_SIZE];
275 1.15 takemura va.va_addr2 = cf->cf_loc[VRIPIFCF_ADDR2];
276 1.15 takemura va.va_size2 = cf->cf_loc[VRIPIFCF_SIZE2];
277 1.10 takemura va.va_gpio_chips = sc->sc_gpio_chips;
278 1.17 takemura va.va_cc = sc->sc_chipset.vc_cc;
279 1.17 takemura va.va_ac = sc->sc_chipset.vc_ac;
280 1.17 takemura va.va_dc = sc->sc_chipset.vc_dc;
281 1.1 takemura if (((*cf->cf_attach->ca_match)(parent, cf, &va) == sc->sc_pri))
282 1.1 takemura config_attach(parent, cf, &va, vrip_print);
283 1.1 takemura
284 1.12 uch return (0);
285 1.1 takemura }
286 1.1 takemura
287 1.15 takemura int
288 1.15 takemura __vrip_power(vrip_chipset_tag_t vc, int unit, int onoff)
289 1.15 takemura {
290 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
291 1.15 takemura const struct vrip_unit *vu;
292 1.15 takemura
293 1.15 takemura if (sc->sc_chipset.vc_cc == NULL)
294 1.15 takemura return (0); /* You have no clock mask unit yet. */
295 1.15 takemura if (!VALID_UNIT(sc, unit))
296 1.15 takemura return (0);
297 1.15 takemura vu = &sc->sc_units[unit];
298 1.15 takemura
299 1.15 takemura return (*sc->sc_chipset.vc_cc->cc_clock)(sc->sc_chipset.vc_cc,
300 1.15 takemura vu->vu_clkmask, onoff);
301 1.15 takemura }
302 1.15 takemura
303 1.15 takemura vrip_intr_handle_t
304 1.15 takemura __vrip_intr_establish(vrip_chipset_tag_t vc, int unit, int line, int level,
305 1.12 uch int (*ih_fun)(void *), void *ih_arg)
306 1.1 takemura {
307 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
308 1.15 takemura const struct vrip_unit *vu;
309 1.1 takemura struct intrhand *ih;
310 1.1 takemura
311 1.15 takemura if (!VALID_UNIT(sc, unit))
312 1.15 takemura return (NULL);
313 1.15 takemura vu = &sc->sc_units[unit];
314 1.15 takemura ih = &sc->sc_intrhands[vu->vu_intr[line]];
315 1.1 takemura if (ih->ih_fun) /* Can't share level 1 interrupt */
316 1.15 takemura return (NULL);
317 1.1 takemura ih->ih_fun = ih_fun;
318 1.1 takemura ih->ih_arg = ih_arg;
319 1.15 takemura ih->ih_unit = vu;
320 1.1 takemura
321 1.1 takemura /* Mask level 2 interrupt mask register. (disable interrupt) */
322 1.1 takemura vrip_intr_setmask2(vc, ih, ~0, 0);
323 1.1 takemura /* Unmask Level 1 interrupt mask register (enable interrupt) */
324 1.1 takemura vrip_intr_setmask1(vc, ih, 1);
325 1.1 takemura
326 1.12 uch return ((void *)ih);
327 1.1 takemura }
328 1.1 takemura
329 1.1 takemura void
330 1.15 takemura __vrip_intr_disestablish(vrip_chipset_tag_t vc, vrip_intr_handle_t handle)
331 1.1 takemura {
332 1.15 takemura struct intrhand *ih = handle;
333 1.12 uch
334 1.1 takemura ih->ih_fun = NULL;
335 1.1 takemura ih->ih_arg = NULL;
336 1.1 takemura /* Mask level 2 interrupt mask register(if any). (disable interrupt) */
337 1.1 takemura vrip_intr_setmask2(vc, ih, ~0, 0);
338 1.1 takemura /* Mask Level 1 interrupt mask register (disable interrupt) */
339 1.1 takemura vrip_intr_setmask1(vc, ih, 0);
340 1.1 takemura }
341 1.1 takemura
342 1.2 takemura void
343 1.2 takemura vrip_intr_suspend()
344 1.2 takemura {
345 1.18 takemura struct vrip_softc *sc = the_vrip_sc;
346 1.18 takemura bus_space_tag_t iot = sc->sc_iot;
347 1.18 takemura bus_space_handle_t ioh = sc->sc_ioh;
348 1.2 takemura
349 1.2 takemura bus_space_write_2 (iot, ioh, MSYSINT1_REG_W, (1<<VRIP_INTR_POWER));
350 1.18 takemura bus_space_write_2 (iot, ioh, sc->sc_msysint2, 0);
351 1.2 takemura }
352 1.2 takemura
353 1.2 takemura void
354 1.2 takemura vrip_intr_resume()
355 1.2 takemura {
356 1.18 takemura struct vrip_softc *sc = the_vrip_sc;
357 1.18 takemura u_int32_t reg = sc->sc_intrmask;
358 1.18 takemura bus_space_tag_t iot = sc->sc_iot;
359 1.18 takemura bus_space_handle_t ioh = sc->sc_ioh;
360 1.2 takemura
361 1.2 takemura bus_space_write_2 (iot, ioh, MSYSINT1_REG_W, reg & 0xffff);
362 1.18 takemura bus_space_write_2 (iot, ioh, sc->sc_msysint2, (reg >> 16) & 0xffff);
363 1.2 takemura }
364 1.2 takemura
365 1.1 takemura /* Set level 1 interrupt mask. */
366 1.1 takemura void
367 1.15 takemura __vrip_intr_setmask1(vrip_chipset_tag_t vc, vrip_intr_handle_t handle,
368 1.15 takemura int enable)
369 1.1 takemura {
370 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
371 1.15 takemura struct intrhand *ih = handle;
372 1.15 takemura int level1 = ih - sc->sc_intrhands;
373 1.1 takemura bus_space_tag_t iot = sc->sc_iot;
374 1.1 takemura bus_space_handle_t ioh = sc->sc_ioh;
375 1.2 takemura u_int32_t reg = sc->sc_intrmask;
376 1.1 takemura
377 1.16 uch DPRINTF(("__vrip_intr_setmask1: SYSINT: %s %d\n",
378 1.16 uch enable ? "enable" : "disable", level1));
379 1.1 takemura reg = (bus_space_read_2 (iot, ioh, MSYSINT1_REG_W)&0xffff) |
380 1.18 takemura ((bus_space_read_2 (iot, ioh, sc->sc_msysint2) << 16)&0xffff0000);
381 1.1 takemura if (enable)
382 1.1 takemura reg |= (1 << level1);
383 1.1 takemura else {
384 1.1 takemura reg &= ~(1 << level1);
385 1.1 takemura }
386 1.2 takemura sc->sc_intrmask = reg;
387 1.1 takemura bus_space_write_2 (iot, ioh, MSYSINT1_REG_W, reg & 0xffff);
388 1.18 takemura bus_space_write_2 (iot, ioh, sc->sc_msysint2, (reg >> 16) & 0xffff);
389 1.16 uch DBG_BIT_PRINT(reg);
390 1.1 takemura
391 1.1 takemura return;
392 1.1 takemura }
393 1.1 takemura
394 1.15 takemura void
395 1.15 takemura __vrip_dump_level2mask(vrip_chipset_tag_t vc, vrip_intr_handle_t handle)
396 1.1 takemura {
397 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
398 1.15 takemura struct intrhand *ih = handle;
399 1.15 takemura const struct vrip_unit *vu = ih->ih_unit;
400 1.1 takemura u_int32_t reg;
401 1.1 takemura
402 1.15 takemura if (vu->vu_mlreg) {
403 1.16 uch DPRINTF(("level1[%d] level2 mask:", vu->vu_intr[0]));
404 1.15 takemura reg = bus_space_read_2(sc->sc_iot, sc->sc_ioh, vu->vu_mlreg);
405 1.15 takemura if (vu->vu_mhreg) { /* GIU [16:31] case only */
406 1.16 uch reg |= (bus_space_read_2(sc->sc_iot, sc->sc_ioh,
407 1.16 uch vu->vu_mhreg) << 16);
408 1.16 uch dbg_bit_print(reg);
409 1.1 takemura } else
410 1.16 uch dbg_bit_print(reg);
411 1.1 takemura }
412 1.1 takemura }
413 1.1 takemura
414 1.1 takemura /* Get level 2 interrupt status */
415 1.1 takemura void
416 1.15 takemura __vrip_intr_getstatus2(vrip_chipset_tag_t vc, vrip_intr_handle_t handle,
417 1.12 uch u_int32_t *mask /* Level 2 mask */)
418 1.1 takemura {
419 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
420 1.15 takemura struct intrhand *ih = handle;
421 1.15 takemura const struct vrip_unit *vu = ih->ih_unit;
422 1.1 takemura u_int32_t reg;
423 1.12 uch
424 1.1 takemura reg = bus_space_read_2(sc->sc_iot, sc->sc_ioh,
425 1.15 takemura vu->vu_lreg);
426 1.1 takemura reg |= ((bus_space_read_2(sc->sc_iot, sc->sc_ioh,
427 1.15 takemura vu->vu_hreg) << 16)&0xffff0000);
428 1.16 uch /* dbg_bit_print(reg);*/
429 1.1 takemura *mask = reg;
430 1.1 takemura }
431 1.1 takemura
432 1.1 takemura /* Set level 2 interrupt mask. */
433 1.1 takemura void
434 1.15 takemura __vrip_intr_setmask2(vrip_chipset_tag_t vc, vrip_intr_handle_t handle,
435 1.12 uch u_int32_t mask /* Level 2 mask */, int onoff)
436 1.1 takemura {
437 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
438 1.15 takemura struct intrhand *ih = handle;
439 1.15 takemura const struct vrip_unit *vu = ih->ih_unit;
440 1.1 takemura u_int16_t reg;
441 1.3 takemura
442 1.6 sato DPRINTF(("vrip_intr_setmask2:\n"));
443 1.16 uch DUMP_LEVEL2MASK(vc, handle);
444 1.1 takemura #ifdef WINCE_DEFAULT_SETTING
445 1.1 takemura #warning WINCE_DEFAULT_SETTING
446 1.1 takemura #else
447 1.15 takemura if (vu->vu_mlreg) {
448 1.15 takemura reg = bus_space_read_2(sc->sc_iot, sc->sc_ioh, vu->vu_mlreg);
449 1.1 takemura if (onoff)
450 1.1 takemura reg |= (mask&0xffff);
451 1.1 takemura else
452 1.1 takemura reg &= ~(mask&0xffff);
453 1.15 takemura bus_space_write_2(sc->sc_iot, sc->sc_ioh, vu->vu_mlreg, reg);
454 1.15 takemura if (vu->vu_mhreg != -1) { /* GIU [16:31] case only */
455 1.12 uch reg = bus_space_read_2(sc->sc_iot, sc->sc_ioh,
456 1.15 takemura vu->vu_mhreg);
457 1.1 takemura if (onoff)
458 1.1 takemura reg |= ((mask >> 16) & 0xffff);
459 1.1 takemura else
460 1.12 uch reg &= ~((mask >> 16) & 0xffff);
461 1.1 takemura bus_space_write_2(sc->sc_iot, sc->sc_ioh,
462 1.15 takemura vu->vu_mhreg, reg);
463 1.1 takemura }
464 1.1 takemura }
465 1.1 takemura #endif /* WINCE_DEFAULT_SETTING */
466 1.16 uch DUMP_LEVEL2MASK(vc, handle);
467 1.3 takemura
468 1.1 takemura return;
469 1.1 takemura }
470 1.1 takemura
471 1.1 takemura int
472 1.12 uch vrip_intr(void *arg, u_int32_t pc, u_int32_t statusReg)
473 1.1 takemura {
474 1.1 takemura struct vrip_softc *sc = (struct vrip_softc*)arg;
475 1.1 takemura bus_space_tag_t iot = sc->sc_iot;
476 1.1 takemura bus_space_handle_t ioh = sc->sc_ioh;
477 1.1 takemura int i;
478 1.1 takemura u_int32_t reg, mask;
479 1.1 takemura /*
480 1.1 takemura * Read level1 interrupt status.
481 1.1 takemura */
482 1.1 takemura reg = (bus_space_read_2 (iot, ioh, SYSINT1_REG_W)&0xffff) |
483 1.18 takemura ((bus_space_read_2 (iot, ioh, sc->sc_sysint2)<< 16)&0xffff0000);
484 1.1 takemura mask = (bus_space_read_2 (iot, ioh, MSYSINT1_REG_W)&0xffff) |
485 1.18 takemura ((bus_space_read_2 (iot, ioh, sc->sc_msysint2)<< 16)&0xffff0000);
486 1.1 takemura reg &= mask;
487 1.1 takemura
488 1.1 takemura /*
489 1.1 takemura * Dispatch each handler.
490 1.1 takemura */
491 1.1 takemura for (i = 0; i < 32; i++) {
492 1.15 takemura register struct intrhand *ih = &sc->sc_intrhands[i];
493 1.1 takemura if (ih->ih_fun && (reg & (1 << i))) {
494 1.1 takemura ih->ih_fun(ih->ih_arg);
495 1.1 takemura }
496 1.1 takemura }
497 1.12 uch
498 1.12 uch return (1);
499 1.1 takemura }
500 1.1 takemura
501 1.1 takemura void
502 1.15 takemura __vrip_register_cmu(vrip_chipset_tag_t vc, vrcmu_chipset_tag_t cmu)
503 1.1 takemura {
504 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
505 1.12 uch
506 1.15 takemura sc->sc_chipset.vc_cc = cmu;
507 1.1 takemura }
508 1.1 takemura
509 1.1 takemura void
510 1.15 takemura __vrip_register_gpio(vrip_chipset_tag_t vc, hpcio_chip_t chip)
511 1.1 takemura {
512 1.15 takemura struct vrip_softc *sc = vc->vc_sc;
513 1.10 takemura
514 1.10 takemura if (chip->hc_chipid < 0 || VRIP_NIOCHIPS <= chip->hc_chipid)
515 1.10 takemura panic("%s: '%s' has unknown id, %d", __FUNCTION__,
516 1.10 takemura chip->hc_name, chip->hc_chipid);
517 1.10 takemura sc->sc_gpio_chips[chip->hc_chipid] = chip;
518 1.17 takemura }
519 1.17 takemura
520 1.17 takemura void
521 1.17 takemura __vrip_register_dmaau(vrip_chipset_tag_t vc, vrdmaau_chipset_tag_t dmaau)
522 1.17 takemura {
523 1.17 takemura struct vrip_softc *sc = vc->vc_sc;
524 1.17 takemura
525 1.17 takemura sc->sc_chipset.vc_ac = dmaau;
526 1.17 takemura }
527 1.17 takemura
528 1.17 takemura void
529 1.17 takemura __vrip_register_dcu(vrip_chipset_tag_t vc, vrdcu_chipset_tag_t dcu)
530 1.17 takemura {
531 1.17 takemura struct vrip_softc *sc = vc->vc_sc;
532 1.17 takemura
533 1.17 takemura sc->sc_chipset.vc_dc = dcu;
534 1.1 takemura }
535