pci_1000a.c revision 1.10 1 /* $NetBSD: pci_1000a.c,v 1.10 2000/06/04 19:14:20 cgd Exp $ */
2
3 /*
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is based on pci_kn20aa.c, written by Chris G. Demetriou at
8 * Carnegie-Mellon University. Platform support for Noritake, Pintake, and
9 * Corelle by Ross Harvey with copyright assignment by permission of Avalon
10 * Computer Systems, Inc.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the NetBSD
23 * Foundation, Inc. and its contributors.
24 * 4. Neither the name of The NetBSD Foundation nor the names of its
25 * contributors may be used to endorse or promote products derived
26 * from this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
30 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
32 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 * POSSIBILITY OF SUCH DAMAGE.
39 */
40
41 /*
42 * Copyright (c) 1995, 1996 Carnegie-Mellon University.
43 * All rights reserved.
44 *
45 * Author: Chris G. Demetriou
46 *
47 * Permission to use, copy, modify and distribute this software and
48 * its documentation is hereby granted, provided that both the copyright
49 * notice and this permission notice appear in all copies of the
50 * software, derivative works or modified versions, and any portions
51 * thereof, and that both notices appear in supporting documentation.
52 *
53 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
54 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
55 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
56 *
57 * Carnegie Mellon requests users of this software to return to
58 *
59 * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
60 * School of Computer Science
61 * Carnegie Mellon University
62 * Pittsburgh PA 15213-3890
63 *
64 * any improvements or extensions that they make and grant Carnegie the
65 * rights to redistribute these changes.
66 */
67
68 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
69
70 __KERNEL_RCSID(0, "$NetBSD: pci_1000a.c,v 1.10 2000/06/04 19:14:20 cgd Exp $");
71
72 #include <sys/types.h>
73 #include <sys/param.h>
74 #include <sys/time.h>
75 #include <sys/systm.h>
76 #include <sys/errno.h>
77 #include <sys/malloc.h>
78 #include <sys/device.h>
79 #include <sys/syslog.h>
80
81 #include <vm/vm.h>
82
83 #include <machine/autoconf.h>
84
85 #include <dev/pci/pcireg.h>
86 #include <dev/pci/pcivar.h>
87
88 #include <alpha/pci/pci_1000a.h>
89
90 #include <machine/intrcnt.h>
91
92 #include "sio.h"
93 #if NSIO > 0 || NPCEB > 0
94 #include <alpha/pci/siovar.h>
95 #endif
96
97 #define PCI_STRAY_MAX 5
98
99 #define IMR2IRQ(bn) ((bn) - 1)
100 #define IRQ2IMR(irq) ((irq) + 1)
101
102 static bus_space_tag_t mystery_icu_iot;
103 static bus_space_handle_t mystery_icu_ioh[2];
104
105 int dec_1000a_intr_map __P((void *, pcitag_t, int, int,
106 pci_intr_handle_t *));
107 const char *dec_1000a_intr_string __P((void *, pci_intr_handle_t));
108 const struct evcnt *dec_1000a_intr_evcnt __P((void *, pci_intr_handle_t));
109 void *dec_1000a_intr_establish __P((void *, pci_intr_handle_t,
110 int, int (*func)(void *), void *));
111 void dec_1000a_intr_disestablish __P((void *, void *));
112
113 struct alpha_shared_intr *dec_1000a_pci_intr;
114
115 static void dec_1000a_iointr __P((void *framep, unsigned long vec));
116 static void dec_1000a_enable_intr __P((int irq));
117 static void dec_1000a_disable_intr __P((int irq));
118 static void pci_1000a_imi __P((void));
119 static pci_chipset_tag_t pc_tag;
120
121 void
122 pci_1000a_pickintr(core, iot, memt, pc)
123 void *core;
124 bus_space_tag_t iot, memt;
125 pci_chipset_tag_t pc;
126 {
127 int i;
128
129 mystery_icu_iot = iot;
130
131 pc_tag = pc;
132 if (bus_space_map(iot, 0x54a, 2, 0, mystery_icu_ioh + 0)
133 || bus_space_map(iot, 0x54c, 2, 0, mystery_icu_ioh + 1))
134 panic("pci_1000a_pickintr");
135 pc->pc_intr_v = core;
136 pc->pc_intr_map = dec_1000a_intr_map;
137 pc->pc_intr_string = dec_1000a_intr_string;
138 pc->pc_intr_evcnt = dec_1000a_intr_evcnt;
139 pc->pc_intr_establish = dec_1000a_intr_establish;
140 pc->pc_intr_disestablish = dec_1000a_intr_disestablish;
141
142 pc->pc_pciide_compat_intr_establish = NULL;
143
144 dec_1000a_pci_intr = alpha_shared_intr_alloc(INTRCNT_DEC_1000A_IRQ_LEN);
145 for (i = 0; i < INTRCNT_DEC_1000A_IRQ_LEN; i++)
146 alpha_shared_intr_set_maxstrays(dec_1000a_pci_intr, i,
147 PCI_STRAY_MAX);
148
149 pci_1000a_imi();
150 #if NSIO > 0 || NPCEB > 0
151 sio_intr_setup(pc, iot);
152 #endif
153 set_iointr(dec_1000a_iointr);
154 }
155
156 int
157 dec_1000a_intr_map(ccv, bustag, buspin, line, ihp)
158 void *ccv;
159 pcitag_t bustag;
160 int buspin, line;
161 pci_intr_handle_t *ihp;
162 {
163 int imrbit, device;
164 /*
165 * Get bit number in mystery ICU imr
166 */
167 static const signed char imrmap[][4] = {
168 # define IRQSPLIT(o) { (o), (o)+1, (o)+16, (o)+16+1 }
169 # define IRQNONE { 0, 0, 0, 0 }
170 /* 0 */ { 1, 0, 0, 0 }, /* Noritake and Pintake */
171 /* 1 */ IRQSPLIT(8),
172 /* 2 */ IRQSPLIT(10),
173 /* 3 */ IRQSPLIT(12),
174 /* 4 */ IRQSPLIT(14),
175 /* 5 */ { 1, 0, 0, 0 }, /* Corelle */
176 /* 6 */ { 10, 0, 0, 0 }, /* Corelle */
177 /* 7 */ IRQNONE,
178 /* 8 */ { 1, 0, 0, 0 }, /* isp behind ppb */
179 /* 9 */ IRQNONE,
180 /* 10 */ IRQNONE,
181 /* 11 */ IRQSPLIT(2),
182 /* 12 */ IRQSPLIT(4),
183 /* 13 */ IRQSPLIT(6),
184 /* 14 */ IRQSPLIT(8) /* Corelle */
185 };
186
187 if (buspin == 0) /* No IRQ used. */
188 return 1;
189 if (!(1 <= buspin && buspin <= 4))
190 goto bad;
191 alpha_pci_decompose_tag(pc_tag, bustag, NULL, &device, NULL);
192 if (0 <= device && device < sizeof imrmap / sizeof imrmap[0]) {
193 if (device == 0)
194 printf("dec_1000a_intr_map: ?! UNEXPECTED DEV 0\n");
195 imrbit = imrmap[device][buspin - 1];
196 if (imrbit) {
197 *ihp = IMR2IRQ(imrbit);
198 return 0;
199 }
200 }
201 bad: printf("dec_1000a_intr_map: can't map dev %d pin %d\n", device, buspin);
202 return 1;
203 }
204
205 const char *
206 dec_1000a_intr_string(ccv, ih)
207 void *ccv;
208 pci_intr_handle_t ih;
209 {
210 static const char irqmsg_fmt[] = "dec_1000a irq %ld";
211 static char irqstr[sizeof irqmsg_fmt];
212
213
214 if (ih >= INTRCNT_DEC_1000A_IRQ_LEN)
215 panic("dec_1000a_intr_string: bogus dec_1000a IRQ 0x%lx\n", ih);
216
217 snprintf(irqstr, sizeof irqstr, irqmsg_fmt, ih);
218 return (irqstr);
219 }
220
221 const struct evcnt *
222 dec_1000a_intr_evcnt(ccv, ih)
223 void *ccv;
224 pci_intr_handle_t ih;
225 {
226
227 /* XXX for now, no evcnt parent reported */
228 return (NULL);
229 }
230
231 void *
232 dec_1000a_intr_establish(ccv, ih, level, func, arg)
233 void *ccv, *arg;
234 pci_intr_handle_t ih;
235 int level;
236 int (*func) __P((void *));
237 {
238 void *cookie;
239
240 if (ih >= INTRCNT_DEC_1000A_IRQ_LEN)
241 panic("dec_1000a_intr_establish: IRQ too high, 0x%lx\n", ih);
242
243 cookie = alpha_shared_intr_establish(dec_1000a_pci_intr, ih, IST_LEVEL,
244 level, func, arg, "dec_1000a irq");
245
246 if (cookie != NULL &&
247 alpha_shared_intr_isactive(dec_1000a_pci_intr, ih))
248 dec_1000a_enable_intr(ih);
249 return (cookie);
250 }
251
252 void
253 dec_1000a_intr_disestablish(ccv, cookie)
254 void *ccv, *cookie;
255 {
256 struct alpha_shared_intrhand *ih = cookie;
257 unsigned int irq = ih->ih_num;
258 int s;
259
260 s = splhigh();
261
262 alpha_shared_intr_disestablish(dec_1000a_pci_intr, cookie,
263 "dec_1000a irq");
264 if (alpha_shared_intr_isactive(dec_1000a_pci_intr, irq) == 0) {
265 dec_1000a_disable_intr(irq);
266 alpha_shared_intr_set_dfltsharetype(dec_1000a_pci_intr, irq,
267 IST_NONE);
268 }
269
270 splx(s);
271 }
272
273 static void
274 dec_1000a_iointr(framep, vec)
275 void *framep;
276 unsigned long vec;
277 {
278 int irq;
279
280 if (vec >= 0x900) {
281 if (vec >= 0x900 + (INTRCNT_DEC_1000A_IRQ_LEN << 4))
282 panic("dec_1000a_iointr: vec 0x%lx out of range\n",
283 vec);
284 irq = (vec - 0x900) >> 4;
285 intrcnt[INTRCNT_DEC_1000A_IRQ + irq]++;
286 if (!alpha_shared_intr_dispatch(dec_1000a_pci_intr, irq)) {
287 alpha_shared_intr_stray(dec_1000a_pci_intr, irq,
288 "dec_1000a irq");
289 if (ALPHA_SHARED_INTR_DISABLE(dec_1000a_pci_intr, irq))
290 dec_1000a_disable_intr(irq);
291 }
292 return;
293 }
294 #if NSIO > 0 || NPCEB > 0
295 if (vec >= 0x800) {
296 sio_iointr(framep, vec);
297 return;
298 }
299 #endif
300 panic("dec_1000a_iointr: weird vec 0x%lx\n", vec);
301 }
302
303 /*
304 * Read and write the mystery ICU IMR registers
305 */
306
307 #define IR(h) bus_space_read_2(mystery_icu_iot, mystery_icu_ioh[h], 0)
308 #define IW(h, v) bus_space_write_2(mystery_icu_iot, mystery_icu_ioh[h], 0, (v))
309
310 /*
311 * Enable and disable interrupts at the ICU level
312 */
313
314 static void
315 dec_1000a_enable_intr(irq)
316 int irq;
317 {
318 int imrval = IRQ2IMR(irq);
319 int i = imrval >= 16;
320
321 IW(i, IR(i) | 1 << (imrval & 0xf));
322 }
323
324 static void
325 dec_1000a_disable_intr(irq)
326 int irq;
327 {
328 int imrval = IRQ2IMR(irq);
329 int i = imrval >= 16;
330
331 IW(i, IR(i) & ~(1 << (imrval & 0xf)));
332 }
333 /*
334 * Initialize mystery ICU
335 */
336 static void
337 pci_1000a_imi()
338 {
339 IW(0, IR(0) & 1);
340 IW(1, IR(0) & 3);
341 }
342