Home | History | Annotate | Line # | Download | only in pci
pci_kn20aa.c revision 1.36.8.2
      1  1.36.8.2   bouyer /* $NetBSD: pci_kn20aa.c,v 1.36.8.2 2001/01/05 17:33:48 bouyer Exp $ */
      2       1.1      cgd 
      3       1.1      cgd /*
      4       1.5      cgd  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
      5       1.1      cgd  * All rights reserved.
      6       1.1      cgd  *
      7       1.1      cgd  * Author: Chris G. Demetriou
      8       1.1      cgd  *
      9       1.1      cgd  * Permission to use, copy, modify and distribute this software and
     10       1.1      cgd  * its documentation is hereby granted, provided that both the copyright
     11       1.1      cgd  * notice and this permission notice appear in all copies of the
     12       1.1      cgd  * software, derivative works or modified versions, and any portions
     13       1.1      cgd  * thereof, and that both notices appear in supporting documentation.
     14       1.1      cgd  *
     15       1.1      cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16       1.1      cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17       1.1      cgd  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18       1.1      cgd  *
     19       1.1      cgd  * Carnegie Mellon requests users of this software to return to
     20       1.1      cgd  *
     21       1.1      cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22       1.1      cgd  *  School of Computer Science
     23       1.1      cgd  *  Carnegie Mellon University
     24       1.1      cgd  *  Pittsburgh PA 15213-3890
     25       1.1      cgd  *
     26       1.1      cgd  * any improvements or extensions that they make and grant Carnegie the
     27       1.1      cgd  * rights to redistribute these changes.
     28       1.1      cgd  */
     29      1.22      cgd 
     30      1.23      cgd #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     31      1.23      cgd 
     32  1.36.8.2   bouyer __KERNEL_RCSID(0, "$NetBSD: pci_kn20aa.c,v 1.36.8.2 2001/01/05 17:33:48 bouyer Exp $");
     33       1.1      cgd 
     34       1.1      cgd #include <sys/types.h>
     35       1.1      cgd #include <sys/param.h>
     36       1.1      cgd #include <sys/time.h>
     37       1.1      cgd #include <sys/systm.h>
     38       1.1      cgd #include <sys/errno.h>
     39       1.1      cgd #include <sys/malloc.h>
     40       1.1      cgd #include <sys/device.h>
     41       1.1      cgd #include <sys/syslog.h>
     42       1.1      cgd 
     43  1.36.8.1   bouyer #include <uvm/uvm_extern.h>
     44       1.1      cgd 
     45       1.7      cgd #include <machine/autoconf.h>
     46       1.7      cgd 
     47       1.1      cgd #include <dev/pci/pcireg.h>
     48       1.1      cgd #include <dev/pci/pcivar.h>
     49       1.1      cgd 
     50       1.1      cgd #include <alpha/pci/ciareg.h>
     51       1.1      cgd #include <alpha/pci/ciavar.h>
     52       1.1      cgd 
     53       1.1      cgd #include <alpha/pci/pci_kn20aa.h>
     54       1.1      cgd 
     55       1.1      cgd #include "sio.h"
     56  1.36.8.1   bouyer #if NSIO > 0 || NPCEB > 0
     57       1.1      cgd #include <alpha/pci/siovar.h>
     58       1.1      cgd #endif
     59       1.1      cgd 
     60  1.36.8.2   bouyer int	dec_kn20aa_intr_map __P((struct pci_attach_args *,
     61       1.3      cgd 	    pci_intr_handle_t *));
     62       1.3      cgd const char *dec_kn20aa_intr_string __P((void *, pci_intr_handle_t));
     63  1.36.8.1   bouyer const struct evcnt *dec_kn20aa_intr_evcnt __P((void *, pci_intr_handle_t));
     64       1.3      cgd void	*dec_kn20aa_intr_establish __P((void *, pci_intr_handle_t,
     65       1.3      cgd 	    int, int (*func)(void *), void *));
     66       1.3      cgd void	dec_kn20aa_intr_disestablish __P((void *, void *));
     67       1.1      cgd 
     68       1.1      cgd #define	KN20AA_PCEB_IRQ	31
     69       1.1      cgd #define	KN20AA_MAX_IRQ	32
     70       1.1      cgd #define	PCI_STRAY_MAX	5
     71       1.1      cgd 
     72      1.21      cgd struct alpha_shared_intr *kn20aa_pci_intr;
     73       1.1      cgd 
     74       1.7      cgd void	kn20aa_iointr __P((void *framep, unsigned long vec));
     75       1.1      cgd void	kn20aa_enable_intr __P((int irq));
     76      1.13      cgd void	kn20aa_disable_intr __P((int irq));
     77       1.1      cgd 
     78       1.1      cgd void
     79       1.3      cgd pci_kn20aa_pickintr(ccp)
     80       1.3      cgd 	struct cia_config *ccp;
     81       1.1      cgd {
     82       1.1      cgd 	int i;
     83  1.36.8.1   bouyer #if NSIO > 0 || NPCEB > 0
     84      1.26  thorpej 	bus_space_tag_t iot = &ccp->cc_iot;
     85      1.35   mjacob #endif
     86       1.3      cgd 	pci_chipset_tag_t pc = &ccp->cc_pc;
     87  1.36.8.1   bouyer 	char *cp;
     88       1.1      cgd 
     89       1.3      cgd         pc->pc_intr_v = ccp;
     90       1.3      cgd         pc->pc_intr_map = dec_kn20aa_intr_map;
     91       1.3      cgd         pc->pc_intr_string = dec_kn20aa_intr_string;
     92  1.36.8.1   bouyer 	pc->pc_intr_evcnt = dec_kn20aa_intr_evcnt;
     93       1.3      cgd         pc->pc_intr_establish = dec_kn20aa_intr_establish;
     94       1.3      cgd         pc->pc_intr_disestablish = dec_kn20aa_intr_disestablish;
     95      1.29  thorpej 
     96      1.30   mjacob 	/* Not supported on KN20AA. */
     97      1.29  thorpej 	pc->pc_pciide_compat_intr_establish = NULL;
     98       1.1      cgd 
     99  1.36.8.1   bouyer 	kn20aa_pci_intr = alpha_shared_intr_alloc(KN20AA_MAX_IRQ, 8);
    100  1.36.8.1   bouyer 	for (i = 0; i < KN20AA_MAX_IRQ; i++) {
    101      1.21      cgd 		alpha_shared_intr_set_maxstrays(kn20aa_pci_intr, i,
    102      1.21      cgd 		    PCI_STRAY_MAX);
    103      1.21      cgd 
    104  1.36.8.1   bouyer 		cp = alpha_shared_intr_string(kn20aa_pci_intr, i);
    105  1.36.8.1   bouyer 		sprintf(cp, "irq %d", i);
    106  1.36.8.1   bouyer 		evcnt_attach_dynamic(alpha_shared_intr_evcnt(
    107  1.36.8.1   bouyer 		    kn20aa_pci_intr, i), EVCNT_TYPE_INTR, NULL,
    108  1.36.8.1   bouyer 		    "kn20aa", cp);
    109  1.36.8.1   bouyer 	}
    110  1.36.8.1   bouyer 
    111  1.36.8.1   bouyer #if NSIO > 0 || NPCEB > 0
    112      1.27  thorpej 	sio_intr_setup(pc, iot);
    113      1.21      cgd 	kn20aa_enable_intr(KN20AA_PCEB_IRQ);
    114       1.1      cgd #endif
    115       1.1      cgd 
    116       1.1      cgd 	set_iointr(kn20aa_iointr);
    117       1.1      cgd }
    118       1.1      cgd 
    119       1.3      cgd int
    120  1.36.8.2   bouyer dec_kn20aa_intr_map(pa, ihp)
    121  1.36.8.2   bouyer 	struct pci_attach_args *pa;
    122       1.3      cgd         pci_intr_handle_t *ihp;
    123       1.1      cgd {
    124  1.36.8.2   bouyer 	pcitag_t bustag = pa->pa_intrtag;
    125  1.36.8.2   bouyer 	int buspin = pa->pa_intrpin;
    126  1.36.8.2   bouyer 	pci_chipset_tag_t pc = pa->pa_pc;
    127       1.1      cgd 	int device;
    128       1.9      cgd 	int kn20aa_irq;
    129       1.1      cgd 
    130      1.31  thorpej 	if (buspin == 0) {
    131      1.31  thorpej 		/* No IRQ used. */
    132      1.31  thorpej 		return 1;
    133      1.31  thorpej 	}
    134      1.31  thorpej 	if (buspin > 4) {
    135      1.31  thorpej 		printf("dec_kn20aa_intr_map: bad interrupt pin %d\n", buspin);
    136      1.31  thorpej 		return 1;
    137      1.31  thorpej 	}
    138       1.1      cgd 
    139       1.1      cgd 	/*
    140       1.1      cgd 	 * Slot->interrupt translation.  Appears to work, though it
    141       1.1      cgd 	 * may not hold up forever.
    142       1.1      cgd 	 *
    143       1.1      cgd 	 * The DEC engineers who did this hardware obviously engaged
    144       1.1      cgd 	 * in random drug testing.
    145       1.1      cgd 	 */
    146      1.24      cgd 	alpha_pci_decompose_tag(pc, bustag, NULL, &device, NULL);
    147       1.3      cgd 	switch (device) {
    148       1.1      cgd 	case 11:
    149       1.1      cgd 	case 12:
    150       1.9      cgd 		kn20aa_irq = ((device - 11) + 0) * 4;
    151       1.1      cgd 		break;
    152       1.1      cgd 
    153       1.1      cgd 	case 7:
    154       1.9      cgd 		kn20aa_irq = 8;
    155       1.1      cgd 		break;
    156       1.1      cgd 
    157      1.10      cgd 	case 9:
    158      1.10      cgd 		kn20aa_irq = 12;
    159      1.14      cgd 		break;
    160      1.14      cgd 
    161      1.15      cgd 	case 6:					/* 21040 on AlphaStation 500 */
    162      1.14      cgd 		kn20aa_irq = 13;
    163      1.10      cgd 		break;
    164      1.10      cgd 
    165       1.1      cgd 	case 8:
    166       1.9      cgd 		kn20aa_irq = 16;
    167       1.1      cgd 		break;
    168       1.1      cgd 
    169       1.1      cgd 	default:
    170      1.20      cgd                 printf("dec_kn20aa_intr_map: weird device number %d\n",
    171       1.1      cgd 		    device);
    172      1.20      cgd                 return 1;
    173       1.1      cgd 	}
    174       1.1      cgd 
    175       1.9      cgd 	kn20aa_irq += buspin - 1;
    176       1.1      cgd 	if (kn20aa_irq > KN20AA_MAX_IRQ)
    177      1.28  thorpej 		panic("dec_kn20aa_intr_map: kn20aa_irq too large (%d)\n",
    178       1.1      cgd 		    kn20aa_irq);
    179       1.1      cgd 
    180       1.3      cgd 	*ihp = kn20aa_irq;
    181       1.9      cgd 	return (0);
    182       1.3      cgd }
    183       1.3      cgd 
    184       1.3      cgd const char *
    185       1.3      cgd dec_kn20aa_intr_string(ccv, ih)
    186       1.3      cgd 	void *ccv;
    187       1.3      cgd 	pci_intr_handle_t ih;
    188       1.3      cgd {
    189      1.20      cgd #if 0
    190       1.3      cgd 	struct cia_config *ccp = ccv;
    191      1.20      cgd #endif
    192       1.3      cgd         static char irqstr[15];          /* 11 + 2 + NULL + sanity */
    193       1.3      cgd 
    194       1.3      cgd         if (ih > KN20AA_MAX_IRQ)
    195      1.36  thorpej                 panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx\n",
    196       1.3      cgd 		    ih);
    197       1.1      cgd 
    198      1.20      cgd         sprintf(irqstr, "kn20aa irq %ld", ih);
    199       1.3      cgd         return (irqstr);
    200       1.1      cgd }
    201       1.1      cgd 
    202  1.36.8.1   bouyer const struct evcnt *
    203  1.36.8.1   bouyer dec_kn20aa_intr_evcnt(ccv, ih)
    204  1.36.8.1   bouyer 	void *ccv;
    205  1.36.8.1   bouyer 	pci_intr_handle_t ih;
    206  1.36.8.1   bouyer {
    207  1.36.8.1   bouyer #if 0
    208  1.36.8.1   bouyer 	struct cia_config *ccp = ccv;
    209  1.36.8.1   bouyer #endif
    210  1.36.8.1   bouyer 
    211  1.36.8.1   bouyer 	if (ih > KN20AA_MAX_IRQ)
    212  1.36.8.1   bouyer 		panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx\n", ih);
    213  1.36.8.1   bouyer 	return (alpha_shared_intr_evcnt(kn20aa_pci_intr, ih));
    214  1.36.8.1   bouyer }
    215  1.36.8.1   bouyer 
    216       1.3      cgd void *
    217       1.3      cgd dec_kn20aa_intr_establish(ccv, ih, level, func, arg)
    218       1.3      cgd         void *ccv, *arg;
    219       1.3      cgd         pci_intr_handle_t ih;
    220       1.3      cgd         int level;
    221       1.3      cgd         int (*func) __P((void *));
    222       1.3      cgd {
    223      1.20      cgd #if 0
    224       1.3      cgd         struct cia_config *ccp = ccv;
    225      1.20      cgd #endif
    226       1.1      cgd 	void *cookie;
    227       1.3      cgd 
    228       1.3      cgd         if (ih > KN20AA_MAX_IRQ)
    229      1.36  thorpej                 panic("dec_kn20aa_intr_establish: bogus kn20aa IRQ 0x%lx\n",
    230       1.3      cgd 		    ih);
    231       1.3      cgd 
    232      1.21      cgd 	cookie = alpha_shared_intr_establish(kn20aa_pci_intr, ih, IST_LEVEL,
    233      1.21      cgd 	    level, func, arg, "kn20aa irq");
    234      1.21      cgd 
    235      1.21      cgd 	if (cookie != NULL &&
    236      1.21      cgd 	    alpha_shared_intr_isactive(kn20aa_pci_intr, ih))
    237      1.21      cgd 		kn20aa_enable_intr(ih);
    238       1.3      cgd 	return (cookie);
    239       1.3      cgd }
    240       1.3      cgd 
    241       1.3      cgd void
    242       1.3      cgd dec_kn20aa_intr_disestablish(ccv, cookie)
    243       1.3      cgd         void *ccv, *cookie;
    244       1.1      cgd {
    245      1.20      cgd #if 0
    246       1.3      cgd 	struct cia_config *ccp = ccv;
    247      1.20      cgd #endif
    248      1.34  thorpej 	struct alpha_shared_intrhand *ih = cookie;
    249      1.34  thorpej 	unsigned int irq = ih->ih_num;
    250      1.34  thorpej 	int s;
    251      1.34  thorpej 
    252      1.34  thorpej 	s = splhigh();
    253      1.34  thorpej 
    254      1.34  thorpej 	alpha_shared_intr_disestablish(kn20aa_pci_intr, cookie,
    255      1.34  thorpej 	    "kn20aa irq");
    256      1.34  thorpej 	if (alpha_shared_intr_isactive(kn20aa_pci_intr, irq) == 0) {
    257      1.34  thorpej 		kn20aa_disable_intr(irq);
    258      1.34  thorpej 		alpha_shared_intr_set_dfltsharetype(kn20aa_pci_intr, irq,
    259      1.34  thorpej 		    IST_NONE);
    260      1.34  thorpej 	}
    261      1.34  thorpej 
    262      1.34  thorpej 	splx(s);
    263       1.1      cgd }
    264       1.1      cgd 
    265       1.1      cgd void
    266       1.1      cgd kn20aa_iointr(framep, vec)
    267       1.1      cgd 	void *framep;
    268       1.7      cgd 	unsigned long vec;
    269       1.1      cgd {
    270      1.21      cgd 	int irq;
    271       1.1      cgd 
    272       1.1      cgd 	if (vec >= 0x900) {
    273       1.1      cgd 		if (vec >= 0x900 + (KN20AA_MAX_IRQ << 4))
    274      1.36  thorpej 			panic("kn20aa_iointr: vec 0x%lx out of range\n", vec);
    275       1.1      cgd 		irq = (vec - 0x900) >> 4;
    276       1.1      cgd 
    277      1.21      cgd 		if (!alpha_shared_intr_dispatch(kn20aa_pci_intr, irq)) {
    278      1.21      cgd 			alpha_shared_intr_stray(kn20aa_pci_intr, irq,
    279      1.21      cgd 			    "kn20aa irq");
    280      1.33  thorpej 			if (ALPHA_SHARED_INTR_DISABLE(kn20aa_pci_intr, irq))
    281      1.21      cgd 				kn20aa_disable_intr(irq);
    282       1.1      cgd 		}
    283       1.1      cgd 		return;
    284       1.1      cgd 	}
    285  1.36.8.1   bouyer #if NSIO > 0 || NPCEB > 0
    286       1.1      cgd 	if (vec >= 0x800) {
    287       1.1      cgd 		sio_iointr(framep, vec);
    288       1.1      cgd 		return;
    289       1.1      cgd 	}
    290      1.21      cgd #endif
    291      1.36  thorpej 	panic("kn20aa_iointr: weird vec 0x%lx\n", vec);
    292       1.1      cgd }
    293       1.1      cgd 
    294       1.1      cgd void
    295       1.1      cgd kn20aa_enable_intr(irq)
    296       1.1      cgd 	int irq;
    297       1.1      cgd {
    298       1.1      cgd 
    299       1.1      cgd 	/*
    300       1.8      cgd 	 * From disassembling small bits of the OSF/1 kernel:
    301       1.1      cgd 	 * the following appears to enable a given interrupt request.
    302       1.1      cgd 	 * "blech."  I'd give valuable body parts for better docs or
    303       1.1      cgd 	 * for a good decompiler.
    304       1.1      cgd 	 */
    305       1.6      cgd 	alpha_mb();
    306       1.1      cgd 	REGVAL(0x8780000000L + 0x40L) |= (1 << irq);	/* XXX */
    307       1.8      cgd 	alpha_mb();
    308       1.8      cgd }
    309       1.8      cgd 
    310       1.8      cgd void
    311       1.8      cgd kn20aa_disable_intr(irq)
    312       1.8      cgd 	int irq;
    313       1.8      cgd {
    314       1.8      cgd 
    315       1.8      cgd 	alpha_mb();
    316       1.8      cgd 	REGVAL(0x8780000000L + 0x40L) &= ~(1 << irq);	/* XXX */
    317       1.6      cgd 	alpha_mb();
    318       1.1      cgd }
    319