psycho.c revision 1.8 1 1.8 mrg /* $NetBSD: psycho.c,v 1.8 2000/05/06 04:15:35 mrg Exp $ */
2 1.1 mrg
3 1.1 mrg /*
4 1.3 mrg * Copyright (c) 1999, 2000 Matthew R. Green
5 1.1 mrg * All rights reserved.
6 1.1 mrg *
7 1.1 mrg * Redistribution and use in source and binary forms, with or without
8 1.1 mrg * modification, are permitted provided that the following conditions
9 1.1 mrg * are met:
10 1.1 mrg * 1. Redistributions of source code must retain the above copyright
11 1.1 mrg * notice, this list of conditions and the following disclaimer.
12 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mrg * notice, this list of conditions and the following disclaimer in the
14 1.1 mrg * documentation and/or other materials provided with the distribution.
15 1.1 mrg * 3. The name of the author may not be used to endorse or promote products
16 1.1 mrg * derived from this software without specific prior written permission.
17 1.1 mrg *
18 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 mrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 mrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 mrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 mrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 1.1 mrg * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 1.1 mrg * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 1.1 mrg * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 1.1 mrg * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 mrg * SUCH DAMAGE.
29 1.1 mrg */
30 1.1 mrg
31 1.7 mrg #include "opt_ddb.h"
32 1.7 mrg
33 1.1 mrg /*
34 1.1 mrg * PCI support for UltraSPARC `psycho'
35 1.1 mrg */
36 1.1 mrg
37 1.1 mrg #undef DEBUG
38 1.1 mrg #define DEBUG
39 1.1 mrg
40 1.1 mrg #ifdef DEBUG
41 1.7 mrg #define PDB_PROM 0x01
42 1.7 mrg #define PDB_IOMMU 0x02
43 1.7 mrg #define PDB_BUSMAP 0x04
44 1.7 mrg #define PDB_BUSDMA 0x08
45 1.7 mrg #define PDB_INTR 0x10
46 1.3 mrg int psycho_debug = 0x0;
47 1.1 mrg #define DPRINTF(l, s) do { if (psycho_debug & l) printf s; } while (0)
48 1.1 mrg #else
49 1.1 mrg #define DPRINTF(l, s)
50 1.1 mrg #endif
51 1.1 mrg
52 1.1 mrg #include <sys/param.h>
53 1.7 mrg #include <sys/device.h>
54 1.7 mrg #include <sys/errno.h>
55 1.1 mrg #include <sys/extent.h>
56 1.7 mrg #include <sys/malloc.h>
57 1.7 mrg #include <sys/systm.h>
58 1.1 mrg #include <sys/time.h>
59 1.1 mrg
60 1.1 mrg #include <vm/vm.h>
61 1.1 mrg #include <vm/vm_kern.h>
62 1.1 mrg
63 1.1 mrg #define _SPARC_BUS_DMA_PRIVATE
64 1.1 mrg #include <machine/bus.h>
65 1.1 mrg #include <machine/autoconf.h>
66 1.1 mrg
67 1.1 mrg #include <dev/pci/pcivar.h>
68 1.1 mrg #include <dev/pci/pcireg.h>
69 1.1 mrg
70 1.1 mrg #include <sparc64/dev/iommureg.h>
71 1.1 mrg #include <sparc64/dev/iommuvar.h>
72 1.1 mrg #include <sparc64/dev/psychoreg.h>
73 1.1 mrg #include <sparc64/dev/psychovar.h>
74 1.7 mrg #include <sparc64/sparc64/cache.h>
75 1.1 mrg
76 1.8 mrg #include "ioconf.h"
77 1.8 mrg
78 1.1 mrg static pci_chipset_tag_t psycho_alloc_chipset __P((struct psycho_pbm *, int,
79 1.1 mrg pci_chipset_tag_t));
80 1.1 mrg static void psycho_get_bus_range __P((int, int *));
81 1.1 mrg static void psycho_get_ranges __P((int, struct psycho_ranges **, int *));
82 1.1 mrg static void psycho_get_registers __P((int, struct psycho_registers **, int *));
83 1.1 mrg static void psycho_get_intmap __P((int, struct psycho_interrupt_map **, int *));
84 1.1 mrg static void psycho_get_intmapmask __P((int, struct psycho_interrupt_map_mask *));
85 1.1 mrg
86 1.1 mrg /* IOMMU support */
87 1.1 mrg static void psycho_iommu_init __P((struct psycho_softc *));
88 1.1 mrg
89 1.7 mrg /*
90 1.7 mrg * bus space and bus dma support for UltraSPARC `psycho'. note that most
91 1.7 mrg * of the bus dma support is provided by the iommu dvma controller.
92 1.7 mrg */
93 1.7 mrg static int psycho_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
94 1.7 mrg int, bus_space_handle_t *));
95 1.7 mrg static int _psycho_bus_map __P((bus_space_tag_t, bus_type_t, bus_addr_t,
96 1.7 mrg bus_size_t, int, vaddr_t,
97 1.7 mrg bus_space_handle_t *));
98 1.7 mrg static void *psycho_intr_establish __P((bus_space_tag_t, int, int,
99 1.7 mrg int (*) __P((void *)), void *));
100 1.7 mrg
101 1.7 mrg static int psycho_dmamap_load __P((bus_dma_tag_t, bus_dmamap_t, void *,
102 1.7 mrg bus_size_t, struct proc *, int));
103 1.7 mrg static void psycho_dmamap_unload __P((bus_dma_tag_t, bus_dmamap_t));
104 1.7 mrg static void psycho_dmamap_sync __P((bus_dma_tag_t, bus_dmamap_t, bus_addr_t,
105 1.7 mrg bus_size_t, int));
106 1.7 mrg int psycho_dmamem_alloc __P((bus_dma_tag_t, bus_size_t, bus_size_t, bus_size_t,
107 1.7 mrg bus_dma_segment_t *, int, int *, int));
108 1.7 mrg void psycho_dmamem_free __P((bus_dma_tag_t, bus_dma_segment_t *, int));
109 1.7 mrg int psycho_dmamem_map __P((bus_dma_tag_t, bus_dma_segment_t *, int, size_t,
110 1.7 mrg caddr_t *, int));
111 1.7 mrg void psycho_dmamem_unmap __P((bus_dma_tag_t, caddr_t, size_t));
112 1.7 mrg
113 1.7 mrg /* base pci_chipset */
114 1.1 mrg extern struct sparc_pci_chipset _sparc_pci_chipset;
115 1.1 mrg
116 1.1 mrg /*
117 1.1 mrg * autoconfiguration
118 1.1 mrg */
119 1.1 mrg static int psycho_match __P((struct device *, struct cfdata *, void *));
120 1.1 mrg static void psycho_attach __P((struct device *, struct device *, void *));
121 1.1 mrg static int psycho_print __P((void *aux, const char *p));
122 1.1 mrg
123 1.1 mrg static void sabre_init __P((struct psycho_softc *, struct pcibus_attach_args *));
124 1.1 mrg static void psycho_init __P((struct psycho_softc *, struct pcibus_attach_args *));
125 1.1 mrg
126 1.1 mrg struct cfattach psycho_ca = {
127 1.1 mrg sizeof(struct psycho_softc), psycho_match, psycho_attach
128 1.1 mrg };
129 1.1 mrg
130 1.1 mrg /*
131 1.1 mrg * "sabre" is the UltraSPARC IIi onboard PCI interface, normally connected to
132 1.1 mrg * an APB (advanced PCI bridge), which was designed specifically for the IIi.
133 1.1 mrg * the APB appears as two "simba"'s underneath the sabre. real devices
134 1.1 mrg * typically appear on the "simba"'s only.
135 1.1 mrg *
136 1.1 mrg * a pair of "psycho"s sit on the mainbus and have real devices attached to
137 1.1 mrg * them. they implemented in the U2P (UPA to PCI). these two devices share
138 1.1 mrg * register space and as such need to be configured together, even though the
139 1.1 mrg * autoconfiguration will attach them separately.
140 1.1 mrg *
141 1.1 mrg * each of these appears as two usable PCI busses, though the sabre itself
142 1.1 mrg * takes pci0 in this case, leaving real devices on pci1 and pci2. there can
143 1.1 mrg * be multiple pairs of psycho's, however, in multi-board machines.
144 1.1 mrg */
145 1.1 mrg #define ROM_PCI_NAME "pci"
146 1.1 mrg #define ROM_SABRE_MODEL "SUNW,sabre"
147 1.1 mrg #define ROM_SIMBA_MODEL "SUNW,simba"
148 1.1 mrg #define ROM_PSYCHO_MODEL "SUNW,psycho"
149 1.1 mrg
150 1.1 mrg static int
151 1.1 mrg psycho_match(parent, match, aux)
152 1.1 mrg struct device *parent;
153 1.1 mrg struct cfdata *match;
154 1.1 mrg void *aux;
155 1.1 mrg {
156 1.1 mrg struct mainbus_attach_args *ma = aux;
157 1.1 mrg char *model = getpropstring(ma->ma_node, "model");
158 1.1 mrg
159 1.1 mrg /* match on a name of "pci" and a sabre or a psycho */
160 1.1 mrg if (strcmp(ma->ma_name, ROM_PCI_NAME) == 0 &&
161 1.1 mrg (strcmp(model, ROM_SABRE_MODEL) == 0 ||
162 1.1 mrg strcmp(model, ROM_PSYCHO_MODEL) == 0))
163 1.1 mrg return (1);
164 1.1 mrg
165 1.1 mrg return (0);
166 1.1 mrg }
167 1.1 mrg
168 1.1 mrg static void
169 1.1 mrg psycho_attach(parent, self, aux)
170 1.1 mrg struct device *parent, *self;
171 1.1 mrg void *aux;
172 1.1 mrg {
173 1.1 mrg struct psycho_softc *sc = (struct psycho_softc *)self;
174 1.1 mrg struct pcibus_attach_args pba;
175 1.1 mrg struct mainbus_attach_args *ma = aux;
176 1.1 mrg char *model = getpropstring(ma->ma_node, "model");
177 1.1 mrg
178 1.1 mrg printf("\n");
179 1.1 mrg
180 1.1 mrg sc->sc_node = ma->ma_node;
181 1.1 mrg sc->sc_bustag = ma->ma_bustag;
182 1.1 mrg sc->sc_dmatag = ma->ma_dmatag;
183 1.1 mrg
184 1.1 mrg /*
185 1.1 mrg * pull in all the information about the psycho as we can.
186 1.1 mrg */
187 1.1 mrg
188 1.1 mrg /*
189 1.1 mrg * XXX use the prom address for the psycho registers? we do so far.
190 1.1 mrg */
191 1.1 mrg sc->sc_regs = (struct psychoreg *)(u_long)ma->ma_address[0];
192 1.1 mrg sc->sc_basepaddr = (paddr_t)ma->ma_reg[0].ur_paddr;
193 1.1 mrg
194 1.1 mrg /*
195 1.1 mrg * call the model-specific initialisation routine.
196 1.1 mrg */
197 1.1 mrg if (strcmp(model, ROM_SABRE_MODEL) == 0)
198 1.1 mrg sabre_init(sc, &pba);
199 1.1 mrg else if (strcmp(model, ROM_PSYCHO_MODEL) == 0)
200 1.1 mrg psycho_init(sc, &pba);
201 1.1 mrg #ifdef DIAGNOSTIC
202 1.1 mrg else
203 1.1 mrg panic("psycho_attach: unknown model %s?", model);
204 1.1 mrg #endif
205 1.1 mrg
206 1.1 mrg /*
207 1.1 mrg * attach the pci.. note we pass PCI A tags, etc., for the sabre here.
208 1.1 mrg */
209 1.1 mrg pba.pba_busname = "pci";
210 1.1 mrg pba.pba_flags = sc->sc_psycho_this->pp_flags;
211 1.1 mrg pba.pba_dmat = sc->sc_psycho_this->pp_dmat;
212 1.1 mrg pba.pba_iot = sc->sc_psycho_this->pp_iot;
213 1.1 mrg pba.pba_memt = sc->sc_psycho_this->pp_memt;
214 1.1 mrg
215 1.1 mrg config_found(self, &pba, psycho_print);
216 1.1 mrg }
217 1.1 mrg
218 1.1 mrg static int
219 1.1 mrg psycho_print(aux, p)
220 1.1 mrg void *aux;
221 1.1 mrg const char *p;
222 1.1 mrg {
223 1.1 mrg
224 1.1 mrg if (p == NULL)
225 1.1 mrg return (UNCONF);
226 1.1 mrg return (QUIET);
227 1.1 mrg }
228 1.1 mrg
229 1.1 mrg /*
230 1.1 mrg * SUNW,sabre initialisation ..
231 1.1 mrg * - get the sabre's ranges. this are used for both simba's.
232 1.1 mrg * - find the two SUNW,simba's underneath (a and b)
233 1.1 mrg * - work out which simba is which via the bus-range property
234 1.1 mrg * - get each simba's interrupt-map and interrupt-map-mask.
235 1.1 mrg * - turn on the iommu
236 1.1 mrg */
237 1.1 mrg static void
238 1.1 mrg sabre_init(sc, pba)
239 1.1 mrg struct psycho_softc *sc;
240 1.1 mrg struct pcibus_attach_args *pba;
241 1.1 mrg {
242 1.1 mrg struct psycho_pbm *pp;
243 1.3 mrg bus_space_handle_t bh;
244 1.1 mrg u_int64_t csr;
245 1.1 mrg int node;
246 1.1 mrg int sabre_br[2], simba_br[2];
247 1.1 mrg
248 1.1 mrg /* who? said a voice, incredulous */
249 1.1 mrg sc->sc_mode = PSYCHO_MODE_SABRE;
250 1.1 mrg printf("sabre: ");
251 1.1 mrg
252 1.1 mrg /* setup the PCI control register; there is only one for the sabre */
253 1.4 mrg csr = bus_space_read_8(sc->sc_bustag, (bus_space_handle_t)(u_long)&sc->sc_regs->psy_pcictl[0].pci_csr, 0);
254 1.5 mrg csr |= PCICTL_MRLM |
255 1.5 mrg PCICTL_ARB_PARK |
256 1.5 mrg PCICTL_ERRINTEN |
257 1.5 mrg PCICTL_4ENABLE;
258 1.5 mrg csr &= ~(PCICTL_SERR |
259 1.5 mrg PCICTL_CPU_PRIO |
260 1.5 mrg PCICTL_ARB_PRIO |
261 1.5 mrg PCICTL_RTRYWAIT);
262 1.1 mrg bus_space_write_8(sc->sc_bustag, &sc->sc_regs->psy_pcictl[0].pci_csr, 0, csr);
263 1.1 mrg
264 1.1 mrg /* allocate a pair of psycho_pbm's for our simba's */
265 1.1 mrg sc->sc_sabre = malloc(sizeof *pp, M_DEVBUF, M_NOWAIT);
266 1.1 mrg sc->sc_simba_a = malloc(sizeof *pp, M_DEVBUF, M_NOWAIT);
267 1.1 mrg sc->sc_simba_b = malloc(sizeof *pp, M_DEVBUF, M_NOWAIT);
268 1.5 mrg if (sc->sc_sabre == NULL || sc->sc_simba_a == NULL ||
269 1.5 mrg sc->sc_simba_b == NULL)
270 1.1 mrg panic("could not allocate simba pbm's");
271 1.1 mrg
272 1.1 mrg memset(sc->sc_sabre, 0, sizeof *pp);
273 1.1 mrg memset(sc->sc_simba_a, 0, sizeof *pp);
274 1.1 mrg memset(sc->sc_simba_b, 0, sizeof *pp);
275 1.1 mrg
276 1.1 mrg /* grab the sabre ranges; use them for both simba's */
277 1.1 mrg psycho_get_ranges(sc->sc_node, &sc->sc_sabre->pp_range,
278 1.1 mrg &sc->sc_sabre->pp_nrange);
279 1.1 mrg sc->sc_simba_b->pp_range = sc->sc_simba_a->pp_range =
280 1.1 mrg sc->sc_sabre->pp_range;
281 1.1 mrg sc->sc_simba_b->pp_nrange = sc->sc_simba_a->pp_nrange =
282 1.1 mrg sc->sc_sabre->pp_nrange;
283 1.1 mrg
284 1.1 mrg /* get the bus-range for the sabre. we expect 0..2 */
285 1.1 mrg psycho_get_bus_range(sc->sc_node, sabre_br);
286 1.1 mrg
287 1.1 mrg pba->pba_bus = sabre_br[0];
288 1.1 mrg
289 1.1 mrg printf("bus range %u to %u", sabre_br[0], sabre_br[1]);
290 1.1 mrg
291 1.1 mrg for (node = firstchild(sc->sc_node); node; node = nextsibling(node)) {
292 1.1 mrg char *name = getpropstring(node, "name");
293 1.1 mrg char *model, who;
294 1.1 mrg
295 1.1 mrg if (strcmp(name, ROM_PCI_NAME) != 0)
296 1.1 mrg continue;
297 1.1 mrg
298 1.1 mrg model = getpropstring(node, "model");
299 1.1 mrg if (strcmp(model, ROM_SIMBA_MODEL) != 0)
300 1.1 mrg continue;
301 1.1 mrg
302 1.1 mrg psycho_get_bus_range(node, simba_br);
303 1.1 mrg
304 1.1 mrg if (simba_br[0] == 1) { /* PCI B */
305 1.1 mrg pp = sc->sc_simba_b;
306 1.1 mrg who = 'b';
307 1.1 mrg } else { /* PCI A */
308 1.1 mrg pp = sc->sc_simba_a;
309 1.1 mrg who = 'a';
310 1.1 mrg }
311 1.8 mrg pp->pp_pcictl = &sc->sc_regs->psy_pcictl[0];
312 1.1 mrg /* link us in .. */
313 1.1 mrg pp->pp_sc = sc;
314 1.1 mrg
315 1.1 mrg printf("; simba %c, PCI bus %d", who, simba_br[0]);
316 1.1 mrg
317 1.1 mrg /* grab the simba registers, interrupt map and map mask */
318 1.1 mrg psycho_get_registers(node, &pp->pp_regs, &pp->pp_nregs);
319 1.1 mrg psycho_get_intmap(node, &pp->pp_intmap, &pp->pp_nintmap);
320 1.1 mrg psycho_get_intmapmask(node, &pp->pp_intmapmask);
321 1.1 mrg
322 1.1 mrg /* allocate our tags */
323 1.1 mrg pp->pp_memt = psycho_alloc_mem_tag(pp);
324 1.1 mrg pp->pp_iot = psycho_alloc_io_tag(pp);
325 1.1 mrg pp->pp_dmat = psycho_alloc_dma_tag(pp);
326 1.1 mrg pp->pp_flags = (pp->pp_memt ? PCI_FLAGS_MEM_ENABLED : 0) |
327 1.1 mrg (pp->pp_iot ? PCI_FLAGS_IO_ENABLED : 0);
328 1.1 mrg
329 1.1 mrg /* allocate a chipset for this */
330 1.1 mrg pp->pp_pc = psycho_alloc_chipset(pp, node, &_sparc_pci_chipset);
331 1.1 mrg }
332 1.1 mrg
333 1.1 mrg /* setup the rest of the sabre pbm */
334 1.1 mrg pp = sc->sc_sabre;
335 1.1 mrg pp->pp_sc = sc;
336 1.1 mrg pp->pp_memt = sc->sc_psycho_this->pp_memt;
337 1.1 mrg pp->pp_iot = sc->sc_psycho_this->pp_iot;
338 1.1 mrg pp->pp_dmat = sc->sc_psycho_this->pp_dmat;
339 1.1 mrg pp->pp_flags = sc->sc_psycho_this->pp_flags;
340 1.1 mrg pp->pp_intmap = NULL;
341 1.1 mrg pp->pp_regs = NULL;
342 1.1 mrg pp->pp_pcictl = sc->sc_psycho_this->pp_pcictl;
343 1.1 mrg pba->pba_pc = psycho_alloc_chipset(pp, sc->sc_node,
344 1.1 mrg sc->sc_psycho_this->pp_pc);
345 1.1 mrg
346 1.1 mrg printf("\n");
347 1.1 mrg
348 1.1 mrg /* and finally start up the IOMMU ... */
349 1.1 mrg psycho_iommu_init(sc);
350 1.3 mrg
351 1.3 mrg /*
352 1.3 mrg * get us a config space tag, and punch in the physical address
353 1.3 mrg * of the PCI configuration space. note that we use unmapped
354 1.3 mrg * access to PCI configuration space, relying on the bus space
355 1.3 mrg * macros to provide the proper ASI based on the bus tag.
356 1.3 mrg */
357 1.3 mrg sc->sc_configtag = psycho_alloc_config_tag(sc->sc_simba_a);
358 1.3 mrg if (bus_space_map2(sc->sc_bustag,
359 1.3 mrg PCI_CONFIG_BUS_SPACE,
360 1.3 mrg sc->sc_basepaddr + 0x01000000,
361 1.3 mrg 0x0100000,
362 1.3 mrg 0,
363 1.3 mrg 0,
364 1.3 mrg &bh))
365 1.3 mrg panic("could not map sabre PCI configuration space");
366 1.3 mrg sc->sc_configaddr = (paddr_t)bh;
367 1.1 mrg }
368 1.1 mrg
369 1.1 mrg /*
370 1.1 mrg * SUNW,psycho initialisation ..
371 1.1 mrg * - XXX what do we do here?
372 1.1 mrg *
373 1.1 mrg * i think that an attaching psycho should here find it's partner psycho
374 1.1 mrg * and if they haven't been attached yet, allocate both psycho_pbm's and
375 1.1 mrg * fill them both in here, and when the partner attaches, there is little
376 1.1 mrg * to do... perhaps keep a static array of what psycho have been found so
377 1.1 mrg * far (or perhaps those that have not yet been finished). .mrg.
378 1.1 mrg * note that the partner can be found via matching `ranges' properties.
379 1.1 mrg */
380 1.1 mrg static void
381 1.1 mrg psycho_init(sc, pba)
382 1.1 mrg struct psycho_softc *sc;
383 1.1 mrg struct pcibus_attach_args *pba;
384 1.1 mrg {
385 1.8 mrg struct psycho_softc *osc = NULL;
386 1.8 mrg struct psycho_pbm *pp;
387 1.8 mrg bus_space_handle_t bh;
388 1.8 mrg u_int64_t csr;
389 1.8 mrg int psycho_br[2], n;
390 1.8 mrg char who;
391 1.8 mrg
392 1.8 mrg printf("psycho: ");
393 1.1 mrg
394 1.1 mrg /*
395 1.3 mrg * OK, so the deal here is:
396 1.3 mrg * - given our base register address, search our sibling
397 1.3 mrg * devices for a match.
398 1.3 mrg * - if we find a match, we are attaching an almost
399 1.3 mrg * already setup PCI bus, the partner already done.
400 1.3 mrg * - otherwise, we are doing the hard slog.
401 1.1 mrg */
402 1.3 mrg for (n = 0; n < psycho_cd.cd_ndevs; n++) {
403 1.8 mrg
404 1.8 mrg osc = (struct psycho_softc *)&psycho_cd.cd_devs[n];
405 1.3 mrg
406 1.3 mrg /*
407 1.3 mrg * I am not myself.
408 1.3 mrg */
409 1.3 mrg if (osc == sc || osc->sc_regs != sc->sc_regs)
410 1.3 mrg continue;
411 1.3 mrg
412 1.3 mrg /*
413 1.3 mrg * OK, so we found a matching regs that wasn't me,
414 1.8 mrg * so that means my IOMMU is setup.
415 1.3 mrg */
416 1.8 mrg
417 1.8 mrg /* who? said a voice, incredulous */
418 1.8 mrg sc->sc_mode = PSYCHO_MODE_PSYCHO_B; /* XXX */
419 1.8 mrg who = 'b';
420 1.8 mrg break;
421 1.8 mrg }
422 1.8 mrg
423 1.8 mrg if (sc->sc_mode != PSYCHO_MODE_PSYCHO_B) {
424 1.8 mrg sc->sc_mode = PSYCHO_MODE_PSYCHO_A; /* XXX */
425 1.8 mrg who = 'a';
426 1.3 mrg }
427 1.3 mrg
428 1.3 mrg /* Oh, dear. OK, lets get started */
429 1.3 mrg
430 1.8 mrg /* XXX: check this is OK for real psycho */
431 1.8 mrg /* setup the PCI control register */
432 1.8 mrg csr = bus_space_read_8(sc->sc_bustag, (bus_space_handle_t)(u_long)&sc->sc_regs->psy_pcictl[0].pci_csr, 0);
433 1.8 mrg csr |= PCICTL_MRLM |
434 1.8 mrg PCICTL_ARB_PARK |
435 1.8 mrg PCICTL_ERRINTEN |
436 1.8 mrg PCICTL_4ENABLE;
437 1.8 mrg csr &= ~(PCICTL_SERR |
438 1.8 mrg PCICTL_CPU_PRIO |
439 1.8 mrg PCICTL_ARB_PRIO |
440 1.8 mrg PCICTL_RTRYWAIT);
441 1.8 mrg bus_space_write_8(sc->sc_bustag, &sc->sc_regs->psy_pcictl[0].pci_csr, 0, csr);
442 1.8 mrg
443 1.8 mrg /* allocate our psycho_pbm */
444 1.8 mrg sc->sc_psycho_this = malloc(sizeof *pp, M_DEVBUF, M_NOWAIT);
445 1.8 mrg if (sc->sc_psycho_this == NULL)
446 1.8 mrg panic("could not allocate psycho pbm");
447 1.8 mrg if (osc) {
448 1.8 mrg sc->sc_psycho_other = osc->sc_psycho_this;
449 1.8 mrg osc->sc_psycho_other = sc->sc_psycho_this;
450 1.8 mrg }
451 1.8 mrg
452 1.8 mrg memset(sc->sc_psycho_this, 0, sizeof *pp);
453 1.8 mrg
454 1.8 mrg /* grab the psycho ranges */
455 1.8 mrg psycho_get_ranges(sc->sc_node, &sc->sc_psycho_this->pp_range,
456 1.8 mrg &sc->sc_psycho_this->pp_nrange);
457 1.8 mrg
458 1.8 mrg /* get the bus-range for the psycho */
459 1.8 mrg psycho_get_bus_range(sc->sc_node, psycho_br);
460 1.8 mrg
461 1.8 mrg pba->pba_bus = psycho_br[0];
462 1.8 mrg
463 1.8 mrg printf("bus range %u to %u", psycho_br[0], psycho_br[1]);
464 1.8 mrg printf("; simba %c, PCI bus %d", who, psycho_br[0]);
465 1.8 mrg
466 1.8 mrg pp->pp_pcictl = &sc->sc_regs->psy_pcictl[0];
467 1.8 mrg
468 1.8 mrg /* grab the psycho registers, interrupt map and map mask */
469 1.8 mrg psycho_get_registers(sc->sc_node, &pp->pp_regs, &pp->pp_nregs);
470 1.8 mrg psycho_get_intmap(sc->sc_node, &pp->pp_intmap, &pp->pp_nintmap);
471 1.8 mrg psycho_get_intmapmask(sc->sc_node, &pp->pp_intmapmask);
472 1.8 mrg
473 1.8 mrg /* allocate our tags */
474 1.8 mrg pp->pp_memt = psycho_alloc_mem_tag(pp);
475 1.8 mrg pp->pp_iot = psycho_alloc_io_tag(pp);
476 1.8 mrg pp->pp_dmat = psycho_alloc_dma_tag(pp);
477 1.8 mrg pp->pp_flags = (pp->pp_memt ? PCI_FLAGS_MEM_ENABLED : 0) |
478 1.8 mrg (pp->pp_iot ? PCI_FLAGS_IO_ENABLED : 0);
479 1.8 mrg
480 1.8 mrg /* allocate a chipset for this */
481 1.8 mrg pp->pp_pc = psycho_alloc_chipset(pp, sc->sc_node, &_sparc_pci_chipset);
482 1.8 mrg
483 1.8 mrg /* setup the rest of the psycho pbm */
484 1.8 mrg pp->pp_sc = sc;
485 1.8 mrg pba->pba_pc = psycho_alloc_chipset(pp, sc->sc_node,
486 1.8 mrg sc->sc_psycho_this->pp_pc);
487 1.8 mrg
488 1.8 mrg printf("\n");
489 1.8 mrg
490 1.8 mrg /*
491 1.8 mrg * and finally, if we a a psycho A, start up the IOMMU and
492 1.8 mrg * get us a config space tag, and punch in the physical address
493 1.8 mrg * of the PCI configuration space. note that we use unmapped
494 1.8 mrg * access to PCI configuration space, relying on the bus space
495 1.8 mrg * macros to provide the proper ASI based on the bus tag.
496 1.8 mrg */
497 1.8 mrg if (sc->sc_mode == PSYCHO_MODE_PSYCHO_A) {
498 1.8 mrg psycho_iommu_init(sc);
499 1.8 mrg
500 1.8 mrg sc->sc_configtag = psycho_alloc_config_tag(sc->sc_psycho_this);
501 1.8 mrg if (bus_space_map2(sc->sc_bustag,
502 1.8 mrg PCI_CONFIG_BUS_SPACE,
503 1.8 mrg sc->sc_basepaddr + 0x01000000,
504 1.8 mrg 0x0100000,
505 1.8 mrg 0,
506 1.8 mrg 0,
507 1.8 mrg &bh))
508 1.8 mrg panic("could not map sabre PCI configuration space");
509 1.8 mrg sc->sc_configaddr = (paddr_t)bh;
510 1.8 mrg } else {
511 1.8 mrg /* for psycho B, we just copy the config tag and address */
512 1.8 mrg sc->sc_configtag = osc->sc_configtag;
513 1.8 mrg sc->sc_configaddr = osc->sc_configaddr;
514 1.8 mrg }
515 1.1 mrg }
516 1.1 mrg
517 1.1 mrg /*
518 1.1 mrg * PCI bus support
519 1.1 mrg */
520 1.1 mrg
521 1.1 mrg /*
522 1.1 mrg * allocate a PCI chipset tag and set it's cookie.
523 1.1 mrg */
524 1.1 mrg static pci_chipset_tag_t
525 1.1 mrg psycho_alloc_chipset(pp, node, pc)
526 1.1 mrg struct psycho_pbm *pp;
527 1.1 mrg int node;
528 1.1 mrg pci_chipset_tag_t pc;
529 1.1 mrg {
530 1.1 mrg pci_chipset_tag_t npc;
531 1.1 mrg
532 1.1 mrg npc = malloc(sizeof *npc, M_DEVBUF, M_NOWAIT);
533 1.1 mrg if (npc == NULL)
534 1.1 mrg panic("could not allocate pci_chipset_tag_t");
535 1.1 mrg memcpy(npc, pc, sizeof *pc);
536 1.1 mrg npc->cookie = pp;
537 1.1 mrg npc->node = node;
538 1.1 mrg
539 1.1 mrg return (npc);
540 1.1 mrg }
541 1.1 mrg
542 1.1 mrg /*
543 1.1 mrg * grovel the OBP for various psycho properties
544 1.1 mrg */
545 1.1 mrg static void
546 1.1 mrg psycho_get_bus_range(node, brp)
547 1.1 mrg int node;
548 1.1 mrg int *brp;
549 1.1 mrg {
550 1.1 mrg int n;
551 1.1 mrg
552 1.1 mrg if (getprop(node, "bus-range", sizeof(*brp), &n, (void **)&brp))
553 1.1 mrg panic("could not get psycho bus-range");
554 1.1 mrg if (n != 2)
555 1.1 mrg panic("broken psycho bus-range");
556 1.1 mrg DPRINTF(PDB_PROM, ("psycho debug: got `bus-range' for node %08x: %u - %u\n", node, brp[0], brp[1]));
557 1.1 mrg }
558 1.1 mrg
559 1.1 mrg static void
560 1.1 mrg psycho_get_ranges(node, rp, np)
561 1.1 mrg int node;
562 1.1 mrg struct psycho_ranges **rp;
563 1.1 mrg int *np;
564 1.1 mrg {
565 1.1 mrg
566 1.1 mrg if (getprop(node, "ranges", sizeof(**rp), np, (void **)rp))
567 1.1 mrg panic("could not get psycho ranges");
568 1.1 mrg DPRINTF(PDB_PROM, ("psycho debug: got `ranges' for node %08x: %d entries\n", node, *np));
569 1.1 mrg }
570 1.1 mrg
571 1.1 mrg static void
572 1.1 mrg psycho_get_registers(node, rp, np)
573 1.1 mrg int node;
574 1.1 mrg struct psycho_registers **rp;
575 1.1 mrg int *np;
576 1.1 mrg {
577 1.1 mrg
578 1.1 mrg if (getprop(node, "reg", sizeof(**rp), np, (void **)rp))
579 1.1 mrg panic("could not get psycho registers");
580 1.1 mrg DPRINTF(PDB_PROM, ("psycho debug: got `reg' for node %08x: %d entries\n", node, *np));
581 1.1 mrg }
582 1.1 mrg
583 1.1 mrg static void
584 1.1 mrg psycho_get_intmap(node, imp, np)
585 1.1 mrg int node;
586 1.1 mrg struct psycho_interrupt_map **imp;
587 1.1 mrg int *np;
588 1.1 mrg {
589 1.1 mrg
590 1.1 mrg if (getprop(node, "interrupt-map", sizeof(**imp), np, (void **)imp))
591 1.1 mrg panic("could not get psycho interrupt-map");
592 1.1 mrg DPRINTF(PDB_PROM, ("psycho debug: got `interupt-map' for node %08x\n", node));
593 1.1 mrg }
594 1.1 mrg
595 1.1 mrg static void
596 1.1 mrg psycho_get_intmapmask(node, immp)
597 1.1 mrg int node;
598 1.1 mrg struct psycho_interrupt_map_mask *immp;
599 1.1 mrg {
600 1.1 mrg int n;
601 1.1 mrg
602 1.1 mrg if (getprop(node, "interrupt-map-mask", sizeof(*immp), &n,
603 1.1 mrg (void **)&immp))
604 1.1 mrg panic("could not get psycho interrupt-map-mask");
605 1.1 mrg if (n != 1)
606 1.1 mrg panic("broken psycho interrupt-map-mask");
607 1.1 mrg DPRINTF(PDB_PROM, ("psycho debug: got `interrupt-map-mask' for node %08x\n", node));
608 1.1 mrg }
609 1.1 mrg
610 1.1 mrg /*
611 1.1 mrg * initialise the IOMMU..
612 1.1 mrg */
613 1.1 mrg void
614 1.1 mrg psycho_iommu_init(sc)
615 1.1 mrg struct psycho_softc *sc;
616 1.1 mrg {
617 1.1 mrg char *name;
618 1.1 mrg
619 1.1 mrg /* punch in our copies */
620 1.1 mrg sc->sc_is.is_bustag = sc->sc_bustag;
621 1.1 mrg sc->sc_is.is_iommu = &sc->sc_regs->psy_iommu;
622 1.7 mrg /* IIi does not have streaming buffers */
623 1.7 mrg if (sc->sc_mode != PSYCHO_MODE_SABRE)
624 1.7 mrg sc->sc_is.is_sb = &sc->sc_regs->psy_iommu_strbuf;
625 1.7 mrg else
626 1.7 mrg sc->sc_is.is_sb = 0;
627 1.1 mrg
628 1.1 mrg /* give us a nice name.. */
629 1.1 mrg name = (char *)malloc(32, M_DEVBUF, M_NOWAIT);
630 1.1 mrg if (name == 0)
631 1.1 mrg panic("couldn't malloc iommu name");
632 1.1 mrg snprintf(name, 32, "%s dvma", sc->sc_dev.dv_xname);
633 1.1 mrg
634 1.1 mrg /* XXX XXX XXX FIX ME tsbsize XXX XXX XXX */
635 1.1 mrg iommu_init(name, &sc->sc_is, 0);
636 1.7 mrg }
637 1.7 mrg
638 1.7 mrg /*
639 1.7 mrg * below here is bus space and bus dma support
640 1.7 mrg */
641 1.7 mrg bus_space_tag_t
642 1.7 mrg psycho_alloc_bus_tag(pp, type)
643 1.7 mrg struct psycho_pbm *pp;
644 1.7 mrg int type;
645 1.7 mrg {
646 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
647 1.7 mrg bus_space_tag_t bt;
648 1.7 mrg
649 1.7 mrg bt = (bus_space_tag_t)
650 1.7 mrg malloc(sizeof(struct sparc_bus_space_tag), M_DEVBUF, M_NOWAIT);
651 1.7 mrg if (bt == NULL)
652 1.7 mrg panic("could not allocate psycho bus tag");
653 1.7 mrg
654 1.7 mrg bzero(bt, sizeof *bt);
655 1.7 mrg bt->cookie = pp;
656 1.7 mrg bt->parent = sc->sc_bustag;
657 1.7 mrg bt->type = type;
658 1.7 mrg bt->sparc_bus_map = _psycho_bus_map;
659 1.7 mrg bt->sparc_bus_mmap = psycho_bus_mmap;
660 1.7 mrg bt->sparc_intr_establish = psycho_intr_establish;
661 1.7 mrg return (bt);
662 1.7 mrg }
663 1.7 mrg
664 1.7 mrg bus_dma_tag_t
665 1.7 mrg psycho_alloc_dma_tag(pp)
666 1.7 mrg struct psycho_pbm *pp;
667 1.7 mrg {
668 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
669 1.7 mrg bus_dma_tag_t dt, pdt = sc->sc_dmatag;
670 1.7 mrg
671 1.7 mrg dt = (bus_dma_tag_t)
672 1.7 mrg malloc(sizeof(struct sparc_bus_dma_tag), M_DEVBUF, M_NOWAIT);
673 1.7 mrg if (dt == NULL)
674 1.7 mrg panic("could not allocate psycho dma tag");
675 1.7 mrg
676 1.7 mrg bzero(dt, sizeof *dt);
677 1.7 mrg dt->_cookie = pp;
678 1.7 mrg dt->_parent = pdt;
679 1.7 mrg #define PCOPY(x) dt->x = pdt->x
680 1.7 mrg PCOPY(_dmamap_create);
681 1.7 mrg PCOPY(_dmamap_destroy);
682 1.7 mrg dt->_dmamap_load = psycho_dmamap_load;
683 1.7 mrg PCOPY(_dmamap_load_mbuf);
684 1.7 mrg PCOPY(_dmamap_load_uio);
685 1.7 mrg PCOPY(_dmamap_load_raw);
686 1.7 mrg dt->_dmamap_unload = psycho_dmamap_unload;
687 1.7 mrg dt->_dmamap_sync = psycho_dmamap_sync;
688 1.7 mrg dt->_dmamem_alloc = psycho_dmamem_alloc;
689 1.7 mrg dt->_dmamem_free = psycho_dmamem_free;
690 1.7 mrg dt->_dmamem_map = psycho_dmamem_map;
691 1.7 mrg dt->_dmamem_unmap = psycho_dmamem_unmap;
692 1.7 mrg PCOPY(_dmamem_mmap);
693 1.7 mrg #undef PCOPY
694 1.7 mrg return (dt);
695 1.7 mrg }
696 1.7 mrg
697 1.7 mrg /*
698 1.7 mrg * bus space support. <sparc64/dev/psychoreg.h> has a discussion about
699 1.7 mrg * PCI physical addresses.
700 1.7 mrg */
701 1.7 mrg
702 1.7 mrg static int get_childspace __P((int));
703 1.7 mrg
704 1.7 mrg static int
705 1.7 mrg get_childspace(type)
706 1.7 mrg int type;
707 1.7 mrg {
708 1.7 mrg int ss;
709 1.7 mrg
710 1.7 mrg switch (type) {
711 1.7 mrg case PCI_CONFIG_BUS_SPACE:
712 1.7 mrg ss = 0x00;
713 1.7 mrg break;
714 1.7 mrg case PCI_IO_BUS_SPACE:
715 1.7 mrg ss = 0x01;
716 1.7 mrg break;
717 1.7 mrg case PCI_MEMORY_BUS_SPACE:
718 1.7 mrg ss = 0x02;
719 1.7 mrg break;
720 1.7 mrg #if 0
721 1.7 mrg /* we don't do 64 bit memory space */
722 1.7 mrg case PCI_MEMORY64_BUS_SPACE:
723 1.7 mrg ss = 0x03;
724 1.7 mrg break;
725 1.7 mrg #endif
726 1.7 mrg default:
727 1.7 mrg panic("get_childspace: unknown bus type");
728 1.7 mrg }
729 1.7 mrg
730 1.7 mrg return (ss);
731 1.7 mrg }
732 1.7 mrg
733 1.7 mrg static int
734 1.7 mrg _psycho_bus_map(t, btype, offset, size, flags, vaddr, hp)
735 1.7 mrg bus_space_tag_t t;
736 1.7 mrg bus_type_t btype;
737 1.7 mrg bus_addr_t offset;
738 1.7 mrg bus_size_t size;
739 1.7 mrg int flags;
740 1.7 mrg vaddr_t vaddr;
741 1.7 mrg bus_space_handle_t *hp;
742 1.7 mrg {
743 1.7 mrg struct psycho_pbm *pp = t->cookie;
744 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
745 1.7 mrg int i, ss;
746 1.7 mrg
747 1.7 mrg DPRINTF(PDB_BUSMAP, ("_psycho_bus_map: type %d off %qx sz %qx flags %d va %p", t->type, offset, size, flags, vaddr));
748 1.7 mrg
749 1.7 mrg ss = get_childspace(t->type);
750 1.7 mrg DPRINTF(PDB_BUSMAP, (" cspace %d", ss));
751 1.7 mrg
752 1.7 mrg
753 1.7 mrg for (i = 0; i < pp->pp_nrange; i++) {
754 1.7 mrg bus_addr_t paddr;
755 1.7 mrg
756 1.7 mrg if (((pp->pp_range[i].cspace >> 24) & 0x03) != ss)
757 1.7 mrg continue;
758 1.7 mrg
759 1.7 mrg paddr = pp->pp_range[i].phys_lo + offset;
760 1.7 mrg paddr |= ((bus_addr_t)pp->pp_range[i].phys_hi<<32);
761 1.7 mrg DPRINTF(PDB_BUSMAP, ("\n_psycho_bus_map: mapping paddr space %lx offset %lx paddr %qx\n",
762 1.7 mrg (long)ss, (long)offset, paddr));
763 1.7 mrg return (bus_space_map2(sc->sc_bustag, t->type, paddr,
764 1.7 mrg size, flags, vaddr, hp));
765 1.7 mrg }
766 1.7 mrg DPRINTF(PDB_BUSMAP, (" FAILED\n"));
767 1.7 mrg return (EINVAL);
768 1.7 mrg }
769 1.7 mrg
770 1.7 mrg static int
771 1.7 mrg psycho_bus_mmap(t, btype, paddr, flags, hp)
772 1.7 mrg bus_space_tag_t t;
773 1.7 mrg bus_type_t btype;
774 1.7 mrg bus_addr_t paddr;
775 1.7 mrg int flags;
776 1.7 mrg bus_space_handle_t *hp;
777 1.7 mrg {
778 1.7 mrg bus_addr_t offset = paddr;
779 1.7 mrg struct psycho_pbm *pp = t->cookie;
780 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
781 1.7 mrg int i, ss;
782 1.7 mrg
783 1.7 mrg ss = get_childspace(t->type);
784 1.7 mrg
785 1.7 mrg DPRINTF(PDB_BUSMAP, ("_psycho_bus_mmap: type %d flags %d pa %qx\n", btype, flags, paddr));
786 1.7 mrg
787 1.7 mrg for (i = 0; i < pp->pp_nrange; i++) {
788 1.7 mrg bus_addr_t paddr;
789 1.7 mrg
790 1.7 mrg if (((pp->pp_range[i].cspace >> 24) & 0x03) != ss)
791 1.7 mrg continue;
792 1.7 mrg
793 1.7 mrg paddr = pp->pp_range[i].phys_lo + offset;
794 1.7 mrg paddr |= ((bus_addr_t)pp->pp_range[i].phys_hi<<32);
795 1.7 mrg DPRINTF(PDB_BUSMAP, ("\n_psycho_bus_mmap: mapping paddr space %lx offset %lx paddr %qx\n",
796 1.7 mrg (long)ss, (long)offset, paddr));
797 1.7 mrg return (bus_space_mmap(sc->sc_bustag, 0, paddr,
798 1.7 mrg flags, hp));
799 1.7 mrg }
800 1.7 mrg
801 1.7 mrg return (-1);
802 1.7 mrg }
803 1.7 mrg
804 1.7 mrg /*
805 1.7 mrg * interrupt mapping. this tells what sparc ipl any given ino runs at.
806 1.7 mrg */
807 1.7 mrg static int pci_ino_to_ipl_table[] = {
808 1.7 mrg 0, 0, 0, 0, /* PCI A, Slot 0, INTA#/B#/C#/D# */
809 1.7 mrg 0, 0, 0, 0, /* PCI A, Slot 1, INTA#/B#/C#/D# */
810 1.7 mrg 0, 0, 0, 0, /* PCI A, Slot 2, INTA#/B#/C#/D# (unavailable) */
811 1.7 mrg 0, 0, 0, 0, /* PCI A, Slot 3, INTA#/B#/C#/D# (unavailable) */
812 1.7 mrg 0, 0, 0, 0, /* PCI B, Slot 0, INTA#/B#/C#/D# */
813 1.7 mrg 0, 0, 0, 0, /* PCI B, Slot 0, INTA#/B#/C#/D# */
814 1.7 mrg 0, 0, 0, 0, /* PCI B, Slot 2, INTA#/B#/C#/D# */
815 1.7 mrg 0, 0, 0, 0, /* PCI B, Slot 3, INTA#/B#/C#/D# */
816 1.7 mrg 4, /* SCSI */
817 1.7 mrg 6, /* Ethernet */
818 1.7 mrg 3, /* Parallel */
819 1.7 mrg 9, /* Audio Record */
820 1.7 mrg 9, /* Audio Playback */
821 1.7 mrg 14, /* Power Fail */
822 1.7 mrg 4, /* Keyboard/Mouse/Serial */
823 1.7 mrg 8, /* Floppy */
824 1.7 mrg 14, /* Thermal Warning */
825 1.7 mrg 12, /* Keyboard */
826 1.7 mrg 12, /* Mouse */
827 1.7 mrg 12, /* Serial */
828 1.7 mrg 0, /* Reserved */
829 1.7 mrg 0, /* Reserved */
830 1.7 mrg 14, /* Uncorrectable ECC error */
831 1.7 mrg 14, /* Correctable ECC error */
832 1.7 mrg 14, /* PCI A bus error */
833 1.7 mrg 14, /* PCI B bus error */
834 1.7 mrg 14, /* power management */
835 1.7 mrg };
836 1.7 mrg
837 1.7 mrg int
838 1.7 mrg psycho_intr_map(tag, pin, line, ihp)
839 1.7 mrg pcitag_t tag;
840 1.7 mrg int pin;
841 1.7 mrg int line;
842 1.7 mrg pci_intr_handle_t *ihp;
843 1.7 mrg {
844 1.7 mrg
845 1.7 mrg if (line < 0 || line > 0x32)
846 1.7 mrg panic("psycho_intr_map: line line < 0 || line > 0x32");
847 1.7 mrg
848 1.7 mrg /* UltraSPARC IIi does not use this register, but we have set it */
849 1.7 mrg (*ihp) = line;
850 1.7 mrg return (0);
851 1.7 mrg }
852 1.7 mrg
853 1.7 mrg /*
854 1.7 mrg * install an interrupt handler for a PCI device
855 1.7 mrg */
856 1.7 mrg void *
857 1.7 mrg psycho_intr_establish(t, level, flags, handler, arg)
858 1.7 mrg bus_space_tag_t t;
859 1.7 mrg int level;
860 1.7 mrg int flags;
861 1.7 mrg int (*handler) __P((void *));
862 1.7 mrg void *arg;
863 1.7 mrg {
864 1.7 mrg struct psycho_pbm *pp = t->cookie;
865 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
866 1.7 mrg struct intrhand *ih;
867 1.7 mrg int ino;
868 1.7 mrg long vec = level;
869 1.7 mrg
870 1.7 mrg ih = (struct intrhand *)
871 1.7 mrg malloc(sizeof(struct intrhand), M_DEVBUF, M_NOWAIT);
872 1.7 mrg if (ih == NULL)
873 1.7 mrg return (NULL);
874 1.7 mrg
875 1.7 mrg DPRINTF(PDB_INTR, ("\npsycho_intr_establish: level %x", level));
876 1.7 mrg ino = INTINO(vec);
877 1.7 mrg DPRINTF(PDB_INTR, (" ino %x", ino));
878 1.7 mrg if ((flags & BUS_INTR_ESTABLISH_SOFTINTR) == 0) {
879 1.7 mrg volatile int64_t *intrmapptr, *intrclrptr;
880 1.7 mrg int64_t intrmap = 0;
881 1.7 mrg int i;
882 1.7 mrg
883 1.7 mrg DPRINTF(PDB_INTR, ("\npsycho: intr %lx: %lx\nHunting for IRQ...\n",
884 1.7 mrg (long)ino, intrlev[ino]));
885 1.7 mrg if ((ino & INTMAP_OBIO) == 0) {
886 1.7 mrg /*
887 1.7 mrg * there are only 8 PCI interrupt INO's available
888 1.7 mrg */
889 1.7 mrg i = INTPCIINOX(vec);
890 1.7 mrg
891 1.7 mrg intrmapptr = &((&sc->sc_regs->pcia_slot0_int)[i]);
892 1.7 mrg intrclrptr = &sc->sc_regs->pcia0_clr_int[i<<2];
893 1.7 mrg
894 1.7 mrg DPRINTF(PDB_INTR, ("- turning on PCI intr %d", i));
895 1.7 mrg } else {
896 1.7 mrg /*
897 1.7 mrg * there are INTPCI_MAXOBINO (0x16) OBIO interrupts
898 1.7 mrg * available here (i think).
899 1.7 mrg */
900 1.7 mrg i = INTPCIOBINOX(vec);
901 1.7 mrg if (i > INTPCI_MAXOBINO)
902 1.7 mrg panic("ino %d", vec);
903 1.7 mrg
904 1.7 mrg intrmapptr = &((&sc->sc_regs->scsi_int_map)[i]);
905 1.7 mrg intrclrptr = &((&sc->sc_regs->scsi_clr_int)[i]);
906 1.7 mrg
907 1.7 mrg DPRINTF(PDB_INTR, ("- turning on OBIO intr %d", i));
908 1.7 mrg }
909 1.7 mrg
910 1.7 mrg /* Register the map and clear intr registers */
911 1.7 mrg ih->ih_map = intrmapptr;
912 1.7 mrg ih->ih_clr = intrclrptr;
913 1.7 mrg
914 1.7 mrg /*
915 1.7 mrg * Read the current value as we can't change it besides the
916 1.7 mrg * valid bit so so make sure only this bit is changed.
917 1.7 mrg */
918 1.7 mrg intrmap = *intrmapptr;
919 1.7 mrg DPRINTF(PDB_INTR, ("; read intrmap = %016qx", intrmap));
920 1.7 mrg
921 1.7 mrg /* Enable the interrupt */
922 1.7 mrg intrmap |= INTMAP_V;
923 1.7 mrg DPRINTF(PDB_INTR, ("; addr of intrmapptr = %p", intrmapptr));
924 1.7 mrg DPRINTF(PDB_INTR, ("; writing intrmap = %016qx\n", intrmap));
925 1.7 mrg *intrmapptr = intrmap;
926 1.7 mrg DPRINTF(PDB_INTR, ("; reread intrmap = %016qx",
927 1.7 mrg (intrmap = *intrmapptr)));
928 1.7 mrg }
929 1.7 mrg #ifdef DEBUG
930 1.7 mrg if (psycho_debug & PDB_INTR) {
931 1.7 mrg long i;
932 1.7 mrg
933 1.7 mrg for (i = 0; i < 500000000; i++)
934 1.7 mrg continue;
935 1.7 mrg }
936 1.7 mrg #endif
937 1.7 mrg
938 1.7 mrg ih->ih_fun = handler;
939 1.7 mrg ih->ih_arg = arg;
940 1.7 mrg ih->ih_number = ino | 0x7c0;
941 1.7 mrg ih->ih_pil = pci_ino_to_ipl_table[ino];
942 1.7 mrg DPRINTF(PDB_INTR, ("; installing handler %p with ino %u pil %u\n",
943 1.7 mrg handler, (u_int)ino, (u_int)ih->ih_pil));
944 1.7 mrg intr_establish(ih->ih_pil, ih);
945 1.7 mrg return (ih);
946 1.7 mrg }
947 1.7 mrg
948 1.7 mrg /*
949 1.7 mrg * hooks into the iommu dvma calls.
950 1.7 mrg */
951 1.7 mrg int
952 1.7 mrg psycho_dmamap_load(t, map, buf, buflen, p, flags)
953 1.7 mrg bus_dma_tag_t t;
954 1.7 mrg bus_dmamap_t map;
955 1.7 mrg void *buf;
956 1.7 mrg bus_size_t buflen;
957 1.7 mrg struct proc *p;
958 1.7 mrg int flags;
959 1.7 mrg {
960 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
961 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
962 1.7 mrg
963 1.7 mrg return (iommu_dvmamap_load(t, &sc->sc_is, map, buf, buflen, p, flags));
964 1.7 mrg }
965 1.7 mrg
966 1.7 mrg void
967 1.7 mrg psycho_dmamap_unload(t, map)
968 1.7 mrg bus_dma_tag_t t;
969 1.7 mrg bus_dmamap_t map;
970 1.7 mrg {
971 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
972 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
973 1.7 mrg
974 1.7 mrg iommu_dvmamap_unload(t, &sc->sc_is, map);
975 1.7 mrg }
976 1.7 mrg
977 1.7 mrg void
978 1.7 mrg psycho_dmamap_sync(t, map, offset, len, ops)
979 1.7 mrg bus_dma_tag_t t;
980 1.7 mrg bus_dmamap_t map;
981 1.7 mrg bus_addr_t offset;
982 1.7 mrg bus_size_t len;
983 1.7 mrg int ops;
984 1.7 mrg {
985 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
986 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
987 1.7 mrg
988 1.7 mrg iommu_dvmamap_sync(t, &sc->sc_is, map, offset, len, ops);
989 1.7 mrg bus_dmamap_sync(t->_parent, map, offset, len, ops);
990 1.7 mrg }
991 1.7 mrg
992 1.7 mrg int
993 1.7 mrg psycho_dmamem_alloc(t, size, alignment, boundary, segs, nsegs, rsegs, flags)
994 1.7 mrg bus_dma_tag_t t;
995 1.7 mrg bus_size_t size;
996 1.7 mrg bus_size_t alignment;
997 1.7 mrg bus_size_t boundary;
998 1.7 mrg bus_dma_segment_t *segs;
999 1.7 mrg int nsegs;
1000 1.7 mrg int *rsegs;
1001 1.7 mrg int flags;
1002 1.7 mrg {
1003 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
1004 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
1005 1.7 mrg
1006 1.7 mrg return (iommu_dvmamem_alloc(t, &sc->sc_is, size, alignment, boundary,
1007 1.7 mrg segs, nsegs, rsegs, flags));
1008 1.7 mrg }
1009 1.7 mrg
1010 1.7 mrg void
1011 1.7 mrg psycho_dmamem_free(t, segs, nsegs)
1012 1.7 mrg bus_dma_tag_t t;
1013 1.7 mrg bus_dma_segment_t *segs;
1014 1.7 mrg int nsegs;
1015 1.7 mrg {
1016 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
1017 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
1018 1.7 mrg
1019 1.7 mrg iommu_dvmamem_free(t, &sc->sc_is, segs, nsegs);
1020 1.7 mrg }
1021 1.7 mrg
1022 1.7 mrg int
1023 1.7 mrg psycho_dmamem_map(t, segs, nsegs, size, kvap, flags)
1024 1.7 mrg bus_dma_tag_t t;
1025 1.7 mrg bus_dma_segment_t *segs;
1026 1.7 mrg int nsegs;
1027 1.7 mrg size_t size;
1028 1.7 mrg caddr_t *kvap;
1029 1.7 mrg int flags;
1030 1.7 mrg {
1031 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
1032 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
1033 1.7 mrg
1034 1.7 mrg return (iommu_dvmamem_map(t, &sc->sc_is, segs, nsegs, size, kvap, flags));
1035 1.7 mrg }
1036 1.7 mrg
1037 1.7 mrg void
1038 1.7 mrg psycho_dmamem_unmap(t, kva, size)
1039 1.7 mrg bus_dma_tag_t t;
1040 1.7 mrg caddr_t kva;
1041 1.7 mrg size_t size;
1042 1.7 mrg {
1043 1.7 mrg struct psycho_pbm *pp = (struct psycho_pbm *)t->_cookie;
1044 1.7 mrg struct psycho_softc *sc = pp->pp_sc;
1045 1.7 mrg
1046 1.7 mrg iommu_dvmamem_unmap(t, &sc->sc_is, kva, size);
1047 1.1 mrg }
1048