Home | History | Annotate | Line # | Download | only in jazz
jazzdmatlb.c revision 1.15.2.1
      1  1.15.2.1     yamt /*	$NetBSD: jazzdmatlb.c,v 1.15.2.1 2012/04/17 00:06:03 yamt Exp $	*/
      2       1.1     soda /*	$OpenBSD: dma.c,v 1.5 1998/03/01 16:49:57 niklas Exp $	*/
      3       1.1     soda 
      4       1.1     soda /*-
      5       1.1     soda  * Copyright (C) 2000 Shuichiro URATA.  All rights reserved.
      6       1.1     soda  *
      7       1.1     soda  * Redistribution and use in source and binary forms, with or without
      8       1.1     soda  * modification, are permitted provided that the following conditions
      9       1.1     soda  * are met:
     10       1.1     soda  * 1. Redistributions of source code must retain the above copyright
     11       1.1     soda  *    notice, this list of conditions and the following disclaimer.
     12       1.1     soda  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1     soda  *    notice, this list of conditions and the following disclaimer in the
     14       1.1     soda  *    documentation and/or other materials provided with the distribution.
     15       1.1     soda  * 3. The name of the author may not be used to endorse or promote products
     16       1.1     soda  *    derived from this software without specific prior written permission.
     17       1.1     soda  *
     18       1.1     soda  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19       1.1     soda  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20       1.1     soda  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21       1.1     soda  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22       1.1     soda  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23       1.1     soda  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24       1.1     soda  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25       1.1     soda  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26       1.1     soda  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     27       1.1     soda  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28       1.1     soda  */
     29       1.1     soda 
     30       1.1     soda /*
     31       1.1     soda  * Jazz derived system dma driver. Handles resource allocation and
     32       1.8  tsutsui  * logical (virtual) address remaping.
     33       1.1     soda  */
     34       1.9    lukem 
     35       1.9    lukem #include <sys/cdefs.h>
     36  1.15.2.1     yamt __KERNEL_RCSID(0, "$NetBSD: jazzdmatlb.c,v 1.15.2.1 2012/04/17 00:06:03 yamt 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/malloc.h>
     41       1.1     soda #include <sys/extent.h>
     42       1.1     soda #include <sys/device.h>
     43       1.5      chs #include <sys/proc.h>
     44       1.1     soda 
     45       1.2      mrg #include <uvm/uvm_extern.h>
     46       1.1     soda 
     47       1.1     soda #include <machine/autoconf.h>
     48      1.15   dyoung #include <sys/bus.h>
     49       1.1     soda 
     50       1.1     soda #include <arc/jazz/jazzdmatlbreg.h>
     51       1.1     soda #include <arc/jazz/jazzdmatlbvar.h>
     52       1.1     soda 
     53       1.6  thorpej #include <mips/cache.h>
     54       1.6  thorpej 
     55      1.11  tsutsui extern paddr_t	kvtophys(vaddr_t);	/* XXX */
     56       1.1     soda 
     57       1.1     soda /*
     58       1.1     soda  * Currently, only NET and BIO devices use DMA, and splnet > splbio.
     59       1.1     soda  */
     60       1.1     soda #define spldma()	splnet()
     61       1.1     soda 
     62       1.1     soda #define NDMATLB		(JAZZ_DMATLB_SIZE / sizeof(jazz_dma_pte_t))
     63       1.1     soda 
     64       1.1     soda static bus_space_tag_t dmatlb_iot;
     65       1.1     soda static bus_space_handle_t dmatlb_ioh;
     66       1.1     soda 
     67       1.1     soda static struct extent *dmatlbmap;
     68       1.1     soda static jazz_dma_pte_t *dma_tlb;
     69       1.1     soda 
     70       1.1     soda /*
     71       1.1     soda  *  Initialize the dma mapping register area and pool.
     72       1.1     soda  */
     73       1.1     soda void
     74      1.11  tsutsui jazz_dmatlb_init(bus_space_tag_t iot, bus_addr_t ioaddr)
     75       1.1     soda {
     76       1.1     soda 	int err;
     77       1.1     soda 
     78       1.1     soda 	dmatlb_iot = iot;
     79       1.1     soda 	err = bus_space_map(iot, ioaddr, JAZZ_DMATLB_REGSIZE, 0, &dmatlb_ioh);
     80       1.1     soda 	if (err != 0)
     81       1.7   provos 		panic("jazz_dmatlb_init: cannot map 0x%lx", ioaddr);
     82       1.1     soda 
     83       1.1     soda 	dma_tlb = (jazz_dma_pte_t *)PICA_TL_BASE;
     84       1.1     soda 
     85       1.6  thorpej 	mips_dcache_wbinv_all();/* Make sure no map entries are cached */
     86      1.12  tsutsui 	memset((char *)dma_tlb, 0, JAZZ_DMATLB_SIZE);
     87       1.1     soda 
     88  1.15.2.1     yamt 	dmatlbmap = extent_create("dmatlb", 0, NDMATLB, NULL, 0, EX_NOWAIT);
     89       1.1     soda 	if (dmatlbmap == NULL)
     90       1.1     soda 		panic("jazz_dmatlb_init: cannot create extent map");
     91       1.1     soda 
     92       1.1     soda 	bus_space_write_4(dmatlb_iot, dmatlb_ioh, JAZZ_DMATLBREG_MAP,
     93       1.1     soda 	    MIPS_KSEG1_TO_PHYS(dma_tlb));
     94       1.1     soda 	bus_space_write_4(dmatlb_iot, dmatlb_ioh, JAZZ_DMATLBREG_LIMIT,
     95       1.1     soda 	    JAZZ_DMATLB_SIZE);
     96       1.1     soda 	jazz_dmatlb_flush();
     97       1.1     soda }
     98       1.1     soda 
     99       1.1     soda /*
    100       1.1     soda  *  Allocate an array of 'size' DMA PTEs.
    101       1.1     soda  *  Return address to first pte.
    102       1.1     soda  */
    103       1.1     soda jazz_dma_pte_t *
    104      1.11  tsutsui jazz_dmatlb_alloc(int npte, bus_size_t boundary, int flags, bus_addr_t *addr)
    105       1.1     soda {
    106       1.1     soda 	u_long start;
    107       1.1     soda 	int err;
    108       1.1     soda 	int s;
    109       1.1     soda 
    110       1.1     soda 	s = spldma();
    111       1.1     soda 	err = extent_alloc(dmatlbmap, npte, 1, boundary / JAZZ_DMA_PAGE_SIZE,
    112       1.1     soda 	    (flags & BUS_DMA_WAITOK) ? (EX_WAITSPACE | EX_WAITOK) : EX_NOWAIT,
    113       1.1     soda 	    &start);
    114       1.1     soda 	splx(s);
    115       1.1     soda 
    116       1.1     soda 	if (err)
    117      1.11  tsutsui 		return NULL;
    118       1.1     soda 
    119       1.1     soda 	*addr = start * JAZZ_DMA_PAGE_SIZE;
    120       1.1     soda 
    121      1.11  tsutsui 	return dma_tlb + start;
    122       1.1     soda }
    123       1.1     soda 
    124       1.1     soda /*
    125       1.1     soda  *  Free an array of DMA PTEs.
    126       1.1     soda  */
    127       1.1     soda void
    128      1.11  tsutsui jazz_dmatlb_free(bus_addr_t addr, int npte)
    129       1.1     soda {
    130       1.1     soda 	u_long start;
    131       1.1     soda 	int s;
    132       1.1     soda 
    133       1.1     soda 	start = addr / JAZZ_DMA_PAGE_SIZE;
    134       1.1     soda 	s = spldma();
    135       1.1     soda 	extent_free(dmatlbmap, start, npte, EX_NOWAIT);
    136       1.1     soda 	splx(s);
    137       1.1     soda }
    138       1.1     soda 
    139       1.1     soda /*
    140       1.1     soda  *  Map up a virtual address space in dma space given by
    141       1.1     soda  *  the dma control structure.
    142       1.1     soda  */
    143       1.1     soda void
    144      1.14     yamt jazz_dmatlb_map_va(struct vmspace *vm, vaddr_t va, vsize_t size,
    145      1.11  tsutsui     jazz_dma_pte_t *dma_pte)
    146       1.1     soda {
    147       1.1     soda 	paddr_t pa;
    148       1.1     soda 
    149       1.1     soda 	size = jazz_dma_page_round(size + jazz_dma_page_offs(va));
    150       1.1     soda 	va &= JAZZ_DMA_PAGE_NUM;
    151       1.1     soda 	while (size > 0) {
    152      1.14     yamt 		if (!VMSPACE_IS_KERNEL_P(vm))
    153      1.14     yamt 			(void)pmap_extract(vm_map_pmap(&vm->vm_map), va, &pa);
    154       1.1     soda 		else
    155       1.1     soda 			pa = kvtophys(va);
    156       1.1     soda 
    157       1.1     soda 		pa &= JAZZ_DMA_PAGE_NUM;
    158       1.1     soda 		dma_pte->lo_addr = pa;
    159       1.1     soda 		dma_pte->hi_addr = 0;
    160       1.1     soda 		dma_pte++;
    161       1.1     soda 		va += JAZZ_DMA_PAGE_SIZE;
    162       1.1     soda 		size -= JAZZ_DMA_PAGE_SIZE;
    163       1.1     soda 	}
    164       1.1     soda }
    165       1.1     soda 
    166       1.1     soda /*
    167       1.1     soda  *  Map up a physical address space in dma space given by
    168       1.1     soda  *  the dma control structure.
    169       1.1     soda  */
    170       1.1     soda void
    171      1.11  tsutsui jazz_dmatlb_map_pa(paddr_t pa, psize_t size, jazz_dma_pte_t *dma_pte)
    172       1.1     soda {
    173      1.11  tsutsui 
    174       1.1     soda 	size = jazz_dma_page_round(size + jazz_dma_page_offs(pa));
    175       1.1     soda 	pa &= JAZZ_DMA_PAGE_NUM;
    176       1.1     soda 	while (size > 0) {
    177       1.1     soda 		dma_pte->lo_addr = pa;
    178       1.1     soda 		dma_pte->hi_addr = 0;
    179       1.1     soda 		dma_pte++;
    180       1.1     soda 		pa += JAZZ_DMA_PAGE_SIZE;
    181       1.1     soda 		size -= JAZZ_DMA_PAGE_SIZE;
    182       1.1     soda 	}
    183       1.1     soda }
    184       1.1     soda 
    185       1.1     soda /*
    186       1.1     soda  *  Prepare for new dma by flushing
    187       1.1     soda  */
    188       1.1     soda void
    189      1.11  tsutsui jazz_dmatlb_flush(void)
    190       1.1     soda {
    191      1.11  tsutsui 
    192       1.1     soda 	bus_space_write_4(dmatlb_iot, dmatlb_ioh, JAZZ_DMATLBREG_IVALID, 0);
    193       1.1     soda }
    194