Home | History | Annotate | Line # | Download | only in dev
sbus.c revision 1.12
      1  1.12      eeh /*	$NetBSD: sbus.c,v 1.12 1999/05/22 20:33:56 eeh Exp $ */
      2   1.1      eeh 
      3   1.1      eeh /*-
      4   1.1      eeh  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1      eeh  * All rights reserved.
      6   1.1      eeh  *
      7   1.1      eeh  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1      eeh  * by Paul Kranenburg.
      9   1.1      eeh  *
     10   1.1      eeh  * Redistribution and use in source and binary forms, with or without
     11   1.1      eeh  * modification, are permitted provided that the following conditions
     12   1.1      eeh  * are met:
     13   1.1      eeh  * 1. Redistributions of source code must retain the above copyright
     14   1.1      eeh  *    notice, this list of conditions and the following disclaimer.
     15   1.1      eeh  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1      eeh  *    notice, this list of conditions and the following disclaimer in the
     17   1.1      eeh  *    documentation and/or other materials provided with the distribution.
     18   1.1      eeh  * 3. All advertising materials mentioning features or use of this software
     19   1.1      eeh  *    must display the following acknowledgement:
     20   1.1      eeh  *        This product includes software developed by the NetBSD
     21   1.1      eeh  *        Foundation, Inc. and its contributors.
     22   1.1      eeh  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1      eeh  *    contributors may be used to endorse or promote products derived
     24   1.1      eeh  *    from this software without specific prior written permission.
     25   1.1      eeh  *
     26   1.1      eeh  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1      eeh  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1      eeh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1      eeh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1      eeh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1      eeh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1      eeh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1      eeh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1      eeh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1      eeh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1      eeh  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1      eeh  */
     38   1.1      eeh 
     39   1.1      eeh /*
     40   1.1      eeh  * Copyright (c) 1992, 1993
     41   1.1      eeh  *	The Regents of the University of California.  All rights reserved.
     42   1.1      eeh  *
     43   1.1      eeh  * This software was developed by the Computer Systems Engineering group
     44   1.1      eeh  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     45   1.1      eeh  * contributed to Berkeley.
     46   1.1      eeh  *
     47   1.1      eeh  * All advertising materials mentioning features or use of this software
     48   1.1      eeh  * must display the following acknowledgement:
     49   1.1      eeh  *	This product includes software developed by the University of
     50   1.1      eeh  *	California, Lawrence Berkeley Laboratory.
     51   1.1      eeh  *
     52   1.1      eeh  * Redistribution and use in source and binary forms, with or without
     53   1.1      eeh  * modification, are permitted provided that the following conditions
     54   1.1      eeh  * are met:
     55   1.1      eeh  * 1. Redistributions of source code must retain the above copyright
     56   1.1      eeh  *    notice, this list of conditions and the following disclaimer.
     57   1.1      eeh  * 2. Redistributions in binary form must reproduce the above copyright
     58   1.1      eeh  *    notice, this list of conditions and the following disclaimer in the
     59   1.1      eeh  *    documentation and/or other materials provided with the distribution.
     60   1.1      eeh  * 3. All advertising materials mentioning features or use of this software
     61   1.1      eeh  *    must display the following acknowledgement:
     62   1.1      eeh  *	This product includes software developed by the University of
     63   1.1      eeh  *	California, Berkeley and its contributors.
     64   1.1      eeh  * 4. Neither the name of the University nor the names of its contributors
     65   1.1      eeh  *    may be used to endorse or promote products derived from this software
     66   1.1      eeh  *    without specific prior written permission.
     67   1.1      eeh  *
     68   1.1      eeh  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     69   1.1      eeh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     70   1.1      eeh  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     71   1.1      eeh  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     72   1.1      eeh  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     73   1.1      eeh  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     74   1.1      eeh  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     75   1.1      eeh  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     76   1.1      eeh  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     77   1.1      eeh  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     78   1.1      eeh  * SUCH DAMAGE.
     79   1.1      eeh  *
     80   1.1      eeh  *	@(#)sbus.c	8.1 (Berkeley) 6/11/93
     81   1.1      eeh  */
     82   1.1      eeh 
     83   1.1      eeh /*
     84   1.1      eeh  * Sbus stuff.
     85   1.1      eeh  */
     86   1.8      eeh #include "opt_ddb.h"
     87   1.1      eeh 
     88   1.1      eeh #include <sys/param.h>
     89  1.12      eeh #include <sys/extent.h>
     90   1.1      eeh #include <sys/malloc.h>
     91   1.1      eeh #include <sys/systm.h>
     92   1.1      eeh #include <sys/device.h>
     93   1.1      eeh #include <vm/vm.h>
     94   1.1      eeh 
     95   1.1      eeh #include <machine/bus.h>
     96   1.2      eeh #include <sparc64/sparc64/vaddrs.h>
     97   1.1      eeh #include <sparc64/dev/sbusreg.h>
     98   1.7       pk #include <dev/sbus/sbusvar.h>
     99   1.1      eeh 
    100   1.1      eeh #include <machine/autoconf.h>
    101   1.1      eeh #include <machine/ctlreg.h>
    102   1.1      eeh #include <machine/cpu.h>
    103   1.8      eeh #include <machine/sparc64.h>
    104   1.1      eeh 
    105   1.1      eeh #ifdef DEBUG
    106   1.1      eeh #define SDB_DVMA	0x1
    107   1.1      eeh #define SDB_INTR	0x2
    108   1.1      eeh int sbusdebug = 0;
    109   1.1      eeh #endif
    110   1.1      eeh 
    111   1.1      eeh void sbusreset __P((int));
    112   1.1      eeh int sbus_flush __P((struct sbus_softc *));
    113   1.1      eeh 
    114   1.1      eeh static bus_space_tag_t sbus_alloc_bustag __P((struct sbus_softc *));
    115   1.1      eeh static bus_dma_tag_t sbus_alloc_dmatag __P((struct sbus_softc *));
    116   1.3      eeh static int sbus_get_intr __P((struct sbus_softc *, int,
    117   1.3      eeh 			      struct sbus_intr **, int *));
    118   1.1      eeh static int sbus_bus_mmap __P((bus_space_tag_t, bus_type_t, bus_addr_t,
    119   1.1      eeh 			      int, bus_space_handle_t *));
    120   1.1      eeh static int _sbus_bus_map __P((
    121   1.1      eeh 		bus_space_tag_t,
    122   1.1      eeh 		bus_type_t,
    123   1.1      eeh 		bus_addr_t,		/*offset*/
    124   1.1      eeh 		bus_size_t,		/*size*/
    125   1.1      eeh 		int,			/*flags*/
    126   1.3      eeh 		vaddr_t,		/*preferred virtual address */
    127   1.1      eeh 		bus_space_handle_t *));
    128   1.1      eeh static void *sbus_intr_establish __P((
    129   1.1      eeh 		bus_space_tag_t,
    130   1.1      eeh 		int,			/*level*/
    131   1.1      eeh 		int,			/*flags*/
    132   1.1      eeh 		int (*) __P((void *)),	/*handler*/
    133   1.1      eeh 		void *));		/*handler arg*/
    134   1.1      eeh 
    135   1.1      eeh 
    136   1.1      eeh /* autoconfiguration driver */
    137   1.1      eeh int	sbus_match __P((struct device *, struct cfdata *, void *));
    138   1.1      eeh void	sbus_attach __P((struct device *, struct device *, void *));
    139   1.1      eeh 
    140   1.1      eeh 
    141   1.1      eeh struct cfattach sbus_ca = {
    142   1.1      eeh 	sizeof(struct sbus_softc), sbus_match, sbus_attach
    143   1.1      eeh };
    144   1.1      eeh 
    145   1.1      eeh extern struct cfdriver sbus_cd;
    146   1.1      eeh 
    147   1.1      eeh /*
    148   1.1      eeh  * DVMA routines
    149   1.1      eeh  */
    150   1.3      eeh void sbus_enter __P((struct sbus_softc *, vaddr_t, int64_t, int));
    151   1.8      eeh void sbus_remove __P((struct sbus_softc *, vaddr_t, size_t));
    152   1.1      eeh int sbus_dmamap_load __P((bus_dma_tag_t, bus_dmamap_t, void *,
    153   1.1      eeh 			  bus_size_t, struct proc *, int));
    154   1.1      eeh void sbus_dmamap_unload __P((bus_dma_tag_t, bus_dmamap_t));
    155   1.1      eeh void sbus_dmamap_sync __P((bus_dma_tag_t, bus_dmamap_t, bus_addr_t,
    156   1.1      eeh 			   bus_size_t, int));
    157   1.1      eeh int sbus_dmamem_alloc __P((bus_dma_tag_t tag, bus_size_t size,
    158   1.1      eeh 			   bus_size_t alignment, bus_size_t boundary,
    159   1.1      eeh 			   bus_dma_segment_t *segs, int nsegs, int *rsegs, int flags));
    160   1.1      eeh void sbus_dmamem_free __P((bus_dma_tag_t tag, bus_dma_segment_t *segs,
    161   1.1      eeh 			   int nsegs));
    162   1.2      eeh int sbus_dmamem_map __P((bus_dma_tag_t tag, bus_dma_segment_t *segs,
    163   1.2      eeh 			 int nsegs, size_t size, caddr_t *kvap, int flags));
    164   1.2      eeh void sbus_dmamem_unmap __P((bus_dma_tag_t tag, caddr_t kva,
    165   1.2      eeh 			    size_t size));
    166   1.1      eeh 
    167   1.1      eeh 
    168   1.1      eeh /*
    169   1.1      eeh  * Child devices receive the Sbus interrupt level in their attach
    170   1.1      eeh  * arguments. We translate these to CPU IPLs using the following
    171   1.1      eeh  * tables. Note: obio bus interrupt levels are identical to the
    172   1.1      eeh  * processor IPL.
    173   1.1      eeh  *
    174   1.1      eeh  * The second set of tables is used when the Sbus interrupt level
    175   1.1      eeh  * cannot be had from the PROM as an `interrupt' property. We then
    176   1.1      eeh  * fall back on the `intr' property which contains the CPU IPL.
    177   1.1      eeh  */
    178   1.1      eeh 
    179   1.1      eeh /* Translate Sbus interrupt level to processor IPL */
    180   1.1      eeh static int intr_sbus2ipl_4c[] = {
    181   1.1      eeh 	0, 1, 2, 3, 5, 7, 8, 9
    182   1.1      eeh };
    183   1.1      eeh static int intr_sbus2ipl_4m[] = {
    184   1.1      eeh 	0, 2, 3, 5, 7, 9, 11, 13
    185   1.1      eeh };
    186   1.1      eeh 
    187   1.1      eeh /*
    188   1.1      eeh  * This value is or'ed into the attach args' interrupt level cookie
    189   1.1      eeh  * if the interrupt level comes from an `intr' property, i.e. it is
    190   1.1      eeh  * not an Sbus interrupt level.
    191   1.1      eeh  */
    192   1.1      eeh #define SBUS_INTR_COMPAT	0x80000000
    193   1.1      eeh 
    194   1.1      eeh 
    195   1.1      eeh /*
    196   1.1      eeh  * Print the location of some sbus-attached device (called just
    197   1.1      eeh  * before attaching that device).  If `sbus' is not NULL, the
    198   1.1      eeh  * device was found but not configured; print the sbus as well.
    199   1.1      eeh  * Return UNCONF (config_find ignores this if the device was configured).
    200   1.1      eeh  */
    201   1.1      eeh int
    202   1.1      eeh sbus_print(args, busname)
    203   1.1      eeh 	void *args;
    204   1.1      eeh 	const char *busname;
    205   1.1      eeh {
    206   1.1      eeh 	struct sbus_attach_args *sa = args;
    207   1.3      eeh 	int i;
    208   1.1      eeh 
    209   1.1      eeh 	if (busname)
    210   1.1      eeh 		printf("%s at %s", sa->sa_name, busname);
    211   1.8      eeh 	printf(" slot %ld offset 0x%lx", (long)sa->sa_slot,
    212   1.8      eeh 	       (u_long)sa->sa_offset);
    213   1.3      eeh 	for (i=0; i<sa->sa_nintr; i++) {
    214   1.3      eeh 		struct sbus_intr *sbi = &sa->sa_intr[i];
    215   1.1      eeh 
    216   1.8      eeh 		printf(" vector %lx ipl %ld",
    217   1.8      eeh 		       (u_long)sbi->sbi_vec,
    218   1.8      eeh 		       (long)INTLEV(sbi->sbi_pri));
    219   1.1      eeh 	}
    220   1.1      eeh 	return (UNCONF);
    221   1.1      eeh }
    222   1.1      eeh 
    223   1.1      eeh int
    224   1.1      eeh sbus_match(parent, cf, aux)
    225   1.1      eeh 	struct device *parent;
    226   1.1      eeh 	struct cfdata *cf;
    227   1.1      eeh 	void *aux;
    228   1.1      eeh {
    229   1.1      eeh 	struct mainbus_attach_args *ma = aux;
    230   1.1      eeh 
    231   1.1      eeh 	return (strcmp(cf->cf_driver->cd_name, ma->ma_name) == 0);
    232   1.1      eeh }
    233   1.1      eeh 
    234   1.1      eeh /*
    235   1.1      eeh  * Attach an Sbus.
    236   1.1      eeh  */
    237   1.1      eeh void
    238   1.1      eeh sbus_attach(parent, self, aux)
    239   1.1      eeh 	struct device *parent;
    240   1.1      eeh 	struct device *self;
    241   1.1      eeh 	void *aux;
    242   1.1      eeh {
    243   1.9      eeh 	struct sbus_softc *sc = (struct sbus_softc *)self;
    244   1.1      eeh 	struct mainbus_attach_args *ma = aux;
    245   1.1      eeh 	int node = ma->ma_node;
    246   1.1      eeh 
    247   1.1      eeh 	int node0, error;
    248   1.1      eeh 	bus_space_tag_t sbt;
    249   1.1      eeh 	struct sbus_attach_args sa;
    250   1.1      eeh 	char *busname = "sbus";
    251   1.1      eeh 	struct bootpath *bp = ma->ma_bp;
    252   1.1      eeh 
    253   1.1      eeh 
    254   1.1      eeh 	sc->sc_bustag = ma->ma_bustag;
    255   1.1      eeh 	sc->sc_dmatag = ma->ma_dmatag;
    256   1.8      eeh 	sc->sc_sysio = (struct sysioreg*)(u_long)ma->ma_address[0];	/* Use prom mapping for sysio. */
    257   1.1      eeh 	sc->sc_ign = ma->ma_interrupts[0] & INTMAP_IGN;		/* Find interrupt group no */
    258   1.1      eeh 
    259   1.1      eeh 	/* Setup interrupt translation tables */
    260   1.1      eeh 	sc->sc_intr2ipl = CPU_ISSUN4C
    261   1.1      eeh 				? intr_sbus2ipl_4c
    262   1.1      eeh 				: intr_sbus2ipl_4m;
    263   1.1      eeh 
    264   1.1      eeh 	/*
    265   1.1      eeh 	 * Record clock frequency for synchronous SCSI.
    266   1.1      eeh 	 * IS THIS THE CORRECT DEFAULT??
    267   1.1      eeh 	 */
    268   1.1      eeh 	sc->sc_clockfreq = getpropint(node, "clock-frequency", 25*1000*1000);
    269   1.1      eeh 	printf(": clock = %s MHz\n", clockfreq(sc->sc_clockfreq));
    270   1.1      eeh 
    271   1.1      eeh 	sbt = sbus_alloc_bustag(sc);
    272   1.1      eeh 	sc->sc_dmatag = sbus_alloc_dmatag(sc);
    273   1.1      eeh 
    274   1.1      eeh 	/*
    275   1.1      eeh 	 * Get the SBus burst transfer size if burst transfers are supported
    276   1.1      eeh 	 */
    277   1.1      eeh 	sc->sc_burst = getpropint(node, "burst-sizes", 0);
    278   1.1      eeh 
    279   1.1      eeh 	/* Propagate bootpath */
    280   1.1      eeh 	if (bp != NULL && strcmp(bp->name, busname) == 0)
    281   1.1      eeh 		bp++;
    282   1.1      eeh 	else
    283   1.1      eeh 		bp = NULL;
    284   1.1      eeh 
    285   1.1      eeh 	/*
    286   1.1      eeh 	 * Collect address translations from the OBP.
    287   1.1      eeh 	 */
    288   1.6       pk 	error = getprop(node, "ranges", sizeof(struct sbus_range),
    289   1.1      eeh 			 &sc->sc_nrange, (void **)&sc->sc_range);
    290   1.1      eeh 	switch (error) {
    291   1.1      eeh 	case 0:
    292   1.1      eeh 		break;
    293   1.1      eeh #if 0
    294   1.1      eeh 	case ENOENT:
    295   1.1      eeh 		/* Fall back to our own `range' construction */
    296   1.1      eeh 		sc->sc_range = sbus_translations;
    297   1.1      eeh 		sc->sc_nrange =
    298   1.1      eeh 			sizeof(sbus_translations)/sizeof(sbus_translations[0]);
    299   1.1      eeh 		break;
    300   1.1      eeh #endif
    301   1.1      eeh 	default:
    302   1.1      eeh 		panic("%s: error getting ranges property", sc->sc_dev.dv_xname);
    303   1.1      eeh 	}
    304   1.1      eeh 
    305   1.1      eeh 
    306   1.1      eeh 	/*
    307   1.1      eeh 	 * Setup the iommu.
    308   1.1      eeh 	 *
    309   1.1      eeh 	 * The sun4u iommu is part of the SBUS controller so we will
    310   1.1      eeh 	 * deal with it here.  We could try to fake a device node so
    311  1.12      eeh 	 * we can eventually share it with the PCI bus run by psycho,
    312   1.1      eeh 	 * but I don't want to get into that sort of cruft.
    313  1.12      eeh 	 *
    314  1.12      eeh 	 * First we need to allocate a IOTSB.  Problem is that the IOMMU
    315  1.12      eeh 	 * can only access the IOTSB by physical address, so all the
    316  1.12      eeh 	 * pages must be contiguous.  Luckily, the smallest IOTSB size
    317  1.12      eeh 	 * is one 8K page.
    318   1.1      eeh 	 */
    319  1.12      eeh #if 1
    320  1.12      eeh 	sc->sc_tsbsize = 0;
    321  1.12      eeh 	sc->sc_tsb = malloc(NBPG, M_DMAMAP, M_WAITOK);
    322  1.12      eeh 	sc->sc_ptsb = pmap_extract(pmap_kernel(), (vaddr_t)sc->sc_tsb);
    323  1.12      eeh #else
    324   1.1      eeh 
    325   1.1      eeh 	/*
    326   1.1      eeh 	 * All IOMMUs will share the same TSB which is allocated in pmap_bootstrap.
    327   1.1      eeh 	 *
    328   1.1      eeh 	 * This makes device management easier.
    329   1.1      eeh 	 */
    330   1.1      eeh 	{
    331   1.1      eeh 		extern int64_t		*iotsb;
    332   1.3      eeh 		extern paddr_t		iotsbp;
    333   1.1      eeh 		extern int		iotsbsize;
    334   1.1      eeh 
    335   1.1      eeh 		sc->sc_tsbsize = iotsbsize;
    336   1.1      eeh 		sc->sc_tsb = iotsb;
    337   1.1      eeh 		sc->sc_ptsb = iotsbp;
    338   1.1      eeh 	}
    339  1.12      eeh #endif
    340   1.8      eeh #if 1
    341   1.1      eeh 	/* Need to do 64-bit stores */
    342   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_cr,
    343   1.8      eeh 			  0, (IOMMUCR_TSB1K|IOMMUCR_8KPG|IOMMUCR_EN));
    344   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_tsb,
    345   1.8      eeh 			  0, sc->sc_ptsb);
    346   1.1      eeh #else
    347   1.1      eeh 	stxa(&sc->sc_sysio->sys_iommu.iommu_cr,ASI_NUCLEUS,(IOMMUCR_TSB1K|IOMMUCR_8KPG|IOMMUCR_EN));
    348   1.1      eeh 	stxa(&sc->sc_sysio->sys_iommu.iommu_tsb,ASI_NUCLEUS,sc->sc_ptsb);
    349   1.1      eeh #endif
    350   1.1      eeh #ifdef DEBUG
    351   1.1      eeh 	if (sbusdebug & SDB_DVMA)
    352   1.1      eeh 	{
    353   1.1      eeh 		/* Probe the iommu */
    354   1.1      eeh 		int64_t cr, tsb;
    355   1.1      eeh 
    356   1.8      eeh 		printf("iommu regs at: cr=%lx tsb=%lx flush=%lx\n", &sc->sc_sysio->sys_iommu.iommu_cr,
    357   1.1      eeh 		       &sc->sc_sysio->sys_iommu.iommu_tsb, &sc->sc_sysio->sys_iommu.iommu_flush);
    358   1.1      eeh 		cr = sc->sc_sysio->sys_iommu.iommu_cr;
    359   1.1      eeh 		tsb = sc->sc_sysio->sys_iommu.iommu_tsb;
    360   1.8      eeh 		printf("iommu cr=%lx tsb=%lx\n", (long)cr, (long)tsb);
    361   1.1      eeh 		printf("sysio base %p phys %p TSB base %p phys %p",
    362   1.3      eeh 		       (long)sc->sc_sysio, (long)pmap_extract(pmap_kernel(), (vaddr_t)sc->sc_sysio),
    363   1.1      eeh 		       (long)sc->sc_tsb, (long)sc->sc_ptsb);
    364   1.1      eeh 		delay(1000000); /* 1 s */
    365   1.1      eeh 	}
    366   1.1      eeh #endif
    367   1.1      eeh 
    368   1.1      eeh 	/*
    369   1.1      eeh 	 * Initialize streaming buffer.
    370   1.1      eeh 	 */
    371   1.3      eeh 	sc->sc_flushpa = pmap_extract(pmap_kernel(), (vaddr_t)&sc->sc_flush);
    372   1.8      eeh #if 1
    373   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_ctl,
    374   1.8      eeh 			  0, STRBUF_EN); /* Enable diagnostics mode? */
    375   1.1      eeh #else
    376   1.1      eeh 	stxa(&sc->sc_sysio->sys_strbuf.strbuf_ctl,ASI_NUCLEUS,STRBUF_EN);
    377   1.1      eeh #endif
    378   1.1      eeh 
    379   1.1      eeh 	/*
    380  1.12      eeh 	 * Now all the hardware's working we need to allocate a dvma map.
    381  1.12      eeh 	 *
    382  1.12      eeh 	 * The IOMMU address space always ends at 0xffffe000, but the starting
    383  1.12      eeh 	 * address depends on the size of the map.  The map size is 1024 * 2 ^
    384  1.12      eeh 	 * sc->sc_tsbsize entries, where each entry is 8 bytes.  The start of
    385  1.12      eeh 	 * the map can be calculated by (0xffffe000 << (8 + sc->sc_tsbsize)).
    386  1.12      eeh 	 *
    387  1.12      eeh 	 * Note: the stupid IOMMU ignores the high bits of an address, so a
    388  1.12      eeh 	 * NULL DMA pointer will be translated by the first page of the IOTSB.
    389  1.12      eeh 	 * To trap bugs we'll skip the first entry in the IOTSB.
    390  1.12      eeh 	 */
    391  1.12      eeh 	sc->sc_dvmamap = extent_create("SBus dvma", /* XXXX should have instance number */
    392  1.12      eeh 				       IOTSB_VSTART(sc->sc_tsbsize) + NBPG, IOTSB_VEND,
    393  1.12      eeh 				       M_DEVBUF, 0, 0, EX_NOWAIT);
    394  1.12      eeh 
    395  1.12      eeh 	/*
    396   1.1      eeh 	 * Loop through ROM children, fixing any relative addresses
    397   1.1      eeh 	 * and then configuring each device.
    398   1.1      eeh 	 * `specials' is an array of device names that are treated
    399   1.1      eeh 	 * specially:
    400   1.1      eeh 	 */
    401   1.1      eeh 	node0 = firstchild(node);
    402   1.1      eeh 	for (node = node0; node; node = nextsibling(node)) {
    403   1.1      eeh 		char *name = getpropstring(node, "name");
    404   1.1      eeh 
    405   1.1      eeh 		if (sbus_setup_attach_args(sc, sbt, sc->sc_dmatag,
    406   1.1      eeh 					   node, bp, &sa) != 0) {
    407   1.1      eeh 			printf("sbus_attach: %s: incomplete\n", name);
    408   1.1      eeh 			continue;
    409   1.1      eeh 		}
    410   1.1      eeh 		(void) config_found(&sc->sc_dev, (void *)&sa, sbus_print);
    411   1.3      eeh 		sbus_destroy_attach_args(&sa);
    412   1.1      eeh 	}
    413   1.1      eeh }
    414   1.1      eeh 
    415   1.1      eeh int
    416   1.1      eeh sbus_setup_attach_args(sc, bustag, dmatag, node, bp, sa)
    417   1.1      eeh 	struct sbus_softc	*sc;
    418   1.1      eeh 	bus_space_tag_t		bustag;
    419   1.1      eeh 	bus_dma_tag_t		dmatag;
    420   1.1      eeh 	int			node;
    421   1.1      eeh 	struct bootpath		*bp;
    422   1.1      eeh 	struct sbus_attach_args	*sa;
    423   1.1      eeh {
    424   1.3      eeh 	/*struct	sbus_reg sbusreg;*/
    425   1.3      eeh 	/*int	base;*/
    426   1.1      eeh 	int	error;
    427   1.3      eeh 	int n;
    428   1.1      eeh 
    429   1.1      eeh 	bzero(sa, sizeof(struct sbus_attach_args));
    430   1.6       pk 	error = getprop(node, "name", 1, &n, (void **)&sa->sa_name);
    431   1.3      eeh 	if (error != 0)
    432   1.3      eeh 		return (error);
    433   1.3      eeh 	sa->sa_name[n] = '\0';
    434   1.3      eeh 
    435   1.1      eeh 	sa->sa_bustag = bustag;
    436   1.1      eeh 	sa->sa_dmatag = dmatag;
    437   1.1      eeh 	sa->sa_node = node;
    438   1.1      eeh 	sa->sa_bp = bp;
    439   1.1      eeh 
    440   1.6       pk 	error = getprop(node, "reg", sizeof(struct sbus_reg),
    441   1.3      eeh 			 &sa->sa_nreg, (void **)&sa->sa_reg);
    442   1.3      eeh 	if (error != 0) {
    443   1.3      eeh 		char buf[32];
    444   1.3      eeh 		if (error != ENOENT ||
    445   1.3      eeh 		    !node_has_property(node, "device_type") ||
    446   1.3      eeh 		    strcmp(getpropstringA(node, "device_type", buf),
    447   1.3      eeh 			   "hierarchical") != 0)
    448   1.3      eeh 			return (error);
    449   1.3      eeh 	}
    450   1.3      eeh 	for (n = 0; n < sa->sa_nreg; n++) {
    451   1.3      eeh 		/* Convert to relative addressing, if necessary */
    452   1.3      eeh 		u_int32_t base = sa->sa_reg[n].sbr_offset;
    453   1.3      eeh 		if (SBUS_ABS(base)) {
    454   1.3      eeh 			sa->sa_reg[n].sbr_slot = SBUS_ABS_TO_SLOT(base);
    455   1.3      eeh 			sa->sa_reg[n].sbr_offset = SBUS_ABS_TO_OFFSET(base);
    456   1.3      eeh 		}
    457   1.1      eeh 	}
    458   1.1      eeh 
    459   1.3      eeh 	if ((error = sbus_get_intr(sc, node, &sa->sa_intr, &sa->sa_nintr)) != 0)
    460   1.1      eeh 		return (error);
    461   1.1      eeh 
    462   1.6       pk 	error = getprop(node, "address", sizeof(u_int32_t),
    463   1.3      eeh 			 &sa->sa_npromvaddrs, (void **)&sa->sa_promvaddrs);
    464   1.3      eeh 	if (error != 0 && error != ENOENT)
    465   1.1      eeh 		return (error);
    466   1.1      eeh 
    467   1.1      eeh 	return (0);
    468   1.1      eeh }
    469   1.1      eeh 
    470   1.3      eeh void
    471   1.3      eeh sbus_destroy_attach_args(sa)
    472   1.3      eeh 	struct sbus_attach_args	*sa;
    473   1.3      eeh {
    474   1.3      eeh 	if (sa->sa_name != NULL)
    475   1.3      eeh 		free(sa->sa_name, M_DEVBUF);
    476   1.3      eeh 
    477   1.3      eeh 	if (sa->sa_nreg != 0)
    478   1.3      eeh 		free(sa->sa_reg, M_DEVBUF);
    479   1.3      eeh 
    480   1.3      eeh 	if (sa->sa_intr)
    481   1.3      eeh 		free(sa->sa_intr, M_DEVBUF);
    482   1.3      eeh 
    483   1.3      eeh 	if (sa->sa_promvaddrs)
    484   1.8      eeh 		free((void *)sa->sa_promvaddrs, M_DEVBUF);
    485   1.3      eeh 
    486   1.3      eeh 	bzero(sa, sizeof(struct sbus_attach_args));/*DEBUG*/
    487   1.3      eeh }
    488   1.3      eeh 
    489   1.3      eeh 
    490   1.1      eeh int
    491   1.1      eeh _sbus_bus_map(t, btype, offset, size, flags, vaddr, hp)
    492   1.1      eeh 	bus_space_tag_t t;
    493   1.1      eeh 	bus_type_t btype;
    494   1.1      eeh 	bus_addr_t offset;
    495   1.1      eeh 	bus_size_t size;
    496   1.1      eeh 	int	flags;
    497   1.3      eeh 	vaddr_t vaddr;
    498   1.1      eeh 	bus_space_handle_t *hp;
    499   1.1      eeh {
    500   1.1      eeh 	struct sbus_softc *sc = t->cookie;
    501   1.1      eeh 	int64_t slot = btype;
    502   1.1      eeh 	int i;
    503   1.1      eeh 
    504   1.1      eeh 	for (i = 0; i < sc->sc_nrange; i++) {
    505   1.1      eeh 		bus_addr_t paddr;
    506   1.1      eeh 
    507   1.1      eeh 		if (sc->sc_range[i].cspace != slot)
    508   1.1      eeh 			continue;
    509   1.1      eeh 
    510   1.1      eeh 		/* We've found the connection to the parent bus */
    511   1.1      eeh 		paddr = sc->sc_range[i].poffset + offset;
    512   1.1      eeh 		paddr |= ((bus_addr_t)sc->sc_range[i].pspace<<32);
    513   1.1      eeh #ifdef DEBUG
    514   1.1      eeh 		if (sbusdebug & SDB_DVMA)
    515   1.8      eeh 			printf("\n_sbus_bus_map: mapping paddr slot %lx offset %lx poffset %lx paddr %lx\n",
    516   1.8      eeh 			       (long)slot, (long)offset, (long)sc->sc_range[i].poffset, (long)paddr);
    517   1.1      eeh #endif
    518   1.1      eeh 		return (bus_space_map2(sc->sc_bustag, 0, paddr,
    519   1.1      eeh 					size, flags, vaddr, hp));
    520   1.1      eeh 	}
    521   1.1      eeh 
    522   1.1      eeh 	return (EINVAL);
    523   1.1      eeh }
    524   1.1      eeh 
    525   1.1      eeh int
    526   1.1      eeh sbus_bus_mmap(t, btype, paddr, flags, hp)
    527   1.1      eeh 	bus_space_tag_t t;
    528   1.1      eeh 	bus_type_t btype;
    529   1.1      eeh 	bus_addr_t paddr;
    530   1.1      eeh 	int flags;
    531   1.1      eeh 	bus_space_handle_t *hp;
    532   1.1      eeh {
    533   1.1      eeh 	bus_addr_t offset = paddr;
    534   1.1      eeh 	int slot = (paddr>>32);
    535   1.1      eeh 	struct sbus_softc *sc = t->cookie;
    536   1.1      eeh 	int i;
    537   1.1      eeh 
    538   1.1      eeh 	for (i = 0; i < sc->sc_nrange; i++) {
    539   1.1      eeh 		bus_addr_t paddr;
    540   1.1      eeh 
    541   1.1      eeh 		if (sc->sc_range[i].cspace != slot)
    542   1.1      eeh 			continue;
    543   1.1      eeh 
    544   1.1      eeh 		paddr = sc->sc_range[i].poffset + offset;
    545   1.1      eeh 		paddr |= ((bus_addr_t)sc->sc_range[i].pspace<<32);
    546   1.1      eeh 		return (bus_space_mmap(sc->sc_bustag, 0, paddr,
    547   1.1      eeh 				       flags, hp));
    548   1.1      eeh 	}
    549   1.1      eeh 
    550   1.1      eeh 	return (-1);
    551   1.1      eeh }
    552   1.1      eeh 
    553   1.1      eeh 
    554   1.1      eeh /*
    555   1.1      eeh  * Each attached device calls sbus_establish after it initializes
    556   1.1      eeh  * its sbusdev portion.
    557   1.1      eeh  */
    558   1.1      eeh void
    559   1.1      eeh sbus_establish(sd, dev)
    560   1.1      eeh 	register struct sbusdev *sd;
    561   1.1      eeh 	register struct device *dev;
    562   1.1      eeh {
    563   1.1      eeh 	register struct sbus_softc *sc;
    564   1.1      eeh 	register struct device *curdev;
    565   1.1      eeh 
    566   1.1      eeh 	/*
    567   1.1      eeh 	 * We have to look for the sbus by name, since it is not necessarily
    568   1.1      eeh 	 * our immediate parent (i.e. sun4m /iommu/sbus/espdma/esp)
    569   1.1      eeh 	 * We don't just use the device structure of the above-attached
    570   1.1      eeh 	 * sbus, since we might (in the future) support multiple sbus's.
    571   1.1      eeh 	 */
    572   1.1      eeh 	for (curdev = dev->dv_parent; ; curdev = curdev->dv_parent) {
    573   1.1      eeh 		if (!curdev || !curdev->dv_xname)
    574   1.1      eeh 			panic("sbus_establish: can't find sbus parent for %s",
    575   1.1      eeh 			      sd->sd_dev->dv_xname
    576   1.1      eeh 					? sd->sd_dev->dv_xname
    577   1.1      eeh 					: "<unknown>" );
    578   1.1      eeh 
    579   1.1      eeh 		if (strncmp(curdev->dv_xname, "sbus", 4) == 0)
    580   1.1      eeh 			break;
    581   1.1      eeh 	}
    582   1.1      eeh 	sc = (struct sbus_softc *) curdev;
    583   1.1      eeh 
    584   1.1      eeh 	sd->sd_dev = dev;
    585   1.1      eeh 	sd->sd_bchain = sc->sc_sbdev;
    586   1.1      eeh 	sc->sc_sbdev = sd;
    587   1.1      eeh }
    588   1.1      eeh 
    589   1.1      eeh /*
    590   1.1      eeh  * Reset the given sbus. (???)
    591   1.1      eeh  */
    592   1.1      eeh void
    593   1.1      eeh sbusreset(sbus)
    594   1.1      eeh 	int sbus;
    595   1.1      eeh {
    596   1.1      eeh 	register struct sbusdev *sd;
    597   1.1      eeh 	struct sbus_softc *sc = sbus_cd.cd_devs[sbus];
    598   1.1      eeh 	struct device *dev;
    599   1.1      eeh 
    600   1.1      eeh 	printf("reset %s:", sc->sc_dev.dv_xname);
    601   1.1      eeh 	for (sd = sc->sc_sbdev; sd != NULL; sd = sd->sd_bchain) {
    602   1.1      eeh 		if (sd->sd_reset) {
    603   1.1      eeh 			dev = sd->sd_dev;
    604   1.1      eeh 			(*sd->sd_reset)(dev);
    605   1.1      eeh 			printf(" %s", dev->dv_xname);
    606   1.1      eeh 		}
    607   1.1      eeh 	}
    608   1.8      eeh #if 1
    609   1.1      eeh 	/* Reload iommu regs */
    610  1.12      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_cr,
    611   1.8      eeh 			  0, (IOMMUCR_TSB1K|IOMMUCR_8KPG|IOMMUCR_EN));
    612   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_tsb,
    613   1.8      eeh 			  0, sc->sc_ptsb);
    614   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_ctl,
    615   1.8      eeh 			  0, STRBUF_EN); /* Enable diagnostics mode? */
    616   1.1      eeh #else
    617   1.1      eeh 	/* Reload iommu regs */
    618   1.1      eeh 	stxa(&sc->sc_sysio->sys_iommu.iommu_cr,ASI_NUCLEUS,(IOMMUCR_TSB1K|IOMMUCR_8KPG|IOMMUCR_EN));
    619   1.1      eeh 	stxa(&sc->sc_sysio->sys_iommu.iommu_tsb,ASI_NUCLEUS,sc->sc_ptsb);
    620   1.1      eeh 	stxa(&sc->sc_sysio->sys_strbuf.strbuf_ctl,ASI_NUCLEUS,STRBUF_EN);
    621   1.1      eeh #endif
    622   1.1      eeh }
    623   1.1      eeh 
    624   1.1      eeh /*
    625   1.1      eeh  * Here are the iommu control routines.
    626   1.1      eeh  */
    627   1.1      eeh void
    628   1.2      eeh sbus_enter(sc, va, pa, flags)
    629   1.1      eeh 	struct sbus_softc *sc;
    630   1.3      eeh 	vaddr_t va;
    631   1.1      eeh 	int64_t pa;
    632   1.2      eeh 	int flags;
    633   1.1      eeh {
    634   1.1      eeh 	int64_t tte;
    635   1.1      eeh 
    636   1.1      eeh #ifdef DIAGNOSTIC
    637   1.1      eeh 	if (va < sc->sc_dvmabase)
    638   1.8      eeh 		panic("sbus_enter: va 0x%lx not in DVMA space",va);
    639   1.1      eeh #endif
    640   1.1      eeh 
    641   1.3      eeh 	tte = MAKEIOTTE(pa, !(flags&BUS_DMA_NOWRITE), !(flags&BUS_DMA_NOCACHE),
    642   1.2      eeh 			!(flags&BUS_DMA_COHERENT));
    643   1.1      eeh 
    644   1.1      eeh 	/* Is the streamcache flush really needed? */
    645   1.8      eeh #if 1
    646   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_pgflush,
    647   1.8      eeh 			  0, va);
    648   1.1      eeh #else
    649   1.1      eeh 	stxa(&(sc->sc_sysio->sys_strbuf.strbuf_pgflush), ASI_NUCLEUS, va);
    650   1.1      eeh #endif
    651   1.1      eeh 	sbus_flush(sc);
    652  1.12      eeh #ifdef DEBUG
    653  1.12      eeh 	if (sbusdebug & SDB_DVMA)
    654  1.12      eeh 		printf("Clearing TSB slot %d for va %p\n", (int)IOTSBSLOT(va,sc->sc_tsbsize), va);
    655  1.12      eeh #endif
    656   1.1      eeh 	sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)] = tte;
    657   1.8      eeh #if 1
    658   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_flush,
    659   1.8      eeh 			  0, va);
    660   1.1      eeh #else
    661   1.1      eeh 	stxa(&sc->sc_sysio->sys_iommu.iommu_flush,ASI_NUCLEUS,va);
    662   1.1      eeh #endif
    663   1.1      eeh #ifdef DEBUG
    664   1.1      eeh 	if (sbusdebug & SDB_DVMA)
    665   1.8      eeh 		printf("sbus_enter: va %lx pa %lx TSB[%lx]@%p=%lx\n",
    666   1.8      eeh 		       va, (long)pa, IOTSBSLOT(va,sc->sc_tsbsize),
    667   1.1      eeh 		       &sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)],
    668   1.8      eeh 		       (long)tte);
    669   1.1      eeh #endif
    670   1.1      eeh }
    671   1.1      eeh 
    672   1.1      eeh /*
    673   1.1      eeh  * sbus_clear: clears mappings created by sbus_enter
    674   1.1      eeh  *
    675   1.1      eeh  * Only demap from IOMMU if flag is set.
    676   1.1      eeh  */
    677   1.1      eeh void
    678   1.1      eeh sbus_remove(sc, va, len)
    679   1.1      eeh 	struct sbus_softc *sc;
    680   1.3      eeh 	vaddr_t va;
    681   1.8      eeh 	size_t len;
    682   1.1      eeh {
    683   1.1      eeh 
    684   1.1      eeh #ifdef DIAGNOSTIC
    685   1.1      eeh 	if (va < sc->sc_dvmabase)
    686   1.8      eeh 		panic("sbus_remove: va 0x%lx not in DVMA space", (long)va);
    687   1.8      eeh 	if ((long)(va + len) < (long)va)
    688   1.8      eeh 		panic("sbus_remove: va 0x%lx + len 0x%lx wraps",
    689   1.8      eeh 		      (long) va, (long) len);
    690   1.8      eeh 	if (len & ~0xfffffff)
    691   1.8      eeh 		panic("sbus_remove: rediculous len 0x%lx", (long)len);
    692   1.1      eeh #endif
    693   1.1      eeh 
    694   1.2      eeh 	va = trunc_page(va);
    695   1.1      eeh 	while (len > 0) {
    696   1.1      eeh 
    697   1.1      eeh 		/*
    698   1.1      eeh 		 * Streaming buffer flushes:
    699   1.1      eeh 		 *
    700   1.1      eeh 		 *   1 Tell strbuf to flush by storing va to strbuf_pgflush
    701   1.1      eeh 		 * If we're not on a cache line boundary (64-bits):
    702   1.1      eeh 		 *   2 Store 0 in flag
    703   1.1      eeh 		 *   3 Store pointer to flag in flushsync
    704   1.1      eeh 		 *   4 wait till flushsync becomes 0x1
    705   1.1      eeh 		 *
    706   1.1      eeh 		 * If it takes more than .5 sec, something went wrong.
    707   1.1      eeh 		 */
    708   1.8      eeh #ifdef DEBUG
    709   1.8      eeh 		if (sbusdebug & SDB_DVMA)
    710   1.8      eeh 			printf("sbus_remove: flushing va %p TSB[%lx]@%p=%lx, %lu bytes left\n",
    711   1.8      eeh 			       (long)va, (long)IOTSBSLOT(va,sc->sc_tsbsize),
    712   1.8      eeh 			       (long)&sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)],
    713   1.8      eeh 			       (long)(sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)]),
    714   1.8      eeh 			       (u_long)len);
    715   1.8      eeh #endif
    716   1.8      eeh #if 1
    717   1.8      eeh 		bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_pgflush, 0, va);
    718   1.1      eeh #else
    719   1.1      eeh 		stxa(&(sc->sc_sysio->sys_strbuf.strbuf_pgflush), ASI_NUCLEUS, va);
    720   1.1      eeh #endif
    721   1.1      eeh 		if (len <= NBPG) {
    722   1.1      eeh 			sbus_flush(sc);
    723   1.8      eeh 			len = 0;
    724   1.8      eeh 		} else len -= NBPG;
    725   1.1      eeh #ifdef DEBUG
    726   1.1      eeh 		if (sbusdebug & SDB_DVMA)
    727   1.8      eeh 			printf("sbus_remove: flushed va %p TSB[%lx]@%p=%lx, %lu bytes left\n",
    728   1.8      eeh 			       (long)va, (long)IOTSBSLOT(va,sc->sc_tsbsize),
    729   1.4      eeh 			       (long)&sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)],
    730   1.8      eeh 			       (long)(sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)]),
    731   1.8      eeh 			       (u_long)len);
    732   1.1      eeh #endif
    733   1.1      eeh 		sc->sc_tsb[IOTSBSLOT(va,sc->sc_tsbsize)] = 0;
    734   1.8      eeh #if 1
    735   1.8      eeh 		bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_iommu.iommu_flush, 0, va);
    736   1.1      eeh #else
    737   1.1      eeh 		stxa(&sc->sc_sysio->sys_iommu.iommu_flush, ASI_NUCLEUS, va);
    738   1.1      eeh #endif
    739   1.1      eeh 		va += NBPG;
    740   1.1      eeh 	}
    741   1.1      eeh }
    742   1.1      eeh 
    743   1.1      eeh int
    744   1.1      eeh sbus_flush(sc)
    745   1.1      eeh 	struct sbus_softc *sc;
    746   1.1      eeh {
    747   1.1      eeh 	extern u_int64_t cpu_clockrate;
    748   1.1      eeh 	u_int64_t flushtimeout;
    749   1.1      eeh 
    750   1.1      eeh 	sc->sc_flush = 0;
    751   1.8      eeh 	membar_sync();
    752   1.8      eeh #if 1
    753   1.8      eeh 	bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_flushsync, 0, sc->sc_flushpa);
    754   1.8      eeh #else
    755   1.8      eeh 	stxa(&sc->sc_sysio->sys_strbuf.strbuf_flushsync, ASI_NUCLEUS, sc->sc_flushpa);
    756   1.8      eeh #endif
    757   1.8      eeh 	membar_sync();
    758   1.8      eeh 	flushtimeout = tick() + cpu_clockrate/2; /* .5 sec after *now* */
    759   1.8      eeh #ifdef DEBUG
    760   1.1      eeh 	if (sbusdebug & SDB_DVMA)
    761   1.8      eeh 		printf("sbus_flush: flush = %lx at va = %lx pa = %lx now=%lx until = %lx\n",
    762   1.8      eeh 		       (long)sc->sc_flush, (long)&sc->sc_flush,
    763   1.8      eeh 		       (long)sc->sc_flushpa, (long)tick(), flushtimeout);
    764   1.1      eeh #endif
    765   1.8      eeh 	/* Bypass non-coherent D$ */
    766   1.1      eeh #if 0
    767   1.8      eeh 	while( !ldxa(sc->sc_flushpa, ASI_PHYS_CACHED) && flushtimeout > tick()) membar_sync();
    768   1.1      eeh #else
    769   1.8      eeh 	{ int i; for(i=140000000/2; !ldxa(sc->sc_flushpa, ASI_PHYS_CACHED) && i; i--) membar_sync(); }
    770   1.1      eeh #endif
    771   1.1      eeh #ifdef DIAGNOSTIC
    772   1.8      eeh 	if( !sc->sc_flush ) {
    773   1.8      eeh 		printf("sbus_flush: flush timeout %p at %p\n", (long)sc->sc_flush,
    774   1.5      eeh 		       (long)sc->sc_flushpa); /* panic? */
    775   1.8      eeh #ifdef DDB
    776   1.8      eeh 		Debugger();
    777   1.8      eeh #endif
    778   1.8      eeh 	}
    779   1.8      eeh #endif
    780   1.8      eeh #ifdef DEBUG
    781   1.8      eeh 	if (sbusdebug & SDB_DVMA)
    782   1.8      eeh 		printf("sbus_flush: flushed\n");
    783   1.1      eeh #endif
    784   1.1      eeh 	return (sc->sc_flush);
    785   1.1      eeh }
    786   1.1      eeh /*
    787   1.1      eeh  * Get interrupt attributes for an Sbus device.
    788   1.1      eeh  */
    789   1.1      eeh int
    790   1.3      eeh sbus_get_intr(sc, node, ipp, np)
    791   1.1      eeh 	struct sbus_softc *sc;
    792   1.1      eeh 	int node;
    793   1.3      eeh 	struct sbus_intr **ipp;
    794   1.3      eeh 	int *np;
    795   1.1      eeh {
    796   1.1      eeh 	int *ipl;
    797   1.3      eeh 	int i, n, error;
    798   1.1      eeh 	char buf[32];
    799   1.1      eeh 
    800   1.1      eeh 	/*
    801   1.1      eeh 	 * The `interrupts' property contains the Sbus interrupt level.
    802   1.1      eeh 	 */
    803   1.1      eeh 	ipl = NULL;
    804   1.6       pk 	if (getprop(node, "interrupts", sizeof(int), np, (void **)&ipl) == 0) {
    805   1.3      eeh 		/* Change format to an `struct sbus_intr' array */
    806   1.3      eeh 		struct sbus_intr *ip;
    807  1.10      eeh 		/* Default to interrupt level 2 -- otherwise unused */
    808  1.10      eeh 		int pri = INTLEVENCODE(2);
    809   1.3      eeh 		ip = malloc(*np * sizeof(struct sbus_intr), M_DEVBUF, M_NOWAIT);
    810   1.3      eeh 		if (ip == NULL)
    811   1.3      eeh 			return (ENOMEM);
    812   1.1      eeh 		/* Now things get ugly.  We need to take this value which is
    813   1.1      eeh 		 * the interrupt vector number and encode the IPL into it
    814   1.1      eeh 		 * somehow. Luckily, the interrupt vector has lots of free
    815   1.1      eeh 		 * space and we can easily stuff the IPL in there for a while.
    816   1.1      eeh 		 */
    817   1.1      eeh 		getpropstringA(node, "device_type", buf);
    818  1.10      eeh 		if (!buf[0]) {
    819  1.10      eeh 			getpropstringA(node, "name", buf);
    820  1.10      eeh 		}
    821   1.3      eeh 		for (i=0; intrmap[i].in_class; i++) {
    822   1.3      eeh 			if (strcmp(intrmap[i].in_class, buf) == 0) {
    823   1.3      eeh 				pri = INTLEVENCODE(intrmap[i].in_lev);
    824   1.1      eeh 				break;
    825   1.1      eeh 			}
    826   1.1      eeh 		}
    827   1.3      eeh 		for (n = 0; n < *np; n++) {
    828   1.3      eeh 			/*
    829   1.3      eeh 			 * We encode vector and priority into sbi_pri so we
    830   1.3      eeh 			 * can pass them as a unit.  This will go away if
    831   1.3      eeh 			 * sbus_establish ever takes an sbus_intr instead
    832   1.3      eeh 			 * of an integer level.
    833   1.3      eeh 			 * Stuff the real vector in sbi_vec.
    834   1.3      eeh 			 */
    835   1.3      eeh 			ip[n].sbi_pri = pri|ipl[n];
    836   1.3      eeh 			ip[n].sbi_vec = ipl[n];
    837   1.3      eeh 		}
    838   1.1      eeh 		free(ipl, M_DEVBUF);
    839   1.3      eeh 		*ipp = ip;
    840   1.1      eeh 		return (0);
    841   1.1      eeh 	}
    842   1.1      eeh 
    843   1.1      eeh 	/* We really don't support the following */
    844   1.1      eeh /*	printf("\nWARNING: sbus_get_intr() \"interrupts\" not found -- using \"intr\"\n"); */
    845   1.1      eeh /* And some devices don't even have interrupts */
    846   1.1      eeh 	/*
    847   1.1      eeh 	 * Fall back on `intr' property.
    848   1.1      eeh 	 */
    849   1.3      eeh 	*ipp = NULL;
    850   1.6       pk 	error = getprop(node, "intr", sizeof(struct sbus_intr),
    851   1.3      eeh 			 np, (void **)ipp);
    852   1.3      eeh 	switch (error) {
    853   1.1      eeh 	case 0:
    854   1.3      eeh 		for (n = *np; n-- > 0;) {
    855   1.3      eeh 			/*
    856   1.3      eeh 			 * Move the interrupt vector into place.
    857   1.3      eeh 			 * We could remap the level, but the SBUS priorities
    858   1.3      eeh 			 * are probably good enough.
    859   1.3      eeh 			 */
    860   1.3      eeh 			(*ipp)[n].sbi_vec = (*ipp)[n].sbi_pri;
    861   1.3      eeh 			(*ipp)[n].sbi_pri |= INTLEVENCODE((*ipp)[n].sbi_pri);
    862   1.1      eeh 		}
    863   1.3      eeh 		break;
    864   1.1      eeh 	case ENOENT:
    865   1.3      eeh 		error = 0;
    866   1.3      eeh 		break;
    867   1.1      eeh 	}
    868   1.1      eeh 
    869   1.3      eeh 	return (error);
    870   1.1      eeh }
    871   1.1      eeh 
    872   1.1      eeh 
    873   1.1      eeh /*
    874   1.1      eeh  * Install an interrupt handler for an Sbus device.
    875   1.1      eeh  */
    876   1.1      eeh void *
    877   1.1      eeh sbus_intr_establish(t, level, flags, handler, arg)
    878   1.1      eeh 	bus_space_tag_t t;
    879   1.1      eeh 	int level;
    880   1.1      eeh 	int flags;
    881   1.1      eeh 	int (*handler) __P((void *));
    882   1.1      eeh 	void *arg;
    883   1.1      eeh {
    884   1.1      eeh 	struct sbus_softc *sc = t->cookie;
    885   1.1      eeh 	struct intrhand *ih;
    886   1.1      eeh 	int ipl;
    887   1.8      eeh 	long vec = level;
    888   1.1      eeh 
    889   1.1      eeh 	ih = (struct intrhand *)
    890   1.1      eeh 		malloc(sizeof(struct intrhand), M_DEVBUF, M_NOWAIT);
    891   1.1      eeh 	if (ih == NULL)
    892   1.1      eeh 		return (NULL);
    893   1.1      eeh 
    894   1.1      eeh 	if ((flags & BUS_INTR_ESTABLISH_SOFTINTR) != 0)
    895   1.8      eeh 		ipl = vec;
    896   1.8      eeh 	else if ((vec & SBUS_INTR_COMPAT) != 0)
    897   1.8      eeh 		ipl = vec & ~SBUS_INTR_COMPAT;
    898   1.1      eeh 	else {
    899   1.1      eeh 		/* Decode and remove IPL */
    900   1.8      eeh 		ipl = INTLEV(vec);
    901   1.8      eeh 		vec = INTVEC(vec);
    902   1.1      eeh #ifdef DEBUG
    903   1.1      eeh 		if (sbusdebug & SDB_INTR) {
    904   1.8      eeh 			printf("\nsbus: intr[%ld]%lx: %lx\n", (long)ipl, (long)vec,
    905   1.8      eeh 			       intrlev[vec]);
    906   1.1      eeh 			printf("Hunting for IRQ...\n");
    907   1.1      eeh 		}
    908   1.1      eeh #endif
    909   1.8      eeh 		if ((vec & INTMAP_OBIO) == 0) {
    910   1.1      eeh 			/* We're in an SBUS slot */
    911   1.1      eeh 			/* Register the map and clear intr registers */
    912   1.1      eeh #ifdef DEBUG
    913   1.1      eeh 			if (sbusdebug & SDB_INTR) {
    914   1.8      eeh 				int64_t *intrptr = &(&sc->sc_sysio->sbus_slot0_int)[INTSLOT(vec)];
    915   1.1      eeh 				int64_t intrmap = *intrptr;
    916   1.1      eeh 
    917   1.8      eeh 				printf("Found SBUS %lx IRQ as %llx in slot %ld\n",
    918   1.8      eeh 				       (long)vec, (long)intrmap,
    919   1.8      eeh 				       (long)INTSLOT(vec));
    920   1.1      eeh 			}
    921   1.1      eeh #endif
    922   1.8      eeh 			ih->ih_map = &(&sc->sc_sysio->sbus_slot0_int)[INTSLOT(vec)];
    923   1.8      eeh 			ih->ih_clr = &sc->sc_sysio->sbus0_clr_int[INTVEC(vec)];
    924   1.1      eeh 			/* Enable the interrupt */
    925   1.8      eeh 			vec |= INTMAP_V;
    926   1.9      eeh 			/* Insert IGN */
    927   1.9      eeh 			vec |= sc->sc_ign;
    928   1.8      eeh 			bus_space_write_8(sc->sc_bustag, ih->ih_map, 0, vec);
    929   1.1      eeh 		} else {
    930   1.1      eeh 			int64_t *intrptr = &sc->sc_sysio->scsi_int_map;
    931   1.1      eeh 			int64_t intrmap = 0;
    932   1.1      eeh 			int i;
    933   1.1      eeh 
    934   1.1      eeh 			/* Insert IGN */
    935   1.8      eeh 			vec |= sc->sc_ign;
    936   1.1      eeh 			for (i=0;
    937   1.1      eeh 			     &intrptr[i] <= (int64_t *)&sc->sc_sysio->reserved_int_map &&
    938   1.8      eeh 				     INTVEC(intrmap=intrptr[i]) != INTVEC(vec);
    939   1.1      eeh 			     i++);
    940   1.8      eeh 			if (INTVEC(intrmap) == INTVEC(vec)) {
    941   1.1      eeh #ifdef DEBUG
    942   1.1      eeh 				if (sbusdebug & SDB_INTR)
    943   1.8      eeh 					printf("Found OBIO %lx IRQ as %lx in slot %d\n",
    944   1.8      eeh 					       vec, (long)intrmap, i);
    945   1.1      eeh #endif
    946   1.1      eeh 				/* Register the map and clear intr registers */
    947   1.1      eeh 				ih->ih_map = &intrptr[i];
    948   1.1      eeh 				intrptr = (int64_t *)&sc->sc_sysio->scsi_clr_int;
    949   1.1      eeh 				ih->ih_clr = &intrptr[i];
    950   1.1      eeh 				/* Enable the interrupt */
    951   1.1      eeh 				intrmap |= INTMAP_V;
    952   1.8      eeh 				bus_space_write_8(sc->sc_bustag, ih->ih_map, 0, (u_long)intrmap);
    953   1.1      eeh 			} else panic("IRQ not found!");
    954   1.1      eeh 		}
    955   1.1      eeh 	}
    956   1.1      eeh #ifdef DEBUG
    957   1.8      eeh 	if (sbusdebug & SDB_INTR) { long i; for (i=0; i<1400000000; i++); }
    958   1.1      eeh #endif
    959   1.1      eeh 
    960   1.1      eeh 	ih->ih_fun = handler;
    961   1.1      eeh 	ih->ih_arg = arg;
    962   1.8      eeh 	ih->ih_number = vec;
    963   1.1      eeh 	ih->ih_pil = (1<<ipl);
    964   1.1      eeh 	if ((flags & BUS_INTR_ESTABLISH_FASTTRAP) != 0)
    965   1.1      eeh 		intr_fasttrap(ipl, (void (*)__P((void)))handler);
    966   1.1      eeh 	else
    967   1.1      eeh 		intr_establish(ipl, ih);
    968   1.1      eeh 	return (ih);
    969   1.1      eeh }
    970   1.1      eeh 
    971   1.1      eeh static bus_space_tag_t
    972   1.1      eeh sbus_alloc_bustag(sc)
    973   1.1      eeh 	struct sbus_softc *sc;
    974   1.1      eeh {
    975   1.1      eeh 	bus_space_tag_t sbt;
    976   1.1      eeh 
    977   1.1      eeh 	sbt = (bus_space_tag_t)
    978   1.1      eeh 		malloc(sizeof(struct sparc_bus_space_tag), M_DEVBUF, M_NOWAIT);
    979   1.1      eeh 	if (sbt == NULL)
    980   1.1      eeh 		return (NULL);
    981   1.1      eeh 
    982   1.1      eeh 	bzero(sbt, sizeof *sbt);
    983   1.1      eeh 	sbt->cookie = sc;
    984   1.1      eeh 	sbt->parent = sc->sc_bustag;
    985  1.12      eeh 	sbt->type = SBUS_BUS_SPACE;
    986   1.1      eeh 	sbt->sparc_bus_map = _sbus_bus_map;
    987   1.1      eeh 	sbt->sparc_bus_mmap = sbus_bus_mmap;
    988   1.1      eeh 	sbt->sparc_intr_establish = sbus_intr_establish;
    989   1.1      eeh 	return (sbt);
    990   1.1      eeh }
    991   1.1      eeh 
    992   1.1      eeh 
    993   1.1      eeh static bus_dma_tag_t
    994   1.1      eeh sbus_alloc_dmatag(sc)
    995   1.1      eeh 	struct sbus_softc *sc;
    996   1.1      eeh {
    997   1.1      eeh 	bus_dma_tag_t sdt, psdt = sc->sc_dmatag;
    998   1.1      eeh 
    999   1.1      eeh 	sdt = (bus_dma_tag_t)
   1000   1.1      eeh 		malloc(sizeof(struct sparc_bus_dma_tag), M_DEVBUF, M_NOWAIT);
   1001   1.1      eeh 	if (sdt == NULL)
   1002   1.1      eeh 		/* Panic? */
   1003   1.1      eeh 		return (psdt);
   1004   1.1      eeh 
   1005   1.1      eeh 	sdt->_cookie = sc;
   1006   1.1      eeh 	sdt->_parent = psdt;
   1007   1.1      eeh #define PCOPY(x)	sdt->x = psdt->x
   1008   1.1      eeh 	PCOPY(_dmamap_create);
   1009   1.1      eeh 	PCOPY(_dmamap_destroy);
   1010   1.1      eeh 	sdt->_dmamap_load = sbus_dmamap_load;
   1011   1.1      eeh 	PCOPY(_dmamap_load_mbuf);
   1012   1.1      eeh 	PCOPY(_dmamap_load_uio);
   1013   1.1      eeh 	PCOPY(_dmamap_load_raw);
   1014   1.1      eeh 	sdt->_dmamap_unload = sbus_dmamap_unload;
   1015   1.1      eeh 	sdt->_dmamap_sync = sbus_dmamap_sync;
   1016   1.1      eeh 	sdt->_dmamem_alloc = sbus_dmamem_alloc;
   1017   1.1      eeh 	sdt->_dmamem_free = sbus_dmamem_free;
   1018   1.2      eeh 	sdt->_dmamem_map = sbus_dmamem_map;
   1019   1.2      eeh 	sdt->_dmamem_unmap = sbus_dmamem_unmap;
   1020   1.1      eeh 	PCOPY(_dmamem_mmap);
   1021   1.1      eeh #undef	PCOPY
   1022   1.1      eeh 	sc->sc_dmatag = sdt;
   1023   1.1      eeh 	return (sdt);
   1024   1.1      eeh }
   1025   1.1      eeh 
   1026   1.1      eeh int
   1027   1.1      eeh sbus_dmamap_load(t, map, buf, buflen, p, flags)
   1028   1.1      eeh 	bus_dma_tag_t t;
   1029   1.1      eeh 	bus_dmamap_t map;
   1030   1.1      eeh 	void *buf;
   1031   1.1      eeh 	bus_size_t buflen;
   1032   1.1      eeh 	struct proc *p;
   1033   1.1      eeh 	int flags;
   1034   1.1      eeh {
   1035  1.12      eeh 	int err, s;
   1036   1.1      eeh 	bus_size_t sgsize;
   1037   1.3      eeh 	paddr_t curaddr;
   1038  1.12      eeh 	u_long dvmaddr;
   1039  1.12      eeh 	vaddr_t vaddr = (vaddr_t)buf;
   1040   1.1      eeh 	pmap_t pmap;
   1041   1.1      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1042   1.1      eeh 
   1043   1.2      eeh 	if (map->dm_nsegs) {
   1044   1.2      eeh 		/* Already in use?? */
   1045   1.2      eeh #ifdef DIAGNOSTIC
   1046   1.2      eeh 		printf("sbus_dmamap_load: map still in use\n");
   1047   1.2      eeh #endif
   1048   1.2      eeh 		bus_dmamap_unload(t, map);
   1049   1.2      eeh 	}
   1050  1.12      eeh #if 1
   1051  1.12      eeh 	/*
   1052  1.12      eeh 	 * Make sure that on error condition we return "no valid mappings".
   1053  1.12      eeh 	 */
   1054  1.12      eeh 	map->dm_nsegs = 0;
   1055  1.12      eeh 
   1056  1.12      eeh 	if (buflen > map->_dm_size)
   1057  1.12      eeh #ifdef DEBUG
   1058  1.12      eeh 	{
   1059  1.12      eeh 		printf("_bus_dmamap_load(): error %d > %d -- map size exceeded!\n", buflen, map->_dm_size);
   1060  1.12      eeh 		Debugger();
   1061  1.12      eeh 		return (EINVAL);
   1062  1.12      eeh 	}
   1063  1.12      eeh #else
   1064  1.12      eeh 		return (EINVAL);
   1065  1.12      eeh #endif
   1066  1.12      eeh 
   1067  1.12      eeh 	sgsize = round_page(buflen + ((int)vaddr & PGOFSET));
   1068  1.12      eeh 
   1069  1.12      eeh 	/*
   1070  1.12      eeh 	 * XXX Need to implement "don't dma across this boundry".
   1071  1.12      eeh 	 */
   1072  1.12      eeh 
   1073  1.12      eeh 	s = splhigh();
   1074  1.12      eeh 	err = extent_alloc(sc->sc_dvmamap, sgsize, NBPG,
   1075  1.12      eeh 			     map->_dm_boundary, EX_NOWAIT, (u_long *)&dvmaddr);
   1076  1.12      eeh 	splx(s);
   1077  1.12      eeh 
   1078  1.12      eeh 	if (err != 0)
   1079  1.12      eeh 		return (err);
   1080  1.12      eeh 
   1081  1.12      eeh #ifdef DEBUG
   1082  1.12      eeh 	if (dvmaddr == (bus_addr_t)-1)
   1083  1.12      eeh 	{
   1084  1.12      eeh 		printf("_bus_dmamap_load(): dvmamap_alloc(%d, %x) failed!\n", sgsize, flags);
   1085  1.12      eeh 		Debugger();
   1086  1.12      eeh 	}
   1087  1.12      eeh #endif
   1088  1.12      eeh 	if (dvmaddr == (bus_addr_t)-1)
   1089  1.12      eeh 		return (ENOMEM);
   1090  1.12      eeh 
   1091  1.12      eeh 	/*
   1092  1.12      eeh 	 * We always use just one segment.
   1093  1.12      eeh 	 */
   1094  1.12      eeh 	map->dm_mapsize = buflen;
   1095  1.12      eeh 	map->dm_nsegs = 1;
   1096  1.12      eeh 	map->dm_segs[0].ds_addr = dvmaddr + (vaddr & PGOFSET);
   1097  1.12      eeh 	map->dm_segs[0].ds_len = sgsize;
   1098  1.12      eeh 
   1099  1.12      eeh #else
   1100   1.1      eeh 	if ((err = bus_dmamap_load(t->_parent, map, buf, buflen, p, flags)))
   1101   1.1      eeh 		return (err);
   1102  1.12      eeh #endif
   1103   1.1      eeh 	if (p != NULL)
   1104   1.1      eeh 		pmap = p->p_vmspace->vm_map.pmap;
   1105   1.1      eeh 	else
   1106   1.1      eeh 		pmap = pmap_kernel();
   1107   1.1      eeh 
   1108   1.2      eeh 	dvmaddr = trunc_page(map->dm_segs[0].ds_addr);
   1109   1.1      eeh 	sgsize = round_page(buflen + ((int)vaddr & PGOFSET));
   1110   1.1      eeh 	for (; buflen > 0; ) {
   1111   1.1      eeh 		/*
   1112   1.1      eeh 		 * Get the physical address for this page.
   1113   1.1      eeh 		 */
   1114   1.3      eeh 		if ((curaddr = (bus_addr_t)pmap_extract(pmap, (vaddr_t)vaddr)) == NULL) {
   1115   1.1      eeh 			bus_dmamap_unload(t, map);
   1116   1.1      eeh 			return (-1);
   1117   1.1      eeh 		}
   1118   1.1      eeh 
   1119   1.1      eeh 		/*
   1120   1.1      eeh 		 * Compute the segment size, and adjust counts.
   1121   1.1      eeh 		 */
   1122   1.1      eeh 		sgsize = NBPG - ((u_long)vaddr & PGOFSET);
   1123   1.1      eeh 		if (buflen < sgsize)
   1124   1.1      eeh 			sgsize = buflen;
   1125   1.1      eeh 
   1126   1.2      eeh #ifdef DEBUG
   1127   1.2      eeh 		if (sbusdebug & SDB_DVMA)
   1128   1.8      eeh 			printf("sbus_dmamap_load: map %p loading va %lx at pa %lx\n",
   1129   1.8      eeh 			       map, (long)dvmaddr, (long)(curaddr & ~(NBPG-1)));
   1130   1.2      eeh #endif
   1131   1.2      eeh 		sbus_enter(sc, trunc_page(dvmaddr), trunc_page(curaddr), flags);
   1132   1.1      eeh 
   1133   1.1      eeh 		dvmaddr += PAGE_SIZE;
   1134   1.1      eeh 		vaddr += sgsize;
   1135   1.1      eeh 		buflen -= sgsize;
   1136   1.1      eeh 	}
   1137   1.1      eeh 	return (0);
   1138   1.1      eeh }
   1139   1.1      eeh 
   1140   1.1      eeh void
   1141   1.1      eeh sbus_dmamap_unload(t, map)
   1142   1.1      eeh 	bus_dma_tag_t t;
   1143   1.1      eeh 	bus_dmamap_t map;
   1144   1.1      eeh {
   1145   1.3      eeh 	vaddr_t addr;
   1146  1.12      eeh 	int len, error, s;
   1147  1.12      eeh 	bus_addr_t dvmaddr;
   1148  1.12      eeh 	bus_size_t sgsize;
   1149   1.1      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1150   1.1      eeh 
   1151   1.1      eeh 	if (map->dm_nsegs != 1)
   1152   1.1      eeh 		panic("_sbus_dmamap_unload: nsegs = %d", map->dm_nsegs);
   1153   1.1      eeh 
   1154   1.2      eeh 	addr = trunc_page(map->dm_segs[0].ds_addr);
   1155   1.1      eeh 	len = map->dm_segs[0].ds_len;
   1156   1.1      eeh 
   1157   1.2      eeh #ifdef DEBUG
   1158   1.2      eeh 	if (sbusdebug & SDB_DVMA)
   1159   1.8      eeh 		printf("sbus_dmamap_unload: map %p removing va %lx size %lx\n",
   1160   1.8      eeh 		       map, (long)addr, (long)len);
   1161   1.2      eeh #endif
   1162   1.1      eeh 	sbus_remove(sc, addr, len);
   1163  1.12      eeh #if 1
   1164  1.12      eeh 	dvmaddr = (map->dm_segs[0].ds_addr & ~PGOFSET);
   1165  1.12      eeh 	sgsize = map->dm_segs[0].ds_len;
   1166  1.12      eeh 
   1167  1.12      eeh 	/* Mark the mappings as invalid. */
   1168  1.12      eeh 	map->dm_mapsize = 0;
   1169  1.12      eeh 	map->dm_nsegs = 0;
   1170  1.12      eeh 
   1171  1.12      eeh 	/* Unmapping is bus dependent */
   1172  1.12      eeh 	s = splhigh();
   1173  1.12      eeh 	error = extent_free(sc->sc_dvmamap, dvmaddr, sgsize, EX_NOWAIT);
   1174  1.12      eeh 	splx(s);
   1175  1.12      eeh 	if (error != 0)
   1176  1.12      eeh 		printf("warning: %ld of DVMA space lost\n", (long)sgsize);
   1177  1.12      eeh 
   1178  1.12      eeh 	cache_flush((caddr_t)dvmaddr, (u_int) sgsize);
   1179  1.12      eeh #else
   1180   1.1      eeh 	bus_dmamap_unload(t->_parent, map);
   1181  1.12      eeh #endif
   1182   1.1      eeh }
   1183   1.1      eeh 
   1184   1.1      eeh 
   1185   1.1      eeh void
   1186   1.1      eeh sbus_dmamap_sync(t, map, offset, len, ops)
   1187   1.1      eeh 	bus_dma_tag_t t;
   1188   1.1      eeh 	bus_dmamap_t map;
   1189   1.1      eeh 	bus_addr_t offset;
   1190   1.1      eeh 	bus_size_t len;
   1191   1.1      eeh 	int ops;
   1192   1.1      eeh {
   1193   1.1      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1194   1.3      eeh 	vaddr_t va = map->dm_segs[0].ds_addr + offset;
   1195   1.1      eeh 
   1196   1.1      eeh 	/*
   1197   1.1      eeh 	 * We only support one DMA segment; supporting more makes this code
   1198   1.1      eeh          * too unweildy.
   1199   1.1      eeh 	 */
   1200   1.1      eeh 
   1201   1.8      eeh 	if (ops&BUS_DMASYNC_PREREAD) {
   1202   1.8      eeh #ifdef DEBUG
   1203   1.8      eeh 		if (sbusdebug & SDB_DVMA)
   1204   1.8      eeh 			printf("sbus_dmamap_sync: syncing va %p len %lu BUS_DMASYNC_PREREAD\n",
   1205   1.8      eeh 			       (long)va, (u_long)len);
   1206   1.8      eeh #endif
   1207   1.8      eeh 
   1208   1.1      eeh 		/* Nothing to do */;
   1209   1.8      eeh 	}
   1210   1.1      eeh 	if (ops&BUS_DMASYNC_POSTREAD) {
   1211   1.1      eeh 		/*
   1212   1.1      eeh 		 * We should sync the IOMMU streaming caches here first.
   1213   1.1      eeh 		 */
   1214   1.8      eeh #ifdef DEBUG
   1215   1.8      eeh 		if (sbusdebug & SDB_DVMA)
   1216   1.8      eeh 			printf("sbus_dmamap_sync: syncing va %p len %lu BUS_DMASYNC_POSTREAD\n",
   1217   1.8      eeh 			       (long)va, (u_long)len);
   1218   1.8      eeh #endif
   1219   1.1      eeh 		while (len > 0) {
   1220   1.1      eeh 
   1221   1.1      eeh 			/*
   1222   1.1      eeh 			 * Streaming buffer flushes:
   1223   1.1      eeh 			 *
   1224   1.1      eeh 			 *   1 Tell strbuf to flush by storing va to strbuf_pgflush
   1225   1.1      eeh 			 * If we're not on a cache line boundary (64-bits):
   1226   1.1      eeh 			 *   2 Store 0 in flag
   1227   1.1      eeh 			 *   3 Store pointer to flag in flushsync
   1228   1.1      eeh 			 *   4 wait till flushsync becomes 0x1
   1229   1.1      eeh 			 *
   1230   1.1      eeh 			 * If it takes more than .5 sec, something went wrong.
   1231   1.1      eeh 			 */
   1232   1.8      eeh #ifdef DEBUG
   1233   1.8      eeh 			if (sbusdebug & SDB_DVMA)
   1234   1.8      eeh 				printf("sbus_dmamap_sync: flushing va %p, %lu bytes left\n",
   1235   1.8      eeh 				       (long)va, (u_long)len);
   1236   1.8      eeh #endif
   1237   1.8      eeh #if 1
   1238   1.8      eeh 			bus_space_write_8(sc->sc_bustag, &sc->sc_sysio->sys_strbuf.strbuf_pgflush, 0, va);
   1239   1.1      eeh #else
   1240   1.1      eeh 			stxa(&(sc->sc_sysio->sys_strbuf.strbuf_pgflush), ASI_NUCLEUS, va);
   1241   1.1      eeh #endif
   1242   1.1      eeh 			if (len <= NBPG) {
   1243   1.1      eeh 				sbus_flush(sc);
   1244   1.8      eeh 				len = 0;
   1245   1.8      eeh 			} else
   1246   1.8      eeh 				len -= NBPG;
   1247   1.1      eeh 			va += NBPG;
   1248   1.1      eeh 		}
   1249   1.1      eeh 	}
   1250   1.8      eeh 	if (ops&BUS_DMASYNC_PREWRITE) {
   1251   1.8      eeh #ifdef DEBUG
   1252   1.8      eeh 		if (sbusdebug & SDB_DVMA)
   1253   1.8      eeh 			printf("sbus_dmamap_sync: syncing va %p len %lu BUS_DMASYNC_PREWRITE\n",
   1254   1.8      eeh 			       (long)va, (u_long)len);
   1255   1.8      eeh #endif
   1256   1.1      eeh 		/* Nothing to do */;
   1257   1.8      eeh 	}
   1258   1.8      eeh 	if (ops&BUS_DMASYNC_POSTWRITE) {
   1259   1.8      eeh #ifdef DEBUG
   1260   1.8      eeh 		if (sbusdebug & SDB_DVMA)
   1261   1.8      eeh 			printf("sbus_dmamap_sync: syncing va %p len %lu BUS_DMASYNC_POSTWRITE\n",
   1262   1.8      eeh 			       (long)va, (u_long)len);
   1263   1.8      eeh #endif
   1264   1.8      eeh 		/* Nothing to do */;
   1265   1.8      eeh 	}
   1266   1.1      eeh 	bus_dmamap_sync(t->_parent, map, offset, len, ops);
   1267   1.1      eeh }
   1268   1.1      eeh 
   1269   1.8      eeh 
   1270   1.8      eeh /*
   1271   1.8      eeh  * Take memory allocated by our parent bus and generate DVMA mappings for it.
   1272   1.8      eeh  */
   1273   1.1      eeh int
   1274   1.1      eeh sbus_dmamem_alloc(t, size, alignment, boundary, segs, nsegs, rsegs, flags)
   1275   1.1      eeh 	bus_dma_tag_t t;
   1276   1.1      eeh 	bus_size_t size, alignment, boundary;
   1277   1.1      eeh 	bus_dma_segment_t *segs;
   1278   1.1      eeh 	int nsegs;
   1279   1.1      eeh 	int *rsegs;
   1280   1.1      eeh 	int flags;
   1281   1.1      eeh {
   1282   1.3      eeh 	paddr_t curaddr;
   1283  1.12      eeh 	u_long dvmaddr;
   1284   1.1      eeh 	vm_page_t m;
   1285   1.1      eeh 	struct pglist *mlist;
   1286   1.1      eeh 	int error;
   1287  1.12      eeh 	int n, s;
   1288   1.1      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1289   1.1      eeh 
   1290   1.1      eeh 	if ((error = bus_dmamem_alloc(t->_parent, size, alignment,
   1291   1.1      eeh 				     boundary, segs, nsegs, rsegs, flags)))
   1292   1.1      eeh 		return (error);
   1293   1.1      eeh 
   1294   1.8      eeh 	/*
   1295   1.8      eeh 	 * Allocate a DVMA mapping for our new memory.
   1296   1.8      eeh 	 */
   1297   1.1      eeh 	for (n=0; n<*rsegs; n++) {
   1298  1.12      eeh #if 1
   1299  1.12      eeh 		s = splhigh();
   1300  1.12      eeh 		if (extent_alloc(sc->sc_dvmamap, segs[0].ds_len, alignment,
   1301  1.12      eeh 				 boundary, EX_NOWAIT, (u_long *)&dvmaddr)) {
   1302  1.12      eeh 			splx(s);
   1303  1.12      eeh 				/* Free what we got and exit */
   1304  1.12      eeh 			bus_dmamem_free(t->_parent, segs, nsegs);
   1305  1.12      eeh 			return (ENOMEM);
   1306  1.12      eeh 		}
   1307  1.12      eeh 		splx(s);
   1308  1.12      eeh #else
   1309   1.8      eeh 		dvmaddr = dvmamap_alloc(segs[0].ds_len, flags);
   1310   1.8      eeh 		if (dvmaddr == (bus_addr_t)-1) {
   1311   1.8      eeh 			/* Free what we got and exit */
   1312   1.8      eeh 			bus_dmamem_free(t->_parent, segs, nsegs);
   1313   1.8      eeh 			return (ENOMEM);
   1314   1.8      eeh 		}
   1315  1.12      eeh #endif
   1316   1.8      eeh 		segs[n].ds_addr = dvmaddr;
   1317   1.1      eeh 		size = segs[n].ds_len;
   1318   1.1      eeh 		mlist = segs[n]._ds_mlist;
   1319   1.1      eeh 
   1320   1.1      eeh 		/* Map memory into DVMA space */
   1321   1.1      eeh 		for (m = mlist->tqh_first; m != NULL; m = m->pageq.tqe_next) {
   1322   1.1      eeh 			curaddr = VM_PAGE_TO_PHYS(m);
   1323  1.12      eeh #ifdef DEBUG
   1324  1.12      eeh 			if (sbusdebug & SDB_DVMA)
   1325  1.12      eeh 				printf("sbus_dmamem_alloc: map %p loading va %lx at pa %lx\n",
   1326  1.12      eeh 				       (long)m, (long)dvmaddr, (long)(curaddr & ~(NBPG-1)));
   1327  1.12      eeh #endif
   1328   1.2      eeh 			sbus_enter(sc, dvmaddr, curaddr, flags);
   1329   1.1      eeh 			dvmaddr += PAGE_SIZE;
   1330   1.1      eeh 		}
   1331   1.1      eeh 	}
   1332   1.1      eeh 	return (0);
   1333   1.1      eeh }
   1334   1.1      eeh 
   1335   1.1      eeh void
   1336   1.1      eeh sbus_dmamem_free(t, segs, nsegs)
   1337   1.1      eeh 	bus_dma_tag_t t;
   1338   1.1      eeh 	bus_dma_segment_t *segs;
   1339   1.1      eeh 	int nsegs;
   1340   1.1      eeh {
   1341   1.3      eeh 	vaddr_t addr;
   1342   1.2      eeh 	int len;
   1343  1.12      eeh 	int n, s, error;
   1344   1.1      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1345   1.1      eeh 
   1346   1.1      eeh 
   1347   1.1      eeh 	for (n=0; n<nsegs; n++) {
   1348   1.1      eeh 		addr = segs[n].ds_addr;
   1349   1.1      eeh 		len = segs[n].ds_len;
   1350   1.1      eeh 		sbus_remove(sc, addr, len);
   1351  1.12      eeh #if 1
   1352  1.12      eeh 		s = splhigh();
   1353  1.12      eeh 		error = extent_free(sc->sc_dvmamap, addr, len, EX_NOWAIT);
   1354  1.12      eeh 		splx(s);
   1355  1.12      eeh 		if (error != 0)
   1356  1.12      eeh 			printf("warning: %ld of DVMA space lost\n", (long)len);
   1357  1.12      eeh #else
   1358   1.8      eeh 		dvmamap_free(addr, len);
   1359  1.12      eeh #endif
   1360   1.1      eeh 	}
   1361   1.1      eeh 	bus_dmamem_free(t->_parent, segs, nsegs);
   1362   1.1      eeh }
   1363   1.1      eeh 
   1364   1.2      eeh /*
   1365   1.8      eeh  * Map the DVMA mappings into the kernel pmap.
   1366   1.2      eeh  * Check the flags to see whether we're streaming or coherent.
   1367   1.2      eeh  */
   1368   1.2      eeh int
   1369   1.2      eeh sbus_dmamem_map(t, segs, nsegs, size, kvap, flags)
   1370   1.2      eeh 	bus_dma_tag_t t;
   1371   1.2      eeh 	bus_dma_segment_t *segs;
   1372   1.2      eeh 	int nsegs;
   1373   1.2      eeh 	size_t size;
   1374   1.2      eeh 	caddr_t *kvap;
   1375   1.2      eeh 	int flags;
   1376   1.2      eeh {
   1377   1.2      eeh 	vm_page_t m;
   1378   1.3      eeh 	vaddr_t va;
   1379   1.2      eeh 	bus_addr_t addr;
   1380   1.2      eeh 	struct pglist *mlist;
   1381   1.2      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1382   1.3      eeh 	int cbit;
   1383   1.2      eeh 
   1384   1.2      eeh 	/*
   1385   1.2      eeh 	 * digest flags:
   1386   1.2      eeh 	 */
   1387   1.2      eeh 	cbit = 0;
   1388   1.2      eeh 	if (flags & BUS_DMA_COHERENT)	/* Disable vcache */
   1389   1.2      eeh 		cbit |= PMAP_NVC;
   1390   1.3      eeh 	if (flags & BUS_DMA_NOCACHE)	/* sideffects */
   1391   1.2      eeh 		cbit |= PMAP_NC;
   1392   1.2      eeh 	/*
   1393   1.8      eeh 	 * Now take this and map it into the CPU since it should already
   1394   1.8      eeh 	 * be in the the IOMMU.
   1395   1.2      eeh 	 */
   1396   1.8      eeh 	*kvap = (caddr_t)va = segs[0].ds_addr;
   1397   1.2      eeh 	mlist = segs[0]._ds_mlist;
   1398   1.2      eeh 	for (m = mlist->tqh_first; m != NULL; m = m->pageq.tqe_next) {
   1399   1.2      eeh 
   1400   1.2      eeh 		if (size == 0)
   1401   1.2      eeh 			panic("_bus_dmamem_map: size botch");
   1402   1.2      eeh 
   1403   1.2      eeh 		addr = VM_PAGE_TO_PHYS(m);
   1404   1.2      eeh 		pmap_enter(pmap_kernel(), va, addr | cbit,
   1405  1.11  mycroft 		    VM_PROT_READ | VM_PROT_WRITE, TRUE, 0);
   1406   1.2      eeh 		va += PAGE_SIZE;
   1407   1.2      eeh 		size -= PAGE_SIZE;
   1408   1.2      eeh 	}
   1409   1.2      eeh 
   1410   1.2      eeh 	return (0);
   1411   1.2      eeh }
   1412   1.2      eeh 
   1413   1.2      eeh /*
   1414   1.8      eeh  * Unmap DVMA mappings from kernel
   1415   1.2      eeh  */
   1416   1.2      eeh void
   1417   1.2      eeh sbus_dmamem_unmap(t, kva, size)
   1418   1.2      eeh 	bus_dma_tag_t t;
   1419   1.2      eeh 	caddr_t kva;
   1420   1.2      eeh 	size_t size;
   1421   1.2      eeh {
   1422   1.2      eeh 	struct sbus_softc *sc = (struct sbus_softc *)t->_cookie;
   1423   1.2      eeh 
   1424   1.2      eeh #ifdef DIAGNOSTIC
   1425   1.2      eeh 	if ((u_long)kva & PGOFSET)
   1426   1.2      eeh 		panic("_bus_dmamem_unmap");
   1427   1.2      eeh #endif
   1428   1.2      eeh 
   1429   1.2      eeh 	size = round_page(size);
   1430   1.8      eeh 	pmap_remove(pmap_kernel(), (vaddr_t)kva, size);
   1431   1.2      eeh }
   1432