Home | History | Annotate | Line # | Download | only in dev
ebus.c revision 1.3
      1  1.3  uwe /*	$NetBSD: ebus.c,v 1.3 2002/02/08 13:10:42 uwe Exp $ */
      2  1.1  uwe 
      3  1.1  uwe /*
      4  1.1  uwe  * Copyright (c) 1999, 2000 Matthew R. Green
      5  1.1  uwe  * All rights reserved.
      6  1.1  uwe  *
      7  1.1  uwe  * Redistribution and use in source and binary forms, with or without
      8  1.1  uwe  * modification, are permitted provided that the following conditions
      9  1.1  uwe  * are met:
     10  1.1  uwe  * 1. Redistributions of source code must retain the above copyright
     11  1.1  uwe  *    notice, this list of conditions and the following disclaimer.
     12  1.1  uwe  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  uwe  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  uwe  *    documentation and/or other materials provided with the distribution.
     15  1.1  uwe  * 3. The name of the author may not be used to endorse or promote products
     16  1.1  uwe  *    derived from this software without specific prior written permission.
     17  1.1  uwe  *
     18  1.1  uwe  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  1.1  uwe  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  1.1  uwe  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  1.1  uwe  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.1  uwe  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23  1.1  uwe  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24  1.1  uwe  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25  1.1  uwe  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26  1.1  uwe  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27  1.1  uwe  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  1.1  uwe  * SUCH DAMAGE.
     29  1.1  uwe  */
     30  1.1  uwe 
     31  1.1  uwe /*
     32  1.1  uwe  * EBus support for PCI based SPARC systems (ms-IIep, Ultra).
     33  1.1  uwe  * EBus is documented in PCIO manual (Sun Part#: 802-7837-01).
     34  1.1  uwe  */
     35  1.1  uwe 
     36  1.3  uwe #if defined(DEBUG) && !defined(EBUS_DEBUG)
     37  1.3  uwe #define EBUS_DEBUG
     38  1.3  uwe #endif
     39  1.1  uwe 
     40  1.3  uwe #ifdef EBUS_DEBUG
     41  1.1  uwe #define	EDB_PROM	0x01
     42  1.1  uwe #define EDB_CHILD	0x02
     43  1.1  uwe #define	EDB_INTRMAP	0x04
     44  1.1  uwe #define EDB_BUSMAP	0x08
     45  1.1  uwe #define EDB_BUSDMA	0x10
     46  1.1  uwe #define EDB_INTR	0x20
     47  1.1  uwe int ebus_debug = 0;
     48  1.1  uwe #define DPRINTF(l, s)   do { if (ebus_debug & l) printf s; } while (0)
     49  1.1  uwe #else
     50  1.1  uwe #define DPRINTF(l, s)
     51  1.1  uwe #endif
     52  1.1  uwe 
     53  1.1  uwe #include <sys/param.h>
     54  1.1  uwe #include <sys/conf.h>
     55  1.1  uwe #include <sys/device.h>
     56  1.1  uwe #include <sys/errno.h>
     57  1.1  uwe #include <sys/extent.h>
     58  1.1  uwe #include <sys/malloc.h>
     59  1.1  uwe #include <sys/systm.h>
     60  1.1  uwe #include <sys/time.h>
     61  1.1  uwe 
     62  1.1  uwe #define _SPARC_BUS_DMA_PRIVATE
     63  1.1  uwe #include <machine/bus.h>
     64  1.1  uwe #include <machine/autoconf.h>
     65  1.1  uwe #include <machine/openfirm.h>
     66  1.1  uwe 
     67  1.1  uwe #include <dev/pci/pcivar.h>
     68  1.1  uwe #include <dev/pci/pcireg.h>
     69  1.1  uwe #include <dev/pci/pcidevs.h>
     70  1.1  uwe 
     71  1.1  uwe #include <dev/ofw/ofw_pci.h>
     72  1.1  uwe 
     73  1.1  uwe /* XXX: convert to use shared <dev/ebus/ebusreg.h> */
     74  1.1  uwe #include <sparc/dev/ebusreg.h>
     75  1.1  uwe #include <sparc/dev/ebusvar.h>
     76  1.1  uwe 
     77  1.1  uwe 
     78  1.1  uwe int	ebus_match(struct device *, struct cfdata *, void *);
     79  1.1  uwe void	ebus_attach(struct device *, struct device *, void *);
     80  1.1  uwe 
     81  1.1  uwe struct cfattach ebus_ca = {
     82  1.1  uwe 	sizeof(struct ebus_softc), ebus_match, ebus_attach
     83  1.1  uwe };
     84  1.1  uwe 
     85  1.1  uwe 
     86  1.1  uwe int	ebus_setup_attach_args(struct ebus_softc *, int,
     87  1.1  uwe 			       struct ebus_attach_args *);
     88  1.1  uwe void	ebus_destroy_attach_args(struct ebus_attach_args *);
     89  1.1  uwe int	ebus_print(void *, const char *);
     90  1.1  uwe 
     91  1.1  uwe /*
     92  1.1  uwe  * here are our bus space and bus dma routines.
     93  1.1  uwe  */
     94  1.1  uwe static paddr_t	ebus_bus_mmap(bus_space_tag_t, bus_addr_t, off_t, int, int);
     95  1.1  uwe static int	_ebus_bus_map(bus_space_tag_t, bus_type_t, bus_addr_t,
     96  1.1  uwe 			      bus_size_t, int, vaddr_t, bus_space_handle_t *);
     97  1.1  uwe static void	*ebus_intr_establish(bus_space_tag_t, int, int, int,
     98  1.1  uwe 				     int (*)(void *), void *);
     99  1.1  uwe 
    100  1.1  uwe /*
    101  1.1  uwe  * Working around PROM bogosity.
    102  1.1  uwe  *
    103  1.1  uwe  * EBus doesn't have official OFW binding.  sparc64 has a de-facto
    104  1.1  uwe  * standard but patching it in in prompatch.c and then decoding it
    105  1.1  uwe  * here would be an overkill for ms-IIep.
    106  1.1  uwe  *
    107  1.1  uwe  * So we assume that all ms-IIep based systems use PCIO chip only in
    108  1.1  uwe  * "motherboard mode" with interrupt lines wired directly to ms-IIep
    109  1.1  uwe  * interrupt inputs.
    110  1.1  uwe  *
    111  1.1  uwe  * Note that this is ineligible for prompatch.c, as we are not
    112  1.1  uwe  * correcting PROM to conform to some established standard, this hack
    113  1.1  uwe  * is tied to this version of ebus driver and as such it's better stay
    114  1.1  uwe  * private to the driver.
    115  1.1  uwe  */
    116  1.1  uwe 
    117  1.1  uwe struct msiiep_ebus_intr_wiring {
    118  1.1  uwe 	const char *name;	/* PROM node */
    119  1.1  uwe 	int line;		/* ms-IIep interrupt input */
    120  1.1  uwe };
    121  1.1  uwe 
    122  1.1  uwe static struct msiiep_ebus_intr_wiring krups_ebus_intr_wiring[] = {
    123  1.1  uwe 	{ "su", 0 }, { "8042", 0 }, { "sound", 3 }
    124  1.1  uwe };
    125  1.1  uwe 
    126  1.1  uwe 
    127  1.1  uwe struct msiiep_known_ebus_wiring {
    128  1.1  uwe 	const char *model;
    129  1.1  uwe 	struct msiiep_ebus_intr_wiring *map;
    130  1.1  uwe 	int mapsize;
    131  1.1  uwe };
    132  1.1  uwe 
    133  1.1  uwe #define MSIIEP_MODEL_WIRING(name, map) \
    134  1.1  uwe 	{ name, map, sizeof(map)/sizeof(map[0]) }
    135  1.1  uwe 
    136  1.1  uwe static struct msiiep_known_ebus_wiring known_models[] = {
    137  1.1  uwe 	MSIIEP_MODEL_WIRING("SUNW,501-4267", krups_ebus_intr_wiring),
    138  1.1  uwe 	{ NULL, NULL, 0}
    139  1.1  uwe };
    140  1.1  uwe 
    141  1.1  uwe 
    142  1.1  uwe /*
    143  1.1  uwe  * XXX: This assumes single EBus.  However I don't think any ms-IIep
    144  1.1  uwe  * system ever used more than one.  In any case, without looking at a
    145  1.1  uwe  * system with multiple PCIO chips I don't know how to correctly
    146  1.1  uwe  * program the driver to handle PROM glitches in them, so for the time
    147  1.1  uwe  * being just use globals.
    148  1.1  uwe  */
    149  1.1  uwe static struct msiiep_ebus_intr_wiring *wiring_map;
    150  1.1  uwe static int wiring_map_size;
    151  1.1  uwe 
    152  1.1  uwe static int ebus_init_wiring_table(struct ebus_softc *);
    153  1.1  uwe 
    154  1.1  uwe 
    155  1.1  uwe int
    156  1.1  uwe ebus_match(parent, match, aux)
    157  1.1  uwe 	struct device *parent;
    158  1.1  uwe 	struct cfdata *match;
    159  1.1  uwe 	void *aux;
    160  1.1  uwe {
    161  1.1  uwe 	struct pci_attach_args *pa = aux;
    162  1.1  uwe 	char name[10];
    163  1.1  uwe 	int node;
    164  1.1  uwe 
    165  1.1  uwe 	/* Only attach if there's a PROM node. */
    166  1.1  uwe 	node = PCITAG_NODE(pa->pa_tag);
    167  1.1  uwe 	if (node == -1)
    168  1.1  uwe 		return (0);
    169  1.1  uwe 
    170  1.1  uwe 	PROM_getpropstringA(node, "name", name, sizeof name);
    171  1.1  uwe 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE
    172  1.1  uwe 	    && PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SUN
    173  1.1  uwe 	    && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SUN_EBUS
    174  1.1  uwe 	    && strcmp(name, "ebus") == 0)
    175  1.1  uwe 		return (1);
    176  1.1  uwe 
    177  1.1  uwe 	return (0);
    178  1.1  uwe }
    179  1.1  uwe 
    180  1.1  uwe 
    181  1.1  uwe static int
    182  1.1  uwe ebus_init_wiring_table(sc)
    183  1.1  uwe 	struct ebus_softc *sc;
    184  1.1  uwe {
    185  1.1  uwe 	struct msiiep_known_ebus_wiring *p;
    186  1.1  uwe 	char buf[32];
    187  1.1  uwe 	char *model;
    188  1.1  uwe 
    189  1.1  uwe 	if (wiring_map != NULL) {
    190  1.1  uwe 		printf("%s: global ebus wiring map already initalized\n",
    191  1.1  uwe 		       sc->sc_dev.dv_xname);
    192  1.1  uwe 		return (0);
    193  1.1  uwe 	}
    194  1.1  uwe 
    195  1.1  uwe 	model = PROM_getpropstringA(prom_findroot(), "model",
    196  1.1  uwe 				    buf, sizeof(buf));
    197  1.1  uwe 	if (model == NULL)
    198  1.1  uwe 		panic("ebus_init_wiring_table: no \"model\" property");
    199  1.1  uwe 
    200  1.1  uwe 	for (p = known_models; p->model != NULL; ++p)
    201  1.1  uwe 		if (strcmp(model, p->model) == 0) {
    202  1.1  uwe 			wiring_map = p->map;
    203  1.1  uwe 			wiring_map_size = p->mapsize;
    204  1.1  uwe 			return (1);
    205  1.1  uwe 		}
    206  1.1  uwe 
    207  1.1  uwe 	/* not found?  we should have failed in pci_attach_hook then. */
    208  1.1  uwe 	panic("ebus_init_wiring_table: unknown model %s", model);
    209  1.1  uwe }
    210  1.1  uwe 
    211  1.1  uwe 
    212  1.1  uwe /*
    213  1.1  uwe  * attach an ebus and all it's children.  this code is modeled
    214  1.1  uwe  * after the sbus code which does similar things.
    215  1.1  uwe  */
    216  1.1  uwe void
    217  1.1  uwe ebus_attach(parent, self, aux)
    218  1.1  uwe 	struct device *parent, *self;
    219  1.1  uwe 	void *aux;
    220  1.1  uwe {
    221  1.1  uwe 	struct ebus_softc *sc = (struct ebus_softc *)self;
    222  1.1  uwe 	struct pci_attach_args *pa = aux;
    223  1.1  uwe 	struct ebus_attach_args ea;
    224  1.1  uwe 	int node, error;
    225  1.1  uwe 	char devinfo[256];
    226  1.1  uwe 
    227  1.1  uwe 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo);
    228  1.2  uwe 	printf(": %s, revision 0x%02x\n",
    229  1.2  uwe 	       devinfo, PCI_REVISION(pa->pa_class));
    230  1.1  uwe 
    231  1.1  uwe 	node = PCITAG_NODE(pa->pa_tag);
    232  1.1  uwe 	if (node == -1)
    233  1.1  uwe 		panic("%s: unable to find ebus node", self->dv_xname);
    234  1.1  uwe 
    235  1.1  uwe 	if (ebus_init_wiring_table(sc) == 0)
    236  1.1  uwe 		return;
    237  1.1  uwe 
    238  1.1  uwe 	sc->sc_node = node;
    239  1.1  uwe 	sc->sc_parent = parent;	/* XXX: unused so far */
    240  1.1  uwe 	sc->sc_bustag = pa->pa_memt; /* EBus only does PCI MEM32 space */
    241  1.1  uwe 	sc->sc_childbustag = ebus_alloc_bus_tag(sc);
    242  1.1  uwe 	sc->sc_dmatag = ebus_alloc_dma_tag(sc, pa->pa_dmat);
    243  1.1  uwe 
    244  1.1  uwe 	/*
    245  1.1  uwe 	 * Setup ranges.  The interesting thing is that we use "reg"
    246  1.1  uwe 	 * not "ranges", since "reg" on ebus has exactly the data we'd
    247  1.1  uwe 	 * get by processing "ranges".
    248  1.1  uwe 	 *
    249  1.1  uwe 	 */
    250  1.1  uwe 	error = PROM_getprop(node, "reg", sizeof(struct ofw_pci_register),
    251  1.1  uwe 			     &sc->sc_nreg, (void **)&sc->sc_reg);
    252  1.1  uwe 	if (error)
    253  1.1  uwe 		panic("%s: unable to read ebus registers (error %d)",
    254  1.1  uwe 		      self->dv_xname, error);
    255  1.1  uwe 
    256  1.1  uwe 	/*
    257  1.1  uwe 	 * now attach all our children
    258  1.1  uwe 	 */
    259  1.1  uwe 	DPRINTF(EDB_CHILD, ("ebus node %08x, searching children...\n", node));
    260  1.1  uwe 	for (node = firstchild(node); node; node = nextsibling(node)) {
    261  1.1  uwe 		char *name = PROM_getpropstring(node, "name");
    262  1.1  uwe 
    263  1.1  uwe 		if (ebus_setup_attach_args(sc, node, &ea) != 0) {
    264  1.1  uwe 			printf("ebus_attach: %s: incomplete\n", name);
    265  1.1  uwe 			continue;
    266  1.1  uwe 		}
    267  1.1  uwe 		DPRINTF(EDB_CHILD,
    268  1.1  uwe 			("- found child `%s', attaching\n", ea.ea_name));
    269  1.1  uwe 		(void)config_found(self, &ea, ebus_print);
    270  1.1  uwe 		ebus_destroy_attach_args(&ea);
    271  1.1  uwe 	}
    272  1.1  uwe }
    273  1.1  uwe 
    274  1.1  uwe int
    275  1.1  uwe ebus_setup_attach_args(sc, node, ea)
    276  1.1  uwe 	struct ebus_softc *sc;
    277  1.1  uwe 	int node;
    278  1.1  uwe 	struct ebus_attach_args	*ea;
    279  1.1  uwe {
    280  1.1  uwe 	int n, err;
    281  1.1  uwe 
    282  1.1  uwe 	memset(ea, 0, sizeof(struct ebus_attach_args));
    283  1.1  uwe 
    284  1.1  uwe 	err = PROM_getprop(node, "name", 1, &n, (void **)&ea->ea_name);
    285  1.1  uwe 	if (err != 0)
    286  1.1  uwe 		return (err);
    287  1.1  uwe 	ea->ea_name[n] = '\0';
    288  1.1  uwe 
    289  1.1  uwe 	ea->ea_node = node;
    290  1.1  uwe 	ea->ea_bustag = sc->sc_childbustag;
    291  1.1  uwe 	ea->ea_dmatag = sc->sc_dmatag;
    292  1.1  uwe 
    293  1.1  uwe 	err = PROM_getprop(node, "reg", sizeof(struct ebus_reg),
    294  1.1  uwe 			   &ea->ea_nreg, (void **)&ea->ea_reg);
    295  1.1  uwe 	if (err != 0)
    296  1.1  uwe 		return (err);
    297  1.1  uwe 
    298  1.1  uwe 	err = PROM_getprop(node, "address", sizeof(u_int32_t),
    299  1.1  uwe 			   &ea->ea_nvaddr, (void **)&ea->ea_vaddr);
    300  1.1  uwe 	if (err != ENOENT) {
    301  1.1  uwe 		if (err != 0)
    302  1.1  uwe 			return (err);
    303  1.1  uwe 
    304  1.1  uwe 		if (ea->ea_nreg != ea->ea_nvaddr)
    305  1.1  uwe 			printf("ebus loses: device %s: %d regs and %d addrs\n",
    306  1.1  uwe 			       ea->ea_name, ea->ea_nreg, ea->ea_nvaddr);
    307  1.1  uwe 	} else
    308  1.1  uwe 		ea->ea_nvaddr = 0;
    309  1.1  uwe 
    310  1.1  uwe 	/* XXX: "interrupts" hack */
    311  1.1  uwe 	for (n = 0; n < wiring_map_size; ++n) {
    312  1.1  uwe 		struct msiiep_ebus_intr_wiring *w = &wiring_map[n];
    313  1.1  uwe 		if (strcmp(w->name, ea->ea_name) == 0) {
    314  1.1  uwe 			ea->ea_intr = malloc(sizeof(u_int32_t),
    315  1.1  uwe 					     M_DEVBUF, M_NOWAIT);
    316  1.1  uwe 			ea->ea_intr[0] = w->line;
    317  1.1  uwe 			ea->ea_nintr = 1;
    318  1.1  uwe 			break;
    319  1.1  uwe 		}
    320  1.1  uwe 	}
    321  1.1  uwe 
    322  1.1  uwe 	return (0);
    323  1.1  uwe }
    324  1.1  uwe 
    325  1.1  uwe void
    326  1.1  uwe ebus_destroy_attach_args(ea)
    327  1.1  uwe 	struct ebus_attach_args	*ea;
    328  1.1  uwe {
    329  1.1  uwe 
    330  1.1  uwe 	if (ea->ea_name)
    331  1.1  uwe 		free((void *)ea->ea_name, M_DEVBUF);
    332  1.1  uwe 	if (ea->ea_reg)
    333  1.1  uwe 		free((void *)ea->ea_reg, M_DEVBUF);
    334  1.1  uwe 	if (ea->ea_intr)
    335  1.1  uwe 		free((void *)ea->ea_intr, M_DEVBUF);
    336  1.1  uwe 	if (ea->ea_vaddr)
    337  1.1  uwe 		free((void *)ea->ea_vaddr, M_DEVBUF);
    338  1.1  uwe }
    339  1.1  uwe 
    340  1.1  uwe int
    341  1.1  uwe ebus_print(aux, p)
    342  1.1  uwe 	void *aux;
    343  1.1  uwe 	const char *p;
    344  1.1  uwe {
    345  1.1  uwe 	struct ebus_attach_args *ea = aux;
    346  1.1  uwe 	int i;
    347  1.1  uwe 
    348  1.1  uwe 	if (p)
    349  1.1  uwe 		printf("%s at %s", ea->ea_name, p);
    350  1.1  uwe 	for (i = 0; i < ea->ea_nreg; ++i)
    351  1.1  uwe 		printf("%s bar %d offset 0x%x", i == 0 ? "" : ",",
    352  1.1  uwe 		       ea->ea_reg[i].bar, ea->ea_reg[i].offset);
    353  1.1  uwe 	for (i = 0; i < ea->ea_nintr; ++i)
    354  1.1  uwe 		printf(" line %d", ea->ea_intr[i]);
    355  1.1  uwe 	return (UNCONF);
    356  1.1  uwe }
    357  1.1  uwe 
    358  1.1  uwe 
    359  1.1  uwe /*
    360  1.1  uwe  * bus space and bus dma methods below here
    361  1.1  uwe  */
    362  1.1  uwe 
    363  1.1  uwe bus_space_tag_t
    364  1.1  uwe ebus_alloc_bus_tag(sc)
    365  1.1  uwe 	struct ebus_softc *sc;
    366  1.1  uwe {
    367  1.1  uwe 	bus_space_tag_t bt;
    368  1.1  uwe 
    369  1.1  uwe 	bt = (bus_space_tag_t)
    370  1.1  uwe 		malloc(sizeof(struct sparc_bus_space_tag), M_DEVBUF, M_NOWAIT);
    371  1.1  uwe 	if (bt == NULL)
    372  1.3  uwe 		panic("unable to allocate ebus bus tag");
    373  1.1  uwe 
    374  1.1  uwe 	memset(bt, 0, sizeof *bt);
    375  1.1  uwe 	bt->cookie = sc;
    376  1.1  uwe 	bt->parent = sc->sc_bustag;
    377  1.1  uwe 	bt->sparc_bus_map = _ebus_bus_map;
    378  1.1  uwe 	bt->sparc_bus_mmap = ebus_bus_mmap;
    379  1.1  uwe 	bt->sparc_intr_establish = ebus_intr_establish;
    380  1.1  uwe 	return (bt);
    381  1.1  uwe }
    382  1.1  uwe 
    383  1.1  uwe 
    384  1.1  uwe bus_dma_tag_t
    385  1.1  uwe ebus_alloc_dma_tag(sc, pdt)
    386  1.1  uwe 	struct ebus_softc *sc;
    387  1.1  uwe 	bus_dma_tag_t pdt;
    388  1.1  uwe {
    389  1.1  uwe 	bus_dma_tag_t dt;
    390  1.1  uwe 
    391  1.1  uwe 	dt = (bus_dma_tag_t)
    392  1.1  uwe 		malloc(sizeof(struct sparc_bus_dma_tag), M_DEVBUF, M_NOWAIT);
    393  1.1  uwe 	if (dt == NULL)
    394  1.3  uwe 		panic("unable to allocate ebus dma tag");
    395  1.1  uwe 
    396  1.1  uwe 	memset(dt, 0, sizeof *dt);
    397  1.1  uwe 	dt->_cookie = sc;
    398  1.1  uwe #define PCOPY(x)	dt->x = pdt->x
    399  1.1  uwe 	PCOPY(_dmamap_create);
    400  1.1  uwe 	PCOPY(_dmamap_destroy);
    401  1.1  uwe 	PCOPY(_dmamap_load);
    402  1.1  uwe 	PCOPY(_dmamap_load_mbuf);
    403  1.1  uwe 	PCOPY(_dmamap_load_uio);
    404  1.1  uwe 	PCOPY(_dmamap_load_raw);
    405  1.1  uwe 	PCOPY(_dmamap_unload);
    406  1.1  uwe 	PCOPY(_dmamap_sync);
    407  1.1  uwe 	PCOPY(_dmamem_alloc);
    408  1.1  uwe 	PCOPY(_dmamem_free);
    409  1.1  uwe 	PCOPY(_dmamem_map);
    410  1.1  uwe 	PCOPY(_dmamem_unmap);
    411  1.1  uwe 	PCOPY(_dmamem_mmap);
    412  1.1  uwe #undef	PCOPY
    413  1.1  uwe 	return (dt);
    414  1.1  uwe }
    415  1.1  uwe 
    416  1.1  uwe /*
    417  1.1  uwe  * bus space support.  <sparc64/dev/psychoreg.h> has a discussion
    418  1.1  uwe  * about PCI physical addresses, which also applies to ebus.
    419  1.1  uwe  */
    420  1.1  uwe static int
    421  1.1  uwe _ebus_bus_map(t, btype, addr, size, flags, vaddr, hp)
    422  1.1  uwe 	bus_space_tag_t t;
    423  1.1  uwe 	bus_type_t btype;	/* unused now that bus_addr_t is 64 bit */
    424  1.1  uwe 	bus_addr_t addr;	/* encodes bar/offset */
    425  1.1  uwe 	bus_size_t size;
    426  1.1  uwe 	int	flags;
    427  1.1  uwe 	vaddr_t vaddr;
    428  1.1  uwe 	bus_space_handle_t *hp;
    429  1.1  uwe {
    430  1.1  uwe 	struct ebus_softc *sc = t->cookie;
    431  1.1  uwe 	u_int bar;
    432  1.1  uwe 	paddr_t offset;
    433  1.1  uwe 	int i;
    434  1.1  uwe 
    435  1.1  uwe 	bar = BUS_ADDR_IOSPACE(addr);
    436  1.1  uwe 	offset = BUS_ADDR_PADDR(addr);
    437  1.1  uwe 
    438  1.1  uwe 	DPRINTF(EDB_BUSMAP,
    439  1.1  uwe 		("\n_ebus_bus_map: bar %d offset %08x sz %x flags %x va %p\n",
    440  1.1  uwe 		 (int)bar, (u_int32_t)offset, (u_int32_t)size,
    441  1.1  uwe 		 flags, (void *)vaddr));
    442  1.1  uwe 
    443  1.1  uwe 	/* EBus only has two BARs */
    444  1.1  uwe 	if (bar != 0 && bar != 1) {
    445  1.1  uwe 		DPRINTF(EDB_BUSMAP,
    446  1.1  uwe 			("\n_ebus_bus_map: impossible bar\n"));
    447  1.1  uwe 		return (EINVAL);
    448  1.1  uwe 	}
    449  1.1  uwe 
    450  1.1  uwe 	/* XXX: krups: change bar number to the offset in config space */
    451  1.1  uwe 	bar = PCI_MAPREG_START + bar * sizeof(pcireg_t);
    452  1.1  uwe 
    453  1.1  uwe 	/*
    454  1.1  uwe 	 * Almost all of the interesting ebus children are mapped by
    455  1.1  uwe 	 * BAR1, the last entry in sc_reg[], so work our way backwards.
    456  1.1  uwe 	 */
    457  1.1  uwe 	for (i = sc->sc_nreg - 1; i >= 0; --i) {
    458  1.1  uwe 		bus_addr_t pciaddr;
    459  1.1  uwe 		u_int32_t ss;
    460  1.1  uwe 
    461  1.1  uwe 		/* EBus only does MEM32 */
    462  1.1  uwe 		ss  = sc->sc_reg[i].phys_hi & OFW_PCI_PHYS_HI_SPACEMASK;
    463  1.1  uwe 		if (ss != OFW_PCI_PHYS_HI_SPACE_MEM32)
    464  1.1  uwe 			continue;
    465  1.1  uwe 
    466  1.1  uwe 		if (bar != (sc->sc_reg[i].phys_hi
    467  1.1  uwe 			    & OFW_PCI_PHYS_HI_REGISTERMASK))
    468  1.1  uwe 			continue;
    469  1.1  uwe 
    470  1.1  uwe 		pciaddr = (bus_addr_t)sc->sc_reg[i].phys_lo + offset;
    471  1.1  uwe 
    472  1.1  uwe 		if (pciaddr + size > sc->sc_reg[i].phys_lo
    473  1.1  uwe 					+ sc->sc_reg[i].size_lo)
    474  1.1  uwe 			continue;
    475  1.1  uwe 
    476  1.1  uwe 		DPRINTF(EDB_BUSMAP,
    477  1.1  uwe 			("_ebus_bus_map: mapping to PCI addr %x\n",
    478  1.1  uwe 			 (u_int32_t)pciaddr));
    479  1.1  uwe 
    480  1.1  uwe 		/* pass it onto the pci controller */
    481  1.1  uwe 		return (bus_space_map2(sc->sc_bustag, 0, pciaddr, size,
    482  1.1  uwe 				       flags, vaddr, hp));
    483  1.1  uwe 	}
    484  1.1  uwe 
    485  1.1  uwe 	DPRINTF(EDB_BUSMAP, (": FAILED\n"));
    486  1.1  uwe 	return (EINVAL);
    487  1.1  uwe }
    488  1.1  uwe 
    489  1.1  uwe static paddr_t
    490  1.1  uwe ebus_bus_mmap(t, paddr, off, prot, flags)
    491  1.1  uwe 	bus_space_tag_t t;
    492  1.1  uwe 	bus_addr_t paddr;
    493  1.1  uwe 	off_t off;
    494  1.1  uwe 	int prot;
    495  1.1  uwe 	int flags;
    496  1.1  uwe {
    497  1.1  uwe 
    498  1.1  uwe 	/* XXX: not implemetned yet */
    499  1.1  uwe 	return (-1);
    500  1.1  uwe }
    501  1.1  uwe 
    502  1.1  uwe /*
    503  1.1  uwe  * Install an interrupt handler for a EBus device.
    504  1.1  uwe  */
    505  1.1  uwe void *
    506  1.1  uwe ebus_intr_establish(t, pri, level, flags, handler, arg)
    507  1.1  uwe 	bus_space_tag_t t;
    508  1.1  uwe 	int pri;
    509  1.1  uwe 	int level;
    510  1.1  uwe 	int flags;
    511  1.1  uwe 	int (*handler)(void *);
    512  1.1  uwe 	void *arg;
    513  1.1  uwe {
    514  1.1  uwe 	return (bus_intr_establish(t->parent, pri, level, flags, handler, arg));
    515  1.1  uwe }
    516