/* $NetBSD: jensenio_dma.c,v 1.10 2021/08/17 22:00:27 andvar Exp $ */ /*- * Copyright (c) 2000, 2020 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Jason R. Thorpe. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ /* * DMA support for the Jensen system. * * The Jensen uses direct-mapped DMA with a window base of 0, i.e. * a page of physical memory has the same PCI address as CPU address. * There is no support for SGMAPs on the Jensen. This means that for * ISA DMA, we must employ bounce buffers for DMA transactions over * 16MB ISA limit (due to ISA's 24-bit address space limitation). * * Furthermore, the H_BUS will not respond to DMA transactions between * 512KB and 1MB. This is to allow for the ISA `hole'. However, the * ISA `hole' typically exists only between 640KB and 1MB. We must * therefore bounce transactions that fall within this region, as well. * XXX Should we prevent having managed memory in this region, instead? */ #include /* RCS ID & Copyright macro defns */ __KERNEL_RCSID(0, "$NetBSD: jensenio_dma.c,v 1.10 2021/08/17 22:00:27 andvar Exp $"); #include #include #include #include #include #define _ALPHA_BUS_DMA_PRIVATE #include #include #include #include #include static bus_dma_tag_t jensenio_dma_get_tag(bus_dma_tag_t, alpha_bus_t); void jensenio_page_physload(unsigned long const start_pfn, unsigned long const end_pfn) { /* * The Jensen does not have SGMAP DMA. For this reason, we * need to protect the first 16MB of RAM from random allocations * in order to give ISA DMA a snowball's chance of working. */ alpha_page_physload_sheltered(start_pfn, end_pfn, 0, alpha_btop(0x1000000)); } void jensenio_dma_init(struct jensenio_config *jcp) { bus_dma_tag_t t; /* * Initialize the DMA tag used for EISA DMA. */ t = &jcp->jc_dmat_eisa; t->_cookie = jcp; t->_wbase = 0; t->_wsize = 0x100000000UL; t->_next_window = NULL; t->_boundary = 0; t->_sgmap = NULL; t->_get_tag = jensenio_dma_get_tag; t->_dmamap_create = _bus_dmamap_create; t->_dmamap_destroy = _bus_dmamap_destroy; t->_dmamap_load = _bus_dmamap_load_direct; t->_dmamap_load_mbuf = _bus_dmamap_load_mbuf_direct; t->_dmamap_load_uio = _bus_dmamap_load_uio_direct; t->_dmamap_load_raw = _bus_dmamap_load_raw_direct; t->_dmamap_unload = _bus_dmamap_unload; t->_dmamap_sync = _bus_dmamap_sync; t->_dmamem_alloc = _bus_dmamem_alloc; t->_dmamem_free = _bus_dmamem_free; t->_dmamem_map = _bus_dmamem_map; t->_dmamem_unmap = _bus_dmamem_unmap; t->_dmamem_mmap = _bus_dmamem_mmap; /* * Initialize the DMA tag used for ISA DMA. */ t = &jcp->jc_dmat_isa; t->_cookie = jcp; t->_wbase = 0; t->_wsize = 0x1000000; t->_next_window = NULL; t->_boundary = 0; t->_sgmap = NULL; t->_get_tag = jensenio_dma_get_tag; t->_dmamap_create = isadma_bounce_dmamap_create; t->_dmamap_destroy = isadma_bounce_dmamap_destroy; t->_dmamap_load = isadma_bounce_dmamap_load; t->_dmamap_load_mbuf = isadma_bounce_dmamap_load_mbuf; t->_dmamap_load_uio = isadma_bounce_dmamap_load_uio; t->_dmamap_load_raw = isadma_bounce_dmamap_load_raw; t->_dmamap_unload = isadma_bounce_dmamap_unload; t->_dmamap_sync = isadma_bounce_dmamap_sync; t->_dmamem_alloc = isadma_bounce_dmamem_alloc; t->_dmamem_free = _bus_dmamem_free; t->_dmamem_map = _bus_dmamem_map; t->_dmamem_unmap = _bus_dmamem_unmap; t->_dmamem_mmap = _bus_dmamem_mmap; } /* * Return the bus dma tag to be used for the specified bus type. * INTERNAL USE ONLY! */ static bus_dma_tag_t jensenio_dma_get_tag(bus_dma_tag_t t, alpha_bus_t bustype) { struct jensenio_config *jcp = t->_cookie; switch (bustype) { case ALPHA_BUS_EISA: /* * Busses capable of 32-bit DMA get the EISA DMA tag. */ return (&jcp->jc_dmat_eisa); case ALPHA_BUS_ISA: /* * Lame 24-bit busses have to bounce. */ return (&jcp->jc_dmat_isa); default: panic("jensenio_dma_get_tag: shouldn't be here, really..."); } }