Home | History | Annotate | Line # | Download | only in pci
dwlpxvar.h revision 1.8.2.2
      1  1.8.2.2  thorpej /* $NetBSD: dwlpxvar.h,v 1.8.2.2 2001/07/27 00:25:21 thorpej Exp $ */
      2  1.8.2.2  thorpej 
      3  1.8.2.2  thorpej /*
      4  1.8.2.2  thorpej  * Copyright (c) 1997 by Matthew Jacob
      5  1.8.2.2  thorpej  * NASA AMES Research Center.
      6  1.8.2.2  thorpej  * All rights reserved.
      7  1.8.2.2  thorpej  *
      8  1.8.2.2  thorpej  * Redistribution and use in source and binary forms, with or without
      9  1.8.2.2  thorpej  * modification, are permitted provided that the following conditions
     10  1.8.2.2  thorpej  * are met:
     11  1.8.2.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     12  1.8.2.2  thorpej  *    notice immediately at the beginning of the file, without modification,
     13  1.8.2.2  thorpej  *    this list of conditions, and the following disclaimer.
     14  1.8.2.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.8.2.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     16  1.8.2.2  thorpej  *    documentation and/or other materials provided with the distribution.
     17  1.8.2.2  thorpej  * 3. The name of the author may not be used to endorse or promote products
     18  1.8.2.2  thorpej  *    derived from this software without specific prior written permission.
     19  1.8.2.2  thorpej  *
     20  1.8.2.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     21  1.8.2.2  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  1.8.2.2  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  1.8.2.2  thorpej  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
     24  1.8.2.2  thorpej  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  1.8.2.2  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  1.8.2.2  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  1.8.2.2  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  1.8.2.2  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  1.8.2.2  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  1.8.2.2  thorpej  * SUCH DAMAGE.
     31  1.8.2.2  thorpej  */
     32  1.8.2.2  thorpej 
     33  1.8.2.2  thorpej #include <dev/pci/pcivar.h>
     34  1.8.2.2  thorpej #include <sys/extent.h>
     35  1.8.2.2  thorpej 
     36  1.8.2.2  thorpej #include <alpha/pci/pci_sgmap_pte32.h>
     37  1.8.2.2  thorpej 
     38  1.8.2.2  thorpej #define	_FSTORE	(EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long))
     39  1.8.2.2  thorpej 
     40  1.8.2.2  thorpej /*
     41  1.8.2.2  thorpej  * DWLPX configuration.
     42  1.8.2.2  thorpej  */
     43  1.8.2.2  thorpej struct dwlpx_config {
     44  1.8.2.2  thorpej 	int				cc_initted;
     45  1.8.2.2  thorpej 	struct alpha_bus_space		cc_iot;
     46  1.8.2.2  thorpej 	struct alpha_bus_space		cc_memt;
     47  1.8.2.2  thorpej 	struct extent *			cc_io_ex;
     48  1.8.2.2  thorpej 	struct extent *			cc_d_mem_ex;
     49  1.8.2.2  thorpej 	struct extent *			cc_s_mem_ex;
     50  1.8.2.2  thorpej 	struct alpha_pci_chipset	cc_pc;
     51  1.8.2.2  thorpej 	struct dwlpx_softc *		cc_sc;	/* back pointer */
     52  1.8.2.2  thorpej 	long				cc_io_exstorage[_FSTORE];
     53  1.8.2.2  thorpej 	long				cc_dmem_exstorage[_FSTORE];
     54  1.8.2.2  thorpej 	long				cc_smem_exstorage[_FSTORE];
     55  1.8.2.2  thorpej 	unsigned long			cc_sysbase;	/* shorthand */
     56  1.8.2.2  thorpej 	struct alpha_bus_dma_tag	cc_dmat_direct;
     57  1.8.2.2  thorpej 	struct alpha_bus_dma_tag	cc_dmat_sgmap;
     58  1.8.2.2  thorpej 	struct alpha_sgmap		cc_sgmap;
     59  1.8.2.2  thorpej };
     60  1.8.2.2  thorpej 
     61  1.8.2.2  thorpej struct dwlpx_softc {
     62  1.8.2.2  thorpej 	struct device		dwlpx_dev;
     63  1.8.2.2  thorpej 	struct dwlpx_config	dwlpx_cc;	/* config info */
     64  1.8.2.2  thorpej 	u_int16_t		dwlpx_dtype;	/* Node Type */
     65  1.8.2.2  thorpej 	u_int8_t		dwlpx_node;	/* TurboLaser Node */
     66  1.8.2.2  thorpej 	u_int8_t		dwlpx_hosenum;	/* Hose Number */
     67  1.8.2.2  thorpej 	u_int8_t		dwlpx_nhpc;	/* # of hpcs */
     68  1.8.2.2  thorpej 	u_int8_t		dwlpx_sgmapsz;	/* size of SGMAP */
     69  1.8.2.2  thorpej };
     70  1.8.2.2  thorpej #define	DWLPX_NONE	0
     71  1.8.2.2  thorpej #define	DWLPX_SG32K	1
     72  1.8.2.2  thorpej #define	DWLPX_SG64K	2
     73  1.8.2.2  thorpej #define	DWLPX_SG128K	3
     74  1.8.2.2  thorpej 
     75  1.8.2.2  thorpej void	dwlpx_init __P((struct dwlpx_softc *));
     76  1.8.2.2  thorpej void	dwlpx_pci_init __P((pci_chipset_tag_t, void *));
     77  1.8.2.2  thorpej void	dwlpx_dma_init __P((struct dwlpx_config *));
     78  1.8.2.2  thorpej 
     79  1.8.2.2  thorpej void	dwlpx_bus_io_init __P((bus_space_tag_t, void *));
     80  1.8.2.2  thorpej void	dwlpx_bus_mem_init __P((bus_space_tag_t, void *));
     81  1.8.2.2  thorpej 
     82  1.8.2.2  thorpej /*
     83  1.8.2.2  thorpej  * Each DWLPX supports up to 15 devices, 12 of which are PCI slots.
     84  1.8.2.2  thorpej  *
     85  1.8.2.2  thorpej  * Since the STD I/O modules in slots 12-14 are really a PCI-EISA
     86  1.8.2.2  thorpej  * bridge, we'll punt on those for the moment.
     87  1.8.2.2  thorpej  */
     88  1.8.2.2  thorpej #define	DWLPX_MAXDEV	12
     89  1.8.2.2  thorpej 
     90  1.8.2.2  thorpej #define	DWLPX_NIONODE	5
     91  1.8.2.2  thorpej #define	DWLPX_NHOSE	4
     92  1.8.2.2  thorpej 
     93  1.8.2.2  thorpej /*
     94  1.8.2.2  thorpej  * Default values to put into DWLPX IMASK register(s)
     95  1.8.2.2  thorpej  */
     96  1.8.2.2  thorpej #define	DWLPX_IMASK_DFLT	\
     97  1.8.2.2  thorpej 	(1 << 24) |	/* IPL 17 for error interrupts */ \
     98  1.8.2.2  thorpej 	(1 << 17) |	/* IPL 14 for device interrupts */ \
     99  1.8.2.2  thorpej 	(1 << 16)	/* Enable Error Interrupts */
    100