Home | History | Annotate | Line # | Download | only in pci
cia.c revision 1.62.2.3
      1  1.62.2.3    skrll /* $NetBSD: cia.c,v 1.62.2.3 2004/09/21 13:12:01 skrll Exp $ */
      2      1.42  thorpej 
      3      1.42  thorpej /*-
      4      1.53  thorpej  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5      1.42  thorpej  * All rights reserved.
      6      1.42  thorpej  *
      7      1.42  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8      1.42  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9      1.42  thorpej  * NASA Ames Research Center.
     10      1.42  thorpej  *
     11      1.42  thorpej  * Redistribution and use in source and binary forms, with or without
     12      1.42  thorpej  * modification, are permitted provided that the following conditions
     13      1.42  thorpej  * are met:
     14      1.42  thorpej  * 1. Redistributions of source code must retain the above copyright
     15      1.42  thorpej  *    notice, this list of conditions and the following disclaimer.
     16      1.42  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17      1.42  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18      1.42  thorpej  *    documentation and/or other materials provided with the distribution.
     19      1.42  thorpej  * 3. All advertising materials mentioning features or use of this software
     20      1.42  thorpej  *    must display the following acknowledgement:
     21      1.42  thorpej  *	This product includes software developed by the NetBSD
     22      1.42  thorpej  *	Foundation, Inc. and its contributors.
     23      1.42  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24      1.42  thorpej  *    contributors may be used to endorse or promote products derived
     25      1.42  thorpej  *    from this software without specific prior written permission.
     26      1.42  thorpej  *
     27      1.42  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28      1.42  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29      1.42  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30      1.42  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31      1.42  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32      1.42  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33      1.42  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34      1.42  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35      1.42  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36      1.42  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37      1.42  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38      1.42  thorpej  */
     39       1.1      cgd 
     40       1.1      cgd /*
     41       1.4      cgd  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
     42       1.1      cgd  * All rights reserved.
     43       1.1      cgd  *
     44       1.1      cgd  * Author: Chris G. Demetriou
     45       1.1      cgd  *
     46       1.1      cgd  * Permission to use, copy, modify and distribute this software and
     47       1.1      cgd  * its documentation is hereby granted, provided that both the copyright
     48       1.1      cgd  * notice and this permission notice appear in all copies of the
     49       1.1      cgd  * software, derivative works or modified versions, and any portions
     50       1.1      cgd  * thereof, and that both notices appear in supporting documentation.
     51       1.1      cgd  *
     52       1.1      cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     53       1.1      cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     54       1.1      cgd  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     55       1.1      cgd  *
     56       1.1      cgd  * Carnegie Mellon requests users of this software to return to
     57       1.1      cgd  *
     58       1.1      cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     59       1.1      cgd  *  School of Computer Science
     60       1.1      cgd  *  Carnegie Mellon University
     61       1.1      cgd  *  Pittsburgh PA 15213-3890
     62       1.1      cgd  *
     63       1.1      cgd  * any improvements or extensions that they make and grant Carnegie the
     64       1.1      cgd  * rights to redistribute these changes.
     65       1.1      cgd  */
     66      1.18      cgd 
     67      1.25  thorpej #include "opt_dec_eb164.h"
     68      1.25  thorpej #include "opt_dec_kn20aa.h"
     69      1.39  thorpej #include "opt_dec_550.h"
     70      1.44     ross #include "opt_dec_1000a.h"
     71      1.45     ross #include "opt_dec_1000.h"
     72      1.25  thorpej 
     73      1.19      cgd #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     74      1.19      cgd 
     75  1.62.2.3    skrll __KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.62.2.3 2004/09/21 13:12:01 skrll Exp $");
     76       1.1      cgd 
     77       1.1      cgd #include <sys/param.h>
     78       1.1      cgd #include <sys/systm.h>
     79       1.1      cgd #include <sys/kernel.h>
     80       1.1      cgd #include <sys/malloc.h>
     81       1.1      cgd #include <sys/device.h>
     82      1.56      mrg 
     83      1.56      mrg #include <uvm/uvm_extern.h>
     84       1.1      cgd 
     85       1.1      cgd #include <machine/autoconf.h>
     86       1.1      cgd #include <machine/rpb.h>
     87      1.53  thorpej #include <machine/sysarch.h>
     88      1.57     ross #include <machine/alpha.h>
     89       1.1      cgd 
     90       1.1      cgd #include <dev/isa/isareg.h>
     91       1.1      cgd #include <dev/isa/isavar.h>
     92       1.1      cgd 
     93       1.1      cgd #include <dev/pci/pcireg.h>
     94       1.1      cgd #include <dev/pci/pcivar.h>
     95       1.1      cgd #include <alpha/pci/ciareg.h>
     96       1.1      cgd #include <alpha/pci/ciavar.h>
     97      1.45     ross 
     98      1.17      cgd #ifdef DEC_KN20AA
     99       1.1      cgd #include <alpha/pci/pci_kn20aa.h>
    100       1.1      cgd #endif
    101      1.17      cgd #ifdef DEC_EB164
    102      1.13      cgd #include <alpha/pci/pci_eb164.h>
    103      1.13      cgd #endif
    104      1.39  thorpej #ifdef DEC_550
    105      1.39  thorpej #include <alpha/pci/pci_550.h>
    106      1.39  thorpej #endif
    107      1.44     ross #ifdef DEC_1000A
    108      1.44     ross #include <alpha/pci/pci_1000a.h>
    109      1.44     ross #endif
    110      1.45     ross #ifdef DEC_1000
    111      1.45     ross #include <alpha/pci/pci_1000.h>
    112      1.45     ross #endif
    113       1.1      cgd 
    114      1.15      cgd int	ciamatch __P((struct device *, struct cfdata *, void *));
    115       1.1      cgd void	ciaattach __P((struct device *, struct device *, void *));
    116       1.1      cgd 
    117      1.60  thorpej CFATTACH_DECL(cia, sizeof(struct cia_softc),
    118      1.60  thorpej     ciamatch, ciaattach, NULL, NULL);
    119       1.5      cgd 
    120      1.29  thorpej extern struct cfdriver cia_cd;
    121       1.1      cgd 
    122      1.53  thorpej int	cia_bus_get_window __P((int, int,
    123      1.53  thorpej 	    struct alpha_bus_space_translation *));
    124      1.53  thorpej 
    125       1.1      cgd /* There can be only one. */
    126       1.1      cgd int ciafound;
    127       1.1      cgd struct cia_config cia_configuration;
    128       1.1      cgd 
    129      1.37  thorpej /*
    130      1.37  thorpej  * This determines if we attempt to use BWX for PCI bus and config space
    131      1.37  thorpej  * access.  Some systems, notably with Pyxis, don't fare so well unless
    132      1.37  thorpej  * BWX is used.
    133      1.46  thorpej  *
    134      1.46  thorpej  * EXCEPT!  Some devices have a really hard time if BWX is used (WHY?!).
    135      1.46  thorpej  * So, we decouple the uses for PCI config space and PCI bus space.
    136      1.50  thorpej  *
    137      1.50  thorpej  * FURTHERMORE!  The Pyxis, most notably earlier revs, really don't
    138      1.50  thorpej  * do so well if you don't use BWX for bus access.  So we default to
    139      1.50  thorpej  * forcing BWX on those chips.
    140      1.50  thorpej  *
    141      1.50  thorpej  * Geez.
    142      1.37  thorpej  */
    143      1.46  thorpej 
    144      1.46  thorpej #ifndef CIA_PCI_USE_BWX
    145      1.46  thorpej #define	CIA_PCI_USE_BWX	1
    146      1.46  thorpej #endif
    147      1.46  thorpej 
    148      1.46  thorpej #ifndef	CIA_BUS_USE_BWX
    149      1.46  thorpej #define	CIA_BUS_USE_BWX	0
    150      1.37  thorpej #endif
    151      1.37  thorpej 
    152      1.50  thorpej #ifndef CIA_PYXIS_FORCE_BWX
    153      1.52  thorpej #define	CIA_PYXIS_FORCE_BWX 0
    154      1.50  thorpej #endif
    155      1.50  thorpej 
    156      1.46  thorpej int	cia_pci_use_bwx = CIA_PCI_USE_BWX;
    157      1.46  thorpej int	cia_bus_use_bwx = CIA_BUS_USE_BWX;
    158      1.50  thorpej int	cia_pyxis_force_bwx = CIA_PYXIS_FORCE_BWX;
    159      1.37  thorpej 
    160       1.1      cgd int
    161       1.1      cgd ciamatch(parent, match, aux)
    162       1.1      cgd 	struct device *parent;
    163      1.15      cgd 	struct cfdata *match;
    164      1.15      cgd 	void *aux;
    165       1.1      cgd {
    166      1.35  thorpej 	struct mainbus_attach_args *ma = aux;
    167       1.1      cgd 
    168       1.1      cgd 	/* Make sure that we're looking for a CIA. */
    169      1.35  thorpej 	if (strcmp(ma->ma_name, cia_cd.cd_name) != 0)
    170       1.1      cgd 		return (0);
    171       1.1      cgd 
    172       1.1      cgd 	if (ciafound)
    173       1.1      cgd 		return (0);
    174       1.1      cgd 
    175       1.1      cgd 	return (1);
    176       1.1      cgd }
    177       1.1      cgd 
    178       1.1      cgd /*
    179       1.1      cgd  * Set up the chipset's function pointers.
    180       1.1      cgd  */
    181       1.1      cgd void
    182      1.14      cgd cia_init(ccp, mallocsafe)
    183       1.1      cgd 	struct cia_config *ccp;
    184      1.14      cgd 	int mallocsafe;
    185       1.1      cgd {
    186      1.50  thorpej 	int pci_use_bwx = cia_pci_use_bwx;
    187      1.50  thorpej 	int bus_use_bwx = cia_bus_use_bwx;
    188       1.1      cgd 
    189       1.6      cgd 	ccp->cc_hae_mem = REGVAL(CIA_CSR_HAE_MEM);
    190       1.6      cgd 	ccp->cc_hae_io = REGVAL(CIA_CSR_HAE_IO);
    191      1.36  thorpej 	ccp->cc_rev = REGVAL(CIA_CSR_REV) & REV_MASK;
    192      1.36  thorpej 
    193      1.36  thorpej 	/*
    194      1.36  thorpej 	 * Determine if we have a Pyxis.  Only two systypes can
    195      1.36  thorpej 	 * have this: the EB164 systype (AlphaPC164LX and AlphaPC164SX)
    196      1.36  thorpej 	 * and the DEC_550 systype (Miata).
    197      1.36  thorpej 	 */
    198      1.47      cgd 	if ((cputype == ST_EB164 &&
    199      1.36  thorpej 	     (hwrpb->rpb_variation & SV_ST_MASK) >= SV_ST_ALPHAPC164LX_400) ||
    200      1.50  thorpej 	    cputype == ST_DEC_550) {
    201      1.36  thorpej 		ccp->cc_flags |= CCF_ISPYXIS;
    202      1.50  thorpej 		if (cia_pyxis_force_bwx)
    203      1.50  thorpej 			pci_use_bwx = bus_use_bwx = 1;
    204      1.50  thorpej 	}
    205      1.27  thorpej 
    206      1.27  thorpej 	/*
    207      1.40  thorpej 	 * ALCOR/ALCOR2 Revisions >= 2 and Pyxis have the CNFG register.
    208      1.27  thorpej 	 */
    209      1.40  thorpej 	if (ccp->cc_rev >= 2 || (ccp->cc_flags & CCF_ISPYXIS) != 0)
    210      1.27  thorpej 		ccp->cc_cnfg = REGVAL(CIA_CSR_CNFG);
    211      1.27  thorpej 	else
    212      1.27  thorpej 		ccp->cc_cnfg = 0;
    213      1.12      cgd 
    214      1.37  thorpej 	/*
    215      1.37  thorpej 	 * Use BWX iff:
    216      1.37  thorpej 	 *
    217      1.37  thorpej 	 *	- It hasn't been disbled by the user,
    218      1.37  thorpej 	 *	- it's enabled in CNFG,
    219      1.37  thorpej 	 *	- we're implementation version ev5,
    220      1.57     ross 	 *	- BWX is enabled in the CPU's capabilities mask
    221      1.37  thorpej 	 */
    222      1.50  thorpej 	if ((pci_use_bwx || bus_use_bwx) &&
    223      1.37  thorpej 	    (ccp->cc_cnfg & CNFG_BWEN) != 0 &&
    224      1.55  thorpej 	    (cpu_amask & ALPHA_AMASK_BWX) != 0) {
    225      1.38  thorpej 		u_int32_t ctrl;
    226      1.38  thorpej 
    227      1.50  thorpej 		if (pci_use_bwx)
    228      1.46  thorpej 			ccp->cc_flags |= CCF_PCI_USE_BWX;
    229      1.50  thorpej 		if (bus_use_bwx)
    230      1.46  thorpej 			ccp->cc_flags |= CCF_BUS_USE_BWX;
    231      1.38  thorpej 
    232      1.38  thorpej 		/*
    233      1.38  thorpej 		 * For whatever reason, the firmware seems to enable PCI
    234      1.38  thorpej 		 * loopback mode if it also enables BWX.  Make sure it's
    235      1.38  thorpej 		 * enabled if we have an old, buggy firmware rev.
    236      1.38  thorpej 		 */
    237      1.38  thorpej 		alpha_mb();
    238      1.38  thorpej 		ctrl = REGVAL(CIA_CSR_CTRL);
    239      1.38  thorpej 		if ((ctrl & CTRL_PCI_LOOP_EN) == 0) {
    240      1.38  thorpej 			REGVAL(CIA_CSR_CTRL) = ctrl | CTRL_PCI_LOOP_EN;
    241      1.38  thorpej 			alpha_mb();
    242      1.38  thorpej 		}
    243      1.38  thorpej 	}
    244      1.37  thorpej 
    245      1.14      cgd 	if (!ccp->cc_initted) {
    246      1.14      cgd 		/* don't do these twice since they set up extents */
    247      1.46  thorpej 		if (ccp->cc_flags & CCF_BUS_USE_BWX) {
    248      1.37  thorpej 			cia_bwx_bus_io_init(&ccp->cc_iot, ccp);
    249      1.37  thorpej 			cia_bwx_bus_mem_init(&ccp->cc_memt, ccp);
    250      1.53  thorpej 
    251      1.53  thorpej 			/*
    252      1.53  thorpej 			 * We have one window for both PCI I/O and MEM
    253      1.53  thorpej 			 * in BWX mode.
    254      1.53  thorpej 			 */
    255      1.53  thorpej 			alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_IO] = 1;
    256      1.53  thorpej 			alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_MEM] = 1;
    257      1.37  thorpej 		} else {
    258      1.37  thorpej 			cia_swiz_bus_io_init(&ccp->cc_iot, ccp);
    259      1.37  thorpej 			cia_swiz_bus_mem_init(&ccp->cc_memt, ccp);
    260      1.53  thorpej 
    261      1.53  thorpej 			/*
    262      1.53  thorpej 			 * We have two I/O windows and 4 MEM windows in
    263      1.53  thorpej 			 * SWIZ mode.
    264      1.53  thorpej 			 */
    265      1.53  thorpej 			alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_IO] = 2;
    266      1.53  thorpej 			alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_MEM] = 4;
    267      1.37  thorpej 		}
    268      1.53  thorpej 		alpha_bus_get_window = cia_bus_get_window;
    269      1.14      cgd 	}
    270      1.14      cgd 	ccp->cc_mallocsafe = mallocsafe;
    271      1.14      cgd 
    272      1.14      cgd 	cia_pci_init(&ccp->cc_pc, ccp);
    273      1.53  thorpej 	alpha_pci_chipset = &ccp->cc_pc;
    274      1.14      cgd 
    275      1.14      cgd 	ccp->cc_initted = 1;
    276       1.1      cgd }
    277       1.1      cgd 
    278       1.1      cgd void
    279       1.1      cgd ciaattach(parent, self, aux)
    280       1.1      cgd 	struct device *parent, *self;
    281       1.1      cgd 	void *aux;
    282       1.1      cgd {
    283       1.1      cgd 	struct cia_softc *sc = (struct cia_softc *)self;
    284       1.1      cgd 	struct cia_config *ccp;
    285       1.5      cgd 	struct pcibus_attach_args pba;
    286      1.28  thorpej 	char bits[64];
    287      1.43  thorpej 	const char *name;
    288      1.43  thorpej 	int pass;
    289       1.1      cgd 
    290       1.1      cgd 	/* note that we've attached the chipset; can't have 2 CIAs. */
    291       1.1      cgd 	ciafound = 1;
    292       1.1      cgd 
    293       1.1      cgd 	/*
    294       1.1      cgd 	 * set up the chipset's info; done once at console init time
    295      1.21  thorpej 	 * (maybe), but we must do it here as well to take care of things
    296      1.21  thorpej 	 * that need to use memory allocation.
    297       1.1      cgd 	 */
    298       1.1      cgd 	ccp = sc->sc_ccp = &cia_configuration;
    299      1.14      cgd 	cia_init(ccp, 1);
    300       1.1      cgd 
    301      1.43  thorpej 	if (ccp->cc_flags & CCF_ISPYXIS) {
    302      1.43  thorpej 		name = "Pyxis";
    303      1.43  thorpej 		pass = ccp->cc_rev;
    304      1.43  thorpej 	} else {
    305      1.43  thorpej 		name = "ALCOR/ALCOR2";
    306      1.43  thorpej 		pass = ccp->cc_rev + 1;
    307      1.43  thorpej 	}
    308      1.43  thorpej 
    309      1.36  thorpej 	printf(": DECchip 2117x Core Logic Chipset (%s), pass %d\n",
    310      1.43  thorpej 	    name, pass);
    311      1.28  thorpej 	if (ccp->cc_cnfg)
    312      1.28  thorpej 		printf("%s: extended capabilities: %s\n", self->dv_xname,
    313      1.28  thorpej 		    bitmask_snprintf(ccp->cc_cnfg, CIA_CSR_CNFG_BITS,
    314      1.28  thorpej 		    bits, sizeof(bits)));
    315      1.46  thorpej 
    316      1.46  thorpej 	switch (ccp->cc_flags & (CCF_PCI_USE_BWX|CCF_BUS_USE_BWX)) {
    317      1.46  thorpej 	case CCF_PCI_USE_BWX|CCF_BUS_USE_BWX:
    318      1.46  thorpej 		name = "PCI config and bus";
    319      1.46  thorpej 		break;
    320      1.46  thorpej 	case CCF_PCI_USE_BWX:
    321      1.46  thorpej 		name = "PCI config";
    322      1.46  thorpej 		break;
    323      1.46  thorpej 	case CCF_BUS_USE_BWX:
    324      1.46  thorpej 		name = "bus";
    325      1.46  thorpej 		break;
    326      1.46  thorpej 	default:
    327      1.46  thorpej 		name = NULL;
    328      1.46  thorpej 		break;
    329      1.46  thorpej 	}
    330      1.46  thorpej 	if (name != NULL)
    331      1.46  thorpej 		printf("%s: using BWX for %s access\n", self->dv_xname, name);
    332      1.41  thorpej 
    333      1.42  thorpej #ifdef DEC_550
    334      1.47      cgd 	if (cputype == ST_DEC_550 &&
    335      1.42  thorpej 	    (hwrpb->rpb_variation & SV_ST_MASK) < SV_ST_MIATA_1_5) {
    336      1.41  thorpej 		/*
    337      1.42  thorpej 		 * Miata 1 systems have a bug: DMA cannot cross
    338      1.41  thorpej 		 * an 8k boundary!  Make sure PCI read prefetching
    339      1.41  thorpej 		 * is disabled on these chips.  Note that secondary
    340      1.41  thorpej 		 * PCI busses don't have this problem, because of
    341      1.41  thorpej 		 * the way PPBs handle PCI read requests.
    342      1.41  thorpej 		 *
    343      1.42  thorpej 		 * In the 21174 Technical Reference Manual, this is
    344      1.42  thorpej 		 * actually documented as "Pyxis Pass 1", but apparently
    345      1.42  thorpej 		 * there are chips that report themselves as "Pass 1"
    346      1.42  thorpej 		 * which do not have the bug!  Miatas with the Cypress
    347      1.42  thorpej 		 * PCI-ISA bridge (i.e. Miata 1.5 and Miata 2) do not
    348      1.42  thorpej 		 * have the bug, so we use this check.
    349      1.42  thorpej 		 *
    350      1.51  thorpej 		 * NOTE: This bug is actually worked around in cia_dma.c,
    351      1.51  thorpej 		 * when direct-mapped DMA maps are created.
    352      1.51  thorpej 		 *
    353      1.51  thorpej 		 * XXX WE NEED TO THINK ABOUT HOW TO HANDLE THIS FOR
    354      1.51  thorpej 		 * XXX SGMAP DMA MAPPINGS!
    355      1.41  thorpej 		 */
    356      1.41  thorpej 		u_int32_t ctrl;
    357      1.41  thorpej 
    358      1.41  thorpej 		/* XXX no bets... */
    359      1.41  thorpej 		printf("%s: WARNING: Pyxis pass 1 DMA bug; no bets...\n",
    360      1.41  thorpej 		    self->dv_xname);
    361      1.41  thorpej 
    362      1.49  thorpej 		ccp->cc_flags |= CCF_PYXISBUG;
    363      1.49  thorpej 
    364      1.41  thorpej 		alpha_mb();
    365      1.41  thorpej 		ctrl = REGVAL(CIA_CSR_CTRL);
    366      1.41  thorpej 		ctrl &= ~(CTRL_RD_TYPE|CTRL_RL_TYPE|CTRL_RM_TYPE);
    367      1.41  thorpej 		REGVAL(CIA_CSR_CTRL) = ctrl;
    368      1.41  thorpej 		alpha_mb();
    369      1.41  thorpej 	}
    370      1.42  thorpej #endif /* DEC_550 */
    371      1.43  thorpej 
    372      1.43  thorpej 	cia_dma_init(ccp);
    373       1.1      cgd 
    374      1.47      cgd 	switch (cputype) {
    375      1.17      cgd #ifdef DEC_KN20AA
    376       1.1      cgd 	case ST_DEC_KN20AA:
    377       1.5      cgd 		pci_kn20aa_pickintr(ccp);
    378       1.1      cgd 		break;
    379       1.1      cgd #endif
    380      1.13      cgd 
    381      1.17      cgd #ifdef DEC_EB164
    382      1.13      cgd 	case ST_EB164:
    383      1.13      cgd 		pci_eb164_pickintr(ccp);
    384      1.39  thorpej 		break;
    385      1.39  thorpej #endif
    386      1.39  thorpej 
    387      1.39  thorpej #ifdef DEC_550
    388      1.39  thorpej 	case ST_DEC_550:
    389      1.39  thorpej 		pci_550_pickintr(ccp);
    390      1.44     ross 		break;
    391      1.44     ross #endif
    392      1.44     ross 
    393      1.44     ross #ifdef DEC_1000A
    394      1.44     ross 	case ST_DEC_1000A:
    395      1.44     ross 		pci_1000a_pickintr(ccp, &ccp->cc_iot, &ccp->cc_memt,
    396      1.44     ross 			&ccp->cc_pc);
    397      1.45     ross 		break;
    398      1.13      cgd #endif
    399      1.45     ross 
    400      1.45     ross #ifdef DEC_1000
    401      1.45     ross 	case ST_DEC_1000:
    402      1.45     ross 		pci_1000_pickintr(ccp, &ccp->cc_iot, &ccp->cc_memt,
    403      1.45     ross 			&ccp->cc_pc);
    404      1.13      cgd 		break;
    405      1.13      cgd #endif
    406      1.13      cgd 
    407       1.1      cgd 	default:
    408       1.1      cgd 		panic("ciaattach: shouldn't be here, really...");
    409       1.1      cgd 	}
    410       1.1      cgd 
    411      1.23  thorpej 	pba.pba_iot = &ccp->cc_iot;
    412      1.23  thorpej 	pba.pba_memt = &ccp->cc_memt;
    413      1.30  thorpej 	pba.pba_dmat =
    414      1.30  thorpej 	    alphabus_dma_get_tag(&ccp->cc_dmat_direct, ALPHA_BUS_PCI);
    415      1.62     fvdl 	pba.pba_dmat64 = NULL;
    416       1.5      cgd 	pba.pba_pc = &ccp->cc_pc;
    417       1.5      cgd 	pba.pba_bus = 0;
    418      1.58  thorpej 	pba.pba_bridgetag = NULL;
    419      1.49  thorpej 	pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
    420      1.49  thorpej 	if ((ccp->cc_flags & CCF_PYXISBUG) == 0)
    421      1.49  thorpej 		pba.pba_flags |= PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY |
    422      1.49  thorpej 		    PCI_FLAGS_MWI_OKAY;
    423  1.62.2.1    skrll 	config_found_ia(self, "pcibus", &pba, pcibusprint);
    424      1.53  thorpej }
    425      1.53  thorpej 
    426      1.53  thorpej int
    427      1.53  thorpej cia_bus_get_window(type, window, abst)
    428      1.53  thorpej 	int type, window;
    429      1.53  thorpej 	struct alpha_bus_space_translation *abst;
    430      1.53  thorpej {
    431      1.53  thorpej 	struct cia_config *ccp = &cia_configuration;
    432      1.53  thorpej 	bus_space_tag_t st;
    433      1.53  thorpej 
    434      1.53  thorpej 	switch (type) {
    435      1.53  thorpej 	case ALPHA_BUS_TYPE_PCI_IO:
    436      1.53  thorpej 		st = &ccp->cc_iot;
    437      1.53  thorpej 		break;
    438      1.53  thorpej 
    439      1.53  thorpej 	case ALPHA_BUS_TYPE_PCI_MEM:
    440      1.53  thorpej 		st = &ccp->cc_memt;
    441      1.53  thorpej 		break;
    442      1.53  thorpej 
    443      1.53  thorpej 	default:
    444      1.53  thorpej 		panic("cia_bus_get_window");
    445      1.53  thorpej 	}
    446      1.53  thorpej 
    447      1.53  thorpej 	return (alpha_bus_space_get_window(st, window, abst));
    448      1.54  thorpej }
    449      1.54  thorpej 
    450      1.54  thorpej void
    451      1.54  thorpej cia_pyxis_intr_enable(irq, onoff)
    452      1.54  thorpej 	int irq, onoff;
    453      1.54  thorpej {
    454      1.54  thorpej 	u_int64_t imask;
    455      1.54  thorpej 	int s;
    456      1.54  thorpej 
    457      1.54  thorpej #if 0
    458      1.54  thorpej 	printf("cia_pyxis_intr_enable: %s %d\n",
    459      1.54  thorpej 	    onoff ? "enabling" : "disabling", irq);
    460      1.54  thorpej #endif
    461      1.54  thorpej 
    462      1.54  thorpej 	s = splhigh();
    463      1.54  thorpej 	alpha_mb();
    464      1.54  thorpej 	imask = REGVAL64(PYXIS_INT_MASK);
    465      1.54  thorpej 	if (onoff)
    466      1.54  thorpej 		imask |= (1UL << irq);
    467      1.54  thorpej 	else
    468      1.54  thorpej 		imask &= ~(1UL << irq);
    469      1.54  thorpej 	REGVAL64(PYXIS_INT_MASK) = imask;
    470      1.54  thorpej 	alpha_mb();
    471      1.54  thorpej 	splx(s);
    472       1.1      cgd }
    473