Home | History | Annotate | Line # | Download | only in pci
tsp_bus_mem.c revision 1.12.10.1
      1  1.12.10.1    rmind /* $NetBSD: tsp_bus_mem.c,v 1.12.10.1 2014/05/18 17:44:53 rmind Exp $ */
      2        1.1     ross 
      3        1.1     ross /*-
      4        1.1     ross  * Copyright (c) 1999 by Ross Harvey.  All rights reserved.
      5        1.1     ross  *
      6        1.1     ross  * Redistribution and use in source and binary forms, with or without
      7        1.1     ross  * modification, are permitted provided that the following conditions
      8        1.1     ross  * are met:
      9        1.1     ross  * 1. Redistributions of source code must retain the above copyright
     10        1.1     ross  *    notice, this list of conditions and the following disclaimer.
     11        1.1     ross  * 2. Redistributions in binary form must reproduce the above copyright
     12        1.1     ross  *    notice, this list of conditions and the following disclaimer in the
     13        1.1     ross  *    documentation and/or other materials provided with the distribution.
     14        1.1     ross  * 3. All advertising materials mentioning features or use of this software
     15        1.1     ross  *    must display the following acknowledgement:
     16        1.1     ross  *	This product includes software developed by Ross Harvey.
     17        1.1     ross  * 4. The name of Ross Harvey may not be used to endorse or promote products
     18        1.1     ross  *    derived from this software without specific prior written permission.
     19        1.1     ross  *
     20        1.1     ross  * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
     21        1.1     ross  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     22        1.1     ross  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
     23        1.1     ross  * ARE DISCLAIMED.  IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
     24        1.1     ross  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25        1.1     ross  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26        1.1     ross  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27        1.1     ross  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28        1.1     ross  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29        1.1     ross  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30        1.1     ross  * SUCH DAMAGE.
     31        1.1     ross  *
     32        1.1     ross  */
     33        1.7    lukem 
     34        1.7    lukem #include <sys/cdefs.h>
     35  1.12.10.1    rmind __KERNEL_RCSID(0, "$NetBSD: tsp_bus_mem.c,v 1.12.10.1 2014/05/18 17:44:53 rmind Exp $");
     36        1.1     ross 
     37        1.1     ross #include <sys/param.h>
     38        1.1     ross #include <sys/systm.h>
     39        1.1     ross #include <sys/malloc.h>
     40        1.1     ross #include <sys/syslog.h>
     41        1.1     ross #include <sys/device.h>
     42        1.5      mrg 
     43       1.11   dyoung #include <sys/bus.h>
     44        1.1     ross #include <machine/autoconf.h>
     45        1.1     ross #include <machine/rpb.h>
     46        1.1     ross 
     47        1.1     ross #include <alpha/pci/tsreg.h>
     48        1.1     ross #include <alpha/pci/tsvar.h>
     49        1.1     ross 
     50        1.1     ross #define tsp_bus_mem() { Generate ctags(1) key. }
     51        1.1     ross 
     52        1.1     ross #define	CHIP	tsp
     53        1.1     ross 
     54        1.1     ross #define	CHIP_EX_MALLOC_SAFE(v)  (((struct tsp_config *)(v))->pc_mallocsafe)
     55        1.1     ross #define CHIP_MEM_EXTENT(v)       (((struct tsp_config *)(v))->pc_mem_ex)
     56        1.9   mhitch #define	CHIP_MEM_EX_STORE(v)	(((struct tsp_config *)(v))->pc_mem_exstorage)
     57        1.9   mhitch #define	CHIP_MEM_EX_STORE_SIZE(v)					\
     58        1.9   mhitch 	(sizeof (((struct tsp_config *)(v))->pc_mem_exstorage))
     59        1.1     ross 
     60  1.12.10.1    rmind #define CHIP_MEM_SYS_START(v)						\
     61  1.12.10.1    rmind 	(((struct tsp_config *)(v))->pc_iobase | P_PCI_MEM)
     62        1.2  thorpej 
     63       1.12     matt /*
     64       1.12     matt  * Tsunami core logic appears on EV6.  We require at least EV56
     65        1.2  thorpej  * support for the assembler to emit BWX opcodes.
     66       1.12     matt  */
     67       1.12     matt __asm(".arch ev6");
     68        1.1     ross 
     69        1.1     ross #include <alpha/pci/pci_bwx_bus_mem_chipdep.c>
     70        1.6  thorpej 
     71        1.6  thorpej void
     72        1.6  thorpej tsp_bus_mem_init2(bus_space_tag_t t, void *v)
     73        1.6  thorpej {
     74        1.6  thorpej 	struct tsp_config *pcp = v;
     75        1.6  thorpej 	struct ts_pchip *pccsr = pcp->pc_csr;
     76        1.6  thorpej 	int i, error;
     77        1.6  thorpej 
     78        1.6  thorpej 	/*
     79        1.6  thorpej 	 * Allocate the DMA windows out of the extent map.
     80        1.6  thorpej 	 */
     81        1.6  thorpej 	for (i = 0; i < 4; i++) {
     82        1.6  thorpej 		alpha_mb();
     83        1.6  thorpej 		if ((pccsr->tsp_wsba[i].tsg_r & WSBA_ENA) == 0) {
     84        1.6  thorpej 			/* Window not in use. */
     85        1.6  thorpej 			continue;
     86        1.6  thorpej 		}
     87        1.6  thorpej 
     88        1.6  thorpej 		error = extent_alloc_region(CHIP_MEM_EXTENT(v),
     89        1.6  thorpej 		    WSBA_ADDR(pccsr->tsp_wsba[i].tsg_r),
     90        1.6  thorpej 		    WSM_LEN(pccsr->tsp_wsm[i].tsg_r),
     91        1.6  thorpej 		    EX_NOWAIT | (CHIP_EX_MALLOC_SAFE(v) ? EX_MALLOCOK : 0));
     92        1.6  thorpej 		if (error) {
     93        1.6  thorpej 			printf("WARNING: unable to reserve DMA window "
     94        1.6  thorpej 			    "0x%lx - 0x%lx\n",
     95        1.6  thorpej 			    WSBA_ADDR(pccsr->tsp_wsba[i].tsg_r),
     96        1.6  thorpej 			    WSBA_ADDR(pccsr->tsp_wsba[i].tsg_r) +
     97        1.6  thorpej 			    (WSM_LEN(pccsr->tsp_wsm[i].tsg_r) - 1));
     98        1.6  thorpej 		}
     99        1.6  thorpej 	}
    100        1.6  thorpej }
    101