Home | History | Annotate | Line # | Download | only in isa
isadma_bounce.c revision 1.12
      1  1.12      matt /* $NetBSD: isadma_bounce.c,v 1.12 2012/02/06 02:14:13 matt Exp $ */
      2   1.1   thorpej 
      3   1.1   thorpej /*-
      4   1.1   thorpej  * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
      5   1.1   thorpej  * All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.1   thorpej  * NASA Ames Research Center.
     10   1.1   thorpej  *
     11   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     12   1.1   thorpej  * modification, are permitted provided that the following conditions
     13   1.1   thorpej  * are met:
     14   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     15   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     16   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     19   1.1   thorpej  *
     20   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21   1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22   1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23   1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24   1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25   1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26   1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27   1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28   1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29   1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30   1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31   1.1   thorpej  */
     32   1.2   thorpej 
     33   1.2   thorpej #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     34   1.2   thorpej 
     35  1.12      matt __KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.12 2012/02/06 02:14:13 matt Exp $");
     36   1.1   thorpej 
     37   1.1   thorpej #include <sys/param.h>
     38   1.1   thorpej #include <sys/systm.h>
     39   1.1   thorpej #include <sys/syslog.h>
     40   1.1   thorpej #include <sys/device.h>
     41   1.1   thorpej #include <sys/malloc.h>
     42   1.1   thorpej #include <sys/proc.h>
     43   1.1   thorpej #include <sys/mbuf.h>
     44   1.1   thorpej 
     45   1.1   thorpej #define _ALPHA_BUS_DMA_PRIVATE
     46  1.11    dyoung #include <sys/bus.h>
     47   1.1   thorpej 
     48   1.1   thorpej #include <dev/isa/isareg.h>
     49   1.1   thorpej #include <dev/isa/isavar.h>
     50   1.1   thorpej 
     51   1.1   thorpej extern	paddr_t avail_end;
     52   1.1   thorpej 
     53   1.1   thorpej /*
     54   1.1   thorpej  * Cookie used by bouncing ISA DMA.  A pointer to one of these is stashed
     55   1.1   thorpej  * in the DMA map.
     56   1.1   thorpej  */
     57   1.1   thorpej struct isadma_bounce_cookie {
     58   1.1   thorpej 	int	id_flags;		/* flags; see below */
     59   1.1   thorpej 
     60   1.1   thorpej 	/*
     61   1.1   thorpej 	 * Information about the original buffer used during
     62   1.1   thorpej 	 * DMA map syncs.  Note that origbuflen is only used
     63   1.1   thorpej 	 * for ID_BUFTYPE_LINEAR.
     64   1.1   thorpej 	 */
     65   1.1   thorpej 	void	*id_origbuf;		/* pointer to orig buffer if
     66   1.1   thorpej 					   bouncing */
     67   1.1   thorpej 	bus_size_t id_origbuflen;	/* ...and size */
     68   1.1   thorpej 	int	id_buftype;		/* type of buffer */
     69   1.1   thorpej 
     70   1.1   thorpej 	void	*id_bouncebuf;		/* pointer to the bounce buffer */
     71   1.1   thorpej 	bus_size_t id_bouncebuflen;	/* ...and size */
     72   1.1   thorpej 	int	id_nbouncesegs;		/* number of valid bounce segs */
     73   1.1   thorpej 	bus_dma_segment_t id_bouncesegs[1]; /* array of bounce buffer
     74   1.1   thorpej 					       physical memory segments */
     75   1.1   thorpej };
     76   1.1   thorpej 
     77   1.1   thorpej /* id_flags */
     78   1.1   thorpej #define	ID_MIGHT_NEED_BOUNCE	0x01	/* map could need bounce buffers */
     79   1.1   thorpej #define	ID_HAS_BOUNCE		0x02	/* map currently has bounce buffers */
     80   1.1   thorpej #define	ID_IS_BOUNCING		0x04	/* map is bouncing current xfer */
     81   1.1   thorpej 
     82   1.1   thorpej /* id_buftype */
     83   1.1   thorpej #define	ID_BUFTYPE_INVALID	0
     84   1.1   thorpej #define	ID_BUFTYPE_LINEAR	1
     85   1.1   thorpej #define	ID_BUFTYPE_MBUF		2
     86   1.1   thorpej #define	ID_BUFTYPE_UIO		3
     87   1.1   thorpej #define	ID_BUFTYPE_RAW		4
     88   1.1   thorpej 
     89   1.9       dsl int	isadma_bounce_alloc_bouncebuf(bus_dma_tag_t, bus_dmamap_t,
     90   1.9       dsl 	    bus_size_t, int);
     91   1.9       dsl void	isadma_bounce_free_bouncebuf(bus_dma_tag_t, bus_dmamap_t);
     92   1.1   thorpej 
     93   1.1   thorpej /*
     94   1.1   thorpej  * Create an ISA DMA map.
     95   1.1   thorpej  */
     96   1.1   thorpej int
     97   1.1   thorpej isadma_bounce_dmamap_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
     98   1.1   thorpej     bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamp)
     99   1.1   thorpej {
    100   1.1   thorpej 	struct isadma_bounce_cookie *cookie;
    101   1.1   thorpej 	bus_dmamap_t map;
    102   1.1   thorpej 	int error, cookieflags;
    103   1.1   thorpej 	void *cookiestore;
    104   1.1   thorpej 	size_t cookiesize;
    105   1.1   thorpej 
    106   1.1   thorpej 	/* Call common function to create the basic map. */
    107   1.1   thorpej 	error = _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary,
    108   1.1   thorpej 	    flags, dmamp);
    109   1.1   thorpej 	if (error)
    110   1.1   thorpej 		return (error);
    111   1.1   thorpej 
    112   1.1   thorpej 	map = *dmamp;
    113   1.1   thorpej 	map->_dm_cookie = NULL;
    114   1.1   thorpej 
    115   1.1   thorpej 	cookiesize = sizeof(*cookie);
    116   1.1   thorpej 
    117   1.1   thorpej 	/*
    118   1.1   thorpej 	 * ISA only has 24-bits of address space.  This means
    119   1.1   thorpej 	 * we can't DMA to pages over 16M.  In order to DMA to
    120   1.1   thorpej 	 * arbitrary buffers, we use "bounce buffers" - pages
    121   1.1   thorpej 	 * in memory below the 16M boundary.  On DMA reads,
    122   1.1   thorpej 	 * DMA happens to the bounce buffers, and is copied into
    123   1.1   thorpej 	 * the caller's buffer.  On writes, data is copied into
    124   1.1   thorpej 	 * but bounce buffer, and the DMA happens from those
    125   1.1   thorpej 	 * pages.  To software using the DMA mapping interface,
    126   1.1   thorpej 	 * this looks simply like a data cache.
    127   1.1   thorpej 	 *
    128   1.1   thorpej 	 * If we have more than 16M of RAM in the system, we may
    129   1.1   thorpej 	 * need bounce buffers.  We check and remember that here.
    130   1.1   thorpej 	 *
    131   1.1   thorpej 	 * ...or, there is an opposite case.  The most segments
    132   1.1   thorpej 	 * a transfer will require is (maxxfer / PAGE_SIZE) + 1.  If
    133   1.1   thorpej 	 * the caller can't handle that many segments (e.g. the
    134   1.1   thorpej 	 * ISA DMA controller), we may have to bounce it as well.
    135   1.1   thorpej 	 */
    136   1.1   thorpej 	cookieflags = 0;
    137   1.1   thorpej 	if (avail_end > (t->_wbase + t->_wsize) ||
    138   1.1   thorpej 	    ((map->_dm_size / PAGE_SIZE) + 1) > map->_dm_segcnt) {
    139   1.1   thorpej 		cookieflags |= ID_MIGHT_NEED_BOUNCE;
    140   1.1   thorpej 		cookiesize += (sizeof(bus_dma_segment_t) *
    141   1.1   thorpej 		    (map->_dm_segcnt - 1));
    142   1.1   thorpej 	}
    143   1.1   thorpej 
    144   1.1   thorpej 	/*
    145   1.1   thorpej 	 * Allocate our cookie.
    146   1.1   thorpej 	 */
    147   1.1   thorpej 	if ((cookiestore = malloc(cookiesize, M_DMAMAP,
    148   1.1   thorpej 	    (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL) {
    149   1.1   thorpej 		error = ENOMEM;
    150   1.1   thorpej 		goto out;
    151   1.1   thorpej 	}
    152   1.1   thorpej 	memset(cookiestore, 0, cookiesize);
    153   1.1   thorpej 	cookie = (struct isadma_bounce_cookie *)cookiestore;
    154   1.1   thorpej 	cookie->id_flags = cookieflags;
    155   1.1   thorpej 	map->_dm_cookie = cookie;
    156   1.1   thorpej 
    157   1.1   thorpej 	if (cookieflags & ID_MIGHT_NEED_BOUNCE) {
    158   1.1   thorpej 		/*
    159   1.1   thorpej 		 * Allocate the bounce pages now if the caller
    160   1.1   thorpej 		 * wishes us to do so.
    161   1.1   thorpej 		 */
    162   1.1   thorpej 		if ((flags & BUS_DMA_ALLOCNOW) == 0)
    163   1.1   thorpej 			goto out;
    164   1.1   thorpej 
    165   1.1   thorpej 		error = isadma_bounce_alloc_bouncebuf(t, map, size, flags);
    166   1.1   thorpej 	}
    167   1.1   thorpej 
    168   1.1   thorpej  out:
    169   1.1   thorpej 	if (error) {
    170   1.1   thorpej 		if (map->_dm_cookie != NULL)
    171   1.1   thorpej 			free(map->_dm_cookie, M_DMAMAP);
    172   1.1   thorpej 		_bus_dmamap_destroy(t, map);
    173   1.1   thorpej 	}
    174   1.1   thorpej 	return (error);
    175   1.1   thorpej }
    176   1.1   thorpej 
    177   1.1   thorpej /*
    178   1.1   thorpej  * Destroy an ISA DMA map.
    179   1.1   thorpej  */
    180   1.1   thorpej void
    181   1.1   thorpej isadma_bounce_dmamap_destroy(bus_dma_tag_t t, bus_dmamap_t map)
    182   1.1   thorpej {
    183   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    184   1.1   thorpej 
    185   1.1   thorpej 	/*
    186   1.1   thorpej 	 * Free any bounce pages this map might hold.
    187   1.1   thorpej 	 */
    188   1.1   thorpej 	if (cookie->id_flags & ID_HAS_BOUNCE)
    189   1.1   thorpej 		isadma_bounce_free_bouncebuf(t, map);
    190   1.1   thorpej 
    191   1.1   thorpej 	free(cookie, M_DMAMAP);
    192   1.1   thorpej 	_bus_dmamap_destroy(t, map);
    193   1.1   thorpej }
    194   1.1   thorpej 
    195   1.1   thorpej /*
    196   1.1   thorpej  * Load an ISA DMA map with a linear buffer.
    197   1.1   thorpej  */
    198   1.1   thorpej int
    199   1.1   thorpej isadma_bounce_dmamap_load(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
    200   1.1   thorpej     size_t buflen, struct proc *p, int flags)
    201   1.1   thorpej {
    202   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    203   1.1   thorpej 	int error;
    204   1.1   thorpej 
    205   1.1   thorpej 	/*
    206   1.1   thorpej 	 * Make sure that on error condition we return "no valid mappings."
    207   1.1   thorpej 	 */
    208   1.1   thorpej 	map->dm_mapsize = 0;
    209   1.1   thorpej 	map->dm_nsegs = 0;
    210   1.1   thorpej 
    211   1.1   thorpej 	/*
    212   1.1   thorpej 	 * Try to load the map the normal way.  If this errors out,
    213   1.1   thorpej 	 * and we can bounce, we will.
    214   1.1   thorpej 	 */
    215   1.1   thorpej 	error = _bus_dmamap_load_direct(t, map, buf, buflen, p, flags);
    216   1.1   thorpej 	if (error == 0 ||
    217   1.1   thorpej 	    (error != 0 && (cookie->id_flags & ID_MIGHT_NEED_BOUNCE) == 0))
    218   1.1   thorpej 		return (error);
    219   1.1   thorpej 
    220   1.1   thorpej 	/*
    221   1.1   thorpej 	 * First attempt failed; bounce it.
    222   1.1   thorpej 	 */
    223   1.1   thorpej 
    224   1.1   thorpej 	/*
    225   1.1   thorpej 	 * Allocate bounce pages, if necessary.
    226   1.1   thorpej 	 */
    227   1.1   thorpej 	if ((cookie->id_flags & ID_HAS_BOUNCE) == 0) {
    228   1.1   thorpej 		error = isadma_bounce_alloc_bouncebuf(t, map, buflen, flags);
    229   1.1   thorpej 		if (error)
    230   1.1   thorpej 			return (error);
    231   1.1   thorpej 	}
    232   1.1   thorpej 
    233   1.1   thorpej 	/*
    234   1.1   thorpej 	 * Cache a pointer to the caller's buffer and load the DMA map
    235   1.1   thorpej 	 * with the bounce buffer.
    236   1.1   thorpej 	 */
    237   1.1   thorpej 	cookie->id_origbuf = buf;
    238   1.1   thorpej 	cookie->id_origbuflen = buflen;
    239   1.1   thorpej 	cookie->id_buftype = ID_BUFTYPE_LINEAR;
    240   1.1   thorpej 	error = _bus_dmamap_load_direct(t, map, cookie->id_bouncebuf, buflen,
    241   1.1   thorpej 	    p, flags);
    242   1.1   thorpej 	if (error) {
    243   1.1   thorpej 		/*
    244   1.1   thorpej 		 * Free the bounce pages, unless our resources
    245   1.1   thorpej 		 * are reserved for our exclusive use.
    246   1.1   thorpej 		 */
    247   1.1   thorpej 		if ((map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
    248   1.1   thorpej 			isadma_bounce_free_bouncebuf(t, map);
    249   1.1   thorpej 		return (error);
    250   1.1   thorpej 	}
    251   1.1   thorpej 
    252   1.1   thorpej 	/* ...so isadma_bounce_dmamap_sync() knows we're bouncing */
    253   1.1   thorpej 	cookie->id_flags |= ID_IS_BOUNCING;
    254   1.4   thorpej 	map->_dm_window = t;
    255   1.1   thorpej 	return (0);
    256   1.1   thorpej }
    257   1.1   thorpej 
    258   1.1   thorpej /*
    259   1.1   thorpej  * Like isadma_bounce_dmamap_load(), but for mbufs.
    260   1.1   thorpej  */
    261   1.1   thorpej int
    262   1.1   thorpej isadma_bounce_dmamap_load_mbuf(bus_dma_tag_t t, bus_dmamap_t map,
    263  1.12      matt     struct mbuf *m0, int flags)
    264   1.1   thorpej {
    265   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    266   1.1   thorpej 	int error;
    267   1.1   thorpej 
    268   1.1   thorpej 	/*
    269   1.1   thorpej 	 * Make sure on error condition we return "no valid mappings."
    270   1.1   thorpej 	 */
    271   1.1   thorpej 	map->dm_mapsize = 0;
    272   1.1   thorpej 	map->dm_nsegs = 0;
    273   1.1   thorpej 
    274   1.1   thorpej #ifdef DIAGNOSTIC
    275   1.1   thorpej 	if ((m0->m_flags & M_PKTHDR) == 0)
    276   1.1   thorpej 		panic("isadma_bounce_dmamap_load_mbuf: no packet header");
    277   1.1   thorpej #endif
    278   1.1   thorpej 
    279   1.1   thorpej 	if (m0->m_pkthdr.len > map->_dm_size)
    280   1.1   thorpej 		return (EINVAL);
    281   1.1   thorpej 
    282   1.1   thorpej 	/*
    283   1.1   thorpej 	 * Try to load the map the normal way.  If this errors out,
    284   1.1   thorpej 	 * and we can bounce, we will.
    285   1.1   thorpej 	 */
    286   1.1   thorpej 	error = _bus_dmamap_load_mbuf_direct(t, map, m0, flags);
    287   1.1   thorpej 	if (error == 0 ||
    288   1.1   thorpej 	    (error != 0 && (cookie->id_flags & ID_MIGHT_NEED_BOUNCE) == 0))
    289   1.1   thorpej 		return (error);
    290   1.1   thorpej 
    291   1.1   thorpej 	/*
    292   1.1   thorpej 	 * First attempt failed; bounce it.
    293   1.1   thorpej 	 */
    294   1.1   thorpej 
    295   1.1   thorpej 	/*
    296   1.1   thorpej 	 * Allocate bounce pages, if necessary.
    297   1.1   thorpej 	 */
    298   1.1   thorpej 	if ((cookie->id_flags & ID_HAS_BOUNCE) == 0) {
    299   1.1   thorpej 		error = isadma_bounce_alloc_bouncebuf(t, map, m0->m_pkthdr.len,
    300   1.1   thorpej 		    flags);
    301   1.1   thorpej 		if (error)
    302   1.1   thorpej 			return (error);
    303   1.1   thorpej 	}
    304   1.1   thorpej 
    305   1.1   thorpej 	/*
    306   1.1   thorpej 	 * Cache a pointer to the caller's buffer and load the DMA map
    307   1.1   thorpej 	 * with the bounce buffer.
    308   1.1   thorpej 	 */
    309   1.1   thorpej 	cookie->id_origbuf = m0;
    310   1.1   thorpej 	cookie->id_origbuflen = m0->m_pkthdr.len;	/* not really used */
    311   1.1   thorpej 	cookie->id_buftype = ID_BUFTYPE_MBUF;
    312   1.1   thorpej 	error = _bus_dmamap_load_direct(t, map, cookie->id_bouncebuf,
    313   1.1   thorpej 	    m0->m_pkthdr.len, NULL, flags);
    314   1.1   thorpej 	if (error) {
    315   1.1   thorpej 		/*
    316   1.1   thorpej 		 * Free the bounce pages, unless our resources
    317   1.1   thorpej 		 * are reserved for our exclusive use.
    318   1.1   thorpej 		 */
    319   1.1   thorpej 		if ((map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
    320   1.1   thorpej 			isadma_bounce_free_bouncebuf(t, map);
    321   1.1   thorpej 		return (error);
    322   1.1   thorpej 	}
    323   1.1   thorpej 
    324   1.1   thorpej 	/* ...so isadma_bounce_dmamap_sync() knows we're bouncing */
    325   1.1   thorpej 	cookie->id_flags |= ID_IS_BOUNCING;
    326   1.4   thorpej 	map->_dm_window = t;
    327   1.1   thorpej 	return (0);
    328   1.1   thorpej }
    329   1.1   thorpej 
    330   1.1   thorpej /*
    331   1.1   thorpej  * Like isadma_bounce_dmamap_load(), but for uios.
    332   1.1   thorpej  */
    333   1.1   thorpej int
    334   1.1   thorpej isadma_bounce_dmamap_load_uio(bus_dma_tag_t t, bus_dmamap_t map,
    335   1.1   thorpej     struct uio *uio, int flags)
    336   1.1   thorpej {
    337   1.1   thorpej 
    338   1.1   thorpej 	panic("isadma_bounce_dmamap_load_uio: not implemented");
    339   1.1   thorpej }
    340   1.1   thorpej 
    341   1.1   thorpej /*
    342   1.1   thorpej  * Like isadma_bounce_dmamap_load(), but for raw memory allocated with
    343   1.1   thorpej  * bus_dmamem_alloc().
    344   1.1   thorpej  */
    345   1.1   thorpej int
    346   1.1   thorpej isadma_bounce_dmamap_load_raw(bus_dma_tag_t t, bus_dmamap_t map,
    347   1.1   thorpej     bus_dma_segment_t *segs, int nsegs, bus_size_t size, int flags)
    348   1.1   thorpej {
    349   1.1   thorpej 
    350   1.1   thorpej 	panic("isadma_bounce_dmamap_load_raw: not implemented");
    351   1.1   thorpej }
    352   1.1   thorpej 
    353   1.1   thorpej /*
    354   1.1   thorpej  * Unload an ISA DMA map.
    355   1.1   thorpej  */
    356   1.1   thorpej void
    357   1.1   thorpej isadma_bounce_dmamap_unload(bus_dma_tag_t t, bus_dmamap_t map)
    358   1.1   thorpej {
    359   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    360   1.1   thorpej 
    361   1.1   thorpej 	/*
    362   1.1   thorpej 	 * If we have bounce pages, free them, unless they're
    363   1.1   thorpej 	 * reserved for our exclusive use.
    364   1.1   thorpej 	 */
    365   1.1   thorpej 	if ((cookie->id_flags & ID_HAS_BOUNCE) &&
    366   1.1   thorpej 	    (map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
    367   1.1   thorpej 		isadma_bounce_free_bouncebuf(t, map);
    368   1.1   thorpej 
    369   1.1   thorpej 	cookie->id_flags &= ~ID_IS_BOUNCING;
    370   1.1   thorpej 	cookie->id_buftype = ID_BUFTYPE_INVALID;
    371   1.1   thorpej 
    372   1.1   thorpej 	/*
    373   1.1   thorpej 	 * Do the generic bits of the unload.
    374   1.1   thorpej 	 */
    375   1.1   thorpej 	_bus_dmamap_unload(t, map);
    376   1.1   thorpej }
    377   1.1   thorpej 
    378   1.1   thorpej /*
    379   1.1   thorpej  * Synchronize an ISA DMA map.
    380   1.1   thorpej  */
    381   1.1   thorpej void
    382   1.1   thorpej isadma_bounce_dmamap_sync(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
    383   1.1   thorpej     bus_size_t len, int ops)
    384   1.1   thorpej {
    385   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    386   1.1   thorpej 
    387   1.1   thorpej 	/*
    388   1.1   thorpej 	 * Mixing PRE and POST operations is not allowed.
    389   1.1   thorpej 	 */
    390   1.1   thorpej 	if ((ops & (BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)) != 0 &&
    391   1.1   thorpej 	    (ops & (BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)) != 0)
    392   1.1   thorpej 		panic("isadma_bounce_dmamap_sync: mix PRE and POST");
    393   1.1   thorpej 
    394   1.1   thorpej #ifdef DIAGNOSTIC
    395   1.1   thorpej 	if ((ops & (BUS_DMASYNC_PREWRITE|BUS_DMASYNC_POSTREAD)) != 0) {
    396   1.1   thorpej 		if (offset >= map->dm_mapsize)
    397   1.1   thorpej 			panic("isadma_bounce_dmamap_sync: bad offset");
    398   1.1   thorpej 		if (len == 0 || (offset + len) > map->dm_mapsize)
    399   1.1   thorpej 			panic("isadma_bounce_dmamap_sync: bad length");
    400   1.1   thorpej 	}
    401   1.1   thorpej #endif
    402   1.1   thorpej 
    403   1.1   thorpej 	/*
    404   1.1   thorpej 	 * If we're not bouncing, just drain the write buffer
    405   1.1   thorpej 	 * and return.
    406   1.1   thorpej 	 */
    407   1.1   thorpej 	if ((cookie->id_flags & ID_IS_BOUNCING) == 0) {
    408   1.1   thorpej 		alpha_mb();
    409   1.1   thorpej 		return;
    410   1.1   thorpej 	}
    411   1.1   thorpej 
    412   1.1   thorpej 	switch (cookie->id_buftype) {
    413   1.1   thorpej 	case ID_BUFTYPE_LINEAR:
    414   1.1   thorpej 		/*
    415   1.1   thorpej 		 * Nothing to do for pre-read.
    416   1.1   thorpej 		 */
    417   1.1   thorpej 
    418   1.1   thorpej 		if (ops & BUS_DMASYNC_PREWRITE) {
    419   1.1   thorpej 			/*
    420   1.1   thorpej 			 * Copy the caller's buffer to the bounce buffer.
    421   1.1   thorpej 			 */
    422   1.1   thorpej 			memcpy((char *)cookie->id_bouncebuf + offset,
    423   1.1   thorpej 			    (char *)cookie->id_origbuf + offset, len);
    424   1.1   thorpej 		}
    425   1.1   thorpej 
    426   1.1   thorpej 		if (ops & BUS_DMASYNC_POSTREAD) {
    427   1.1   thorpej 			/*
    428   1.1   thorpej 			 * Copy the bounce buffer to the caller's buffer.
    429   1.1   thorpej 			 */
    430   1.1   thorpej 			memcpy((char *)cookie->id_origbuf + offset,
    431   1.1   thorpej 			    (char *)cookie->id_bouncebuf + offset, len);
    432   1.1   thorpej 		}
    433   1.1   thorpej 
    434   1.1   thorpej 		/*
    435   1.1   thorpej 		 * Nothing to do for post-write.
    436   1.1   thorpej 		 */
    437   1.1   thorpej 		break;
    438   1.1   thorpej 
    439   1.1   thorpej 	case ID_BUFTYPE_MBUF:
    440   1.1   thorpej 	    {
    441   1.1   thorpej 		struct mbuf *m, *m0 = cookie->id_origbuf;
    442   1.1   thorpej 		bus_size_t minlen, moff;
    443   1.1   thorpej 
    444   1.1   thorpej 		/*
    445   1.1   thorpej 		 * Nothing to do for pre-read.
    446   1.1   thorpej 		 */
    447   1.1   thorpej 
    448   1.1   thorpej 		if (ops & BUS_DMASYNC_PREWRITE) {
    449   1.1   thorpej 			/*
    450   1.1   thorpej 			 * Copy the caller's buffer to the bounce buffer.
    451   1.1   thorpej 			 */
    452   1.1   thorpej 			m_copydata(m0, offset, len,
    453   1.1   thorpej 			    (char *)cookie->id_bouncebuf + offset);
    454   1.1   thorpej 		}
    455   1.1   thorpej 
    456   1.1   thorpej 		if (ops & BUS_DMASYNC_POSTREAD) {
    457   1.1   thorpej 			/*
    458   1.1   thorpej 			 * Copy the bounce buffer to the caller's buffer.
    459   1.1   thorpej 			 */
    460   1.1   thorpej 			for (moff = offset, m = m0; m != NULL && len != 0;
    461   1.1   thorpej 			     m = m->m_next) {
    462   1.1   thorpej 				/* Find the beginning mbuf. */
    463   1.1   thorpej 				if (moff >= m->m_len) {
    464   1.1   thorpej 					moff -= m->m_len;
    465   1.1   thorpej 					continue;
    466   1.1   thorpej 				}
    467   1.1   thorpej 
    468   1.1   thorpej 				/*
    469   1.1   thorpej 				 * Now at the first mbuf to sync; nail
    470   1.1   thorpej 				 * each one until we have exhausted the
    471   1.1   thorpej 				 * length.
    472   1.1   thorpej 				 */
    473   1.1   thorpej 				minlen = len < m->m_len - moff ?
    474   1.1   thorpej 				    len : m->m_len - moff;
    475   1.1   thorpej 
    476   1.7      yamt 				memcpy(mtod(m, char *) + moff,
    477   1.1   thorpej 				    (char *)cookie->id_bouncebuf + offset,
    478   1.1   thorpej 				    minlen);
    479   1.1   thorpej 
    480   1.1   thorpej 				moff = 0;
    481   1.1   thorpej 				len -= minlen;
    482   1.1   thorpej 				offset += minlen;
    483   1.1   thorpej 			}
    484   1.1   thorpej 		}
    485   1.1   thorpej 
    486   1.1   thorpej 		/*
    487   1.1   thorpej 		 * Nothing to do for post-write.
    488   1.1   thorpej 		 */
    489   1.1   thorpej 		break;
    490   1.1   thorpej 	    }
    491   1.1   thorpej 
    492   1.1   thorpej 	case ID_BUFTYPE_UIO:
    493   1.1   thorpej 		panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_UIO");
    494   1.1   thorpej 		break;
    495   1.1   thorpej 
    496   1.1   thorpej 	case ID_BUFTYPE_RAW:
    497   1.1   thorpej 		panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_RAW");
    498   1.1   thorpej 		break;
    499   1.1   thorpej 
    500   1.1   thorpej 	case ID_BUFTYPE_INVALID:
    501   1.1   thorpej 		panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_INVALID");
    502   1.1   thorpej 		break;
    503   1.1   thorpej 
    504   1.1   thorpej 	default:
    505   1.1   thorpej 		printf("unknown buffer type %d\n", cookie->id_buftype);
    506   1.1   thorpej 		panic("isadma_bounce_dmamap_sync");
    507   1.1   thorpej 	}
    508   1.1   thorpej 
    509   1.1   thorpej 	/* Drain the write buffer. */
    510   1.1   thorpej 	alpha_mb();
    511   1.1   thorpej }
    512   1.1   thorpej 
    513   1.1   thorpej /*
    514   1.1   thorpej  * Allocate memory safe for ISA DMA.
    515   1.1   thorpej  */
    516   1.1   thorpej int
    517   1.1   thorpej isadma_bounce_dmamem_alloc(bus_dma_tag_t t, bus_size_t size,
    518   1.1   thorpej     bus_size_t alignment, bus_size_t boundary, bus_dma_segment_t *segs,
    519   1.1   thorpej     int nsegs, int *rsegs, int flags)
    520   1.1   thorpej {
    521   1.1   thorpej 	paddr_t high;
    522   1.1   thorpej 
    523   1.1   thorpej 	if (avail_end > ISA_DMA_BOUNCE_THRESHOLD)
    524   1.1   thorpej 		high = trunc_page(ISA_DMA_BOUNCE_THRESHOLD);
    525   1.1   thorpej 	else
    526   1.1   thorpej 		high = trunc_page(avail_end);
    527   1.1   thorpej 
    528   1.1   thorpej 	return (_bus_dmamem_alloc_range(t, size, alignment, boundary,
    529   1.1   thorpej 	    segs, nsegs, rsegs, flags, 0, high));
    530   1.1   thorpej }
    531   1.1   thorpej 
    532   1.1   thorpej /**********************************************************************
    533   1.1   thorpej  * ISA DMA utility functions
    534   1.1   thorpej  **********************************************************************/
    535   1.1   thorpej 
    536   1.1   thorpej int
    537   1.1   thorpej isadma_bounce_alloc_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map,
    538   1.1   thorpej     bus_size_t size, int flags)
    539   1.1   thorpej {
    540   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    541   1.1   thorpej 	int error = 0;
    542   1.1   thorpej 
    543   1.1   thorpej 	cookie->id_bouncebuflen = round_page(size);
    544   1.1   thorpej 	error = isadma_bounce_dmamem_alloc(t, cookie->id_bouncebuflen,
    545   1.1   thorpej 	    PAGE_SIZE, map->_dm_boundary, cookie->id_bouncesegs,
    546   1.1   thorpej 	    map->_dm_segcnt, &cookie->id_nbouncesegs, flags);
    547   1.1   thorpej 	if (error)
    548   1.1   thorpej 		goto out;
    549   1.1   thorpej 	error = _bus_dmamem_map(t, cookie->id_bouncesegs,
    550   1.1   thorpej 	    cookie->id_nbouncesegs, cookie->id_bouncebuflen,
    551   1.6  christos 	    (void **)&cookie->id_bouncebuf, flags);
    552   1.1   thorpej 
    553   1.1   thorpej  out:
    554   1.1   thorpej 	if (error) {
    555   1.1   thorpej 		_bus_dmamem_free(t, cookie->id_bouncesegs,
    556   1.1   thorpej 		    cookie->id_nbouncesegs);
    557   1.1   thorpej 		cookie->id_bouncebuflen = 0;
    558   1.1   thorpej 		cookie->id_nbouncesegs = 0;
    559   1.1   thorpej 	} else
    560   1.1   thorpej 		cookie->id_flags |= ID_HAS_BOUNCE;
    561   1.1   thorpej 
    562   1.1   thorpej 	return (error);
    563   1.1   thorpej }
    564   1.1   thorpej 
    565   1.1   thorpej void
    566   1.1   thorpej isadma_bounce_free_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map)
    567   1.1   thorpej {
    568   1.1   thorpej 	struct isadma_bounce_cookie *cookie = map->_dm_cookie;
    569   1.1   thorpej 
    570   1.1   thorpej 	_bus_dmamem_unmap(t, cookie->id_bouncebuf,
    571   1.1   thorpej 	    cookie->id_bouncebuflen);
    572   1.1   thorpej 	_bus_dmamem_free(t, cookie->id_bouncesegs,
    573   1.1   thorpej 	    cookie->id_nbouncesegs);
    574   1.1   thorpej 	cookie->id_bouncebuflen = 0;
    575   1.1   thorpej 	cookie->id_nbouncesegs = 0;
    576   1.1   thorpej 	cookie->id_flags &= ~ID_HAS_BOUNCE;
    577   1.1   thorpej }
    578