Home | History | Annotate | Line # | Download | only in pci
cia.c revision 1.24
      1  1.24   thorpej /* $NetBSD: cia.c,v 1.24 1997/09/02 13:19:16 thorpej Exp $ */
      2   1.1       cgd 
      3   1.1       cgd /*
      4   1.4       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.18       cgd 
     30  1.19       cgd #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     31  1.19       cgd 
     32  1.24   thorpej __KERNEL_RCSID(0, "$NetBSD: cia.c,v 1.24 1997/09/02 13:19:16 thorpej Exp $");
     33   1.1       cgd 
     34   1.1       cgd #include <sys/param.h>
     35   1.1       cgd #include <sys/systm.h>
     36   1.1       cgd #include <sys/kernel.h>
     37   1.1       cgd #include <sys/malloc.h>
     38   1.1       cgd #include <sys/device.h>
     39   1.1       cgd #include <vm/vm.h>
     40   1.1       cgd 
     41   1.1       cgd #include <machine/autoconf.h>
     42   1.1       cgd #include <machine/rpb.h>
     43   1.1       cgd 
     44   1.1       cgd #include <dev/isa/isareg.h>
     45   1.1       cgd #include <dev/isa/isavar.h>
     46   1.1       cgd 
     47   1.1       cgd #include <dev/pci/pcireg.h>
     48   1.1       cgd #include <dev/pci/pcivar.h>
     49   1.1       cgd #include <alpha/pci/ciareg.h>
     50   1.1       cgd #include <alpha/pci/ciavar.h>
     51  1.17       cgd #ifdef DEC_KN20AA
     52   1.1       cgd #include <alpha/pci/pci_kn20aa.h>
     53   1.1       cgd #endif
     54  1.17       cgd #ifdef DEC_EB164
     55  1.13       cgd #include <alpha/pci/pci_eb164.h>
     56  1.13       cgd #endif
     57   1.1       cgd 
     58  1.15       cgd int	ciamatch __P((struct device *, struct cfdata *, void *));
     59   1.1       cgd void	ciaattach __P((struct device *, struct device *, void *));
     60   1.1       cgd 
     61   1.5       cgd struct cfattach cia_ca = {
     62   1.5       cgd 	sizeof(struct cia_softc), ciamatch, ciaattach,
     63   1.5       cgd };
     64   1.5       cgd 
     65   1.5       cgd struct cfdriver cia_cd = {
     66   1.5       cgd 	NULL, "cia", DV_DULL,
     67   1.1       cgd };
     68   1.1       cgd 
     69   1.9       cgd static int	ciaprint __P((void *, const char *pnp));
     70   1.1       cgd 
     71   1.1       cgd /* There can be only one. */
     72   1.1       cgd int ciafound;
     73   1.1       cgd struct cia_config cia_configuration;
     74   1.1       cgd 
     75   1.1       cgd int
     76   1.1       cgd ciamatch(parent, match, aux)
     77   1.1       cgd 	struct device *parent;
     78  1.15       cgd 	struct cfdata *match;
     79  1.15       cgd 	void *aux;
     80   1.1       cgd {
     81   1.1       cgd 	struct confargs *ca = aux;
     82   1.1       cgd 
     83   1.1       cgd 	/* Make sure that we're looking for a CIA. */
     84   1.5       cgd 	if (strcmp(ca->ca_name, cia_cd.cd_name) != 0)
     85   1.1       cgd 		return (0);
     86   1.1       cgd 
     87   1.1       cgd 	if (ciafound)
     88   1.1       cgd 		return (0);
     89   1.1       cgd 
     90   1.1       cgd 	return (1);
     91   1.1       cgd }
     92   1.1       cgd 
     93   1.1       cgd /*
     94   1.1       cgd  * Set up the chipset's function pointers.
     95   1.1       cgd  */
     96   1.1       cgd void
     97  1.14       cgd cia_init(ccp, mallocsafe)
     98   1.1       cgd 	struct cia_config *ccp;
     99  1.14       cgd 	int mallocsafe;
    100   1.1       cgd {
    101   1.1       cgd 
    102   1.6       cgd 	ccp->cc_hae_mem = REGVAL(CIA_CSR_HAE_MEM);
    103   1.6       cgd 	ccp->cc_hae_io = REGVAL(CIA_CSR_HAE_IO);
    104  1.12       cgd 
    105  1.14       cgd 	if (!ccp->cc_initted) {
    106  1.14       cgd 		/* don't do these twice since they set up extents */
    107  1.22   thorpej 		cia_bus_io_init(&ccp->cc_iot, ccp);
    108  1.22   thorpej 		cia_bus_mem_init(&ccp->cc_memt, ccp);
    109  1.14       cgd 	}
    110  1.14       cgd 	ccp->cc_mallocsafe = mallocsafe;
    111  1.14       cgd 
    112  1.14       cgd 	cia_pci_init(&ccp->cc_pc, ccp);
    113  1.14       cgd 
    114  1.21   thorpej 	cia_dma_init(ccp);
    115  1.14       cgd 
    116  1.14       cgd 	ccp->cc_initted = 1;
    117   1.1       cgd }
    118   1.1       cgd 
    119   1.1       cgd void
    120   1.1       cgd ciaattach(parent, self, aux)
    121   1.1       cgd 	struct device *parent, *self;
    122   1.1       cgd 	void *aux;
    123   1.1       cgd {
    124   1.1       cgd 	struct cia_softc *sc = (struct cia_softc *)self;
    125   1.1       cgd 	struct cia_config *ccp;
    126   1.5       cgd 	struct pcibus_attach_args pba;
    127   1.1       cgd 
    128   1.1       cgd 	/* note that we've attached the chipset; can't have 2 CIAs. */
    129   1.1       cgd 	ciafound = 1;
    130   1.1       cgd 
    131   1.1       cgd 	/*
    132   1.1       cgd 	 * set up the chipset's info; done once at console init time
    133  1.21   thorpej 	 * (maybe), but we must do it here as well to take care of things
    134  1.21   thorpej 	 * that need to use memory allocation.
    135   1.1       cgd 	 */
    136   1.1       cgd 	ccp = sc->sc_ccp = &cia_configuration;
    137  1.14       cgd 	cia_init(ccp, 1);
    138   1.1       cgd 
    139   1.1       cgd 	/* XXX print chipset information */
    140  1.11  christos 	printf("\n");
    141   1.1       cgd 
    142   1.1       cgd 	switch (hwrpb->rpb_type) {
    143  1.17       cgd #ifdef DEC_KN20AA
    144   1.1       cgd 	case ST_DEC_KN20AA:
    145   1.5       cgd 		pci_kn20aa_pickintr(ccp);
    146   1.1       cgd #ifdef EVCNT_COUNTERS
    147   1.1       cgd 		evcnt_attach(self, "intr", &kn20aa_intr_evcnt);
    148   1.1       cgd #endif
    149   1.1       cgd 		break;
    150   1.1       cgd #endif
    151  1.13       cgd 
    152  1.17       cgd #ifdef DEC_EB164
    153  1.13       cgd 	case ST_EB164:
    154  1.13       cgd 		pci_eb164_pickintr(ccp);
    155  1.13       cgd #ifdef EVCNT_COUNTERS
    156  1.13       cgd 		evcnt_attach(self, "intr", &eb164_intr_evcnt);
    157  1.13       cgd #endif
    158  1.13       cgd 		break;
    159  1.13       cgd #endif
    160  1.13       cgd 
    161   1.1       cgd 	default:
    162   1.1       cgd 		panic("ciaattach: shouldn't be here, really...");
    163   1.1       cgd 	}
    164   1.1       cgd 
    165   1.5       cgd 	pba.pba_busname = "pci";
    166  1.23   thorpej 	pba.pba_iot = &ccp->cc_iot;
    167  1.23   thorpej 	pba.pba_memt = &ccp->cc_memt;
    168  1.21   thorpej 	pba.pba_dmat = &ccp->cc_dmat_direct;
    169   1.5       cgd 	pba.pba_pc = &ccp->cc_pc;
    170   1.5       cgd 	pba.pba_bus = 0;
    171  1.20       cgd 	pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
    172   1.5       cgd 	config_found(self, &pba, ciaprint);
    173   1.1       cgd }
    174   1.1       cgd 
    175   1.1       cgd static int
    176   1.1       cgd ciaprint(aux, pnp)
    177   1.1       cgd 	void *aux;
    178   1.9       cgd 	const char *pnp;
    179   1.1       cgd {
    180   1.5       cgd 	register struct pcibus_attach_args *pba = aux;
    181   1.1       cgd 
    182   1.1       cgd 	/* only PCIs can attach to CIAs; easy. */
    183   1.1       cgd 	if (pnp)
    184  1.11  christos 		printf("%s at %s", pba->pba_busname, pnp);
    185  1.11  christos 	printf(" bus %d", pba->pba_bus);
    186   1.1       cgd 	return (UNCONF);
    187   1.1       cgd }
    188