Home | History | Annotate | Line # | Download | only in pci
cia_dma.c revision 1.13.12.1
      1  1.13.12.1   bouyer /* $NetBSD: cia_dma.c,v 1.13.12.1 2000/11/20 19:57:07 bouyer Exp $ */
      2        1.2  thorpej 
      3        1.2  thorpej /*-
      4        1.5  thorpej  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5        1.2  thorpej  * All rights reserved.
      6        1.2  thorpej  *
      7        1.2  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8        1.2  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9        1.2  thorpej  * NASA Ames Research Center.
     10        1.2  thorpej  *
     11        1.2  thorpej  * Redistribution and use in source and binary forms, with or without
     12        1.2  thorpej  * modification, are permitted provided that the following conditions
     13        1.2  thorpej  * are met:
     14        1.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     15        1.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     16        1.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18        1.2  thorpej  *    documentation and/or other materials provided with the distribution.
     19        1.2  thorpej  * 3. All advertising materials mentioning features or use of this software
     20        1.2  thorpej  *    must display the following acknowledgement:
     21        1.2  thorpej  *	This product includes software developed by the NetBSD
     22        1.2  thorpej  *	Foundation, Inc. and its contributors.
     23        1.2  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24        1.2  thorpej  *    contributors may be used to endorse or promote products derived
     25        1.2  thorpej  *    from this software without specific prior written permission.
     26        1.2  thorpej  *
     27        1.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28        1.2  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29        1.2  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30        1.2  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31        1.2  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32        1.2  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33        1.2  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34        1.2  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35        1.2  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36        1.2  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37        1.2  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38        1.2  thorpej  */
     39        1.2  thorpej 
     40        1.2  thorpej #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     41        1.2  thorpej 
     42  1.13.12.1   bouyer __KERNEL_RCSID(0, "$NetBSD: cia_dma.c,v 1.13.12.1 2000/11/20 19:57:07 bouyer Exp $");
     43        1.2  thorpej 
     44        1.2  thorpej #include <sys/param.h>
     45        1.2  thorpej #include <sys/systm.h>
     46        1.2  thorpej #include <sys/kernel.h>
     47        1.2  thorpej #include <sys/device.h>
     48        1.2  thorpej #include <sys/malloc.h>
     49  1.13.12.1   bouyer 
     50  1.13.12.1   bouyer #include <uvm/uvm_extern.h>
     51        1.2  thorpej 
     52        1.2  thorpej #define _ALPHA_BUS_DMA_PRIVATE
     53        1.2  thorpej #include <machine/bus.h>
     54        1.2  thorpej 
     55        1.2  thorpej #include <dev/pci/pcireg.h>
     56        1.2  thorpej #include <dev/pci/pcivar.h>
     57        1.2  thorpej #include <alpha/pci/ciareg.h>
     58        1.2  thorpej #include <alpha/pci/ciavar.h>
     59        1.2  thorpej 
     60        1.2  thorpej bus_dma_tag_t cia_dma_get_tag __P((bus_dma_tag_t, alpha_bus_t));
     61        1.2  thorpej 
     62  1.13.12.1   bouyer int	cia_bus_dmamap_create_direct __P((bus_dma_tag_t, bus_size_t, int,
     63  1.13.12.1   bouyer 	    bus_size_t, bus_size_t, int, bus_dmamap_t *));
     64  1.13.12.1   bouyer 
     65        1.2  thorpej int	cia_bus_dmamap_create_sgmap __P((bus_dma_tag_t, bus_size_t, int,
     66        1.2  thorpej 	    bus_size_t, bus_size_t, int, bus_dmamap_t *));
     67        1.2  thorpej 
     68        1.2  thorpej void	cia_bus_dmamap_destroy_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
     69        1.2  thorpej 
     70        1.2  thorpej int	cia_bus_dmamap_load_sgmap __P((bus_dma_tag_t, bus_dmamap_t, void *,
     71        1.2  thorpej 	    bus_size_t, struct proc *, int));
     72        1.2  thorpej 
     73        1.2  thorpej int	cia_bus_dmamap_load_mbuf_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     74        1.2  thorpej 	    struct mbuf *, int));
     75        1.2  thorpej 
     76        1.2  thorpej int	cia_bus_dmamap_load_uio_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     77        1.2  thorpej 	    struct uio *, int));
     78        1.2  thorpej 
     79        1.2  thorpej int	cia_bus_dmamap_load_raw_sgmap __P((bus_dma_tag_t, bus_dmamap_t,
     80        1.2  thorpej 	    bus_dma_segment_t *, int, bus_size_t, int));
     81        1.2  thorpej 
     82        1.2  thorpej void	cia_bus_dmamap_unload_sgmap __P((bus_dma_tag_t, bus_dmamap_t));
     83        1.2  thorpej 
     84        1.2  thorpej /*
     85        1.8  thorpej  * Direct-mapped window: 1G at 1G
     86        1.2  thorpej  */
     87        1.8  thorpej #define	CIA_DIRECT_MAPPED_BASE	(1*1024*1024*1024)
     88        1.8  thorpej #define	CIA_DIRECT_MAPPED_SIZE	(1*1024*1024*1024)
     89        1.2  thorpej 
     90        1.2  thorpej /*
     91        1.8  thorpej  * SGMAP window: 8M at 8M
     92        1.2  thorpej  */
     93        1.2  thorpej #define	CIA_SGMAP_MAPPED_BASE	(8*1024*1024)
     94        1.8  thorpej #define	CIA_SGMAP_MAPPED_SIZE	(8*1024*1024)
     95        1.2  thorpej 
     96       1.10  thorpej void	cia_tlb_invalidate __P((void));
     97       1.10  thorpej void	cia_broken_pyxis_tlb_invalidate __P((void));
     98       1.10  thorpej 
     99       1.10  thorpej void	(*cia_tlb_invalidate_fn) __P((void));
    100       1.10  thorpej 
    101       1.10  thorpej #define	CIA_TLB_INVALIDATE()	(*cia_tlb_invalidate_fn)()
    102       1.10  thorpej 
    103       1.10  thorpej struct alpha_sgmap cia_pyxis_bug_sgmap;
    104  1.13.12.1   bouyer #define	CIA_PYXIS_BUG_BASE	(128*1024*1024)
    105       1.10  thorpej #define	CIA_PYXIS_BUG_SIZE	(2*1024*1024)
    106        1.2  thorpej 
    107        1.2  thorpej void
    108        1.2  thorpej cia_dma_init(ccp)
    109        1.2  thorpej 	struct cia_config *ccp;
    110        1.2  thorpej {
    111        1.2  thorpej 	bus_addr_t tbase;
    112        1.2  thorpej 	bus_dma_tag_t t;
    113        1.2  thorpej 
    114        1.2  thorpej 	/*
    115        1.2  thorpej 	 * Initialize the DMA tag used for direct-mapped DMA.
    116        1.2  thorpej 	 */
    117        1.2  thorpej 	t = &ccp->cc_dmat_direct;
    118        1.2  thorpej 	t->_cookie = ccp;
    119        1.7  thorpej 	t->_wbase = CIA_DIRECT_MAPPED_BASE;
    120        1.8  thorpej 	t->_wsize = CIA_DIRECT_MAPPED_SIZE;
    121        1.8  thorpej 	t->_next_window = NULL;
    122        1.9  thorpej 	t->_boundary = 0;
    123        1.8  thorpej 	t->_sgmap = NULL;
    124        1.2  thorpej 	t->_get_tag = cia_dma_get_tag;
    125  1.13.12.1   bouyer 	t->_dmamap_create = cia_bus_dmamap_create_direct;
    126        1.2  thorpej 	t->_dmamap_destroy = _bus_dmamap_destroy;
    127        1.7  thorpej 	t->_dmamap_load = _bus_dmamap_load_direct;
    128        1.7  thorpej 	t->_dmamap_load_mbuf = _bus_dmamap_load_mbuf_direct;
    129        1.7  thorpej 	t->_dmamap_load_uio = _bus_dmamap_load_uio_direct;
    130        1.7  thorpej 	t->_dmamap_load_raw = _bus_dmamap_load_raw_direct;
    131        1.2  thorpej 	t->_dmamap_unload = _bus_dmamap_unload;
    132        1.6  thorpej 	t->_dmamap_sync = _bus_dmamap_sync;
    133        1.2  thorpej 
    134        1.2  thorpej 	t->_dmamem_alloc = _bus_dmamem_alloc;
    135        1.2  thorpej 	t->_dmamem_free = _bus_dmamem_free;
    136        1.2  thorpej 	t->_dmamem_map = _bus_dmamem_map;
    137        1.2  thorpej 	t->_dmamem_unmap = _bus_dmamem_unmap;
    138        1.2  thorpej 	t->_dmamem_mmap = _bus_dmamem_mmap;
    139        1.2  thorpej 
    140        1.2  thorpej 	/*
    141        1.2  thorpej 	 * Initialize the DMA tag used for sgmap-mapped DMA.
    142        1.2  thorpej 	 */
    143        1.2  thorpej 	t = &ccp->cc_dmat_sgmap;
    144        1.2  thorpej 	t->_cookie = ccp;
    145        1.7  thorpej 	t->_wbase = CIA_SGMAP_MAPPED_BASE;
    146        1.8  thorpej 	t->_wsize = CIA_SGMAP_MAPPED_SIZE;
    147        1.8  thorpej 	t->_next_window = NULL;
    148        1.9  thorpej 	t->_boundary = 0;
    149        1.8  thorpej 	t->_sgmap = &ccp->cc_sgmap;
    150        1.2  thorpej 	t->_get_tag = cia_dma_get_tag;
    151        1.2  thorpej 	t->_dmamap_create = cia_bus_dmamap_create_sgmap;
    152        1.2  thorpej 	t->_dmamap_destroy = cia_bus_dmamap_destroy_sgmap;
    153        1.2  thorpej 	t->_dmamap_load = cia_bus_dmamap_load_sgmap;
    154        1.2  thorpej 	t->_dmamap_load_mbuf = cia_bus_dmamap_load_mbuf_sgmap;
    155        1.2  thorpej 	t->_dmamap_load_uio = cia_bus_dmamap_load_uio_sgmap;
    156        1.2  thorpej 	t->_dmamap_load_raw = cia_bus_dmamap_load_raw_sgmap;
    157        1.2  thorpej 	t->_dmamap_unload = cia_bus_dmamap_unload_sgmap;
    158        1.6  thorpej 	t->_dmamap_sync = _bus_dmamap_sync;
    159        1.2  thorpej 
    160        1.2  thorpej 	t->_dmamem_alloc = _bus_dmamem_alloc;
    161        1.2  thorpej 	t->_dmamem_free = _bus_dmamem_free;
    162        1.2  thorpej 	t->_dmamem_map = _bus_dmamem_map;
    163        1.2  thorpej 	t->_dmamem_unmap = _bus_dmamem_unmap;
    164        1.2  thorpej 	t->_dmamem_mmap = _bus_dmamem_mmap;
    165        1.2  thorpej 
    166        1.2  thorpej 	/*
    167        1.2  thorpej 	 * The firmware has set up window 1 as a 1G direct-mapped DMA
    168        1.2  thorpej 	 * window beginning at 1G.  We leave it alone.  Leave window
    169        1.2  thorpej 	 * 0 alone until we reconfigure it for SGMAP-mapped DMA.
    170        1.2  thorpej 	 * Windows 2 and 3 are already disabled.
    171        1.2  thorpej 	 */
    172        1.2  thorpej 
    173        1.2  thorpej 	/*
    174       1.11  thorpej 	 * Initialize the SGMAP.  Must align page table to 32k
    175       1.11  thorpej 	 * (hardware bug?).
    176        1.2  thorpej 	 */
    177       1.11  thorpej 	alpha_sgmap_init(t, &ccp->cc_sgmap, "cia_sgmap",
    178       1.11  thorpej 	    CIA_SGMAP_MAPPED_BASE, 0, CIA_SGMAP_MAPPED_SIZE,
    179       1.12  thorpej 	    sizeof(u_int64_t), NULL, (32*1024));
    180        1.2  thorpej 
    181       1.11  thorpej 	/*
    182       1.11  thorpej 	 * Set up window 0 as an 8MB SGMAP-mapped window
    183       1.11  thorpej 	 * starting at 8MB.
    184       1.11  thorpej 	 */
    185       1.11  thorpej 	REGVAL(CIA_PCI_W0BASE) = CIA_SGMAP_MAPPED_BASE |
    186       1.11  thorpej 	    CIA_PCI_WnBASE_SG_EN | CIA_PCI_WnBASE_W_EN;
    187       1.11  thorpej 	alpha_mb();
    188       1.11  thorpej 
    189       1.11  thorpej 	REGVAL(CIA_PCI_W0MASK) = CIA_PCI_WnMASK_8M;
    190       1.11  thorpej 	alpha_mb();
    191       1.11  thorpej 
    192       1.11  thorpej 	tbase = ccp->cc_sgmap.aps_ptpa >> CIA_PCI_TnBASE_SHIFT;
    193       1.11  thorpej 	if ((tbase & CIA_PCI_TnBASE_MASK) != tbase)
    194       1.11  thorpej 		panic("cia_dma_init: bad page table address");
    195       1.11  thorpej 	REGVAL(CIA_PCI_T0BASE) = tbase;
    196       1.11  thorpej 	alpha_mb();
    197       1.11  thorpej 
    198       1.11  thorpej 	/*
    199       1.11  thorpej 	 * Pass 1 and 2 (i.e. revision <= 1) of the Pyxis have a
    200       1.11  thorpej 	 * broken scatter/gather TLB; it cannot be invalidated.  To
    201       1.11  thorpej 	 * work around this problem, we configure window 2 as an SG
    202       1.11  thorpej 	 * 2M window at 128M, which we use in DMA loopback mode to
    203       1.11  thorpej 	 * read a spill page.  This works by causing TLB misses,
    204       1.11  thorpej 	 * causing the old entries to be purged to make room for
    205       1.11  thorpej 	 * the new entries coming in for the spill page.
    206       1.11  thorpej 	 */
    207       1.11  thorpej 	if ((ccp->cc_flags & CCF_ISPYXIS) != 0 && ccp->cc_rev <= 1) {
    208       1.11  thorpej 		u_int64_t *page_table;
    209       1.11  thorpej 		int i;
    210       1.11  thorpej 
    211       1.11  thorpej 		cia_tlb_invalidate_fn =
    212       1.11  thorpej 		    cia_broken_pyxis_tlb_invalidate;
    213       1.11  thorpej 
    214       1.11  thorpej 		alpha_sgmap_init(t, &cia_pyxis_bug_sgmap,
    215       1.11  thorpej 		    "pyxis_bug_sgmap", CIA_PYXIS_BUG_BASE, 0,
    216       1.11  thorpej 		    CIA_PYXIS_BUG_SIZE, sizeof(u_int64_t), NULL,
    217       1.12  thorpej 		    (32*1024));
    218       1.11  thorpej 
    219       1.11  thorpej 		REGVAL(CIA_PCI_W2BASE) = CIA_PYXIS_BUG_BASE |
    220        1.4  thorpej 		    CIA_PCI_WnBASE_SG_EN | CIA_PCI_WnBASE_W_EN;
    221        1.2  thorpej 		alpha_mb();
    222        1.2  thorpej 
    223       1.11  thorpej 		REGVAL(CIA_PCI_W2MASK) = CIA_PCI_WnMASK_2M;
    224        1.2  thorpej 		alpha_mb();
    225        1.2  thorpej 
    226       1.11  thorpej 		tbase = cia_pyxis_bug_sgmap.aps_ptpa >>
    227       1.11  thorpej 		    CIA_PCI_TnBASE_SHIFT;
    228        1.2  thorpej 		if ((tbase & CIA_PCI_TnBASE_MASK) != tbase)
    229        1.2  thorpej 			panic("cia_dma_init: bad page table address");
    230       1.11  thorpej 		REGVAL(CIA_PCI_T2BASE) = tbase;
    231        1.2  thorpej 		alpha_mb();
    232        1.2  thorpej 
    233       1.10  thorpej 		/*
    234       1.11  thorpej 		 * Initialize the page table to point at the spill
    235       1.11  thorpej 		 * page.  Leave the last entry invalid.
    236       1.10  thorpej 		 */
    237       1.11  thorpej 		pci_sgmap_pte64_init_spill_page_pte();
    238       1.11  thorpej 		for (i = 0, page_table = cia_pyxis_bug_sgmap.aps_pt;
    239       1.11  thorpej 		     i < (CIA_PYXIS_BUG_SIZE / PAGE_SIZE) - 1; i++) {
    240       1.11  thorpej 			page_table[i] =
    241       1.11  thorpej 			    pci_sgmap_pte64_prefetch_spill_page_pte;
    242       1.11  thorpej 		}
    243       1.11  thorpej 		alpha_mb();
    244       1.11  thorpej 	} else
    245       1.11  thorpej 		cia_tlb_invalidate_fn = cia_tlb_invalidate;
    246       1.10  thorpej 
    247       1.11  thorpej 	CIA_TLB_INVALIDATE();
    248        1.2  thorpej 
    249        1.2  thorpej 	/* XXX XXX BEGIN XXX XXX */
    250        1.2  thorpej 	{							/* XXX */
    251       1.13  thorpej 		extern paddr_t alpha_XXX_dmamap_or;		/* XXX */
    252        1.2  thorpej 		alpha_XXX_dmamap_or = CIA_DIRECT_MAPPED_BASE;	/* XXX */
    253        1.2  thorpej 	}							/* XXX */
    254        1.2  thorpej 	/* XXX XXX END XXX XXX */
    255        1.2  thorpej }
    256        1.2  thorpej 
    257        1.2  thorpej /*
    258        1.2  thorpej  * Return the bus dma tag to be used for the specified bus type.
    259        1.2  thorpej  * INTERNAL USE ONLY!
    260        1.2  thorpej  */
    261        1.2  thorpej bus_dma_tag_t
    262        1.2  thorpej cia_dma_get_tag(t, bustype)
    263        1.2  thorpej 	bus_dma_tag_t t;
    264        1.2  thorpej 	alpha_bus_t bustype;
    265        1.2  thorpej {
    266        1.2  thorpej 	struct cia_config *ccp = t->_cookie;
    267        1.2  thorpej 
    268        1.2  thorpej 	switch (bustype) {
    269        1.2  thorpej 	case ALPHA_BUS_PCI:
    270        1.2  thorpej 	case ALPHA_BUS_EISA:
    271        1.2  thorpej 		/*
    272        1.2  thorpej 		 * Systems with a CIA can only support 1G
    273        1.2  thorpej 		 * of memory, so we use the direct-mapped window
    274        1.2  thorpej 		 * on busses that have 32-bit DMA.
    275        1.2  thorpej 		 */
    276        1.2  thorpej 		return (&ccp->cc_dmat_direct);
    277        1.2  thorpej 
    278        1.2  thorpej 	case ALPHA_BUS_ISA:
    279        1.2  thorpej 		/*
    280        1.2  thorpej 		 * ISA doesn't have enough address bits to use
    281        1.2  thorpej 		 * the direct-mapped DMA window, so we must use
    282        1.2  thorpej 		 * SGMAPs.
    283        1.2  thorpej 		 */
    284        1.2  thorpej 		return (&ccp->cc_dmat_sgmap);
    285        1.2  thorpej 
    286        1.2  thorpej 	default:
    287        1.2  thorpej 		panic("cia_dma_get_tag: shouldn't be here, really...");
    288        1.2  thorpej 	}
    289  1.13.12.1   bouyer }
    290  1.13.12.1   bouyer 
    291  1.13.12.1   bouyer /*
    292  1.13.12.1   bouyer  * Create a CIA direct-mapped DMA map.
    293  1.13.12.1   bouyer  */
    294  1.13.12.1   bouyer int
    295  1.13.12.1   bouyer cia_bus_dmamap_create_direct(t, size, nsegments, maxsegsz, boundary,
    296  1.13.12.1   bouyer     flags, dmamp)
    297  1.13.12.1   bouyer 	bus_dma_tag_t t;
    298  1.13.12.1   bouyer 	bus_size_t size;
    299  1.13.12.1   bouyer 	int nsegments;
    300  1.13.12.1   bouyer 	bus_size_t maxsegsz;
    301  1.13.12.1   bouyer 	bus_size_t boundary;
    302  1.13.12.1   bouyer 	int flags;
    303  1.13.12.1   bouyer 	bus_dmamap_t *dmamp;
    304  1.13.12.1   bouyer {
    305  1.13.12.1   bouyer 	struct cia_config *ccp = t->_cookie;
    306  1.13.12.1   bouyer 	bus_dmamap_t map;
    307  1.13.12.1   bouyer 	int error;
    308  1.13.12.1   bouyer 
    309  1.13.12.1   bouyer 	error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
    310  1.13.12.1   bouyer 	    boundary, flags, dmamp);
    311  1.13.12.1   bouyer 	if (error)
    312  1.13.12.1   bouyer 		return (error);
    313  1.13.12.1   bouyer 
    314  1.13.12.1   bouyer 	map = *dmamp;
    315  1.13.12.1   bouyer 
    316  1.13.12.1   bouyer 	if ((ccp->cc_flags & CCF_PYXISBUG) != 0 &&
    317  1.13.12.1   bouyer 	    map->_dm_segcnt > 1) {
    318  1.13.12.1   bouyer 		/*
    319  1.13.12.1   bouyer 		 * We have a Pyxis with the DMA page crossing bug, make
    320  1.13.12.1   bouyer 		 * sure we don't coalesce adjacent DMA segments.
    321  1.13.12.1   bouyer 		 *
    322  1.13.12.1   bouyer 		 * NOTE: We can only do this if the max segment count
    323  1.13.12.1   bouyer 		 * is greater than 1.  This is because many network
    324  1.13.12.1   bouyer 		 * drivers allocate large contiguous blocks of memory
    325  1.13.12.1   bouyer 		 * for control data structures, even though they won't
    326  1.13.12.1   bouyer 		 * do any single DMA that crosses a page coundary.
    327  1.13.12.1   bouyer 		 *	-- thorpej (at) netbsd.org, 2/5/2000
    328  1.13.12.1   bouyer 		 */
    329  1.13.12.1   bouyer 		map->_dm_flags |= DMAMAP_NO_COALESCE;
    330  1.13.12.1   bouyer 	}
    331  1.13.12.1   bouyer 
    332  1.13.12.1   bouyer 	return (0);
    333        1.2  thorpej }
    334        1.2  thorpej 
    335        1.2  thorpej /*
    336        1.2  thorpej  * Create a CIA SGMAP-mapped DMA map.
    337        1.2  thorpej  */
    338        1.2  thorpej int
    339        1.2  thorpej cia_bus_dmamap_create_sgmap(t, size, nsegments, maxsegsz, boundary,
    340        1.2  thorpej     flags, dmamp)
    341        1.2  thorpej 	bus_dma_tag_t t;
    342        1.2  thorpej 	bus_size_t size;
    343        1.2  thorpej 	int nsegments;
    344        1.2  thorpej 	bus_size_t maxsegsz;
    345        1.2  thorpej 	bus_size_t boundary;
    346        1.2  thorpej 	int flags;
    347        1.2  thorpej 	bus_dmamap_t *dmamp;
    348        1.2  thorpej {
    349        1.2  thorpej 	bus_dmamap_t map;
    350        1.2  thorpej 	int error;
    351        1.2  thorpej 
    352        1.2  thorpej 	error = _bus_dmamap_create(t, size, nsegments, maxsegsz,
    353        1.2  thorpej 	    boundary, flags, dmamp);
    354        1.2  thorpej 	if (error)
    355        1.2  thorpej 		return (error);
    356        1.2  thorpej 
    357        1.2  thorpej 	map = *dmamp;
    358        1.2  thorpej 
    359        1.2  thorpej 	if (flags & BUS_DMA_ALLOCNOW) {
    360        1.2  thorpej 		error = alpha_sgmap_alloc(map, round_page(size),
    361        1.8  thorpej 		    t->_sgmap, flags);
    362        1.2  thorpej 		if (error)
    363        1.2  thorpej 			cia_bus_dmamap_destroy_sgmap(t, map);
    364        1.2  thorpej 	}
    365        1.2  thorpej 
    366        1.2  thorpej 	return (error);
    367        1.2  thorpej }
    368        1.2  thorpej 
    369        1.2  thorpej /*
    370        1.2  thorpej  * Destroy a CIA SGMAP-mapped DMA map.
    371        1.2  thorpej  */
    372        1.2  thorpej void
    373        1.2  thorpej cia_bus_dmamap_destroy_sgmap(t, map)
    374        1.2  thorpej 	bus_dma_tag_t t;
    375        1.2  thorpej 	bus_dmamap_t map;
    376        1.2  thorpej {
    377        1.2  thorpej 
    378        1.5  thorpej 	if (map->_dm_flags & DMAMAP_HAS_SGMAP)
    379        1.8  thorpej 		alpha_sgmap_free(map, t->_sgmap);
    380        1.2  thorpej 
    381        1.2  thorpej 	_bus_dmamap_destroy(t, map);
    382        1.2  thorpej }
    383        1.2  thorpej 
    384        1.2  thorpej /*
    385        1.2  thorpej  * Load a CIA SGMAP-mapped DMA map with a linear buffer.
    386        1.2  thorpej  */
    387        1.2  thorpej int
    388        1.2  thorpej cia_bus_dmamap_load_sgmap(t, map, buf, buflen, p, flags)
    389        1.2  thorpej 	bus_dma_tag_t t;
    390        1.2  thorpej 	bus_dmamap_t map;
    391        1.2  thorpej 	void *buf;
    392        1.2  thorpej 	bus_size_t buflen;
    393        1.2  thorpej 	struct proc *p;
    394        1.2  thorpej 	int flags;
    395        1.2  thorpej {
    396        1.2  thorpej 	int error;
    397        1.2  thorpej 
    398        1.2  thorpej 	error = pci_sgmap_pte64_load(t, map, buf, buflen, p, flags,
    399        1.8  thorpej 	    t->_sgmap);
    400        1.2  thorpej 	if (error == 0)
    401        1.2  thorpej 		CIA_TLB_INVALIDATE();
    402        1.2  thorpej 
    403        1.2  thorpej 	return (error);
    404        1.2  thorpej }
    405        1.2  thorpej 
    406        1.2  thorpej /*
    407        1.2  thorpej  * Load a CIA SGMAP-mapped DMA map with an mbuf chain.
    408        1.2  thorpej  */
    409        1.2  thorpej int
    410        1.2  thorpej cia_bus_dmamap_load_mbuf_sgmap(t, map, m, flags)
    411        1.2  thorpej 	bus_dma_tag_t t;
    412        1.2  thorpej 	bus_dmamap_t map;
    413        1.2  thorpej 	struct mbuf *m;
    414        1.2  thorpej 	int flags;
    415        1.2  thorpej {
    416        1.2  thorpej 	int error;
    417        1.2  thorpej 
    418        1.8  thorpej 	error = pci_sgmap_pte64_load_mbuf(t, map, m, flags, t->_sgmap);
    419        1.2  thorpej 	if (error == 0)
    420        1.2  thorpej 		CIA_TLB_INVALIDATE();
    421        1.2  thorpej 
    422        1.2  thorpej 	return (error);
    423        1.2  thorpej }
    424        1.2  thorpej 
    425        1.2  thorpej /*
    426        1.2  thorpej  * Load a CIA SGMAP-mapped DMA map with a uio.
    427        1.2  thorpej  */
    428        1.2  thorpej int
    429        1.2  thorpej cia_bus_dmamap_load_uio_sgmap(t, map, uio, flags)
    430        1.2  thorpej 	bus_dma_tag_t t;
    431        1.2  thorpej 	bus_dmamap_t map;
    432        1.2  thorpej 	struct uio *uio;
    433        1.2  thorpej 	int flags;
    434        1.2  thorpej {
    435        1.2  thorpej 	int error;
    436        1.2  thorpej 
    437        1.8  thorpej 	error = pci_sgmap_pte64_load_uio(t, map, uio, flags, t->_sgmap);
    438        1.2  thorpej 	if (error == 0)
    439        1.2  thorpej 		CIA_TLB_INVALIDATE();
    440        1.2  thorpej 
    441        1.2  thorpej 	return (error);
    442        1.2  thorpej }
    443        1.2  thorpej 
    444        1.2  thorpej /*
    445        1.2  thorpej  * Load a CIA SGMAP-mapped DMA map with raw memory.
    446        1.2  thorpej  */
    447        1.2  thorpej int
    448        1.2  thorpej cia_bus_dmamap_load_raw_sgmap(t, map, segs, nsegs, size, flags)
    449        1.2  thorpej 	bus_dma_tag_t t;
    450        1.2  thorpej 	bus_dmamap_t map;
    451        1.2  thorpej 	bus_dma_segment_t *segs;
    452        1.2  thorpej 	int nsegs;
    453        1.2  thorpej 	bus_size_t size;
    454        1.2  thorpej 	int flags;
    455        1.2  thorpej {
    456        1.2  thorpej 	int error;
    457        1.2  thorpej 
    458        1.2  thorpej 	error = pci_sgmap_pte64_load_raw(t, map, segs, nsegs, size, flags,
    459        1.8  thorpej 	    t->_sgmap);
    460        1.2  thorpej 	if (error == 0)
    461        1.2  thorpej 		CIA_TLB_INVALIDATE();
    462        1.2  thorpej 
    463        1.2  thorpej 	return (error);
    464        1.2  thorpej }
    465        1.2  thorpej 
    466        1.2  thorpej /*
    467        1.2  thorpej  * Unload a CIA DMA map.
    468        1.2  thorpej  */
    469        1.2  thorpej void
    470        1.2  thorpej cia_bus_dmamap_unload_sgmap(t, map)
    471        1.2  thorpej 	bus_dma_tag_t t;
    472        1.2  thorpej 	bus_dmamap_t map;
    473        1.2  thorpej {
    474        1.2  thorpej 
    475        1.2  thorpej 	/*
    476        1.2  thorpej 	 * Invalidate any SGMAP page table entries used by this
    477        1.2  thorpej 	 * mapping.
    478        1.2  thorpej 	 */
    479        1.8  thorpej 	pci_sgmap_pte64_unload(t, map, t->_sgmap);
    480        1.2  thorpej 	CIA_TLB_INVALIDATE();
    481        1.2  thorpej 
    482        1.2  thorpej 	/*
    483        1.2  thorpej 	 * Do the generic bits of the unload.
    484        1.2  thorpej 	 */
    485        1.2  thorpej 	_bus_dmamap_unload(t, map);
    486       1.10  thorpej }
    487       1.10  thorpej 
    488       1.10  thorpej /*
    489       1.10  thorpej  * Flush the CIA scatter/gather TLB.
    490       1.10  thorpej  */
    491       1.10  thorpej void
    492       1.10  thorpej cia_tlb_invalidate()
    493       1.10  thorpej {
    494       1.10  thorpej 
    495       1.10  thorpej 	alpha_mb();
    496       1.10  thorpej 	REGVAL(CIA_PCI_TBIA) = CIA_PCI_TBIA_ALL;
    497       1.10  thorpej 	alpha_mb();
    498       1.10  thorpej }
    499       1.10  thorpej 
    500       1.10  thorpej /*
    501       1.10  thorpej  * Flush the scatter/gather TLB on broken Pyxis chips.
    502       1.10  thorpej  */
    503       1.10  thorpej void
    504       1.10  thorpej cia_broken_pyxis_tlb_invalidate()
    505       1.10  thorpej {
    506       1.10  thorpej 	volatile u_int64_t dummy;
    507       1.10  thorpej 	u_int32_t ctrl;
    508       1.10  thorpej 	int i, s;
    509       1.10  thorpej 
    510       1.10  thorpej 	s = splhigh();
    511       1.10  thorpej 
    512       1.10  thorpej 	/*
    513       1.10  thorpej 	 * Put the Pyxis into PCI loopback mode.
    514       1.10  thorpej 	 */
    515       1.10  thorpej 	alpha_mb();
    516       1.10  thorpej 	ctrl = REGVAL(CIA_CSR_CTRL);
    517       1.10  thorpej 	REGVAL(CIA_CSR_CTRL) = ctrl | CTRL_PCI_LOOP_EN;
    518       1.10  thorpej 	alpha_mb();
    519       1.10  thorpej 
    520       1.10  thorpej 	/*
    521       1.10  thorpej 	 * Now, read from PCI dense memory space at offset 128M (our
    522       1.10  thorpej 	 * target window base), skipping 64k on each read.  This forces
    523       1.10  thorpej 	 * S/G TLB misses.
    524       1.10  thorpej 	 *
    525       1.10  thorpej 	 * XXX Looks like the TLB entries are `not quite LRU'.  We need
    526       1.10  thorpej 	 * XXX to read more times than there are actual tags!
    527       1.10  thorpej 	 */
    528       1.10  thorpej 	for (i = 0; i < CIA_TLB_NTAGS + 4; i++) {
    529       1.10  thorpej 		dummy = *((volatile u_int64_t *)
    530       1.10  thorpej 		    ALPHA_PHYS_TO_K0SEG(CIA_PCI_DENSE + CIA_PYXIS_BUG_BASE +
    531       1.10  thorpej 		    (i * 65536)));
    532       1.10  thorpej 	}
    533       1.10  thorpej 
    534       1.10  thorpej 	/*
    535       1.10  thorpej 	 * Restore normal PCI operation.
    536       1.10  thorpej 	 */
    537       1.10  thorpej 	alpha_mb();
    538       1.10  thorpej 	REGVAL(CIA_CSR_CTRL) = ctrl;
    539       1.10  thorpej 	alpha_mb();
    540       1.10  thorpej 
    541       1.10  thorpej 	splx(s);
    542        1.2  thorpej }
    543