vsbus.c revision 1.52 1 1.52 christos /* $NetBSD: vsbus.c,v 1.52 2007/03/04 19:21:56 christos Exp $ */
2 1.1 ragge /*
3 1.20 ragge * Copyright (c) 1996, 1999 Ludd, University of Lule}, Sweden.
4 1.1 ragge * All rights reserved.
5 1.1 ragge *
6 1.1 ragge * This code is derived from software contributed to Ludd by Bertram Barth.
7 1.1 ragge *
8 1.1 ragge * Redistribution and use in source and binary forms, with or without
9 1.1 ragge * modification, are permitted provided that the following conditions
10 1.1 ragge * are met:
11 1.1 ragge * 1. Redistributions of source code must retain the above copyright
12 1.1 ragge * notice, this list of conditions and the following disclaimer.
13 1.1 ragge * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 ragge * notice, this list of conditions and the following disclaimer in the
15 1.1 ragge * documentation and/or other materials provided with the distribution.
16 1.1 ragge * 3. All advertising materials mentioning features or use of this software
17 1.1 ragge * must display the following acknowledgement:
18 1.1 ragge * This product includes software developed at Ludd, University of
19 1.1 ragge * Lule}, Sweden and its contributors.
20 1.1 ragge * 4. The name of the author may not be used to endorse or promote products
21 1.1 ragge * derived from this software without specific prior written permission
22 1.1 ragge *
23 1.1 ragge * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 ragge * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 ragge * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 ragge * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 ragge * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 ragge * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 ragge * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 ragge * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 ragge * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 ragge * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 ragge */
34 1.44 lukem
35 1.44 lukem #include <sys/cdefs.h>
36 1.52 christos __KERNEL_RCSID(0, "$NetBSD: vsbus.c,v 1.52 2007/03/04 19:21:56 christos Exp $");
37 1.1 ragge
38 1.1 ragge #include <sys/param.h>
39 1.1 ragge #include <sys/systm.h>
40 1.1 ragge #include <sys/buf.h>
41 1.1 ragge #include <sys/conf.h>
42 1.1 ragge #include <sys/file.h>
43 1.1 ragge #include <sys/ioctl.h>
44 1.1 ragge #include <sys/proc.h>
45 1.1 ragge #include <sys/user.h>
46 1.1 ragge #include <sys/device.h>
47 1.1 ragge #include <sys/disklabel.h>
48 1.1 ragge #include <sys/syslog.h>
49 1.1 ragge #include <sys/stat.h>
50 1.1 ragge
51 1.29 mrg #include <uvm/uvm_extern.h>
52 1.20 ragge
53 1.27 ragge #define _VAX_BUS_DMA_PRIVATE
54 1.17 ragge #include <machine/bus.h>
55 1.1 ragge #include <machine/pte.h>
56 1.1 ragge #include <machine/sid.h>
57 1.1 ragge #include <machine/scb.h>
58 1.1 ragge #include <machine/cpu.h>
59 1.1 ragge #include <machine/trap.h>
60 1.1 ragge #include <machine/nexus.h>
61 1.1 ragge
62 1.1 ragge #include <machine/uvax.h>
63 1.1 ragge #include <machine/ka410.h>
64 1.12 ragge #include <machine/ka420.h>
65 1.1 ragge #include <machine/ka43.h>
66 1.1 ragge
67 1.1 ragge #include <machine/vsbus.h>
68 1.1 ragge
69 1.10 ragge #include "ioconf.h"
70 1.46 chs #include "locators.h"
71 1.26 matt #include "opt_cputype.h"
72 1.1 ragge
73 1.27 ragge int vsbus_match(struct device *, struct cfdata *, void *);
74 1.27 ragge void vsbus_attach(struct device *, struct device *, void *);
75 1.27 ragge int vsbus_print(void *, const char *);
76 1.48 drochner int vsbus_search(struct device *, struct cfdata *,
77 1.49 drochner const int *, void *);
78 1.1 ragge
79 1.21 matt static struct vax_bus_dma_tag vsbus_bus_dma_tag = {
80 1.17 ragge 0,
81 1.17 ragge 0,
82 1.17 ragge 0,
83 1.17 ragge 0,
84 1.17 ragge 0,
85 1.17 ragge 0,
86 1.17 ragge _bus_dmamap_create,
87 1.17 ragge _bus_dmamap_destroy,
88 1.17 ragge _bus_dmamap_load,
89 1.17 ragge _bus_dmamap_load_mbuf,
90 1.17 ragge _bus_dmamap_load_uio,
91 1.17 ragge _bus_dmamap_load_raw,
92 1.17 ragge _bus_dmamap_unload,
93 1.17 ragge _bus_dmamap_sync,
94 1.17 ragge _bus_dmamem_alloc,
95 1.17 ragge _bus_dmamem_free,
96 1.17 ragge _bus_dmamem_map,
97 1.17 ragge _bus_dmamem_unmap,
98 1.17 ragge _bus_dmamem_mmap,
99 1.17 ragge };
100 1.17 ragge
101 1.21 matt extern struct vax_bus_space vax_mem_bus_space;
102 1.27 ragge static SIMPLEQ_HEAD(, vsbus_dma) vsbus_dma;
103 1.21 matt
104 1.38 thorpej CFATTACH_DECL(vsbus, sizeof(struct vsbus_softc),
105 1.39 thorpej vsbus_match, vsbus_attach, NULL, NULL);
106 1.6 ragge
107 1.1 ragge int
108 1.1 ragge vsbus_print(aux, name)
109 1.1 ragge void *aux;
110 1.2 cgd const char *name;
111 1.1 ragge {
112 1.10 ragge struct vsbus_attach_args *va = aux;
113 1.1 ragge
114 1.40 thorpej aprint_normal(" csr 0x%lx vec %o ipl %x maskbit %d", va->va_paddr,
115 1.16 ragge va->va_cvec & 511, va->va_br, va->va_maskno - 1);
116 1.16 ragge return(UNCONF);
117 1.1 ragge }
118 1.1 ragge
119 1.1 ragge int
120 1.1 ragge vsbus_match(parent, cf, aux)
121 1.1 ragge struct device *parent;
122 1.9 ragge struct cfdata *cf;
123 1.1 ragge void *aux;
124 1.1 ragge {
125 1.32 matt #if VAX53 || VAXANY
126 1.31 ragge /* Kludge: VAX53 is... special */
127 1.31 ragge if (vax_boardtype == VAX_BTYP_53 && (int)aux == 1)
128 1.31 ragge return 1; /* Hack */
129 1.31 ragge #endif
130 1.18 ragge if (vax_bustype == VAX_VSBUS)
131 1.18 ragge return 1;
132 1.18 ragge return 0;
133 1.1 ragge }
134 1.1 ragge
135 1.1 ragge void
136 1.1 ragge vsbus_attach(parent, self, aux)
137 1.1 ragge struct device *parent, *self;
138 1.1 ragge void *aux;
139 1.1 ragge {
140 1.10 ragge struct vsbus_softc *sc = (void *)self;
141 1.27 ragge int dbase, dsize;
142 1.1 ragge
143 1.4 christos printf("\n");
144 1.14 ragge
145 1.21 matt sc->sc_dmatag = vsbus_bus_dma_tag;
146 1.21 matt
147 1.19 ragge switch (vax_boardtype) {
148 1.31 ragge #if VAX49 || VAX53
149 1.31 ragge case VAX_BTYP_53:
150 1.19 ragge case VAX_BTYP_49:
151 1.24 matt sc->sc_vsregs = vax_map_physmem(0x25c00000, 1);
152 1.24 matt sc->sc_intreq = (char *)sc->sc_vsregs + 12;
153 1.24 matt sc->sc_intclr = (char *)sc->sc_vsregs + 12;
154 1.24 matt sc->sc_intmsk = (char *)sc->sc_vsregs + 8;
155 1.24 matt vsbus_dma_init(sc, 8192);
156 1.19 ragge break;
157 1.22 matt #endif
158 1.19 ragge
159 1.22 matt #if VAX46 || VAX48
160 1.21 matt case VAX_BTYP_48:
161 1.21 matt case VAX_BTYP_46:
162 1.24 matt sc->sc_vsregs = vax_map_physmem(VS_REGS, 1);
163 1.24 matt sc->sc_intreq = (char *)sc->sc_vsregs + 15;
164 1.24 matt sc->sc_intclr = (char *)sc->sc_vsregs + 15;
165 1.24 matt sc->sc_intmsk = (char *)sc->sc_vsregs + 12;
166 1.24 matt vsbus_dma_init(sc, 32768);
167 1.22 matt #endif
168 1.21 matt
169 1.19 ragge default:
170 1.24 matt sc->sc_vsregs = vax_map_physmem(VS_REGS, 1);
171 1.24 matt sc->sc_intreq = (char *)sc->sc_vsregs + 15;
172 1.24 matt sc->sc_intclr = (char *)sc->sc_vsregs + 15;
173 1.24 matt sc->sc_intmsk = (char *)sc->sc_vsregs + 12;
174 1.27 ragge if (vax_boardtype == VAX_BTYP_410) {
175 1.27 ragge dbase = KA410_DMA_BASE;
176 1.27 ragge dsize = KA410_DMA_SIZE;
177 1.27 ragge } else {
178 1.27 ragge dbase = KA420_DMA_BASE;
179 1.27 ragge dsize = KA420_DMA_SIZE;
180 1.27 ragge *(char *)(sc->sc_vsregs + 0xe0) = 1; /* Big DMA */
181 1.27 ragge }
182 1.27 ragge sc->sc_dmasize = dsize;
183 1.47 yamt sc->sc_dmaaddr = uvm_km_alloc(kernel_map, dsize, 0,
184 1.47 yamt UVM_KMF_VAONLY);
185 1.27 ragge ioaccess(sc->sc_dmaaddr, dbase, dsize/VAX_NBPG);
186 1.19 ragge break;
187 1.19 ragge }
188 1.16 ragge
189 1.27 ragge SIMPLEQ_INIT(&vsbus_dma);
190 1.1 ragge /*
191 1.16 ragge * First: find which interrupts we won't care about.
192 1.16 ragge * There are interrupts that interrupt on a periodic basic
193 1.16 ragge * that we don't want to interfere with the rest of the
194 1.16 ragge * interrupt probing.
195 1.1 ragge */
196 1.19 ragge *sc->sc_intmsk = 0;
197 1.19 ragge *sc->sc_intclr = 0xff;
198 1.16 ragge DELAY(1000000); /* Wait a second */
199 1.19 ragge sc->sc_mask = *sc->sc_intreq;
200 1.16 ragge printf("%s: interrupt mask %x\n", self->dv_xname, sc->sc_mask);
201 1.1 ragge /*
202 1.1 ragge * now check for all possible devices on this "bus"
203 1.1 ragge */
204 1.48 drochner config_search_ia(vsbus_search, self, "vsbus", NULL);
205 1.13 ragge
206 1.16 ragge /* Autoconfig finished, enable interrupts */
207 1.19 ragge *sc->sc_intmsk = ~sc->sc_mask;
208 1.1 ragge }
209 1.1 ragge
210 1.16 ragge int
211 1.48 drochner vsbus_search(parent, cf, ldesc, aux)
212 1.16 ragge struct device *parent;
213 1.16 ragge struct cfdata *cf;
214 1.49 drochner const int *ldesc;
215 1.16 ragge void *aux;
216 1.1 ragge {
217 1.16 ragge struct vsbus_softc *sc = (void *)parent;
218 1.16 ragge struct vsbus_attach_args va;
219 1.16 ragge int i, vec, br;
220 1.16 ragge u_char c;
221 1.1 ragge
222 1.46 chs va.va_paddr = cf->cf_loc[VSBUSCF_CSR];
223 1.16 ragge va.va_addr = vax_map_physmem(va.va_paddr, 1);
224 1.21 matt va.va_dmat = &sc->sc_dmatag;
225 1.21 matt va.va_iot = &vax_mem_bus_space;
226 1.1 ragge
227 1.19 ragge *sc->sc_intmsk = 0;
228 1.19 ragge *sc->sc_intclr = 0xff;
229 1.16 ragge scb_vecref(0, 0); /* Clear vector ref */
230 1.16 ragge
231 1.36 thorpej i = config_match(parent, cf, &va);
232 1.16 ragge vax_unmap_physmem(va.va_addr, 1);
233 1.19 ragge c = *sc->sc_intreq & ~sc->sc_mask;
234 1.19 ragge if (i == 0)
235 1.19 ragge goto forgetit;
236 1.16 ragge if (i > 10)
237 1.16 ragge c = sc->sc_mask; /* Fooling interrupt */
238 1.19 ragge else if (c == 0)
239 1.16 ragge goto forgetit;
240 1.16 ragge
241 1.19 ragge *sc->sc_intmsk = c;
242 1.16 ragge DELAY(100);
243 1.19 ragge *sc->sc_intmsk = 0;
244 1.16 ragge va.va_maskno = ffs((u_int)c);
245 1.16 ragge i = scb_vecref(&vec, &br);
246 1.16 ragge if (i == 0)
247 1.16 ragge goto fail;
248 1.16 ragge if (vec == 0)
249 1.16 ragge goto fail;
250 1.16 ragge
251 1.16 ragge va.va_br = br;
252 1.16 ragge va.va_cvec = vec;
253 1.27 ragge va.va_dmaaddr = sc->sc_dmaaddr;
254 1.27 ragge va.va_dmasize = sc->sc_dmasize;
255 1.27 ragge *sc->sc_intmsk = c; /* Allow interrupts during attach */
256 1.16 ragge config_attach(parent, cf, &va, vsbus_print);
257 1.27 ragge *sc->sc_intmsk = 0;
258 1.16 ragge return 0;
259 1.16 ragge
260 1.16 ragge fail:
261 1.31 ragge printf("%s%d at %s csr 0x%x %s\n",
262 1.35 thorpej cf->cf_name, cf->cf_unit, parent->dv_xname,
263 1.46 chs cf->cf_loc[VSBUSCF_CSR], (i ? "zero vector" : "didn't interrupt"));
264 1.16 ragge forgetit:
265 1.16 ragge return 0;
266 1.1 ragge }
267 1.1 ragge
268 1.16 ragge /*
269 1.16 ragge * Sets a new interrupt mask. Returns the old one.
270 1.16 ragge * Works like spl functions.
271 1.16 ragge */
272 1.16 ragge unsigned char
273 1.16 ragge vsbus_setmask(mask)
274 1.16 ragge unsigned char mask;
275 1.1 ragge {
276 1.25 ragge struct vsbus_softc *sc;
277 1.16 ragge unsigned char ch;
278 1.1 ragge
279 1.25 ragge if (vsbus_cd.cd_ndevs == 0)
280 1.25 ragge return 0;
281 1.25 ragge sc = vsbus_cd.cd_devs[0];
282 1.25 ragge
283 1.19 ragge ch = *sc->sc_intmsk;
284 1.19 ragge *sc->sc_intmsk = mask;
285 1.16 ragge return ch;
286 1.1 ragge }
287 1.1 ragge
288 1.16 ragge /*
289 1.16 ragge * Clears the interrupts in mask.
290 1.16 ragge */
291 1.10 ragge void
292 1.16 ragge vsbus_clrintr(mask)
293 1.16 ragge unsigned char mask;
294 1.1 ragge {
295 1.25 ragge struct vsbus_softc *sc;
296 1.25 ragge
297 1.25 ragge if (vsbus_cd.cd_ndevs == 0)
298 1.25 ragge return;
299 1.25 ragge sc = vsbus_cd.cd_devs[0];
300 1.1 ragge
301 1.19 ragge *sc->sc_intclr = mask;
302 1.1 ragge }
303 1.1 ragge
304 1.1 ragge /*
305 1.20 ragge * Copy data from/to a user process' space from the DMA area.
306 1.20 ragge * Use the physical memory directly.
307 1.1 ragge */
308 1.20 ragge void
309 1.52 christos vsbus_copytoproc(struct proc *p, void *fromv, void *tov, int len)
310 1.20 ragge {
311 1.52 christos char *from = fromv, *to = tov;
312 1.20 ragge struct pte *pte;
313 1.20 ragge paddr_t pa;
314 1.1 ragge
315 1.30 chs if ((vaddr_t)to & KERNBASE) { /* In kernel space */
316 1.27 ragge bcopy(from, to, len);
317 1.27 ragge return;
318 1.27 ragge }
319 1.45 ragge
320 1.45 ragge #ifdef DIAGNOSTIC
321 1.45 ragge if (p == NULL)
322 1.45 ragge panic("vsbus_copytoproc: no proc");
323 1.45 ragge #endif
324 1.45 ragge
325 1.45 ragge if ((vaddr_t)to & 0x40000000)
326 1.45 ragge pte = &p->p_vmspace->vm_map.pmap->pm_p1br[vax_btop((vaddr_t)to & ~0x40000000)];
327 1.41 thorpej else
328 1.45 ragge pte = &p->p_vmspace->vm_map.pmap->pm_p0br[vax_btop((vaddr_t)to)];
329 1.20 ragge if ((vaddr_t)to & PGOFSET) {
330 1.30 chs int cz = round_page((vaddr_t)to) - (vaddr_t)to;
331 1.20 ragge
332 1.42 thorpej pa = (pte->pg_pfn << VAX_PGSHIFT) | (PAGE_SIZE - cz) | KERNBASE;
333 1.51 christos bcopy(from, (void *)pa, min(cz, len));
334 1.20 ragge from += cz;
335 1.20 ragge to += cz;
336 1.20 ragge len -= cz;
337 1.20 ragge pte += 8; /* XXX */
338 1.20 ragge }
339 1.20 ragge while (len > 0) {
340 1.20 ragge pa = (pte->pg_pfn << VAX_PGSHIFT) | KERNBASE;
341 1.51 christos bcopy(from, (void *)pa, min(PAGE_SIZE, len));
342 1.42 thorpej from += PAGE_SIZE;
343 1.42 thorpej to += PAGE_SIZE;
344 1.42 thorpej len -= PAGE_SIZE;
345 1.20 ragge pte += 8; /* XXX */
346 1.20 ragge }
347 1.20 ragge }
348 1.1 ragge
349 1.20 ragge void
350 1.52 christos vsbus_copyfromproc(struct proc *p, void *fromv, void *tov, int len)
351 1.20 ragge {
352 1.52 christos char *from = fromv, *to = tov;
353 1.20 ragge struct pte *pte;
354 1.20 ragge paddr_t pa;
355 1.20 ragge
356 1.30 chs if ((vaddr_t)from & KERNBASE) { /* In kernel space */
357 1.27 ragge bcopy(from, to, len);
358 1.27 ragge return;
359 1.27 ragge }
360 1.45 ragge
361 1.45 ragge #ifdef DIAGNOSTIC
362 1.45 ragge if (p == NULL)
363 1.45 ragge panic("vsbus_copyfromproc: no proc");
364 1.45 ragge #endif
365 1.45 ragge
366 1.45 ragge if ((vaddr_t)from & 0x40000000)
367 1.45 ragge pte = &p->p_vmspace->vm_map.pmap->pm_p1br[vax_btop((vaddr_t)from & ~0x40000000)];
368 1.41 thorpej else
369 1.45 ragge pte = &p->p_vmspace->vm_map.pmap->pm_p0br[vax_btop((vaddr_t)from)];
370 1.20 ragge if ((vaddr_t)from & PGOFSET) {
371 1.30 chs int cz = round_page((vaddr_t)from) - (vaddr_t)from;
372 1.20 ragge
373 1.42 thorpej pa = (pte->pg_pfn << VAX_PGSHIFT) | (PAGE_SIZE - cz) | KERNBASE;
374 1.51 christos bcopy((void *)pa, to, min(cz, len));
375 1.20 ragge from += cz;
376 1.20 ragge to += cz;
377 1.20 ragge len -= cz;
378 1.20 ragge pte += 8; /* XXX */
379 1.20 ragge }
380 1.20 ragge while (len > 0) {
381 1.20 ragge pa = (pte->pg_pfn << VAX_PGSHIFT) | KERNBASE;
382 1.51 christos bcopy((void *)pa, to, min(PAGE_SIZE, len));
383 1.42 thorpej from += PAGE_SIZE;
384 1.42 thorpej to += PAGE_SIZE;
385 1.42 thorpej len -= PAGE_SIZE;
386 1.20 ragge pte += 8; /* XXX */
387 1.20 ragge }
388 1.20 ragge }
389 1.27 ragge
390 1.27 ragge /*
391 1.27 ragge * There can only be one user of the DMA area on VS2k/VS3100 at one
392 1.27 ragge * time, so keep track of it here.
393 1.27 ragge */
394 1.27 ragge static int vsbus_active = 0;
395 1.27 ragge
396 1.27 ragge void
397 1.27 ragge vsbus_dma_start(struct vsbus_dma *vd)
398 1.27 ragge {
399 1.27 ragge
400 1.27 ragge SIMPLEQ_INSERT_TAIL(&vsbus_dma, vd, vd_q);
401 1.27 ragge
402 1.27 ragge if (vsbus_active == 0)
403 1.27 ragge vsbus_dma_intr();
404 1.27 ragge }
405 1.27 ragge
406 1.27 ragge void
407 1.27 ragge vsbus_dma_intr(void)
408 1.27 ragge {
409 1.27 ragge struct vsbus_dma *vd;
410 1.27 ragge
411 1.27 ragge vd = SIMPLEQ_FIRST(&vsbus_dma);
412 1.27 ragge if (vd == NULL) {
413 1.27 ragge vsbus_active = 0;
414 1.27 ragge return;
415 1.27 ragge }
416 1.27 ragge vsbus_active = 1;
417 1.33 lukem SIMPLEQ_REMOVE_HEAD(&vsbus_dma, vd_q);
418 1.27 ragge (*vd->vd_go)(vd->vd_arg);
419 1.27 ragge }
420 1.27 ragge
421