fhpib.c revision 1.31 1 /* $NetBSD: fhpib.c,v 1.31 2006/02/23 05:37:47 thorpej Exp $ */
2
3 /*-
4 * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Jason R. Thorpe.
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 the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * Copyright (c) 1982, 1990, 1993
41 * The Regents of the University of California. All rights reserved.
42 *
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
45 * are met:
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. Neither the name of the University nor the names of its contributors
52 * may be used to endorse or promote products derived from this software
53 * without specific prior written permission.
54 *
55 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65 * SUCH DAMAGE.
66 *
67 * @(#)fhpib.c 8.2 (Berkeley) 1/12/94
68 */
69
70 /*
71 * 98625A/B HPIB driver
72 */
73
74 #include <sys/cdefs.h>
75 __KERNEL_RCSID(0, "$NetBSD: fhpib.c,v 1.31 2006/02/23 05:37:47 thorpej Exp $");
76
77 #include <sys/param.h>
78 #include <sys/systm.h>
79 #include <sys/callout.h>
80 #include <sys/kernel.h>
81 #include <sys/buf.h>
82 #include <sys/device.h>
83
84 #include <machine/autoconf.h>
85 #include <machine/intr.h>
86
87 #include <hp300/dev/diovar.h>
88 #include <hp300/dev/diodevs.h>
89
90 #include <hp300/dev/dmavar.h>
91
92 #include <hp300/dev/fhpibreg.h>
93 #include <hp300/dev/hpibvar.h>
94
95 /*
96 * Inline version of fhpibwait to be used in places where
97 * we don't worry about getting hung.
98 */
99 #define FHPIBWAIT(hd, m) while (((hd)->hpib_intr & (m)) == 0) DELAY(1)
100
101 #ifdef DEBUG
102 int fhpibdebugunit = -1;
103 int fhpibdebug = 0;
104 #define FDB_FAIL 0x01
105 #define FDB_DMA 0x02
106 #define FDB_WAIT 0x04
107 #define FDB_PPOLL 0x08
108
109 int dopriodma = 0; /* use high priority DMA */
110 int doworddma = 1; /* non-zero if we should attempt word DMA */
111 int doppollint = 1; /* use ppoll interrupts instead of watchdog */
112 int fhpibppolldelay = 50;
113 #endif
114
115 static void fhpibifc(struct fhpibdevice *);
116 static void fhpibdmadone(void *);
117 static int fhpibwait(struct fhpibdevice *, int);
118
119 static void fhpibreset(struct hpibbus_softc *);
120 static int fhpibsend(struct hpibbus_softc *, int, int, void *, int);
121 static int fhpibrecv(struct hpibbus_softc *, int, int, void *, int);
122 static int fhpibppoll(struct hpibbus_softc *);
123 static void fhpibppwatch(void *);
124 static void fhpibgo(struct hpibbus_softc *, int, int, void *, int, int,
125 int);
126 static void fhpibdone(struct hpibbus_softc *);
127 static int fhpibintr(void *);
128
129 /*
130 * Our controller ops structure.
131 */
132 static struct hpib_controller fhpib_controller = {
133 fhpibreset,
134 fhpibsend,
135 fhpibrecv,
136 fhpibppoll,
137 fhpibppwatch,
138 fhpibgo,
139 fhpibdone,
140 fhpibintr
141 };
142
143 struct fhpib_softc {
144 struct device sc_dev; /* generic device glue */
145 struct fhpibdevice *sc_regs; /* device registers */
146 int sc_cmd;
147 struct hpibbus_softc *sc_hpibbus; /* XXX */
148 struct callout sc_dmadone_ch;
149 struct callout sc_ppwatch_ch;
150 };
151
152 static int fhpibmatch(struct device *, struct cfdata *, void *);
153 static void fhpibattach(struct device *, struct device *, void *);
154
155 CFATTACH_DECL(fhpib, sizeof(struct fhpib_softc),
156 fhpibmatch, fhpibattach, NULL, NULL);
157
158 static int
159 fhpibmatch(struct device *parent, struct cfdata *match, void *aux)
160 {
161 struct dio_attach_args *da = aux;
162
163 if (da->da_id == DIO_DEVICE_ID_FHPIB)
164 return (1);
165
166 return (0);
167 }
168
169 static void
170 fhpibattach(struct device *parent, struct device *self, void *aux)
171 {
172 struct fhpib_softc *sc = (struct fhpib_softc *)self;
173 struct dio_attach_args *da = aux;
174 struct hpibdev_attach_args ha;
175
176 sc->sc_regs = (struct fhpibdevice *)iomap(dio_scodetopa(da->da_scode),
177 da->da_size);
178 if (sc->sc_regs == NULL) {
179 printf("\n%s: can't map registers\n", self->dv_xname);
180 return;
181 }
182
183 printf(": %s\n", DIO_DEVICE_DESC_FHPIB);
184
185 /* Establish the interrupt handler. */
186 (void) dio_intr_establish(fhpibintr, sc, da->da_ipl, IPL_BIO);
187
188 callout_init(&sc->sc_dmadone_ch);
189 callout_init(&sc->sc_ppwatch_ch);
190
191 ha.ha_ops = &fhpib_controller;
192 ha.ha_type = HPIBC; /* XXX */
193 ha.ha_ba = HPIBC_BA;
194 ha.ha_softcpp = &sc->sc_hpibbus; /* XXX */
195 (void)config_found(self, &ha, hpibdevprint);
196 }
197
198 static void
199 fhpibreset(struct hpibbus_softc *hs)
200 {
201 struct fhpib_softc *sc =
202 (struct fhpib_softc *)device_parent(&hs->sc_dev);
203 struct fhpibdevice *hd = sc->sc_regs;
204
205 hd->hpib_cid = 0xFF;
206 DELAY(100);
207 hd->hpib_cmd = CT_8BIT;
208 hd->hpib_ar = AR_ARONC;
209 fhpibifc(hd);
210 hd->hpib_ie = IDS_IE;
211 hd->hpib_data = C_DCL;
212 DELAY(100000);
213 /*
214 * See if we can do word DMA.
215 * If so, we should be able to write and read back the appropos bit.
216 */
217 hd->hpib_ie |= IDS_WDMA;
218 if (hd->hpib_ie & IDS_WDMA) {
219 hd->hpib_ie &= ~IDS_WDMA;
220 hs->sc_flags |= HPIBF_DMA16;
221 #ifdef DEBUG
222 if (fhpibdebug & FDB_DMA)
223 printf("fhpibtype: %s has word DMA\n",
224 sc->sc_dev.dv_xname);
225
226 #endif
227 }
228 }
229
230 static void
231 fhpibifc(struct fhpibdevice *hd)
232 {
233 hd->hpib_cmd |= CT_IFC;
234 hd->hpib_cmd |= CT_INITFIFO;
235 DELAY(100);
236 hd->hpib_cmd &= ~CT_IFC;
237 hd->hpib_cmd |= CT_REN;
238 hd->hpib_stat = ST_ATN;
239 }
240
241 static int
242 fhpibsend(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt)
243 {
244 struct fhpib_softc *sc =
245 (struct fhpib_softc *)device_parent(&hs->sc_dev);
246 struct fhpibdevice *hd = sc->sc_regs;
247 int cnt = origcnt;
248 int timo;
249 char *addr = ptr;
250
251 hd->hpib_stat = 0;
252 hd->hpib_imask = IM_IDLE | IM_ROOM;
253 if (fhpibwait(hd, IM_IDLE) < 0)
254 goto senderr;
255 hd->hpib_stat = ST_ATN;
256 hd->hpib_data = C_UNL;
257 hd->hpib_data = C_TAG + hs->sc_ba;
258 hd->hpib_data = C_LAG + slave;
259 if (sec < 0) {
260 if (sec == -2) /* selected device clear KLUDGE */
261 hd->hpib_data = C_SDC;
262 } else
263 hd->hpib_data = C_SCG + sec;
264 if (fhpibwait(hd, IM_IDLE) < 0)
265 goto senderr;
266 if (cnt) {
267 hd->hpib_stat = ST_WRITE;
268 while (--cnt) {
269 hd->hpib_data = *addr++;
270 timo = hpibtimeout;
271 while ((hd->hpib_intr & IM_ROOM) == 0) {
272 if (--timo <= 0)
273 goto senderr;
274 DELAY(1);
275 }
276 }
277 hd->hpib_stat = ST_EOI;
278 hd->hpib_data = *addr;
279 FHPIBWAIT(hd, IM_ROOM);
280 hd->hpib_stat = ST_ATN;
281 /* XXX: HP-UX claims bug with CS80 transparent messages */
282 if (sec == 0x12)
283 DELAY(150);
284 hd->hpib_data = C_UNL;
285 (void) fhpibwait(hd, IM_IDLE);
286 }
287 hd->hpib_imask = 0;
288 return (origcnt);
289
290 senderr:
291 hd->hpib_imask = 0;
292 fhpibifc(hd);
293 #ifdef DEBUG
294 if (fhpibdebug & FDB_FAIL) {
295 printf("%s: fhpibsend failed: slave %d, sec %x, ",
296 sc->sc_dev.dv_xname, slave, sec);
297 printf("sent %d of %d bytes\n", origcnt-cnt-1, origcnt);
298 }
299 #endif
300 return (origcnt - cnt - 1);
301 }
302
303 static int
304 fhpibrecv(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt)
305 {
306 struct fhpib_softc *sc =
307 (struct fhpib_softc *)device_parent(&hs->sc_dev);
308 struct fhpibdevice *hd = sc->sc_regs;
309 int cnt = origcnt;
310 int timo;
311 char *addr = ptr;
312
313 /*
314 * Slave < 0 implies continuation of a previous receive
315 * that probably timed out.
316 */
317 if (slave >= 0) {
318 hd->hpib_stat = 0;
319 hd->hpib_imask = IM_IDLE | IM_ROOM | IM_BYTE;
320 if (fhpibwait(hd, IM_IDLE) < 0)
321 goto recverror;
322 hd->hpib_stat = ST_ATN;
323 hd->hpib_data = C_UNL;
324 hd->hpib_data = C_LAG + hs->sc_ba;
325 hd->hpib_data = C_TAG + slave;
326 if (sec != -1)
327 hd->hpib_data = C_SCG + sec;
328 if (fhpibwait(hd, IM_IDLE) < 0)
329 goto recverror;
330 hd->hpib_stat = ST_READ0;
331 hd->hpib_data = 0;
332 }
333 if (cnt) {
334 while (--cnt >= 0) {
335 timo = hpibtimeout;
336 while ((hd->hpib_intr & IM_BYTE) == 0) {
337 if (--timo == 0)
338 goto recvbyteserror;
339 DELAY(1);
340 }
341 *addr++ = hd->hpib_data;
342 }
343 FHPIBWAIT(hd, IM_ROOM);
344 hd->hpib_stat = ST_ATN;
345 hd->hpib_data = (slave == 31) ? C_UNA : C_UNT;
346 (void) fhpibwait(hd, IM_IDLE);
347 }
348 hd->hpib_imask = 0;
349 return (origcnt);
350
351 recverror:
352 fhpibifc(hd);
353 recvbyteserror:
354 hd->hpib_imask = 0;
355 #ifdef DEBUG
356 if (fhpibdebug & FDB_FAIL) {
357 printf("%s: fhpibrecv failed: slave %d, sec %x, ",
358 sc->sc_dev.dv_xname, slave, sec);
359 printf("got %d of %d bytes\n", origcnt-cnt-1, origcnt);
360 }
361 #endif
362 return (origcnt - cnt - 1);
363 }
364
365 static void
366 fhpibgo(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int count,
367 int rw, int timo)
368 {
369 struct fhpib_softc *sc =
370 (struct fhpib_softc *)device_parent(&hs->sc_dev);
371 struct fhpibdevice *hd = sc->sc_regs;
372 int i;
373 char *addr = ptr;
374 int flags = 0;
375
376 hs->sc_flags |= HPIBF_IO;
377 if (timo)
378 hs->sc_flags |= HPIBF_TIMO;
379 if (rw == B_READ)
380 hs->sc_flags |= HPIBF_READ;
381 #ifdef DEBUG
382 else if (hs->sc_flags & HPIBF_READ) {
383 printf("fhpibgo: HPIBF_READ still set\n");
384 hs->sc_flags &= ~HPIBF_READ;
385 }
386 #endif
387 hs->sc_count = count;
388 hs->sc_addr = addr;
389 #ifdef DEBUG
390 /* fhpibtransfer[unit]++; XXX */
391 #endif
392 if ((hs->sc_flags & HPIBF_DMA16) &&
393 ((int)addr & 1) == 0 && count && (count & 1) == 0
394 #ifdef DEBUG
395 && doworddma
396 #endif
397 ) {
398 #ifdef DEBUG
399 /* fhpibworddma[unit]++; XXX */
400 #endif
401 flags |= DMAGO_WORD;
402 hd->hpib_latch = 0;
403 }
404 #ifdef DEBUG
405 if (dopriodma)
406 flags |= DMAGO_PRI;
407 #endif
408 if (hs->sc_flags & HPIBF_READ) {
409 sc->sc_cmd = CT_REN | CT_8BIT;
410 hs->sc_curcnt = count;
411 dmago(hs->sc_dq->dq_chan, addr, count, flags|DMAGO_READ);
412 if (fhpibrecv(hs, slave, sec, 0, 0) < 0) {
413 #ifdef DEBUG
414 printf("fhpibgo: recv failed, retrying...\n");
415 #endif
416 (void) fhpibrecv(hs, slave, sec, 0, 0);
417 }
418 i = hd->hpib_cmd;
419 hd->hpib_cmd = sc->sc_cmd;
420 hd->hpib_ie = IDS_DMA(hs->sc_dq->dq_chan) |
421 ((flags & DMAGO_WORD) ? IDS_WDMA : 0);
422 return;
423 }
424 sc->sc_cmd = CT_REN | CT_8BIT | CT_FIFOSEL;
425 if (count < hpibdmathresh) {
426 #ifdef DEBUG
427 /* fhpibnondma[unit]++; XXX */
428 if (flags & DMAGO_WORD)
429 /* fhpibworddma[unit]--; XXX */ ;
430 #endif
431 hs->sc_curcnt = count;
432 (void) fhpibsend(hs, slave, sec, addr, count);
433 fhpibdone(hs);
434 return;
435 }
436 count -= (flags & DMAGO_WORD) ? 2 : 1;
437 hs->sc_curcnt = count;
438 dmago(hs->sc_dq->dq_chan, addr, count, flags);
439 if (fhpibsend(hs, slave, sec, 0, 0) < 0) {
440 #ifdef DEBUG
441 printf("fhpibgo: send failed, retrying...\n");
442 #endif
443 (void) fhpibsend(hs, slave, sec, 0, 0);
444 }
445 i = hd->hpib_cmd;
446 hd->hpib_cmd = sc->sc_cmd;
447 hd->hpib_ie = IDS_DMA(hs->sc_dq->dq_chan) | IDS_WRITE |
448 ((flags & DMAGO_WORD) ? IDS_WDMA : 0);
449 }
450
451 /*
452 * A DMA read can finish but the device can still be waiting (MAG-tape
453 * with more data than we're waiting for). This timeout routine
454 * takes care of that. Somehow, the thing gets hosed. For now, since
455 * this should be a very rare occurence, we RESET it.
456 */
457 static void
458 fhpibdmadone(void *arg)
459 {
460 struct hpibbus_softc *hs = arg;
461 struct fhpib_softc *sc =
462 (struct fhpib_softc *)device_parent(&hs->sc_dev);
463 int s = splbio();
464
465 if (hs->sc_flags & HPIBF_IO) {
466 struct fhpibdevice *hd = sc->sc_regs;
467 struct hpibqueue *hq;
468
469 hd->hpib_imask = 0;
470 hd->hpib_cid = 0xFF;
471 DELAY(100);
472 hd->hpib_cmd = CT_8BIT;
473 hd->hpib_ar = AR_ARONC;
474 fhpibifc(hd);
475 hd->hpib_ie = IDS_IE;
476 hs->sc_flags &= ~(HPIBF_DONE|HPIBF_IO|HPIBF_READ|HPIBF_TIMO);
477 dmafree(hs->sc_dq);
478
479 hq = hs->sc_queue.tqh_first;
480 (hq->hq_intr)(hq->hq_softc);
481 }
482 splx(s);
483 }
484
485 static void
486 fhpibdone(struct hpibbus_softc *hs)
487 {
488 struct fhpib_softc *sc =
489 (struct fhpib_softc *)device_parent(&hs->sc_dev);
490 struct fhpibdevice *hd = sc->sc_regs;
491 char *addr;
492 int cnt;
493
494 cnt = hs->sc_curcnt;
495 hs->sc_addr += cnt;
496 hs->sc_count -= cnt;
497 #ifdef DEBUG
498 if ((fhpibdebug & FDB_DMA) && fhpibdebugunit == sc->sc_dev.dv_unit)
499 printf("fhpibdone: addr %p cnt %d\n",
500 hs->sc_addr, hs->sc_count);
501 #endif
502 if (hs->sc_flags & HPIBF_READ) {
503 hd->hpib_imask = IM_IDLE | IM_BYTE;
504 if (hs->sc_flags & HPIBF_TIMO)
505 callout_reset(&sc->sc_dmadone_ch, hz >> 2,
506 fhpibdmadone, hs);
507 } else {
508 cnt = hs->sc_count;
509 if (cnt) {
510 addr = hs->sc_addr;
511 hd->hpib_imask = IM_IDLE | IM_ROOM;
512 FHPIBWAIT(hd, IM_IDLE);
513 hd->hpib_stat = ST_WRITE;
514 while (--cnt) {
515 hd->hpib_data = *addr++;
516 FHPIBWAIT(hd, IM_ROOM);
517 }
518 hd->hpib_stat = ST_EOI;
519 hd->hpib_data = *addr;
520 }
521 hd->hpib_imask = IM_IDLE;
522 }
523 hs->sc_flags |= HPIBF_DONE;
524 hd->hpib_stat = ST_IENAB;
525 hd->hpib_ie = IDS_IE;
526 }
527
528 static int
529 fhpibintr(void *arg)
530 {
531 struct fhpib_softc *sc = arg;
532 struct hpibbus_softc *hs = sc->sc_hpibbus;
533 struct fhpibdevice *hd = sc->sc_regs;
534 struct hpibqueue *hq;
535 int stat0;
536
537 stat0 = hd->hpib_ids;
538 if ((stat0 & (IDS_IE|IDS_IR)) != (IDS_IE|IDS_IR)) {
539 #ifdef DEBUG
540 if ((fhpibdebug & FDB_FAIL) && (stat0 & IDS_IR) &&
541 (hs->sc_flags & (HPIBF_IO|HPIBF_DONE)) != HPIBF_IO)
542 printf("%s: fhpibintr: bad status %x\n",
543 sc->sc_dev.dv_xname, stat0);
544 /* fhpibbadint[0]++; XXX */
545 #endif
546 return(0);
547 }
548 if ((hs->sc_flags & (HPIBF_IO|HPIBF_DONE)) == HPIBF_IO) {
549 #ifdef DEBUG
550 /* fhpibbadint[1]++; XXX */
551 #endif
552 return(0);
553 }
554 #ifdef DEBUG
555 if ((fhpibdebug & FDB_DMA) && fhpibdebugunit == sc->sc_dev.dv_unit)
556 printf("fhpibintr: flags %x\n", hs->sc_flags);
557 #endif
558 hq = hs->sc_queue.tqh_first;
559 if (hs->sc_flags & HPIBF_IO) {
560 if (hs->sc_flags & HPIBF_TIMO)
561 callout_stop(&sc->sc_dmadone_ch);
562 stat0 = hd->hpib_cmd;
563 hd->hpib_cmd = sc->sc_cmd & ~CT_8BIT;
564 hd->hpib_stat = 0;
565 hd->hpib_cmd = CT_REN | CT_8BIT;
566 stat0 = hd->hpib_intr;
567 hd->hpib_imask = 0;
568 hs->sc_flags &= ~(HPIBF_DONE|HPIBF_IO|HPIBF_READ|HPIBF_TIMO);
569 dmafree(hs->sc_dq);
570 (hq->hq_intr)(hq->hq_softc);
571 } else if (hs->sc_flags & HPIBF_PPOLL) {
572 stat0 = hd->hpib_intr;
573 #ifdef DEBUG
574 if ((fhpibdebug & FDB_FAIL) &&
575 doppollint && (stat0 & IM_PPRESP) == 0)
576 printf("%s: fhpibintr: bad intr reg %x\n",
577 sc->sc_dev.dv_xname, stat0);
578 #endif
579 hd->hpib_stat = 0;
580 hd->hpib_imask = 0;
581 #ifdef DEBUG
582 stat0 = fhpibppoll(hs);
583 if ((fhpibdebug & FDB_PPOLL) &&
584 fhpibdebugunit == sc->sc_dev.dv_unit)
585 printf("fhpibintr: got PPOLL status %x\n", stat0);
586 if ((stat0 & (0x80 >> hq->hq_slave)) == 0) {
587 /*
588 * XXX give it another shot (68040)
589 */
590 /* fhpibppollfail[unit]++; XXX */
591 DELAY(fhpibppolldelay);
592 stat0 = fhpibppoll(hs);
593 if ((stat0 & (0x80 >> hq->hq_slave)) == 0 &&
594 (fhpibdebug & FDB_PPOLL) &&
595 fhpibdebugunit == sc->sc_dev.dv_unit)
596 printf("fhpibintr: PPOLL: unit %d slave %d stat %x\n",
597 sc->sc_dev.dv_unit, hq->hq_slave, stat0);
598 }
599 #endif
600 hs->sc_flags &= ~HPIBF_PPOLL;
601 (hq->hq_intr)(hq->hq_softc);
602 }
603 return(1);
604 }
605
606 static int
607 fhpibppoll(struct hpibbus_softc *hs)
608 {
609 struct fhpib_softc *sc =
610 (struct fhpib_softc *)device_parent(&hs->sc_dev);
611 struct fhpibdevice *hd = sc->sc_regs;
612 int ppoll;
613
614 hd->hpib_stat = 0;
615 hd->hpib_psense = 0;
616 hd->hpib_pmask = 0xFF;
617 hd->hpib_imask = IM_PPRESP | IM_PABORT;
618 DELAY(25);
619 hd->hpib_intr = IM_PABORT;
620 ppoll = hd->hpib_data;
621 if (hd->hpib_intr & IM_PABORT)
622 ppoll = 0;
623 hd->hpib_imask = 0;
624 hd->hpib_pmask = 0;
625 hd->hpib_stat = ST_IENAB;
626 return(ppoll);
627 }
628
629 static int
630 fhpibwait(struct fhpibdevice *hd, int x)
631 {
632 int timo = hpibtimeout;
633
634 while ((hd->hpib_intr & x) == 0 && --timo)
635 DELAY(1);
636 if (timo == 0) {
637 #ifdef DEBUG
638 if (fhpibdebug & FDB_FAIL)
639 printf("fhpibwait(%p, %x) timeout\n", hd, x);
640 #endif
641 return(-1);
642 }
643 return(0);
644 }
645
646 /*
647 * XXX: this will have to change if we ever allow more than one
648 * pending operation per HP-IB.
649 */
650 static void
651 fhpibppwatch(void *arg)
652 {
653 struct hpibbus_softc *hs = arg;
654 struct fhpib_softc *sc =
655 (struct fhpib_softc *)device_parent(&hs->sc_dev);
656 struct fhpibdevice *hd = sc->sc_regs;
657 int slave;
658
659 if ((hs->sc_flags & HPIBF_PPOLL) == 0)
660 return;
661 slave = (0x80 >> hs->sc_queue.tqh_first->hq_slave);
662 #ifdef DEBUG
663 if (!doppollint) {
664 if (fhpibppoll(hs) & slave) {
665 hd->hpib_stat = ST_IENAB;
666 hd->hpib_imask = IM_IDLE | IM_ROOM;
667 } else
668 callout_reset(&sc->sc_ppwatch_ch, 1, fhpibppwatch, sc);
669 return;
670 }
671 if ((fhpibdebug & FDB_PPOLL) && sc->sc_dev.dv_unit == fhpibdebugunit)
672 printf("fhpibppwatch: sense request on %s\n",
673 sc->sc_dev.dv_xname);
674 #endif
675 hd->hpib_psense = ~slave;
676 hd->hpib_pmask = slave;
677 hd->hpib_stat = ST_IENAB;
678 hd->hpib_imask = IM_PPRESP | IM_PABORT;
679 hd->hpib_ie = IDS_IE;
680 }
681