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