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