i82365_isasubr.c revision 1.14 1 /* $NetBSD: i82365_isasubr.c,v 1.14 2000/02/08 17:53:48 mycroft Exp $ */
2
3 #define PCICISADEBUG
4
5 /*
6 * Copyright (c) 2000 Christian E. Hopps. All rights reserved.
7 * Copyright (c) 1998 Bill Sommerfeld. All rights reserved.
8 * Copyright (c) 1997 Marc Horowitz. All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by Marc Horowitz.
21 * 4. The name of the author may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36
37 #include <sys/types.h>
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/device.h>
41 #include <sys/extent.h>
42 #include <sys/malloc.h>
43
44 #include <vm/vm.h>
45
46 #include <machine/bus.h>
47 #include <machine/intr.h>
48
49 #include <dev/isa/isareg.h>
50 #include <dev/isa/isavar.h>
51
52 #include <dev/pcmcia/pcmciareg.h>
53 #include <dev/pcmcia/pcmciavar.h>
54 #include <dev/pcmcia/pcmciachip.h>
55
56 #include <dev/ic/i82365reg.h>
57 #include <dev/ic/i82365var.h>
58 #include <dev/isa/i82365_isavar.h>
59
60 /*****************************************************************************
61 * Configurable parameters.
62 *****************************************************************************/
63
64 #include "opt_pcic_isa_alloc_iobase.h"
65 #include "opt_pcic_isa_alloc_iosize.h"
66 #include "opt_pcic_isa_intr_alloc_mask.h"
67
68 /*
69 * Default I/O allocation range. If both are set to non-zero, these
70 * values will be used instead. Otherwise, the code attempts to probe
71 * the bus width. Systems with 10 address bits should use 0x300 and 0xff.
72 * Systems with 12 address bits (most) should use 0x400 and 0xbff.
73 */
74
75 #ifndef PCIC_ISA_ALLOC_IOBASE
76 #define PCIC_ISA_ALLOC_IOBASE 0
77 #endif
78
79 #ifndef PCIC_ISA_ALLOC_IOSIZE
80 #define PCIC_ISA_ALLOC_IOSIZE 0
81 #endif
82
83 int pcic_isa_alloc_iobase = PCIC_ISA_ALLOC_IOBASE;
84 int pcic_isa_alloc_iosize = PCIC_ISA_ALLOC_IOSIZE;
85
86
87 /*
88 * Default IRQ allocation bitmask. This defines the range of allowable
89 * IRQs for PCMCIA slots. Useful if order of probing would screw up other
90 * devices, or if PCIC hardware/cards have trouble with certain interrupt
91 * lines.
92 *
93 * We disable IRQ 10 by default, since some common laptops (namely, the
94 * NEC Versa series) reserve IRQ 10 for the docking station SCSI interface.
95 */
96
97 #ifndef PCIC_ISA_INTR_ALLOC_MASK
98 #define PCIC_ISA_INTR_ALLOC_MASK 0xffff
99 #endif
100
101 int pcic_isa_intr_alloc_mask = PCIC_ISA_INTR_ALLOC_MASK;
102
103 #ifndef PCIC_NO_IRQ_PROBE
104 #ifdef __hpcmips__
105 #define PCIC_NO_IRQ_PROBE 0
106 #else
107 #define PCIC_NO_IRQ_PROBE 1
108 #endif
109 #endif
110
111 int pcic_no_irq_probe = PCIC_NO_IRQ_PROBE;
112
113 /*****************************************************************************
114 * End of configurable parameters.
115 *****************************************************************************/
116
117 #ifdef PCICISADEBUG
118 int pcicsubr_debug = 0;
119 #define DPRINTF(arg) do { if (pcicsubr_debug) printf arg ; } while (0)
120 #else
121 #define DPRINTF(arg)
122 #endif
123
124 /*
125 * count the interrupt if we have a status set
126 * just use socket 0
127 */
128
129 void pcic_isa_probe_interrupts __P((struct pcic_softc *, struct pcic_handle *));
130 static int pcic_isa_count_intr __P((void *));
131
132 static int
133 pcic_isa_count_intr(arg)
134 void *arg;
135 {
136 struct pcic_softc *sc;
137 struct pcic_handle *h;
138 int cscreg;
139
140 h = arg;
141 sc = (struct pcic_softc *)h->ph_parent;
142
143 cscreg = pcic_read(h, PCIC_CSC);
144 if (cscreg & PCIC_CSC_CD) {
145 if ((++sc->intr_detect % 20) == 0)
146 printf(".");
147 else
148 DPRINTF(("."));
149 return (1);
150 }
151
152 /*
153 * make sure we don't get stuck in a loop due to
154 * unhandled level interupts
155 */
156 if (++sc->intr_false > 40) {
157 pcic_write(h, PCIC_CSC_INTR, 0);
158 delay(10);
159
160 isa_intr_disestablish(sc->intr_est, sc->ih);
161 sc->ih = 0;
162 }
163
164 #ifdef PCICISADEBUG
165 if (cscreg)
166 DPRINTF(("o"));
167 else
168 DPRINTF(("X"));
169 #endif
170 return (cscreg ? 1 : 0);
171 }
172
173 /*
174 * use soft interrupt card detect to find out which irqs are available
175 * for this controller
176 */
177 void
178 pcic_isa_probe_interrupts(sc, h)
179 struct pcic_softc *sc;
180 struct pcic_handle *h;
181 {
182 isa_chipset_tag_t ic;
183 int i, j, mask, irq;
184 int cd, cscintr, intr, csc;
185
186 ic = sc->intr_est;
187
188 printf("%s: controller %d detecting irqs with mask 0x%04x:",
189 sc->dev.dv_xname, h->chip, sc->intr_mask[h->chip]);
190 DPRINTF(("\n"));
191
192 /* clear any current interrupt */
193 pcic_read(h, PCIC_CSC);
194
195 /* first disable the status irq, card detect is enabled later */
196 pcic_write(h, PCIC_CSC_INTR, 0);
197
198 /* steer the interrupt to isa and disable ring and interrupt */
199 intr = pcic_read(h, PCIC_INTR);
200 DPRINTF(("pcic: old intr 0x%x\n", intr));
201 intr &= ~(PCIC_INTR_RI_ENABLE | PCIC_INTR_ENABLE | PCIC_INTR_IRQ_MASK);
202 pcic_write(h, PCIC_INTR, intr);
203
204
205 /* clear any current interrupt */
206 pcic_read(h, PCIC_CSC);
207
208 cd = pcic_read(h, PCIC_CARD_DETECT);
209 cd |= PCIC_CARD_DETECT_SW_INTR;
210
211 mask = 0;
212 for (i = 0; i < 16; i++) {
213 /* honor configured limitations */
214 if ((sc->intr_mask[h->chip] & (1 << i)) == 0)
215 continue;
216
217 DPRINTF(("probing irq %d: ", i));
218
219 /* ask for a pulse interrupt so we don't share */
220 if (isa_intr_alloc(ic, (1 << i), IST_PULSE, &irq)) {
221 DPRINTF(("currently allocated\n"));
222 continue;
223 }
224
225 if ((sc->ih = isa_intr_establish(ic, irq, IST_LEVEL, IPL_TTY,
226 pcic_isa_count_intr, h)) == NULL)
227 panic("cant get interrupt");
228
229 cscintr = PCIC_CSC_INTR_CD_ENABLE;
230 cscintr |= (irq << PCIC_CSC_INTR_IRQ_SHIFT);
231 pcic_write(h, PCIC_CSC_INTR, cscintr);
232 delay(10);
233
234 /* interrupt 40 times */
235 sc->intr_detect = 0;
236 for (j = 0; j < 40 && sc->ih; j++) {
237 sc->intr_false = 0;
238 pcic_write(h, PCIC_CARD_DETECT, cd);
239 delay(100);
240 csc = pcic_read(h, PCIC_CSC);
241 DPRINTF(("%s", csc ? "-" : ""));
242 }
243 DPRINTF((" total %d\n", sc->intr_detect));
244 /* allow for misses */
245 if (sc->intr_detect > 37 && sc->intr_detect <= 40) {
246 printf("%d", i);
247 DPRINTF((" succeded\n"));
248 mask |= (1 << i);
249 }
250
251 if (sc->ih) {
252 pcic_write(h, PCIC_CSC_INTR, 0);
253 delay(10);
254
255 isa_intr_disestablish(ic, sc->ih);
256 sc->ih = 0;
257 }
258 }
259 sc->intr_mask[h->chip] = mask;
260
261 printf("%s\n", sc->intr_mask ? "" : " none");
262 }
263
264 /*
265 * called with interrupts enabled, light up the irqs to find out
266 * which irq lines are actually hooked up to our pcic
267 */
268 void
269 pcic_isa_config_interrupts(self)
270 struct device *self;
271 {
272 struct pcic_softc *sc;
273 struct pcic_handle *h;
274 isa_chipset_tag_t ic;
275 int s, i, chipmask, chipuniq;
276
277 sc = (struct pcic_softc *)self;
278 ic = sc->intr_est;
279
280 /* probe each controller */
281 chipmask = 0xffff;
282 for (i = 0; i < PCIC_NSLOTS; i += 2) {
283 if (sc->handle[i].flags & PCIC_FLAG_SOCKETP)
284 h = &sc->handle[i];
285 else if (sc->handle[i + 1].flags & PCIC_FLAG_SOCKETP)
286 h = &sc->handle[i + 1];
287 else
288 continue;
289
290 sc->intr_mask[h->chip] =
291 PCIC_INTR_IRQ_VALIDMASK & pcic_isa_intr_alloc_mask;
292
293 /* the cirrus chips lack support for the soft interrupt */
294 if (pcic_no_irq_probe != 0 &&
295 h->vendor != PCIC_VENDOR_CIRRUS_PD6710 &&
296 h->vendor != PCIC_VENDOR_CIRRUS_PD672X)
297 pcic_isa_probe_interrupts(sc, h);
298
299 chipmask &= sc->intr_mask[h->chip];
300 }
301 /* now see if there is at least one irq per chip not shared by all */
302 chipuniq = 1;
303 for (i = 0; i < PCIC_NSLOTS; i += 2) {
304 if ((sc->handle[i].flags & PCIC_FLAG_SOCKETP) == 0 &&
305 (sc->handle[i + 1].flags & PCIC_FLAG_SOCKETP) == 0)
306 continue;
307 if ((sc->intr_mask[i / 2] & ~chipmask) == 0) {
308 chipuniq = 0;
309 break;
310 }
311 }
312 /*
313 * the rest of the following code used to run at config time with
314 * no interrupts and gets unhappy if this is violated so...
315 */
316 s = splhigh();
317
318 /*
319 * allocate our irq. it will be used by both controllers. I could
320 * use two different interrupts, but interrupts are relatively
321 * scarce, shareable, and for PCIC controllers, very infrequent.
322 */
323 if (sc->irq != IRQUNK) {
324 if ((chipmask & (1 << sc->irq)) == 0)
325 printf("%s: warning: configured irq %d not detected as"
326 " available\n", sc->dev.dv_xname, sc->irq);
327 } else if (chipmask == 0 ||
328 isa_intr_alloc(ic, chipmask, IST_EDGE, &sc->irq)) {
329 printf("%s: no available irq", sc->dev.dv_xname);
330 sc->irq = IRQUNK;
331 } else if ((chipmask & ~(1 << sc->irq)) == 0 && chipuniq == 0) {
332 printf("%s: can't share irq with cards", sc->dev.dv_xname);
333 sc->irq = IRQUNK;
334 }
335 if (sc->irq != IRQUNK) {
336 sc->ih = isa_intr_establish(ic, sc->irq, IST_EDGE, IPL_TTY,
337 pcic_intr, sc);
338 if (sc->ih == NULL) {
339 printf("%s: can't establish interrupt",
340 sc->dev.dv_xname);
341 sc->irq = IRQUNK;
342 }
343 }
344 if (sc->irq == IRQUNK)
345 printf("; polling for socket events\n");
346 else
347 printf("%s: using irq %d for socket events\n", sc->dev.dv_xname,
348 sc->irq);
349
350 pcic_attach_sockets_finish(sc);
351
352 splx(s);
353 }
354
355 /*
356 * XXX This routine does not deal with the aliasing issue that its
357 * trying to.
358 *
359 * Any isa device may be decoding only 10 bits of address including
360 * the pcic. This routine only detects if the pcic is doing 10 bits.
361 *
362 * What should be done is detect the pcic's idea of the bus width,
363 * and then within those limits allocate a sparse map, where the
364 * each sub region is offset by 0x400.
365 */
366 void pcic_isa_bus_width_probe (sc, iot, ioh, base, length)
367 struct pcic_softc *sc;
368 bus_space_tag_t iot;
369 bus_space_handle_t ioh;
370 bus_addr_t base;
371 u_int32_t length;
372 {
373 bus_space_handle_t ioh_high;
374 int i, iobuswidth, tmp1, tmp2;
375
376 /*
377 * figure out how wide the isa bus is. Do this by checking if the
378 * pcic controller is mirrored 0x400 above where we expect it to be.
379 */
380
381 iobuswidth = 12;
382
383 /* Map i/o space. */
384 if (bus_space_map(iot, base + 0x400, length, 0, &ioh_high)) {
385 printf("%s: can't map high i/o space\n", sc->dev.dv_xname);
386 return;
387 }
388
389 for (i = 0; i < PCIC_NSLOTS; i++) {
390 if (sc->handle[i].flags & PCIC_FLAG_SOCKETP) {
391 /*
392 * read the ident flags from the normal space and
393 * from the mirror, and compare them
394 */
395
396 bus_space_write_1(iot, ioh, PCIC_REG_INDEX,
397 sc->handle[i].sock + PCIC_IDENT);
398 tmp1 = bus_space_read_1(iot, ioh, PCIC_REG_DATA);
399
400 bus_space_write_1(iot, ioh_high, PCIC_REG_INDEX,
401 sc->handle[i].sock + PCIC_IDENT);
402 tmp2 = bus_space_read_1(iot, ioh_high, PCIC_REG_DATA);
403
404 if (tmp1 == tmp2)
405 iobuswidth = 10;
406 }
407 }
408
409 bus_space_free(iot, ioh_high, length);
410
411 /*
412 * XXX mycroft recommends I/O space range 0x400-0xfff . I should put
413 * this in a header somewhere
414 */
415
416 /*
417 * XXX some hardware doesn't seem to grok addresses in 0x400 range--
418 * apparently missing a bit or more of address lines. (e.g.
419 * CIRRUS_PD672X with Linksys EthernetCard ne2000 clone in TI
420 * TravelMate 5000--not clear which is at fault)
421 *
422 * Add a kludge to detect 10 bit wide buses and deal with them,
423 * and also a config file option to override the probe.
424 */
425
426 if (iobuswidth == 10) {
427 sc->iobase = 0x300;
428 sc->iosize = 0x0ff;
429 } else {
430 #if 0
431 /*
432 * This is what we'd like to use, but...
433 */
434 sc->iobase = 0x400;
435 sc->iosize = 0xbff;
436 #else
437 /*
438 * ...the above bus width probe doesn't always work.
439 * So, experimentation has shown the following range
440 * to not lose on systems that 0x300-0x3ff loses on
441 * (e.g. the NEC Versa 6030X).
442 */
443 sc->iobase = 0x330;
444 sc->iosize = 0x0cf;
445 #endif
446 }
447
448 DPRINTF(("%s: bus_space_alloc range 0x%04lx-0x%04lx (probed)\n",
449 sc->dev.dv_xname, (long) sc->iobase,
450
451 (long) sc->iobase + sc->iosize));
452
453 if (pcic_isa_alloc_iobase && pcic_isa_alloc_iosize) {
454 sc->iobase = pcic_isa_alloc_iobase;
455 sc->iosize = pcic_isa_alloc_iosize;
456
457 DPRINTF(("%s: bus_space_alloc range 0x%04lx-0x%04lx "
458 "(config override)\n", sc->dev.dv_xname, (long) sc->iobase,
459 (long) sc->iobase + sc->iosize));
460 }
461 }
462
463 void *
464 pcic_isa_chip_intr_establish(pch, pf, ipl, fct, arg)
465 pcmcia_chipset_handle_t pch;
466 struct pcmcia_function *pf;
467 int ipl;
468 int (*fct) __P((void *));
469 void *arg;
470 {
471 struct pcic_handle *h = (struct pcic_handle *) pch;
472 struct pcic_softc *sc = (struct pcic_softc *)(h->ph_parent);
473 isa_chipset_tag_t ic = sc->intr_est;
474 int irq, ist;
475 void *ih;
476 int reg;
477
478 if (pf->cfe->flags & PCMCIA_CFE_IRQLEVEL)
479 ist = IST_LEVEL;
480 else if (pf->cfe->flags & PCMCIA_CFE_IRQPULSE)
481 ist = IST_PULSE;
482 else
483 ist = IST_EDGE;
484
485 if (isa_intr_alloc(ic, sc->intr_mask[h->chip], ist, &irq))
486 return (NULL);
487 if ((ih = isa_intr_establish(ic, irq, ist, ipl, fct, arg)) == NULL)
488 return (NULL);
489
490 h->ih_irq = irq;
491 if (h->flags & PCIC_FLAG_ENABLED) {
492 reg = pcic_read(h, PCIC_INTR);
493 reg &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_ENABLE);
494 reg |= irq;
495 pcic_write(h, PCIC_INTR, reg);
496 }
497
498 printf("%s: card irq %d\n", h->pcmcia->dv_xname, irq);
499
500 return (ih);
501 }
502
503 void
504 pcic_isa_chip_intr_disestablish(pch, ih)
505 pcmcia_chipset_handle_t pch;
506 void *ih;
507 {
508 struct pcic_handle *h = (struct pcic_handle *) pch;
509 struct pcic_softc *sc = (struct pcic_softc *)(h->ph_parent);
510 isa_chipset_tag_t ic = sc->intr_est;
511 int reg;
512
513 h->ih_irq = 0;
514 if (h->flags & PCIC_FLAG_ENABLED) {
515 reg = pcic_read(h, PCIC_INTR);
516 reg &= ~(PCIC_INTR_IRQ_MASK | PCIC_INTR_ENABLE);
517 pcic_write(h, PCIC_INTR, reg);
518 }
519 isa_intr_disestablish(ic, ih);
520 }
521