pci_kn300.c revision 1.7 1 1.7 mjacob /* $NetBSD: pci_kn300.c,v 1.7 1998/05/05 22:01:31 mjacob Exp $ */
2 1.1 mjacob
3 1.1 mjacob /*
4 1.1 mjacob * Copyright (c) 1998 by Matthew Jacob
5 1.1 mjacob * NASA AMES Research Center.
6 1.1 mjacob * All rights reserved.
7 1.1 mjacob *
8 1.1 mjacob * Redistribution and use in source and binary forms, with or without
9 1.1 mjacob * modification, are permitted provided that the following conditions
10 1.1 mjacob * are met:
11 1.1 mjacob * 1. Redistributions of source code must retain the above copyright
12 1.1 mjacob * notice immediately at the beginning of the file, without modification,
13 1.1 mjacob * this list of conditions, and the following disclaimer.
14 1.1 mjacob * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 mjacob * notice, this list of conditions and the following disclaimer in the
16 1.1 mjacob * documentation and/or other materials provided with the distribution.
17 1.1 mjacob * 3. The name of the author may not be used to endorse or promote products
18 1.1 mjacob * derived from this software without specific prior written permission.
19 1.1 mjacob *
20 1.1 mjacob * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 1.1 mjacob * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.1 mjacob * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.1 mjacob * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
24 1.1 mjacob * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 mjacob * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 mjacob * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 mjacob * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 mjacob * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 mjacob * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 mjacob * SUCH DAMAGE.
31 1.1 mjacob */
32 1.1 mjacob
33 1.1 mjacob #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
34 1.1 mjacob
35 1.7 mjacob __KERNEL_RCSID(0, "$NetBSD: pci_kn300.c,v 1.7 1998/05/05 22:01:31 mjacob Exp $");
36 1.1 mjacob
37 1.1 mjacob #include <sys/types.h>
38 1.1 mjacob #include <sys/param.h>
39 1.1 mjacob #include <sys/time.h>
40 1.1 mjacob #include <sys/systm.h>
41 1.1 mjacob #include <sys/errno.h>
42 1.1 mjacob #include <sys/malloc.h>
43 1.1 mjacob #include <sys/device.h>
44 1.1 mjacob #include <sys/syslog.h>
45 1.1 mjacob
46 1.1 mjacob #include <vm/vm.h>
47 1.1 mjacob
48 1.1 mjacob #include <machine/autoconf.h>
49 1.1 mjacob
50 1.1 mjacob #include <dev/pci/pcireg.h>
51 1.1 mjacob #include <dev/pci/pcivar.h>
52 1.1 mjacob
53 1.1 mjacob #include <alpha/mcbus/mcbusvar.h>
54 1.1 mjacob #include <alpha/mcbus/mcbusreg.h>
55 1.1 mjacob #include <alpha/pci/mcpciareg.h>
56 1.1 mjacob #include <alpha/pci/mcpciavar.h>
57 1.1 mjacob #include <alpha/pci/pci_kn300.h>
58 1.1 mjacob
59 1.1 mjacob #ifndef EVCNT_COUNTERS
60 1.1 mjacob #include <machine/intrcnt.h>
61 1.1 mjacob #endif
62 1.1 mjacob
63 1.1 mjacob #include "sio.h"
64 1.1 mjacob #if NSIO
65 1.1 mjacob #include <alpha/pci/siovar.h>
66 1.1 mjacob #endif
67 1.1 mjacob
68 1.1 mjacob int
69 1.1 mjacob dec_kn300_intr_map __P((void *, pcitag_t, int, int, pci_intr_handle_t *));
70 1.1 mjacob const char *dec_kn300_intr_string __P((void *, pci_intr_handle_t));
71 1.1 mjacob void * dec_kn300_intr_establish __P((void *, pci_intr_handle_t,
72 1.1 mjacob int, int (*func)(void *), void *));
73 1.1 mjacob void dec_kn300_intr_disestablish __P((void *, void *));
74 1.1 mjacob
75 1.1 mjacob #define KN300_PCEB_IRQ 16
76 1.6 mjacob #define NPIN 4
77 1.1 mjacob
78 1.6 mjacob #define NVEC (MAX_MC_BUS * MCPCIA_PER_MCBUS * MCPCIA_MAXSLOT * NPIN)
79 1.6 mjacob static char savunit[NVEC];
80 1.6 mjacob static char savirqs[NVEC];
81 1.6 mjacob extern struct mcpcia_softc *mcpcias;
82 1.1 mjacob
83 1.1 mjacob struct mcpcia_config *mcpcia_eisaccp = NULL;
84 1.1 mjacob
85 1.6 mjacob static struct alpha_shared_intr *kn300_pci_intr;
86 1.6 mjacob
87 1.1 mjacob #ifdef EVCNT_COUNTERS
88 1.1 mjacob struct evcnt kn300_intr_evcnt;
89 1.1 mjacob #endif
90 1.1 mjacob
91 1.6 mjacob static char * kn300_spurious __P((int));
92 1.1 mjacob void kn300_iointr __P((void *, unsigned long));
93 1.1 mjacob void kn300_enable_intr __P((struct mcpcia_config *, int));
94 1.1 mjacob void kn300_disable_intr __P((struct mcpcia_config *, int));
95 1.1 mjacob
96 1.1 mjacob void
97 1.1 mjacob pci_kn300_pickintr(ccp, first)
98 1.1 mjacob struct mcpcia_config *ccp;
99 1.1 mjacob int first;
100 1.1 mjacob {
101 1.1 mjacob pci_chipset_tag_t pc = &ccp->cc_pc;
102 1.1 mjacob
103 1.1 mjacob if (first) {
104 1.1 mjacob int g;
105 1.6 mjacob
106 1.6 mjacob kn300_pci_intr = alpha_shared_intr_alloc(NVEC);
107 1.6 mjacob for (g = 0; g < NVEC; g++) {
108 1.6 mjacob alpha_shared_intr_set_maxstrays(kn300_pci_intr, g, 25);
109 1.6 mjacob savunit[g] = (char) -1;
110 1.6 mjacob savirqs[g] = (char) -1;
111 1.1 mjacob }
112 1.1 mjacob set_iointr(kn300_iointr);
113 1.1 mjacob }
114 1.1 mjacob
115 1.1 mjacob pc->pc_intr_v = ccp;
116 1.1 mjacob pc->pc_intr_map = dec_kn300_intr_map;
117 1.1 mjacob pc->pc_intr_string = dec_kn300_intr_string;
118 1.1 mjacob pc->pc_intr_establish = dec_kn300_intr_establish;
119 1.1 mjacob pc->pc_intr_disestablish = dec_kn300_intr_disestablish;
120 1.3 thorpej
121 1.4 mjacob /* Not supported on KN300. */
122 1.3 thorpej pc->pc_pciide_compat_intr_establish = NULL;
123 1.1 mjacob
124 1.1 mjacob #if NSIO
125 1.1 mjacob if (EISA_PRESENT(REGVAL(MCPCIA_PCI_REV(ccp->cc_sc)))) {
126 1.1 mjacob extern void dec_kn300_cons_init __P((void));
127 1.1 mjacob bus_space_tag_t iot = &ccp->cc_iot;
128 1.1 mjacob if (mcpcia_eisaccp) {
129 1.1 mjacob printf("Huh? There's only supposed to be one eisa!\n");
130 1.1 mjacob }
131 1.2 mjacob sio_intr_setup(pc, iot);
132 1.1 mjacob kn300_enable_intr(ccp, KN300_PCEB_IRQ);
133 1.1 mjacob mcpcia_eisaccp = ccp;
134 1.1 mjacob dec_kn300_cons_init(); /* XXXXXXXXXXXXXXXXXXX */
135 1.1 mjacob }
136 1.7 mjacob #else
137 1.7 mjacob #error "It will be impossible for you to have a console"
138 1.1 mjacob #endif
139 1.1 mjacob }
140 1.1 mjacob
141 1.1 mjacob int
142 1.1 mjacob dec_kn300_intr_map(ccv, bustag, buspin, line, ihp)
143 1.1 mjacob void *ccv;
144 1.1 mjacob pcitag_t bustag;
145 1.1 mjacob int buspin, line;
146 1.1 mjacob pci_intr_handle_t *ihp;
147 1.1 mjacob {
148 1.1 mjacob struct mcpcia_config *ccp = ccv;
149 1.1 mjacob pci_chipset_tag_t pc = &ccp->cc_pc;
150 1.1 mjacob int device;
151 1.1 mjacob int kn300_irq;
152 1.1 mjacob
153 1.5 thorpej if (buspin == 0) {
154 1.5 thorpej /* No IRQ used. */
155 1.5 thorpej return 1;
156 1.5 thorpej }
157 1.5 thorpej if (buspin > 4 || buspin < 0) {
158 1.5 thorpej printf("dec_kn300_intr_map: bad interrupt pin %d\n", buspin);
159 1.5 thorpej return 1;
160 1.5 thorpej }
161 1.1 mjacob
162 1.1 mjacob alpha_pci_decompose_tag(pc, bustag, NULL, &device, NULL);
163 1.1 mjacob
164 1.1 mjacob if (device == 1) {
165 1.1 mjacob /*
166 1.1 mjacob * This can only be the NCR810 SCSI.
167 1.1 mjacob * XXX: Do we need to check this more closely?
168 1.1 mjacob */
169 1.1 mjacob if (EISA_PRESENT(REGVAL(MCPCIA_PCI_REV(ccp->cc_sc)))) {
170 1.1 mjacob printf("XXXXX: How can you have an EISA in the spot "
171 1.1 mjacob "as an NCR 810?\n");
172 1.1 mjacob }
173 1.1 mjacob kn300_irq = 16;
174 1.1 mjacob } else if (device >= 2 && device <= 5) {
175 1.1 mjacob kn300_irq = (device - 2) * 4;
176 1.1 mjacob } else {
177 1.1 mjacob printf("dec_kn300_intr_map: weird device number %d\n", device);
178 1.1 mjacob return(1);
179 1.1 mjacob }
180 1.1 mjacob /*
181 1.1 mjacob * handle layout:
182 1.1 mjacob *
183 1.6 mjacob * bits 0..1 buspin-1
184 1.6 mjacob * bits 2..4 PCI Slot (0..7- yes, some don't exist)
185 1.6 mjacob * bits 5..7 MID-4
186 1.6 mjacob * bits 8..10 7-GID
187 1.1 mjacob * bits 11-15 IRQ
188 1.1 mjacob */
189 1.1 mjacob *ihp = (pci_intr_handle_t)
190 1.6 mjacob (buspin - 1 ) |
191 1.6 mjacob ((device & 0x7) << 2) |
192 1.6 mjacob ((ccp->cc_sc->mcpcia_mid - 4) << 5) |
193 1.6 mjacob ((7 - ccp->cc_sc->mcpcia_gid) << 8) |
194 1.1 mjacob (kn300_irq << 11);
195 1.1 mjacob return (0);
196 1.1 mjacob }
197 1.1 mjacob
198 1.1 mjacob const char *
199 1.1 mjacob dec_kn300_intr_string(ccv, ih)
200 1.1 mjacob void *ccv;
201 1.1 mjacob pci_intr_handle_t ih;
202 1.1 mjacob {
203 1.1 mjacob static char irqstr[64];
204 1.1 mjacob sprintf(irqstr, "kn300 irq %d PCI Interrupt Pin %c",
205 1.6 mjacob (ih >> 11) & 0x1f, (ih & 0x3) + 'A');
206 1.1 mjacob return (irqstr);
207 1.1 mjacob }
208 1.1 mjacob
209 1.1 mjacob void *
210 1.1 mjacob dec_kn300_intr_establish(ccv, ih, level, func, arg)
211 1.1 mjacob void *ccv;
212 1.1 mjacob pci_intr_handle_t ih;
213 1.1 mjacob int level;
214 1.1 mjacob int (*func) __P((void *));
215 1.1 mjacob void *arg;
216 1.1 mjacob {
217 1.6 mjacob void *cookie;
218 1.6 mjacob int v;
219 1.1 mjacob
220 1.6 mjacob v = ih & 0x3ff;
221 1.6 mjacob cookie = alpha_shared_intr_establish(kn300_pci_intr, v, IST_LEVEL,
222 1.6 mjacob level, func, arg, "kn300 vector");
223 1.6 mjacob
224 1.6 mjacob if (cookie != NULL && alpha_shared_intr_isactive(kn300_pci_intr, v)) {
225 1.6 mjacob struct mcpcia_config *ccp = ccv;
226 1.6 mjacob savunit[v] = ccp->cc_sc->mcpcia_dev.dv_unit;
227 1.6 mjacob savirqs[v] = (ih >> 11) & 0x1f;
228 1.6 mjacob kn300_enable_intr(ccv, (int)((ih >> 11) & 0x1f));
229 1.6 mjacob alpha_mb();
230 1.1 mjacob }
231 1.1 mjacob return (cookie);
232 1.1 mjacob }
233 1.1 mjacob
234 1.1 mjacob void
235 1.1 mjacob dec_kn300_intr_disestablish(ccv, cookie)
236 1.1 mjacob void *ccv, *cookie;
237 1.1 mjacob {
238 1.6 mjacob panic("dec_kn300_intr_disestablish not implemented");
239 1.1 mjacob }
240 1.1 mjacob
241 1.6 mjacob static char *
242 1.6 mjacob kn300_spurious(ih)
243 1.6 mjacob int ih;
244 1.1 mjacob {
245 1.6 mjacob static char str[48];
246 1.6 mjacob int pidx, slot, midx, gidx;
247 1.1 mjacob
248 1.6 mjacob pidx = ih & 0x3;
249 1.6 mjacob slot = (ih >> 2) & 0x7;
250 1.6 mjacob midx = (ih >> 5) & 0x7;
251 1.6 mjacob gidx = (ih >> 8) & 0x7;
252 1.6 mjacob sprintf(str, "mcbus%d mid %d PCI Slot %d PCI Interrupt Pin %c irq",
253 1.6 mjacob gidx, midx + 4, slot, pidx + 'A');
254 1.6 mjacob return (str);
255 1.1 mjacob }
256 1.1 mjacob
257 1.1 mjacob void
258 1.1 mjacob kn300_iointr(framep, vec)
259 1.1 mjacob void *framep;
260 1.1 mjacob unsigned long vec;
261 1.1 mjacob {
262 1.6 mjacob struct mcpcia_softc *mcp;
263 1.6 mjacob int v, gidx, midx;
264 1.1 mjacob
265 1.1 mjacob if (vec >= MCPCIA_VEC_EISA && vec < MCPCIA_VEC_PCI) {
266 1.1 mjacob #if NSIO
267 1.1 mjacob sio_iointr(framep, vec);
268 1.1 mjacob return;
269 1.1 mjacob #else
270 1.1 mjacob printf("kn300_iointr: (E)ISA interrupt support not configured"
271 1.1 mjacob " for vector 0x%x", vec);
272 1.1 mjacob kn300_disable_intr(mcpcia_eisaccp, KN300_PCEB_IRQ);
273 1.1 mjacob #endif
274 1.1 mjacob }
275 1.1 mjacob
276 1.6 mjacob v = (int) vec - MCPCIA_VEC_PCI;
277 1.1 mjacob
278 1.6 mjacob
279 1.6 mjacob midx = v / 0x200;
280 1.1 mjacob gidx = midx / 4;
281 1.1 mjacob midx = midx % 4;
282 1.6 mjacob
283 1.1 mjacob
284 1.1 mjacob #ifdef EVCNT_COUNTERS
285 1.1 mjacob kn300_intr_evcnt.ev_count++;
286 1.1 mjacob #endif
287 1.1 mjacob /*
288 1.1 mjacob * Check for i2c bus interrupts XXXXXXXXX
289 1.1 mjacob */
290 1.1 mjacob if (gidx == 0 && midx == 0 && vec == MCPCIA_I2C_CVEC) {
291 1.1 mjacob #ifndef EVCNT_COUNTERS
292 1.1 mjacob intrcnt[INTRCNT_KN300_I2C_CTRL]++;
293 1.1 mjacob #endif
294 1.1 mjacob printf("i2c: controller interrupt\n");
295 1.1 mjacob return;
296 1.1 mjacob }
297 1.1 mjacob if (gidx == 0 && midx == 0 && vec == MCPCIA_I2C_BVEC) {
298 1.1 mjacob #ifndef EVCNT_COUNTERS
299 1.1 mjacob intrcnt[INTRCNT_KN300_I2C_BUS]++;
300 1.1 mjacob #endif
301 1.1 mjacob printf("i2c: bus interrupt\n");
302 1.1 mjacob return;
303 1.1 mjacob }
304 1.1 mjacob
305 1.6 mjacob
306 1.1 mjacob /*
307 1.6 mjacob * Convert vector offset into a dense number.
308 1.1 mjacob */
309 1.6 mjacob
310 1.6 mjacob v /= 0x10;
311 1.1 mjacob #ifndef EVCNT_COUNTERS
312 1.6 mjacob if (savirqs[v] >= 0 && savirqs[v] <= INTRCNT_KN300_NCR810) {
313 1.6 mjacob intrcnt[INTRCNT_KN300_IRQ + savirqs[v]]++;
314 1.1 mjacob }
315 1.1 mjacob #endif
316 1.6 mjacob
317 1.6 mjacob if (alpha_shared_intr_dispatch(kn300_pci_intr, v)) {
318 1.6 mjacob return;
319 1.6 mjacob }
320 1.6 mjacob /*
321 1.6 mjacob * Nobody fielded the interrupt?
322 1.6 mjacob */
323 1.6 mjacob alpha_shared_intr_stray(kn300_pci_intr, savirqs[v], kn300_spurious(v));
324 1.6 mjacob if (kn300_pci_intr[v].intr_nstrays <
325 1.6 mjacob kn300_pci_intr[v].intr_maxstrays) {
326 1.6 mjacob return;
327 1.6 mjacob }
328 1.6 mjacob /*
329 1.6 mjacob * Search for the controlling mcpcia.
330 1.6 mjacob */
331 1.6 mjacob for (mcp = mcpcias; mcp != NULL; mcp = mcp->mcpcia_next) {
332 1.6 mjacob if (mcp->mcpcia_dev.dv_unit == savunit[v]) {
333 1.6 mjacob break;
334 1.6 mjacob }
335 1.6 mjacob }
336 1.6 mjacob /*
337 1.6 mjacob * And if found, disable this IRQ level. Guess what?
338 1.6 mjacob * This may kill other things too.
339 1.6 mjacob */
340 1.6 mjacob if (mcp) {
341 1.6 mjacob kn300_disable_intr(&mcp->mcpcia_cc, savirqs[v]);
342 1.1 mjacob }
343 1.1 mjacob }
344 1.1 mjacob
345 1.1 mjacob void
346 1.1 mjacob kn300_enable_intr(ccp, irq)
347 1.1 mjacob struct mcpcia_config *ccp;
348 1.1 mjacob int irq;
349 1.1 mjacob {
350 1.1 mjacob alpha_mb();
351 1.1 mjacob REGVAL(MCPCIA_INT_MASK0(ccp->cc_sc)) |= (1 << irq);
352 1.1 mjacob alpha_mb();
353 1.1 mjacob }
354 1.1 mjacob
355 1.1 mjacob void
356 1.1 mjacob kn300_disable_intr(ccp, irq)
357 1.1 mjacob struct mcpcia_config *ccp;
358 1.1 mjacob int irq;
359 1.1 mjacob {
360 1.1 mjacob alpha_mb();
361 1.1 mjacob REGVAL(MCPCIA_INT_MASK0(ccp->cc_sc)) &= ~(1 << irq);
362 1.1 mjacob alpha_mb();
363 1.1 mjacob }
364