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