pci_kn20aa.c revision 1.49 1 1.49 dsl /* $NetBSD: pci_kn20aa.c,v 1.49 2009/03/14 15:35:59 dsl Exp $ */
2 1.1 cgd
3 1.1 cgd /*
4 1.5 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.22 cgd
30 1.23 cgd #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
31 1.23 cgd
32 1.49 dsl __KERNEL_RCSID(0, "$NetBSD: pci_kn20aa.c,v 1.49 2009/03/14 15:35:59 dsl Exp $");
33 1.1 cgd
34 1.1 cgd #include <sys/types.h>
35 1.1 cgd #include <sys/param.h>
36 1.1 cgd #include <sys/time.h>
37 1.1 cgd #include <sys/systm.h>
38 1.1 cgd #include <sys/errno.h>
39 1.1 cgd #include <sys/malloc.h>
40 1.1 cgd #include <sys/device.h>
41 1.1 cgd #include <sys/syslog.h>
42 1.1 cgd
43 1.40 mrg #include <uvm/uvm_extern.h>
44 1.1 cgd
45 1.7 cgd #include <machine/autoconf.h>
46 1.7 cgd
47 1.1 cgd #include <dev/pci/pcireg.h>
48 1.1 cgd #include <dev/pci/pcivar.h>
49 1.1 cgd
50 1.1 cgd #include <alpha/pci/ciareg.h>
51 1.1 cgd #include <alpha/pci/ciavar.h>
52 1.1 cgd
53 1.1 cgd #include <alpha/pci/pci_kn20aa.h>
54 1.1 cgd
55 1.1 cgd #include "sio.h"
56 1.37 thorpej #if NSIO > 0 || NPCEB > 0
57 1.1 cgd #include <alpha/pci/siovar.h>
58 1.1 cgd #endif
59 1.1 cgd
60 1.48 dsl int dec_kn20aa_intr_map(struct pci_attach_args *,
61 1.48 dsl pci_intr_handle_t *);
62 1.48 dsl const char *dec_kn20aa_intr_string(void *, pci_intr_handle_t);
63 1.48 dsl const struct evcnt *dec_kn20aa_intr_evcnt(void *, pci_intr_handle_t);
64 1.48 dsl void *dec_kn20aa_intr_establish(void *, pci_intr_handle_t,
65 1.48 dsl int, int (*func)(void *), void *);
66 1.48 dsl void dec_kn20aa_intr_disestablish(void *, void *);
67 1.1 cgd
68 1.1 cgd #define KN20AA_PCEB_IRQ 31
69 1.1 cgd #define KN20AA_MAX_IRQ 32
70 1.1 cgd #define PCI_STRAY_MAX 5
71 1.1 cgd
72 1.21 cgd struct alpha_shared_intr *kn20aa_pci_intr;
73 1.1 cgd
74 1.48 dsl void kn20aa_iointr(void *arg, unsigned long vec);
75 1.48 dsl void kn20aa_enable_intr(int irq);
76 1.48 dsl void kn20aa_disable_intr(int irq);
77 1.1 cgd
78 1.1 cgd void
79 1.49 dsl pci_kn20aa_pickintr(struct cia_config *ccp)
80 1.1 cgd {
81 1.1 cgd int i;
82 1.37 thorpej #if NSIO > 0 || NPCEB > 0
83 1.26 thorpej bus_space_tag_t iot = &ccp->cc_iot;
84 1.35 mjacob #endif
85 1.3 cgd pci_chipset_tag_t pc = &ccp->cc_pc;
86 1.39 thorpej char *cp;
87 1.1 cgd
88 1.3 cgd pc->pc_intr_v = ccp;
89 1.3 cgd pc->pc_intr_map = dec_kn20aa_intr_map;
90 1.3 cgd pc->pc_intr_string = dec_kn20aa_intr_string;
91 1.38 cgd pc->pc_intr_evcnt = dec_kn20aa_intr_evcnt;
92 1.3 cgd pc->pc_intr_establish = dec_kn20aa_intr_establish;
93 1.3 cgd pc->pc_intr_disestablish = dec_kn20aa_intr_disestablish;
94 1.29 thorpej
95 1.30 mjacob /* Not supported on KN20AA. */
96 1.29 thorpej pc->pc_pciide_compat_intr_establish = NULL;
97 1.1 cgd
98 1.39 thorpej kn20aa_pci_intr = alpha_shared_intr_alloc(KN20AA_MAX_IRQ, 8);
99 1.39 thorpej for (i = 0; i < KN20AA_MAX_IRQ; i++) {
100 1.21 cgd alpha_shared_intr_set_maxstrays(kn20aa_pci_intr, i,
101 1.21 cgd PCI_STRAY_MAX);
102 1.21 cgd
103 1.39 thorpej cp = alpha_shared_intr_string(kn20aa_pci_intr, i);
104 1.39 thorpej sprintf(cp, "irq %d", i);
105 1.39 thorpej evcnt_attach_dynamic(alpha_shared_intr_evcnt(
106 1.39 thorpej kn20aa_pci_intr, i), EVCNT_TYPE_INTR, NULL,
107 1.39 thorpej "kn20aa", cp);
108 1.39 thorpej }
109 1.39 thorpej
110 1.37 thorpej #if NSIO > 0 || NPCEB > 0
111 1.27 thorpej sio_intr_setup(pc, iot);
112 1.21 cgd kn20aa_enable_intr(KN20AA_PCEB_IRQ);
113 1.1 cgd #endif
114 1.1 cgd }
115 1.1 cgd
116 1.3 cgd int
117 1.49 dsl dec_kn20aa_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
118 1.1 cgd {
119 1.41 sommerfe pcitag_t bustag = pa->pa_intrtag;
120 1.41 sommerfe int buspin = pa->pa_intrpin;
121 1.41 sommerfe pci_chipset_tag_t pc = pa->pa_pc;
122 1.1 cgd int device;
123 1.9 cgd int kn20aa_irq;
124 1.1 cgd
125 1.31 thorpej if (buspin == 0) {
126 1.31 thorpej /* No IRQ used. */
127 1.31 thorpej return 1;
128 1.31 thorpej }
129 1.31 thorpej if (buspin > 4) {
130 1.31 thorpej printf("dec_kn20aa_intr_map: bad interrupt pin %d\n", buspin);
131 1.31 thorpej return 1;
132 1.31 thorpej }
133 1.1 cgd
134 1.1 cgd /*
135 1.1 cgd * Slot->interrupt translation. Appears to work, though it
136 1.1 cgd * may not hold up forever.
137 1.1 cgd *
138 1.1 cgd * The DEC engineers who did this hardware obviously engaged
139 1.1 cgd * in random drug testing.
140 1.1 cgd */
141 1.43 thorpej pci_decompose_tag(pc, bustag, NULL, &device, NULL);
142 1.3 cgd switch (device) {
143 1.1 cgd case 11:
144 1.1 cgd case 12:
145 1.9 cgd kn20aa_irq = ((device - 11) + 0) * 4;
146 1.1 cgd break;
147 1.1 cgd
148 1.1 cgd case 7:
149 1.9 cgd kn20aa_irq = 8;
150 1.1 cgd break;
151 1.1 cgd
152 1.10 cgd case 9:
153 1.10 cgd kn20aa_irq = 12;
154 1.14 cgd break;
155 1.14 cgd
156 1.15 cgd case 6: /* 21040 on AlphaStation 500 */
157 1.14 cgd kn20aa_irq = 13;
158 1.10 cgd break;
159 1.10 cgd
160 1.1 cgd case 8:
161 1.9 cgd kn20aa_irq = 16;
162 1.1 cgd break;
163 1.1 cgd
164 1.1 cgd default:
165 1.20 cgd printf("dec_kn20aa_intr_map: weird device number %d\n",
166 1.1 cgd device);
167 1.20 cgd return 1;
168 1.1 cgd }
169 1.1 cgd
170 1.9 cgd kn20aa_irq += buspin - 1;
171 1.1 cgd if (kn20aa_irq > KN20AA_MAX_IRQ)
172 1.44 provos panic("dec_kn20aa_intr_map: kn20aa_irq too large (%d)",
173 1.1 cgd kn20aa_irq);
174 1.1 cgd
175 1.3 cgd *ihp = kn20aa_irq;
176 1.9 cgd return (0);
177 1.3 cgd }
178 1.3 cgd
179 1.3 cgd const char *
180 1.49 dsl dec_kn20aa_intr_string(void *ccv, pci_intr_handle_t ih)
181 1.3 cgd {
182 1.20 cgd #if 0
183 1.3 cgd struct cia_config *ccp = ccv;
184 1.20 cgd #endif
185 1.3 cgd static char irqstr[15]; /* 11 + 2 + NULL + sanity */
186 1.3 cgd
187 1.3 cgd if (ih > KN20AA_MAX_IRQ)
188 1.44 provos panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx",
189 1.3 cgd ih);
190 1.1 cgd
191 1.20 cgd sprintf(irqstr, "kn20aa irq %ld", ih);
192 1.3 cgd return (irqstr);
193 1.38 cgd }
194 1.38 cgd
195 1.38 cgd const struct evcnt *
196 1.49 dsl dec_kn20aa_intr_evcnt(void *ccv, pci_intr_handle_t ih)
197 1.38 cgd {
198 1.38 cgd #if 0
199 1.38 cgd struct cia_config *ccp = ccv;
200 1.38 cgd #endif
201 1.38 cgd
202 1.39 thorpej if (ih > KN20AA_MAX_IRQ)
203 1.44 provos panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx", ih);
204 1.39 thorpej return (alpha_shared_intr_evcnt(kn20aa_pci_intr, ih));
205 1.1 cgd }
206 1.1 cgd
207 1.3 cgd void *
208 1.3 cgd dec_kn20aa_intr_establish(ccv, ih, level, func, arg)
209 1.3 cgd void *ccv, *arg;
210 1.3 cgd pci_intr_handle_t ih;
211 1.3 cgd int level;
212 1.48 dsl int (*func)(void *);
213 1.3 cgd {
214 1.20 cgd #if 0
215 1.3 cgd struct cia_config *ccp = ccv;
216 1.20 cgd #endif
217 1.1 cgd void *cookie;
218 1.3 cgd
219 1.3 cgd if (ih > KN20AA_MAX_IRQ)
220 1.44 provos panic("dec_kn20aa_intr_establish: bogus kn20aa IRQ 0x%lx",
221 1.3 cgd ih);
222 1.3 cgd
223 1.21 cgd cookie = alpha_shared_intr_establish(kn20aa_pci_intr, ih, IST_LEVEL,
224 1.21 cgd level, func, arg, "kn20aa irq");
225 1.21 cgd
226 1.21 cgd if (cookie != NULL &&
227 1.42 thorpej alpha_shared_intr_firstactive(kn20aa_pci_intr, ih)) {
228 1.47 ad scb_set(0x900 + SCB_IDXTOVEC(ih), kn20aa_iointr, NULL,
229 1.47 ad level);
230 1.21 cgd kn20aa_enable_intr(ih);
231 1.42 thorpej }
232 1.3 cgd return (cookie);
233 1.3 cgd }
234 1.3 cgd
235 1.3 cgd void
236 1.3 cgd dec_kn20aa_intr_disestablish(ccv, cookie)
237 1.3 cgd void *ccv, *cookie;
238 1.1 cgd {
239 1.20 cgd #if 0
240 1.3 cgd struct cia_config *ccp = ccv;
241 1.20 cgd #endif
242 1.34 thorpej struct alpha_shared_intrhand *ih = cookie;
243 1.34 thorpej unsigned int irq = ih->ih_num;
244 1.34 thorpej int s;
245 1.34 thorpej
246 1.34 thorpej s = splhigh();
247 1.34 thorpej
248 1.34 thorpej alpha_shared_intr_disestablish(kn20aa_pci_intr, cookie,
249 1.34 thorpej "kn20aa irq");
250 1.34 thorpej if (alpha_shared_intr_isactive(kn20aa_pci_intr, irq) == 0) {
251 1.34 thorpej kn20aa_disable_intr(irq);
252 1.34 thorpej alpha_shared_intr_set_dfltsharetype(kn20aa_pci_intr, irq,
253 1.34 thorpej IST_NONE);
254 1.42 thorpej scb_free(0x900 + SCB_IDXTOVEC(irq));
255 1.34 thorpej }
256 1.34 thorpej
257 1.34 thorpej splx(s);
258 1.1 cgd }
259 1.1 cgd
260 1.1 cgd void
261 1.49 dsl kn20aa_iointr(void *arg, unsigned long vec)
262 1.1 cgd {
263 1.21 cgd int irq;
264 1.1 cgd
265 1.42 thorpej irq = SCB_VECTOIDX(vec - 0x900);
266 1.42 thorpej
267 1.42 thorpej if (!alpha_shared_intr_dispatch(kn20aa_pci_intr, irq)) {
268 1.42 thorpej alpha_shared_intr_stray(kn20aa_pci_intr, irq,
269 1.42 thorpej "kn20aa irq");
270 1.42 thorpej if (ALPHA_SHARED_INTR_DISABLE(kn20aa_pci_intr, irq))
271 1.42 thorpej kn20aa_disable_intr(irq);
272 1.45 thorpej } else
273 1.45 thorpej alpha_shared_intr_reset_strays(kn20aa_pci_intr, irq);
274 1.1 cgd }
275 1.1 cgd
276 1.1 cgd void
277 1.49 dsl kn20aa_enable_intr(int irq)
278 1.1 cgd {
279 1.1 cgd
280 1.1 cgd /*
281 1.8 cgd * From disassembling small bits of the OSF/1 kernel:
282 1.1 cgd * the following appears to enable a given interrupt request.
283 1.1 cgd * "blech." I'd give valuable body parts for better docs or
284 1.1 cgd * for a good decompiler.
285 1.1 cgd */
286 1.6 cgd alpha_mb();
287 1.1 cgd REGVAL(0x8780000000L + 0x40L) |= (1 << irq); /* XXX */
288 1.8 cgd alpha_mb();
289 1.8 cgd }
290 1.8 cgd
291 1.8 cgd void
292 1.49 dsl kn20aa_disable_intr(int irq)
293 1.8 cgd {
294 1.8 cgd
295 1.8 cgd alpha_mb();
296 1.8 cgd REGVAL(0x8780000000L + 0x40L) &= ~(1 << irq); /* XXX */
297 1.6 cgd alpha_mb();
298 1.1 cgd }
299