]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - sys/sparc64/pci/schizo.c
MFC: r227960
[FreeBSD/releng/9.0.git] / sys / sparc64 / pci / schizo.c
1 /*-
2  * Copyright (c) 1999, 2000 Matthew R. Green
3  * Copyright (c) 2001 - 2003 by Thomas Moestl <tmm@FreeBSD.org>
4  * Copyright (c) 2005 - 2011 by Marius Strobl <marius@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  *      from: NetBSD: psycho.c,v 1.39 2001/10/07 20:30:41 eeh Exp
31  *      from: FreeBSD: psycho.c 183152 2008-09-18 19:45:22Z marius
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 /*
38  * Driver for `Schizo' Fireplane/Safari to PCI 2.1, `Tomatillo' JBus to
39  * PCI 2.2 and `XMITS' Fireplane/Safari to PCI-X bridges
40  */
41
42 #include "opt_ofw_pci.h"
43 #include "opt_schizo.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/bus.h>
48 #include <sys/kernel.h>
49 #include <sys/lock.h>
50 #include <sys/malloc.h>
51 #include <sys/module.h>
52 #include <sys/mutex.h>
53 #include <sys/pcpu.h>
54 #include <sys/rman.h>
55 #include <sys/sysctl.h>
56 #include <sys/time.h>
57 #include <sys/timetc.h>
58
59 #include <dev/ofw/ofw_bus.h>
60 #include <dev/ofw/ofw_pci.h>
61 #include <dev/ofw/openfirm.h>
62
63 #include <machine/bus.h>
64 #include <machine/bus_common.h>
65 #include <machine/bus_private.h>
66 #include <machine/fsr.h>
67 #include <machine/iommureg.h>
68 #include <machine/iommuvar.h>
69 #include <machine/resource.h>
70
71 #include <dev/pci/pcireg.h>
72 #include <dev/pci/pcivar.h>
73
74 #include <sparc64/pci/ofw_pci.h>
75 #include <sparc64/pci/schizoreg.h>
76 #include <sparc64/pci/schizovar.h>
77
78 #include "pcib_if.h"
79
80 static const struct schizo_desc *schizo_get_desc(device_t);
81 static void schizo_set_intr(struct schizo_softc *, u_int, u_int,
82     driver_filter_t);
83 static void schizo_dmamap_sync(bus_dma_tag_t dt, bus_dmamap_t map,
84     bus_dmasync_op_t op);
85 static void ichip_dmamap_sync(bus_dma_tag_t dt, bus_dmamap_t map,
86     bus_dmasync_op_t op);
87 static void schizo_intr_enable(void *);
88 static void schizo_intr_disable(void *);
89 static void schizo_intr_assign(void *);
90 static void schizo_intr_clear(void *);
91 static int schizo_intr_register(struct schizo_softc *sc, u_int ino);
92 static int schizo_get_intrmap(struct schizo_softc *, u_int,
93     bus_addr_t *, bus_addr_t *);
94 static bus_space_tag_t schizo_alloc_bus_tag(struct schizo_softc *, int);
95 static timecounter_get_t schizo_get_timecount;
96
97 /* Interrupt handlers */
98 static driver_filter_t schizo_pci_bus;
99 static driver_filter_t schizo_ue;
100 static driver_filter_t schizo_ce;
101 static driver_filter_t schizo_host_bus;
102 static driver_filter_t schizo_cdma;
103
104 /* IOMMU support */
105 static void schizo_iommu_init(struct schizo_softc *, int, uint32_t);
106
107 /*
108  * Methods
109  */
110 static device_probe_t schizo_probe;
111 static device_attach_t schizo_attach;
112 static bus_read_ivar_t schizo_read_ivar;
113 static bus_setup_intr_t schizo_setup_intr;
114 static bus_alloc_resource_t schizo_alloc_resource;
115 static bus_activate_resource_t schizo_activate_resource;
116 static bus_deactivate_resource_t schizo_deactivate_resource;
117 static bus_release_resource_t schizo_release_resource;
118 static bus_get_dma_tag_t schizo_get_dma_tag;
119 static pcib_maxslots_t schizo_maxslots;
120 static pcib_read_config_t schizo_read_config;
121 static pcib_write_config_t schizo_write_config;
122 static pcib_route_interrupt_t schizo_route_interrupt;
123 static ofw_bus_get_node_t schizo_get_node;
124 static ofw_pci_setup_device_t schizo_setup_device;
125
126 static device_method_t schizo_methods[] = {
127         /* Device interface */
128         DEVMETHOD(device_probe,         schizo_probe),
129         DEVMETHOD(device_attach,        schizo_attach),
130         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
131         DEVMETHOD(device_suspend,       bus_generic_suspend),
132         DEVMETHOD(device_resume,        bus_generic_resume),
133
134         /* Bus interface */
135         DEVMETHOD(bus_print_child,      bus_generic_print_child),
136         DEVMETHOD(bus_read_ivar,        schizo_read_ivar),
137         DEVMETHOD(bus_setup_intr,       schizo_setup_intr),
138         DEVMETHOD(bus_teardown_intr,    bus_generic_teardown_intr),
139         DEVMETHOD(bus_alloc_resource,   schizo_alloc_resource),
140         DEVMETHOD(bus_activate_resource,        schizo_activate_resource),
141         DEVMETHOD(bus_deactivate_resource,      schizo_deactivate_resource),
142         DEVMETHOD(bus_release_resource, schizo_release_resource),
143         DEVMETHOD(bus_get_dma_tag,      schizo_get_dma_tag),
144
145         /* pcib interface */
146         DEVMETHOD(pcib_maxslots,        schizo_maxslots),
147         DEVMETHOD(pcib_read_config,     schizo_read_config),
148         DEVMETHOD(pcib_write_config,    schizo_write_config),
149         DEVMETHOD(pcib_route_interrupt, schizo_route_interrupt),
150
151         /* ofw_bus interface */
152         DEVMETHOD(ofw_bus_get_node,     schizo_get_node),
153
154         /* ofw_pci interface */          
155         DEVMETHOD(ofw_pci_setup_device, schizo_setup_device),
156
157         KOBJMETHOD_END
158 };
159
160 static devclass_t schizo_devclass;
161
162 DEFINE_CLASS_0(pcib, schizo_driver, schizo_methods,
163     sizeof(struct schizo_softc));
164 EARLY_DRIVER_MODULE(schizo, nexus, schizo_driver, schizo_devclass, 0, 0,
165     BUS_PASS_BUS);
166
167 static SLIST_HEAD(, schizo_softc) schizo_softcs =
168     SLIST_HEAD_INITIALIZER(schizo_softcs);
169
170 static const struct intr_controller schizo_ic = {
171         schizo_intr_enable,
172         schizo_intr_disable,
173         schizo_intr_assign,
174         schizo_intr_clear
175 };
176
177 struct schizo_icarg {
178         struct schizo_softc     *sica_sc;
179         bus_addr_t              sica_map;
180         bus_addr_t              sica_clr;
181 };
182
183 #define SCHIZO_PERF_CNT_QLTY    100
184
185 #define SCHIZO_SPC_BARRIER(spc, sc, offs, len, flags)                   \
186         bus_barrier((sc)->sc_mem_res[(spc)], (offs), (len), (flags))
187 #define SCHIZO_SPC_READ_8(spc, sc, offs)                                \
188         bus_read_8((sc)->sc_mem_res[(spc)], (offs))
189 #define SCHIZO_SPC_WRITE_8(spc, sc, offs, v)                            \
190         bus_write_8((sc)->sc_mem_res[(spc)], (offs), (v))
191
192 #ifndef SCHIZO_DEBUG
193 #define SCHIZO_SPC_SET(spc, sc, offs, reg, v)                           \
194         SCHIZO_SPC_WRITE_8((spc), (sc), (offs), (v))
195 #else
196 #define SCHIZO_SPC_SET(spc, sc, offs, reg, v) do {                      \
197         device_printf((sc)->sc_dev, reg " 0x%016llx -> 0x%016llx\n",    \
198             (unsigned long long)SCHIZO_SPC_READ_8((spc), (sc), (offs)), \
199             (unsigned long long)(v));                                   \
200         SCHIZO_SPC_WRITE_8((spc), (sc), (offs), (v));                   \
201         } while (0)
202 #endif
203
204 #define SCHIZO_PCI_READ_8(sc, offs)                                     \
205         SCHIZO_SPC_READ_8(STX_PCI, (sc), (offs))
206 #define SCHIZO_PCI_WRITE_8(sc, offs, v)                                 \
207         SCHIZO_SPC_WRITE_8(STX_PCI, (sc), (offs), (v))
208 #define SCHIZO_CTRL_READ_8(sc, offs)                                    \
209         SCHIZO_SPC_READ_8(STX_CTRL, (sc), (offs))
210 #define SCHIZO_CTRL_WRITE_8(sc, offs, v)                                \
211         SCHIZO_SPC_WRITE_8(STX_CTRL, (sc), (offs), (v))
212 #define SCHIZO_PCICFG_READ_8(sc, offs)                                  \
213         SCHIZO_SPC_READ_8(STX_PCICFG, (sc), (offs))
214 #define SCHIZO_PCICFG_WRITE_8(sc, offs, v)                              \
215         SCHIZO_SPC_WRITE_8(STX_PCICFG, (sc), (offs), (v))
216 #define SCHIZO_ICON_READ_8(sc, offs)                                    \
217         SCHIZO_SPC_READ_8(STX_ICON, (sc), (offs))
218 #define SCHIZO_ICON_WRITE_8(sc, offs, v)                                \
219         SCHIZO_SPC_WRITE_8(STX_ICON, (sc), (offs), (v))
220
221 #define SCHIZO_PCI_SET(sc, offs, v)                                     \
222         SCHIZO_SPC_SET(STX_PCI, (sc), (offs), # offs, (v))
223 #define SCHIZO_CTRL_SET(sc, offs, v)                                    \
224         SCHIZO_SPC_SET(STX_CTRL, (sc), (offs), # offs, (v))
225
226 struct schizo_desc {
227         const char      *sd_string;
228         int             sd_mode;
229         const char      *sd_name;
230 };
231
232 static const struct schizo_desc const schizo_compats[] = {
233         { "pci108e,8001",       SCHIZO_MODE_SCZ,        "Schizo" },
234 #if 0
235         { "pci108e,8002",       SCHIZO_MODE_XMS,        "XMITS" },
236 #endif
237         { "pci108e,a801",       SCHIZO_MODE_TOM,        "Tomatillo" },
238         { NULL,                 0,                      NULL }
239 };
240
241 static const struct schizo_desc *
242 schizo_get_desc(device_t dev)
243 {
244         const struct schizo_desc *desc;
245         const char *compat;
246
247         compat = ofw_bus_get_compat(dev);
248         if (compat == NULL)
249                 return (NULL);
250         for (desc = schizo_compats; desc->sd_string != NULL; desc++)
251                 if (strcmp(desc->sd_string, compat) == 0)
252                         return (desc);
253         return (NULL);
254 }
255
256 static int
257 schizo_probe(device_t dev)
258 {
259         const char *dtype;
260
261         dtype = ofw_bus_get_type(dev);
262         if (dtype != NULL && strcmp(dtype, OFW_TYPE_PCI) == 0 &&
263             schizo_get_desc(dev) != NULL) {
264                 device_set_desc(dev, "Sun Host-PCI bridge");
265                 return (0);
266         }
267         return (ENXIO);
268 }
269
270 static int
271 schizo_attach(device_t dev)
272 {
273         struct ofw_pci_ranges *range;
274         const struct schizo_desc *desc;
275         struct schizo_softc *asc, *sc, *osc;
276         struct timecounter *tc;
277         uint64_t ino_bitmap, reg;
278         phandle_t node;
279         uint32_t prop, prop_array[2];
280         int i, j, mode, rid, tsbsize;
281
282         sc = device_get_softc(dev);
283         node = ofw_bus_get_node(dev);
284         desc = schizo_get_desc(dev);
285         mode = desc->sd_mode;
286
287         sc->sc_dev = dev;
288         sc->sc_node = node;
289         sc->sc_mode = mode;
290         sc->sc_flags = 0;
291
292         /*
293          * The Schizo has three register banks:
294          * (0) per-PBM PCI configuration and status registers, but for bus B
295          *     shared with the UPA64s interrupt mapping register banks
296          * (1) shared Schizo controller configuration and status registers
297          * (2) per-PBM PCI configuration space
298          *
299          * The Tomatillo has four register banks:
300          * (0) per-PBM PCI configuration and status registers
301          * (1) per-PBM Tomatillo controller configuration registers, but on
302          *     machines having the `jbusppm' device shared with its Estar
303          *     register bank for bus A
304          * (2) per-PBM PCI configuration space
305          * (3) per-PBM interrupt concentrator registers
306          */
307         sc->sc_half = (bus_get_resource_start(dev, SYS_RES_MEMORY, STX_PCI) >>
308             20) & 1;
309         for (i = 0; i < (mode == SCHIZO_MODE_SCZ ? SCZ_NREG : TOM_NREG);
310             i++) {
311                 rid = i;
312                 sc->sc_mem_res[i] = bus_alloc_resource_any(dev,
313                     SYS_RES_MEMORY, &rid,
314                     (((mode == SCHIZO_MODE_SCZ && ((sc->sc_half == 1 &&
315                     i == STX_PCI) || i == STX_CTRL)) ||
316                     (mode == SCHIZO_MODE_TOM && sc->sc_half == 0 &&
317                     i == STX_CTRL)) ? RF_SHAREABLE : 0) | RF_ACTIVE);
318                 if (sc->sc_mem_res[i] == NULL)
319                         panic("%s: could not allocate register bank %d",
320                             __func__, i);
321         }
322
323         /*
324          * Match other Schizos that are already configured against
325          * the controller base physical address.  This will be the
326          * same for a pair of devices that share register space.
327          */
328         osc = NULL;
329         SLIST_FOREACH(asc, &schizo_softcs, sc_link) {
330                 if (rman_get_start(asc->sc_mem_res[STX_CTRL]) ==
331                     rman_get_start(sc->sc_mem_res[STX_CTRL])) {
332                         /* Found partner. */
333                         osc = asc;
334                         break;
335                 }
336         }
337         if (osc == NULL) {
338                 sc->sc_mtx = malloc(sizeof(*sc->sc_mtx), M_DEVBUF,
339                     M_NOWAIT | M_ZERO);
340                 if (sc->sc_mtx == NULL)
341                         panic("%s: could not malloc mutex", __func__);
342                 mtx_init(sc->sc_mtx, "pcib_mtx", NULL, MTX_SPIN);
343         } else {
344                 if (sc->sc_mode != SCHIZO_MODE_SCZ)
345                         panic("%s: no partner expected", __func__);
346                 if (mtx_initialized(osc->sc_mtx) == 0)
347                         panic("%s: mutex not initialized", __func__);
348                 sc->sc_mtx = osc->sc_mtx;
349         }
350
351         if (OF_getprop(node, "portid", &sc->sc_ign, sizeof(sc->sc_ign)) == -1)
352                 panic("%s: could not determine IGN", __func__);
353         if (OF_getprop(node, "version#", &sc->sc_ver, sizeof(sc->sc_ver)) ==
354             -1)
355                 panic("%s: could not determine version", __func__);
356         if (mode == SCHIZO_MODE_XMS && OF_getprop(node, "module-revision#",
357             &sc->sc_mrev, sizeof(sc->sc_mrev)) == -1)
358                 panic("%s: could not determine module-revision", __func__);
359         if (OF_getprop(node, "clock-frequency", &prop, sizeof(prop)) == -1)
360                 prop = 33000000;
361
362         if (mode == SCHIZO_MODE_XMS && (SCHIZO_PCI_READ_8(sc, STX_PCI_CTRL) &
363             XMS_PCI_CTRL_X_MODE) != 0) {
364                 if (sc->sc_mrev < 1)
365                         panic("PCI-X mode unsupported");
366                 sc->sc_flags |= SCHIZO_FLAGS_XMODE;
367         }
368
369         device_printf(dev, "%s, version %d, ", desc->sd_name, sc->sc_ver);
370         if (mode == SCHIZO_MODE_XMS)
371                 printf("module-revision %d, ", sc->sc_mrev);
372         printf("IGN %#x, bus %c, PCI%s mode, %dMHz\n", sc->sc_ign,
373             'A' + sc->sc_half, (sc->sc_flags & SCHIZO_FLAGS_XMODE) != 0 ?
374             "-X" : "", prop / 1000 / 1000);
375
376         /* Set up the PCI interrupt retry timer. */
377         SCHIZO_PCI_SET(sc, STX_PCI_INTR_RETRY_TIM, 5);
378
379         /* Set up the PCI control register. */
380         reg = SCHIZO_PCI_READ_8(sc, STX_PCI_CTRL);
381         reg &= ~(TOM_PCI_CTRL_DTO_IEN | STX_PCI_CTRL_ARB_PARK |
382             STX_PCI_CTRL_ARB_MASK);
383         reg |= STX_PCI_CTRL_MMU_IEN | STX_PCI_CTRL_SBH_IEN |
384             STX_PCI_CTRL_ERR_IEN;
385         if (OF_getproplen(node, "no-bus-parking") < 0)
386                 reg |= STX_PCI_CTRL_ARB_PARK;
387         if (mode == SCHIZO_MODE_XMS && sc->sc_mrev == 1)
388                 reg |= XMS_PCI_CTRL_XMITS10_ARB_MASK;
389         else
390                 reg |= STX_PCI_CTRL_ARB_MASK;
391         if (mode == SCHIZO_MODE_TOM) {
392                 reg |= TOM_PCI_CTRL_PRM | TOM_PCI_CTRL_PRO | TOM_PCI_CTRL_PRL;
393                 if (sc->sc_ver <= 1)    /* revision <= 2.0 */
394                         reg |= TOM_PCI_CTRL_DTO_IEN;
395                 else
396                         reg |= STX_PCI_CTRL_PTO;
397         } else if (mode == SCHIZO_MODE_XMS) {
398                 SCHIZO_PCI_SET(sc, XMS_PCI_PARITY_DETECT, 0x3fff);
399                 SCHIZO_PCI_SET(sc, XMS_PCI_UPPER_RETRY_COUNTER, 0x3e8);
400                 reg |= XMS_PCI_CTRL_X_ERRINT_EN;
401         }
402         SCHIZO_PCI_SET(sc, STX_PCI_CTRL, reg);
403
404         /* Set up the PCI diagnostic register. */
405         reg = SCHIZO_PCI_READ_8(sc, STX_PCI_DIAG);
406         reg &= ~(SCZ_PCI_DIAG_RTRYARB_DIS | STX_PCI_DIAG_RETRY_DIS |
407             STX_PCI_DIAG_INTRSYNC_DIS);
408         SCHIZO_PCI_SET(sc, STX_PCI_DIAG, reg);
409
410         /*
411          * Enable DMA write parity error interrupts of version >= 7 (i.e.
412          * revision >= 2.5) Schizo and XMITS (enabling it on XMITS < 3.0 has
413          * no effect though).
414          */
415         if ((mode == SCHIZO_MODE_SCZ && sc->sc_ver >= 7) ||
416             mode == SCHIZO_MODE_XMS) {
417                 reg = SCHIZO_PCI_READ_8(sc, SX_PCI_CFG_ICD);
418                 reg |= SX_PCI_CFG_ICD_DMAW_PERR_IEN;
419                 SCHIZO_PCI_SET(sc, SX_PCI_CFG_ICD, reg);
420         }
421
422         /*
423          * On Tomatillo clear the I/O prefetch lengths (workaround for a
424          * Jalapeno bug).
425          */
426         if (mode == SCHIZO_MODE_TOM)
427                 SCHIZO_PCI_SET(sc, TOM_PCI_IOC_CSR, TOM_PCI_IOC_PW |
428                     (1 << TOM_PCI_IOC_PREF_OFF_SHIFT) | TOM_PCI_IOC_CPRM |
429                     TOM_PCI_IOC_CPRO | TOM_PCI_IOC_CPRL);
430
431         /*
432          * Hunt through all the interrupt mapping regs and register
433          * the interrupt controller for our interrupt vectors.  We do
434          * this early in order to be able to catch stray interrupts.
435          * This is complicated by the fact that a pair of Schizo PBMs
436          * shares one IGN.
437          */
438         i = OF_getprop(node, "ino-bitmap", (void *)prop_array,
439             sizeof(prop_array));
440         if (i != -1)
441                 ino_bitmap = ((uint64_t)prop_array[1] << 32) | prop_array[0];
442         else {
443                 /*
444                  * If the ino-bitmap property is missing, just provide the
445                  * default set of interrupts for this controller and let
446                  * schizo_setup_intr() take care of child interrupts.
447                  */
448                 if (sc->sc_half == 0)
449                         ino_bitmap = (1ULL << STX_UE_INO) |
450                             (1ULL << STX_CE_INO) |
451                             (1ULL << STX_PCIERR_A_INO) |
452                             (1ULL << STX_BUS_INO);
453                 else
454                         ino_bitmap = 1ULL << STX_PCIERR_B_INO;
455         }
456         for (i = 0; i <= STX_MAX_INO; i++) {
457                 if ((ino_bitmap & (1ULL << i)) == 0)
458                         continue;
459                 if (i == STX_FB0_INO || i == STX_FB1_INO)
460                         /* Leave for upa(4). */
461                         continue;
462                 j = schizo_intr_register(sc, i);
463                 if (j != 0)
464                         device_printf(dev, "could not register interrupt "
465                             "controller for INO %d (%d)\n", i, j);
466         }
467
468         /*
469          * Setup Safari/JBus performance counter 0 in bus cycle counting
470          * mode as timecounter.  Unfortunately, this is broken with at
471          * least the version 4 Tomatillos found in Fire V120 and Blade
472          * 1500, which apparently actually count some different event at
473          * ~0.5 and 3MHz respectively instead (also when running in full
474          * power mode).  Besides, one counter seems to be shared by a
475          * "pair" of Tomatillos, too.
476          */
477         if (sc->sc_half == 0) {
478                 SCHIZO_CTRL_SET(sc, STX_CTRL_PERF,
479                     (STX_CTRL_PERF_DIS << STX_CTRL_PERF_CNT1_SHIFT) |
480                     (STX_CTRL_PERF_BUSCYC << STX_CTRL_PERF_CNT0_SHIFT));
481                 tc = malloc(sizeof(*tc), M_DEVBUF, M_NOWAIT | M_ZERO);
482                 if (tc == NULL)
483                         panic("%s: could not malloc timecounter", __func__);
484                 tc->tc_get_timecount = schizo_get_timecount;
485                 tc->tc_counter_mask = STX_CTRL_PERF_CNT_MASK;
486                 if (OF_getprop(OF_peer(0), "clock-frequency", &prop,
487                     sizeof(prop)) == -1)
488                         panic("%s: could not determine clock frequency",
489                             __func__);
490                 tc->tc_frequency = prop;
491                 tc->tc_name = strdup(device_get_nameunit(dev), M_DEVBUF);
492                 if (mode == SCHIZO_MODE_SCZ)
493                         tc->tc_quality = SCHIZO_PERF_CNT_QLTY;
494                 else
495                         tc->tc_quality = -SCHIZO_PERF_CNT_QLTY;
496                 tc->tc_priv = sc;
497                 tc_init(tc);
498         }
499
500         /*
501          * Set up the IOMMU.  Schizo, Tomatillo and XMITS all have
502          * one per PBM.  Schizo and XMITS additionally have a streaming
503          * buffer, in Schizo version < 5 (i.e. revision < 2.3) it's
504          * affected by several errata and basically unusable though.
505          */
506         memcpy(&sc->sc_dma_methods, &iommu_dma_methods,
507             sizeof(sc->sc_dma_methods));
508         sc->sc_is.sis_sc = sc;
509         sc->sc_is.sis_is.is_flags = IOMMU_PRESERVE_PROM;
510         sc->sc_is.sis_is.is_pmaxaddr = IOMMU_MAXADDR(STX_IOMMU_BITS);
511         sc->sc_is.sis_is.is_sb[0] = sc->sc_is.sis_is.is_sb[1] = 0;
512         if (OF_getproplen(node, "no-streaming-cache") < 0 &&
513             !(sc->sc_mode == SCHIZO_MODE_SCZ && sc->sc_ver < 5))
514                 sc->sc_is.sis_is.is_sb[0] = STX_PCI_STRBUF;
515
516 #define TSBCASE(x)                                                      \
517         case (IOTSB_BASESZ << (x)) << (IO_PAGE_SHIFT - IOTTE_SHIFT):    \
518                 tsbsize = (x);                                          \
519                 break;                                                  \
520
521         i = OF_getprop(node, "virtual-dma", (void *)prop_array,
522             sizeof(prop_array));
523         if (i == -1 || i != sizeof(prop_array))
524                 schizo_iommu_init(sc, 7, -1);
525         else {
526                 switch (prop_array[1]) {
527                 TSBCASE(1);
528                 TSBCASE(2);
529                 TSBCASE(3);
530                 TSBCASE(4);
531                 TSBCASE(5);
532                 TSBCASE(6);
533                 TSBCASE(7);
534                 TSBCASE(8);
535                 default:
536                         panic("%s: unsupported DVMA size 0x%x",
537                             __func__, prop_array[1]);
538                         /* NOTREACHED */
539                 }
540                 schizo_iommu_init(sc, tsbsize, prop_array[0]);
541         }
542
543 #undef TSBCASE
544
545         /* Initialize memory and I/O rmans. */
546         sc->sc_pci_io_rman.rm_type = RMAN_ARRAY;
547         sc->sc_pci_io_rman.rm_descr = "Schizo PCI I/O Ports";
548         if (rman_init(&sc->sc_pci_io_rman) != 0 ||
549             rman_manage_region(&sc->sc_pci_io_rman, 0, STX_IO_SIZE) != 0)
550                 panic("%s: failed to set up I/O rman", __func__);
551         sc->sc_pci_mem_rman.rm_type = RMAN_ARRAY;
552         sc->sc_pci_mem_rman.rm_descr = "Schizo PCI Memory";
553         if (rman_init(&sc->sc_pci_mem_rman) != 0 ||
554             rman_manage_region(&sc->sc_pci_mem_rman, 0, STX_MEM_SIZE) != 0)
555                 panic("%s: failed to set up memory rman", __func__);
556
557         i = OF_getprop_alloc(node, "ranges", sizeof(*range), (void **)&range);
558         /*
559          * Make sure that the expected ranges are present.  The
560          * OFW_PCI_CS_MEM64 one is not currently used though.
561          */
562         if (i != STX_NRANGE)
563                 panic("%s: unsupported number of ranges", __func__);
564         /*
565          * Find the addresses of the various bus spaces.
566          * There should not be multiple ones of one kind.
567          * The physical start addresses of the ranges are the configuration,
568          * memory and I/O handles.
569          */
570         for (i = 0; i < STX_NRANGE; i++) {
571                 j = OFW_PCI_RANGE_CS(&range[i]);
572                 if (sc->sc_pci_bh[j] != 0)
573                         panic("%s: duplicate range for space %d",
574                             __func__, j);
575                 sc->sc_pci_bh[j] = OFW_PCI_RANGE_PHYS(&range[i]);
576         }
577         free(range, M_OFWPROP);
578
579         /* Register the softc, this is needed for paired Schizos. */
580         SLIST_INSERT_HEAD(&schizo_softcs, sc, sc_link);
581
582         /* Allocate our tags. */
583         sc->sc_pci_memt = schizo_alloc_bus_tag(sc, PCI_MEMORY_BUS_SPACE);
584         sc->sc_pci_iot = schizo_alloc_bus_tag(sc, PCI_IO_BUS_SPACE);
585         sc->sc_pci_cfgt = schizo_alloc_bus_tag(sc, PCI_CONFIG_BUS_SPACE);
586         if (bus_dma_tag_create(bus_get_dma_tag(dev), 8, 0,
587             sc->sc_is.sis_is.is_pmaxaddr, ~0, NULL, NULL,
588             sc->sc_is.sis_is.is_pmaxaddr, 0xff, 0xffffffff, 0, NULL, NULL,
589             &sc->sc_pci_dmat) != 0)
590                 panic("%s: bus_dma_tag_create failed", __func__);
591         /* Customize the tag. */
592         sc->sc_pci_dmat->dt_cookie = &sc->sc_is;
593         sc->sc_pci_dmat->dt_mt = &sc->sc_dma_methods;
594
595         /*
596          * Get the bus range from the firmware.
597          * NB: Tomatillos don't support PCI bus reenumeration.
598          */
599         i = OF_getprop(node, "bus-range", (void *)prop_array,
600             sizeof(prop_array));
601         if (i == -1)
602                 panic("%s: could not get bus-range", __func__);
603         if (i != sizeof(prop_array))
604                 panic("%s: broken bus-range (%d)", __func__, i);
605         sc->sc_pci_secbus = prop_array[0];
606         sc->sc_pci_subbus = prop_array[1];
607         if (bootverbose)
608                 device_printf(dev, "bus range %u to %u; PCI bus %d\n",
609                     sc->sc_pci_secbus, sc->sc_pci_subbus, sc->sc_pci_secbus);
610
611         /* Clear any pending PCI error bits. */
612         PCIB_WRITE_CONFIG(dev, sc->sc_pci_secbus, STX_CS_DEVICE, STX_CS_FUNC,
613             PCIR_STATUS, PCIB_READ_CONFIG(dev, sc->sc_pci_secbus,
614             STX_CS_DEVICE, STX_CS_FUNC, PCIR_STATUS, 2), 2);
615         SCHIZO_PCI_SET(sc, STX_PCI_CTRL, SCHIZO_PCI_READ_8(sc, STX_PCI_CTRL));
616         SCHIZO_PCI_SET(sc, STX_PCI_AFSR, SCHIZO_PCI_READ_8(sc, STX_PCI_AFSR));
617
618         /*
619          * Establish handlers for interesting interrupts...
620          * Someone at Sun clearly was smoking crack; with Schizos PCI
621          * bus error interrupts for one PBM can be routed to the other
622          * PBM though we obviously need to use the softc of the former
623          * as the argument for the interrupt handler and the softc of
624          * the latter as the argument for the interrupt controller.
625          */
626         if (sc->sc_half == 0) {
627                 if ((ino_bitmap & (1ULL << STX_PCIERR_A_INO)) != 0 ||
628                     (osc != NULL && ((struct schizo_icarg *)intr_vectors[
629                     INTMAP_VEC(sc->sc_ign, STX_PCIERR_A_INO)].iv_icarg)->
630                     sica_sc == osc))
631                         /*
632                          * We are the driver for PBM A and either also
633                          * registered the interrupt controller for us or
634                          * the driver for PBM B has probed first and
635                          * registered it for us.
636                          */
637                         schizo_set_intr(sc, 0, STX_PCIERR_A_INO,
638                             schizo_pci_bus);
639                 if ((ino_bitmap & (1ULL << STX_PCIERR_B_INO)) != 0 &&
640                     osc != NULL)
641                         /*
642                          * We are the driver for PBM A but registered
643                          * the interrupt controller for PBM B, i.e. the
644                          * driver for PBM B attached first but couldn't
645                          * set up a handler for PBM B.
646                          */
647                         schizo_set_intr(osc, 0, STX_PCIERR_B_INO,
648                             schizo_pci_bus);
649         } else {
650                 if ((ino_bitmap & (1ULL << STX_PCIERR_B_INO)) != 0 ||
651                     (osc != NULL && ((struct schizo_icarg *)intr_vectors[
652                     INTMAP_VEC(sc->sc_ign, STX_PCIERR_B_INO)].iv_icarg)->
653                     sica_sc == osc))
654                         /*
655                          * We are the driver for PBM B and either also
656                          * registered the interrupt controller for us or
657                          * the driver for PBM A has probed first and
658                          * registered it for us.
659                          */
660                         schizo_set_intr(sc, 0, STX_PCIERR_B_INO,
661                             schizo_pci_bus);
662                 if ((ino_bitmap & (1ULL << STX_PCIERR_A_INO)) != 0 &&
663                     osc != NULL)
664                         /*
665                          * We are the driver for PBM B but registered
666                          * the interrupt controller for PBM A, i.e. the
667                          * driver for PBM A attached first but couldn't
668                          * set up a handler for PBM A.
669                          */
670                         schizo_set_intr(osc, 0, STX_PCIERR_A_INO,
671                             schizo_pci_bus);
672         }
673         if ((ino_bitmap & (1ULL << STX_UE_INO)) != 0)
674                 schizo_set_intr(sc, 1, STX_UE_INO, schizo_ue);
675         if ((ino_bitmap & (1ULL << STX_CE_INO)) != 0)
676                 schizo_set_intr(sc, 2, STX_CE_INO, schizo_ce);
677         if ((ino_bitmap & (1ULL << STX_BUS_INO)) != 0)
678                 schizo_set_intr(sc, 3, STX_BUS_INO, schizo_host_bus);
679
680         /*
681          * According to the Schizo Errata I-13, consistent DMA flushing/
682          * syncing is FUBAR in version < 5 (i.e. revision < 2.3) bridges,
683          * so we can't use it and need to live with the consequences.  With
684          * Schizo version >= 5, CDMA flushing/syncing is usable but requires
685          * the workaround described in Schizo Errata I-23.  With Tomatillo
686          * and XMITS, CDMA flushing/syncing works as expected, Tomatillo
687          * version <= 4 (i.e. revision <= 2.3) bridges additionally require
688          * a block store after a write to TOMXMS_PCI_DMA_SYNC_PEND though.
689          */
690         if ((sc->sc_mode == SCHIZO_MODE_SCZ && sc->sc_ver >= 5) ||
691             sc->sc_mode == SCHIZO_MODE_TOM ||
692             sc->sc_mode == SCHIZO_MODE_XMS) {
693                 if (sc->sc_mode == SCHIZO_MODE_SCZ) {
694                         sc->sc_dma_methods.dm_dmamap_sync =
695                             schizo_dmamap_sync;
696                         sc->sc_cdma_state = SCHIZO_CDMA_STATE_IDLE;
697                         /*
698                          * Some firmware versions include the CDMA interrupt
699                          * at RID 4 but most don't.  With the latter we add
700                          * it ourselves at the spare RID 5.
701                          */
702                         i = INTINO(bus_get_resource_start(dev, SYS_RES_IRQ,
703                             4));
704                         if (i == STX_CDMA_A_INO || i == STX_CDMA_B_INO) {
705                                 (void)schizo_get_intrmap(sc, i, NULL,
706                                    &sc->sc_cdma_clr);
707                                 schizo_set_intr(sc, 4, i, schizo_cdma);
708                         } else {
709                                 i = STX_CDMA_A_INO + sc->sc_half;
710                                 if (bus_set_resource(dev, SYS_RES_IRQ, 5,
711                                     INTMAP_VEC(sc->sc_ign, i), 1) != 0)
712                                         panic("%s: failed to add CDMA "
713                                             "interrupt", __func__);
714                                 j = schizo_intr_register(sc, i);
715                                 if (j != 0)
716                                         panic("%s: could not register "
717                                             "interrupt controller for CDMA "
718                                             "(%d)", __func__, j);
719                                 (void)schizo_get_intrmap(sc, i, NULL,
720                                    &sc->sc_cdma_clr);
721                                 schizo_set_intr(sc, 5, i, schizo_cdma);
722                         }
723                 } else {
724                         if (sc->sc_mode == SCHIZO_MODE_XMS)
725                                 mtx_init(&sc->sc_sync_mtx, "pcib_sync_mtx",
726                                     NULL, MTX_SPIN);
727                         sc->sc_sync_val = 1ULL << (STX_PCIERR_A_INO +
728                             sc->sc_half);
729                         sc->sc_dma_methods.dm_dmamap_sync =
730                             ichip_dmamap_sync;
731                 }
732                 if (sc->sc_mode == SCHIZO_MODE_TOM && sc->sc_ver <= 4)
733                         sc->sc_flags |= SCHIZO_FLAGS_BSWAR;
734         }
735
736         /*
737          * Set the latency timer register as this isn't always done by the
738          * firmware.
739          */
740         PCIB_WRITE_CONFIG(dev, sc->sc_pci_secbus, STX_CS_DEVICE, STX_CS_FUNC,
741             PCIR_LATTIMER, OFW_PCI_LATENCY, 1);
742
743         ofw_bus_setup_iinfo(node, &sc->sc_pci_iinfo, sizeof(ofw_pci_intr_t));
744
745 #define SCHIZO_SYSCTL_ADD_UINT(name, arg, desc)                         \
746         SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),                     \
747             SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,     \
748             (name), CTLFLAG_RD, (arg), 0, (desc))
749
750         SCHIZO_SYSCTL_ADD_UINT("dma_ce", &sc->sc_stats_dma_ce,
751             "DMA correctable errors");
752         SCHIZO_SYSCTL_ADD_UINT("pci_non_fatal", &sc->sc_stats_pci_non_fatal,
753             "PCI bus non-fatal errors");
754
755 #undef SCHIZO_SYSCTL_ADD_UINT
756
757         device_add_child(dev, "pci", -1);
758         return (bus_generic_attach(dev));
759 }
760
761 static void
762 schizo_set_intr(struct schizo_softc *sc, u_int index, u_int ino,
763     driver_filter_t handler)
764 {
765         u_long vec;
766         int rid;
767
768         rid = index;
769         sc->sc_irq_res[index] = bus_alloc_resource_any(sc->sc_dev,
770             SYS_RES_IRQ, &rid, RF_ACTIVE);
771         if (sc->sc_irq_res[index] == NULL ||
772             INTINO(vec = rman_get_start(sc->sc_irq_res[index])) != ino ||
773             INTIGN(vec) != sc->sc_ign ||
774             intr_vectors[vec].iv_ic != &schizo_ic ||
775             bus_setup_intr(sc->sc_dev, sc->sc_irq_res[index],
776             INTR_TYPE_MISC | INTR_BRIDGE, handler, NULL, sc,
777             &sc->sc_ihand[index]) != 0)
778                 panic("%s: failed to set up interrupt %d", __func__, index);
779 }
780
781 static int
782 schizo_intr_register(struct schizo_softc *sc, u_int ino)
783 {
784         struct schizo_icarg *sica;
785         bus_addr_t intrclr, intrmap;
786         int error;
787
788         if (schizo_get_intrmap(sc, ino, &intrmap, &intrclr) == 0)
789                 return (ENXIO);
790         sica = malloc(sizeof(*sica), M_DEVBUF, M_NOWAIT);
791         if (sica == NULL)
792                 return (ENOMEM);
793         sica->sica_sc = sc;
794         sica->sica_map = intrmap;
795         sica->sica_clr = intrclr;
796 #ifdef SCHIZO_DEBUG
797         device_printf(sc->sc_dev, "intr map (INO %d) %#lx: %#lx, clr: %#lx\n",
798             ino, (u_long)intrmap, (u_long)SCHIZO_PCI_READ_8(sc, intrmap),
799             (u_long)intrclr);
800 #endif
801         error = (intr_controller_register(INTMAP_VEC(sc->sc_ign, ino),
802             &schizo_ic, sica));
803         if (error != 0)
804                 free(sica, M_DEVBUF);
805         return (error);
806 }
807
808 static int
809 schizo_get_intrmap(struct schizo_softc *sc, u_int ino,
810     bus_addr_t *intrmapptr, bus_addr_t *intrclrptr)
811 {
812         bus_addr_t intrclr, intrmap;
813         uint64_t mr;
814
815         /*
816          * XXX we only look for INOs rather than INRs since the firmware
817          * may not provide the IGN and the IGN is constant for all devices
818          * on that PCI controller.
819          */
820
821         if (ino > STX_MAX_INO) {
822                 device_printf(sc->sc_dev, "out of range INO %d requested\n",
823                     ino);
824                 return (0);
825         }
826
827         intrmap = STX_PCI_IMAP_BASE + (ino << 3);
828         intrclr = STX_PCI_ICLR_BASE + (ino << 3);
829         mr = SCHIZO_PCI_READ_8(sc, intrmap);
830         if (INTINO(mr) != ino) {
831                 device_printf(sc->sc_dev,
832                     "interrupt map entry does not match INO (%d != %d)\n",
833                     (int)INTINO(mr), ino);
834                 return (0);
835         }
836
837         if (intrmapptr != NULL)
838                 *intrmapptr = intrmap;
839         if (intrclrptr != NULL)
840                 *intrclrptr = intrclr;
841         return (1);
842 }
843
844 /*
845  * Interrupt handlers
846  */
847 static int
848 schizo_pci_bus(void *arg)
849 {
850         struct schizo_softc *sc = arg;
851         uint64_t afar, afsr, csr, iommu, xstat;
852         uint32_t status;
853         u_int fatal;
854
855         fatal = 0;
856
857         mtx_lock_spin(sc->sc_mtx);
858
859         afar = SCHIZO_PCI_READ_8(sc, STX_PCI_AFAR);
860         afsr = SCHIZO_PCI_READ_8(sc, STX_PCI_AFSR);
861         csr = SCHIZO_PCI_READ_8(sc, STX_PCI_CTRL);
862         iommu = SCHIZO_PCI_READ_8(sc, STX_PCI_IOMMU);
863         if ((sc->sc_flags & SCHIZO_FLAGS_XMODE) != 0)
864                 xstat = SCHIZO_PCI_READ_8(sc, XMS_PCI_X_ERR_STAT);
865         else
866                 xstat = 0;
867         status = PCIB_READ_CONFIG(sc->sc_dev, sc->sc_pci_secbus,
868             STX_CS_DEVICE, STX_CS_FUNC, PCIR_STATUS, 2);
869
870         /*
871          * IOMMU errors are only fatal on Tomatillo and there also only if
872          * target abort was not signaled.
873          */
874         if ((csr & STX_PCI_CTRL_MMU_ERR) != 0 &&
875             (iommu & TOM_PCI_IOMMU_ERR) != 0 &&
876             ((status & PCIM_STATUS_STABORT) == 0 ||
877             ((iommu & TOM_PCI_IOMMU_ERRMASK) != TOM_PCI_IOMMU_INVALID_ERR &&
878             (iommu & TOM_PCI_IOMMU_ERR_ILLTSBTBW) == 0 &&
879             (iommu & TOM_PCI_IOMMU_ERR_BAD_VA) == 0)))
880                 fatal = 1;
881         else if ((status & PCIM_STATUS_STABORT) != 0)
882                 fatal = 1;
883         if ((status & (PCIM_STATUS_PERR | PCIM_STATUS_SERR |
884             PCIM_STATUS_RMABORT | PCIM_STATUS_RTABORT |
885             PCIM_STATUS_MDPERR)) != 0 ||
886             (csr & (SCZ_PCI_CTRL_BUS_UNUS | TOM_PCI_CTRL_DTO_ERR |
887             STX_PCI_CTRL_TTO_ERR | STX_PCI_CTRL_RTRY_ERR |
888             SCZ_PCI_CTRL_SBH_ERR | STX_PCI_CTRL_SERR)) != 0 ||
889             (afsr & (STX_PCI_AFSR_P_MA | STX_PCI_AFSR_P_TA |
890             STX_PCI_AFSR_P_RTRY | STX_PCI_AFSR_P_PERR | STX_PCI_AFSR_P_TTO |
891             STX_PCI_AFSR_P_UNUS)) != 0)
892                 fatal = 1;
893         if (xstat & (XMS_PCI_X_ERR_STAT_P_SC_DSCRD |
894             XMS_PCI_X_ERR_STAT_P_SC_TTO | XMS_PCI_X_ERR_STAT_P_SDSTAT |
895             XMS_PCI_X_ERR_STAT_P_SMMU | XMS_PCI_X_ERR_STAT_P_CDSTAT |
896             XMS_PCI_X_ERR_STAT_P_CMMU | XMS_PCI_X_ERR_STAT_PERR_RCV))
897                 fatal = 1;
898         if (fatal == 0)
899                 sc->sc_stats_pci_non_fatal++;
900
901         device_printf(sc->sc_dev, "PCI bus %c error AFAR %#llx AFSR %#llx "
902             "PCI CSR %#llx IOMMU %#llx PCI-X %#llx STATUS %#x\n",
903             'A' + sc->sc_half, (unsigned long long)afar,
904             (unsigned long long)afsr, (unsigned long long)csr,
905             (unsigned long long)iommu, (unsigned long long)xstat, status);
906
907         /* Clear the error bits that we caught. */
908         PCIB_WRITE_CONFIG(sc->sc_dev, sc->sc_pci_secbus, STX_CS_DEVICE,
909             STX_CS_FUNC, PCIR_STATUS, status, 2);
910         SCHIZO_PCI_WRITE_8(sc, STX_PCI_CTRL, csr);
911         SCHIZO_PCI_WRITE_8(sc, STX_PCI_AFSR, afsr);
912         SCHIZO_PCI_WRITE_8(sc, STX_PCI_IOMMU, iommu);
913         if ((sc->sc_flags & SCHIZO_FLAGS_XMODE) != 0)
914                 SCHIZO_PCI_WRITE_8(sc, XMS_PCI_X_ERR_STAT, xstat);
915
916         mtx_unlock_spin(sc->sc_mtx);
917
918         if (fatal != 0)
919                 panic("%s: fatal PCI bus error",
920                     device_get_nameunit(sc->sc_dev));
921         return (FILTER_HANDLED);
922 }
923
924 static int
925 schizo_ue(void *arg)
926 {
927         struct schizo_softc *sc = arg;
928         uint64_t afar, afsr;
929         int i;
930
931         afar = SCHIZO_CTRL_READ_8(sc, STX_CTRL_UE_AFAR);
932         for (i = 0; i < 1000; i++)
933                 if (((afsr = SCHIZO_CTRL_READ_8(sc, STX_CTRL_UE_AFSR)) &
934                     STX_CTRL_CE_AFSR_ERRPNDG) == 0)
935                         break;
936         panic("%s: uncorrectable DMA error AFAR %#llx AFSR %#llx",
937             device_get_nameunit(sc->sc_dev), (unsigned long long)afar,
938             (unsigned long long)afsr);
939         return (FILTER_HANDLED);
940 }
941
942 static int
943 schizo_ce(void *arg)
944 {
945         struct schizo_softc *sc = arg;
946         uint64_t afar, afsr;
947         int i;
948
949         mtx_lock_spin(sc->sc_mtx);
950
951         afar = SCHIZO_CTRL_READ_8(sc, STX_CTRL_CE_AFAR);
952         for (i = 0; i < 1000; i++)
953                 if (((afsr = SCHIZO_CTRL_READ_8(sc, STX_CTRL_UE_AFSR)) &
954                     STX_CTRL_CE_AFSR_ERRPNDG) == 0)
955                         break;
956         sc->sc_stats_dma_ce++;
957         device_printf(sc->sc_dev,
958             "correctable DMA error AFAR %#llx AFSR %#llx\n",
959             (unsigned long long)afar, (unsigned long long)afsr);
960
961         /* Clear the error bits that we caught. */
962         SCHIZO_CTRL_WRITE_8(sc, STX_CTRL_UE_AFSR, afsr);
963
964         mtx_unlock_spin(sc->sc_mtx);
965
966         return (FILTER_HANDLED);
967 }
968
969 static int
970 schizo_host_bus(void *arg)
971 {
972         struct schizo_softc *sc = arg;
973         uint64_t errlog;
974
975         errlog = SCHIZO_CTRL_READ_8(sc, STX_CTRL_BUS_ERRLOG);
976         panic("%s: %s error %#llx", device_get_nameunit(sc->sc_dev),
977             sc->sc_mode == SCHIZO_MODE_TOM ? "JBus" : "Safari",
978             (unsigned long long)errlog);
979         return (FILTER_HANDLED);
980 }
981
982 static int
983 schizo_cdma(void *arg)
984 {
985         struct schizo_softc *sc = arg;
986
987         atomic_store_rel_32(&sc->sc_cdma_state, SCHIZO_CDMA_STATE_RECEIVED);
988         return (FILTER_HANDLED);
989 }
990
991 static void
992 schizo_iommu_init(struct schizo_softc *sc, int tsbsize, uint32_t dvmabase)
993 {
994
995         /* Punch in our copies. */
996         sc->sc_is.sis_is.is_bustag = rman_get_bustag(sc->sc_mem_res[STX_PCI]);
997         sc->sc_is.sis_is.is_bushandle =
998             rman_get_bushandle(sc->sc_mem_res[STX_PCI]);
999         sc->sc_is.sis_is.is_iommu = STX_PCI_IOMMU;
1000         sc->sc_is.sis_is.is_dtag = STX_PCI_IOMMU_TLB_TAG_DIAG;
1001         sc->sc_is.sis_is.is_ddram = STX_PCI_IOMMU_TLB_DATA_DIAG;
1002         sc->sc_is.sis_is.is_dqueue = STX_PCI_IOMMU_QUEUE_DIAG;
1003         sc->sc_is.sis_is.is_dva = STX_PCI_IOMMU_SVADIAG;
1004         sc->sc_is.sis_is.is_dtcmp = STX_PCI_IOMMU_TLB_CMP_DIAG;
1005
1006         iommu_init(device_get_nameunit(sc->sc_dev),
1007             (struct iommu_state *)&sc->sc_is, tsbsize, dvmabase, 0);
1008 }
1009
1010 static int
1011 schizo_maxslots(device_t dev)
1012 {
1013         struct schizo_softc *sc;
1014
1015         sc = device_get_softc(dev);
1016         if (sc->sc_mode == SCHIZO_MODE_SCZ)
1017                 return (sc->sc_half == 0 ? 4 : 6);
1018
1019         /* XXX: is this correct? */
1020         return (PCI_SLOTMAX);
1021 }
1022
1023 static uint32_t
1024 schizo_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg,
1025     int width)
1026 {
1027         struct schizo_softc *sc;
1028         bus_space_handle_t bh;
1029         u_long offset = 0;
1030         uint32_t r, wrd;
1031         int i;
1032         uint16_t shrt;
1033         uint8_t byte;
1034
1035         sc = device_get_softc(dev);
1036         if (bus < sc->sc_pci_secbus || bus > sc->sc_pci_subbus ||
1037             slot > PCI_SLOTMAX || func > PCI_FUNCMAX || reg > PCI_REGMAX)
1038                 return (-1);
1039
1040         /*
1041          * The Schizo bridges contain a dupe of their header at 0x80.
1042          */
1043         if (sc->sc_mode == SCHIZO_MODE_SCZ && bus == sc->sc_pci_secbus &&
1044             slot == STX_CS_DEVICE && func == STX_CS_FUNC &&
1045             reg + width > 0x80)
1046                 return (0);
1047
1048         offset = STX_CONF_OFF(bus, slot, func, reg);
1049         bh = sc->sc_pci_bh[OFW_PCI_CS_CONFIG];
1050         switch (width) {
1051         case 1:
1052                 i = bus_space_peek_1(sc->sc_pci_cfgt, bh, offset, &byte);
1053                 r = byte;
1054                 break;
1055         case 2:
1056                 i = bus_space_peek_2(sc->sc_pci_cfgt, bh, offset, &shrt);
1057                 r = shrt;
1058                 break;
1059         case 4:
1060                 i = bus_space_peek_4(sc->sc_pci_cfgt, bh, offset, &wrd);
1061                 r = wrd;
1062                 break;
1063         default:
1064                 panic("%s: bad width", __func__);
1065                 /* NOTREACHED */
1066         }
1067
1068         if (i) {
1069 #ifdef SCHIZO_DEBUG
1070                 printf("%s: read data error reading: %d.%d.%d: 0x%x\n",
1071                     __func__, bus, slot, func, reg);
1072 #endif
1073                 r = -1;
1074         }
1075         return (r);
1076 }
1077
1078 static void
1079 schizo_write_config(device_t dev, u_int bus, u_int slot, u_int func,
1080     u_int reg, uint32_t val, int width)
1081 {
1082         struct schizo_softc *sc;
1083         bus_space_handle_t bh;
1084         u_long offset = 0;
1085
1086         sc = device_get_softc(dev);
1087         if (bus < sc->sc_pci_secbus || bus > sc->sc_pci_subbus ||
1088             slot > PCI_SLOTMAX || func > PCI_FUNCMAX || reg > PCI_REGMAX)
1089                 return;
1090
1091         offset = STX_CONF_OFF(bus, slot, func, reg);
1092         bh = sc->sc_pci_bh[OFW_PCI_CS_CONFIG];
1093         switch (width) {
1094         case 1:
1095                 bus_space_write_1(sc->sc_pci_cfgt, bh, offset, val);
1096                 break;
1097         case 2:
1098                 bus_space_write_2(sc->sc_pci_cfgt, bh, offset, val);
1099                 break;
1100         case 4:
1101                 bus_space_write_4(sc->sc_pci_cfgt, bh, offset, val);
1102                 break;
1103         default:
1104                 panic("%s: bad width", __func__);
1105                 /* NOTREACHED */
1106         }
1107 }
1108
1109 static int
1110 schizo_route_interrupt(device_t bridge, device_t dev, int pin)
1111 {
1112         struct schizo_softc *sc;
1113         struct ofw_pci_register reg;
1114         ofw_pci_intr_t pintr, mintr;
1115         uint8_t maskbuf[sizeof(reg) + sizeof(pintr)];
1116
1117         sc = device_get_softc(bridge);
1118         pintr = pin;
1119         if (ofw_bus_lookup_imap(ofw_bus_get_node(dev), &sc->sc_pci_iinfo,
1120             &reg, sizeof(reg), &pintr, sizeof(pintr), &mintr, sizeof(mintr),
1121             NULL, maskbuf))
1122                 return (mintr);
1123
1124         device_printf(bridge, "could not route pin %d for device %d.%d\n",
1125             pin, pci_get_slot(dev), pci_get_function(dev));
1126         return (PCI_INVALID_IRQ);
1127 }
1128
1129 static int
1130 schizo_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
1131 {
1132         struct schizo_softc *sc;
1133
1134         sc = device_get_softc(dev);
1135         switch (which) {
1136         case PCIB_IVAR_DOMAIN:
1137                 *result = device_get_unit(dev);
1138                 return (0);
1139         case PCIB_IVAR_BUS:
1140                 *result = sc->sc_pci_secbus;
1141                 return (0);
1142         }
1143         return (ENOENT);
1144 }
1145
1146 static void
1147 schizo_dmamap_sync(bus_dma_tag_t dt, bus_dmamap_t map, bus_dmasync_op_t op)
1148 {
1149         struct timeval cur, end;
1150         struct schizo_iommu_state *sis = dt->dt_cookie;
1151         struct schizo_softc *sc = sis->sis_sc;
1152         int res;
1153
1154         if ((map->dm_flags & DMF_STREAMED) != 0) {
1155                 iommu_dma_methods.dm_dmamap_sync(dt, map, op);
1156                 return;
1157         }
1158
1159         if ((map->dm_flags & DMF_LOADED) == 0)
1160                 return;
1161
1162         if ((op & BUS_DMASYNC_POSTREAD) != 0) {
1163                 /*
1164                  * Note that in order to allow this function to be called from
1165                  * filters we would need to use a spin mutex for serialization
1166                  * but given that these disable interrupts we have to emulate
1167                  * one.
1168                  */
1169                 for (; atomic_cmpset_acq_32(&sc->sc_cdma_state,
1170                     SCHIZO_CDMA_STATE_IDLE, SCHIZO_CDMA_STATE_PENDING) == 0;)
1171                         ;
1172                 SCHIZO_PCI_WRITE_8(sc, sc->sc_cdma_clr, INTCLR_RECEIVED);
1173                 microuptime(&cur);
1174                 end.tv_sec = 15;
1175                 end.tv_usec = 0;
1176                 timevaladd(&end, &cur);
1177                 for (; (res = atomic_cmpset_rel_32(&sc->sc_cdma_state,
1178                     SCHIZO_CDMA_STATE_RECEIVED, SCHIZO_CDMA_STATE_IDLE)) ==
1179                     0 && timevalcmp(&cur, &end, <=);)
1180                         microuptime(&cur);
1181                 if (res == 0)
1182                         panic("%s: DMA does not sync", __func__);
1183         }
1184
1185         if ((op & BUS_DMASYNC_PREWRITE) != 0)
1186                 membar(Sync);
1187 }
1188
1189 #define VIS_BLOCKSIZE   64
1190
1191 static void
1192 ichip_dmamap_sync(bus_dma_tag_t dt, bus_dmamap_t map, bus_dmasync_op_t op)
1193 {
1194         static u_char buf[VIS_BLOCKSIZE] __aligned(VIS_BLOCKSIZE);
1195         struct timeval cur, end;
1196         struct schizo_iommu_state *sis = dt->dt_cookie;
1197         struct schizo_softc *sc = sis->sis_sc;
1198         register_t reg, s;
1199
1200         if ((map->dm_flags & DMF_STREAMED) != 0) {
1201                 iommu_dma_methods.dm_dmamap_sync(dt, map, op);
1202                 return;
1203         }
1204
1205         if ((map->dm_flags & DMF_LOADED) == 0)
1206                 return;
1207
1208         if ((op & BUS_DMASYNC_POSTREAD) != 0) {
1209                 if (sc->sc_mode == SCHIZO_MODE_XMS)
1210                         mtx_lock_spin(&sc->sc_sync_mtx);
1211                 SCHIZO_PCI_WRITE_8(sc, TOMXMS_PCI_DMA_SYNC_PEND,
1212                     sc->sc_sync_val);
1213                 microuptime(&cur);
1214                 end.tv_sec = 1;
1215                 end.tv_usec = 0;
1216                 timevaladd(&end, &cur);
1217                 for (; ((reg = SCHIZO_PCI_READ_8(sc,
1218                     TOMXMS_PCI_DMA_SYNC_PEND)) & sc->sc_sync_val) != 0 &&
1219                     timevalcmp(&cur, &end, <=);)
1220                         microuptime(&cur);
1221                 if ((reg & sc->sc_sync_val) != 0)
1222                         panic("%s: DMA does not sync", __func__);
1223                 if (sc->sc_mode == SCHIZO_MODE_XMS)
1224                         mtx_unlock_spin(&sc->sc_sync_mtx);
1225                 else if ((sc->sc_flags & SCHIZO_FLAGS_BSWAR) != 0) {
1226                         s = intr_disable();
1227                         reg = rd(fprs);
1228                         wr(fprs, reg | FPRS_FEF, 0);
1229                         __asm __volatile("stda %%f0, [%0] %1"
1230                             : : "r" (buf), "n" (ASI_BLK_COMMIT_S));
1231                         membar(Sync);
1232                         wr(fprs, reg, 0);
1233                         intr_restore(s);
1234                         return;
1235                 }
1236         }
1237
1238         if ((op & BUS_DMASYNC_PREWRITE) != 0)
1239                 membar(Sync);
1240 }
1241
1242 static void
1243 schizo_intr_enable(void *arg)
1244 {
1245         struct intr_vector *iv = arg;
1246         struct schizo_icarg *sica = iv->iv_icarg;
1247
1248         SCHIZO_PCI_WRITE_8(sica->sica_sc, sica->sica_map,
1249             INTMAP_ENABLE(iv->iv_vec, iv->iv_mid));
1250 }
1251
1252 static void
1253 schizo_intr_disable(void *arg)
1254 {
1255         struct intr_vector *iv = arg;
1256         struct schizo_icarg *sica = iv->iv_icarg;
1257
1258         SCHIZO_PCI_WRITE_8(sica->sica_sc, sica->sica_map, iv->iv_vec);
1259 }
1260
1261 static void
1262 schizo_intr_assign(void *arg)
1263 {
1264         struct intr_vector *iv = arg;
1265         struct schizo_icarg *sica = iv->iv_icarg;
1266
1267         SCHIZO_PCI_WRITE_8(sica->sica_sc, sica->sica_map, INTMAP_TID(
1268             SCHIZO_PCI_READ_8(sica->sica_sc, sica->sica_map), iv->iv_mid));
1269 }
1270
1271 static void
1272 schizo_intr_clear(void *arg)
1273 {
1274         struct intr_vector *iv = arg;
1275         struct schizo_icarg *sica = iv->iv_icarg;
1276
1277         SCHIZO_PCI_WRITE_8(sica->sica_sc, sica->sica_clr, INTCLR_IDLE);
1278 }
1279
1280 static int
1281 schizo_setup_intr(device_t dev, device_t child, struct resource *ires,
1282     int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg,
1283     void **cookiep)
1284 {
1285         struct schizo_softc *sc;
1286         u_long vec;
1287         int error;
1288
1289         sc = device_get_softc(dev);
1290         /*
1291          * Make sure the vector is fully specified.
1292          */
1293         vec = rman_get_start(ires);
1294         if (INTIGN(vec) != sc->sc_ign) {
1295                 device_printf(dev, "invalid interrupt vector 0x%lx\n", vec);
1296                 return (EINVAL);
1297         }
1298
1299         if (intr_vectors[vec].iv_ic == &schizo_ic) {
1300                 /*
1301                  * Ensure we use the right softc in case the interrupt
1302                  * is routed to our companion PBM for some odd reason.
1303                  */
1304                 sc = ((struct schizo_icarg *)intr_vectors[vec].iv_icarg)->
1305                     sica_sc;
1306         } else if (intr_vectors[vec].iv_ic == NULL) {
1307                 /*
1308                  * Work around broken firmware which misses entries in
1309                  * the ino-bitmap.
1310                  */
1311                 error = schizo_intr_register(sc, INTINO(vec));
1312                 if (error != 0) {
1313                         device_printf(dev, "could not register interrupt "
1314                             "controller for vector 0x%lx (%d)\n", vec, error);
1315                         return (error);
1316                 }
1317                 if (bootverbose)
1318                         device_printf(dev, "belatedly registered as "
1319                             "interrupt controller for vector 0x%lx\n", vec);
1320         } else {
1321                 device_printf(dev,
1322                     "invalid interrupt controller for vector 0x%lx\n", vec);
1323                 return (EINVAL);
1324         }
1325         return (bus_generic_setup_intr(dev, child, ires, flags, filt, intr,
1326             arg, cookiep));
1327 }
1328
1329 static struct resource *
1330 schizo_alloc_resource(device_t bus, device_t child, int type, int *rid,
1331     u_long start, u_long end, u_long count, u_int flags)
1332 {
1333         struct schizo_softc *sc;
1334         struct resource *rv;
1335         struct rman *rm;
1336         bus_space_tag_t bt;
1337         bus_space_handle_t bh;
1338         int needactivate = flags & RF_ACTIVE;
1339
1340         flags &= ~RF_ACTIVE;
1341
1342         sc = device_get_softc(bus);
1343         if (type == SYS_RES_IRQ) {
1344                 /*
1345                  * XXX: Don't accept blank ranges for now, only single
1346                  * interrupts.  The other case should not happen with
1347                  * the MI PCI code...
1348                  * XXX: This may return a resource that is out of the
1349                  * range that was specified.  Is this correct...?
1350                  */
1351                 if (start != end)
1352                         panic("%s: XXX: interrupt range", __func__);
1353                 start = end = INTMAP_VEC(sc->sc_ign, end);
1354                 return (BUS_ALLOC_RESOURCE(device_get_parent(bus), child,
1355                     type, rid, start, end, count, flags));
1356         }
1357         switch (type) {
1358         case SYS_RES_MEMORY:
1359                 rm = &sc->sc_pci_mem_rman;
1360                 bt = sc->sc_pci_memt;
1361                 bh = sc->sc_pci_bh[OFW_PCI_CS_MEM32];
1362                 break;
1363         case SYS_RES_IOPORT:
1364                 rm = &sc->sc_pci_io_rman;
1365                 bt = sc->sc_pci_iot;
1366                 bh = sc->sc_pci_bh[OFW_PCI_CS_IO];
1367                 break;
1368         default:
1369                 return (NULL);
1370                 /* NOTREACHED */
1371         }
1372
1373         rv = rman_reserve_resource(rm, start, end, count, flags, child);
1374         if (rv == NULL)
1375                 return (NULL);
1376         rman_set_rid(rv, *rid);
1377         bh += rman_get_start(rv);
1378         rman_set_bustag(rv, bt);
1379         rman_set_bushandle(rv, bh);
1380
1381         if (needactivate) {
1382                 if (bus_activate_resource(child, type, *rid, rv)) {
1383                         rman_release_resource(rv);
1384                         return (NULL);
1385                 }
1386         }
1387         return (rv);
1388 }
1389
1390 static int
1391 schizo_activate_resource(device_t bus, device_t child, int type, int rid,
1392     struct resource *r)
1393 {
1394         void *p;
1395         int error;
1396
1397         if (type == SYS_RES_IRQ)
1398                 return (BUS_ACTIVATE_RESOURCE(device_get_parent(bus), child,
1399                     type, rid, r));
1400         if (type == SYS_RES_MEMORY) {
1401                 /*
1402                  * Need to memory-map the device space, as some drivers
1403                  * depend on the virtual address being set and usable.
1404                  */
1405                 error = sparc64_bus_mem_map(rman_get_bustag(r),
1406                     rman_get_bushandle(r), rman_get_size(r), 0, 0, &p);
1407                 if (error != 0)
1408                         return (error);
1409                 rman_set_virtual(r, p);
1410         }
1411         return (rman_activate_resource(r));
1412 }
1413
1414 static int
1415 schizo_deactivate_resource(device_t bus, device_t child, int type, int rid,
1416     struct resource *r)
1417 {
1418
1419         if (type == SYS_RES_IRQ)
1420                 return (BUS_DEACTIVATE_RESOURCE(device_get_parent(bus), child,
1421                     type, rid, r));
1422         if (type == SYS_RES_MEMORY) {
1423                 sparc64_bus_mem_unmap(rman_get_virtual(r), rman_get_size(r));
1424                 rman_set_virtual(r, NULL);
1425         }
1426         return (rman_deactivate_resource(r));
1427 }
1428
1429 static int
1430 schizo_release_resource(device_t bus, device_t child, int type, int rid,
1431     struct resource *r)
1432 {
1433         int error;
1434
1435         if (type == SYS_RES_IRQ)
1436                 return (BUS_RELEASE_RESOURCE(device_get_parent(bus), child,
1437                     type, rid, r));
1438         if (rman_get_flags(r) & RF_ACTIVE) {
1439                 error = bus_deactivate_resource(child, type, rid, r);
1440                 if (error)
1441                         return (error);
1442         }
1443         return (rman_release_resource(r));
1444 }
1445
1446 static bus_dma_tag_t
1447 schizo_get_dma_tag(device_t bus, device_t child __unused)
1448 {
1449         struct schizo_softc *sc;
1450
1451         sc = device_get_softc(bus);
1452         return (sc->sc_pci_dmat);
1453 }
1454
1455 static phandle_t
1456 schizo_get_node(device_t bus, device_t child __unused)
1457 {
1458         struct schizo_softc *sc;
1459
1460         sc = device_get_softc(bus);
1461         /* We only have one child, the PCI bus, which needs our own node. */
1462         return (sc->sc_node);
1463 }
1464
1465 static void
1466 schizo_setup_device(device_t bus, device_t child)
1467 {
1468         struct schizo_softc *sc;
1469         uint64_t reg;
1470         int capreg;
1471
1472         sc = device_get_softc(bus);
1473         /*
1474          * Disable bus parking in order to work around a bus hang caused by
1475          * Casinni/Skyhawk combinations.
1476          */ 
1477         if (OF_getproplen(ofw_bus_get_node(child), "pci-req-removal") >= 0)
1478                 SCHIZO_PCI_SET(sc, STX_PCI_CTRL, SCHIZO_PCI_READ_8(sc,
1479                     STX_PCI_CTRL) & ~STX_PCI_CTRL_ARB_PARK);
1480
1481         if (sc->sc_mode == SCHIZO_MODE_XMS) {
1482                 /* XMITS NCPQ WAR: set outstanding split transactions to 1. */
1483                 if ((sc->sc_flags & SCHIZO_FLAGS_XMODE) != 0 &&
1484                     (pci_read_config(child, PCIR_HDRTYPE, 1) &
1485                     PCIM_HDRTYPE) != PCIM_HDRTYPE_BRIDGE &&
1486                     pci_find_cap(child, PCIY_PCIX, &capreg) == 0)
1487                         pci_write_config(child, capreg + PCIXR_COMMAND,
1488                             pci_read_config(child, capreg + PCIXR_COMMAND,
1489                             2) & 0x7c, 2);
1490                 /* XMITS 3.x WAR: set BUGCNTL iff value is unexpected. */
1491                 if (sc->sc_mrev >= 4) {
1492                         reg = ((sc->sc_flags & SCHIZO_FLAGS_XMODE) != 0 ?
1493                             0xa0UL : 0xffUL) << XMS_PCI_X_DIAG_BUGCNTL_SHIFT;
1494                         if ((SCHIZO_PCI_READ_8(sc, XMS_PCI_X_DIAG) &
1495                             XMS_PCI_X_DIAG_BUGCNTL_MASK) != reg)
1496                                 SCHIZO_PCI_SET(sc, XMS_PCI_X_DIAG, reg);
1497                 }
1498         }
1499 }
1500
1501 static bus_space_tag_t
1502 schizo_alloc_bus_tag(struct schizo_softc *sc, int type)
1503 {
1504         bus_space_tag_t bt;
1505
1506         bt = malloc(sizeof(struct bus_space_tag), M_DEVBUF,
1507             M_NOWAIT | M_ZERO);
1508         if (bt == NULL)
1509                 panic("%s: out of memory", __func__);
1510
1511         bt->bst_cookie = sc;
1512         bt->bst_parent = rman_get_bustag(sc->sc_mem_res[STX_PCI]);
1513         bt->bst_type = type;
1514         return (bt);
1515 }
1516
1517 static u_int
1518 schizo_get_timecount(struct timecounter *tc)
1519 {
1520         struct schizo_softc *sc;
1521
1522         sc = tc->tc_priv;
1523         return ((SCHIZO_CTRL_READ_8(sc, STX_CTRL_PERF_CNT) &
1524             (STX_CTRL_PERF_CNT_MASK << STX_CTRL_PERF_CNT_CNT0_SHIFT)) >>
1525             STX_CTRL_PERF_CNT_CNT0_SHIFT);
1526 }