Home | History | Annotate | Line # | Download | only in tc
tc_dma.c revision 1.1.2.1
      1  1.1.2.1  thorpej /* $NetBSD: tc_dma.c,v 1.1.2.1 1997/06/03 23:34:23 thorpej Exp $ */
      2  1.1.2.1  thorpej 
      3  1.1.2.1  thorpej /*-
      4  1.1.2.1  thorpej  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5  1.1.2.1  thorpej  * All rights reserved.
      6  1.1.2.1  thorpej  *
      7  1.1.2.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1.2.1  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.1.2.1  thorpej  * NASA Ames Research Center.
     10  1.1.2.1  thorpej  *
     11  1.1.2.1  thorpej  * Redistribution and use in source and binary forms, with or without
     12  1.1.2.1  thorpej  * modification, are permitted provided that the following conditions
     13  1.1.2.1  thorpej  * are met:
     14  1.1.2.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     15  1.1.2.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     16  1.1.2.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1.2.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18  1.1.2.1  thorpej  *    documentation and/or other materials provided with the distribution.
     19  1.1.2.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     20  1.1.2.1  thorpej  *    must display the following acknowledgement:
     21  1.1.2.1  thorpej  *	This product includes software developed by the NetBSD
     22  1.1.2.1  thorpej  *	Foundation, Inc. and its contributors.
     23  1.1.2.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1.2.1  thorpej  *    contributors may be used to endorse or promote products derived
     25  1.1.2.1  thorpej  *    from this software without specific prior written permission.
     26  1.1.2.1  thorpej  *
     27  1.1.2.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1.2.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1.2.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1.2.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1.2.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1.2.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1.2.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1.2.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1.2.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1.2.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1.2.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1.2.1  thorpej  */
     39  1.1.2.1  thorpej 
     40  1.1.2.1  thorpej #include <machine/options.h>		/* Config options headers */
     41  1.1.2.1  thorpej #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     42  1.1.2.1  thorpej 
     43  1.1.2.1  thorpej __KERNEL_RCSID(0, "$NetBSD: tc_dma.c,v 1.1.2.1 1997/06/03 23:34:23 thorpej Exp $");
     44  1.1.2.1  thorpej 
     45  1.1.2.1  thorpej #include <sys/param.h>
     46  1.1.2.1  thorpej #include <sys/systm.h>
     47  1.1.2.1  thorpej #include <sys/kernel.h>
     48  1.1.2.1  thorpej #include <sys/device.h>
     49  1.1.2.1  thorpej #include <sys/malloc.h>
     50  1.1.2.1  thorpej #include <vm/vm.h>
     51  1.1.2.1  thorpej 
     52  1.1.2.1  thorpej #define _ALPHA_BUS_DMA_PRIVATE
     53  1.1.2.1  thorpej #include <machine/bus.h>
     54  1.1.2.1  thorpej #include <machine/rpb.h>
     55  1.1.2.1  thorpej 
     56  1.1.2.1  thorpej #include <dev/tc/tcreg.h>
     57  1.1.2.1  thorpej #include <dev/tc/tcvar.h>
     58  1.1.2.1  thorpej #include <alpha/tc/tc_sgmap.h>
     59  1.1.2.1  thorpej 
     60  1.1.2.1  thorpej extern int cputype;
     61  1.1.2.1  thorpej 
     62  1.1.2.1  thorpej bus_dma_tag_t tc_dma_get_tag __P((int));
     63  1.1.2.1  thorpej 
     64  1.1.2.1  thorpej #ifdef DEC_3000_500
     65  1.1.2.1  thorpej int	tc_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
     66  1.1.2.1  thorpej 	    bus_size_t, bus_size_t, int, bus_dmamap_t *));
     67  1.1.2.1  thorpej void	tc_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
     68  1.1.2.1  thorpej int	tc_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
     69  1.1.2.1  thorpej 	    bus_size_t, struct proc *, int));
     70  1.1.2.1  thorpej int	tc_bus_dmamap_load_mbuf_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     71  1.1.2.1  thorpej 	    struct mbuf *, int));
     72  1.1.2.1  thorpej int	tc_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     73  1.1.2.1  thorpej 	    struct uio *, int));
     74  1.1.2.1  thorpej int	tc_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     75  1.1.2.1  thorpej 	    bus_dma_segment_t *, int, bus_size_t, int));
     76  1.1.2.1  thorpej void	tc_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
     77  1.1.2.1  thorpej #endif /* DEC_3000_500 */
     78  1.1.2.1  thorpej 
     79  1.1.2.1  thorpej int	tc_bus_dmamap_load_direct __P((bus_dma_tag_t, bus_dmamap_t, void *,
     80  1.1.2.1  thorpej 	    bus_size_t, struct proc *, int));
     81  1.1.2.1  thorpej int	tc_bus_dmamap_load_mbuf_direct __P((bus_dma_tag_t, bus_dmamap_t,
     82  1.1.2.1  thorpej 	    struct mbuf *, int));
     83  1.1.2.1  thorpej int	tc_bus_dmamap_load_uio_direct __P((bus_dma_tag_t, bus_dmamap_t,
     84  1.1.2.1  thorpej 	    struct uio *, int));
     85  1.1.2.1  thorpej int	tc_bus_dmamap_load_raw_direct __P((bus_dma_tag_t, bus_dmamap_t,
     86  1.1.2.1  thorpej 	    bus_dma_segment_t *, int, bus_size_t, int));
     87  1.1.2.1  thorpej 
     88  1.1.2.1  thorpej 
     89  1.1.2.1  thorpej struct alpha_bus_dma_tag tc_dmat_direct = {
     90  1.1.2.1  thorpej 	NULL,				/* _cookie */
     91  1.1.2.1  thorpej 	NULL,				/* _get_tag */
     92  1.1.2.1  thorpej 	_bus_dmamap_create,
     93  1.1.2.1  thorpej 	_bus_dmamap_destroy,
     94  1.1.2.1  thorpej 	tc_bus_dmamap_load_direct,
     95  1.1.2.1  thorpej 	tc_bus_dmamap_load_mbuf_direct,
     96  1.1.2.1  thorpej 	tc_bus_dmamap_load_uio_direct,
     97  1.1.2.1  thorpej 	tc_bus_dmamap_load_raw_direct,
     98  1.1.2.1  thorpej 	_bus_dmamap_unload,
     99  1.1.2.1  thorpej 	NULL,				/* _dmamap_sync */
    100  1.1.2.1  thorpej 	_bus_dmamem_alloc,
    101  1.1.2.1  thorpej 	_bus_dmamem_free,
    102  1.1.2.1  thorpej 	_bus_dmamem_map,
    103  1.1.2.1  thorpej 	_bus_dmamem_unmap,
    104  1.1.2.1  thorpej 	_bus_dmamem_mmap,
    105  1.1.2.1  thorpej };
    106  1.1.2.1  thorpej 
    107  1.1.2.1  thorpej #ifdef DEC_3000_500
    108  1.1.2.1  thorpej struct alpha_bus_dma_tag tc_dmat_sgmap = {
    109  1.1.2.1  thorpej 	NULL,				/* _cookie */
    110  1.1.2.1  thorpej 	NULL,				/* _get_tag */
    111  1.1.2.1  thorpej 	tc_bus_dmamap_create_sgmap,
    112  1.1.2.1  thorpej 	tc_bus_dmamap_destroy_sgmap,
    113  1.1.2.1  thorpej 	tc_bus_dmamap_load_sgmap,
    114  1.1.2.1  thorpej 	tc_bus_dmamap_load_mbuf_sgmap,
    115  1.1.2.1  thorpej 	tc_bus_dmamap_load_uio_sgmap,
    116  1.1.2.1  thorpej 	tc_bus_dmamap_load_raw_sgmap,
    117  1.1.2.1  thorpej 	tc_bus_dmamap_unload_sgmap,
    118  1.1.2.1  thorpej 	NULL,				/* _dmamap_sync */
    119  1.1.2.1  thorpej 	_bus_dmamem_alloc,
    120  1.1.2.1  thorpej 	_bus_dmamem_free,
    121  1.1.2.1  thorpej 	_bus_dmamem_map,
    122  1.1.2.1  thorpej 	_bus_dmamem_unmap,
    123  1.1.2.1  thorpej 	_bus_dmamem_mmap,
    124  1.1.2.1  thorpej };
    125  1.1.2.1  thorpej 
    126  1.1.2.1  thorpej struct tc_dma_slot_info {
    127  1.1.2.1  thorpej 	struct alpha_sgmap tdsi_sgmap;		/* sgmap for slot */
    128  1.1.2.1  thorpej 	struct alpha_bus_dma_tag tdsi_dmat;	/* dma tag for slot */
    129  1.1.2.1  thorpej };
    130  1.1.2.1  thorpej struct tc_dma_slot_info *tc_dma_slot_info;
    131  1.1.2.1  thorpej #endif /* DEC_3000_500 */
    132  1.1.2.1  thorpej 
    133  1.1.2.1  thorpej void
    134  1.1.2.1  thorpej tc_dma_init(nslots)
    135  1.1.2.1  thorpej 	int nslots;
    136  1.1.2.1  thorpej {
    137  1.1.2.1  thorpej 
    138  1.1.2.1  thorpej #ifdef DEC_3000_500
    139  1.1.2.1  thorpej 	if (cputype == ST_DEC_3000_500) {
    140  1.1.2.1  thorpej 		size_t sisize;
    141  1.1.2.1  thorpej 		int i;
    142  1.1.2.1  thorpej 
    143  1.1.2.1  thorpej 		/* Allocate per-slot DMA info. */
    144  1.1.2.1  thorpej 		sisize = nslots * sizeof(struct tc_dma_slot_info);
    145  1.1.2.1  thorpej 		tc_dma_slot_info = malloc(sisize, M_DEVBUF, M_NOWAIT);
    146  1.1.2.1  thorpej 		if (tc_dma_slot_info == NULL)
    147  1.1.2.1  thorpej 			panic("tc_dma_init: can't allocate per-slot DMA info");
    148  1.1.2.1  thorpej 		bzero(tc_dma_slot_info, sisize);
    149  1.1.2.1  thorpej 
    150  1.1.2.1  thorpej 		/* Default all slots to direct-mapped. */
    151  1.1.2.1  thorpej 		for (i = 0; i < nslots; i++)
    152  1.1.2.1  thorpej 			bcopy(&tc_dmat_direct, &tc_dma_slot_info[i].tdsi_dmat,
    153  1.1.2.1  thorpej 			    sizeof(tc_dma_slot_info[i].tdsi_dmat));
    154  1.1.2.1  thorpej 	}
    155  1.1.2.1  thorpej #endif /* DEC_3000_500 */
    156  1.1.2.1  thorpej 
    157  1.1.2.1  thorpej 	/* XXX XXX BEGIN XXX XXX */
    158  1.1.2.1  thorpej 	{							/* XXX */
    159  1.1.2.1  thorpej 		extern vm_offset_t alpha_XXX_dmamap_or;		/* XXX */
    160  1.1.2.1  thorpej 		alpha_XXX_dmamap_or = 0;			/* XXX */
    161  1.1.2.1  thorpej 	}							/* XXX */
    162  1.1.2.1  thorpej 	/* XXX XXX END XXX XXX */
    163  1.1.2.1  thorpej }
    164  1.1.2.1  thorpej 
    165  1.1.2.1  thorpej /*
    166  1.1.2.1  thorpej  * Return the DMA tag for the given slot.
    167  1.1.2.1  thorpej  */
    168  1.1.2.1  thorpej bus_dma_tag_t
    169  1.1.2.1  thorpej tc_dma_get_tag(slot)
    170  1.1.2.1  thorpej 	int slot;
    171  1.1.2.1  thorpej {
    172  1.1.2.1  thorpej 	bus_dma_tag_t t;
    173  1.1.2.1  thorpej 
    174  1.1.2.1  thorpej 	switch (cputype) {
    175  1.1.2.1  thorpej #ifdef DEC_3000_500
    176  1.1.2.1  thorpej 	case ST_DEC_3000_500:
    177  1.1.2.1  thorpej 		t = &tc_dma_slot_info[slot].tdsi_dmat;
    178  1.1.2.1  thorpej 		break;
    179  1.1.2.1  thorpej #endif /* DEC_3000_500 */
    180  1.1.2.1  thorpej 
    181  1.1.2.1  thorpej #ifdef DEC_3000_300
    182  1.1.2.1  thorpej 	case ST_DEC_3000_300:
    183  1.1.2.1  thorpej 		/* Pelican doesn't have SGMAPs. */
    184  1.1.2.1  thorpej 		t = &tc_dmat_direct;
    185  1.1.2.1  thorpej 		break;
    186  1.1.2.1  thorpej #endif /* ST_DEC_3000_300 */
    187  1.1.2.1  thorpej 
    188  1.1.2.1  thorpej 	default:
    189  1.1.2.1  thorpej 		panic("tc_dma_get_tag: bad cputype");
    190  1.1.2.1  thorpej 	}
    191  1.1.2.1  thorpej 
    192  1.1.2.1  thorpej 	return (t);
    193  1.1.2.1  thorpej }
    194  1.1.2.1  thorpej 
    195  1.1.2.1  thorpej #ifdef DEC_3000_500
    196  1.1.2.1  thorpej /*
    197  1.1.2.1  thorpej  * Create a TurboChannel SGMAP-mapped DMA map.
    198  1.1.2.1  thorpej  */
    199  1.1.2.1  thorpej int
    200  1.1.2.1  thorpej tc_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
    201  1.1.2.1  thorpej     flags, dmamp)
    202  1.1.2.1  thorpej 	bus_dma_tag_t t;
    203  1.1.2.1  thorpej 	bus_size_t size;
    204  1.1.2.1  thorpej 	int nsegments;
    205  1.1.2.1  thorpej 	bus_size_t maxsegsz;
    206  1.1.2.1  thorpej 	bus_size_t boundary;
    207  1.1.2.1  thorpej 	int flags;
    208  1.1.2.1  thorpej 	bus_dmamap_t *dmamp;
    209  1.1.2.1  thorpej {
    210  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    211  1.1.2.1  thorpej 	struct alpha_sgmap_cookie *a;
    212  1.1.2.1  thorpej 	bus_dmamap_t map;
    213  1.1.2.1  thorpej 	int error;
    214  1.1.2.1  thorpej 
    215  1.1.2.1  thorpej 	error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
    216  1.1.2.1  thorpej 	    boundary, flags, dmamp);
    217  1.1.2.1  thorpej 	if (error)
    218  1.1.2.1  thorpej 		return (error);
    219  1.1.2.1  thorpej 
    220  1.1.2.1  thorpej 	map = *dmamp;
    221  1.1.2.1  thorpej 
    222  1.1.2.1  thorpej 	a = malloc(sizeof(struct alpha_sgmap_cookie), M_DEVBUF,
    223  1.1.2.1  thorpej 	    (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK);
    224  1.1.2.1  thorpej 	if (a == NULL) {
    225  1.1.2.1  thorpej 		_bus_dmamap_destroy(t, map);
    226  1.1.2.1  thorpej 		return (ENOMEM);
    227  1.1.2.1  thorpej 	}
    228  1.1.2.1  thorpej 	bzero(a, sizeof(struct alpha_sgmap_cookie));
    229  1.1.2.1  thorpej 	map->_dm_sgcookie = a;
    230  1.1.2.1  thorpej 
    231  1.1.2.1  thorpej 	if (flags & BUS_DMA_ALLOCNOW) {
    232  1.1.2.1  thorpej 		error = alpha_sgmap_alloc(map, round_page(size),
    233  1.1.2.1  thorpej 		    &tdsi->tdsi_sgmap, flags);
    234  1.1.2.1  thorpej 		if (error)
    235  1.1.2.1  thorpej 			tc_bus_dmamap_destroy_sgmap(t, map);
    236  1.1.2.1  thorpej 	}
    237  1.1.2.1  thorpej 
    238  1.1.2.1  thorpej 	return (error);
    239  1.1.2.1  thorpej }
    240  1.1.2.1  thorpej 
    241  1.1.2.1  thorpej /*
    242  1.1.2.1  thorpej  * Destroy a TurboChannel SGMAP-mapped DMA map.
    243  1.1.2.1  thorpej  */
    244  1.1.2.1  thorpej void
    245  1.1.2.1  thorpej tc_bus_dmamap_destroy_sgmap(t, map)
    246  1.1.2.1  thorpej 	bus_dma_tag_t t;
    247  1.1.2.1  thorpej 	bus_dmamap_t map;
    248  1.1.2.1  thorpej {
    249  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    250  1.1.2.1  thorpej 	struct alpha_sgmap_cookie *a = map->_dm_sgcookie;
    251  1.1.2.1  thorpej 
    252  1.1.2.1  thorpej 	if (a->apdc_flags & APDC_HAS_SGMAP)
    253  1.1.2.1  thorpej 		alpha_sgmap_free(&tdsi->tdsi_sgmap, a);
    254  1.1.2.1  thorpej 
    255  1.1.2.1  thorpej 	free(a, M_DEVBUF);
    256  1.1.2.1  thorpej 	_bus_dmamap_destroy(t, map);
    257  1.1.2.1  thorpej }
    258  1.1.2.1  thorpej 
    259  1.1.2.1  thorpej /*
    260  1.1.2.1  thorpej  * Load a TurboChannel direct-mapped DMA map with a linear buffer.
    261  1.1.2.1  thorpej  */
    262  1.1.2.1  thorpej int
    263  1.1.2.1  thorpej tc_bus_dmamap_load_direct(t, map, buf, buflen, p, flags)
    264  1.1.2.1  thorpej 	bus_dma_tag_t t;
    265  1.1.2.1  thorpej 	bus_dmamap_t map;
    266  1.1.2.1  thorpej 	void *buf;
    267  1.1.2.1  thorpej 	bus_size_t buflen;
    268  1.1.2.1  thorpej 	struct proc *p;
    269  1.1.2.1  thorpej 	int flags;
    270  1.1.2.1  thorpej {
    271  1.1.2.1  thorpej 
    272  1.1.2.1  thorpej 	return (_bus_dmamap_load_direct_common(t, map, buf, buflen, p,
    273  1.1.2.1  thorpej 	    flags, 0));
    274  1.1.2.1  thorpej }
    275  1.1.2.1  thorpej 
    276  1.1.2.1  thorpej /*
    277  1.1.2.1  thorpej  * Load a TurboChannel SGMAP-mapped DMA map with a linear buffer.
    278  1.1.2.1  thorpej  */
    279  1.1.2.1  thorpej int
    280  1.1.2.1  thorpej tc_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
    281  1.1.2.1  thorpej 	bus_dma_tag_t t;
    282  1.1.2.1  thorpej 	bus_dmamap_t map;
    283  1.1.2.1  thorpej 	void *buf;
    284  1.1.2.1  thorpej 	bus_size_t buflen;
    285  1.1.2.1  thorpej 	struct proc *p;
    286  1.1.2.1  thorpej 	int flags;
    287  1.1.2.1  thorpej {
    288  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    289  1.1.2.1  thorpej 
    290  1.1.2.1  thorpej 	return (tc_sgmap_load(t, map, buf, buflen, p, flags,
    291  1.1.2.1  thorpej 	    &tdsi->tdsi_sgmap));
    292  1.1.2.1  thorpej }
    293  1.1.2.1  thorpej 
    294  1.1.2.1  thorpej /*
    295  1.1.2.1  thorpej  * Load a TurboChannel direct-mapped DMA map with an mbuf chain.
    296  1.1.2.1  thorpej  */
    297  1.1.2.1  thorpej int
    298  1.1.2.1  thorpej tc_bus_dmamap_load_mbuf_direct(t, map, m, flags)
    299  1.1.2.1  thorpej 	bus_dma_tag_t t;
    300  1.1.2.1  thorpej 	bus_dmamap_t map;
    301  1.1.2.1  thorpej 	struct mbuf *m;
    302  1.1.2.1  thorpej 	int flags;
    303  1.1.2.1  thorpej {
    304  1.1.2.1  thorpej 
    305  1.1.2.1  thorpej 	return (_bus_dmamap_load_mbuf_direct_common(t, map, m,
    306  1.1.2.1  thorpej 	    flags, 0));
    307  1.1.2.1  thorpej }
    308  1.1.2.1  thorpej 
    309  1.1.2.1  thorpej /*
    310  1.1.2.1  thorpej  * Load a TurboChannel SGMAP-mapped DMA map with an mbuf chain.
    311  1.1.2.1  thorpej  */
    312  1.1.2.1  thorpej int
    313  1.1.2.1  thorpej tc_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
    314  1.1.2.1  thorpej 	bus_dma_tag_t t;
    315  1.1.2.1  thorpej 	bus_dmamap_t map;
    316  1.1.2.1  thorpej 	struct mbuf *m;
    317  1.1.2.1  thorpej 	int flags;
    318  1.1.2.1  thorpej {
    319  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    320  1.1.2.1  thorpej 
    321  1.1.2.1  thorpej 	return (tc_sgmap_load_mbuf(t, map, m, flags, &tdsi->tdsi_sgmap));
    322  1.1.2.1  thorpej }
    323  1.1.2.1  thorpej 
    324  1.1.2.1  thorpej /*
    325  1.1.2.1  thorpej  * Load a TurboChannel direct-mapped DMA map with a uio.
    326  1.1.2.1  thorpej  */
    327  1.1.2.1  thorpej int
    328  1.1.2.1  thorpej tc_bus_dmamap_load_uio_direct(t, map, uio, flags)
    329  1.1.2.1  thorpej 	bus_dma_tag_t t;
    330  1.1.2.1  thorpej 	bus_dmamap_t map;
    331  1.1.2.1  thorpej 	struct uio *uio;
    332  1.1.2.1  thorpej 	int flags;
    333  1.1.2.1  thorpej {
    334  1.1.2.1  thorpej 
    335  1.1.2.1  thorpej 	return (_bus_dmamap_load_uio_direct_common(t, map, uio,
    336  1.1.2.1  thorpej 	    flags, 0));
    337  1.1.2.1  thorpej }
    338  1.1.2.1  thorpej 
    339  1.1.2.1  thorpej /*
    340  1.1.2.1  thorpej  * Load a TurboChannel SGMAP-mapped DMA map with a uio.
    341  1.1.2.1  thorpej  */
    342  1.1.2.1  thorpej int
    343  1.1.2.1  thorpej tc_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
    344  1.1.2.1  thorpej 	bus_dma_tag_t t;
    345  1.1.2.1  thorpej 	bus_dmamap_t map;
    346  1.1.2.1  thorpej 	struct uio *uio;
    347  1.1.2.1  thorpej 	int flags;
    348  1.1.2.1  thorpej {
    349  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    350  1.1.2.1  thorpej 
    351  1.1.2.1  thorpej 	return (tc_sgmap_load_uio(t, map, uio, flags, &tdsi->tdsi_sgmap));
    352  1.1.2.1  thorpej }
    353  1.1.2.1  thorpej 
    354  1.1.2.1  thorpej /*
    355  1.1.2.1  thorpej  * Load a TurboChannel direct-mapped DMA map with raw memory.
    356  1.1.2.1  thorpej  */
    357  1.1.2.1  thorpej int
    358  1.1.2.1  thorpej tc_bus_dmamap_load_raw_direct(t, map, segs, nsegs, size, flags)
    359  1.1.2.1  thorpej 	bus_dma_tag_t t;
    360  1.1.2.1  thorpej 	bus_dmamap_t map;
    361  1.1.2.1  thorpej 	bus_dma_segment_t *segs;
    362  1.1.2.1  thorpej 	int nsegs;
    363  1.1.2.1  thorpej 	bus_size_t size;
    364  1.1.2.1  thorpej 	int flags;
    365  1.1.2.1  thorpej {
    366  1.1.2.1  thorpej 
    367  1.1.2.1  thorpej 	return (_bus_dmamap_load_raw_direct_common(t, map, segs, nsegs,
    368  1.1.2.1  thorpej 	    size, flags, 0));
    369  1.1.2.1  thorpej }
    370  1.1.2.1  thorpej 
    371  1.1.2.1  thorpej /*
    372  1.1.2.1  thorpej  * Load a TurboChannel SGMAP-mapped DMA map with raw memory.
    373  1.1.2.1  thorpej  */
    374  1.1.2.1  thorpej int
    375  1.1.2.1  thorpej tc_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
    376  1.1.2.1  thorpej 	bus_dma_tag_t t;
    377  1.1.2.1  thorpej 	bus_dmamap_t map;
    378  1.1.2.1  thorpej 	bus_dma_segment_t *segs;
    379  1.1.2.1  thorpej 	int nsegs;
    380  1.1.2.1  thorpej 	bus_size_t size;
    381  1.1.2.1  thorpej 	int flags;
    382  1.1.2.1  thorpej {
    383  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    384  1.1.2.1  thorpej 
    385  1.1.2.1  thorpej 	return (tc_sgmap_load_raw(t, map, segs, nsegs, size, flags,
    386  1.1.2.1  thorpej 	    &tdsi->tdsi_sgmap));
    387  1.1.2.1  thorpej }
    388  1.1.2.1  thorpej 
    389  1.1.2.1  thorpej /*
    390  1.1.2.1  thorpej  * Unload a TurboChannel DMA map.
    391  1.1.2.1  thorpej  */
    392  1.1.2.1  thorpej void
    393  1.1.2.1  thorpej tc_bus_dmamap_unload_sgmap(t, map)
    394  1.1.2.1  thorpej 	bus_dma_tag_t t;
    395  1.1.2.1  thorpej 	bus_dmamap_t map;
    396  1.1.2.1  thorpej {
    397  1.1.2.1  thorpej 	struct tc_dma_slot_info *tdsi = t->_cookie;
    398  1.1.2.1  thorpej 
    399  1.1.2.1  thorpej 	/*
    400  1.1.2.1  thorpej 	 * Invalidate any SGMAP page table entries used by this
    401  1.1.2.1  thorpej 	 * mapping.
    402  1.1.2.1  thorpej 	 */
    403  1.1.2.1  thorpej 	tc_sgmap_unload(t, map, &tdsi->tdsi_sgmap);
    404  1.1.2.1  thorpej 
    405  1.1.2.1  thorpej 	/*
    406  1.1.2.1  thorpej 	 * Do the generic bits of the unload.
    407  1.1.2.1  thorpej 	 */
    408  1.1.2.1  thorpej 	_bus_dmamap_unload(t, map);
    409  1.1.2.1  thorpej }
    410  1.1.2.1  thorpej #endif /* DEC_3000_500 */
    411