Home | History | Annotate | Line # | Download | only in pci
cia.c revision 1.5
      1 /*	$NetBSD: cia.c,v 1.5 1996/04/13 00:24:30 cgd Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
      5  * All rights reserved.
      6  *
      7  * Author: Chris G. Demetriou
      8  *
      9  * Permission to use, copy, modify and distribute this software and
     10  * its documentation is hereby granted, provided that both the copyright
     11  * notice and this permission notice appear in all copies of the
     12  * software, derivative works or modified versions, and any portions
     13  * thereof, and that both notices appear in supporting documentation.
     14  *
     15  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18  *
     19  * Carnegie Mellon requests users of this software to return to
     20  *
     21  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22  *  School of Computer Science
     23  *  Carnegie Mellon University
     24  *  Pittsburgh PA 15213-3890
     25  *
     26  * any improvements or extensions that they make and grant Carnegie the
     27  * rights to redistribute these changes.
     28  */
     29 
     30 #include <sys/param.h>
     31 #include <sys/systm.h>
     32 #include <sys/kernel.h>
     33 #include <sys/malloc.h>
     34 #include <sys/device.h>
     35 #include <vm/vm.h>
     36 
     37 #include <machine/autoconf.h>
     38 #include <machine/rpb.h>
     39 
     40 #include <dev/isa/isareg.h>
     41 #include <dev/isa/isavar.h>
     42 
     43 #include <dev/pci/pcireg.h>
     44 #include <dev/pci/pcivar.h>
     45 #include <alpha/pci/ciareg.h>
     46 #include <alpha/pci/ciavar.h>
     47 #if defined(DEC_KN20AA)
     48 #include <alpha/pci/pci_kn20aa.h>
     49 #endif
     50 
     51 int	ciamatch __P((struct device *, void *, void *));
     52 void	ciaattach __P((struct device *, struct device *, void *));
     53 
     54 struct cfattach cia_ca = {
     55 	sizeof(struct cia_softc), ciamatch, ciaattach,
     56 };
     57 
     58 struct cfdriver cia_cd = {
     59 	NULL, "cia", DV_DULL,
     60 };
     61 
     62 static int	ciaprint __P((void *, char *pnp));
     63 
     64 #define	REGVAL(r)	(*(int32_t *)phystok0seg(r))
     65 
     66 /* There can be only one. */
     67 int ciafound;
     68 struct cia_config cia_configuration;
     69 
     70 int
     71 ciamatch(parent, match, aux)
     72 	struct device *parent;
     73 	void *match, *aux;
     74 {
     75 	struct cfdata *cf = match;
     76 	struct confargs *ca = aux;
     77 
     78 	/* Make sure that we're looking for a CIA. */
     79 	if (strcmp(ca->ca_name, cia_cd.cd_name) != 0)
     80 		return (0);
     81 
     82 	if (ciafound)
     83 		return (0);
     84 
     85 	return (1);
     86 }
     87 
     88 /*
     89  * Set up the chipset's function pointers.
     90  */
     91 void
     92 cia_init(ccp)
     93 	struct cia_config *ccp;
     94 {
     95 
     96 	/*
     97 	 * Can't set up SGMAP data here; can be called before malloc().
     98 	 */
     99 
    100         cia_bus_io_init(&ccp->cc_bc, ccp);
    101         cia_bus_mem_init(&ccp->cc_bc, ccp);
    102         cia_pci_init(&ccp->cc_pc, ccp);
    103 }
    104 
    105 void
    106 ciaattach(parent, self, aux)
    107 	struct device *parent, *self;
    108 	void *aux;
    109 {
    110 	struct confargs *ca = aux;
    111 	struct cia_softc *sc = (struct cia_softc *)self;
    112 	struct cia_config *ccp;
    113 	struct pcibus_attach_args pba;
    114 
    115 	/* note that we've attached the chipset; can't have 2 CIAs. */
    116 	ciafound = 1;
    117 
    118 	/*
    119 	 * set up the chipset's info; done once at console init time
    120 	 * (maybe), but doesn't hurt to do twice.
    121 	 */
    122 	ccp = sc->sc_ccp = &cia_configuration;
    123 	cia_init(ccp);
    124 
    125 	/* XXX print chipset information */
    126 	printf("\n");
    127 
    128 	switch (hwrpb->rpb_type) {
    129 #if defined(DEC_KN20AA)
    130 	case ST_DEC_KN20AA:
    131 		pci_kn20aa_pickintr(ccp);
    132 #ifdef EVCNT_COUNTERS
    133 		evcnt_attach(self, "intr", &kn20aa_intr_evcnt);
    134 #endif
    135 		break;
    136 #endif
    137 	default:
    138 		panic("ciaattach: shouldn't be here, really...");
    139 	}
    140 
    141 	pba.pba_busname = "pci";
    142 	pba.pba_bc = &ccp->cc_bc;
    143 	pba.pba_pc = &ccp->cc_pc;
    144 	pba.pba_bus = 0;
    145 	config_found(self, &pba, ciaprint);
    146 }
    147 
    148 static int
    149 ciaprint(aux, pnp)
    150 	void *aux;
    151 	char *pnp;
    152 {
    153 	register struct pcibus_attach_args *pba = aux;
    154 
    155 	/* only PCIs can attach to CIAs; easy. */
    156 	if (pnp)
    157 		printf("%s at %s", pba->pba_busname, pnp);
    158 	printf(" bus %d", pba->pba_bus);
    159 	return (UNCONF);
    160 }
    161