1 /* $NetBSD: pci_kn20aa.c,v 1.49 2009/03/14 15:35:59 dsl Exp $ */
4 * Copyright (c) 1995, 1996 Carnegie-Mellon University.
7 * Author: Chris G. Demetriou
9 * Permission to use, copy, modify and distribute this software and
10 * its documentation is hereby granted, provided that both the copyright
11 * notice and this permission notice appear in all copies of the
12 * software, derivative works or modified versions, and any portions
13 * thereof, and that both notices appear in supporting documentation.
15 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19 * Carnegie Mellon requests users of this software to return to
21 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
22 * School of Computer Science
23 * Carnegie Mellon University
24 * Pittsburgh PA 15213-3890
26 * any improvements or extensions that they make and grant Carnegie the
27 * rights to redistribute these changes.
30 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
32 __KERNEL_RCSID(0, "$NetBSD: pci_kn20aa.c,v 1.49 2009/03/14 15:35:59 dsl Exp $");
34 #include <sys/types.h>
35 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/errno.h>
39 #include <sys/malloc.h>
40 #include <sys/device.h>
41 #include <sys/syslog.h>
43 #include <uvm/uvm_extern.h>
45 #include <machine/autoconf.h>
47 #include <dev/pci/pcireg.h>
48 #include <dev/pci/pcivar.h>
50 #include <alpha/pci/ciareg.h>
51 #include <alpha/pci/ciavar.h>
53 #include <alpha/pci/pci_kn20aa.h>
56 #if NSIO > 0 || NPCEB > 0
57 #include <alpha/pci/siovar.h>
60 int dec_kn20aa_intr_map(struct pci_attach_args
*,
62 const char *dec_kn20aa_intr_string(void *, pci_intr_handle_t
);
63 const struct evcnt
*dec_kn20aa_intr_evcnt(void *, pci_intr_handle_t
);
64 void *dec_kn20aa_intr_establish(void *, pci_intr_handle_t
,
65 int, int (*func
)(void *), void *);
66 void dec_kn20aa_intr_disestablish(void *, void *);
68 #define KN20AA_PCEB_IRQ 31
69 #define KN20AA_MAX_IRQ 32
70 #define PCI_STRAY_MAX 5
72 struct alpha_shared_intr
*kn20aa_pci_intr
;
74 void kn20aa_iointr(void *arg
, unsigned long vec
);
75 void kn20aa_enable_intr(int irq
);
76 void kn20aa_disable_intr(int irq
);
79 pci_kn20aa_pickintr(struct cia_config
*ccp
)
82 #if NSIO > 0 || NPCEB > 0
83 bus_space_tag_t iot
= &ccp
->cc_iot
;
85 pci_chipset_tag_t pc
= &ccp
->cc_pc
;
89 pc
->pc_intr_map
= dec_kn20aa_intr_map
;
90 pc
->pc_intr_string
= dec_kn20aa_intr_string
;
91 pc
->pc_intr_evcnt
= dec_kn20aa_intr_evcnt
;
92 pc
->pc_intr_establish
= dec_kn20aa_intr_establish
;
93 pc
->pc_intr_disestablish
= dec_kn20aa_intr_disestablish
;
95 /* Not supported on KN20AA. */
96 pc
->pc_pciide_compat_intr_establish
= NULL
;
98 kn20aa_pci_intr
= alpha_shared_intr_alloc(KN20AA_MAX_IRQ
, 8);
99 for (i
= 0; i
< KN20AA_MAX_IRQ
; i
++) {
100 alpha_shared_intr_set_maxstrays(kn20aa_pci_intr
, i
,
103 cp
= alpha_shared_intr_string(kn20aa_pci_intr
, i
);
104 sprintf(cp
, "irq %d", i
);
105 evcnt_attach_dynamic(alpha_shared_intr_evcnt(
106 kn20aa_pci_intr
, i
), EVCNT_TYPE_INTR
, NULL
,
110 #if NSIO > 0 || NPCEB > 0
111 sio_intr_setup(pc
, iot
);
112 kn20aa_enable_intr(KN20AA_PCEB_IRQ
);
117 dec_kn20aa_intr_map(struct pci_attach_args
*pa
, pci_intr_handle_t
*ihp
)
119 pcitag_t bustag
= pa
->pa_intrtag
;
120 int buspin
= pa
->pa_intrpin
;
121 pci_chipset_tag_t pc
= pa
->pa_pc
;
130 printf("dec_kn20aa_intr_map: bad interrupt pin %d\n", buspin
);
135 * Slot->interrupt translation. Appears to work, though it
136 * may not hold up forever.
138 * The DEC engineers who did this hardware obviously engaged
139 * in random drug testing.
141 pci_decompose_tag(pc
, bustag
, NULL
, &device
, NULL
);
145 kn20aa_irq
= ((device
- 11) + 0) * 4;
156 case 6: /* 21040 on AlphaStation 500 */
165 printf("dec_kn20aa_intr_map: weird device number %d\n",
170 kn20aa_irq
+= buspin
- 1;
171 if (kn20aa_irq
> KN20AA_MAX_IRQ
)
172 panic("dec_kn20aa_intr_map: kn20aa_irq too large (%d)",
180 dec_kn20aa_intr_string(void *ccv
, pci_intr_handle_t ih
)
183 struct cia_config
*ccp
= ccv
;
185 static char irqstr
[15]; /* 11 + 2 + NULL + sanity */
187 if (ih
> KN20AA_MAX_IRQ
)
188 panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx",
191 sprintf(irqstr
, "kn20aa irq %ld", ih
);
196 dec_kn20aa_intr_evcnt(void *ccv
, pci_intr_handle_t ih
)
199 struct cia_config
*ccp
= ccv
;
202 if (ih
> KN20AA_MAX_IRQ
)
203 panic("dec_kn20aa_intr_string: bogus kn20aa IRQ 0x%lx", ih
);
204 return (alpha_shared_intr_evcnt(kn20aa_pci_intr
, ih
));
208 dec_kn20aa_intr_establish(ccv
, ih
, level
, func
, arg
)
210 pci_intr_handle_t ih
;
215 struct cia_config
*ccp
= ccv
;
219 if (ih
> KN20AA_MAX_IRQ
)
220 panic("dec_kn20aa_intr_establish: bogus kn20aa IRQ 0x%lx",
223 cookie
= alpha_shared_intr_establish(kn20aa_pci_intr
, ih
, IST_LEVEL
,
224 level
, func
, arg
, "kn20aa irq");
226 if (cookie
!= NULL
&&
227 alpha_shared_intr_firstactive(kn20aa_pci_intr
, ih
)) {
228 scb_set(0x900 + SCB_IDXTOVEC(ih
), kn20aa_iointr
, NULL
,
230 kn20aa_enable_intr(ih
);
236 dec_kn20aa_intr_disestablish(void *ccv
, void *cookie
)
239 struct cia_config
*ccp
= ccv
;
241 struct alpha_shared_intrhand
*ih
= cookie
;
242 unsigned int irq
= ih
->ih_num
;
247 alpha_shared_intr_disestablish(kn20aa_pci_intr
, cookie
,
249 if (alpha_shared_intr_isactive(kn20aa_pci_intr
, irq
) == 0) {
250 kn20aa_disable_intr(irq
);
251 alpha_shared_intr_set_dfltsharetype(kn20aa_pci_intr
, irq
,
253 scb_free(0x900 + SCB_IDXTOVEC(irq
));
260 kn20aa_iointr(void *arg
, unsigned long vec
)
264 irq
= SCB_VECTOIDX(vec
- 0x900);
266 if (!alpha_shared_intr_dispatch(kn20aa_pci_intr
, irq
)) {
267 alpha_shared_intr_stray(kn20aa_pci_intr
, irq
,
269 if (ALPHA_SHARED_INTR_DISABLE(kn20aa_pci_intr
, irq
))
270 kn20aa_disable_intr(irq
);
272 alpha_shared_intr_reset_strays(kn20aa_pci_intr
, irq
);
276 kn20aa_enable_intr(int irq
)
280 * From disassembling small bits of the OSF/1 kernel:
281 * the following appears to enable a given interrupt request.
282 * "blech." I'd give valuable body parts for better docs or
283 * for a good decompiler.
286 REGVAL(0x8780000000L
+ 0x40L
) |= (1 << irq
); /* XXX */
291 kn20aa_disable_intr(int irq
)
295 REGVAL(0x8780000000L
+ 0x40L
) &= ~(1 << irq
); /* XXX */