pcib.c revision 1.19.8.1 1 1.19.8.1 skrll /* $NetBSD: pcib.c,v 1.19.8.1 2009/04/28 07:33:33 skrll Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej *
19 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
33 1.1 thorpej
34 1.19.8.1 skrll __KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.19.8.1 2009/04/28 07:33:33 skrll Exp $");
35 1.1 thorpej
36 1.1 thorpej #include "opt_algor_p5064.h"
37 1.1 thorpej #include "opt_algor_p6032.h"
38 1.1 thorpej
39 1.1 thorpej #include <sys/param.h>
40 1.1 thorpej #include <sys/systm.h>
41 1.1 thorpej #include <sys/kernel.h>
42 1.1 thorpej #include <sys/device.h>
43 1.1 thorpej #include <sys/malloc.h>
44 1.1 thorpej
45 1.1 thorpej #include <machine/intr.h>
46 1.1 thorpej #include <machine/bus.h>
47 1.1 thorpej
48 1.3 thorpej #include <dev/isa/isareg.h>
49 1.1 thorpej #include <dev/isa/isavar.h>
50 1.1 thorpej
51 1.1 thorpej #include <dev/pci/pcireg.h>
52 1.1 thorpej #include <dev/pci/pcivar.h>
53 1.1 thorpej #include <dev/pci/pcidevs.h>
54 1.1 thorpej
55 1.6 thorpej #include <dev/ic/i8259reg.h>
56 1.6 thorpej
57 1.1 thorpej #ifdef ALGOR_P5064
58 1.1 thorpej #include <algor/algor/algor_p5064var.h>
59 1.1 thorpej #endif
60 1.1 thorpej
61 1.1 thorpej #ifdef ALGOR_P6032
62 1.1 thorpej #include <algor/algor/algor_p6032var.h>
63 1.1 thorpej #endif
64 1.1 thorpej
65 1.3 thorpej const char *pcib_intrnames[16] = {
66 1.3 thorpej "irq 0",
67 1.3 thorpej "irq 1",
68 1.3 thorpej "irq 2",
69 1.3 thorpej "irq 3",
70 1.3 thorpej "irq 4",
71 1.3 thorpej "irq 5",
72 1.3 thorpej "irq 6",
73 1.3 thorpej "irq 7",
74 1.3 thorpej "irq 8",
75 1.3 thorpej "irq 9",
76 1.3 thorpej "irq 10",
77 1.3 thorpej "irq 11",
78 1.3 thorpej "irq 12",
79 1.3 thorpej "irq 13",
80 1.3 thorpej "irq 14",
81 1.3 thorpej "irq 15",
82 1.3 thorpej };
83 1.3 thorpej
84 1.3 thorpej struct pcib_intrhead {
85 1.3 thorpej LIST_HEAD(, algor_intrhand) intr_q;
86 1.3 thorpej struct evcnt intr_count;
87 1.3 thorpej int intr_type;
88 1.3 thorpej };
89 1.1 thorpej
90 1.1 thorpej struct pcib_softc {
91 1.1 thorpej struct device sc_dev;
92 1.3 thorpej
93 1.3 thorpej bus_space_tag_t sc_iot;
94 1.3 thorpej bus_space_handle_t sc_ioh_icu1;
95 1.3 thorpej bus_space_handle_t sc_ioh_icu2;
96 1.3 thorpej bus_space_handle_t sc_ioh_elcr;
97 1.3 thorpej
98 1.3 thorpej struct algor_isa_chipset sc_ic;
99 1.3 thorpej
100 1.3 thorpej struct pcib_intrhead sc_intrtab[16];
101 1.3 thorpej
102 1.6 thorpej u_int16_t sc_imask;
103 1.3 thorpej u_int16_t sc_elcr;
104 1.3 thorpej
105 1.3 thorpej #if defined(ALGOR_P5064)
106 1.3 thorpej isa_chipset_tag_t sc_parent_ic;
107 1.6 thorpej #endif
108 1.6 thorpej
109 1.3 thorpej u_int16_t sc_reserved;
110 1.3 thorpej
111 1.3 thorpej void *sc_ih;
112 1.1 thorpej };
113 1.1 thorpej
114 1.1 thorpej int pcib_match(struct device *, struct cfdata *, void *);
115 1.1 thorpej void pcib_attach(struct device *, struct device *, void *);
116 1.1 thorpej
117 1.11 thorpej CFATTACH_DECL(pcib, sizeof(struct pcib_softc),
118 1.12 thorpej pcib_match, pcib_attach, NULL, NULL);
119 1.1 thorpej
120 1.1 thorpej void pcib_isa_attach_hook(struct device *, struct device *,
121 1.1 thorpej struct isabus_attach_args *);
122 1.1 thorpej
123 1.3 thorpej int pcib_intr(void *);
124 1.3 thorpej
125 1.1 thorpej void pcib_bridge_callback(struct device *);
126 1.1 thorpej
127 1.3 thorpej const struct evcnt *pcib_isa_intr_evcnt(void *, int);
128 1.3 thorpej void *pcib_isa_intr_establish(void *, int, int, int,
129 1.3 thorpej int (*)(void *), void *);
130 1.3 thorpej void pcib_isa_intr_disestablish(void *, void *);
131 1.3 thorpej int pcib_isa_intr_alloc(void *, int, int, int *);
132 1.3 thorpej
133 1.3 thorpej void pcib_set_icus(struct pcib_softc *);
134 1.3 thorpej
135 1.1 thorpej int
136 1.1 thorpej pcib_match(struct device *parent, struct cfdata *match, void *aux)
137 1.1 thorpej {
138 1.1 thorpej struct pci_attach_args *pa = aux;
139 1.1 thorpej
140 1.1 thorpej if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
141 1.1 thorpej PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA)
142 1.1 thorpej return (1);
143 1.1 thorpej
144 1.1 thorpej return (0);
145 1.1 thorpej }
146 1.1 thorpej
147 1.1 thorpej void
148 1.1 thorpej pcib_attach(struct device *parent, struct device *self, void *aux)
149 1.1 thorpej {
150 1.3 thorpej struct pcib_softc *sc = (void *) self;
151 1.1 thorpej struct pci_attach_args *pa = aux;
152 1.1 thorpej char devinfo[256];
153 1.3 thorpej int i;
154 1.1 thorpej
155 1.15 itojun pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
156 1.1 thorpej printf(": %s (rev. 0x%02x)\n", devinfo,
157 1.1 thorpej PCI_REVISION(pa->pa_class));
158 1.1 thorpej
159 1.3 thorpej sc->sc_iot = pa->pa_iot;
160 1.3 thorpej
161 1.3 thorpej /*
162 1.3 thorpej * Map the PIC/ELCR registers.
163 1.3 thorpej */
164 1.3 thorpej if (bus_space_map(sc->sc_iot, 0x4d0, 2, 0, &sc->sc_ioh_elcr) != 0)
165 1.3 thorpej printf("%s: unable to map ELCR registers\n",
166 1.3 thorpej sc->sc_dev.dv_xname);
167 1.3 thorpej if (bus_space_map(sc->sc_iot, IO_ICU1, 2, 0, &sc->sc_ioh_icu1) != 0)
168 1.3 thorpej printf("%s: unable to map ICU1 registers\n",
169 1.3 thorpej sc->sc_dev.dv_xname);
170 1.3 thorpej if (bus_space_map(sc->sc_iot, IO_ICU2, 2, 0, &sc->sc_ioh_icu2) != 0)
171 1.3 thorpej printf("%s: unable to map ICU2 registers\n",
172 1.3 thorpej sc->sc_dev.dv_xname);
173 1.3 thorpej
174 1.6 thorpej /* All interrupts default to "masked off". */
175 1.6 thorpej sc->sc_imask = 0xffff;
176 1.6 thorpej
177 1.6 thorpej /* All interrupts default to edge-triggered. */
178 1.6 thorpej sc->sc_elcr = 0;
179 1.6 thorpej
180 1.3 thorpej /*
181 1.3 thorpej * Initialize the 8259s.
182 1.3 thorpej */
183 1.3 thorpej
184 1.6 thorpej /* reset, program device, 4 bytes */
185 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_ICW1,
186 1.7 thorpej ICW1_SELECT | ICW1_IC4);
187 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_ICW2,
188 1.9 thorpej ICW2_VECTOR(0)/*XXX*/);
189 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_ICW3,
190 1.7 thorpej ICW3_CASCADE(2));
191 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_ICW4,
192 1.6 thorpej ICW4_8086);
193 1.6 thorpej
194 1.6 thorpej /* mask all interrupts */
195 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW1,
196 1.6 thorpej sc->sc_imask & 0xff);
197 1.6 thorpej
198 1.6 thorpej /* enable special mask mode */
199 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW3,
200 1.7 thorpej OCW3_SELECT | OCW3_SSMM | OCW3_SMM);
201 1.6 thorpej
202 1.6 thorpej /* read IRR by default */
203 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW3,
204 1.7 thorpej OCW3_SELECT | OCW3_RR);
205 1.6 thorpej
206 1.6 thorpej /* reset; program device, 4 bytes */
207 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_ICW1,
208 1.7 thorpej ICW1_SELECT | ICW1_IC4);
209 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_ICW2,
210 1.9 thorpej ICW2_VECTOR(0)/*XXX*/);
211 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_ICW3,
212 1.6 thorpej ICW3_SIC(2));
213 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_ICW4,
214 1.6 thorpej ICW4_8086);
215 1.6 thorpej
216 1.6 thorpej /* mask all interrupts */
217 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_OCW1,
218 1.6 thorpej (sc->sc_imask >> 8) & 0xff);
219 1.6 thorpej
220 1.6 thorpej /* enable special mask mode */
221 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_OCW3,
222 1.7 thorpej OCW3_SELECT | OCW3_SSMM | OCW3_SMM);
223 1.6 thorpej
224 1.6 thorpej /* read IRR by default */
225 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_OCW3,
226 1.7 thorpej OCW3_SELECT | OCW3_RR);
227 1.3 thorpej
228 1.3 thorpej /*
229 1.3 thorpej * Default all interrupts to edge-triggered.
230 1.3 thorpej */
231 1.3 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_elcr, 0,
232 1.3 thorpej sc->sc_elcr & 0xff);
233 1.3 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_elcr, 1,
234 1.3 thorpej (sc->sc_elcr >> 8) & 0xff);
235 1.3 thorpej
236 1.6 thorpej /*
237 1.6 thorpej * Some ISA interrupts are reserved for devices that
238 1.6 thorpej * we know are hard-wired to certain IRQs.
239 1.6 thorpej */
240 1.6 thorpej sc->sc_reserved =
241 1.6 thorpej (1U << 0) | /* timer */
242 1.6 thorpej (1U << 1) | /* keyboard controller */
243 1.7 thorpej (1U << 2) | /* PIC cascade */
244 1.6 thorpej (1U << 3) | /* COM 2 */
245 1.6 thorpej (1U << 4) | /* COM 1 */
246 1.6 thorpej (1U << 6) | /* floppy */
247 1.6 thorpej (1U << 7) | /* centronics */
248 1.6 thorpej (1U << 8) | /* RTC */
249 1.6 thorpej (1U << 12) | /* keyboard controller */
250 1.6 thorpej (1U << 14) | /* IDE 0 */
251 1.6 thorpej (1U << 15); /* IDE 1 */
252 1.6 thorpej
253 1.3 thorpej #if defined(ALGOR_P5064)
254 1.3 thorpej /*
255 1.3 thorpej * Some "ISA" interrupts are a little wacky, wired up directly
256 1.3 thorpej * to the P-5064 interrupt controller.
257 1.3 thorpej */
258 1.3 thorpej sc->sc_parent_ic = &p5064_configuration.ac_ic;
259 1.3 thorpej #endif /* ALGOR_P5064 */
260 1.3 thorpej
261 1.3 thorpej /* Set up our ISA chipset. */
262 1.3 thorpej sc->sc_ic.ic_v = sc;
263 1.3 thorpej sc->sc_ic.ic_intr_evcnt = pcib_isa_intr_evcnt;
264 1.3 thorpej sc->sc_ic.ic_intr_establish = pcib_isa_intr_establish;
265 1.3 thorpej sc->sc_ic.ic_intr_disestablish = pcib_isa_intr_disestablish;
266 1.3 thorpej sc->sc_ic.ic_intr_alloc = pcib_isa_intr_alloc;
267 1.3 thorpej
268 1.3 thorpej /* Initialize our interrupt table. */
269 1.3 thorpej for (i = 0; i < 16; i++) {
270 1.3 thorpej LIST_INIT(&sc->sc_intrtab[i].intr_q);
271 1.3 thorpej evcnt_attach_dynamic(&sc->sc_intrtab[i].intr_count,
272 1.3 thorpej EVCNT_TYPE_INTR, NULL, "pcib", pcib_intrnames[i]);
273 1.3 thorpej sc->sc_intrtab[i].intr_type = IST_NONE;
274 1.3 thorpej }
275 1.3 thorpej
276 1.3 thorpej /* Hook up our interrupt handler. */
277 1.3 thorpej #if defined(ALGOR_P5064)
278 1.5 thorpej sc->sc_ih = (*algor_intr_establish)(P5064_IRQ_ISABRIDGE,
279 1.5 thorpej pcib_intr, sc);
280 1.3 thorpej #elif defined(ALGOR_P6032)
281 1.8 thorpej sc->sc_ih = (*algor_intr_establish)(P6032_IRQ_ISABRIDGE,
282 1.3 thorpej pcib_intr, sc);
283 1.3 thorpej #endif
284 1.3 thorpej if (sc->sc_ih == NULL)
285 1.3 thorpej printf("%s: WARNING: unable to register interrupt handler\n",
286 1.3 thorpej sc->sc_dev.dv_xname);
287 1.3 thorpej
288 1.1 thorpej config_defer(self, pcib_bridge_callback);
289 1.1 thorpej }
290 1.1 thorpej
291 1.1 thorpej void
292 1.19.8.1 skrll pcib_bridge_callback(struct device *self)
293 1.1 thorpej {
294 1.1 thorpej struct pcib_softc *sc = (struct pcib_softc *)self;
295 1.1 thorpej struct isabus_attach_args iba;
296 1.1 thorpej
297 1.1 thorpej memset(&iba, 0, sizeof(iba));
298 1.1 thorpej
299 1.2 thorpej #if defined(ALGOR_P5064)
300 1.1 thorpej {
301 1.1 thorpej struct p5064_config *acp = &p5064_configuration;
302 1.1 thorpej
303 1.1 thorpej iba.iba_iot = &acp->ac_iot;
304 1.1 thorpej iba.iba_memt = &acp->ac_memt;
305 1.1 thorpej iba.iba_dmat = &acp->ac_isa_dmat;
306 1.1 thorpej }
307 1.1 thorpej #elif defined(ALGOR_P6032)
308 1.1 thorpej {
309 1.9 thorpej struct p6032_config *acp = &p6032_configuration;
310 1.9 thorpej
311 1.9 thorpej iba.iba_iot = &acp->ac_iot;
312 1.9 thorpej iba.iba_memt = &acp->ac_memt;
313 1.9 thorpej iba.iba_dmat = &acp->ac_isa_dmat;
314 1.1 thorpej }
315 1.1 thorpej #endif
316 1.1 thorpej
317 1.6 thorpej iba.iba_ic = &sc->sc_ic;
318 1.1 thorpej iba.iba_ic->ic_attach_hook = pcib_isa_attach_hook;
319 1.1 thorpej
320 1.16 drochner (void) config_found_ia(&sc->sc_dev, "isabus", &iba, isabusprint);
321 1.1 thorpej }
322 1.1 thorpej
323 1.1 thorpej void
324 1.1 thorpej pcib_isa_attach_hook(struct device *parent, struct device *self,
325 1.1 thorpej struct isabus_attach_args *iba)
326 1.1 thorpej {
327 1.1 thorpej
328 1.1 thorpej /* Nothing to do. */
329 1.3 thorpej }
330 1.3 thorpej
331 1.3 thorpej void
332 1.3 thorpej pcib_set_icus(struct pcib_softc *sc)
333 1.3 thorpej {
334 1.3 thorpej
335 1.3 thorpej /* Enable the cascade IRQ (2) if 8-15 is enabled. */
336 1.6 thorpej if ((sc->sc_imask & 0xff00) != 0xff00)
337 1.6 thorpej sc->sc_imask &= ~(1U << 2);
338 1.3 thorpej else
339 1.6 thorpej sc->sc_imask |= (1U << 2);
340 1.3 thorpej
341 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW1,
342 1.6 thorpej sc->sc_imask & 0xff);
343 1.6 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2, PIC_OCW1,
344 1.6 thorpej (sc->sc_imask >> 8) & 0xff);
345 1.3 thorpej
346 1.3 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_elcr, 0,
347 1.3 thorpej sc->sc_elcr & 0xff);
348 1.3 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_elcr, 1,
349 1.3 thorpej (sc->sc_elcr >> 8) & 0xff);
350 1.3 thorpej }
351 1.3 thorpej
352 1.3 thorpej int
353 1.3 thorpej pcib_intr(void *v)
354 1.3 thorpej {
355 1.3 thorpej struct pcib_softc *sc = v;
356 1.3 thorpej struct algor_intrhand *ih;
357 1.6 thorpej int irq;
358 1.3 thorpej
359 1.7 thorpej for (;;) {
360 1.7 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW3,
361 1.6 thorpej OCW3_SELECT | OCW3_POLL);
362 1.7 thorpej irq = bus_space_read_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW3);
363 1.7 thorpej if ((irq & OCW3_POLL_PENDING) == 0)
364 1.7 thorpej return (1);
365 1.7 thorpej
366 1.7 thorpej irq = OCW3_POLL_IRQ(irq);
367 1.7 thorpej
368 1.7 thorpej if (irq == 2) {
369 1.7 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2,
370 1.7 thorpej PIC_OCW3, OCW3_SELECT | OCW3_POLL);
371 1.7 thorpej irq = bus_space_read_1(sc->sc_iot, sc->sc_ioh_icu2,
372 1.7 thorpej PIC_OCW3);
373 1.7 thorpej if (irq & OCW3_POLL_PENDING)
374 1.7 thorpej irq = OCW3_POLL_IRQ(irq) + 8;
375 1.7 thorpej else
376 1.7 thorpej irq = 2;
377 1.7 thorpej }
378 1.7 thorpej
379 1.7 thorpej sc->sc_intrtab[irq].intr_count.ev_count++;
380 1.7 thorpej for (ih = LIST_FIRST(&sc->sc_intrtab[irq].intr_q);
381 1.7 thorpej ih != NULL; ih = LIST_NEXT(ih, ih_q)) {
382 1.7 thorpej (*ih->ih_func)(ih->ih_arg);
383 1.7 thorpej }
384 1.7 thorpej
385 1.7 thorpej /* Send a specific EOI to the 8259. */
386 1.7 thorpej if (irq > 7) {
387 1.7 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu2,
388 1.18 tsutsui PIC_OCW2, OCW2_SELECT | OCW2_EOI | OCW2_SL |
389 1.7 thorpej OCW2_ILS(irq & 7));
390 1.7 thorpej irq = 2;
391 1.7 thorpej }
392 1.3 thorpej
393 1.7 thorpej bus_space_write_1(sc->sc_iot, sc->sc_ioh_icu1, PIC_OCW2,
394 1.18 tsutsui OCW2_SELECT | OCW2_EOI | OCW2_SL | OCW2_ILS(irq));
395 1.3 thorpej }
396 1.3 thorpej }
397 1.3 thorpej
398 1.3 thorpej const struct evcnt *
399 1.3 thorpej pcib_isa_intr_evcnt(void *v, int irq)
400 1.3 thorpej {
401 1.3 thorpej struct pcib_softc *sc = v;
402 1.4 thorpej
403 1.4 thorpej #if defined(ALGOR_P5064)
404 1.6 thorpej if (p5064_isa_to_irqmap[irq] != -1)
405 1.4 thorpej return (isa_intr_evcnt(sc->sc_parent_ic, irq));
406 1.4 thorpej #endif
407 1.3 thorpej
408 1.3 thorpej return (&sc->sc_intrtab[irq].intr_count);
409 1.3 thorpej }
410 1.3 thorpej
411 1.3 thorpej void *
412 1.3 thorpej pcib_isa_intr_establish(void *v, int irq, int type, int level,
413 1.3 thorpej int (*func)(void *), void *arg)
414 1.3 thorpej {
415 1.3 thorpej struct pcib_softc *sc = v;
416 1.3 thorpej struct algor_intrhand *ih;
417 1.3 thorpej int s;
418 1.3 thorpej
419 1.3 thorpej if (irq > 15 || irq == 2 || type == IST_NONE)
420 1.3 thorpej panic("pcib_isa_intr_establish: bad irq or type");
421 1.3 thorpej
422 1.3 thorpej #if defined(ALGOR_P5064)
423 1.6 thorpej if (p5064_isa_to_irqmap[irq] != -1)
424 1.6 thorpej return (isa_intr_establish(sc->sc_parent_ic, irq, type,
425 1.6 thorpej level, func, arg));
426 1.3 thorpej #endif
427 1.3 thorpej
428 1.3 thorpej switch (sc->sc_intrtab[irq].intr_type) {
429 1.3 thorpej case IST_NONE:
430 1.3 thorpej sc->sc_intrtab[irq].intr_type = type;
431 1.3 thorpej break;
432 1.3 thorpej
433 1.3 thorpej case IST_EDGE:
434 1.3 thorpej case IST_LEVEL:
435 1.3 thorpej if (type == sc->sc_intrtab[irq].intr_type)
436 1.3 thorpej break;
437 1.3 thorpej /* FALLTHROUGH */
438 1.3 thorpej case IST_PULSE:
439 1.3 thorpej /*
440 1.3 thorpej * We can't share interrupts in this case.
441 1.3 thorpej */
442 1.3 thorpej return (NULL);
443 1.3 thorpej }
444 1.3 thorpej
445 1.3 thorpej ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT);
446 1.3 thorpej if (ih == NULL)
447 1.3 thorpej return (NULL);
448 1.3 thorpej
449 1.3 thorpej ih->ih_func = func;
450 1.3 thorpej ih->ih_arg = arg;
451 1.3 thorpej ih->ih_irq = irq;
452 1.3 thorpej ih->ih_irqmap = NULL;
453 1.3 thorpej
454 1.3 thorpej s = splhigh();
455 1.3 thorpej
456 1.3 thorpej /* Insert the handler into the table. */
457 1.3 thorpej LIST_INSERT_HEAD(&sc->sc_intrtab[irq].intr_q, ih, ih_q);
458 1.3 thorpej sc->sc_intrtab[irq].intr_type = type;
459 1.3 thorpej
460 1.3 thorpej /* Enable it, set trigger mode. */
461 1.6 thorpej sc->sc_imask &= ~(1 << irq);
462 1.3 thorpej if (sc->sc_intrtab[irq].intr_type == IST_LEVEL)
463 1.3 thorpej sc->sc_elcr |= (1 << irq);
464 1.3 thorpej else
465 1.3 thorpej sc->sc_elcr &= ~(1 << irq);
466 1.3 thorpej
467 1.3 thorpej pcib_set_icus(sc);
468 1.3 thorpej
469 1.3 thorpej splx(s);
470 1.3 thorpej
471 1.3 thorpej return (ih);
472 1.3 thorpej }
473 1.3 thorpej
474 1.3 thorpej void
475 1.3 thorpej pcib_isa_intr_disestablish(void *v, void *arg)
476 1.3 thorpej {
477 1.3 thorpej struct pcib_softc *sc = v;
478 1.3 thorpej struct algor_intrhand *ih = arg;
479 1.3 thorpej int s;
480 1.3 thorpej
481 1.3 thorpej #if defined(ALGOR_P5064)
482 1.6 thorpej if (p5064_isa_to_irqmap[ih->ih_irq] != -1) {
483 1.3 thorpej isa_intr_disestablish(sc->sc_parent_ic, ih);
484 1.3 thorpej return;
485 1.3 thorpej }
486 1.3 thorpej #endif
487 1.3 thorpej
488 1.3 thorpej s = splhigh();
489 1.3 thorpej
490 1.3 thorpej LIST_REMOVE(ih, ih_q);
491 1.3 thorpej
492 1.3 thorpej /* If there are no more handlers on this IRQ, disable it. */
493 1.3 thorpej if (LIST_FIRST(&sc->sc_intrtab[ih->ih_irq].intr_q) == NULL) {
494 1.6 thorpej sc->sc_imask |= (1 << ih->ih_irq);
495 1.3 thorpej pcib_set_icus(sc);
496 1.3 thorpej }
497 1.3 thorpej
498 1.3 thorpej splx(s);
499 1.3 thorpej
500 1.3 thorpej free(ih, M_DEVBUF);
501 1.3 thorpej }
502 1.3 thorpej
503 1.3 thorpej int
504 1.3 thorpej pcib_isa_intr_alloc(void *v, int mask, int type, int *irq)
505 1.3 thorpej {
506 1.3 thorpej struct pcib_softc *sc = v;
507 1.3 thorpej int i, tmp, bestirq, count;
508 1.3 thorpej struct algor_intrhand *ih;
509 1.3 thorpej
510 1.3 thorpej if (type == IST_NONE)
511 1.3 thorpej panic("pcib_intr_alloc: bogus type");
512 1.3 thorpej
513 1.3 thorpej bestirq = -1;
514 1.3 thorpej count = -1;
515 1.3 thorpej
516 1.3 thorpej mask &= ~sc->sc_reserved;
517 1.6 thorpej
518 1.6 thorpej #if 0
519 1.6 thorpej printf("pcib_intr_alloc: mask = 0x%04x\n", mask);
520 1.3 thorpej #endif
521 1.3 thorpej
522 1.3 thorpej for (i = 0; i < 16; i++) {
523 1.7 thorpej if ((mask & (1 << i)) == 0)
524 1.3 thorpej continue;
525 1.3 thorpej
526 1.3 thorpej switch (sc->sc_intrtab[i].intr_type) {
527 1.3 thorpej case IST_NONE:
528 1.3 thorpej /*
529 1.3 thorpej * If nothing's using the IRQ, just return it.
530 1.3 thorpej */
531 1.3 thorpej *irq = i;
532 1.3 thorpej return (0);
533 1.3 thorpej
534 1.3 thorpej case IST_EDGE:
535 1.3 thorpej case IST_LEVEL:
536 1.3 thorpej if (type != sc->sc_intrtab[i].intr_type)
537 1.3 thorpej continue;
538 1.3 thorpej /*
539 1.3 thorpej * If the IRQ is sharable, count the number of
540 1.3 thorpej * other handlers, and if it's smaller than the
541 1.3 thorpej * last IRQ like this, remember it.
542 1.3 thorpej */
543 1.3 thorpej tmp = 0;
544 1.3 thorpej for (ih = LIST_FIRST(&sc->sc_intrtab[i].intr_q);
545 1.3 thorpej ih != NULL; ih = LIST_NEXT(ih, ih_q))
546 1.3 thorpej tmp++;
547 1.3 thorpej if (bestirq == -1 || count > tmp) {
548 1.3 thorpej bestirq = i;
549 1.3 thorpej count = tmp;
550 1.3 thorpej }
551 1.3 thorpej break;
552 1.3 thorpej
553 1.3 thorpej case IST_PULSE:
554 1.3 thorpej /* This just isn't sharable. */
555 1.3 thorpej continue;
556 1.3 thorpej }
557 1.3 thorpej }
558 1.3 thorpej
559 1.3 thorpej if (bestirq == -1)
560 1.3 thorpej return (1);
561 1.3 thorpej
562 1.3 thorpej *irq = bestirq;
563 1.3 thorpej return (0);
564 1.1 thorpej }
565