xref: /openbsd/sys/arch/alpha/pci/pci_kn20aa.c (revision d485f761)
1 /*	$OpenBSD: pci_kn20aa.c,v 1.15 2001/11/06 19:53:13 miod Exp $	*/
2 /*	$NetBSD: pci_kn20aa.c,v 1.21 1996/11/17 02:05:27 cgd Exp $	*/
3 
4 /*
5  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
6  * All rights reserved.
7  *
8  * Author: Chris G. Demetriou
9  *
10  * Permission to use, copy, modify and distribute this software and
11  * its documentation is hereby granted, provided that both the copyright
12  * notice and this permission notice appear in all copies of the
13  * software, derivative works or modified versions, and any portions
14  * thereof, and that both notices appear in supporting documentation.
15  *
16  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
17  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
18  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19  *
20  * Carnegie Mellon requests users of this software to return to
21  *
22  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
23  *  School of Computer Science
24  *  Carnegie Mellon University
25  *  Pittsburgh PA 15213-3890
26  *
27  * any improvements or extensions that they make and grant Carnegie the
28  * rights to redistribute these changes.
29  */
30 
31 #include <sys/types.h>
32 #include <sys/param.h>
33 #include <sys/time.h>
34 #include <sys/systm.h>
35 #include <sys/errno.h>
36 #include <sys/malloc.h>
37 #include <sys/device.h>
38 #include <sys/syslog.h>
39 
40 #include <uvm/uvm_extern.h>
41 
42 #include <machine/autoconf.h>
43 
44 #include <dev/pci/pcireg.h>
45 #include <dev/pci/pcivar.h>
46 
47 #include <alpha/pci/ciareg.h>
48 #include <alpha/pci/ciavar.h>
49 
50 #include <alpha/pci/pci_kn20aa.h>
51 
52 #ifndef EVCNT_COUNTERS
53 #include <machine/intrcnt.h>
54 #endif
55 
56 #include "sio.h"
57 #if NSIO
58 #include <alpha/pci/siovar.h>
59 #endif
60 
61 int	dec_kn20aa_intr_map __P((void *, pcitag_t, int, int,
62 	    pci_intr_handle_t *));
63 const char *dec_kn20aa_intr_string __P((void *, pci_intr_handle_t));
64 int	dec_kn20aa_intr_line __P((void *, pci_intr_handle_t));
65 void	*dec_kn20aa_intr_establish __P((void *, pci_intr_handle_t,
66 	    int, int (*func)(void *), void *, char *));
67 void	dec_kn20aa_intr_disestablish __P((void *, void *));
68 
69 #define	KN20AA_PCEB_IRQ	31
70 #define	KN20AA_MAX_IRQ	32
71 #define	PCI_STRAY_MAX	5
72 
73 struct alpha_shared_intr *kn20aa_pci_intr;
74 #ifdef EVCNT_COUNTERS
75 struct evcnt kn20aa_intr_evcnt;
76 #endif
77 
78 void	kn20aa_iointr __P((void *framep, unsigned long vec));
79 void	kn20aa_enable_intr __P((int irq));
80 void	kn20aa_disable_intr __P((int irq));
81 
82 void
83 pci_kn20aa_pickintr(ccp)
84 	struct cia_config *ccp;
85 {
86 	int i;
87 	bus_space_tag_t iot = ccp->cc_iot;
88 	pci_chipset_tag_t pc = &ccp->cc_pc;
89 
90         pc->pc_intr_v = ccp;
91         pc->pc_intr_map = dec_kn20aa_intr_map;
92         pc->pc_intr_string = dec_kn20aa_intr_string;
93         pc->pc_intr_line = dec_kn20aa_intr_line;
94         pc->pc_intr_establish = dec_kn20aa_intr_establish;
95         pc->pc_intr_disestablish = dec_kn20aa_intr_disestablish;
96 
97         /* Not supported on KN20AA. */
98         pc->pc_pciide_compat_intr_establish = NULL;
99         pc->pc_pciide_compat_intr_disestablish = NULL;
100 
101 	kn20aa_pci_intr = alpha_shared_intr_alloc(KN20AA_MAX_IRQ);
102 	for (i = 0; i < KN20AA_MAX_IRQ; i++)
103 		alpha_shared_intr_set_maxstrays(kn20aa_pci_intr, i,
104 		    PCI_STRAY_MAX);
105 
106 #if NSIO
107 	sio_intr_setup(pc, iot);
108 	kn20aa_enable_intr(KN20AA_PCEB_IRQ);
109 #endif
110 
111 	set_iointr(kn20aa_iointr);
112 }
113 
114 int
115 dec_kn20aa_intr_map(ccv, bustag, buspin, line, ihp)
116         void *ccv;
117         pcitag_t bustag;
118         int buspin, line;
119         pci_intr_handle_t *ihp;
120 {
121 	struct cia_config *ccp = ccv;
122 	pci_chipset_tag_t pc = &ccp->cc_pc;
123 	int device;
124 	int kn20aa_irq;
125 
126         if (buspin == 0) {
127                 /* No IRQ used. */
128                 return 1;
129         }
130         if (buspin > 4) {
131                 printf("pci_map_int: bad interrupt pin %d\n", buspin);
132                 return 1;
133         }
134 
135 	/*
136 	 * Slot->interrupt translation.  Appears to work, though it
137 	 * may not hold up forever.
138 	 *
139 	 * The DEC engineers who did this hardware obviously engaged
140 	 * in random drug testing.
141 	 */
142 	pci_decompose_tag(pc, bustag, NULL, &device, NULL);
143 	switch (device) {
144 	case 11:
145 	case 12:
146 		kn20aa_irq = ((device - 11) + 0) * 4;
147 		break;
148 
149 	case 7:
150 		kn20aa_irq = 8;
151 		break;
152 
153 	case 9:
154 		kn20aa_irq = 12;
155 		break;
156 
157 	case 6:					/* 21040 on AlphaStation 500 */
158 		kn20aa_irq = 13;
159 		break;
160 
161 	case 8:
162 		kn20aa_irq = 16;
163 		break;
164 
165 	default:
166                 printf("dec_kn20aa_intr_map: weird device number %d\n",
167 		    device);
168                 return 1;
169 	}
170 
171 	kn20aa_irq += buspin - 1;
172 	if (kn20aa_irq > KN20AA_MAX_IRQ)
173 		panic("pci_kn20aa_map_int: kn20aa_irq too large (%d)",
174 		    kn20aa_irq);
175 
176 	*ihp = kn20aa_irq;
177 	return (0);
178 }
179 
180 const char *
181 dec_kn20aa_intr_string(ccv, ih)
182 	void *ccv;
183 	pci_intr_handle_t ih;
184 {
185         static char irqstr[15];          /* 11 + 2 + NULL + sanity */
186 
187         if (ih > KN20AA_MAX_IRQ)
188 		panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%x", ih);
189 
190         sprintf(irqstr, "kn20aa irq %ld", ih);
191         return (irqstr);
192 }
193 
194 int
195 dec_kn20aa_intr_line(ccv, ih)
196 	void *ccv;
197 	pci_intr_handle_t ih;
198 {
199 	return (ih);
200 }
201 
202 void *
203 dec_kn20aa_intr_establish(ccv, ih, level, func, arg, name)
204         void *ccv, *arg;
205         pci_intr_handle_t ih;
206         int level;
207         int (*func) __P((void *));
208 	char *name;
209 {
210 	void *cookie;
211 
212         if (ih > KN20AA_MAX_IRQ)
213                 panic("dec_kn20aa_intr_establish: bogus kn20aa IRQ 0x%x",
214 		    ih);
215 
216 	cookie = alpha_shared_intr_establish(kn20aa_pci_intr, ih, IST_LEVEL,
217 	    level, func, arg, name);
218 
219 	if (cookie != NULL &&
220 	    alpha_shared_intr_isactive(kn20aa_pci_intr, ih))
221 		kn20aa_enable_intr(ih);
222 	return (cookie);
223 }
224 
225 void
226 dec_kn20aa_intr_disestablish(ccv, cookie)
227         void *ccv, *cookie;
228 {
229 	struct alpha_shared_intrhand *ih = cookie;
230 	unsigned int irq = ih->ih_num;
231 	int s;
232 
233 	s = splhigh();
234 
235 	alpha_shared_intr_disestablish(kn20aa_pci_intr, cookie,
236 	    "kn20aa irq");
237 	if (alpha_shared_intr_isactive(kn20aa_pci_intr, irq) == 0) {
238 		kn20aa_disable_intr(irq);
239 		alpha_shared_intr_set_dfltsharetype(kn20aa_pci_intr, irq,
240 		    IST_NONE);
241 		/* scb_free(0x900 + SCB_IDXTOVEC(irq)); */
242 	}
243 	splx(s);
244 }
245 
246 void
247 kn20aa_iointr(framep, vec)
248 	void *framep;
249 	unsigned long vec;
250 {
251 	int irq;
252 
253 	if (vec >= 0x900) {
254 		if (vec >= 0x900 + (KN20AA_MAX_IRQ << 4))
255 			panic("kn20aa_iointr: vec 0x%x out of range", vec);
256 		irq = (vec - 0x900) >> 4;
257 
258 #ifdef EVCNT_COUNTERS
259 		kn20aa_intr_evcnt.ev_count++;
260 #else
261 		if (KN20AA_MAX_IRQ != INTRCNT_KN20AA_IRQ_LEN)
262 			panic("kn20aa interrupt counter sizes inconsistent");
263 		intrcnt[INTRCNT_KN20AA_IRQ + irq]++;
264 #endif
265 
266 		if (!alpha_shared_intr_dispatch(kn20aa_pci_intr, irq)) {
267 			alpha_shared_intr_stray(kn20aa_pci_intr, irq,
268 			    "kn20aa irq");
269 			if (kn20aa_pci_intr[irq].intr_nstrays ==
270 			    kn20aa_pci_intr[irq].intr_maxstrays)
271 				kn20aa_disable_intr(irq);
272 		}
273 		return;
274 	}
275 #if NSIO
276 	if (vec >= 0x800) {
277 		sio_iointr(framep, vec);
278 		return;
279 	}
280 #endif
281 	panic("kn20aa_iointr: weird vec 0x%x", vec);
282 }
283 
284 void
285 kn20aa_enable_intr(irq)
286 	int irq;
287 {
288 
289 	/*
290 	 * From disassembling small bits of the OSF/1 kernel:
291 	 * the following appears to enable a given interrupt request.
292 	 * "blech."  I'd give valuable body parts for better docs or
293 	 * for a good decompiler.
294 	 */
295 	alpha_mb();
296 	REGVAL(0x8780000000L + 0x40L) |= (1 << irq);	/* XXX */
297 	alpha_mb();
298 }
299 
300 void
301 kn20aa_disable_intr(irq)
302 	int irq;
303 {
304 
305 	alpha_mb();
306 	REGVAL(0x8780000000L + 0x40L) &= ~(1 << irq);	/* XXX */
307 	alpha_mb();
308 }
309