Home | History | Annotate | Line # | Download | only in dev
ebus.c revision 1.39.2.1
      1  1.39.2.1    skrll /*	$NetBSD: ebus.c,v 1.39.2.1 2004/08/03 10:41:23 skrll Exp $	*/
      2       1.1      mrg 
      3       1.1      mrg /*
      4      1.29      mrg  * Copyright (c) 1999, 2000, 2001 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.39.2.1    skrll #include <sys/cdefs.h>
     32  1.39.2.1    skrll __KERNEL_RCSID(0, "$NetBSD: ebus.c,v 1.39.2.1 2004/08/03 10:41:23 skrll Exp $");
     33  1.39.2.1    skrll 
     34       1.8      mrg #include "opt_ddb.h"
     35       1.8      mrg 
     36       1.1      mrg /*
     37       1.1      mrg  * UltraSPARC 5 and beyond ebus support.
     38       1.8      mrg  *
     39      1.21      mrg  * note that this driver is not complete:
     40      1.21      mrg  *	- interrupt establish is written and appears to work
     41       1.8      mrg  *	- bus map code is written and appears to work
     42      1.38      wiz  *	- ebus2 DMA code is completely unwritten, we just punt to
     43      1.29      mrg  *	  the iommu.
     44       1.1      mrg  */
     45       1.1      mrg 
     46       1.1      mrg #ifdef DEBUG
     47       1.8      mrg #define	EDB_PROM	0x01
     48       1.8      mrg #define EDB_CHILD	0x02
     49       1.8      mrg #define	EDB_INTRMAP	0x04
     50       1.8      mrg #define EDB_BUSMAP	0x08
     51      1.29      mrg int ebus_debug = 0;
     52       1.1      mrg #define DPRINTF(l, s)   do { if (ebus_debug & l) printf s; } while (0)
     53       1.1      mrg #else
     54       1.1      mrg #define DPRINTF(l, s)
     55       1.1      mrg #endif
     56       1.1      mrg 
     57       1.1      mrg #include <sys/param.h>
     58       1.1      mrg #include <sys/conf.h>
     59       1.1      mrg #include <sys/device.h>
     60       1.8      mrg #include <sys/errno.h>
     61       1.8      mrg #include <sys/extent.h>
     62       1.1      mrg #include <sys/malloc.h>
     63       1.1      mrg #include <sys/systm.h>
     64       1.8      mrg #include <sys/time.h>
     65       1.1      mrg 
     66       1.1      mrg #define _SPARC_BUS_DMA_PRIVATE
     67       1.1      mrg #include <machine/bus.h>
     68       1.1      mrg #include <machine/autoconf.h>
     69      1.23      eeh #include <machine/openfirm.h>
     70       1.1      mrg 
     71       1.1      mrg #include <dev/pci/pcivar.h>
     72       1.1      mrg #include <dev/pci/pcireg.h>
     73       1.1      mrg #include <dev/pci/pcidevs.h>
     74       1.1      mrg 
     75       1.8      mrg #include <sparc64/dev/iommureg.h>
     76       1.8      mrg #include <sparc64/dev/iommuvar.h>
     77       1.8      mrg #include <sparc64/dev/psychoreg.h>
     78       1.8      mrg #include <sparc64/dev/psychovar.h>
     79      1.29      mrg #include <dev/ebus/ebusreg.h>
     80      1.31      mrg #include <dev/ebus/ebusvar.h>
     81       1.8      mrg #include <sparc64/sparc64/cache.h>
     82       1.1      mrg 
     83      1.29      mrg struct ebus_softc {
     84      1.29      mrg 	struct device			sc_dev;
     85      1.29      mrg 
     86      1.29      mrg 	int				sc_node;
     87      1.29      mrg 
     88      1.29      mrg 	bus_space_tag_t			sc_memtag;	/* from pci */
     89      1.29      mrg 	bus_space_tag_t			sc_iotag;	/* from pci */
     90      1.29      mrg 	bus_space_tag_t			sc_childbustag;	/* pass to children */
     91      1.29      mrg 	bus_dma_tag_t			sc_dmatag;
     92      1.29      mrg 
     93      1.29      mrg 	struct ebus_ranges		*sc_range;
     94      1.29      mrg 	struct ebus_interrupt_map	*sc_intmap;
     95      1.29      mrg 	struct ebus_interrupt_map_mask	sc_intmapmask;
     96      1.29      mrg 
     97      1.29      mrg 	int				sc_nrange;	/* counters */
     98      1.29      mrg 	int				sc_nintmap;
     99      1.29      mrg };
    100      1.29      mrg 
    101       1.1      mrg int	ebus_match __P((struct device *, struct cfdata *, void *));
    102       1.1      mrg void	ebus_attach __P((struct device *, struct device *, void *));
    103       1.1      mrg 
    104      1.33  thorpej CFATTACH_DECL(ebus, sizeof(struct ebus_softc),
    105      1.34  thorpej     ebus_match, ebus_attach, NULL, NULL);
    106       1.1      mrg 
    107      1.29      mrg bus_space_tag_t ebus_alloc_bus_tag __P((struct ebus_softc *, int));
    108      1.29      mrg 
    109       1.1      mrg int	ebus_setup_attach_args __P((struct ebus_softc *, int,
    110       1.1      mrg 	    struct ebus_attach_args *));
    111       1.1      mrg void	ebus_destroy_attach_args __P((struct ebus_attach_args *));
    112       1.1      mrg int	ebus_print __P((void *, const char *));
    113       1.3      mrg void	ebus_find_ino __P((struct ebus_softc *, struct ebus_attach_args *));
    114      1.10      mrg int	ebus_find_node __P((struct pci_attach_args *));
    115       1.1      mrg 
    116       1.8      mrg /*
    117      1.38      wiz  * here are our bus space and bus DMA routines.
    118       1.8      mrg  */
    119      1.27      eeh static paddr_t ebus_bus_mmap __P((bus_space_tag_t, bus_addr_t, off_t, int, int));
    120      1.30      eeh static int _ebus_bus_map __P((bus_space_tag_t, bus_addr_t, bus_size_t, int,
    121      1.30      eeh 			      vaddr_t, bus_space_handle_t *));
    122      1.36       pk static void *ebus_intr_establish __P((bus_space_tag_t, int, int,
    123      1.35       pk 				int (*) __P((void *)), void *, void(*)__P((void))));
    124       1.8      mrg 
    125       1.1      mrg int
    126       1.1      mrg ebus_match(parent, match, aux)
    127       1.1      mrg 	struct device *parent;
    128       1.1      mrg 	struct cfdata *match;
    129       1.1      mrg 	void *aux;
    130       1.1      mrg {
    131       1.1      mrg 	struct pci_attach_args *pa = aux;
    132  1.39.2.1    skrll 	char *name;
    133      1.23      eeh 	int node;
    134       1.1      mrg 
    135      1.23      eeh 	/* Only attach if there's a PROM node. */
    136      1.23      eeh 	node = PCITAG_NODE(pa->pa_tag);
    137  1.39.2.1    skrll 	if (node == -1)
    138  1.39.2.1    skrll 		return (0);
    139  1.39.2.1    skrll 
    140  1.39.2.1    skrll 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_BRIDGE)
    141  1.39.2.1    skrll 		return (0);
    142      1.23      eeh 
    143      1.23      eeh 	/* Match a real ebus */
    144  1.39.2.1    skrll 	name = prom_getpropstring(node, "name");
    145  1.39.2.1    skrll 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN &&
    146      1.24      eeh 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUS &&
    147      1.25      eeh 		strcmp(name, "ebus") == 0)
    148      1.25      eeh 		return (1);
    149      1.25      eeh 
    150      1.25      eeh 	/* Or a real ebus III */
    151  1.39.2.1    skrll 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN &&
    152      1.25      eeh 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUSIII &&
    153      1.24      eeh 		strcmp(name, "ebus") == 0)
    154       1.1      mrg 		return (1);
    155       1.1      mrg 
    156      1.23      eeh 	/* Or a PCI-ISA bridge XXX I hope this is on-board. */
    157  1.39.2.1    skrll 	if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA) {
    158      1.23      eeh 		return (1);
    159      1.23      eeh 	}
    160      1.23      eeh 
    161       1.1      mrg 	return (0);
    162       1.1      mrg }
    163       1.1      mrg 
    164       1.1      mrg /*
    165       1.1      mrg  * attach an ebus and all it's children.  this code is modeled
    166       1.1      mrg  * after the sbus code which does similar things.
    167       1.1      mrg  */
    168       1.1      mrg void
    169       1.1      mrg ebus_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 ebus_softc *sc = (struct ebus_softc *)self;
    174       1.1      mrg 	struct pci_attach_args *pa = aux;
    175       1.1      mrg 	struct ebus_attach_args eba;
    176       1.1      mrg 	struct ebus_interrupt_map_mask *immp;
    177      1.16       pk 	int node, nmapmask, error;
    178       1.1      mrg 	char devinfo[256];
    179       1.1      mrg 
    180       1.1      mrg 	printf("\n");
    181       1.1      mrg 
    182  1.39.2.1    skrll 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    183       1.1      mrg 	printf("%s: %s, revision 0x%02x\n", self->dv_xname, devinfo,
    184       1.1      mrg 	    PCI_REVISION(pa->pa_class));
    185       1.1      mrg 
    186      1.23      eeh 	sc->sc_memtag = pa->pa_memt;
    187      1.23      eeh 	sc->sc_iotag = pa->pa_iot;
    188       1.1      mrg 	sc->sc_childbustag = ebus_alloc_bus_tag(sc, PCI_MEMORY_BUS_SPACE);
    189      1.29      mrg 	sc->sc_dmatag = pa->pa_dmat;
    190       1.1      mrg 
    191      1.23      eeh 	node = PCITAG_NODE(pa->pa_tag);
    192      1.23      eeh 	if (node == -1)
    193       1.1      mrg 		panic("could not find ebus node");
    194       1.1      mrg 
    195       1.1      mrg 	sc->sc_node = node;
    196       1.1      mrg 
    197       1.1      mrg 	/*
    198       1.1      mrg 	 * fill in our softc with information from the prom
    199       1.1      mrg 	 */
    200       1.3      mrg 	sc->sc_intmap = NULL;
    201       1.3      mrg 	sc->sc_range = NULL;
    202  1.39.2.1    skrll 	sc->sc_nintmap = 0;
    203  1.39.2.1    skrll 	error = prom_getprop(node, "interrupt-map",
    204      1.16       pk 			sizeof(struct ebus_interrupt_map),
    205  1.39.2.1    skrll 			&sc->sc_nintmap, &sc->sc_intmap);
    206      1.16       pk 	switch (error) {
    207      1.16       pk 	case 0:
    208      1.16       pk 		immp = &sc->sc_intmapmask;
    209  1.39.2.1    skrll 		nmapmask = sizeof(*immp);
    210  1.39.2.1    skrll 		error = prom_getprop(node, "interrupt-map-mask",
    211      1.16       pk 			    sizeof(struct ebus_interrupt_map_mask), &nmapmask,
    212  1.39.2.1    skrll 			    &immp);
    213      1.16       pk 		if (error)
    214  1.39.2.1    skrll 			panic("could not get ebus interrupt-map-mask, error %d",
    215  1.39.2.1    skrll 			    error);
    216      1.16       pk 		if (nmapmask != 1)
    217      1.16       pk 			panic("ebus interrupt-map-mask is broken");
    218      1.16       pk 		break;
    219      1.16       pk 	case ENOENT:
    220      1.16       pk 		break;
    221      1.16       pk 	default:
    222      1.16       pk 		panic("ebus interrupt-map: error %d", error);
    223      1.16       pk 		break;
    224      1.16       pk 	}
    225       1.1      mrg 
    226  1.39.2.1    skrll 	error = prom_getprop(node, "ranges", sizeof(struct ebus_ranges),
    227  1.39.2.1    skrll 	    &sc->sc_nrange, &sc->sc_range);
    228      1.16       pk 	if (error)
    229      1.16       pk 		panic("ebus ranges: error %d", error);
    230       1.1      mrg 
    231       1.1      mrg 	/*
    232       1.1      mrg 	 * now attach all our children
    233       1.1      mrg 	 */
    234       1.1      mrg 	DPRINTF(EDB_CHILD, ("ebus node %08x, searching children...\n", node));
    235       1.1      mrg 	for (node = firstchild(node); node; node = nextsibling(node)) {
    236  1.39.2.1    skrll 		char *name = prom_getpropstring(node, "name");
    237       1.1      mrg 
    238       1.1      mrg 		if (ebus_setup_attach_args(sc, node, &eba) != 0) {
    239       1.1      mrg 			printf("ebus_attach: %s: incomplete\n", name);
    240       1.1      mrg 			continue;
    241       1.6      mrg 		} else {
    242      1.21      mrg 			DPRINTF(EDB_CHILD, ("- found child `%s', attaching\n",
    243      1.21      mrg 			    eba.ea_name));
    244       1.6      mrg 			(void)config_found(self, &eba, ebus_print);
    245       1.1      mrg 		}
    246       1.1      mrg 		ebus_destroy_attach_args(&eba);
    247       1.1      mrg 	}
    248       1.1      mrg }
    249       1.1      mrg 
    250       1.1      mrg int
    251       1.1      mrg ebus_setup_attach_args(sc, node, ea)
    252       1.1      mrg 	struct ebus_softc	*sc;
    253       1.1      mrg 	int			node;
    254       1.1      mrg 	struct ebus_attach_args	*ea;
    255       1.1      mrg {
    256       1.1      mrg 	int	n, rv;
    257       1.1      mrg 
    258  1.39.2.1    skrll 	memset(ea, 0, sizeof(struct ebus_attach_args));
    259  1.39.2.1    skrll 	n = 0;
    260  1.39.2.1    skrll 	rv = prom_getprop(node, "name", 1, &n, &ea->ea_name);
    261       1.1      mrg 	if (rv != 0)
    262       1.1      mrg 		return (rv);
    263       1.1      mrg 	ea->ea_name[n] = '\0';
    264       1.1      mrg 
    265       1.1      mrg 	ea->ea_node = node;
    266       1.1      mrg 	ea->ea_bustag = sc->sc_childbustag;
    267       1.1      mrg 	ea->ea_dmatag = sc->sc_dmatag;
    268       1.1      mrg 
    269  1.39.2.1    skrll 	rv = prom_getprop(node, "reg", sizeof(struct ebus_regs), &ea->ea_nreg,
    270  1.39.2.1    skrll 	    &ea->ea_reg);
    271       1.1      mrg 	if (rv)
    272       1.1      mrg 		return (rv);
    273       1.1      mrg 
    274  1.39.2.1    skrll 	rv = prom_getprop(node, "address", sizeof(u_int32_t), &ea->ea_nvaddr,
    275  1.39.2.1    skrll 	    &ea->ea_vaddr);
    276       1.1      mrg 	if (rv != ENOENT) {
    277       1.1      mrg 		if (rv)
    278       1.1      mrg 			return (rv);
    279       1.1      mrg 
    280      1.31      mrg 		if (ea->ea_nreg != ea->ea_nvaddr)
    281       1.1      mrg 			printf("ebus loses: device %s: %d regs and %d addrs\n",
    282      1.31      mrg 			    ea->ea_name, ea->ea_nreg, ea->ea_nvaddr);
    283       1.3      mrg 	} else
    284      1.31      mrg 		ea->ea_nvaddr = 0;
    285       1.1      mrg 
    286  1.39.2.1    skrll 	if (prom_getprop(node, "interrupts", sizeof(u_int32_t), &ea->ea_nintr,
    287  1.39.2.1    skrll 	    &ea->ea_intr))
    288      1.31      mrg 		ea->ea_nintr = 0;
    289      1.16       pk 	else
    290       1.3      mrg 		ebus_find_ino(sc, ea);
    291       1.1      mrg 
    292       1.1      mrg 	return (0);
    293       1.1      mrg }
    294       1.1      mrg 
    295       1.1      mrg void
    296       1.1      mrg ebus_destroy_attach_args(ea)
    297       1.1      mrg 	struct ebus_attach_args	*ea;
    298       1.1      mrg {
    299       1.1      mrg 
    300       1.1      mrg 	if (ea->ea_name)
    301       1.1      mrg 		free((void *)ea->ea_name, M_DEVBUF);
    302      1.31      mrg 	if (ea->ea_reg)
    303      1.31      mrg 		free((void *)ea->ea_reg, M_DEVBUF);
    304      1.31      mrg 	if (ea->ea_intr)
    305      1.31      mrg 		free((void *)ea->ea_intr, M_DEVBUF);
    306      1.31      mrg 	if (ea->ea_vaddr)
    307      1.31      mrg 		free((void *)ea->ea_vaddr, M_DEVBUF);
    308       1.1      mrg }
    309       1.1      mrg 
    310       1.1      mrg int
    311       1.1      mrg ebus_print(aux, p)
    312       1.1      mrg 	void *aux;
    313       1.1      mrg 	const char *p;
    314       1.1      mrg {
    315       1.1      mrg 	struct ebus_attach_args *ea = aux;
    316       1.4      mrg 	int i;
    317       1.1      mrg 
    318       1.1      mrg 	if (p)
    319      1.37  thorpej 		aprint_normal("%s at %s", ea->ea_name, p);
    320      1.31      mrg 	for (i = 0; i < ea->ea_nreg; i++)
    321      1.37  thorpej 		aprint_normal("%s %x-%x", i == 0 ? " addr" : ",",
    322      1.31      mrg 		    ea->ea_reg[i].lo,
    323      1.31      mrg 		    ea->ea_reg[i].lo + ea->ea_reg[i].size - 1);
    324      1.31      mrg 	for (i = 0; i < ea->ea_nintr; i++)
    325      1.37  thorpej 		aprint_normal(" ipl %d", ea->ea_intr[i]);
    326       1.1      mrg 	return (UNCONF);
    327       1.3      mrg }
    328       1.3      mrg 
    329      1.23      eeh 
    330       1.3      mrg /*
    331       1.3      mrg  * find the INO values for each interrupt and fill them in.
    332       1.3      mrg  *
    333       1.3      mrg  * for each "reg" property of this device, mask it's hi and lo
    334       1.3      mrg  * values with the "interrupt-map-mask"'s hi/lo values, and also
    335       1.3      mrg  * mask the interrupt number with the interrupt mask.  search the
    336       1.3      mrg  * "interrupt-map" list for matching values of hi, lo and interrupt
    337       1.3      mrg  * to give the INO for this interrupt.
    338       1.3      mrg  */
    339       1.3      mrg void
    340       1.3      mrg ebus_find_ino(sc, ea)
    341       1.3      mrg 	struct ebus_softc *sc;
    342       1.3      mrg 	struct ebus_attach_args *ea;
    343       1.3      mrg {
    344       1.3      mrg 	u_int32_t hi, lo, intr;
    345       1.3      mrg 	int i, j, k;
    346       1.3      mrg 
    347      1.16       pk 	if (sc->sc_nintmap == 0) {
    348      1.31      mrg 		for (i = 0; i < ea->ea_nintr; i++) {
    349      1.31      mrg 			OF_mapintr(ea->ea_node, &ea->ea_intr[i],
    350      1.31      mrg 				sizeof(ea->ea_intr[0]),
    351      1.31      mrg 				sizeof(ea->ea_intr[0]));
    352      1.23      eeh 		}
    353      1.16       pk 		return;
    354      1.16       pk 	}
    355      1.16       pk 
    356      1.21      mrg 	DPRINTF(EDB_INTRMAP,
    357      1.31      mrg 	    ("ebus_find_ino: searching %d interrupts", ea->ea_nintr));
    358      1.16       pk 
    359      1.31      mrg 	for (j = 0; j < ea->ea_nintr; j++) {
    360      1.16       pk 
    361      1.31      mrg 		intr = ea->ea_intr[j] & sc->sc_intmapmask.intr;
    362       1.3      mrg 
    363      1.21      mrg 		DPRINTF(EDB_INTRMAP,
    364      1.31      mrg 		    ("; intr %x masked to %x", ea->ea_intr[j], intr));
    365      1.31      mrg 		for (i = 0; i < ea->ea_nreg; i++) {
    366      1.31      mrg 			hi = ea->ea_reg[i].hi & sc->sc_intmapmask.hi;
    367      1.31      mrg 			lo = ea->ea_reg[i].lo & sc->sc_intmapmask.lo;
    368       1.3      mrg 
    369      1.21      mrg 			DPRINTF(EDB_INTRMAP,
    370      1.21      mrg 			    ("; reg hi.lo %08x.%08x masked to %08x.%08x",
    371      1.31      mrg 			    ea->ea_reg[i].hi, ea->ea_reg[i].lo, hi, lo));
    372       1.3      mrg 			for (k = 0; k < sc->sc_nintmap; k++) {
    373      1.21      mrg 				DPRINTF(EDB_INTRMAP,
    374      1.21      mrg 				    ("; checking hi.lo %08x.%08x intr %x",
    375      1.21      mrg 				    sc->sc_intmap[k].hi, sc->sc_intmap[k].lo,
    376      1.21      mrg 				    sc->sc_intmap[k].intr));
    377       1.3      mrg 				if (hi == sc->sc_intmap[k].hi &&
    378       1.3      mrg 				    lo == sc->sc_intmap[k].lo &&
    379       1.3      mrg 				    intr == sc->sc_intmap[k].intr) {
    380      1.31      mrg 					ea->ea_intr[j] =
    381      1.21      mrg 					    sc->sc_intmap[k].cintr;
    382      1.21      mrg 					DPRINTF(EDB_INTRMAP,
    383      1.21      mrg 					    ("; FOUND IT! changing to %d\n",
    384      1.21      mrg 					    sc->sc_intmap[k].cintr));
    385       1.3      mrg 					goto next_intr;
    386       1.3      mrg 				}
    387       1.3      mrg 			}
    388       1.3      mrg 		}
    389      1.22      mrg next_intr:;
    390       1.3      mrg 	}
    391       1.1      mrg }
    392       1.1      mrg 
    393       1.8      mrg /*
    394      1.29      mrg  * bus space support.  <sparc64/dev/psychoreg.h> has a discussion
    395      1.29      mrg  * about PCI physical addresses, which also applies to ebus.
    396       1.8      mrg  */
    397       1.8      mrg bus_space_tag_t
    398       1.8      mrg ebus_alloc_bus_tag(sc, type)
    399       1.8      mrg 	struct ebus_softc *sc;
    400       1.8      mrg 	int type;
    401       1.8      mrg {
    402       1.8      mrg 	bus_space_tag_t bt;
    403       1.8      mrg 
    404       1.8      mrg 	bt = (bus_space_tag_t)
    405       1.8      mrg 		malloc(sizeof(struct sparc_bus_space_tag), M_DEVBUF, M_NOWAIT);
    406       1.8      mrg 	if (bt == NULL)
    407       1.8      mrg 		panic("could not allocate ebus bus tag");
    408       1.8      mrg 
    409  1.39.2.1    skrll 	memset(bt, 0, sizeof *bt);
    410       1.8      mrg 	bt->cookie = sc;
    411      1.23      eeh 	bt->parent = sc->sc_memtag;
    412       1.8      mrg 	bt->type = type;
    413       1.8      mrg 	bt->sparc_bus_map = _ebus_bus_map;
    414       1.8      mrg 	bt->sparc_bus_mmap = ebus_bus_mmap;
    415       1.8      mrg 	bt->sparc_intr_establish = ebus_intr_establish;
    416       1.8      mrg 	return (bt);
    417       1.8      mrg }
    418       1.8      mrg 
    419       1.8      mrg static int
    420      1.31      mrg _ebus_bus_map(t, ba, size, flags, va, hp)
    421       1.8      mrg 	bus_space_tag_t t;
    422      1.31      mrg 	bus_addr_t ba;
    423       1.8      mrg 	bus_size_t size;
    424       1.8      mrg 	int	flags;
    425      1.31      mrg 	vaddr_t va;
    426       1.8      mrg 	bus_space_handle_t *hp;
    427       1.8      mrg {
    428       1.8      mrg 	struct ebus_softc *sc = t->cookie;
    429      1.31      mrg 	paddr_t offset;
    430      1.31      mrg 	u_int bar;
    431      1.23      eeh 	int i, ss;
    432       1.8      mrg 
    433      1.31      mrg 	bar = BUS_ADDR_IOSPACE(ba);
    434      1.31      mrg 	offset = BUS_ADDR_PADDR(ba);
    435      1.31      mrg 
    436      1.21      mrg 	DPRINTF(EDB_BUSMAP,
    437      1.31      mrg 		("\n_ebus_bus_map: bar %d offset %08x sz %x flags %x va %p\n",
    438      1.31      mrg 		 (int)bar, (u_int32_t)offset, (u_int32_t)size,
    439      1.31      mrg 		 flags, (void *)va));
    440      1.31      mrg 
    441       1.8      mrg 	for (i = 0; i < sc->sc_nrange; i++) {
    442       1.8      mrg 		bus_addr_t pciaddr;
    443       1.8      mrg 
    444      1.31      mrg 		if (bar != sc->sc_range[i].child_hi)
    445       1.8      mrg 			continue;
    446      1.31      mrg 		if (offset < sc->sc_range[i].child_lo ||
    447      1.31      mrg 		    (offset + size) >
    448      1.21      mrg 		      (sc->sc_range[i].child_lo + sc->sc_range[i].size))
    449       1.8      mrg 			continue;
    450       1.8      mrg 
    451      1.23      eeh 		/* Isolate address space and find the right tag */
    452      1.23      eeh 		ss = (sc->sc_range[i].phys_hi>>24)&3;
    453      1.23      eeh 		switch (ss) {
    454      1.23      eeh 		case 1:	/* I/O space */
    455      1.23      eeh 			t = sc->sc_iotag;
    456      1.23      eeh 			break;
    457      1.23      eeh 		case 2:	/* Memory space */
    458      1.23      eeh 			t = sc->sc_memtag;
    459      1.23      eeh 			break;
    460      1.23      eeh 		case 0:	/* Config space */
    461      1.23      eeh 		case 3:	/* 64-bit Memory space */
    462      1.23      eeh 		default: /* WTF? */
    463      1.23      eeh 			/* We don't handle these */
    464      1.23      eeh 			panic("_ebus_bus_map: illegal space %x", ss);
    465      1.23      eeh 			break;
    466      1.23      eeh 		}
    467       1.8      mrg 		pciaddr = ((bus_addr_t)sc->sc_range[i].phys_mid << 32UL) |
    468       1.8      mrg 				       sc->sc_range[i].phys_lo;
    469      1.31      mrg 		pciaddr += offset;
    470      1.31      mrg 
    471      1.21      mrg 		DPRINTF(EDB_BUSMAP,
    472      1.31      mrg 			("_ebus_bus_map: mapping to PCI addr %x\n",
    473      1.31      mrg 			 (u_int32_t)pciaddr));
    474      1.31      mrg 
    475       1.8      mrg 		/* pass it onto the psycho */
    476      1.30      eeh 		return (bus_space_map(t, pciaddr, size, flags, hp));
    477       1.8      mrg 	}
    478       1.8      mrg 	DPRINTF(EDB_BUSMAP, (": FAILED\n"));
    479       1.8      mrg 	return (EINVAL);
    480       1.8      mrg }
    481       1.8      mrg 
    482      1.27      eeh static paddr_t
    483      1.27      eeh ebus_bus_mmap(t, paddr, off, prot, flags)
    484       1.8      mrg 	bus_space_tag_t t;
    485       1.8      mrg 	bus_addr_t paddr;
    486      1.27      eeh 	off_t off;
    487      1.27      eeh 	int prot;
    488       1.8      mrg 	int flags;
    489       1.8      mrg {
    490       1.8      mrg 	bus_addr_t offset = paddr;
    491       1.8      mrg 	struct ebus_softc *sc = t->cookie;
    492       1.8      mrg 	int i;
    493       1.8      mrg 
    494       1.8      mrg 	for (i = 0; i < sc->sc_nrange; i++) {
    495       1.8      mrg 		bus_addr_t paddr = ((bus_addr_t)sc->sc_range[i].child_hi << 32) |
    496       1.8      mrg 		    sc->sc_range[i].child_lo;
    497       1.8      mrg 
    498       1.8      mrg 		if (offset != paddr)
    499       1.8      mrg 			continue;
    500       1.8      mrg 
    501      1.21      mrg 		DPRINTF(EDB_BUSMAP, ("\n_ebus_bus_mmap: mapping paddr %qx\n",
    502      1.21      mrg 		    (unsigned long long)paddr));
    503      1.27      eeh 		return (bus_space_mmap(sc->sc_memtag, paddr, off,
    504      1.27      eeh 				       prot, flags));
    505       1.8      mrg 	}
    506       1.8      mrg 
    507       1.8      mrg 	return (-1);
    508       1.8      mrg }
    509       1.8      mrg 
    510       1.8      mrg /*
    511      1.29      mrg  * install an interrupt handler for a ebus device
    512       1.8      mrg  */
    513       1.8      mrg void *
    514      1.36       pk ebus_intr_establish(t, pri, level, handler, arg, fastvec)
    515       1.8      mrg 	bus_space_tag_t t;
    516      1.15       pk 	int pri;
    517       1.8      mrg 	int level;
    518       1.8      mrg 	int (*handler) __P((void *));
    519       1.8      mrg 	void *arg;
    520      1.35       pk 	void (*fastvec) __P((void));	/* ignored */
    521       1.8      mrg {
    522      1.29      mrg 
    523      1.36       pk 	return (bus_intr_establish(t->parent, pri, level, handler, arg));
    524       1.1      mrg }
    525