Home | History | Annotate | Line # | Download | only in dev
ebus.c revision 1.63
      1  1.63       mrg /*	$NetBSD: ebus.c,v 1.63 2018/01/18 00:31:22 mrg 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  *
     16   1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17   1.1       mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18   1.1       mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19   1.1       mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20   1.1       mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21   1.1       mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22   1.1       mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23   1.1       mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24   1.1       mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1       mrg  * SUCH DAMAGE.
     27   1.1       mrg  */
     28  1.40     lukem 
     29  1.40     lukem #include <sys/cdefs.h>
     30  1.63       mrg __KERNEL_RCSID(0, "$NetBSD: ebus.c,v 1.63 2018/01/18 00:31:22 mrg Exp $");
     31   1.1       mrg 
     32   1.8       mrg #include "opt_ddb.h"
     33   1.8       mrg 
     34   1.1       mrg /*
     35   1.1       mrg  * UltraSPARC 5 and beyond ebus support.
     36   1.8       mrg  *
     37  1.21       mrg  * note that this driver is not complete:
     38  1.21       mrg  *	- interrupt establish is written and appears to work
     39   1.8       mrg  *	- bus map code is written and appears to work
     40  1.38       wiz  *	- ebus2 DMA code is completely unwritten, we just punt to
     41  1.29       mrg  *	  the iommu.
     42   1.1       mrg  */
     43   1.1       mrg 
     44   1.1       mrg #ifdef DEBUG
     45   1.8       mrg #define	EDB_PROM	0x01
     46   1.8       mrg #define EDB_CHILD	0x02
     47   1.8       mrg #define	EDB_INTRMAP	0x04
     48   1.8       mrg #define EDB_BUSMAP	0x08
     49  1.56       mrg #define EDB_BUSDMA	0x10
     50  1.56       mrg #define EDB_INTR	0x20
     51  1.56       mrg int ebus_debug = 0x0;
     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.58    dyoung #include <sys/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.29       mrg #include <dev/ebus/ebusreg.h>
     76  1.31       mrg #include <dev/ebus/ebusvar.h>
     77  1.56       mrg #include <sparc64/dev/ebusvar.h>
     78  1.29       mrg 
     79  1.57  christos int	ebus_match(device_t, cfdata_t, void *);
     80  1.57  christos void	ebus_attach(device_t, device_t, void *);
     81   1.1       mrg 
     82  1.57  christos CFATTACH_DECL_NEW(ebus, sizeof(struct ebus_softc),
     83  1.34   thorpej     ebus_match, ebus_attach, NULL, NULL);
     84   1.1       mrg 
     85   1.8       mrg /*
     86  1.38       wiz  * here are our bus space and bus DMA routines.
     87   1.8       mrg  */
     88  1.50       cdi static int _ebus_bus_map(bus_space_tag_t, bus_addr_t, bus_size_t, int, vaddr_t,
     89  1.50       cdi 	bus_space_handle_t *);
     90  1.50       cdi static void *ebus_intr_establish(bus_space_tag_t, int, int, int (*)(void *),
     91  1.50       cdi 	void *, void(*)(void));
     92   1.8       mrg 
     93   1.1       mrg int
     94  1.57  christos ebus_match(device_t parent, cfdata_t match, void *aux)
     95   1.1       mrg {
     96   1.1       mrg 	struct pci_attach_args *pa = aux;
     97  1.45        pk 	char *name;
     98  1.23       eeh 	int node;
     99   1.1       mrg 
    100  1.23       eeh 	/* Only attach if there's a PROM node. */
    101  1.23       eeh 	node = PCITAG_NODE(pa->pa_tag);
    102  1.45        pk 	if (node == -1)
    103  1.45        pk 		return (0);
    104  1.45        pk 
    105  1.45        pk 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_BRIDGE)
    106  1.45        pk 		return (0);
    107  1.23       eeh 
    108  1.23       eeh 	/* Match a real ebus */
    109  1.45        pk 	name = prom_getpropstring(node, "name");
    110  1.45        pk 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN &&
    111  1.24       eeh 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUS &&
    112  1.25       eeh 		strcmp(name, "ebus") == 0)
    113  1.25       eeh 		return (1);
    114  1.25       eeh 
    115  1.25       eeh 	/* Or a real ebus III */
    116  1.45        pk 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN &&
    117  1.25       eeh 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUSIII &&
    118  1.24       eeh 		strcmp(name, "ebus") == 0)
    119   1.1       mrg 		return (1);
    120   1.1       mrg 
    121  1.23       eeh 	/* Or a PCI-ISA bridge XXX I hope this is on-board. */
    122  1.45        pk 	if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA) {
    123  1.23       eeh 		return (1);
    124  1.23       eeh 	}
    125  1.23       eeh 
    126  1.61       jdc 	/* Or the Altera bridge on SPARCle */
    127  1.61       jdc 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALTERA &&
    128  1.61       jdc 	    PCI_PRODUCT(pa->pa_id) == 0 &&
    129  1.61       jdc 		strcmp(name, "ebus") == 0)
    130  1.61       jdc 		return (1);
    131  1.61       jdc 
    132   1.1       mrg 	return (0);
    133   1.1       mrg }
    134   1.1       mrg 
    135   1.1       mrg /*
    136  1.62       snj  * attach an ebus and all its children.  this code is modeled
    137   1.1       mrg  * after the sbus code which does similar things.
    138   1.1       mrg  */
    139   1.1       mrg void
    140  1.57  christos ebus_attach(device_t parent, device_t self, void *aux)
    141   1.1       mrg {
    142  1.57  christos 	struct ebus_softc *sc = device_private(self);
    143   1.1       mrg 	struct pci_attach_args *pa = aux;
    144   1.1       mrg 	struct ebus_attach_args eba;
    145   1.1       mrg 	struct ebus_interrupt_map_mask *immp;
    146  1.16        pk 	int node, nmapmask, error;
    147   1.1       mrg 	char devinfo[256];
    148   1.1       mrg 
    149  1.57  christos 	sc->sc_dev = self;
    150  1.57  christos 
    151  1.54       mrg 	aprint_naive("\n");
    152   1.1       mrg 
    153  1.46    kleink 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    154  1.63       mrg 	aprint_normal(": %s, revision 0x%02x\n", devinfo,
    155   1.1       mrg 	    PCI_REVISION(pa->pa_class));
    156   1.1       mrg 
    157  1.23       eeh 	sc->sc_memtag = pa->pa_memt;
    158  1.23       eeh 	sc->sc_iotag = pa->pa_iot;
    159   1.1       mrg 	sc->sc_childbustag = ebus_alloc_bus_tag(sc, PCI_MEMORY_BUS_SPACE);
    160  1.29       mrg 	sc->sc_dmatag = pa->pa_dmat;
    161   1.1       mrg 
    162  1.23       eeh 	node = PCITAG_NODE(pa->pa_tag);
    163  1.23       eeh 	if (node == -1)
    164   1.1       mrg 		panic("could not find ebus node");
    165   1.1       mrg 
    166   1.1       mrg 	sc->sc_node = node;
    167   1.1       mrg 
    168   1.1       mrg 	/*
    169   1.1       mrg 	 * fill in our softc with information from the prom
    170   1.1       mrg 	 */
    171   1.3       mrg 	sc->sc_intmap = NULL;
    172   1.3       mrg 	sc->sc_range = NULL;
    173  1.44    martin 	sc->sc_nintmap = 0;
    174  1.43        pk 	error = prom_getprop(node, "interrupt-map",
    175  1.16        pk 			sizeof(struct ebus_interrupt_map),
    176  1.41       mrg 			&sc->sc_nintmap, &sc->sc_intmap);
    177  1.16        pk 	switch (error) {
    178  1.16        pk 	case 0:
    179  1.16        pk 		immp = &sc->sc_intmapmask;
    180  1.44    martin 		nmapmask = sizeof(*immp);
    181  1.43        pk 		error = prom_getprop(node, "interrupt-map-mask",
    182  1.16        pk 			    sizeof(struct ebus_interrupt_map_mask), &nmapmask,
    183  1.41       mrg 			    &immp);
    184  1.16        pk 		if (error)
    185  1.44    martin 			panic("could not get ebus interrupt-map-mask, error %d",
    186  1.44    martin 			    error);
    187  1.16        pk 		if (nmapmask != 1)
    188  1.16        pk 			panic("ebus interrupt-map-mask is broken");
    189  1.16        pk 		break;
    190  1.16        pk 	case ENOENT:
    191  1.16        pk 		break;
    192  1.16        pk 	default:
    193  1.16        pk 		panic("ebus interrupt-map: error %d", error);
    194  1.16        pk 		break;
    195  1.16        pk 	}
    196   1.1       mrg 
    197  1.43        pk 	error = prom_getprop(node, "ranges", sizeof(struct ebus_ranges),
    198  1.41       mrg 	    &sc->sc_nrange, &sc->sc_range);
    199  1.16        pk 	if (error)
    200  1.16        pk 		panic("ebus ranges: error %d", error);
    201   1.1       mrg 
    202   1.1       mrg 	/*
    203   1.1       mrg 	 * now attach all our children
    204   1.1       mrg 	 */
    205   1.1       mrg 	DPRINTF(EDB_CHILD, ("ebus node %08x, searching children...\n", node));
    206   1.1       mrg 	for (node = firstchild(node); node; node = nextsibling(node)) {
    207  1.43        pk 		char *name = prom_getpropstring(node, "name");
    208   1.1       mrg 
    209   1.1       mrg 		if (ebus_setup_attach_args(sc, node, &eba) != 0) {
    210  1.54       mrg 			aprint_error("ebus_attach: %s: incomplete\n", name);
    211   1.1       mrg 			continue;
    212   1.6       mrg 		} else {
    213  1.21       mrg 			DPRINTF(EDB_CHILD, ("- found child `%s', attaching\n",
    214  1.21       mrg 			    eba.ea_name));
    215   1.6       mrg 			(void)config_found(self, &eba, ebus_print);
    216   1.1       mrg 		}
    217   1.1       mrg 		ebus_destroy_attach_args(&eba);
    218   1.1       mrg 	}
    219   1.1       mrg }
    220   1.1       mrg 
    221  1.49       cdi int	ebus_setup_attach_args(struct ebus_softc *, int,
    222  1.49       cdi 	    struct ebus_attach_args *);
    223   1.1       mrg int
    224  1.49       cdi ebus_setup_attach_args(struct ebus_softc *sc, int node,
    225  1.49       cdi 	struct ebus_attach_args	*ea)
    226   1.1       mrg {
    227   1.1       mrg 	int	n, rv;
    228   1.1       mrg 
    229  1.42    martin 	memset(ea, 0, sizeof(struct ebus_attach_args));
    230  1.44    martin 	n = 0;
    231  1.43        pk 	rv = prom_getprop(node, "name", 1, &n, &ea->ea_name);
    232   1.1       mrg 	if (rv != 0)
    233   1.1       mrg 		return (rv);
    234  1.60       mrg 	KASSERT(ea->ea_name[n-1] == '\0');
    235   1.1       mrg 
    236   1.1       mrg 	ea->ea_node = node;
    237   1.1       mrg 	ea->ea_bustag = sc->sc_childbustag;
    238   1.1       mrg 	ea->ea_dmatag = sc->sc_dmatag;
    239   1.1       mrg 
    240  1.43        pk 	rv = prom_getprop(node, "reg", sizeof(struct ebus_regs), &ea->ea_nreg,
    241  1.41       mrg 	    &ea->ea_reg);
    242   1.1       mrg 	if (rv)
    243   1.1       mrg 		return (rv);
    244   1.1       mrg 
    245  1.50       cdi 	rv = prom_getprop(node, "address", sizeof(uint32_t), &ea->ea_nvaddr,
    246  1.41       mrg 	    &ea->ea_vaddr);
    247   1.1       mrg 	if (rv != ENOENT) {
    248   1.1       mrg 		if (rv)
    249   1.1       mrg 			return (rv);
    250   1.1       mrg 
    251  1.31       mrg 		if (ea->ea_nreg != ea->ea_nvaddr)
    252   1.1       mrg 			printf("ebus loses: device %s: %d regs and %d addrs\n",
    253  1.31       mrg 			    ea->ea_name, ea->ea_nreg, ea->ea_nvaddr);
    254   1.3       mrg 	} else
    255  1.31       mrg 		ea->ea_nvaddr = 0;
    256   1.1       mrg 
    257  1.50       cdi 	if (prom_getprop(node, "interrupts", sizeof(uint32_t), &ea->ea_nintr,
    258  1.41       mrg 	    &ea->ea_intr))
    259  1.31       mrg 		ea->ea_nintr = 0;
    260  1.16        pk 	else
    261   1.3       mrg 		ebus_find_ino(sc, ea);
    262   1.1       mrg 
    263   1.1       mrg 	return (0);
    264   1.1       mrg }
    265   1.1       mrg 
    266   1.1       mrg void
    267  1.49       cdi ebus_destroy_attach_args(struct ebus_attach_args *ea)
    268   1.1       mrg {
    269   1.1       mrg 
    270   1.1       mrg 	if (ea->ea_name)
    271   1.1       mrg 		free((void *)ea->ea_name, M_DEVBUF);
    272  1.31       mrg 	if (ea->ea_reg)
    273  1.31       mrg 		free((void *)ea->ea_reg, M_DEVBUF);
    274  1.31       mrg 	if (ea->ea_intr)
    275  1.31       mrg 		free((void *)ea->ea_intr, M_DEVBUF);
    276  1.31       mrg 	if (ea->ea_vaddr)
    277  1.31       mrg 		free((void *)ea->ea_vaddr, M_DEVBUF);
    278   1.1       mrg }
    279   1.1       mrg 
    280   1.1       mrg int
    281  1.49       cdi ebus_print(void *aux, const char *p)
    282   1.1       mrg {
    283   1.1       mrg 	struct ebus_attach_args *ea = aux;
    284   1.4       mrg 	int i;
    285   1.1       mrg 
    286   1.1       mrg 	if (p)
    287  1.37   thorpej 		aprint_normal("%s at %s", ea->ea_name, p);
    288  1.31       mrg 	for (i = 0; i < ea->ea_nreg; i++)
    289  1.37   thorpej 		aprint_normal("%s %x-%x", i == 0 ? " addr" : ",",
    290  1.31       mrg 		    ea->ea_reg[i].lo,
    291  1.31       mrg 		    ea->ea_reg[i].lo + ea->ea_reg[i].size - 1);
    292  1.31       mrg 	for (i = 0; i < ea->ea_nintr; i++)
    293  1.59  macallan 		aprint_normal(" ipl %x", ea->ea_intr[i]);
    294   1.1       mrg 	return (UNCONF);
    295   1.3       mrg }
    296   1.3       mrg 
    297  1.23       eeh 
    298   1.3       mrg /*
    299   1.3       mrg  * find the INO values for each interrupt and fill them in.
    300   1.3       mrg  *
    301  1.62       snj  * for each "reg" property of this device, mask its hi and lo
    302   1.3       mrg  * values with the "interrupt-map-mask"'s hi/lo values, and also
    303   1.3       mrg  * mask the interrupt number with the interrupt mask.  search the
    304   1.3       mrg  * "interrupt-map" list for matching values of hi, lo and interrupt
    305   1.3       mrg  * to give the INO for this interrupt.
    306   1.3       mrg  */
    307   1.3       mrg void
    308  1.49       cdi ebus_find_ino(struct ebus_softc *sc, struct ebus_attach_args *ea)
    309   1.3       mrg {
    310  1.50       cdi 	uint32_t hi, lo, intr;
    311   1.3       mrg 	int i, j, k;
    312   1.3       mrg 
    313  1.16        pk 	if (sc->sc_nintmap == 0) {
    314  1.31       mrg 		for (i = 0; i < ea->ea_nintr; i++) {
    315  1.31       mrg 			OF_mapintr(ea->ea_node, &ea->ea_intr[i],
    316  1.31       mrg 				sizeof(ea->ea_intr[0]),
    317  1.31       mrg 				sizeof(ea->ea_intr[0]));
    318  1.23       eeh 		}
    319  1.16        pk 		return;
    320  1.16        pk 	}
    321  1.16        pk 
    322  1.21       mrg 	DPRINTF(EDB_INTRMAP,
    323  1.31       mrg 	    ("ebus_find_ino: searching %d interrupts", ea->ea_nintr));
    324  1.16        pk 
    325  1.31       mrg 	for (j = 0; j < ea->ea_nintr; j++) {
    326  1.16        pk 
    327  1.31       mrg 		intr = ea->ea_intr[j] & sc->sc_intmapmask.intr;
    328   1.3       mrg 
    329  1.21       mrg 		DPRINTF(EDB_INTRMAP,
    330  1.31       mrg 		    ("; intr %x masked to %x", ea->ea_intr[j], intr));
    331  1.31       mrg 		for (i = 0; i < ea->ea_nreg; i++) {
    332  1.31       mrg 			hi = ea->ea_reg[i].hi & sc->sc_intmapmask.hi;
    333  1.31       mrg 			lo = ea->ea_reg[i].lo & sc->sc_intmapmask.lo;
    334   1.3       mrg 
    335  1.21       mrg 			DPRINTF(EDB_INTRMAP,
    336  1.21       mrg 			    ("; reg hi.lo %08x.%08x masked to %08x.%08x",
    337  1.31       mrg 			    ea->ea_reg[i].hi, ea->ea_reg[i].lo, hi, lo));
    338   1.3       mrg 			for (k = 0; k < sc->sc_nintmap; k++) {
    339  1.21       mrg 				DPRINTF(EDB_INTRMAP,
    340  1.21       mrg 				    ("; checking hi.lo %08x.%08x intr %x",
    341  1.21       mrg 				    sc->sc_intmap[k].hi, sc->sc_intmap[k].lo,
    342  1.21       mrg 				    sc->sc_intmap[k].intr));
    343   1.3       mrg 				if (hi == sc->sc_intmap[k].hi &&
    344   1.3       mrg 				    lo == sc->sc_intmap[k].lo &&
    345   1.3       mrg 				    intr == sc->sc_intmap[k].intr) {
    346  1.31       mrg 					ea->ea_intr[j] =
    347  1.21       mrg 					    sc->sc_intmap[k].cintr;
    348  1.21       mrg 					DPRINTF(EDB_INTRMAP,
    349  1.21       mrg 					    ("; FOUND IT! changing to %d\n",
    350  1.21       mrg 					    sc->sc_intmap[k].cintr));
    351   1.3       mrg 					goto next_intr;
    352   1.3       mrg 				}
    353   1.3       mrg 			}
    354   1.3       mrg 		}
    355  1.22       mrg next_intr:;
    356   1.3       mrg 	}
    357   1.1       mrg }
    358   1.1       mrg 
    359   1.8       mrg /*
    360  1.29       mrg  * bus space support.  <sparc64/dev/psychoreg.h> has a discussion
    361  1.29       mrg  * about PCI physical addresses, which also applies to ebus.
    362   1.8       mrg  */
    363   1.8       mrg bus_space_tag_t
    364  1.49       cdi ebus_alloc_bus_tag(struct ebus_softc *sc, int type)
    365   1.8       mrg {
    366   1.8       mrg 	bus_space_tag_t bt;
    367   1.8       mrg 
    368   1.8       mrg 	bt = (bus_space_tag_t)
    369   1.8       mrg 		malloc(sizeof(struct sparc_bus_space_tag), M_DEVBUF, M_NOWAIT);
    370   1.8       mrg 	if (bt == NULL)
    371   1.8       mrg 		panic("could not allocate ebus bus tag");
    372   1.8       mrg 
    373  1.42    martin 	memset(bt, 0, sizeof *bt);
    374   1.8       mrg 	bt->cookie = sc;
    375  1.23       eeh 	bt->parent = sc->sc_memtag;
    376   1.8       mrg 	bt->type = type;
    377   1.8       mrg 	bt->sparc_bus_map = _ebus_bus_map;
    378   1.8       mrg 	bt->sparc_bus_mmap = ebus_bus_mmap;
    379   1.8       mrg 	bt->sparc_intr_establish = ebus_intr_establish;
    380   1.8       mrg 	return (bt);
    381   1.8       mrg }
    382   1.8       mrg 
    383   1.8       mrg static int
    384  1.50       cdi _ebus_bus_map(bus_space_tag_t t, bus_addr_t ba, bus_size_t size, int flags,
    385  1.50       cdi 	vaddr_t va, bus_space_handle_t *hp)
    386   1.8       mrg {
    387   1.8       mrg 	struct ebus_softc *sc = t->cookie;
    388  1.31       mrg 	paddr_t offset;
    389  1.31       mrg 	u_int bar;
    390  1.23       eeh 	int i, ss;
    391   1.8       mrg 
    392  1.31       mrg 	bar = BUS_ADDR_IOSPACE(ba);
    393  1.31       mrg 	offset = BUS_ADDR_PADDR(ba);
    394  1.31       mrg 
    395  1.21       mrg 	DPRINTF(EDB_BUSMAP,
    396  1.31       mrg 		("\n_ebus_bus_map: bar %d offset %08x sz %x flags %x va %p\n",
    397  1.50       cdi 		 (int)bar, (uint32_t)offset, (uint32_t)size,
    398  1.31       mrg 		 flags, (void *)va));
    399  1.31       mrg 
    400   1.8       mrg 	for (i = 0; i < sc->sc_nrange; i++) {
    401   1.8       mrg 		bus_addr_t pciaddr;
    402   1.8       mrg 
    403  1.31       mrg 		if (bar != sc->sc_range[i].child_hi)
    404   1.8       mrg 			continue;
    405  1.31       mrg 		if (offset < sc->sc_range[i].child_lo ||
    406  1.31       mrg 		    (offset + size) >
    407  1.21       mrg 		      (sc->sc_range[i].child_lo + sc->sc_range[i].size))
    408   1.8       mrg 			continue;
    409   1.8       mrg 
    410  1.23       eeh 		/* Isolate address space and find the right tag */
    411  1.23       eeh 		ss = (sc->sc_range[i].phys_hi>>24)&3;
    412  1.23       eeh 		switch (ss) {
    413  1.23       eeh 		case 1:	/* I/O space */
    414  1.23       eeh 			t = sc->sc_iotag;
    415  1.23       eeh 			break;
    416  1.23       eeh 		case 2:	/* Memory space */
    417  1.23       eeh 			t = sc->sc_memtag;
    418  1.23       eeh 			break;
    419  1.23       eeh 		case 0:	/* Config space */
    420  1.23       eeh 		case 3:	/* 64-bit Memory space */
    421  1.23       eeh 		default: /* WTF? */
    422  1.23       eeh 			/* We don't handle these */
    423  1.23       eeh 			panic("_ebus_bus_map: illegal space %x", ss);
    424  1.23       eeh 			break;
    425  1.23       eeh 		}
    426   1.8       mrg 		pciaddr = ((bus_addr_t)sc->sc_range[i].phys_mid << 32UL) |
    427   1.8       mrg 				       sc->sc_range[i].phys_lo;
    428  1.31       mrg 		pciaddr += offset;
    429  1.31       mrg 
    430  1.21       mrg 		DPRINTF(EDB_BUSMAP,
    431  1.31       mrg 			("_ebus_bus_map: mapping to PCI addr %x\n",
    432  1.50       cdi 			 (uint32_t)pciaddr));
    433  1.31       mrg 
    434   1.8       mrg 		/* pass it onto the psycho */
    435  1.30       eeh 		return (bus_space_map(t, pciaddr, size, flags, hp));
    436   1.8       mrg 	}
    437   1.8       mrg 	DPRINTF(EDB_BUSMAP, (": FAILED\n"));
    438   1.8       mrg 	return (EINVAL);
    439   1.8       mrg }
    440   1.8       mrg 
    441  1.56       mrg paddr_t
    442  1.50       cdi ebus_bus_mmap(bus_space_tag_t t, bus_addr_t paddr, off_t off, int prot,
    443  1.50       cdi 	int flags)
    444   1.8       mrg {
    445   1.8       mrg 	bus_addr_t offset = paddr;
    446   1.8       mrg 	struct ebus_softc *sc = t->cookie;
    447   1.8       mrg 	int i;
    448   1.8       mrg 
    449   1.8       mrg 	for (i = 0; i < sc->sc_nrange; i++) {
    450  1.47  christos 		bus_addr_t paddr1 =
    451  1.47  christos 		    ((bus_addr_t)sc->sc_range[i].child_hi << 32) |
    452   1.8       mrg 		    sc->sc_range[i].child_lo;
    453   1.8       mrg 
    454  1.47  christos 		if (offset != paddr1)
    455   1.8       mrg 			continue;
    456   1.8       mrg 
    457  1.21       mrg 		DPRINTF(EDB_BUSMAP, ("\n_ebus_bus_mmap: mapping paddr %qx\n",
    458  1.47  christos 		    (unsigned long long)paddr1));
    459  1.47  christos 		return (bus_space_mmap(sc->sc_memtag, paddr1, off,
    460  1.27       eeh 				       prot, flags));
    461   1.8       mrg 	}
    462   1.8       mrg 
    463   1.8       mrg 	return (-1);
    464   1.8       mrg }
    465   1.8       mrg 
    466   1.8       mrg /*
    467  1.29       mrg  * install an interrupt handler for a ebus device
    468   1.8       mrg  */
    469   1.8       mrg void *
    470  1.50       cdi ebus_intr_establish(bus_space_tag_t t, int pri, int level,
    471  1.50       cdi 	int (*handler)(void *), void *arg, void (*fastvec)(void) /* ignored */)
    472   1.8       mrg {
    473  1.29       mrg 
    474  1.36        pk 	return (bus_intr_establish(t->parent, pri, level, handler, arg));
    475   1.1       mrg }
    476