Home | History | Annotate | Line # | Download | only in dev
iommu.c revision 1.58
      1  1.58      chs /*	$NetBSD: iommu.c,v 1.58 2002/09/22 07:19:43 chs Exp $	*/
      2   1.7      mrg 
      3   1.7      mrg /*
      4  1.48      eeh  * Copyright (c) 2001, 2002 Eduardo Horvath
      5   1.7      mrg  * Copyright (c) 1999, 2000 Matthew R. Green
      6   1.7      mrg  * All rights reserved.
      7   1.7      mrg  *
      8   1.7      mrg  * Redistribution and use in source and binary forms, with or without
      9   1.7      mrg  * modification, are permitted provided that the following conditions
     10   1.7      mrg  * are met:
     11   1.7      mrg  * 1. Redistributions of source code must retain the above copyright
     12   1.7      mrg  *    notice, this list of conditions and the following disclaimer.
     13   1.7      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.7      mrg  *    notice, this list of conditions and the following disclaimer in the
     15   1.7      mrg  *    documentation and/or other materials provided with the distribution.
     16   1.7      mrg  * 3. The name of the author may not be used to endorse or promote products
     17   1.7      mrg  *    derived from this software without specific prior written permission.
     18   1.7      mrg  *
     19   1.7      mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20   1.7      mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     21   1.7      mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22   1.7      mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     23   1.7      mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     24   1.7      mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     25   1.7      mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     26   1.7      mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     27   1.7      mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.7      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.7      mrg  * SUCH DAMAGE.
     30   1.7      mrg  */
     31   1.1      mrg 
     32   1.7      mrg /*
     33   1.7      mrg  * UltraSPARC IOMMU support; used by both the sbus and pci code.
     34   1.7      mrg  */
     35   1.4      mrg #include "opt_ddb.h"
     36   1.4      mrg 
     37   1.1      mrg #include <sys/param.h>
     38   1.1      mrg #include <sys/extent.h>
     39   1.1      mrg #include <sys/malloc.h>
     40   1.1      mrg #include <sys/systm.h>
     41   1.1      mrg #include <sys/device.h>
     42  1.41      chs #include <sys/proc.h>
     43  1.18      mrg 
     44  1.18      mrg #include <uvm/uvm_extern.h>
     45   1.1      mrg 
     46   1.1      mrg #include <machine/bus.h>
     47   1.7      mrg #include <sparc64/sparc64/cache.h>
     48   1.1      mrg #include <sparc64/dev/iommureg.h>
     49   1.1      mrg #include <sparc64/dev/iommuvar.h>
     50   1.1      mrg 
     51   1.1      mrg #include <machine/autoconf.h>
     52   1.1      mrg #include <machine/cpu.h>
     53   1.1      mrg 
     54   1.1      mrg #ifdef DEBUG
     55  1.22      mrg #define IDB_BUSDMA	0x1
     56  1.22      mrg #define IDB_IOMMU	0x2
     57  1.22      mrg #define IDB_INFO	0x4
     58  1.36      eeh #define	IDB_SYNC	0x8
     59  1.10      mrg int iommudebug = 0x0;
     60   1.4      mrg #define DPRINTF(l, s)   do { if (iommudebug & l) printf s; } while (0)
     61   1.4      mrg #else
     62   1.4      mrg #define DPRINTF(l, s)
     63   1.1      mrg #endif
     64   1.1      mrg 
     65  1.55      eeh #define iommu_strbuf_flush(i, v) do {					\
     66  1.55      eeh 	if ((i)->sb_flush)						\
     67  1.55      eeh 		bus_space_write_8((i)->sb_is->is_bustag, (i)->sb_sb,	\
     68  1.50      eeh 			STRBUFREG(strbuf_pgflush), (v));		\
     69  1.42      eeh 	} while (0)
     70  1.42      eeh 
     71  1.55      eeh static	int iommu_strbuf_flush_done __P((struct strbuf_ctl *));
     72  1.11      eeh 
     73   1.1      mrg /*
     74   1.1      mrg  * initialise the UltraSPARC IOMMU (SBUS or PCI):
     75   1.1      mrg  *	- allocate and setup the iotsb.
     76   1.1      mrg  *	- enable the IOMMU
     77   1.7      mrg  *	- initialise the streaming buffers (if they exist)
     78   1.1      mrg  *	- create a private DVMA map.
     79   1.1      mrg  */
     80   1.1      mrg void
     81  1.36      eeh iommu_init(name, is, tsbsize, iovabase)
     82   1.1      mrg 	char *name;
     83   1.1      mrg 	struct iommu_state *is;
     84   1.1      mrg 	int tsbsize;
     85  1.36      eeh 	u_int32_t iovabase;
     86   1.1      mrg {
     87  1.11      eeh 	psize_t size;
     88  1.11      eeh 	vaddr_t va;
     89  1.11      eeh 	paddr_t pa;
     90  1.58      chs 	struct vm_page *pg;
     91  1.58      chs 	struct pglist pglist;
     92   1.1      mrg 
     93   1.1      mrg 	/*
     94   1.1      mrg 	 * Setup the iommu.
     95   1.1      mrg 	 *
     96  1.45      eeh 	 * The sun4u iommu is part of the SBUS or PCI controller so we will
     97  1.45      eeh 	 * deal with it here..
     98   1.1      mrg 	 *
     99  1.45      eeh 	 * For sysio and psycho/psycho+ the IOMMU address space always ends at
    100  1.45      eeh 	 * 0xffffe000, but the starting address depends on the size of the
    101  1.45      eeh 	 * map.  The map size is 1024 * 2 ^ is->is_tsbsize entries, where each
    102  1.45      eeh 	 * entry is 8 bytes.  The start of the map can be calculated by
    103  1.45      eeh 	 * (0xffffe000 << (8 + is->is_tsbsize)).
    104  1.45      eeh 	 *
    105  1.45      eeh 	 * But sabre and hummingbird use a different scheme that seems to
    106  1.45      eeh 	 * be hard-wired, so we read the start and size from the PROM and
    107  1.45      eeh 	 * just use those values.
    108   1.2      eeh 	 */
    109  1.11      eeh 	is->is_cr = (tsbsize << 16) | IOMMUCR_EN;
    110  1.11      eeh 	is->is_tsbsize = tsbsize;
    111  1.45      eeh 	if (iovabase == -1) {
    112  1.45      eeh 		is->is_dvmabase = IOTSB_VSTART(is->is_tsbsize);
    113  1.45      eeh 		is->is_dvmaend = IOTSB_VEND;
    114  1.45      eeh 	} else {
    115  1.45      eeh 		is->is_dvmabase = iovabase;
    116  1.45      eeh 		is->is_dvmaend = iovabase + IOTSB_VSIZE(tsbsize);
    117  1.45      eeh 	}
    118  1.11      eeh 
    119  1.11      eeh 	/*
    120  1.15      eeh 	 * Allocate memory for I/O pagetables.  They need to be physically
    121  1.15      eeh 	 * contiguous.
    122  1.11      eeh 	 */
    123  1.11      eeh 
    124  1.58      chs 	size = NBPG << is->is_tsbsize;
    125  1.11      eeh 	if (uvm_pglistalloc((psize_t)size, (paddr_t)0, (paddr_t)-1,
    126  1.58      chs 		(paddr_t)NBPG, (paddr_t)0, &pglist, 1, 0) != 0)
    127  1.11      eeh 		panic("iommu_init: no memory");
    128  1.11      eeh 
    129  1.11      eeh 	va = uvm_km_valloc(kernel_map, size);
    130  1.11      eeh 	if (va == 0)
    131  1.11      eeh 		panic("iommu_init: no memory");
    132  1.11      eeh 	is->is_tsb = (int64_t *)va;
    133  1.11      eeh 
    134  1.58      chs 	is->is_ptsb = VM_PAGE_TO_PHYS(TAILQ_FIRST(&pglist));
    135  1.11      eeh 
    136  1.11      eeh 	/* Map the pages */
    137  1.58      chs 	TAILQ_FOREACH(pg, &pglist, pageq) {
    138  1.58      chs 		pa = VM_PAGE_TO_PHYS(pg);
    139  1.58      chs 		pmap_kenter_pa(va, pa | PMAP_NVC, VM_PROT_READ | VM_PROT_WRITE);
    140  1.11      eeh 		va += NBPG;
    141  1.11      eeh 	}
    142  1.38    chris 	pmap_update(pmap_kernel());
    143  1.58      chs 	memset(is->is_tsb, 0, size);
    144   1.1      mrg 
    145   1.1      mrg #ifdef DEBUG
    146  1.22      mrg 	if (iommudebug & IDB_INFO)
    147   1.1      mrg 	{
    148   1.1      mrg 		/* Probe the iommu */
    149   1.1      mrg 
    150  1.25      mrg 		printf("iommu regs at: cr=%lx tsb=%lx flush=%lx\n",
    151  1.50      eeh 			(u_long)bus_space_read_8(is->is_bustag, is->is_iommu,
    152  1.50      eeh 				offsetof (struct iommureg, iommu_cr)),
    153  1.50      eeh 			(u_long)bus_space_read_8(is->is_bustag, is->is_iommu,
    154  1.50      eeh 				offsetof (struct iommureg, iommu_tsb)),
    155  1.50      eeh 			(u_long)bus_space_read_8(is->is_bustag, is->is_iommu,
    156  1.50      eeh 				offsetof (struct iommureg, iommu_flush)));
    157  1.50      eeh 		printf("iommu cr=%llx tsb=%llx\n",
    158  1.50      eeh 			(unsigned long long)bus_space_read_8(is->is_bustag,
    159  1.50      eeh 				is->is_iommu,
    160  1.50      eeh 				offsetof (struct iommureg, iommu_cr)),
    161  1.50      eeh 			(unsigned long long)bus_space_read_8(is->is_bustag,
    162  1.50      eeh 				is->is_iommu,
    163  1.50      eeh 				offsetof (struct iommureg, iommu_tsb)));
    164  1.58      chs 		printf("TSB base %p phys %llx\n", (void *)is->is_tsb,
    165  1.50      eeh 			(unsigned long long)is->is_ptsb);
    166   1.1      mrg 		delay(1000000); /* 1 s */
    167   1.1      mrg 	}
    168   1.1      mrg #endif
    169   1.1      mrg 
    170   1.1      mrg 	/*
    171   1.1      mrg 	 * now actually start up the IOMMU
    172   1.1      mrg 	 */
    173   1.1      mrg 	iommu_reset(is);
    174   1.1      mrg 
    175   1.1      mrg 	/*
    176   1.1      mrg 	 * Now all the hardware's working we need to allocate a dvma map.
    177   1.1      mrg 	 */
    178  1.58      chs 	printf("DVMA map: %x to %x\n",
    179  1.11      eeh 		(unsigned int)is->is_dvmabase,
    180  1.45      eeh 		(unsigned int)is->is_dvmaend);
    181  1.58      chs 	printf("IOTSB: %llx to %llx\n",
    182  1.47      eeh 		(unsigned long long)is->is_ptsb,
    183  1.47      eeh 		(unsigned long long)(is->is_ptsb + size));
    184   1.1      mrg 	is->is_dvmamap = extent_create(name,
    185  1.45      eeh 				       is->is_dvmabase, is->is_dvmaend - NBPG,
    186   1.1      mrg 				       M_DEVBUF, 0, 0, EX_NOWAIT);
    187   1.1      mrg }
    188   1.1      mrg 
    189   1.8      mrg /*
    190   1.8      mrg  * Streaming buffers don't exist on the UltraSPARC IIi; we should have
    191   1.8      mrg  * detected that already and disabled them.  If not, we will notice that
    192   1.8      mrg  * they aren't there when the STRBUF_EN bit does not remain.
    193   1.8      mrg  */
    194   1.1      mrg void
    195   1.1      mrg iommu_reset(is)
    196   1.1      mrg 	struct iommu_state *is;
    197   1.1      mrg {
    198  1.45      eeh 	int i;
    199  1.55      eeh 	struct strbuf_ctl *sb;
    200   1.1      mrg 
    201   1.1      mrg 	/* Need to do 64-bit stores */
    202  1.58      chs 	bus_space_write_8(is->is_bustag, is->is_iommu, IOMMUREG(iommu_tsb),
    203  1.50      eeh 		is->is_ptsb);
    204  1.50      eeh 
    205  1.11      eeh 	/* Enable IOMMU in diagnostic mode */
    206  1.50      eeh 	bus_space_write_8(is->is_bustag, is->is_iommu, IOMMUREG(iommu_cr),
    207  1.50      eeh 		is->is_cr|IOMMUCR_DE);
    208  1.11      eeh 
    209  1.58      chs 	for (i = 0; i < 2; i++) {
    210  1.55      eeh 		if ((sb = is->is_sb[i])) {
    211   1.5      mrg 
    212  1.45      eeh 			/* Enable diagnostics mode? */
    213  1.58      chs 			bus_space_write_8(is->is_bustag, is->is_sb[i]->sb_sb,
    214  1.50      eeh 				STRBUFREG(strbuf_ctl), STRBUF_EN);
    215  1.45      eeh 
    216  1.45      eeh 			/* No streaming buffers? Disable them */
    217  1.58      chs 			if (bus_space_read_8(is->is_bustag,
    218  1.58      chs 				is->is_sb[i]->sb_sb,
    219  1.55      eeh 				STRBUFREG(strbuf_ctl)) == 0) {
    220  1.55      eeh 				is->is_sb[i]->sb_flush = NULL;
    221  1.55      eeh 			} else {
    222  1.58      chs 
    223  1.55      eeh 				/*
    224  1.55      eeh 				 * locate the pa of the flush buffer.
    225  1.55      eeh 				 */
    226  1.55      eeh 				(void)pmap_extract(pmap_kernel(),
    227  1.55      eeh 					(vaddr_t)is->is_sb[i]->sb_flush,
    228  1.55      eeh 					&is->is_sb[i]->sb_flushpa);
    229  1.55      eeh 			}
    230  1.45      eeh 		}
    231  1.42      eeh 	}
    232   1.2      eeh }
    233   1.2      eeh 
    234   1.2      eeh /*
    235  1.58      chs  * Here are the iommu control routines.
    236   1.2      eeh  */
    237   1.2      eeh void
    238  1.55      eeh iommu_enter(sb, va, pa, flags)
    239  1.55      eeh 	struct strbuf_ctl *sb;
    240   1.2      eeh 	vaddr_t va;
    241   1.2      eeh 	int64_t pa;
    242   1.2      eeh 	int flags;
    243   1.2      eeh {
    244  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    245  1.55      eeh 	int strbuf = (flags & BUS_DMA_STREAMING);
    246   1.2      eeh 	int64_t tte;
    247   1.2      eeh 
    248   1.2      eeh #ifdef DIAGNOSTIC
    249  1.45      eeh 	if (va < is->is_dvmabase || va > is->is_dvmaend)
    250  1.13      mrg 		panic("iommu_enter: va %#lx not in DVMA space", va);
    251   1.2      eeh #endif
    252   1.2      eeh 
    253  1.55      eeh 	/* Is the streamcache flush really needed? */
    254  1.55      eeh 	if (sb->sb_flush) {
    255  1.55      eeh 		iommu_strbuf_flush(sb, va);
    256  1.55      eeh 		iommu_strbuf_flush_done(sb);
    257  1.55      eeh 	} else
    258  1.55      eeh 		/* If we can't flush the strbuf don't enable it. */
    259  1.55      eeh 		strbuf = 0;
    260  1.55      eeh 
    261  1.58      chs 	tte = MAKEIOTTE(pa, !(flags & BUS_DMA_NOWRITE),
    262  1.55      eeh 		!(flags & BUS_DMA_NOCACHE), (strbuf));
    263  1.50      eeh #ifdef DEBUG
    264  1.50      eeh 	tte |= (flags & 0xff000LL)<<(4*8);
    265  1.50      eeh #endif
    266  1.58      chs 
    267  1.58      chs 	DPRINTF(IDB_IOMMU, ("Clearing TSB slot %d for va %p\n",
    268  1.25      mrg 		       (int)IOTSBSLOT(va,is->is_tsbsize), (void *)(u_long)va));
    269   1.2      eeh 	is->is_tsb[IOTSBSLOT(va,is->is_tsbsize)] = tte;
    270  1.58      chs 	bus_space_write_8(is->is_bustag, is->is_iommu,
    271  1.50      eeh 		IOMMUREG(iommu_flush), va);
    272  1.22      mrg 	DPRINTF(IDB_IOMMU, ("iommu_enter: va %lx pa %lx TSB[%lx]@%p=%lx\n",
    273  1.50      eeh 		va, (long)pa, (u_long)IOTSBSLOT(va,is->is_tsbsize),
    274  1.50      eeh 		(void *)(u_long)&is->is_tsb[IOTSBSLOT(va,is->is_tsbsize)],
    275  1.50      eeh 		(u_long)tte));
    276  1.39      eeh }
    277  1.39      eeh 
    278  1.39      eeh /*
    279  1.39      eeh  * Find the value of a DVMA address (debug routine).
    280  1.39      eeh  */
    281  1.39      eeh paddr_t
    282  1.39      eeh iommu_extract(is, dva)
    283  1.39      eeh 	struct iommu_state *is;
    284  1.39      eeh 	vaddr_t dva;
    285  1.39      eeh {
    286  1.39      eeh 	int64_t tte = 0;
    287  1.58      chs 
    288  1.45      eeh 	if (dva >= is->is_dvmabase && dva < is->is_dvmaend)
    289  1.55      eeh 		tte = is->is_tsb[IOTSBSLOT(dva, is->is_tsbsize)];
    290  1.39      eeh 
    291  1.54      eeh 	if ((tte & IOTTE_V) == 0)
    292  1.39      eeh 		return ((paddr_t)-1L);
    293  1.54      eeh 	return (tte & IOTTE_PAMASK);
    294   1.2      eeh }
    295   1.2      eeh 
    296   1.2      eeh /*
    297   1.2      eeh  * iommu_remove: removes mappings created by iommu_enter
    298   1.2      eeh  *
    299   1.2      eeh  * Only demap from IOMMU if flag is set.
    300   1.8      mrg  *
    301   1.8      mrg  * XXX: this function needs better internal error checking.
    302   1.2      eeh  */
    303   1.2      eeh void
    304   1.2      eeh iommu_remove(is, va, len)
    305   1.2      eeh 	struct iommu_state *is;
    306   1.2      eeh 	vaddr_t va;
    307   1.2      eeh 	size_t len;
    308   1.2      eeh {
    309   1.2      eeh 
    310   1.2      eeh #ifdef DIAGNOSTIC
    311  1.45      eeh 	if (va < is->is_dvmabase || va > is->is_dvmaend)
    312  1.25      mrg 		panic("iommu_remove: va 0x%lx not in DVMA space", (u_long)va);
    313   1.2      eeh 	if ((long)(va + len) < (long)va)
    314  1.58      chs 		panic("iommu_remove: va 0x%lx + len 0x%lx wraps",
    315   1.2      eeh 		      (long) va, (long) len);
    316  1.58      chs 	if (len & ~0xfffffff)
    317  1.25      mrg 		panic("iommu_remove: rediculous len 0x%lx", (u_long)len);
    318   1.2      eeh #endif
    319   1.2      eeh 
    320   1.2      eeh 	va = trunc_page(va);
    321  1.22      mrg 	DPRINTF(IDB_IOMMU, ("iommu_remove: va %lx TSB[%lx]@%p\n",
    322  1.50      eeh 		va, (u_long)IOTSBSLOT(va, is->is_tsbsize),
    323  1.50      eeh 		&is->is_tsb[IOTSBSLOT(va, is->is_tsbsize)]));
    324   1.2      eeh 	while (len > 0) {
    325  1.50      eeh 		DPRINTF(IDB_IOMMU, ("iommu_remove: clearing TSB slot %d "
    326  1.50      eeh 			"for va %p size %lx\n",
    327  1.50      eeh 			(int)IOTSBSLOT(va,is->is_tsbsize), (void *)(u_long)va,
    328  1.50      eeh 			(u_long)len));
    329  1.10      mrg 		if (len <= NBPG)
    330  1.10      mrg 			len = 0;
    331  1.10      mrg 		else
    332   1.8      mrg 			len -= NBPG;
    333   1.8      mrg 
    334  1.47      eeh 		/* XXX Zero-ing the entry would not require RMW */
    335  1.47      eeh 		is->is_tsb[IOTSBSLOT(va,is->is_tsbsize)] &= ~IOTTE_V;
    336  1.58      chs 		bus_space_write_8(is->is_bustag, is->is_iommu,
    337  1.50      eeh 			IOMMUREG(iommu_flush), va);
    338   1.2      eeh 		va += NBPG;
    339   1.2      eeh 	}
    340   1.2      eeh }
    341   1.2      eeh 
    342  1.58      chs static int
    343  1.55      eeh iommu_strbuf_flush_done(sb)
    344  1.55      eeh 	struct strbuf_ctl *sb;
    345   1.2      eeh {
    346  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    347   1.2      eeh 	struct timeval cur, flushtimeout;
    348   1.2      eeh 
    349   1.2      eeh #define BUMPTIME(t, usec) { \
    350   1.2      eeh 	register volatile struct timeval *tp = (t); \
    351   1.2      eeh 	register long us; \
    352   1.2      eeh  \
    353   1.2      eeh 	tp->tv_usec = us = tp->tv_usec + (usec); \
    354   1.2      eeh 	if (us >= 1000000) { \
    355   1.2      eeh 		tp->tv_usec = us - 1000000; \
    356   1.2      eeh 		tp->tv_sec++; \
    357   1.2      eeh 	} \
    358   1.2      eeh }
    359   1.5      mrg 
    360  1.55      eeh 	if (!sb->sb_flush)
    361   1.5      mrg 		return (0);
    362  1.58      chs 
    363   1.7      mrg 	/*
    364   1.7      mrg 	 * Streaming buffer flushes:
    365  1.58      chs 	 *
    366   1.7      mrg 	 *   1 Tell strbuf to flush by storing va to strbuf_pgflush.  If
    367   1.7      mrg 	 *     we're not on a cache line boundary (64-bits):
    368   1.7      mrg 	 *   2 Store 0 in flag
    369   1.7      mrg 	 *   3 Store pointer to flag in flushsync
    370   1.7      mrg 	 *   4 wait till flushsync becomes 0x1
    371   1.7      mrg 	 *
    372   1.7      mrg 	 * If it takes more than .5 sec, something
    373   1.7      mrg 	 * went wrong.
    374   1.7      mrg 	 */
    375   1.2      eeh 
    376  1.55      eeh 	*sb->sb_flush = 0;
    377  1.58      chs 	bus_space_write_8(is->is_bustag, sb->sb_sb,
    378  1.55      eeh 		STRBUFREG(strbuf_flushsync), sb->sb_flushpa);
    379   1.2      eeh 
    380  1.58      chs 	microtime(&flushtimeout);
    381   1.2      eeh 	cur = flushtimeout;
    382   1.2      eeh 	BUMPTIME(&flushtimeout, 500000); /* 1/2 sec */
    383  1.58      chs 
    384  1.55      eeh 	DPRINTF(IDB_IOMMU, ("iommu_strbuf_flush_done: flush = %lx "
    385  1.42      eeh 		"at va = %lx pa = %lx now=%lx:%lx until = %lx:%lx\n",
    386  1.58      chs 		(long)*sb->sb_flush, (long)sb->sb_flush, (long)sb->sb_flushpa,
    387  1.42      eeh 		cur.tv_sec, cur.tv_usec,
    388  1.42      eeh 		flushtimeout.tv_sec, flushtimeout.tv_usec));
    389  1.42      eeh 
    390   1.2      eeh 	/* Bypass non-coherent D$ */
    391  1.55      eeh 	while ((!ldxa(sb->sb_flushpa, ASI_PHYS_CACHED)) &&
    392  1.42      eeh 		((cur.tv_sec <= flushtimeout.tv_sec) &&
    393  1.42      eeh 			(cur.tv_usec <= flushtimeout.tv_usec)))
    394   1.2      eeh 		microtime(&cur);
    395   1.2      eeh 
    396   1.2      eeh #ifdef DIAGNOSTIC
    397  1.55      eeh 	if (!ldxa(sb->sb_flushpa, ASI_PHYS_CACHED)) {
    398  1.55      eeh 		printf("iommu_strbuf_flush_done: flush timeout %p, at %p\n",
    399  1.55      eeh 			(void *)(u_long)*sb->sb_flush,
    400  1.55      eeh 			(void *)(u_long)sb->sb_flushpa); /* panic? */
    401   1.2      eeh #ifdef DDB
    402   1.2      eeh 		Debugger();
    403   1.2      eeh #endif
    404   1.2      eeh 	}
    405   1.2      eeh #endif
    406  1.31      eeh 	DPRINTF(IDB_IOMMU, ("iommu_strbuf_flush_done: flushed\n"));
    407  1.55      eeh 	return (*sb->sb_flush);
    408   1.7      mrg }
    409   1.7      mrg 
    410   1.7      mrg /*
    411   1.7      mrg  * IOMMU DVMA operations, common to SBUS and PCI.
    412   1.7      mrg  */
    413   1.7      mrg int
    414  1.55      eeh iommu_dvmamap_load(t, sb, map, buf, buflen, p, flags)
    415   1.7      mrg 	bus_dma_tag_t t;
    416  1.55      eeh 	struct strbuf_ctl *sb;
    417   1.7      mrg 	bus_dmamap_t map;
    418   1.7      mrg 	void *buf;
    419   1.7      mrg 	bus_size_t buflen;
    420   1.7      mrg 	struct proc *p;
    421   1.7      mrg 	int flags;
    422   1.7      mrg {
    423  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    424   1.7      mrg 	int s;
    425   1.7      mrg 	int err;
    426   1.7      mrg 	bus_size_t sgsize;
    427   1.7      mrg 	paddr_t curaddr;
    428  1.40      eeh 	u_long dvmaddr, sgstart, sgend;
    429  1.21      eeh 	bus_size_t align, boundary;
    430   1.7      mrg 	vaddr_t vaddr = (vaddr_t)buf;
    431  1.40      eeh 	int seg;
    432  1.58      chs 	struct pmap *pmap;
    433   1.7      mrg 
    434   1.7      mrg 	if (map->dm_nsegs) {
    435   1.7      mrg 		/* Already in use?? */
    436   1.7      mrg #ifdef DIAGNOSTIC
    437   1.7      mrg 		printf("iommu_dvmamap_load: map still in use\n");
    438   1.7      mrg #endif
    439   1.7      mrg 		bus_dmamap_unload(t, map);
    440   1.7      mrg 	}
    441  1.58      chs 
    442   1.7      mrg 	/*
    443   1.7      mrg 	 * Make sure that on error condition we return "no valid mappings".
    444   1.7      mrg 	 */
    445   1.7      mrg 	map->dm_nsegs = 0;
    446   1.7      mrg 	if (buflen > map->_dm_size) {
    447  1.22      mrg 		DPRINTF(IDB_BUSDMA,
    448   1.7      mrg 		    ("iommu_dvmamap_load(): error %d > %d -- "
    449  1.25      mrg 		     "map size exceeded!\n", (int)buflen, (int)map->_dm_size));
    450   1.7      mrg 		return (EINVAL);
    451   1.7      mrg 	}
    452   1.7      mrg 
    453   1.7      mrg 	sgsize = round_page(buflen + ((int)vaddr & PGOFSET));
    454  1.20      mrg 
    455   1.7      mrg 	/*
    456  1.21      eeh 	 * A boundary presented to bus_dmamem_alloc() takes precedence
    457  1.21      eeh 	 * over boundary in the map.
    458   1.7      mrg 	 */
    459  1.21      eeh 	if ((boundary = (map->dm_segs[0]._ds_boundary)) == 0)
    460  1.21      eeh 		boundary = map->_dm_boundary;
    461  1.21      eeh 	align = max(map->dm_segs[0]._ds_align, NBPG);
    462  1.58      chs 
    463  1.58      chs 	/*
    464  1.58      chs 	 * If our segment size is larger than the boundary we need to
    465  1.40      eeh 	 * split the transfer up int little pieces ourselves.
    466  1.40      eeh 	 */
    467  1.58      chs 	s = splhigh();
    468  1.58      chs 	err = extent_alloc(is->is_dvmamap, sgsize, align,
    469  1.58      chs 		(sgsize > boundary) ? 0 : boundary,
    470  1.54      eeh 		EX_NOWAIT|EX_BOUNDZERO, &dvmaddr);
    471   1.7      mrg 	splx(s);
    472   1.7      mrg 
    473   1.7      mrg #ifdef DEBUG
    474  1.58      chs 	if (err || (dvmaddr == (bus_addr_t)-1))
    475  1.58      chs 	{
    476   1.7      mrg 		printf("iommu_dvmamap_load(): extent_alloc(%d, %x) failed!\n",
    477  1.25      mrg 		    (int)sgsize, flags);
    478  1.40      eeh #ifdef DDB
    479   1.7      mrg 		Debugger();
    480  1.40      eeh #endif
    481  1.58      chs 	}
    482  1.58      chs #endif
    483  1.11      eeh 	if (err != 0)
    484  1.11      eeh 		return (err);
    485  1.11      eeh 
    486   1.7      mrg 	if (dvmaddr == (bus_addr_t)-1)
    487   1.7      mrg 		return (ENOMEM);
    488   1.7      mrg 
    489  1.40      eeh 	/* Set the active DVMA map */
    490  1.40      eeh 	map->_dm_dvmastart = dvmaddr;
    491  1.40      eeh 	map->_dm_dvmasize = sgsize;
    492  1.40      eeh 
    493  1.40      eeh 	/*
    494  1.40      eeh 	 * Now split the DVMA range into segments, not crossing
    495  1.40      eeh 	 * the boundary.
    496  1.40      eeh 	 */
    497  1.40      eeh 	seg = 0;
    498  1.40      eeh 	sgstart = dvmaddr + (vaddr & PGOFSET);
    499  1.40      eeh 	sgend = sgstart + buflen - 1;
    500  1.40      eeh 	map->dm_segs[seg].ds_addr = sgstart;
    501  1.40      eeh 	DPRINTF(IDB_INFO, ("iommu_dvmamap_load: boundary %lx boundary-1 %lx "
    502  1.40      eeh 		"~(boundary-1) %lx\n", boundary, (boundary-1), ~(boundary-1)));
    503  1.40      eeh 	while ((sgstart & ~(boundary - 1)) != (sgend & ~(boundary - 1))) {
    504  1.40      eeh 		/* Oops.  We crossed a boundary.  Split the xfer. */
    505  1.40      eeh 		DPRINTF(IDB_INFO, ("iommu_dvmamap_load: "
    506  1.40      eeh 			"seg %d start %lx size %lx\n", seg,
    507  1.58      chs 			(long)map->dm_segs[seg].ds_addr,
    508  1.48      eeh 			map->dm_segs[seg].ds_len));
    509  1.49  tsutsui 		map->dm_segs[seg].ds_len =
    510  1.49  tsutsui 		    boundary - (sgstart & (boundary - 1));
    511  1.53      eeh 		if (++seg >= map->_dm_segcnt) {
    512  1.40      eeh 			/* Too many segments.  Fail the operation. */
    513  1.40      eeh 			DPRINTF(IDB_INFO, ("iommu_dvmamap_load: "
    514  1.40      eeh 				"too many segments %d\n", seg));
    515  1.40      eeh 			s = splhigh();
    516  1.40      eeh 			/* How can this fail?  And if it does what can we do? */
    517  1.40      eeh 			err = extent_free(is->is_dvmamap,
    518  1.40      eeh 				dvmaddr, sgsize, EX_NOWAIT);
    519  1.40      eeh 			map->_dm_dvmastart = 0;
    520  1.40      eeh 			map->_dm_dvmasize = 0;
    521  1.43      eeh 			splx(s);
    522  1.40      eeh 			return (E2BIG);
    523  1.40      eeh 		}
    524  1.40      eeh 		sgstart = roundup(sgstart, boundary);
    525  1.40      eeh 		map->dm_segs[seg].ds_addr = sgstart;
    526  1.40      eeh 	}
    527  1.40      eeh 	map->dm_segs[seg].ds_len = sgend - sgstart + 1;
    528  1.40      eeh 	DPRINTF(IDB_INFO, ("iommu_dvmamap_load: "
    529  1.40      eeh 		"seg %d start %lx size %lx\n", seg,
    530  1.48      eeh 		(long)map->dm_segs[seg].ds_addr, map->dm_segs[seg].ds_len));
    531  1.40      eeh 	map->dm_nsegs = seg+1;
    532   1.7      mrg 	map->dm_mapsize = buflen;
    533   1.7      mrg 
    534   1.7      mrg 	if (p != NULL)
    535   1.7      mrg 		pmap = p->p_vmspace->vm_map.pmap;
    536   1.7      mrg 	else
    537   1.7      mrg 		pmap = pmap_kernel();
    538   1.7      mrg 
    539   1.7      mrg 	for (; buflen > 0; ) {
    540  1.58      chs 
    541   1.7      mrg 		/*
    542   1.7      mrg 		 * Get the physical address for this page.
    543   1.7      mrg 		 */
    544   1.7      mrg 		if (pmap_extract(pmap, (vaddr_t)vaddr, &curaddr) == FALSE) {
    545   1.7      mrg 			bus_dmamap_unload(t, map);
    546   1.7      mrg 			return (-1);
    547   1.7      mrg 		}
    548   1.7      mrg 
    549   1.7      mrg 		/*
    550   1.7      mrg 		 * Compute the segment size, and adjust counts.
    551   1.7      mrg 		 */
    552   1.7      mrg 		sgsize = NBPG - ((u_long)vaddr & PGOFSET);
    553   1.7      mrg 		if (buflen < sgsize)
    554   1.7      mrg 			sgsize = buflen;
    555   1.7      mrg 
    556  1.22      mrg 		DPRINTF(IDB_BUSDMA,
    557  1.36      eeh 		    ("iommu_dvmamap_load: map %p loading va %p "
    558  1.36      eeh 			    "dva %lx at pa %lx\n",
    559  1.36      eeh 			    map, (void *)vaddr, (long)dvmaddr,
    560  1.54      eeh 			    (long)(curaddr & ~(NBPG-1))));
    561  1.55      eeh 		iommu_enter(sb, trunc_page(dvmaddr), trunc_page(curaddr),
    562  1.45      eeh 		    flags|0x4000);
    563  1.58      chs 
    564   1.7      mrg 		dvmaddr += PAGE_SIZE;
    565   1.7      mrg 		vaddr += sgsize;
    566   1.7      mrg 		buflen -= sgsize;
    567   1.7      mrg 	}
    568  1.45      eeh #ifdef DIAGNOSTIC
    569  1.45      eeh 	for (seg = 0; seg < map->dm_nsegs; seg++) {
    570  1.45      eeh 		if (map->dm_segs[seg].ds_addr < is->is_dvmabase ||
    571  1.45      eeh 			map->dm_segs[seg].ds_addr > is->is_dvmaend) {
    572  1.45      eeh 			printf("seg %d dvmaddr %lx out of range %x - %x\n",
    573  1.58      chs 				seg, (long)map->dm_segs[seg].ds_addr,
    574  1.45      eeh 				is->is_dvmabase, is->is_dvmaend);
    575  1.57      chs #ifdef DDB
    576  1.45      eeh 			Debugger();
    577  1.57      chs #endif
    578  1.45      eeh 		}
    579  1.45      eeh 	}
    580  1.45      eeh #endif
    581   1.7      mrg 	return (0);
    582   1.7      mrg }
    583   1.7      mrg 
    584   1.7      mrg 
    585   1.7      mrg void
    586  1.55      eeh iommu_dvmamap_unload(t, sb, map)
    587   1.7      mrg 	bus_dma_tag_t t;
    588  1.55      eeh 	struct strbuf_ctl *sb;
    589   1.7      mrg 	bus_dmamap_t map;
    590   1.7      mrg {
    591  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    592  1.40      eeh 	int error, s;
    593   1.7      mrg 	bus_size_t sgsize;
    594   1.7      mrg 
    595  1.40      eeh 	/* Flush the iommu */
    596  1.40      eeh #ifdef DEBUG
    597  1.40      eeh 	if (!map->_dm_dvmastart) {
    598  1.40      eeh 		printf("iommu_dvmamap_unload: No dvmastart is zero\n");
    599  1.40      eeh #ifdef DDB
    600  1.40      eeh 		Debugger();
    601  1.40      eeh #endif
    602  1.40      eeh 	}
    603  1.40      eeh #endif
    604  1.40      eeh 	iommu_remove(is, map->_dm_dvmastart, map->_dm_dvmasize);
    605   1.7      mrg 
    606  1.23      eeh 	/* Flush the caches */
    607  1.23      eeh 	bus_dmamap_unload(t->_parent, map);
    608  1.23      eeh 
    609   1.7      mrg 	/* Mark the mappings as invalid. */
    610   1.7      mrg 	map->dm_mapsize = 0;
    611   1.7      mrg 	map->dm_nsegs = 0;
    612  1.58      chs 
    613   1.7      mrg 	s = splhigh();
    614  1.58      chs 	error = extent_free(is->is_dvmamap, map->_dm_dvmastart,
    615  1.40      eeh 		map->_dm_dvmasize, EX_NOWAIT);
    616  1.43      eeh 	map->_dm_dvmastart = 0;
    617  1.43      eeh 	map->_dm_dvmasize = 0;
    618   1.7      mrg 	splx(s);
    619   1.7      mrg 	if (error != 0)
    620   1.7      mrg 		printf("warning: %qd of DVMA space lost\n", (long long)sgsize);
    621  1.40      eeh 
    622  1.40      eeh 	/* Clear the map */
    623   1.9      eeh }
    624   1.9      eeh 
    625   1.9      eeh 
    626   1.9      eeh int
    627  1.55      eeh iommu_dvmamap_load_raw(t, sb, map, segs, nsegs, flags, size)
    628   1.9      eeh 	bus_dma_tag_t t;
    629  1.55      eeh 	struct strbuf_ctl *sb;
    630   1.9      eeh 	bus_dmamap_t map;
    631   1.9      eeh 	bus_dma_segment_t *segs;
    632   1.9      eeh 	int nsegs;
    633  1.22      mrg 	int flags;
    634   1.9      eeh 	bus_size_t size;
    635   1.9      eeh {
    636  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    637  1.58      chs 	struct vm_page *pg;
    638  1.40      eeh 	int i, j, s;
    639  1.26   martin 	int left;
    640   1.9      eeh 	int err;
    641   1.9      eeh 	bus_size_t sgsize;
    642   1.9      eeh 	paddr_t pa;
    643  1.21      eeh 	bus_size_t boundary, align;
    644  1.40      eeh 	u_long dvmaddr, sgstart, sgend;
    645  1.58      chs 	struct pglist *pglist;
    646   1.9      eeh 	int pagesz = PAGE_SIZE;
    647  1.45      eeh 	int npg = 0; /* DEBUG */
    648   1.9      eeh 
    649   1.9      eeh 	if (map->dm_nsegs) {
    650   1.9      eeh 		/* Already in use?? */
    651   1.9      eeh #ifdef DIAGNOSTIC
    652   1.9      eeh 		printf("iommu_dvmamap_load_raw: map still in use\n");
    653   1.9      eeh #endif
    654   1.9      eeh 		bus_dmamap_unload(t, map);
    655   1.9      eeh 	}
    656  1.40      eeh 
    657  1.40      eeh 	/*
    658  1.40      eeh 	 * A boundary presented to bus_dmamem_alloc() takes precedence
    659  1.40      eeh 	 * over boundary in the map.
    660  1.40      eeh 	 */
    661  1.40      eeh 	if ((boundary = segs[0]._ds_boundary) == 0)
    662  1.40      eeh 		boundary = map->_dm_boundary;
    663  1.40      eeh 
    664  1.45      eeh 	align = max(segs[0]._ds_align, pagesz);
    665  1.40      eeh 
    666   1.9      eeh 	/*
    667   1.9      eeh 	 * Make sure that on error condition we return "no valid mappings".
    668   1.9      eeh 	 */
    669   1.9      eeh 	map->dm_nsegs = 0;
    670  1.26   martin 	/* Count up the total number of pages we need */
    671  1.26   martin 	pa = segs[0].ds_addr;
    672  1.26   martin 	sgsize = 0;
    673  1.40      eeh 	left = size;
    674  1.58      chs 	for (i = 0; left && i < nsegs; i++) {
    675  1.26   martin 		if (round_page(pa) != round_page(segs[i].ds_addr))
    676  1.26   martin 			sgsize = round_page(sgsize);
    677  1.40      eeh 		sgsize += min(left, segs[i].ds_len);
    678  1.40      eeh 		left -= segs[i].ds_len;
    679  1.26   martin 		pa = segs[i].ds_addr + segs[i].ds_len;
    680  1.26   martin 	}
    681  1.26   martin 	sgsize = round_page(sgsize);
    682   1.9      eeh 
    683  1.40      eeh 	s = splhigh();
    684  1.58      chs 	/*
    685  1.58      chs 	 * If our segment size is larger than the boundary we need to
    686  1.45      eeh 	 * split the transfer up into little pieces ourselves.
    687   1.9      eeh 	 */
    688  1.40      eeh 	err = extent_alloc(is->is_dvmamap, sgsize, align,
    689  1.40      eeh 		(sgsize > boundary) ? 0 : boundary,
    690  1.40      eeh 		((flags & BUS_DMA_NOWAIT) == 0 ? EX_WAITOK : EX_NOWAIT) |
    691  1.54      eeh 		EX_BOUNDZERO, &dvmaddr);
    692   1.9      eeh 	splx(s);
    693   1.9      eeh 
    694   1.9      eeh 	if (err != 0)
    695   1.9      eeh 		return (err);
    696   1.9      eeh 
    697   1.9      eeh #ifdef DEBUG
    698  1.58      chs 	if (dvmaddr == (bus_addr_t)-1)
    699  1.58      chs 	{
    700   1.9      eeh 		printf("iommu_dvmamap_load_raw(): extent_alloc(%d, %x) failed!\n",
    701  1.25      mrg 		    (int)sgsize, flags);
    702  1.57      chs #ifdef DDB
    703   1.9      eeh 		Debugger();
    704  1.57      chs #endif
    705  1.58      chs 	}
    706  1.58      chs #endif
    707   1.9      eeh 	if (dvmaddr == (bus_addr_t)-1)
    708   1.9      eeh 		return (ENOMEM);
    709   1.9      eeh 
    710  1.40      eeh 	/* Set the active DVMA map */
    711  1.40      eeh 	map->_dm_dvmastart = dvmaddr;
    712  1.40      eeh 	map->_dm_dvmasize = sgsize;
    713  1.40      eeh 
    714  1.58      chs 	if ((pglist = segs[0]._ds_mlist) == NULL) {
    715  1.26   martin 		u_long prev_va = NULL;
    716  1.45      eeh 		paddr_t prev_pa = 0;
    717  1.45      eeh 		int end = 0, offset;
    718  1.45      eeh 
    719  1.26   martin 		/*
    720  1.45      eeh 		 * This segs is made up of individual physical
    721  1.58      chs 		 *  segments, probably by _bus_dmamap_load_uio() or
    722  1.26   martin 		 * _bus_dmamap_load_mbuf().  Ignore the mlist and
    723  1.45      eeh 		 * load each one individually.
    724  1.26   martin 		 */
    725  1.40      eeh 		map->dm_mapsize = size;
    726  1.40      eeh 
    727  1.45      eeh 		j = 0;
    728  1.45      eeh 		for (i = 0; i < nsegs ; i++) {
    729  1.40      eeh 
    730  1.45      eeh 			pa = segs[i].ds_addr;
    731  1.45      eeh 			offset = (pa & PGOFSET);
    732  1.45      eeh 			pa = trunc_page(pa);
    733  1.45      eeh 			dvmaddr = trunc_page(dvmaddr);
    734  1.45      eeh 			left = min(size, segs[i].ds_len);
    735  1.45      eeh 
    736  1.45      eeh 			DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: converting "
    737  1.58      chs 				"physseg %d start %lx size %lx\n", i,
    738  1.48      eeh 				(long)segs[i].ds_addr, segs[i].ds_len));
    739  1.26   martin 
    740  1.58      chs 			if ((pa == prev_pa) &&
    741  1.47      eeh 				((offset != 0) || (end != offset))) {
    742  1.45      eeh 				/* We can re-use this mapping */
    743  1.45      eeh 				dvmaddr = prev_va;
    744  1.45      eeh 			}
    745  1.29   martin 
    746  1.45      eeh 			sgstart = dvmaddr + offset;
    747  1.45      eeh 			sgend = sgstart + left - 1;
    748  1.26   martin 
    749  1.45      eeh 			/* Are the segments virtually adjacent? */
    750  1.58      chs 			if ((j > 0) && (end == offset) &&
    751  1.45      eeh 				((offset == 0) || (pa == prev_pa))) {
    752  1.45      eeh 				/* Just append to the previous segment. */
    753  1.45      eeh 				map->dm_segs[--j].ds_len += left;
    754  1.45      eeh 				DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: "
    755  1.45      eeh 					"appending seg %d start %lx size %lx\n", j,
    756  1.58      chs 					(long)map->dm_segs[j].ds_addr,
    757  1.45      eeh 					map->dm_segs[j].ds_len));
    758  1.45      eeh 			} else {
    759  1.53      eeh 				if (j >= map->_dm_segcnt) {
    760  1.55      eeh 					iommu_dvmamap_unload(t, sb, map);
    761  1.53      eeh 					return (E2BIG);
    762  1.53      eeh 				}
    763  1.45      eeh 				map->dm_segs[j].ds_addr = sgstart;
    764  1.45      eeh 				map->dm_segs[j].ds_len = left;
    765  1.45      eeh 				DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: "
    766  1.45      eeh 					"seg %d start %lx size %lx\n", j,
    767  1.48      eeh 					(long)map->dm_segs[j].ds_addr,
    768  1.45      eeh 					map->dm_segs[j].ds_len));
    769  1.40      eeh 			}
    770  1.45      eeh 			end = (offset + left) & PGOFSET;
    771  1.40      eeh 
    772  1.40      eeh 			/* Check for boundary issues */
    773  1.40      eeh 			while ((sgstart & ~(boundary - 1)) !=
    774  1.40      eeh 				(sgend & ~(boundary - 1))) {
    775  1.40      eeh 				/* Need a new segment. */
    776  1.40      eeh 				map->dm_segs[j].ds_len =
    777  1.53      eeh 					boundary - (sgstart & (boundary - 1));
    778  1.40      eeh 				DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: "
    779  1.40      eeh 					"seg %d start %lx size %lx\n", j,
    780  1.58      chs 					(long)map->dm_segs[j].ds_addr,
    781  1.40      eeh 					map->dm_segs[j].ds_len));
    782  1.53      eeh 				if (++j >= map->_dm_segcnt) {
    783  1.55      eeh 					iommu_dvmamap_unload(t, sb, map);
    784  1.40      eeh 					return (E2BIG);
    785  1.40      eeh 				}
    786  1.40      eeh 				sgstart = roundup(sgstart, boundary);
    787  1.40      eeh 				map->dm_segs[j].ds_addr = sgstart;
    788  1.40      eeh 				map->dm_segs[j].ds_len = sgend - sgstart + 1;
    789  1.40      eeh 			}
    790  1.40      eeh 
    791  1.26   martin 			if (sgsize == 0)
    792  1.26   martin 				panic("iommu_dmamap_load_raw: size botch");
    793  1.40      eeh 
    794  1.45      eeh 			/* Now map a series of pages. */
    795  1.51      eeh 			while (dvmaddr <= sgend) {
    796  1.45      eeh 				DPRINTF(IDB_BUSDMA,
    797  1.45      eeh 					("iommu_dvmamap_load_raw: map %p "
    798  1.45      eeh 						"loading va %lx at pa %lx\n",
    799  1.45      eeh 						map, (long)dvmaddr,
    800  1.45      eeh 						(long)(pa)));
    801  1.45      eeh 				/* Enter it if we haven't before. */
    802  1.46      eeh 				if (prev_va != dvmaddr)
    803  1.55      eeh 					iommu_enter(sb, prev_va = dvmaddr,
    804  1.45      eeh 						prev_pa = pa,
    805  1.58      chs 						flags | (++npg << 12));
    806  1.45      eeh 				dvmaddr += pagesz;
    807  1.45      eeh 				pa += pagesz;
    808  1.45      eeh 			}
    809  1.45      eeh 
    810  1.45      eeh 			size -= left;
    811  1.45      eeh 			++j;
    812  1.26   martin 		}
    813  1.45      eeh 
    814  1.45      eeh 		map->dm_nsegs = j;
    815  1.45      eeh #ifdef DIAGNOSTIC
    816  1.45      eeh 		{ int seg;
    817  1.45      eeh 	for (seg = 0; seg < map->dm_nsegs; seg++) {
    818  1.45      eeh 		if (map->dm_segs[seg].ds_addr < is->is_dvmabase ||
    819  1.45      eeh 			map->dm_segs[seg].ds_addr > is->is_dvmaend) {
    820  1.45      eeh 			printf("seg %d dvmaddr %lx out of range %x - %x\n",
    821  1.58      chs 				seg, (long)map->dm_segs[seg].ds_addr,
    822  1.45      eeh 				is->is_dvmabase, is->is_dvmaend);
    823  1.57      chs #ifdef DDB
    824  1.45      eeh 			Debugger();
    825  1.57      chs #endif
    826  1.45      eeh 		}
    827  1.45      eeh 	}
    828  1.45      eeh 		}
    829  1.45      eeh #endif
    830  1.26   martin 		return (0);
    831  1.26   martin 	}
    832  1.58      chs 
    833   1.9      eeh 	/*
    834  1.40      eeh 	 * This was allocated with bus_dmamem_alloc.
    835  1.58      chs 	 * The pages are on a `pglist'.
    836   1.9      eeh 	 */
    837   1.9      eeh 	map->dm_mapsize = size;
    838  1.26   martin 	i = 0;
    839  1.40      eeh 	sgstart = dvmaddr;
    840  1.40      eeh 	sgend = sgstart + size - 1;
    841  1.40      eeh 	map->dm_segs[i].ds_addr = sgstart;
    842  1.40      eeh 	while ((sgstart & ~(boundary - 1)) != (sgend & ~(boundary - 1))) {
    843  1.40      eeh 		/* Oops.  We crossed a boundary.  Split the xfer. */
    844  1.53      eeh 		map->dm_segs[i].ds_len = boundary - (sgstart & (boundary - 1));
    845  1.40      eeh 		DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: "
    846  1.40      eeh 			"seg %d start %lx size %lx\n", i,
    847  1.48      eeh 			(long)map->dm_segs[i].ds_addr,
    848  1.40      eeh 			map->dm_segs[i].ds_len));
    849  1.53      eeh 		if (++i >= map->_dm_segcnt) {
    850  1.40      eeh 			/* Too many segments.  Fail the operation. */
    851  1.40      eeh 			s = splhigh();
    852  1.40      eeh 			/* How can this fail?  And if it does what can we do? */
    853  1.40      eeh 			err = extent_free(is->is_dvmamap,
    854  1.40      eeh 				dvmaddr, sgsize, EX_NOWAIT);
    855  1.40      eeh 			map->_dm_dvmastart = 0;
    856  1.40      eeh 			map->_dm_dvmasize = 0;
    857  1.43      eeh 			splx(s);
    858  1.40      eeh 			return (E2BIG);
    859  1.40      eeh 		}
    860  1.40      eeh 		sgstart = roundup(sgstart, boundary);
    861  1.40      eeh 		map->dm_segs[i].ds_addr = sgstart;
    862  1.40      eeh 	}
    863  1.40      eeh 	DPRINTF(IDB_INFO, ("iommu_dvmamap_load_raw: "
    864  1.40      eeh 			"seg %d start %lx size %lx\n", i,
    865  1.48      eeh 			(long)map->dm_segs[i].ds_addr, map->dm_segs[i].ds_len));
    866  1.40      eeh 	map->dm_segs[i].ds_len = sgend - sgstart + 1;
    867   1.9      eeh 
    868  1.58      chs 	TAILQ_FOREACH(pg, pglist, pageq) {
    869   1.9      eeh 		if (sgsize == 0)
    870   1.9      eeh 			panic("iommu_dmamap_load_raw: size botch");
    871  1.58      chs 		pa = VM_PAGE_TO_PHYS(pg);
    872   1.9      eeh 
    873  1.22      mrg 		DPRINTF(IDB_BUSDMA,
    874   1.9      eeh 		    ("iommu_dvmamap_load_raw: map %p loading va %lx at pa %lx\n",
    875   1.9      eeh 		    map, (long)dvmaddr, (long)(pa)));
    876  1.55      eeh 		iommu_enter(sb, dvmaddr, pa, flags|0x8000);
    877  1.58      chs 
    878   1.9      eeh 		dvmaddr += pagesz;
    879   1.9      eeh 		sgsize -= pagesz;
    880   1.9      eeh 	}
    881  1.40      eeh 	map->dm_mapsize = size;
    882  1.40      eeh 	map->dm_nsegs = i+1;
    883  1.45      eeh #ifdef DIAGNOSTIC
    884  1.45      eeh 	{ int seg;
    885  1.45      eeh 	for (seg = 0; seg < map->dm_nsegs; seg++) {
    886  1.45      eeh 		if (map->dm_segs[seg].ds_addr < is->is_dvmabase ||
    887  1.45      eeh 			map->dm_segs[seg].ds_addr > is->is_dvmaend) {
    888  1.45      eeh 			printf("seg %d dvmaddr %lx out of range %x - %x\n",
    889  1.58      chs 				seg, (long)map->dm_segs[seg].ds_addr,
    890  1.45      eeh 				is->is_dvmabase, is->is_dvmaend);
    891  1.57      chs #ifdef DDB
    892  1.45      eeh 			Debugger();
    893  1.57      chs #endif
    894  1.45      eeh 		}
    895  1.45      eeh 	}
    896  1.45      eeh 	}
    897  1.45      eeh #endif
    898   1.9      eeh 	return (0);
    899   1.7      mrg }
    900   1.7      mrg 
    901   1.7      mrg void
    902  1.55      eeh iommu_dvmamap_sync(t, sb, map, offset, len, ops)
    903   1.7      mrg 	bus_dma_tag_t t;
    904  1.55      eeh 	struct strbuf_ctl *sb;
    905   1.7      mrg 	bus_dmamap_t map;
    906   1.7      mrg 	bus_addr_t offset;
    907   1.7      mrg 	bus_size_t len;
    908   1.7      mrg 	int ops;
    909   1.7      mrg {
    910  1.55      eeh 	struct iommu_state *is = sb->sb_is;
    911   1.7      mrg 	vaddr_t va = map->dm_segs[0].ds_addr + offset;
    912  1.55      eeh 	int64_t tte;
    913   1.7      mrg 
    914   1.7      mrg 	/*
    915   1.7      mrg 	 * We only support one DMA segment; supporting more makes this code
    916  1.58      chs 	 * too unwieldy.
    917   1.7      mrg 	 */
    918   1.7      mrg 
    919  1.58      chs 	DPRINTF(IDB_SYNC,
    920  1.58      chs 	    ("iommu_dvmamap_sync: syncing va %p len %lu "
    921  1.58      chs 	     "ops 0x%x\n", (void *)(u_long)va, (u_long)len, ops));
    922  1.58      chs 	if (ops & (BUS_DMASYNC_PREREAD | BUS_DMASYNC_POSTWRITE)) {
    923  1.58      chs 		/* Nothing to do */
    924  1.58      chs 		return;
    925  1.58      chs 	}
    926  1.55      eeh #ifdef DIAGNOSTIC
    927  1.58      chs 	if (va < is->is_dvmabase || va >= is->is_dvmaend)
    928  1.58      chs 		panic("iommu_dvmamap_sync: invalid dva %lx", va);
    929  1.55      eeh #endif
    930  1.58      chs 	KASSERT((ops & (BUS_DMASYNC_POSTREAD | BUS_DMASYNC_PREWRITE)) != 0);
    931  1.58      chs 	tte = is->is_tsb[IOTSBSLOT(va, is->is_tsbsize)];
    932  1.55      eeh 
    933  1.58      chs 	/* if we have a streaming buffer, flush it here first */
    934  1.58      chs 	if ((tte & IOTTE_STREAM) == 0 || !sb->sb_flush)
    935  1.58      chs 		return;
    936  1.55      eeh 
    937  1.58      chs 	while (len > 0) {
    938  1.58      chs 		DPRINTF(IDB_BUSDMA,
    939  1.58      chs 		    ("iommu_dvmamap_sync: flushing va %p, %lu "
    940  1.58      chs 		     "bytes left\n", (void *)(u_long)va, (u_long)len));
    941  1.58      chs 		iommu_strbuf_flush(sb, va);
    942  1.58      chs 		if (len <= NBPG) {
    943  1.58      chs 			iommu_strbuf_flush_done(sb);
    944  1.58      chs 			len = 0;
    945  1.58      chs 		} else
    946  1.58      chs 			len -= NBPG;
    947  1.58      chs 		va += NBPG;
    948   1.7      mrg 	}
    949   1.7      mrg }
    950   1.7      mrg 
    951   1.7      mrg int
    952  1.55      eeh iommu_dvmamem_alloc(t, sb, size, alignment, boundary, segs, nsegs, rsegs, flags)
    953   1.7      mrg 	bus_dma_tag_t t;
    954  1.55      eeh 	struct strbuf_ctl *sb;
    955   1.7      mrg 	bus_size_t size, alignment, boundary;
    956   1.7      mrg 	bus_dma_segment_t *segs;
    957   1.7      mrg 	int nsegs;
    958   1.7      mrg 	int *rsegs;
    959   1.7      mrg 	int flags;
    960   1.7      mrg {
    961   1.7      mrg 
    962  1.25      mrg 	DPRINTF(IDB_BUSDMA, ("iommu_dvmamem_alloc: sz %llx align %llx bound %llx "
    963  1.25      mrg 	   "segp %p flags %d\n", (unsigned long long)size,
    964  1.25      mrg 	   (unsigned long long)alignment, (unsigned long long)boundary,
    965  1.25      mrg 	   segs, flags));
    966   1.7      mrg 	return (bus_dmamem_alloc(t->_parent, size, alignment, boundary,
    967  1.21      eeh 	    segs, nsegs, rsegs, flags|BUS_DMA_DVMA));
    968   1.7      mrg }
    969   1.7      mrg 
    970   1.7      mrg void
    971  1.55      eeh iommu_dvmamem_free(t, sb, segs, nsegs)
    972   1.7      mrg 	bus_dma_tag_t t;
    973  1.55      eeh 	struct strbuf_ctl *sb;
    974   1.7      mrg 	bus_dma_segment_t *segs;
    975   1.7      mrg 	int nsegs;
    976   1.7      mrg {
    977   1.7      mrg 
    978  1.22      mrg 	DPRINTF(IDB_BUSDMA, ("iommu_dvmamem_free: segp %p nsegs %d\n",
    979   1.7      mrg 	    segs, nsegs));
    980   1.7      mrg 	bus_dmamem_free(t->_parent, segs, nsegs);
    981   1.7      mrg }
    982   1.7      mrg 
    983   1.7      mrg /*
    984   1.7      mrg  * Map the DVMA mappings into the kernel pmap.
    985   1.7      mrg  * Check the flags to see whether we're streaming or coherent.
    986   1.7      mrg  */
    987   1.7      mrg int
    988  1.55      eeh iommu_dvmamem_map(t, sb, segs, nsegs, size, kvap, flags)
    989   1.7      mrg 	bus_dma_tag_t t;
    990  1.55      eeh 	struct strbuf_ctl *sb;
    991   1.7      mrg 	bus_dma_segment_t *segs;
    992   1.7      mrg 	int nsegs;
    993   1.7      mrg 	size_t size;
    994   1.7      mrg 	caddr_t *kvap;
    995   1.7      mrg 	int flags;
    996   1.7      mrg {
    997  1.58      chs 	struct vm_page *pg;
    998   1.7      mrg 	vaddr_t va;
    999   1.7      mrg 	bus_addr_t addr;
   1000  1.58      chs 	struct pglist *pglist;
   1001   1.8      mrg 	int cbit;
   1002   1.7      mrg 
   1003  1.22      mrg 	DPRINTF(IDB_BUSDMA, ("iommu_dvmamem_map: segp %p nsegs %d size %lx\n",
   1004   1.7      mrg 	    segs, nsegs, size));
   1005   1.7      mrg 
   1006   1.7      mrg 	/*
   1007   1.8      mrg 	 * Allocate some space in the kernel map, and then map these pages
   1008   1.8      mrg 	 * into this space.
   1009   1.7      mrg 	 */
   1010   1.8      mrg 	size = round_page(size);
   1011   1.8      mrg 	va = uvm_km_valloc(kernel_map, size);
   1012   1.8      mrg 	if (va == 0)
   1013   1.8      mrg 		return (ENOMEM);
   1014   1.7      mrg 
   1015   1.8      mrg 	*kvap = (caddr_t)va;
   1016   1.7      mrg 
   1017  1.58      chs 	/*
   1018   1.7      mrg 	 * digest flags:
   1019   1.7      mrg 	 */
   1020   1.7      mrg 	cbit = 0;
   1021   1.7      mrg 	if (flags & BUS_DMA_COHERENT)	/* Disable vcache */
   1022   1.7      mrg 		cbit |= PMAP_NVC;
   1023   1.7      mrg 	if (flags & BUS_DMA_NOCACHE)	/* sideffects */
   1024   1.7      mrg 		cbit |= PMAP_NC;
   1025   1.7      mrg 
   1026   1.7      mrg 	/*
   1027   1.8      mrg 	 * Now take this and map it into the CPU.
   1028   1.7      mrg 	 */
   1029  1.58      chs 	pglist = segs[0]._ds_mlist;
   1030  1.58      chs 	TAILQ_FOREACH(pg, pglist, pageq) {
   1031   1.8      mrg #ifdef DIAGNOSTIC
   1032   1.7      mrg 		if (size == 0)
   1033   1.7      mrg 			panic("iommu_dvmamem_map: size botch");
   1034   1.8      mrg #endif
   1035  1.58      chs 		addr = VM_PAGE_TO_PHYS(pg);
   1036  1.22      mrg 		DPRINTF(IDB_BUSDMA, ("iommu_dvmamem_map: "
   1037  1.25      mrg 		    "mapping va %lx at %llx\n", va, (unsigned long long)addr | cbit));
   1038  1.58      chs 		pmap_kenter_pa(va, addr | cbit, VM_PROT_READ | VM_PROT_WRITE);
   1039   1.7      mrg 		va += PAGE_SIZE;
   1040   1.7      mrg 		size -= PAGE_SIZE;
   1041   1.7      mrg 	}
   1042  1.38    chris 	pmap_update(pmap_kernel());
   1043   1.7      mrg 	return (0);
   1044   1.7      mrg }
   1045   1.7      mrg 
   1046   1.7      mrg /*
   1047   1.7      mrg  * Unmap DVMA mappings from kernel
   1048   1.7      mrg  */
   1049   1.7      mrg void
   1050  1.55      eeh iommu_dvmamem_unmap(t, sb, kva, size)
   1051   1.7      mrg 	bus_dma_tag_t t;
   1052  1.55      eeh 	struct strbuf_ctl *sb;
   1053   1.7      mrg 	caddr_t kva;
   1054   1.7      mrg 	size_t size;
   1055   1.7      mrg {
   1056  1.58      chs 
   1057  1.22      mrg 	DPRINTF(IDB_BUSDMA, ("iommu_dvmamem_unmap: kvm %p size %lx\n",
   1058   1.7      mrg 	    kva, size));
   1059  1.58      chs 
   1060   1.7      mrg #ifdef DIAGNOSTIC
   1061   1.7      mrg 	if ((u_long)kva & PGOFSET)
   1062   1.7      mrg 		panic("iommu_dvmamem_unmap");
   1063   1.7      mrg #endif
   1064  1.58      chs 
   1065   1.7      mrg 	size = round_page(size);
   1066  1.58      chs 	pmap_kremove((vaddr_t)kva, size);
   1067  1.38    chris 	pmap_update(pmap_kernel());
   1068   1.8      mrg 	uvm_km_free(kernel_map, (vaddr_t)kva, size);
   1069   1.1      mrg }
   1070