pci_6600.c revision 1.1.6.1 1 /* $NetBSD: pci_6600.c,v 1.1.6.1 2000/11/20 19:57:13 bouyer Exp $ */
2
3 /*-
4 * Copyright (c) 1999 by Ross Harvey. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Ross Harvey.
17 * 4. The name of Ross Harvey may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
21 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
23 * ARE DISCLAIMED. IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
24 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 */
33
34 #include <sys/cdefs.h>
35
36 __KERNEL_RCSID(0, "$NetBSD: pci_6600.c,v 1.1.6.1 2000/11/20 19:57:13 bouyer Exp $");
37
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/device.h>
42 #include <sys/malloc.h>
43
44 #include <uvm/uvm_extern.h>
45
46 #include <machine/autoconf.h>
47 #define _ALPHA_BUS_DMA_PRIVATE
48 #include <machine/bus.h>
49 #include <machine/rpb.h>
50 #include <machine/alpha.h>
51
52 #include <dev/pci/pcireg.h>
53 #include <dev/pci/pcivar.h>
54 #include <dev/pci/pciidereg.h>
55 #include <dev/pci/pciidevar.h>
56
57 #include <alpha/pci/tsreg.h>
58 #include <alpha/pci/tsvar.h>
59 #include <alpha/pci/pci_6600.h>
60
61 #define pci_6600() { Generate ctags(1) key. }
62
63 #include "sio.h"
64 #if NSIO
65 #include <alpha/pci/siovar.h>
66 #endif
67
68 #define PCI_NIRQ 64
69 #define PCI_STRAY_MAX 5
70
71 /*
72 * Some Tsunami models have a PCI device (the USB controller) with interrupts
73 * tied to ISA IRQ lines. The IRQ is encoded as:
74 *
75 * line = 0xe0 | isa_irq;
76 */
77 #define DEC_6600_LINE_IS_ISA(line) ((line) >= 0xe0 && (line) <= 0xef)
78 #define DEC_6600_LINE_ISA_IRQ(line) ((line) & 0x0f)
79
80 static char *irqtype = "6600 irq";
81 static struct tsp_config *sioprimary;
82
83 void dec_6600_intr_disestablish __P((void *, void *));
84 void *dec_6600_intr_establish __P((
85 void *, pci_intr_handle_t, int, int (*func)(void *), void *));
86 const char *dec_6600_intr_string __P((void *, pci_intr_handle_t));
87 const struct evcnt *dec_6600_intr_evcnt __P((void *, pci_intr_handle_t));
88 int dec_6600_intr_map __P((void *, pcitag_t, int, int, pci_intr_handle_t *));
89 void *dec_6600_pciide_compat_intr_establish __P((void *, struct device *,
90 struct pci_attach_args *, int, int (*)(void *), void *));
91
92 struct alpha_shared_intr *dec_6600_pci_intr;
93
94 void dec_6600_iointr __P((void *framep, unsigned long vec));
95 extern void dec_6600_intr_enable __P((int irq));
96 extern void dec_6600_intr_disable __P((int irq));
97
98 void
99 pci_6600_pickintr(pcp)
100 struct tsp_config *pcp;
101 {
102 bus_space_tag_t iot = &pcp->pc_iot;
103 pci_chipset_tag_t pc = &pcp->pc_pc;
104 char *cp;
105 int i;
106
107 pc->pc_intr_v = pcp;
108 pc->pc_intr_map = dec_6600_intr_map;
109 pc->pc_intr_string = dec_6600_intr_string;
110 pc->pc_intr_evcnt = dec_6600_intr_evcnt;
111 pc->pc_intr_establish = dec_6600_intr_establish;
112 pc->pc_intr_disestablish = dec_6600_intr_disestablish;
113 pc->pc_pciide_compat_intr_establish = NULL;
114
115 /*
116 * System-wide and Pchip-0-only logic...
117 */
118 if (dec_6600_pci_intr == NULL) {
119 sioprimary = pcp;
120 pc->pc_pciide_compat_intr_establish =
121 dec_6600_pciide_compat_intr_establish;
122 dec_6600_pci_intr = alpha_shared_intr_alloc(PCI_NIRQ, 8);
123 for (i = 0; i < PCI_NIRQ; i++) {
124 alpha_shared_intr_set_maxstrays(dec_6600_pci_intr, i,
125 PCI_STRAY_MAX);
126 alpha_shared_intr_set_private(dec_6600_pci_intr, i,
127 sioprimary);
128
129 cp = alpha_shared_intr_string(dec_6600_pci_intr, i);
130 sprintf(cp, "irq %d", i);
131 evcnt_attach_dynamic(alpha_shared_intr_evcnt(
132 dec_6600_pci_intr, 1), EVCNT_TYPE_INTR, NULL,
133 "dec_6600", cp);
134 }
135 #if NSIO
136 sio_intr_setup(pc, iot);
137 dec_6600_intr_enable(55); /* irq line for sio */
138 #endif
139 set_iointr(dec_6600_iointr);
140 }
141 }
142
143 int
144 dec_6600_intr_map(acv, bustag, buspin, line, ihp)
145 void *acv;
146 pcitag_t bustag;
147 int buspin, line;
148 pci_intr_handle_t *ihp;
149 {
150 struct tsp_config *pcp = acv;
151 pci_chipset_tag_t pc = &pcp->pc_pc;
152 int bus, device, function;
153
154 if (buspin == 0) {
155 /* No IRQ used. */
156 return 1;
157 }
158 if (buspin > 4) {
159 printf("intr_map: bad interrupt pin %d\n", buspin);
160 return 1;
161 }
162
163 alpha_pci_decompose_tag(pc, bustag, &bus, &device, &function);
164
165 /*
166 * The console places the interrupt mapping in the "line" value.
167 * A value of (char)-1 indicates there is no mapping.
168 */
169 if (line == 0xff) {
170 printf("dec_6600_intr_map: no mapping for %d/%d/%d\n",
171 bus, device, function);
172 return (1);
173 }
174
175 #if NSIO == 0
176 if (DEC_6600_LINE_IS_ISA(line)) {
177 printf("dec_6600_intr_map: ISA IRQ %d for %d/%d/%d\n",
178 DEC_6600_LINE_ISA_IRQ(line), bus, device, function);
179 return (1);
180 }
181 #endif
182
183 if (DEC_6600_LINE_IS_ISA(line) == 0 && line >= PCI_NIRQ)
184 panic("dec_6600_intr_map: dec 6600 irq too large (%d)\n",
185 line);
186
187 *ihp = line;
188 return (0);
189 }
190
191 const char *
192 dec_6600_intr_string(acv, ih)
193 void *acv;
194 pci_intr_handle_t ih;
195 {
196
197 static const char irqfmt[] = "dec 6600 irq %ld";
198 static char irqstr[sizeof irqfmt];
199
200 #if NSIO
201 if (DEC_6600_LINE_IS_ISA(ih))
202 return (sio_intr_string(NULL /*XXX*/,
203 DEC_6600_LINE_ISA_IRQ(ih)));
204 #endif
205
206 snprintf(irqstr, sizeof irqstr, irqfmt, ih);
207 return (irqstr);
208 }
209
210 const struct evcnt *
211 dec_6600_intr_evcnt(acv, ih)
212 void *acv;
213 pci_intr_handle_t ih;
214 {
215
216 #if NSIO
217 if (DEC_6600_LINE_IS_ISA(ih))
218 return (sio_intr_evcnt(NULL /*XXX*/,
219 DEC_6600_LINE_ISA_IRQ(ih)));
220 #endif
221
222 return (alpha_shared_intr_evcnt(dec_6600_pci_intr, ih));
223 }
224
225 void *
226 dec_6600_intr_establish(acv, ih, level, func, arg)
227 void *acv, *arg;
228 pci_intr_handle_t ih;
229 int level;
230 int (*func) __P((void *));
231 {
232 void *cookie;
233
234 #if NSIO
235 if (DEC_6600_LINE_IS_ISA(ih))
236 return (sio_intr_establish(NULL /*XXX*/,
237 DEC_6600_LINE_ISA_IRQ(ih), IST_LEVEL, level, func, arg));
238 #endif
239
240 if (ih >= PCI_NIRQ)
241 panic("dec_6600_intr_establish: bogus dec 6600 IRQ 0x%lx\n",
242 ih);
243
244 cookie = alpha_shared_intr_establish(dec_6600_pci_intr, ih, IST_LEVEL,
245 level, func, arg, irqtype);
246
247 if (cookie != NULL && alpha_shared_intr_isactive(dec_6600_pci_intr, ih))
248 dec_6600_intr_enable(ih);
249 return (cookie);
250 }
251
252 void
253 dec_6600_intr_disestablish(acv, cookie)
254 void *acv, *cookie;
255 {
256 struct alpha_shared_intrhand *ih = cookie;
257 unsigned int irq = ih->ih_num;
258 int s;
259
260 #if NSIO
261 /*
262 * We have to determine if this is an ISA IRQ or not! We do this
263 * by checking to see if the intrhand points back to an intrhead
264 * that points to the sioprimary TSP. If not, it's an ISA IRQ.
265 * Pretty disgusting, eh?
266 */
267 if (ih->ih_intrhead->intr_private != sioprimary) {
268 sio_intr_disestablish(NULL /*XXX*/, cookie);
269 return;
270 }
271 #endif
272
273 s = splhigh();
274
275 alpha_shared_intr_disestablish(dec_6600_pci_intr, cookie, irqtype);
276 if (alpha_shared_intr_isactive(dec_6600_pci_intr, irq) == 0) {
277 dec_6600_intr_disable(irq);
278 alpha_shared_intr_set_dfltsharetype(dec_6600_pci_intr, irq,
279 IST_NONE);
280 }
281
282 splx(s);
283 }
284
285 void
286 dec_6600_iointr(framep, vec)
287 void *framep;
288 unsigned long vec;
289 {
290 int irq;
291
292 if (vec >= 0x900) {
293 irq = (vec - 0x900) >> 4;
294
295 if (irq >= PCI_NIRQ)
296 panic("iointr: irq %d is too high", irq);
297
298 if (!alpha_shared_intr_dispatch(dec_6600_pci_intr, irq)) {
299 alpha_shared_intr_stray(dec_6600_pci_intr, irq,
300 irqtype);
301 if (ALPHA_SHARED_INTR_DISABLE(dec_6600_pci_intr, irq))
302 dec_6600_intr_disable(irq);
303 }
304 return;
305 }
306 #if NSIO
307 if (vec >= 0x800) {
308 sio_iointr(framep, vec);
309 return;
310 }
311 #endif
312 panic("iointr: weird vec 0x%lx\n", vec);
313 }
314
315 void
316 dec_6600_intr_enable(irq)
317 int irq;
318 {
319 alpha_mb();
320 STQP(TS_C_DIM0) |= 1UL << irq;
321 alpha_mb();
322 }
323
324 void
325 dec_6600_intr_disable(irq)
326 int irq;
327 {
328 alpha_mb();
329 STQP(TS_C_DIM0) &= ~(1UL << irq);
330 alpha_mb();
331 }
332
333 void *
334 dec_6600_pciide_compat_intr_establish(v, dev, pa, chan, func, arg)
335 void *v;
336 struct device *dev;
337 struct pci_attach_args *pa;
338 int chan;
339 int (*func) __P((void *));
340 void *arg;
341 {
342 pci_chipset_tag_t pc = pa->pa_pc;
343 void *cookie = NULL;
344 int bus, irq;
345
346 alpha_pci_decompose_tag(pc, pa->pa_tag, &bus, NULL, NULL);
347
348 /*
349 * If this isn't PCI bus #0 on the TSP that holds the PCI-ISA
350 * bridge, all bets are off.
351 */
352 if (bus != 0 || pc->pc_intr_v != sioprimary)
353 return (NULL);
354
355 irq = PCIIDE_COMPAT_IRQ(chan);
356 #if NSIO
357 cookie = sio_intr_establish(NULL /*XXX*/, irq, IST_EDGE, IPL_BIO,
358 func, arg);
359 if (cookie == NULL)
360 return (NULL);
361 printf("%s: %s channel interrupting at %s\n", dev->dv_xname,
362 PCIIDE_CHANNEL_NAME(chan), sio_intr_string(NULL /*XXX*/, irq));
363 #endif
364 return (cookie);
365 }
366