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