Home | History | Annotate | Line # | Download | only in pci
pci_550.c revision 1.14.2.1
      1  1.14.2.1  minoura /* $NetBSD: pci_550.c,v 1.14.2.1 2000/06/22 16:58:40 minoura Exp $ */
      2       1.1  thorpej 
      3       1.1  thorpej /*-
      4      1.14  thorpej  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5       1.1  thorpej  * All rights reserved.
      6       1.1  thorpej  *
      7       1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.3     ross  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9       1.4  thorpej  * NASA Ames Research Center, and by Andrew Gallatin.
     10       1.1  thorpej  *
     11       1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.1  thorpej  * modification, are permitted provided that the following conditions
     13       1.1  thorpej  * are met:
     14       1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     20       1.1  thorpej  *    must display the following acknowledgement:
     21       1.1  thorpej  *	This product includes software developed by the NetBSD
     22       1.1  thorpej  *	Foundation, Inc. and its contributors.
     23       1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.1  thorpej  *    contributors may be used to endorse or promote products derived
     25       1.1  thorpej  *    from this software without specific prior written permission.
     26       1.1  thorpej  *
     27       1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38       1.1  thorpej  */
     39       1.1  thorpej 
     40       1.1  thorpej /*
     41       1.1  thorpej  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
     42       1.1  thorpej  * All rights reserved.
     43       1.1  thorpej  *
     44       1.1  thorpej  * Author: Chris G. Demetriou
     45       1.1  thorpej  *
     46       1.1  thorpej  * Permission to use, copy, modify and distribute this software and
     47       1.1  thorpej  * its documentation is hereby granted, provided that both the copyright
     48       1.1  thorpej  * notice and this permission notice appear in all copies of the
     49       1.1  thorpej  * software, derivative works or modified versions, and any portions
     50       1.1  thorpej  * thereof, and that both notices appear in supporting documentation.
     51       1.1  thorpej  *
     52       1.1  thorpej  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     53       1.1  thorpej  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     54       1.1  thorpej  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     55       1.1  thorpej  *
     56       1.1  thorpej  * Carnegie Mellon requests users of this software to return to
     57       1.1  thorpej  *
     58       1.1  thorpej  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     59       1.1  thorpej  *  School of Computer Science
     60       1.1  thorpej  *  Carnegie Mellon University
     61       1.1  thorpej  *  Pittsburgh PA 15213-3890
     62       1.1  thorpej  *
     63       1.1  thorpej  * any improvements or extensions that they make and grant Carnegie the
     64       1.1  thorpej  * rights to redistribute these changes.
     65       1.1  thorpej  */
     66       1.1  thorpej 
     67       1.1  thorpej #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     68       1.1  thorpej 
     69  1.14.2.1  minoura __KERNEL_RCSID(0, "$NetBSD: pci_550.c,v 1.14.2.1 2000/06/22 16:58:40 minoura Exp $");
     70       1.1  thorpej 
     71       1.1  thorpej #include <sys/types.h>
     72       1.1  thorpej #include <sys/param.h>
     73       1.1  thorpej #include <sys/time.h>
     74       1.1  thorpej #include <sys/systm.h>
     75       1.1  thorpej #include <sys/errno.h>
     76       1.1  thorpej #include <sys/malloc.h>
     77       1.1  thorpej #include <sys/device.h>
     78       1.1  thorpej #include <sys/syslog.h>
     79       1.1  thorpej 
     80       1.1  thorpej #include <vm/vm.h>
     81       1.1  thorpej 
     82       1.1  thorpej #include <machine/autoconf.h>
     83       1.5  thorpej #include <machine/rpb.h>
     84       1.1  thorpej 
     85       1.1  thorpej #include <dev/pci/pcireg.h>
     86       1.1  thorpej #include <dev/pci/pcivar.h>
     87       1.1  thorpej #include <dev/pci/pciidereg.h>
     88       1.1  thorpej #include <dev/pci/pciidevar.h>
     89       1.1  thorpej 
     90       1.1  thorpej #include <alpha/pci/ciareg.h>
     91       1.1  thorpej #include <alpha/pci/ciavar.h>
     92       1.1  thorpej 
     93       1.1  thorpej #include <alpha/pci/pci_550.h>
     94       1.1  thorpej 
     95       1.1  thorpej #include "sio.h"
     96       1.1  thorpej #if NSIO
     97       1.1  thorpej #include <alpha/pci/siovar.h>
     98       1.1  thorpej #endif
     99       1.1  thorpej 
    100       1.1  thorpej int	dec_550_intr_map __P((void *, pcitag_t, int, int,
    101       1.1  thorpej 	    pci_intr_handle_t *));
    102       1.1  thorpej const char *dec_550_intr_string __P((void *, pci_intr_handle_t));
    103  1.14.2.1  minoura const struct evcnt *dec_550_intr_evcnt __P((void *, pci_intr_handle_t));
    104       1.1  thorpej void	*dec_550_intr_establish __P((void *, pci_intr_handle_t,
    105       1.1  thorpej 	    int, int (*func)(void *), void *));
    106       1.1  thorpej void	dec_550_intr_disestablish __P((void *, void *));
    107       1.1  thorpej 
    108       1.1  thorpej void	*dec_550_pciide_compat_intr_establish __P((void *, struct device *,
    109       1.1  thorpej 	    struct pci_attach_args *, int, int (*)(void *), void *));
    110       1.1  thorpej 
    111       1.1  thorpej #define	DEC_550_PCI_IRQ_BEGIN	8
    112      1.14  thorpej #define	DEC_550_MAX_IRQ		(64 - DEC_550_PCI_IRQ_BEGIN)
    113      1.10  thorpej 
    114      1.10  thorpej /*
    115      1.10  thorpej  * The Miata has a Pyxis, which seems to have problems with stray
    116      1.10  thorpej  * interrupts.  Work around this by just ignoring strays.
    117      1.10  thorpej  */
    118      1.10  thorpej #define	PCI_STRAY_MAX		0
    119       1.1  thorpej 
    120      1.14  thorpej /*
    121      1.14  thorpej  * Some Miata models, notably models with a Cypress PCI-ISA bridge, have
    122      1.14  thorpej  * a PCI device (the OHCI USB controller) with interrupts tied to ISA IRQ
    123      1.14  thorpej  * lines.  This IRQ is encoded as:
    124      1.14  thorpej  *
    125      1.14  thorpej  *	line = 0xe0 | isa_irq;
    126      1.14  thorpej  */
    127      1.14  thorpej #define	DEC_550_LINE_IS_ISA(line)	((line) >= 0xe0 && (line) <= 0xef)
    128      1.14  thorpej #define	DEC_550_LINE_ISA_IRQ(line)	((line) & 0x0f)
    129      1.14  thorpej 
    130       1.1  thorpej struct alpha_shared_intr *dec_550_pci_intr;
    131       1.1  thorpej 
    132       1.1  thorpej void	dec_550_iointr __P((void *framep, unsigned long vec));
    133       1.1  thorpej void	dec_550_intr_enable __P((int irq));
    134       1.1  thorpej void	dec_550_intr_disable __P((int irq));
    135       1.1  thorpej 
    136       1.1  thorpej void
    137       1.1  thorpej pci_550_pickintr(ccp)
    138       1.1  thorpej 	struct cia_config *ccp;
    139       1.1  thorpej {
    140       1.1  thorpej 	bus_space_tag_t iot = &ccp->cc_iot;
    141       1.1  thorpej 	pci_chipset_tag_t pc = &ccp->cc_pc;
    142  1.14.2.1  minoura 	char *cp;
    143       1.1  thorpej 	int i;
    144       1.1  thorpej 
    145       1.1  thorpej         pc->pc_intr_v = ccp;
    146       1.1  thorpej         pc->pc_intr_map = dec_550_intr_map;
    147       1.1  thorpej         pc->pc_intr_string = dec_550_intr_string;
    148  1.14.2.1  minoura 	pc->pc_intr_evcnt = dec_550_intr_evcnt;
    149       1.1  thorpej         pc->pc_intr_establish = dec_550_intr_establish;
    150       1.1  thorpej         pc->pc_intr_disestablish = dec_550_intr_disestablish;
    151       1.1  thorpej 
    152       1.1  thorpej 	pc->pc_pciide_compat_intr_establish =
    153       1.1  thorpej 	    dec_550_pciide_compat_intr_establish;
    154       1.1  thorpej 
    155       1.1  thorpej 	/*
    156       1.1  thorpej 	 * DEC 550's interrupts are enabled via the Pyxis interrupt
    157       1.7  thorpej 	 * mask register.  Nothing to map.
    158       1.1  thorpej 	 */
    159       1.1  thorpej 
    160      1.14  thorpej 	for (i = 0; i < DEC_550_MAX_IRQ; i++)
    161      1.14  thorpej 		dec_550_intr_disable(i);
    162       1.1  thorpej 
    163  1.14.2.1  minoura 	dec_550_pci_intr = alpha_shared_intr_alloc(DEC_550_MAX_IRQ, 8);
    164      1.14  thorpej 	for (i = 0; i < DEC_550_MAX_IRQ; i++) {
    165       1.1  thorpej 		alpha_shared_intr_set_maxstrays(dec_550_pci_intr, i,
    166      1.14  thorpej 		    PCI_STRAY_MAX);
    167      1.14  thorpej 		alpha_shared_intr_set_private(dec_550_pci_intr, i, ccp);
    168  1.14.2.1  minoura 
    169  1.14.2.1  minoura 		cp = alpha_shared_intr_string(dec_550_pci_intr, i);
    170  1.14.2.1  minoura 		sprintf(cp, "irq %d", i);
    171  1.14.2.1  minoura 		evcnt_attach_dynamic(alpha_shared_intr_evcnt(
    172  1.14.2.1  minoura 		    dec_550_pci_intr, i), EVCNT_TYPE_INTR, NULL,
    173  1.14.2.1  minoura 		    "dec_550", cp);
    174      1.14  thorpej 	}
    175       1.1  thorpej 
    176       1.1  thorpej #if NSIO
    177       1.1  thorpej 	sio_intr_setup(pc, iot);
    178       1.1  thorpej #endif
    179       1.1  thorpej 
    180       1.1  thorpej 	set_iointr(dec_550_iointr);
    181       1.1  thorpej }
    182       1.1  thorpej 
    183       1.1  thorpej int
    184       1.1  thorpej dec_550_intr_map(ccv, bustag, buspin, line, ihp)
    185       1.1  thorpej         void *ccv;
    186       1.1  thorpej         pcitag_t bustag;
    187       1.1  thorpej         int buspin, line;
    188       1.1  thorpej         pci_intr_handle_t *ihp;
    189       1.1  thorpej {
    190       1.1  thorpej 	struct cia_config *ccp = ccv;
    191       1.1  thorpej 	pci_chipset_tag_t pc = &ccp->cc_pc;
    192       1.1  thorpej 	int bus, device, function;
    193       1.1  thorpej 
    194       1.1  thorpej 	if (buspin == 0) {
    195       1.1  thorpej 		/* No IRQ used. */
    196       1.1  thorpej 		return 1;
    197       1.1  thorpej 	}
    198       1.1  thorpej 	if (buspin > 4) {
    199       1.1  thorpej 		printf("dec_550_intr_map: bad interrupt pin %d\n", buspin);
    200       1.1  thorpej 		return 1;
    201       1.1  thorpej 	}
    202       1.1  thorpej 
    203       1.1  thorpej 	alpha_pci_decompose_tag(pc, bustag, &bus, &device, &function);
    204       1.1  thorpej 
    205       1.1  thorpej 	/*
    206       1.5  thorpej 	 * There are two main variants of Miata: Miata 1 (Intel SIO)
    207       1.5  thorpej 	 * and Miata {1.5,2} (Cypress).
    208       1.5  thorpej 	 *
    209       1.5  thorpej 	 * The Miata 1 has a CMD PCI IDE wired to compatibility mode at
    210       1.5  thorpej 	 * device 4 of bus 0.  This variant apparently also has the
    211       1.5  thorpej 	 * Pyxis DMA bug.
    212       1.5  thorpej 	 *
    213       1.5  thorpej 	 * On the Miata 1.5 and Miata 2, the Cypress PCI-ISA bridge lives
    214       1.5  thorpej 	 * on device 7 of bus 0.  This device has PCI IDE wired to
    215       1.5  thorpej 	 * compatibility mode on functions 1 and 2.
    216       1.5  thorpej 	 *
    217       1.5  thorpej 	 * There will be no interrupt mapping for these devices, so just
    218       1.5  thorpej 	 * bail out now.
    219       1.1  thorpej 	 */
    220       1.5  thorpej 	if (bus == 0) {
    221       1.5  thorpej 		if ((hwrpb->rpb_variation & SV_ST_MASK) < SV_ST_MIATA_1_5) {
    222       1.5  thorpej 			/* Miata 1 */
    223       1.5  thorpej 			if (device == 7)
    224       1.5  thorpej 				panic("dec_550_intr_map: SIO device");
    225       1.5  thorpej 			else if (device == 4)
    226       1.5  thorpej 				return (1);
    227       1.5  thorpej 		} else {
    228       1.5  thorpej 			/* Miata 1.5 or Miata 2 */
    229       1.5  thorpej 			if (device == 7) {
    230       1.5  thorpej 				if (function == 0)
    231       1.5  thorpej 					panic("dec_550_intr_map: SIO device");
    232      1.14  thorpej 				if (function == 1 || function == 2)
    233      1.14  thorpej 					return (1);
    234       1.5  thorpej 			}
    235       1.5  thorpej 		}
    236       1.1  thorpej 	}
    237       1.1  thorpej 
    238       1.1  thorpej 	/*
    239       1.1  thorpej 	 * The console places the interrupt mapping in the "line" value.
    240       1.1  thorpej 	 * A value of (char)-1 indicates there is no mapping.
    241       1.1  thorpej 	 */
    242       1.1  thorpej 	if (line == 0xff) {
    243       1.1  thorpej 		printf("dec_550_intr_map: no mapping for %d/%d/%d\n",
    244       1.1  thorpej 		    bus, device, function);
    245       1.1  thorpej 		return (1);
    246       1.1  thorpej 	}
    247       1.1  thorpej 
    248      1.14  thorpej #if NSIO == 0
    249      1.14  thorpej 	if (DEC_550_LINE_IS_ISA(line)) {
    250      1.14  thorpej 		printf("dec_550_intr_map: ISA IRQ %d for %d/%d/%d\n",
    251      1.14  thorpej 		    DEC_550_LINE_ISA_IRQ(line), bus, device, function);
    252      1.14  thorpej 		return (1);
    253      1.14  thorpej 	}
    254      1.14  thorpej #endif
    255       1.1  thorpej 
    256      1.14  thorpej 	if (DEC_550_LINE_IS_ISA(line) == 0 && line >= DEC_550_MAX_IRQ)
    257       1.1  thorpej 		panic("dec_550_intr_map: dec 550 irq too large (%d)\n",
    258       1.1  thorpej 		    line);
    259       1.1  thorpej 
    260       1.1  thorpej 	*ihp = line;
    261       1.1  thorpej 	return (0);
    262       1.1  thorpej }
    263       1.1  thorpej 
    264       1.1  thorpej const char *
    265       1.1  thorpej dec_550_intr_string(ccv, ih)
    266       1.1  thorpej 	void *ccv;
    267       1.1  thorpej 	pci_intr_handle_t ih;
    268       1.1  thorpej {
    269       1.1  thorpej #if 0
    270       1.1  thorpej 	struct cia_config *ccp = ccv;
    271       1.1  thorpej #endif
    272       1.1  thorpej 	static char irqstr[16];		/* 12 + 2 + NULL + sanity */
    273       1.1  thorpej 
    274      1.14  thorpej #if NSIO
    275      1.14  thorpej 	if (DEC_550_LINE_IS_ISA(ih))
    276      1.14  thorpej 		return (sio_intr_string(NULL /*XXX*/,
    277      1.14  thorpej 		    DEC_550_LINE_ISA_IRQ(ih)));
    278      1.14  thorpej #endif
    279      1.14  thorpej 
    280       1.1  thorpej 	if (ih >= DEC_550_MAX_IRQ)
    281      1.13  thorpej 		panic("dec_550_intr_string: bogus 550 IRQ 0x%lx\n", ih);
    282      1.13  thorpej 	sprintf(irqstr, "dec 550 irq %ld", ih);
    283       1.1  thorpej 	return (irqstr);
    284       1.1  thorpej }
    285       1.1  thorpej 
    286  1.14.2.1  minoura const struct evcnt *
    287  1.14.2.1  minoura dec_550_intr_evcnt(ccv, ih)
    288  1.14.2.1  minoura 	void *ccv;
    289  1.14.2.1  minoura 	pci_intr_handle_t ih;
    290  1.14.2.1  minoura {
    291  1.14.2.1  minoura #if 0
    292  1.14.2.1  minoura 	struct cia_config *ccp = ccv;
    293  1.14.2.1  minoura #endif
    294  1.14.2.1  minoura 
    295  1.14.2.1  minoura #if NSIO
    296  1.14.2.1  minoura 	if (DEC_550_LINE_IS_ISA(ih))
    297  1.14.2.1  minoura 		return (sio_intr_evcnt(NULL /*XXX*/,
    298  1.14.2.1  minoura 		    DEC_550_LINE_ISA_IRQ(ih)));
    299  1.14.2.1  minoura #endif
    300  1.14.2.1  minoura 
    301  1.14.2.1  minoura 	if (ih >= DEC_550_MAX_IRQ)
    302  1.14.2.1  minoura 		panic("dec_550_intr_evcnt: bogus 550 IRQ 0x%lx\n", ih);
    303  1.14.2.1  minoura 
    304  1.14.2.1  minoura 	return (alpha_shared_intr_evcnt(dec_550_pci_intr, ih));
    305  1.14.2.1  minoura }
    306  1.14.2.1  minoura 
    307       1.1  thorpej void *
    308       1.1  thorpej dec_550_intr_establish(ccv, ih, level, func, arg)
    309       1.1  thorpej 	void *ccv, *arg;
    310       1.1  thorpej 	pci_intr_handle_t ih;
    311       1.1  thorpej 	int level;
    312       1.1  thorpej 	int (*func) __P((void *));
    313       1.1  thorpej {
    314       1.1  thorpej #if 0
    315       1.1  thorpej 	struct cia_config *ccp = ccv;
    316       1.1  thorpej #endif
    317       1.1  thorpej 	void *cookie;
    318       1.1  thorpej 
    319      1.14  thorpej #if NSIO
    320      1.14  thorpej 	if (DEC_550_LINE_IS_ISA(ih))
    321      1.14  thorpej 		return (sio_intr_establish(NULL /*XXX*/,
    322      1.14  thorpej 		    DEC_550_LINE_ISA_IRQ(ih), IST_LEVEL, level, func, arg));
    323      1.14  thorpej #endif
    324      1.14  thorpej 
    325       1.1  thorpej 	if (ih >= DEC_550_MAX_IRQ)
    326      1.13  thorpej 		panic("dec_550_intr_establish: bogus dec 550 IRQ 0x%lx\n", ih);
    327       1.1  thorpej 
    328       1.1  thorpej 	cookie = alpha_shared_intr_establish(dec_550_pci_intr, ih, IST_LEVEL,
    329       1.1  thorpej 	    level, func, arg, "dec 550 irq");
    330       1.1  thorpej 
    331       1.1  thorpej 	if (cookie != NULL && alpha_shared_intr_isactive(dec_550_pci_intr, ih))
    332       1.1  thorpej 		dec_550_intr_enable(ih);
    333       1.1  thorpej 	return (cookie);
    334       1.1  thorpej }
    335       1.1  thorpej 
    336       1.1  thorpej void
    337       1.1  thorpej dec_550_intr_disestablish(ccv, cookie)
    338       1.1  thorpej         void *ccv, *cookie;
    339       1.1  thorpej {
    340       1.1  thorpej 	struct cia_config *ccp = ccv;
    341      1.12  thorpej 	struct alpha_shared_intrhand *ih = cookie;
    342      1.12  thorpej 	unsigned int irq = ih->ih_num;
    343      1.12  thorpej 	int s;
    344      1.14  thorpej 
    345      1.14  thorpej #if NSIO
    346      1.14  thorpej 	/*
    347      1.14  thorpej 	 * We have to determine if this is an ISA IRQ or not!  We do this
    348      1.14  thorpej 	 * by checking to see if the intrhand points back to an intrhead
    349      1.14  thorpej 	 * that points to our cia_config.  If not, it's an ISA IRQ.  Pretty
    350      1.14  thorpej 	 * disgusting, eh?
    351      1.14  thorpej 	 */
    352      1.14  thorpej 	if (ih->ih_intrhead->intr_private != ccp) {
    353      1.14  thorpej 		sio_intr_disestablish(NULL /*XXX*/, cookie);
    354      1.14  thorpej 		return;
    355      1.14  thorpej 	}
    356      1.14  thorpej #endif
    357      1.12  thorpej 
    358      1.12  thorpej 	s = splhigh();
    359      1.12  thorpej 
    360      1.12  thorpej 	alpha_shared_intr_disestablish(dec_550_pci_intr, cookie,
    361      1.12  thorpej 	    "dec 550 irq");
    362      1.12  thorpej 	if (alpha_shared_intr_isactive(dec_550_pci_intr, irq) == 0) {
    363      1.12  thorpej 		dec_550_intr_disable(irq);
    364      1.12  thorpej 		alpha_shared_intr_set_dfltsharetype(dec_550_pci_intr, irq,
    365      1.12  thorpej 		    IST_NONE);
    366      1.12  thorpej 	}
    367      1.12  thorpej 
    368      1.12  thorpej 	splx(s);
    369       1.1  thorpej }
    370       1.1  thorpej 
    371       1.1  thorpej void *
    372       1.1  thorpej dec_550_pciide_compat_intr_establish(v, dev, pa, chan, func, arg)
    373       1.1  thorpej 	void *v;
    374       1.1  thorpej 	struct device *dev;
    375       1.1  thorpej 	struct pci_attach_args *pa;
    376       1.1  thorpej 	int chan;
    377       1.1  thorpej 	int (*func) __P((void *));
    378       1.1  thorpej 	void *arg;
    379       1.1  thorpej {
    380       1.1  thorpej 	pci_chipset_tag_t pc = pa->pa_pc;
    381       1.1  thorpej 	void *cookie = NULL;
    382       1.1  thorpej 	int bus, irq;
    383       1.1  thorpej 
    384       1.1  thorpej 	alpha_pci_decompose_tag(pc, pa->pa_tag, &bus, NULL, NULL);
    385       1.1  thorpej 
    386       1.1  thorpej 	/*
    387       1.1  thorpej 	 * If this isn't PCI bus #0, all bets are off.
    388       1.1  thorpej 	 */
    389       1.1  thorpej 	if (bus != 0)
    390       1.1  thorpej 		return (NULL);
    391       1.1  thorpej 
    392       1.1  thorpej 	irq = PCIIDE_COMPAT_IRQ(chan);
    393       1.1  thorpej #if NSIO
    394       1.1  thorpej 	cookie = sio_intr_establish(NULL /*XXX*/, irq, IST_EDGE, IPL_BIO,
    395       1.1  thorpej 	    func, arg);
    396  1.14.2.1  minoura 	if (cookie == NULL)
    397  1.14.2.1  minoura 		return (NULL);
    398  1.14.2.1  minoura 	printf("%s: %s channel interrupting at %s\n", dev->dv_xname,
    399  1.14.2.1  minoura 	    PCIIDE_CHANNEL_NAME(chan), sio_intr_string(NULL /*XXX*/, irq));
    400       1.1  thorpej #endif
    401       1.1  thorpej 	return (cookie);
    402       1.1  thorpej }
    403       1.1  thorpej 
    404       1.1  thorpej void
    405       1.1  thorpej dec_550_iointr(framep, vec)
    406       1.1  thorpej 	void *framep;
    407       1.1  thorpej 	unsigned long vec;
    408       1.1  thorpej {
    409       1.1  thorpej 	int irq;
    410       1.1  thorpej 
    411       1.1  thorpej 	if (vec >= 0x900) {
    412      1.14  thorpej 		irq = ((vec - 0x900) >> 4);
    413       1.1  thorpej 
    414       1.1  thorpej 		if (irq >= DEC_550_MAX_IRQ)
    415      1.13  thorpej 			panic("550_iointr: vec 0x%lx out of range\n", vec);
    416       1.1  thorpej 
    417       1.1  thorpej 		if (!alpha_shared_intr_dispatch(dec_550_pci_intr, irq)) {
    418       1.1  thorpej 			alpha_shared_intr_stray(dec_550_pci_intr, irq,
    419       1.1  thorpej 			    "dec 550 irq");
    420      1.11  thorpej 			if (ALPHA_SHARED_INTR_DISABLE(dec_550_pci_intr, irq))
    421       1.1  thorpej 				dec_550_intr_disable(irq);
    422       1.1  thorpej 		}
    423       1.1  thorpej 		return;
    424       1.1  thorpej 	}
    425       1.1  thorpej #if NSIO
    426       1.1  thorpej 	if (vec >= 0x800) {
    427       1.1  thorpej 		sio_iointr(framep, vec);
    428       1.1  thorpej 		return;
    429       1.1  thorpej 	}
    430       1.1  thorpej #endif
    431      1.13  thorpej 	panic("dec_550_iointr: weird vec 0x%lx\n", vec);
    432       1.1  thorpej }
    433       1.1  thorpej 
    434       1.1  thorpej void
    435       1.1  thorpej dec_550_intr_enable(irq)
    436       1.1  thorpej 	int irq;
    437       1.1  thorpej {
    438       1.1  thorpej 
    439      1.14  thorpej 	cia_pyxis_intr_enable(irq + DEC_550_PCI_IRQ_BEGIN, 1);
    440       1.1  thorpej }
    441       1.1  thorpej 
    442       1.1  thorpej void
    443       1.1  thorpej dec_550_intr_disable(irq)
    444       1.1  thorpej 	int irq;
    445       1.1  thorpej {
    446       1.1  thorpej 
    447      1.14  thorpej 	cia_pyxis_intr_enable(irq + DEC_550_PCI_IRQ_BEGIN, 0);
    448       1.1  thorpej }
    449