Home | History | Annotate | Line # | Download | only in pci
pci_2100_a50.c revision 1.36.4.1
      1  1.36.4.1     rmind /* $NetBSD: pci_2100_a50.c,v 1.36.4.1 2011/03/05 20:49:12 rmind Exp $ */
      2       1.1       cgd 
      3       1.1       cgd /*
      4       1.6       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.13       cgd 
     30      1.14       cgd #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     31      1.14       cgd 
     32  1.36.4.1     rmind __KERNEL_RCSID(0, "$NetBSD: pci_2100_a50.c,v 1.36.4.1 2011/03/05 20:49:12 rmind 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/device.h>
     40      1.28       mrg 
     41       1.8       cgd #include <machine/autoconf.h>
     42       1.5       cgd #include <machine/bus.h>
     43       1.5       cgd #include <machine/intr.h>
     44       1.5       cgd 
     45       1.1       cgd #include <dev/isa/isavar.h>
     46       1.3       cgd #include <dev/pci/pcireg.h>
     47       1.1       cgd #include <dev/pci/pcivar.h>
     48       1.1       cgd 
     49       1.3       cgd #include <alpha/pci/apecsvar.h>
     50       1.1       cgd 
     51       1.3       cgd #include <alpha/pci/pci_2100_a50.h>
     52       1.3       cgd #include <alpha/pci/siovar.h>
     53       1.7       cgd #include <alpha/pci/sioreg.h>
     54       1.1       cgd 
     55       1.3       cgd #include "sio.h"
     56       1.1       cgd 
     57      1.33       dsl int	dec_2100_a50_intr_map(struct pci_attach_args *, pci_intr_handle_t *);
     58      1.33       dsl const char *dec_2100_a50_intr_string(void *, pci_intr_handle_t);
     59      1.33       dsl const struct evcnt *dec_2100_a50_intr_evcnt(void *, pci_intr_handle_t);
     60      1.33       dsl void    *dec_2100_a50_intr_establish(void *, pci_intr_handle_t,
     61      1.33       dsl 	    int, int (*func)(void *), void *);
     62      1.33       dsl void    dec_2100_a50_intr_disestablish(void *, void *);
     63       1.5       cgd 
     64       1.7       cgd #define	APECS_SIO_DEVICE	7	/* XXX */
     65       1.7       cgd 
     66       1.5       cgd void
     67      1.34       dsl pci_2100_a50_pickintr(struct apecs_config *acp)
     68       1.5       cgd {
     69      1.18   thorpej 	bus_space_tag_t iot = &acp->ac_iot;
     70       1.5       cgd 	pci_chipset_tag_t pc = &acp->ac_pc;
     71       1.5       cgd 	pcireg_t sioclass;
     72       1.5       cgd 	int sioII;
     73       1.5       cgd 
     74       1.5       cgd 	/* XXX MAGIC NUMBER */
     75       1.5       cgd 	sioclass = pci_conf_read(pc, pci_make_tag(pc, 0, 7, 0), PCI_CLASS_REG);
     76       1.5       cgd         sioII = (sioclass & 0xff) >= 3;
     77       1.5       cgd 
     78       1.5       cgd 	if (!sioII)
     79      1.10  christos 		printf("WARNING: SIO NOT SIO II... NO BETS...\n");
     80       1.5       cgd 
     81       1.5       cgd 	pc->pc_intr_v = acp;
     82       1.5       cgd 	pc->pc_intr_map = dec_2100_a50_intr_map;
     83       1.5       cgd 	pc->pc_intr_string = dec_2100_a50_intr_string;
     84      1.26       cgd 	pc->pc_intr_evcnt = dec_2100_a50_intr_evcnt;
     85       1.5       cgd 	pc->pc_intr_establish = dec_2100_a50_intr_establish;
     86       1.5       cgd 	pc->pc_intr_disestablish = dec_2100_a50_intr_disestablish;
     87      1.22   thorpej 
     88      1.23    mjacob 	/* Not supported on 2100 A50. */
     89      1.22   thorpej 	pc->pc_pciide_compat_intr_establish = NULL;
     90       1.1       cgd 
     91       1.5       cgd #if NSIO
     92      1.20   thorpej 	sio_intr_setup(pc, iot);
     93       1.5       cgd #else
     94       1.5       cgd 	panic("pci_2100_a50_pickintr: no I/O interrupt handler (no sio)");
     95       1.5       cgd #endif
     96       1.5       cgd }
     97       1.5       cgd 
     98       1.5       cgd int
     99      1.34       dsl dec_2100_a50_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
    100       1.1       cgd {
    101      1.29  sommerfe         pcitag_t bustag = pa->pa_intrtag;
    102      1.29  sommerfe 	int buspin = pa->pa_intrpin;
    103      1.29  sommerfe 	pci_chipset_tag_t pc = pa->pa_pc;
    104       1.5       cgd 	int device, pirq;
    105       1.5       cgd 	pcireg_t pirqreg;
    106       1.3       cgd 	u_int8_t pirqline;
    107      1.15       cgd 
    108      1.15       cgd #ifndef DIAGNOSTIC
    109      1.15       cgd 	pirq = 0;				/* XXX gcc -Wuninitialized */
    110      1.15       cgd #endif
    111       1.1       cgd 
    112      1.24   thorpej 	if (buspin == 0) {
    113      1.24   thorpej 		/* No IRQ used. */
    114      1.24   thorpej 		return 1;
    115      1.24   thorpej 	}
    116      1.24   thorpej 	if (buspin > 4) {
    117      1.24   thorpej 		printf("dec_2100_a50_intr_map: bad interrupt pin %d\n",
    118      1.12       cgd 		    buspin);
    119      1.24   thorpej 		return 1;
    120      1.24   thorpej 	}
    121       1.1       cgd 
    122      1.31   thorpej 	pci_decompose_tag(pc, bustag, NULL, &device, NULL);
    123       1.1       cgd 
    124       1.1       cgd 	switch (device) {
    125       1.1       cgd 	case 6:					/* NCR SCSI */
    126       1.1       cgd 		pirq = 3;
    127       1.1       cgd 		break;
    128       1.1       cgd 
    129       1.1       cgd 	case 11:				/* slot 1 */
    130       1.5       cgd 	case 14:				/* slot 3 */
    131       1.5       cgd 		switch (buspin) {
    132       1.1       cgd 		case PCI_INTERRUPT_PIN_A:
    133       1.1       cgd 		case PCI_INTERRUPT_PIN_D:
    134       1.1       cgd 			pirq = 0;
    135       1.1       cgd 			break;
    136       1.1       cgd 		case PCI_INTERRUPT_PIN_B:
    137       1.1       cgd 			pirq = 2;
    138       1.1       cgd 			break;
    139       1.1       cgd 		case PCI_INTERRUPT_PIN_C:
    140       1.1       cgd 			pirq = 1;
    141       1.1       cgd 			break;
    142      1.12       cgd #ifdef DIAGNOSTIC
    143      1.12       cgd 		default:			/* XXX gcc -Wuninitialized */
    144      1.32    provos 			panic("dec_2100_a50_intr_map bogus PCI pin %d",
    145      1.12       cgd 			    buspin);
    146      1.12       cgd #endif
    147       1.1       cgd 		};
    148       1.1       cgd 		break;
    149       1.1       cgd 
    150       1.1       cgd 	case 12:				/* slot 2 */
    151       1.5       cgd 		switch (buspin) {
    152       1.1       cgd 		case PCI_INTERRUPT_PIN_A:
    153       1.1       cgd 		case PCI_INTERRUPT_PIN_D:
    154       1.1       cgd 			pirq = 1;
    155       1.1       cgd 			break;
    156       1.1       cgd 		case PCI_INTERRUPT_PIN_B:
    157       1.1       cgd 			pirq = 0;
    158       1.1       cgd 			break;
    159       1.1       cgd 		case PCI_INTERRUPT_PIN_C:
    160       1.1       cgd 			pirq = 2;
    161       1.1       cgd 			break;
    162      1.12       cgd #ifdef DIAGNOSTIC
    163      1.12       cgd 		default:			/* XXX gcc -Wuninitialized */
    164      1.32    provos 			panic("dec_2100_a50_intr_map bogus PCI pin %d",
    165      1.12       cgd 			    buspin);
    166      1.12       cgd #endif
    167       1.1       cgd 		};
    168       1.1       cgd 		break;
    169       1.1       cgd 
    170       1.1       cgd 	case 13:				/* slot 3 */
    171       1.5       cgd 		switch (buspin) {
    172       1.1       cgd 		case PCI_INTERRUPT_PIN_A:
    173       1.1       cgd 		case PCI_INTERRUPT_PIN_D:
    174       1.1       cgd 			pirq = 2;
    175       1.1       cgd 			break;
    176       1.1       cgd 		case PCI_INTERRUPT_PIN_B:
    177       1.1       cgd 			pirq = 1;
    178       1.1       cgd 			break;
    179       1.1       cgd 		case PCI_INTERRUPT_PIN_C:
    180       1.1       cgd 			pirq = 0;
    181       1.1       cgd 			break;
    182      1.12       cgd #ifdef DIAGNOSTIC
    183      1.12       cgd 		default:			/* XXX gcc -Wuninitialized */
    184      1.32    provos 			panic("dec_2100_a50_intr_map bogus PCI pin %d",
    185      1.12       cgd 			    buspin);
    186      1.12       cgd #endif
    187       1.1       cgd 		};
    188       1.1       cgd 		break;
    189      1.12       cgd 
    190      1.12       cgd 	default:
    191      1.12       cgd                 printf("dec_2100_a50_intr_map: weird device number %d\n",
    192      1.12       cgd 		    device);
    193      1.12       cgd                 return 1;
    194       1.1       cgd 	}
    195       1.1       cgd 
    196       1.7       cgd 	pirqreg = pci_conf_read(pc, pci_make_tag(pc, 0, APECS_SIO_DEVICE, 0),
    197       1.7       cgd 	    SIO_PCIREG_PIRQ_RTCTRL);
    198       1.1       cgd #if 0
    199      1.21   thorpej 	printf("pci_2100_a50_intr_map: device %d pin %c: pirq %d, reg = %x\n",
    200       1.5       cgd 		device, '@' + buspin, pirq, pirqreg);
    201       1.1       cgd #endif
    202       1.3       cgd 	pirqline = (pirqreg >> (pirq * 8)) & 0xff;
    203       1.3       cgd 	if ((pirqline & 0x80) != 0)
    204       1.5       cgd 		return 1;
    205       1.3       cgd 	pirqline &= 0xf;
    206       1.1       cgd 
    207       1.1       cgd #if 0
    208      1.21   thorpej 	printf("pci_2100_a50_intr_map: device %d pin %c: mapped to line %d\n",
    209       1.5       cgd 	    device, '@' + buspin, pirqline);
    210       1.1       cgd #endif
    211       1.1       cgd 
    212       1.5       cgd 	*ihp = pirqline;
    213       1.5       cgd 	return (0);
    214       1.3       cgd }
    215       1.3       cgd 
    216       1.5       cgd const char *
    217      1.34       dsl dec_2100_a50_intr_string(void *acv, pci_intr_handle_t ih)
    218       1.3       cgd {
    219      1.12       cgd #if 0
    220       1.5       cgd 	struct apecs_config *acp = acv;
    221      1.12       cgd #endif
    222       1.3       cgd 
    223       1.5       cgd 	return sio_intr_string(NULL /*XXX*/, ih);
    224      1.26       cgd }
    225      1.26       cgd 
    226      1.26       cgd const struct evcnt *
    227      1.34       dsl dec_2100_a50_intr_evcnt(void *acv, pci_intr_handle_t ih)
    228      1.26       cgd {
    229      1.26       cgd #if 0
    230      1.26       cgd 	struct apecs_config *acp = acv;
    231      1.26       cgd #endif
    232      1.26       cgd 
    233      1.26       cgd 	return sio_intr_evcnt(NULL /*XXX*/, ih);
    234       1.1       cgd }
    235       1.1       cgd 
    236       1.5       cgd void *
    237      1.36       dsl dec_2100_a50_intr_establish(void *acv, pci_intr_handle_t ih, int level, int (*func)(void *), void *arg)
    238       1.1       cgd {
    239      1.12       cgd #if 0
    240       1.5       cgd 	struct apecs_config *acp = acv;
    241      1.12       cgd #endif
    242       1.1       cgd 
    243       1.5       cgd 	return sio_intr_establish(NULL /*XXX*/, ih, IST_LEVEL, level, func,
    244       1.5       cgd 	    arg);
    245       1.5       cgd }
    246       1.3       cgd 
    247       1.5       cgd void
    248      1.35       dsl dec_2100_a50_intr_disestablish(void *acv, void *cookie)
    249       1.5       cgd {
    250      1.12       cgd #if 0
    251       1.5       cgd 	struct apecs_config *acp = acv;
    252      1.12       cgd #endif
    253       1.1       cgd 
    254       1.5       cgd 	sio_intr_disestablish(NULL /*XXX*/, cookie);
    255       1.1       cgd }
    256