sbic.c revision 1.12 1 /* $NetBSD: sbic.c,v 1.12 2000/03/18 22:33:04 scw Exp $ */
2
3 /*
4 * Changes Copyright (c) 1996 Steve Woodford
5 * Original Copyright (c) 1994 Christian E. Hopps
6 * Copyright (c) 1990 The Regents of the University of California.
7 * All rights reserved.
8 *
9 * This code is derived from software contributed to Berkeley by
10 * Van Jacobson of Lawrence Berkeley Laboratory.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 *
40 * @(#)scsi.c 7.5 (Berkeley) 5/4/91
41 */
42
43 /*
44 * Steve Woodford (SCW), Apr, 1996
45 * MVME147S WD33C93 Scsi Bus Interface Controller driver,
46 *
47 * Basically a de-loused and tidied up version of the Amiga AMD 33C93 driver.
48 *
49 * The original driver used features which required at least a WD33C93A
50 * chip. The '147 has the original WD33C93 chip (no 'A' suffix).
51 *
52 * This version of the driver is pretty well generic, so should work with
53 * any flavour of WD33C93 chip.
54 */
55 #include "opt_ddb.h"
56
57 #include <sys/param.h>
58 #include <sys/systm.h>
59 #include <sys/device.h>
60 #include <sys/kernel.h> /* For hz */
61 #include <sys/disklabel.h>
62 #include <sys/dkstat.h>
63 #include <sys/buf.h>
64
65 #include <dev/scsipi/scsi_all.h>
66 #include <dev/scsipi/scsipi_all.h>
67 #include <dev/scsipi/scsiconf.h>
68
69 #include <vm/vm.h>
70 #include <vm/vm_kern.h>
71 #include <vm/vm_page.h>
72 #include <vm/pmap.h>
73
74 #include <machine/pmap.h>
75
76 #include <mvme68k/mvme68k/isr.h>
77 #include <mvme68k/dev/dmavar.h>
78 #include <mvme68k/dev/sbicreg.h>
79 #include <mvme68k/dev/sbicvar.h>
80
81
82 /*
83 * Since I can't find this in any other header files
84 */
85 #define SCSI_PHASE(reg) (reg&0x07)
86
87 /*
88 * SCSI delays
89 * In u-seconds, primarily for state changes on the SPC.
90 */
91 #define SBIC_CMD_WAIT 50000 /* wait per step of 'immediate' cmds */
92 #define SBIC_DATA_WAIT 50000 /* wait per data in/out step */
93 #define SBIC_INIT_WAIT 50000 /* wait per step (both) during init */
94
95 /*
96 * Convenience macro for waiting for a particular sbic event
97 */
98 #define SBIC_WAIT(regs, until, timeo) sbicwait(regs, until, timeo, __LINE__)
99
100 extern paddr_t kvtop __P((caddr_t));
101
102 int sbicicmd __P((struct sbic_softc *, void *, int, void *, int));
103 int sbicgo __P((struct sbic_softc *, struct scsipi_xfer *));
104 int sbicdmaok __P((struct sbic_softc *, struct scsipi_xfer *));
105 int sbicwait __P((sbic_regmap_p, u_char, int , int));
106 int sbiccheckdmap __P((void *, u_long, u_long));
107 u_char sbicselectbus __P((struct sbic_softc *));
108 int sbicxfout __P((sbic_regmap_p, int, void *));
109 int sbicxfin __P((sbic_regmap_p, int, void *));
110 int sbicfromscsiperiod __P((struct sbic_softc *, int));
111 int sbictoscsiperiod __P((struct sbic_softc *, int));
112 int sbicpoll __P((struct sbic_softc *));
113 int sbicnextstate __P((struct sbic_softc *, u_char, u_char));
114 int sbicmsgin __P((struct sbic_softc *));
115 int sbicabort __P((struct sbic_softc *, char *));
116 void sbicxfdone __P((struct sbic_softc *));
117 void sbicerror __P((struct sbic_softc *,u_char));
118 void sbicreset __P((struct sbic_softc *));
119 void sbic_scsidone __P((struct sbic_acb *, int));
120 void sbic_sched __P((struct sbic_softc *));
121 void sbic_save_ptrs __P((struct sbic_softc *));
122 void sbic_load_ptrs __P((struct sbic_softc *));
123
124 /*
125 * Synch xfer parameters, and timing conversions
126 */
127 int sbic_min_period = SBIC_SYN_MIN_PERIOD; /* in cycles = f(ICLK,FSn) */
128 int sbic_max_offset = SBIC_SYN_MAX_OFFSET; /* pure number */
129 int sbic_cmd_wait = SBIC_CMD_WAIT;
130 int sbic_data_wait = SBIC_DATA_WAIT;
131 int sbic_init_wait = SBIC_INIT_WAIT;
132
133 /*
134 * was broken before.. now if you want this you get it for all drives
135 * on sbic controllers.
136 */
137 u_char sbic_inhibit_sync[8];
138 int sbic_enable_reselect = 1; /* Allow Disconnect / Reselect */
139 int sbic_no_dma = 0; /* Use PIO transfers instead of DMA */
140 int sbic_parallel_operations = 1; /* Allow command queues */
141
142 /*
143 * Some useful stuff for debugging purposes
144 */
145 #ifdef DEBUG
146 int sbicdma_ops = 0; /* total DMA operations */
147 int sbicdma_hits = 0; /* number of DMA chains that were contiguous */
148 int sbicdma_misses = 0; /* number of DMA chains that were not contiguous */
149 int sbicdma_saves = 0;
150
151 #define QPRINTF(a) if (sbic_debug > 1) printf a
152
153 int sbic_debug = 0; /* Debug all chip related things */
154 int sync_debug = 0; /* Debug all Synchronous Scsi related things */
155 int reselect_debug = 0; /* Debug all reselection related things */
156 int report_sense = 0; /* Always print Sense information */
157 int data_pointer_debug = 0; /* Debug Data Pointer related things */
158
159 void sbictimeout __P((struct sbic_softc *dev));
160
161 #else
162 #define QPRINTF(a) /* */
163 #endif
164
165
166 /*
167 * default minphys routine for sbic based controllers
168 */
169 void
170 sbic_minphys(bp)
171 struct buf *bp;
172 {
173 /*
174 * No max transfer at this level.
175 */
176 minphys(bp);
177 }
178
179
180 /*
181 * Save DMA pointers. Take into account partial transfer. Shut down DMA.
182 */
183 void
184 sbic_save_ptrs(dev)
185 struct sbic_softc *dev;
186 {
187 sbic_regmap_p regs;
188 struct sbic_acb* acb;
189 int count,
190 asr,
191 s;
192
193 /*
194 * Only need to save pointers if DMA was active...
195 */
196 if ( dev->sc_cur == NULL || (dev->sc_flags & SBICF_INDMA) == 0 )
197 return;
198
199 regs = dev->sc_sbicp;
200
201 s = splbio();
202
203 /*
204 * Wait until WD chip is idle
205 */
206 do {
207 GET_SBIC_asr(regs, asr);
208 if( asr & SBIC_ASR_DBR ) {
209 printf("sbic_save_ptrs: asr %02x canceled!\n", asr);
210 splx(s);
211 return;
212 }
213 } while( asr & (SBIC_ASR_BSY|SBIC_ASR_CIP) );
214
215
216 /*
217 * Save important state.
218 * must be done before dmastop
219 */
220 acb = dev->sc_nexus;
221 acb->sc_dmacmd = dev->sc_dmacmd;
222
223 /*
224 * Fetch the residual count
225 */
226 SBIC_TC_GET(regs, count);
227
228 /*
229 * Shut down DMA
230 */
231 dev->sc_dmastop(dev);
232
233 /*
234 * No longer in DMA
235 */
236 dev->sc_flags &= ~SBICF_INDMA;
237
238 /*
239 * Ensure the WD chip is back in polled I/O mode, with nothing to
240 * transfer.
241 */
242 SBIC_TC_PUT(regs, 0);
243 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
244
245 /*
246 * Update current count...
247 */
248 acb->sc_tcnt = count;
249
250 /*
251 * Work out how many bytes were actually transferred
252 */
253 count = dev->sc_tcnt - count;
254 dev->sc_tcnt = acb->sc_tcnt;
255
256 /*
257 * Fixup partial xfers
258 */
259 acb->sc_kv.dc_addr += count;
260 acb->sc_kv.dc_count -= count;
261 acb->sc_pa.dc_addr += count;
262 acb->sc_pa.dc_count -= count >> 1;
263
264 #ifdef DEBUG
265 if ( data_pointer_debug )
266 printf("save at (%p,%x):%x\n",
267 dev->sc_cur->dc_addr, dev->sc_cur->dc_count,count);
268 sbicdma_saves++;
269 #endif
270
271 splx(s);
272 }
273
274
275 /*
276 * DOES NOT RESTART DMA!!!
277 */
278 void
279 sbic_load_ptrs(dev)
280 struct sbic_softc *dev;
281 {
282 struct sbic_acb *acb = dev->sc_nexus;
283 int s;
284
285 if ( acb->sc_kv.dc_count == 0 ) {
286 /*
287 * No data to xfer
288 */
289 return;
290 }
291
292 s = splbio();
293
294 /*
295 * Reset the Scatter-Gather chain
296 */
297 dev->sc_last = dev->sc_cur = &acb->sc_pa;
298
299 /*
300 * Restore the Transfer Count and DMA specific data
301 */
302 dev->sc_tcnt = acb->sc_tcnt;
303 dev->sc_dmacmd = acb->sc_dmacmd;
304
305 #ifdef DEBUG
306 sbicdma_ops++;
307 #endif
308
309 /*
310 * Need to fixup new segment?
311 */
312 if ( dev->sc_tcnt == 0 ) {
313 /*
314 * sc_tcnt == 0 implies end of segment
315 */
316 char *vaddr, *paddr;
317 int count;
318
319 /*
320 * do kvm to pa mappings
321 */
322 vaddr = acb->sc_kv.dc_addr;
323 paddr = acb->sc_pa.dc_addr = (char *) kvtop((caddr_t)vaddr);
324
325 for (count = (NBPG - ((int)vaddr & PGOFSET));
326 count < acb->sc_kv.dc_count &&
327 (char*)kvtop((caddr_t)(vaddr + count + 4)) == paddr + count + 4;
328 count += NBPG)
329 ; /* Do nothing */
330
331 /*
332 * If it's all contiguous...
333 */
334 if ( count > acb->sc_kv.dc_count ) {
335 count = acb->sc_kv.dc_count;
336 #ifdef DEBUG
337 sbicdma_hits++;
338 #endif
339 }
340 #ifdef DEBUG
341 else
342 sbicdma_misses++;
343 #endif
344
345 acb->sc_tcnt = count;
346 acb->sc_pa.dc_count = count >> 1;
347
348 #ifdef DEBUG
349 if ( data_pointer_debug )
350 printf("DMA recalc:kv(%p,%x)pa(%p,%lx)\n", acb->sc_kv.dc_addr,
351 acb->sc_kv.dc_count,
352 acb->sc_pa.dc_addr,
353 acb->sc_tcnt);
354 #endif
355
356 }
357
358 splx(s);
359 }
360
361 /*
362 * used by specific sbic controller
363 *
364 * it appears that the higher level code does nothing with LUN's
365 * so I will too. I could plug it in, however so could they
366 * in scsi_scsipi_cmd().
367 */
368 int
369 sbic_scsicmd(xs)
370 struct scsipi_xfer *xs;
371 {
372 struct scsipi_link *slp = xs->sc_link;
373 struct sbic_softc *dev = slp->adapter_softc;
374 struct sbic_acb *acb;
375 int flags = xs->xs_control,
376 s;
377
378 if ( flags & XS_CTL_DATA_UIO )
379 panic("sbic: scsi data uio requested");
380
381 if ( dev->sc_nexus && (flags & XS_CTL_POLL) )
382 panic("sbic_scsicmd: busy");
383
384 if ( slp->scsipi_scsi.target == slp->scsipi_scsi.adapter_target )
385 return ESCAPE_NOT_SUPPORTED;
386
387 s = splbio();
388
389 if ( (acb = dev->free_list.tqh_first) != NULL )
390 TAILQ_REMOVE(&dev->free_list, acb, chain);
391
392 splx(s);
393
394 if ( acb == NULL ) {
395 #ifdef DEBUG
396 printf("sbic_scsicmd: unable to queue request for target %d\n",
397 slp->scsipi_scsi.target);
398 #ifdef DDB
399 Debugger();
400 #endif
401 #endif
402 xs->error = XS_DRIVER_STUFFUP;
403
404 return(TRY_AGAIN_LATER);
405 }
406
407 if ( flags & XS_CTL_DATA_IN )
408 acb->flags = ACB_ACTIVE | ACB_DATAIN;
409 else
410 acb->flags = ACB_ACTIVE;
411
412 acb->xs = xs;
413 acb->clen = xs->cmdlen;
414 acb->sc_kv.dc_addr = xs->data;
415 acb->sc_kv.dc_count = xs->datalen;
416 acb->pa_addr = xs->data ? (char *)kvtop((caddr_t)xs->data) : 0;
417 bcopy(xs->cmd, &acb->cmd, xs->cmdlen);
418
419 if ( flags & XS_CTL_POLL ) {
420 /*
421 * This has major side effects -- it locks up the machine
422 */
423 int stat;
424
425 s = splbio();
426
427 dev->sc_flags |= SBICF_ICMD;
428
429 do {
430 /*
431 * If we already had a nexus, while away the time until idle...
432 * This is likely only to happen if a reselection occurs between
433 * here and our earlier check for ICMD && sc_nexus (which would
434 * have resulted in a panic() had it been true).
435 */
436 while ( dev->sc_nexus )
437 sbicpoll(dev);
438
439 /*
440 * Fix up the new nexus
441 */
442 dev->sc_nexus = acb;
443 dev->sc_xs = xs;
444 dev->target = slp->scsipi_scsi.target;
445 dev->lun = slp->scsipi_scsi.lun;
446
447 stat = sbicicmd(dev, &acb->cmd, acb->clen,
448 acb->sc_kv.dc_addr, acb->sc_kv.dc_count);
449
450 } while ( dev->sc_nexus != acb );
451
452 sbic_scsidone(acb, stat);
453
454 splx(s);
455
456 return(COMPLETE);
457 }
458
459 s = splbio();
460 TAILQ_INSERT_TAIL(&dev->ready_list, acb, chain);
461
462 /*
463 * If nothing is active, try to start it now.
464 */
465 if ( dev->sc_nexus == NULL )
466 sbic_sched(dev);
467
468 splx(s);
469
470 return(SUCCESSFULLY_QUEUED);
471 }
472
473 /*
474 * attempt to start the next available command
475 */
476 void
477 sbic_sched(dev)
478 struct sbic_softc *dev;
479 {
480 struct scsipi_xfer *xs;
481 struct scsipi_link *slp = NULL; /* Gag the compiler */
482 struct sbic_acb *acb;
483 int flags,
484 stat;
485
486 /*
487 * XXXSCW
488 * I'll keep this test here, even though I can't see any obvious way
489 * in which sbic_sched() could be called with sc_nexus non NULL
490 */
491 if ( dev->sc_nexus )
492 return; /* a command is current active */
493
494 /*
495 * Loop through the ready list looking for work to do...
496 */
497 for (acb = dev->ready_list.tqh_first; acb; acb = acb->chain.tqe_next) {
498 int i, j;
499
500 slp = acb->xs->sc_link;
501 i = slp->scsipi_scsi.target;
502 j = 1 << slp->scsipi_scsi.lun;
503
504 /*
505 * We've found a potential command, but is the target/lun busy?
506 */
507 if ( (dev->sc_tinfo[i].lubusy & j) == 0 ) {
508 /*
509 * Nope, it's not busy, so we can use it.
510 */
511 dev->sc_tinfo[i].lubusy |= j;
512 TAILQ_REMOVE(&dev->ready_list, acb, chain);
513 dev->sc_nexus = acb;
514 acb->sc_pa.dc_addr = acb->pa_addr; /* XXXX check */
515 break;
516 }
517 }
518
519 if ( acb == NULL ) {
520 QPRINTF(("sbicsched: no work\n"));
521 return; /* did not find an available command */
522 }
523
524 #ifdef DEBUG
525 if ( data_pointer_debug > 1 )
526 printf("sbic_sched(%d,%d)\n", slp->scsipi_scsi.target,
527 slp->scsipi_scsi.lun);
528 #endif
529
530 dev->sc_xs = xs = acb->xs;
531 flags = xs->xs_control;
532
533 if ( flags & XS_CTL_RESET )
534 sbicreset(dev);
535
536 dev->sc_stat[0] = -1;
537 dev->target = slp->scsipi_scsi.target;
538 dev->lun = slp->scsipi_scsi.lun;
539
540 if ( flags & XS_CTL_POLL || (!sbic_parallel_operations &&
541 (sbicdmaok(dev, xs) == 0)) )
542 stat = sbicicmd(dev, &acb->cmd, acb->clen,
543 acb->sc_kv.dc_addr, acb->sc_kv.dc_count);
544 else
545 if ( sbicgo(dev, xs) == 0 && xs->error != XS_SELTIMEOUT )
546 return;
547 else
548 stat = dev->sc_stat[0];
549
550 sbic_scsidone(acb, stat);
551 }
552
553 void
554 sbic_scsidone(acb, stat)
555 struct sbic_acb *acb;
556 int stat;
557 {
558 struct scsipi_xfer *xs = acb->xs;
559 struct scsipi_link *slp = xs->sc_link;
560 struct sbic_softc *dev = slp->adapter_softc;
561 int dosched = 0;
562
563 #ifdef DIAGNOSTIC
564 if ( acb == NULL || xs == NULL ) {
565 printf("sbic_scsidone -- (%d,%d) no scsipi_xfer\n", dev->target, dev->lun);
566 #ifdef DDB
567 Debugger();
568 #endif
569 return;
570 }
571 #endif
572
573 /*
574 * is this right?
575 */
576 xs->status = stat;
577
578 #ifdef DEBUG
579 if ( data_pointer_debug > 1 )
580 printf("scsidone: (%d,%d)->(%d,%d)%02x\n", slp->scsipi_scsi.target,
581 slp->scsipi_scsi.lun,
582 dev->target, dev->lun, stat);
583
584 if ( xs->sc_link->scsipi_scsi.target ==
585 dev->sc_link.scsipi_scsi.adapter_target )
586 panic("target == hostid");
587 #endif
588
589 if ( xs->error == XS_NOERROR && (acb->flags & ACB_CHKSENSE) == 0 ) {
590
591 if ( stat == SCSI_CHECK ) {
592 /*
593 * Schedule a REQUEST SENSE
594 */
595 struct scsipi_sense *ss = (void *)&acb->cmd;
596
597 #ifdef DEBUG
598 if ( report_sense )
599 printf("sbic_scsidone: autosense %02x targ %d lun %d",
600 acb->cmd.opcode, slp->scsipi_scsi.target,
601 slp->scsipi_scsi.lun);
602 #endif
603
604 bzero(ss, sizeof(*ss));
605
606 ss->opcode = REQUEST_SENSE;
607 ss->byte2 = slp->scsipi_scsi.lun << 5;
608 ss->length = sizeof(struct scsipi_sense_data);
609
610 acb->clen = sizeof(*ss);
611 acb->sc_kv.dc_addr = (char *)&xs->sense.scsi_sense;
612 acb->sc_kv.dc_count = sizeof(struct scsipi_sense_data);
613 acb->pa_addr = (char *)kvtop((caddr_t)&xs->sense.scsi_sense);
614 acb->flags = ACB_ACTIVE | ACB_CHKSENSE | ACB_DATAIN;
615
616 TAILQ_INSERT_HEAD(&dev->ready_list, acb, chain);
617
618 dev->sc_tinfo[slp->scsipi_scsi.target].lubusy &=
619 ~(1 << slp->scsipi_scsi.lun);
620 dev->sc_tinfo[slp->scsipi_scsi.target].senses++;
621
622 if ( dev->sc_nexus == acb ) {
623 dev->sc_nexus = NULL;
624 dev->sc_xs = NULL;
625 sbic_sched(dev);
626 }
627 return;
628 }
629 }
630
631 if ( xs->error == XS_NOERROR && (acb->flags & ACB_CHKSENSE) != 0 ) {
632
633 xs->error = XS_SENSE;
634
635 #ifdef DEBUG
636 if (report_sense)
637 printf(" => %02x %02x\n", xs->sense.scsi_sense.flags,
638 xs->sense.scsi_sense.extra_bytes[3]);
639 #endif
640
641 } else {
642 xs->resid = 0; /* XXXX */
643 }
644
645 xs->xs_status |= XS_STS_DONE;
646
647 /*
648 * Remove the ACB from whatever queue it's on. We have to do a bit of
649 * a hack to figure out which queue it's on. Note that it is *not*
650 * necessary to cdr down the ready queue, but we must cdr down the
651 * nexus queue and see if it's there, so we can mark the unit as no
652 * longer busy. This code is sickening, but it works.
653 */
654 if ( acb == dev->sc_nexus ) {
655
656 dev->sc_nexus = NULL;
657 dev->sc_xs = NULL;
658
659 dev->sc_tinfo[slp->scsipi_scsi.target].lubusy &=
660 ~(1 << slp->scsipi_scsi.lun);
661
662 if ( dev->ready_list.tqh_first )
663 dosched = 1; /* start next command */
664
665 } else
666 if ( dev->ready_list.tqh_last == &acb->chain.tqe_next ) {
667
668 TAILQ_REMOVE(&dev->ready_list, acb, chain);
669
670 } else {
671
672 struct sbic_acb *a;
673
674 for (a = dev->nexus_list.tqh_first; a; a = a->chain.tqe_next) {
675 if ( a == acb ) {
676 TAILQ_REMOVE(&dev->nexus_list, acb, chain);
677 dev->sc_tinfo[slp->scsipi_scsi.target].lubusy &=
678 ~(1 << slp->scsipi_scsi.lun);
679 break;
680 }
681 }
682
683 if ( a )
684 ;
685 else if ( acb->chain.tqe_next ) {
686 TAILQ_REMOVE(&dev->ready_list, acb, chain);
687 } else {
688 printf("%s: can't find matching acb\n", dev->sc_dev.dv_xname);
689 #ifdef DDB
690 Debugger();
691 #endif
692 }
693 }
694
695 /*
696 * Put it on the free list.
697 */
698 acb->flags = ACB_FREE;
699 TAILQ_INSERT_HEAD(&dev->free_list, acb, chain);
700
701 dev->sc_tinfo[slp->scsipi_scsi.target].cmds++;
702
703 scsipi_done(xs);
704
705 if ( dosched )
706 sbic_sched(dev);
707 }
708
709 int
710 sbicdmaok(dev, xs)
711 struct sbic_softc *dev;
712 struct scsipi_xfer *xs;
713 {
714 if ( sbic_no_dma || xs->datalen == 0 ||
715 xs->datalen & 0x03 || (int)xs->data & 0x03)
716 return(0);
717
718 /*
719 * controller supports dma to any addresses?
720 */
721 if ( (dev->sc_flags & SBICF_BADDMA) == 0 )
722 return(1);
723
724 /*
725 * this address is ok for dma?
726 */
727 if ( sbiccheckdmap(xs->data, xs->datalen, dev->sc_dmamask) == 0 )
728 return(1);
729
730 return(0);
731 }
732
733 int
734 sbicwait(regs, until, timeo, line)
735 sbic_regmap_p regs;
736 u_char until;
737 int timeo;
738 int line;
739 {
740 u_char val;
741
742 if ( timeo == 0 )
743 timeo = 1000000; /* some large value.. */
744
745 GET_SBIC_asr(regs, val);
746
747 while ( (val & until) == 0 ) {
748
749 if ( timeo-- == 0 ) {
750 int csr;
751 GET_SBIC_csr(regs, csr);
752 printf("sbicwait TIMEO @%d with asr=x%x csr=x%x\n", line, val, csr);
753 #if defined(DDB) && defined(DEBUG)
754 Debugger();
755 #endif
756 return(val); /* Maybe I should abort */
757 break;
758 }
759
760 DELAY(1);
761 GET_SBIC_asr(regs, val);
762 }
763
764 return(val);
765 }
766
767 int
768 sbicabort(dev, where)
769 struct sbic_softc *dev;
770 char *where;
771 {
772 sbic_regmap_p regs = dev->sc_sbicp;
773 u_char csr,
774 asr;
775
776 GET_SBIC_asr(regs, asr);
777 GET_SBIC_csr(regs, csr);
778
779 printf ("%s: abort %s: csr = 0x%02x, asr = 0x%02x\n",
780 dev->sc_dev.dv_xname, where, csr, asr);
781
782 /*
783 * Clean up chip itself
784 */
785 if ( dev->sc_flags & SBICF_SELECTED ) {
786
787 while ( asr & SBIC_ASR_DBR ) {
788 /*
789 * sbic is jammed w/data. need to clear it
790 * But we don't know what direction it needs to go
791 */
792 GET_SBIC_data(regs, asr);
793 printf("%s: abort %s: clearing data buffer 0x%02x\n",
794 dev->sc_dev.dv_xname, where, asr);
795 GET_SBIC_asr(regs, asr);
796 if ( asr & SBIC_ASR_DBR ) /* Not the read direction, then */
797 SET_SBIC_data(regs, asr);
798 GET_SBIC_asr(regs, asr);
799 }
800
801 WAIT_CIP(regs);
802
803 printf("%s: sbicabort - sending ABORT command\n", dev->sc_dev.dv_xname);
804 SET_SBIC_cmd(regs, SBIC_CMD_ABORT);
805 WAIT_CIP(regs);
806
807 GET_SBIC_asr(regs, asr);
808
809 if ( asr & (SBIC_ASR_BSY|SBIC_ASR_LCI) ) {
810 /*
811 * ok, get more drastic..
812 */
813 printf("%s: sbicabort - asr %x, trying to reset\n",
814 dev->sc_dev.dv_xname, asr);
815 sbicreset(dev);
816 dev->sc_flags &= ~SBICF_SELECTED;
817 return SBIC_STATE_ERROR;
818 }
819
820 printf("%s: sbicabort - sending DISC command\n", dev->sc_dev.dv_xname);
821 SET_SBIC_cmd(regs, SBIC_CMD_DISC);
822
823 do {
824 SBIC_WAIT (regs, SBIC_ASR_INT, 0);
825 GET_SBIC_asr(regs, asr);
826 GET_SBIC_csr (regs, csr);
827 QPRINTF(("csr: 0x%02x, asr: 0x%02x\n", csr, asr));
828 } while ( (csr != SBIC_CSR_DISC) && (csr != SBIC_CSR_DISC_1) &&
829 (csr != SBIC_CSR_CMD_INVALID) );
830
831 /*
832 * lets just hope it worked..
833 */
834 dev->sc_flags &= ~SBICF_SELECTED;
835 }
836
837 return SBIC_STATE_ERROR;
838 }
839
840
841 /*
842 * Initialize driver-private structures
843 */
844 void
845 sbicinit(dev)
846 struct sbic_softc *dev;
847 {
848 u_int i;
849
850 if ( (dev->sc_flags & SBICF_ALIVE) == 0 ) {
851
852 struct sbic_acb *acb;
853
854 TAILQ_INIT(&dev->ready_list);
855 TAILQ_INIT(&dev->nexus_list);
856 TAILQ_INIT(&dev->free_list);
857
858 dev->sc_nexus = NULL;
859 dev->sc_xs = NULL;
860
861 acb = dev->sc_acb;
862 bzero(acb, sizeof(dev->sc_acb));
863
864 for (i = 0; i < sizeof(dev->sc_acb) / sizeof(*acb); i++) {
865 TAILQ_INSERT_TAIL(&dev->free_list, acb, chain);
866 acb++;
867 }
868
869 bzero(dev->sc_tinfo, sizeof(dev->sc_tinfo));
870
871 #ifdef DEBUG
872 /*
873 * make sure timeout is really not needed
874 */
875 timeout((void *)sbictimeout, dev, 30 * hz);
876 #endif
877
878 } else
879 panic("sbic: reinitializing driver!");
880
881 dev->sc_flags |= SBICF_ALIVE;
882 dev->sc_flags &= ~SBICF_SELECTED;
883
884 /*
885 * initialize inhibit array
886 * Never enable Sync, since it just doesn't work on mvme147 :(
887 */
888 for (i = 0; i < 8; ++i)
889 sbic_inhibit_sync[i] = 1;
890
891 sbicreset(dev);
892 }
893
894 void
895 sbicreset(dev)
896 struct sbic_softc *dev;
897 {
898 sbic_regmap_p regs = dev->sc_sbicp;
899 u_int my_id,
900 s;
901 u_char csr;
902
903 s = splbio();
904
905 my_id = dev->sc_link.scsipi_scsi.adapter_target & SBIC_ID_MASK;
906
907 if (dev->sc_clkfreq < 110)
908 my_id |= SBIC_ID_FS_8_10;
909 else if (dev->sc_clkfreq < 160)
910 my_id |= SBIC_ID_FS_12_15;
911 else if (dev->sc_clkfreq < 210)
912 my_id |= SBIC_ID_FS_16_20;
913
914 SET_SBIC_myid(regs, my_id);
915
916 /*
917 * Reset the chip
918 */
919 SET_SBIC_cmd(regs, SBIC_CMD_RESET);
920 DELAY(25);
921
922 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
923 GET_SBIC_csr(regs, csr); /* clears interrupt also */
924
925 /*
926 * Set up various chip parameters
927 */
928 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
929
930 /*
931 * don't allow Selection (SBIC_RID_ES)
932 * until we can handle target mode!!
933 */
934 SET_SBIC_rselid(regs, SBIC_RID_ER);
935
936 /*
937 * Asynchronous for now
938 */
939 SET_SBIC_syn(regs, 0);
940
941 /*
942 * Anything else was zeroed by reset
943 */
944 splx(s);
945
946 dev->sc_flags &= ~SBICF_SELECTED;
947 }
948
949 void
950 sbicerror(dev, csr)
951 struct sbic_softc *dev;
952 u_char csr;
953 {
954 struct scsipi_xfer *xs = dev->sc_xs;
955
956 #ifdef DIAGNOSTIC
957 if ( xs == NULL )
958 panic("sbicerror: dev->sc_xs == NULL");
959 #endif
960
961 if ( xs->xs_control & XS_CTL_SILENT )
962 return;
963
964 printf("%s: csr == 0x%02x\n", dev->sc_dev.dv_xname, csr);
965 }
966
967 /*
968 * select the bus, return when selected or error.
969 *
970 * Returns the current CSR following selection and optionally MSG out phase.
971 * i.e. the returned CSR *should* indicate CMD phase...
972 * If the return value is 0, some error happened.
973 */
974 u_char
975 sbicselectbus(dev)
976 struct sbic_softc *dev;
977 {
978 sbic_regmap_p regs = dev->sc_sbicp;
979 u_char target = dev->target,
980 lun = dev->lun,
981 asr,
982 csr,
983 id;
984
985 /*
986 * if we're already selected, return (XXXX panic maybe?)
987 */
988 if ( dev->sc_flags & SBICF_SELECTED )
989 return(0);
990
991 QPRINTF(("sbicselectbus %d: ", target));
992
993 /*
994 * issue select
995 */
996 SET_SBIC_selid(regs, target);
997 SET_SBIC_timeo(regs, SBIC_TIMEOUT(250, dev->sc_clkfreq));
998
999 GET_SBIC_asr(regs, asr);
1000
1001 if ( asr & (SBIC_ASR_INT|SBIC_ASR_BSY) ) {
1002 /*
1003 * This means we got ourselves reselected upon
1004 */
1005 QPRINTF(("WD busy (reselect?)\n"));
1006 return 0;
1007 }
1008
1009 SET_SBIC_cmd(regs, SBIC_CMD_SEL_ATN);
1010
1011 /*
1012 * wait for select (merged from seperate function may need
1013 * cleanup)
1014 */
1015 WAIT_CIP(regs);
1016
1017 do {
1018
1019 asr = SBIC_WAIT(regs, SBIC_ASR_INT | SBIC_ASR_LCI, 0);
1020
1021 if ( asr & SBIC_ASR_LCI ) {
1022 QPRINTF(("late LCI: asr %02x\n", asr));
1023 return 0;
1024 }
1025
1026 /*
1027 * Clear interrupt
1028 */
1029 GET_SBIC_csr (regs, csr);
1030
1031 QPRINTF(("%02x ", csr));
1032
1033 /*
1034 * Reselected from under our feet?
1035 */
1036 if ( csr == SBIC_CSR_RSLT_NI || csr == SBIC_CSR_RSLT_IFY ) {
1037 QPRINTF(("got reselected, asr %02x\n", asr));
1038 /*
1039 * We need to handle this now so we don't lock up later
1040 */
1041 sbicnextstate(dev, csr, asr);
1042
1043 return 0;
1044 }
1045
1046 /*
1047 * Whoops!
1048 */
1049 if ( csr == SBIC_CSR_SLT || csr == SBIC_CSR_SLT_ATN ) {
1050 panic("sbicselectbus: target issued select!");
1051 return 0;
1052 }
1053
1054 } while (csr != (SBIC_CSR_MIS_2 | MESG_OUT_PHASE) &&
1055 csr != (SBIC_CSR_MIS_2 | CMD_PHASE) &&
1056 csr != SBIC_CSR_SEL_TIMEO);
1057
1058 /*
1059 * Anyone at home?
1060 */
1061 if ( csr == SBIC_CSR_SEL_TIMEO ) {
1062 dev->sc_xs->error = XS_SELTIMEOUT;
1063 QPRINTF(("Selection Timeout\n"));
1064 return 0;
1065 }
1066
1067 QPRINTF(("Selection Complete\n"));
1068
1069 /*
1070 * Assume we're now selected
1071 */
1072 GET_SBIC_selid(regs, id);
1073 dev->target = id;
1074 dev->lun = lun;
1075 dev->sc_flags |= SBICF_SELECTED;
1076
1077 /*
1078 * Enable (or not) reselection
1079 * XXXSCW This is probably not necessary since we don't use use the
1080 * Select-and-Xfer-with-ATN command to initiate a selection...
1081 */
1082 if ( !sbic_enable_reselect && dev->nexus_list.tqh_first == NULL)
1083 SET_SBIC_rselid (regs, 0);
1084 else
1085 SET_SBIC_rselid (regs, SBIC_RID_ER);
1086
1087 /*
1088 * We only really need to do anything when the target goes to MSG out
1089 * If the device ignored ATN, it's probably old and brain-dead,
1090 * but we'll try to support it anyhow.
1091 * If it doesn't support message out, it definately doesn't
1092 * support synchronous transfers, so no point in even asking...
1093 */
1094 if ( csr == (SBIC_CSR_MIS_2 | MESG_OUT_PHASE) ) {
1095 /*
1096 * Send identify message (SCSI-2 requires an identify msg)
1097 */
1098 if ( sbic_inhibit_sync[id] && dev->sc_sync[id].state == SYNC_START ) {
1099 /*
1100 * Handle drives that don't want to be asked
1101 * whether to go sync at all.
1102 */
1103 dev->sc_sync[id].offset = 0;
1104 dev->sc_sync[id].period = sbic_min_period;
1105 dev->sc_sync[id].state = SYNC_DONE;
1106 }
1107
1108 /*
1109 * Do we need to negotiate Synchronous Xfers for this target?
1110 */
1111 if ( dev->sc_sync[id].state != SYNC_START ) {
1112 /*
1113 * Nope, we've already negotiated.
1114 * Now see if we should allow the target to disconnect/reselect...
1115 */
1116 if ( dev->sc_xs->xs_control & XS_CTL_POLL || dev->sc_flags & SBICF_ICMD ||
1117 !sbic_enable_reselect )
1118 SEND_BYTE (regs, MSG_IDENTIFY | lun);
1119 else
1120 SEND_BYTE (regs, MSG_IDENTIFY_DR | lun);
1121
1122 } else {
1123 /*
1124 * try to initiate a sync transfer.
1125 * So compose the sync message we're going
1126 * to send to the target
1127 */
1128 #ifdef DEBUG
1129 if ( sync_debug )
1130 printf("\nSending sync request to target %d ... ", id);
1131 #endif
1132 /*
1133 * setup scsi message sync message request
1134 */
1135 dev->sc_msg[0] = MSG_IDENTIFY | lun;
1136 dev->sc_msg[1] = MSG_EXT_MESSAGE;
1137 dev->sc_msg[2] = 3;
1138 dev->sc_msg[3] = MSG_SYNC_REQ;
1139 dev->sc_msg[4] = sbictoscsiperiod(dev, sbic_min_period);
1140 dev->sc_msg[5] = sbic_max_offset;
1141
1142 sbicxfout(regs, 6, dev->sc_msg);
1143
1144 dev->sc_sync[id].state = SYNC_SENT;
1145 #ifdef DEBUG
1146 if ( sync_debug )
1147 printf ("sent\n");
1148 #endif
1149 }
1150
1151 /*
1152 * There's one interrupt still to come: the change to CMD phase...
1153 */
1154 SBIC_WAIT(regs, SBIC_ASR_INT , 0);
1155 GET_SBIC_csr(regs, csr);
1156 }
1157
1158 /*
1159 * set sync or async
1160 */
1161 if ( dev->sc_sync[target].state == SYNC_DONE ) {
1162 #ifdef DEBUG
1163 if ( sync_debug )
1164 printf("select(%d): sync reg = 0x%02x\n", target,
1165 SBIC_SYN(dev->sc_sync[target].offset,
1166 dev->sc_sync[target].period));
1167 #endif
1168 SET_SBIC_syn(regs, SBIC_SYN(dev->sc_sync[target].offset,
1169 dev->sc_sync[target].period));
1170 } else {
1171 #ifdef DEBUG
1172 if ( sync_debug )
1173 printf("select(%d): sync reg = 0x%02x\n", target,
1174 SBIC_SYN(0,sbic_min_period));
1175 #endif
1176 SET_SBIC_syn(regs, SBIC_SYN(0, sbic_min_period));
1177 }
1178
1179 return csr;
1180 }
1181
1182 /*
1183 * Information Transfer *to* a Scsi Target.
1184 *
1185 * Note: Don't expect there to be an interrupt immediately after all
1186 * the data is transferred out. The WD spec sheet says that the Transfer-
1187 * Info command for non-MSG_IN phases only completes when the target
1188 * next asserts 'REQ'. That is, when the SCSI bus changes to a new state.
1189 *
1190 * This can have a nasty effect on commands which take a relatively long
1191 * time to complete, for example a START/STOP unit command may remain in
1192 * CMD phase until the disk has spun up. Only then will the target change
1193 * to STATUS phase. This is really only a problem for immediate commands
1194 * since we don't allow disconnection for them (yet).
1195 */
1196 int
1197 sbicxfout(regs, len, bp)
1198 sbic_regmap_p regs;
1199 int len;
1200 void *bp;
1201 {
1202 int wait = sbic_data_wait;
1203 u_char asr,
1204 *buf = bp;
1205
1206 QPRINTF(("sbicxfout {%d} %02x %02x %02x %02x %02x "
1207 "%02x %02x %02x %02x %02x\n", len, buf[0], buf[1], buf[2],
1208 buf[3], buf[4], buf[5], buf[6], buf[7], buf[8], buf[9]));
1209
1210 /*
1211 * sigh.. WD-PROTO strikes again.. sending the command in one go
1212 * causes the chip to lock up if talking to certain (misbehaving?)
1213 * targets. Anyway, this procedure should work for all targets, but
1214 * it's slightly slower due to the overhead
1215 */
1216 WAIT_CIP (regs);
1217
1218 SBIC_TC_PUT (regs, 0);
1219 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
1220 SBIC_TC_PUT (regs, (unsigned)len);
1221 SET_SBIC_cmd (regs, SBIC_CMD_XFER_INFO);
1222
1223 /*
1224 * Loop for each byte transferred
1225 */
1226 do {
1227
1228 GET_SBIC_asr (regs, asr);
1229
1230 if ( asr & SBIC_ASR_DBR ) {
1231 if ( len ) {
1232 SET_SBIC_data (regs, *buf);
1233 buf++;
1234 len--;
1235 } else {
1236 SET_SBIC_data (regs, 0);
1237 }
1238 wait = sbic_data_wait;
1239 }
1240
1241 } while ( len && (asr & SBIC_ASR_INT) == 0 && wait-- > 0 );
1242
1243 #ifdef DEBUG
1244 QPRINTF(("sbicxfout done: %d bytes remaining (wait:%d)\n", len, wait));
1245 #endif
1246
1247 /*
1248 * Normally, an interrupt will be pending when this routing returns.
1249 */
1250 return(len);
1251 }
1252
1253 /*
1254 * Information Transfer *from* a Scsi Target
1255 * returns # bytes left to read
1256 */
1257 int
1258 sbicxfin(regs, len, bp)
1259 sbic_regmap_p regs;
1260 int len;
1261 void *bp;
1262 {
1263 int wait = sbic_data_wait;
1264 u_char *buf = bp;
1265 u_char asr;
1266 #ifdef DEBUG
1267 u_char *obp = bp;
1268 #endif
1269
1270 WAIT_CIP (regs);
1271
1272 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
1273 SBIC_TC_PUT (regs, (unsigned)len);
1274 SET_SBIC_cmd (regs, SBIC_CMD_XFER_INFO);
1275
1276 /*
1277 * Loop for each byte transferred
1278 */
1279 do {
1280
1281 GET_SBIC_asr (regs, asr);
1282
1283 if ( asr & SBIC_ASR_DBR ) {
1284 if ( len ) {
1285 GET_SBIC_data (regs, *buf);
1286 buf++;
1287 len--;
1288 } else {
1289 u_char foo;
1290 GET_SBIC_data (regs, foo);
1291 }
1292 wait = sbic_data_wait;
1293 }
1294
1295 } while ( (asr & SBIC_ASR_INT) == 0 && wait-- > 0 );
1296
1297 QPRINTF(("sbicxfin {%d} %02x %02x %02x %02x %02x %02x "
1298 "%02x %02x %02x %02x\n", len, obp[0], obp[1], obp[2],
1299 obp[3], obp[4], obp[5], obp[6], obp[7], obp[8], obp[9]));
1300
1301 SBIC_TC_PUT (regs, 0);
1302
1303 /*
1304 * this leaves with one csr to be read
1305 */
1306 return len;
1307 }
1308
1309 /*
1310 * SCSI 'immediate' command: issue a command to some SCSI device
1311 * and get back an 'immediate' response (i.e., do programmed xfer
1312 * to get the response data). 'cbuf' is a buffer containing a scsi
1313 * command of length clen bytes. 'buf' is a buffer of length 'len'
1314 * bytes for data. The transfer direction is determined by the device
1315 * (i.e., by the scsi bus data xfer phase). If 'len' is zero, the
1316 * command must supply no data.
1317 *
1318 * Note that although this routine looks like it can handle disconnect/
1319 * reselect, the fact is that it can't. There is still some work to be
1320 * done to clean this lot up.
1321 */
1322 int
1323 sbicicmd(dev, cbuf, clen, buf, len)
1324 struct sbic_softc *dev;
1325 void *cbuf,
1326 *buf;
1327 int clen,
1328 len;
1329 {
1330 sbic_regmap_p regs = dev->sc_sbicp;
1331 struct sbic_acb *acb = dev->sc_nexus;
1332 u_char csr,
1333 asr;
1334 int still_busy = SBIC_STATE_RUNNING;
1335
1336 /*
1337 * Make sure pointers are OK
1338 */
1339 dev->sc_last = dev->sc_cur = &acb->sc_pa;
1340 dev->sc_tcnt = acb->sc_tcnt = 0;
1341
1342 acb->sc_dmacmd = 0;
1343 acb->sc_pa.dc_count = 0; /* No DMA */
1344 acb->sc_kv.dc_addr = buf;
1345 acb->sc_kv.dc_count = len;
1346
1347 #ifdef DEBUG
1348 if ( data_pointer_debug > 1 )
1349 printf("sbicicmd(%d,%d):%d\n", dev->target, dev->lun, acb->sc_kv.dc_count);
1350 #endif
1351
1352 /*
1353 * set the sbic into non-DMA mode
1354 */
1355 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
1356
1357 dev->sc_stat[0] = 0xff;
1358 dev->sc_msg[0] = 0xff;
1359
1360 /*
1361 * We're stealing the SCSI bus
1362 */
1363 dev->sc_flags |= SBICF_ICMD;
1364
1365 do {
1366 GET_SBIC_asr (regs, asr);
1367
1368 /*
1369 * select the SCSI bus (it's an error if bus isn't free)
1370 */
1371 if ( (dev->sc_flags & SBICF_SELECTED) == 0 &&
1372 still_busy != SBIC_STATE_DISCONNECT ) {
1373 if ( (csr = sbicselectbus(dev)) == 0 ) {
1374 dev->sc_flags &= ~SBICF_ICMD;
1375 return(-1);
1376 }
1377 } else
1378 if ( (asr & (SBIC_ASR_BSY | SBIC_ASR_INT)) == SBIC_ASR_INT )
1379 GET_SBIC_csr(regs, csr);
1380 else
1381 csr = 0;
1382
1383 if ( csr ) {
1384
1385 QPRINTF((">ASR:0x%02x CSR:0x%02x< ", asr, csr));
1386
1387 switch ( csr ) {
1388
1389 case SBIC_CSR_S_XFERRED:
1390 case SBIC_CSR_DISC:
1391 case SBIC_CSR_DISC_1:
1392 {
1393 u_char phase;
1394
1395 dev->sc_flags &= ~SBICF_SELECTED;
1396 GET_SBIC_cmd_phase (regs, phase);
1397
1398 if ( phase == 0x60 ) {
1399 GET_SBIC_tlun (regs, dev->sc_stat[0]);
1400 still_busy = SBIC_STATE_DONE; /* done */
1401 } else {
1402 #ifdef DEBUG
1403 if ( reselect_debug > 1 )
1404 printf("sbicicmd: handling disconnect\n");
1405 #endif
1406 still_busy = SBIC_STATE_DISCONNECT;
1407 }
1408 }
1409 break;
1410
1411 case SBIC_CSR_XFERRED | CMD_PHASE:
1412 case SBIC_CSR_MIS | CMD_PHASE:
1413 case SBIC_CSR_MIS_1 | CMD_PHASE:
1414 case SBIC_CSR_MIS_2 | CMD_PHASE:
1415 {
1416 if ( sbicxfout(regs, clen, cbuf) )
1417 still_busy = sbicabort(dev, "icmd sending cmd");
1418 }
1419 break;
1420
1421 case SBIC_CSR_XFERRED | STATUS_PHASE:
1422 case SBIC_CSR_MIS | STATUS_PHASE:
1423 case SBIC_CSR_MIS_1 | STATUS_PHASE:
1424 case SBIC_CSR_MIS_2 | STATUS_PHASE:
1425 {
1426 /*
1427 * The sbic does the status/cmd-complete reading ok,
1428 * so do this with its hi-level commands.
1429 */
1430 #ifdef DEBUG
1431 if ( sbic_debug )
1432 printf("SBICICMD status phase (bsy=%d)\n", still_busy);
1433 #endif
1434 SET_SBIC_cmd_phase(regs, 0x46);
1435 SET_SBIC_cmd(regs, SBIC_CMD_SEL_ATN_XFER);
1436 }
1437 break;
1438
1439 default:
1440 {
1441 still_busy = sbicnextstate(dev, csr, asr);
1442 }
1443 break;
1444 }
1445
1446 /*
1447 * make sure the last command was taken,
1448 * ie. we're not hunting after an ignored command..
1449 */
1450 GET_SBIC_asr(regs, asr);
1451
1452 /*
1453 * tapes may take a loooong time..
1454 */
1455 while (asr & SBIC_ASR_BSY ) {
1456
1457 if ( asr & SBIC_ASR_DBR ) {
1458 int i;
1459
1460 printf("sbicicmd: Waiting while sbic is jammed, CSR:%02x,ASR:%02x\n", csr,asr);
1461 #ifdef DDB
1462 Debugger();
1463 #endif
1464 /*
1465 * SBIC is jammed
1466 * DUNNO which direction
1467 * Try old direction
1468 */
1469 GET_SBIC_data(regs, i);
1470 GET_SBIC_asr(regs, asr);
1471
1472 if ( asr & SBIC_ASR_DBR ) /* Wants us to write */
1473 SET_SBIC_data(regs, i);
1474 }
1475
1476 GET_SBIC_asr(regs, asr);
1477 }
1478 }
1479
1480 /*
1481 * wait for last command to complete
1482 */
1483 if ( asr & SBIC_ASR_LCI ) {
1484 printf("sbicicmd: last command ignored\n");
1485 }
1486 else
1487 if ( still_busy >= SBIC_STATE_RUNNING ) /* Bsy */
1488 SBIC_WAIT (regs, SBIC_ASR_INT, sbic_cmd_wait);
1489
1490 /*
1491 * do it again
1492 */
1493 } while ( still_busy >= SBIC_STATE_RUNNING && dev->sc_stat[0] == 0xff );
1494
1495 /*
1496 * Sometimes we need to do an extra read of the CSR
1497 */
1498 GET_SBIC_csr(regs, csr);
1499
1500 #ifdef DEBUG
1501 if ( data_pointer_debug > 1 )
1502 printf("sbicicmd done(%d,%d):%d =%d=\n", dev->target, dev->lun,
1503 acb->sc_kv.dc_count,
1504 dev->sc_stat[0]);
1505 #endif
1506
1507 dev->sc_flags &= ~SBICF_ICMD;
1508
1509 return(dev->sc_stat[0]);
1510 }
1511
1512 /*
1513 * Finish SCSI xfer command: After the completion interrupt from
1514 * a read/write operation, sequence through the final phases in
1515 * programmed i/o. This routine is a lot like sbicicmd except we
1516 * skip (and don't allow) the select, cmd out and data in/out phases.
1517 */
1518 void
1519 sbicxfdone(dev)
1520 struct sbic_softc *dev;
1521 {
1522 sbic_regmap_p regs = dev->sc_sbicp;
1523 u_char phase,
1524 csr;
1525 int s;
1526
1527 QPRINTF(("{"));
1528 s = splbio();
1529
1530 /*
1531 * have the sbic complete on its own
1532 */
1533 SBIC_TC_PUT(regs, 0);
1534 SET_SBIC_cmd_phase(regs, 0x46);
1535 SET_SBIC_cmd(regs, SBIC_CMD_SEL_ATN_XFER);
1536
1537 do {
1538
1539 SBIC_WAIT (regs, SBIC_ASR_INT, 0);
1540 GET_SBIC_csr (regs, csr);
1541 QPRINTF(("%02x:", csr));
1542
1543 } while ( (csr != SBIC_CSR_DISC) && (csr != SBIC_CSR_DISC_1) &&
1544 (csr != SBIC_CSR_S_XFERRED));
1545
1546 dev->sc_flags &= ~SBICF_SELECTED;
1547
1548 GET_SBIC_cmd_phase (regs, phase);
1549 QPRINTF(("}%02x", phase));
1550
1551 if ( phase == 0x60 )
1552 GET_SBIC_tlun(regs, dev->sc_stat[0]);
1553 else
1554 sbicerror(dev, csr);
1555
1556 QPRINTF(("=STS:%02x=\n", dev->sc_stat[0]));
1557
1558 splx(s);
1559 }
1560
1561 /*
1562 * No DMA chains
1563 */
1564 int
1565 sbicgo(dev, xs)
1566 struct sbic_softc *dev;
1567 struct scsipi_xfer *xs;
1568 {
1569 struct sbic_acb *acb = dev->sc_nexus;
1570 sbic_regmap_p regs = dev->sc_sbicp;
1571 int i,
1572 dmaflags,
1573 count,
1574 usedma;
1575 u_char csr,
1576 asr,
1577 *addr;
1578
1579 dev->target = xs->sc_link->scsipi_scsi.target;
1580 dev->lun = xs->sc_link->scsipi_scsi.lun;
1581
1582 usedma = sbicdmaok(dev, xs);
1583
1584 #ifdef DEBUG
1585 if ( data_pointer_debug > 1 )
1586 printf("sbicgo(%d,%d): usedma=%d\n", dev->target, dev->lun, usedma);
1587 #endif
1588
1589 /*
1590 * select the SCSI bus (it's an error if bus isn't free)
1591 */
1592 if ( (csr = sbicselectbus(dev)) == 0 )
1593 return(0); /* Not done: needs to be rescheduled */
1594
1595 dev->sc_stat[0] = 0xff;
1596
1597 /*
1598 * Calculate DMA chains now
1599 */
1600 if ( acb->flags & ACB_DATAIN )
1601 dmaflags = DMAGO_READ;
1602 else
1603 dmaflags = 0;
1604
1605 addr = acb->sc_kv.dc_addr;
1606 count = acb->sc_kv.dc_count;
1607
1608 if ( count && ((char *)kvtop((caddr_t)addr) != acb->sc_pa.dc_addr) ) {
1609 printf("sbic: DMA buffer mapping changed %p->%lx\n",
1610 acb->sc_pa.dc_addr, kvtop((caddr_t)addr));
1611 #ifdef DDB
1612 Debugger();
1613 #endif
1614 }
1615
1616 #ifdef DEBUG
1617 ++sbicdma_ops; /* count total DMA operations */
1618 #endif
1619
1620 /*
1621 * Allocate the DMA chain
1622 * Mark end of segment...
1623 */
1624 acb->sc_tcnt = dev->sc_tcnt = 0;
1625 acb->sc_pa.dc_count = 0;
1626
1627 sbic_load_ptrs(dev);
1628
1629 /*
1630 * Enable interrupts but don't do any DMA
1631 * enintr() also enables interrupts for the sbic
1632 */
1633 dev->sc_enintr(dev);
1634
1635 if ( usedma ) {
1636 dev->sc_tcnt = dev->sc_dmago(dev, acb->sc_pa.dc_addr,
1637 acb->sc_pa.dc_count, dmaflags);
1638 #ifdef DEBUG
1639 dev->sc_dmatimo = dev->sc_tcnt ? 1 : 0;
1640 #endif
1641 } else
1642 dev->sc_dmacmd = 0; /* Don't use DMA */
1643
1644 acb->sc_dmacmd = dev->sc_dmacmd;
1645
1646 #ifdef DEBUG
1647 if ( data_pointer_debug > 1 ) {
1648 printf("sbicgo dmago:%d(%p:%lx) dmacmd=0x%02x\n", dev->target,
1649 dev->sc_cur->dc_addr,
1650 dev->sc_tcnt,
1651 dev->sc_dmacmd);
1652 }
1653 #endif
1654
1655 /*
1656 * Lets cycle a while then let the interrupt handler take over.
1657 */
1658 GET_SBIC_asr(regs, asr);
1659
1660 do {
1661
1662 QPRINTF(("go "));
1663
1664 /*
1665 * Handle the new phase
1666 */
1667 i = sbicnextstate(dev, csr, asr);
1668 #if 0
1669 WAIT_CIP(regs);
1670 #endif
1671 if ( i == SBIC_STATE_RUNNING ) {
1672 GET_SBIC_asr(regs, asr);
1673
1674 if ( asr & SBIC_ASR_LCI )
1675 printf("sbicgo: LCI asr:%02x csr:%02x\n", asr, csr);
1676
1677 if ( asr & SBIC_ASR_INT )
1678 GET_SBIC_csr(regs, csr);
1679 }
1680
1681 } while ( i == SBIC_STATE_RUNNING && asr & (SBIC_ASR_INT|SBIC_ASR_LCI) );
1682
1683 if ( i == SBIC_STATE_DONE ) {
1684 if ( dev->sc_stat[0] == 0xff )
1685 #if 0
1686 printf("sbicgo: done & stat = 0xff\n");
1687 #else
1688 ;
1689 #endif
1690 else
1691 return 1; /* Did we really finish that fast? */
1692 }
1693
1694 return 0;
1695 }
1696
1697
1698 int
1699 sbicintr(dev)
1700 struct sbic_softc *dev;
1701 {
1702 sbic_regmap_p regs = dev->sc_sbicp;
1703 u_char asr,
1704 csr;
1705 int i;
1706
1707 /*
1708 * pending interrupt?
1709 */
1710 GET_SBIC_asr (regs, asr);
1711 if ( (asr & SBIC_ASR_INT) == 0 )
1712 return(0);
1713
1714 GET_SBIC_csr(regs, csr);
1715
1716 do {
1717
1718 QPRINTF(("intr[0x%x]", csr));
1719
1720 i = sbicnextstate(dev, csr, asr);
1721 #if 0
1722 WAIT_CIP(regs);
1723 #endif
1724 if ( i == SBIC_STATE_RUNNING ) {
1725 GET_SBIC_asr(regs, asr);
1726
1727 if ( asr & SBIC_ASR_LCI )
1728 printf("sbicgo: LCI asr:%02x csr:%02x\n", asr, csr);
1729
1730 if ( asr & SBIC_ASR_INT )
1731 GET_SBIC_csr(regs, csr);
1732 }
1733
1734 } while ( i == SBIC_STATE_RUNNING && asr & (SBIC_ASR_INT|SBIC_ASR_LCI) );
1735
1736 QPRINTF(("intr done. state=%d, asr=0x%02x\n", i, asr));
1737
1738 return(1);
1739 }
1740
1741 /*
1742 * Run commands and wait for disconnect.
1743 * This is only ever called when a command is in progress, when we
1744 * want to busy wait for it to finish.
1745 */
1746 int
1747 sbicpoll(dev)
1748 struct sbic_softc *dev;
1749 {
1750 sbic_regmap_p regs = dev->sc_sbicp;
1751 u_char asr,
1752 csr;
1753 int i;
1754
1755 /*
1756 * Wait for the next interrupt
1757 */
1758 SBIC_WAIT(regs, SBIC_ASR_INT, sbic_cmd_wait);
1759
1760 do {
1761 GET_SBIC_asr (regs, asr);
1762
1763 if ( asr & SBIC_ASR_INT )
1764 GET_SBIC_csr(regs, csr);
1765
1766 QPRINTF(("poll[0x%x]", csr));
1767
1768 /*
1769 * Handle it
1770 */
1771 i = sbicnextstate(dev, csr, asr);
1772
1773 WAIT_CIP(regs);
1774 GET_SBIC_asr(regs, asr);
1775
1776 /*
1777 * tapes may take a loooong time..
1778 */
1779 while ( asr & SBIC_ASR_BSY ) {
1780 u_char z = 0;
1781
1782 if ( asr & SBIC_ASR_DBR ) {
1783 printf("sbipoll: Waiting while sbic is jammed, CSR:%02x,ASR:%02x\n", csr,asr);
1784 #ifdef DDB
1785 Debugger();
1786 #endif
1787 /*
1788 * SBIC is jammed
1789 * DUNNO which direction
1790 * Try old direction
1791 */
1792 GET_SBIC_data(regs, z);
1793 GET_SBIC_asr(regs, asr);
1794
1795 if ( asr & SBIC_ASR_DBR ) /* Wants us to write */
1796 SET_SBIC_data(regs, z);
1797 }
1798
1799 GET_SBIC_asr(regs, asr);
1800 }
1801
1802 if ( asr & SBIC_ASR_LCI )
1803 printf("sbicpoll: LCI asr:%02x csr:%02x\n", asr,csr);
1804 else
1805 if ( i == SBIC_STATE_RUNNING ) /* BSY */
1806 SBIC_WAIT(regs, SBIC_ASR_INT, sbic_cmd_wait);
1807
1808 } while ( i == SBIC_STATE_RUNNING );
1809
1810 return(1);
1811 }
1812
1813 /*
1814 * Handle a single msgin
1815 */
1816 int
1817 sbicmsgin(dev)
1818 struct sbic_softc *dev;
1819 {
1820 sbic_regmap_p regs = dev->sc_sbicp;
1821 int recvlen = 1;
1822 u_char asr,
1823 csr,
1824 *tmpaddr,
1825 *msgaddr;
1826
1827 tmpaddr = msgaddr = dev->sc_msg;
1828
1829 tmpaddr[0] = 0xff;
1830 tmpaddr[1] = 0xff;
1831
1832 GET_SBIC_asr(regs, asr);
1833
1834 #ifdef DEBUG
1835 if ( reselect_debug > 1 )
1836 printf("sbicmsgin asr=%02x\n", asr);
1837 #endif
1838
1839 GET_SBIC_selid (regs, csr);
1840 SET_SBIC_selid (regs, csr | SBIC_SID_FROM_SCSI);
1841
1842 SBIC_TC_PUT(regs, 0);
1843 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
1844
1845 do {
1846 while( recvlen-- ) {
1847
1848 /*
1849 * Fetch the next byte of the message
1850 */
1851 RECV_BYTE(regs, *tmpaddr);
1852
1853 /*
1854 * get the command completion interrupt, or we
1855 * can't send a new command (LCI)
1856 */
1857 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
1858 GET_SBIC_csr(regs, csr);
1859
1860 #ifdef DEBUG
1861 if ( reselect_debug > 1 )
1862 printf("sbicmsgin: got %02x csr %02x\n", *tmpaddr, csr);
1863 #endif
1864
1865 tmpaddr++;
1866
1867 if ( recvlen ) {
1868 /*
1869 * Clear ACK, and wait for the interrupt for the next byte
1870 */
1871 SET_SBIC_cmd(regs, SBIC_CMD_CLR_ACK);
1872 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
1873 GET_SBIC_csr(regs, csr);
1874 }
1875 }
1876
1877 if ( msgaddr[0] == 0xff ) {
1878 printf("sbicmsgin: sbic swallowed our message\n");
1879 break;
1880 }
1881
1882 #ifdef DEBUG
1883 if ( sync_debug ) {
1884 GET_SBIC_asr(regs, asr);
1885 printf("msgin done csr 0x%x asr 0x%x msg 0x%x\n", csr, asr, msgaddr[0]);
1886 }
1887 #endif
1888 /*
1889 * test whether this is a reply to our sync
1890 * request
1891 */
1892 if ( MSG_ISIDENTIFY(msgaddr[0]) ) {
1893
1894 /*
1895 * Got IFFY msg -- ack it
1896 */
1897 QPRINTF(("IFFY"));
1898
1899 } else
1900 if ( msgaddr[0] == MSG_REJECT &&
1901 dev->sc_sync[dev->target].state == SYNC_SENT) {
1902
1903 /*
1904 * Target probably rejected our Sync negotiation.
1905 */
1906 QPRINTF(("REJECT of SYN"));
1907
1908 #ifdef DEBUG
1909 if ( sync_debug )
1910 printf("target %d rejected sync, going async\n", dev->target);
1911 #endif
1912
1913 dev->sc_sync[dev->target].period = sbic_min_period;
1914 dev->sc_sync[dev->target].offset = 0;
1915 dev->sc_sync[dev->target].state = SYNC_DONE;
1916 SET_SBIC_syn(regs, SBIC_SYN(dev->sc_sync[dev->target].offset,
1917 dev->sc_sync[dev->target].period));
1918
1919 } else
1920 if ( msgaddr[0] == MSG_REJECT ) {
1921
1922 /*
1923 * we'll never REJECt a REJECT message..
1924 */
1925 QPRINTF(("REJECT"));
1926
1927 } else
1928 if ( msgaddr[0] == MSG_SAVE_DATA_PTR ) {
1929
1930 /*
1931 * don't reject this either.
1932 */
1933 QPRINTF(("MSG_SAVE_DATA_PTR"));
1934
1935 } else
1936 if ( msgaddr[0] == MSG_RESTORE_PTR ) {
1937
1938 /*
1939 * don't reject this either.
1940 */
1941 QPRINTF(("MSG_RESTORE_PTR"));
1942
1943 } else
1944 if ( msgaddr[0] == MSG_DISCONNECT ) {
1945
1946 /*
1947 * Target is disconnecting...
1948 */
1949 QPRINTF(("DISCONNECT"));
1950
1951 #ifdef DEBUG
1952 if ( reselect_debug > 1 && msgaddr[0] == MSG_DISCONNECT )
1953 printf("sbicmsgin: got disconnect msg %s\n",
1954 (dev->sc_flags & SBICF_ICMD) ? "rejecting" : "");
1955 #endif
1956
1957 if ( dev->sc_flags & SBICF_ICMD ) {
1958 /*
1959 * We're in immediate mode. Prevent disconnects.
1960 * prepare to reject the message, NACK
1961 */
1962 SET_SBIC_cmd(regs, SBIC_CMD_SET_ATN);
1963 WAIT_CIP(regs);
1964 }
1965
1966 } else
1967 if ( msgaddr[0] == MSG_CMD_COMPLETE ) {
1968
1969 /*
1970 * !! KLUDGE ALERT !! quite a few drives don't seem to
1971 * really like the current way of sending the
1972 * sync-handshake together with the ident-message, and
1973 * they react by sending command-complete and
1974 * disconnecting right after returning the valid sync
1975 * handshake. So, all I can do is reselect the drive,
1976 * and hope it won't disconnect again. I don't think
1977 * this is valid behavior, but I can't help fixing a
1978 * problem that apparently exists.
1979 *
1980 * Note: we should not get here on `normal' command
1981 * completion, as that condition is handled by the
1982 * high-level sel&xfer resume command used to walk
1983 * thru status/cc-phase.
1984 */
1985 QPRINTF(("CMD_COMPLETE"));
1986
1987 #ifdef DEBUG
1988 if ( sync_debug )
1989 printf ("GOT MSG %d! target %d acting weird.."
1990 " waiting for disconnect...\n", msgaddr[0], dev->target);
1991 #endif
1992
1993 /*
1994 * Check to see if sbic is handling this
1995 */
1996 GET_SBIC_asr(regs, asr);
1997
1998 /*
1999 * XXXSCW: I'm not convinced of this, we haven't negated ACK yet...
2000 */
2001 if ( asr & SBIC_ASR_BSY )
2002 return SBIC_STATE_RUNNING;
2003
2004 /*
2005 * Let's try this: Assume it works and set status to 00
2006 */
2007 dev->sc_stat[0] = 0;
2008
2009 } else
2010 if ( msgaddr[0] == MSG_EXT_MESSAGE && tmpaddr == &(msgaddr[1]) ) {
2011
2012 /*
2013 * Target is sending us an extended message. We'll assume it's
2014 * the response to our Sync. negotiation.
2015 */
2016 QPRINTF(("ExtMSG\n"));
2017
2018 /*
2019 * Read in whole extended message. First, negate ACK to accept
2020 * the MSG_EXT_MESSAGE byte...
2021 */
2022 SET_SBIC_cmd(regs, SBIC_CMD_CLR_ACK);
2023
2024 /*
2025 * Wait for the interrupt for the next byte (length)
2026 */
2027 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
2028 GET_SBIC_csr(regs, csr);
2029
2030 #ifdef DEBUG
2031 QPRINTF(("CLR ACK csr %02x\n", csr));
2032 #endif
2033
2034 /*
2035 * Read the length byte
2036 */
2037 RECV_BYTE(regs, *tmpaddr);
2038
2039 /*
2040 * Wait for command completion IRQ
2041 */
2042 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
2043 GET_SBIC_csr(regs, csr);
2044
2045 /*
2046 * Reload the loop counter
2047 */
2048 recvlen = *tmpaddr++;
2049
2050 QPRINTF(("Recving ext msg, csr %02x len %02x\n", csr, recvlen));
2051
2052 } else
2053 if ( msgaddr[0] == MSG_EXT_MESSAGE && msgaddr[1] == 3 &&
2054 msgaddr[2] == MSG_SYNC_REQ ) {
2055
2056 /*
2057 * We've received the complete Extended Message Sync. Request...
2058 */
2059 QPRINTF(("SYN"));
2060
2061 /*
2062 * Compute the required Transfer Period for the WD chip...
2063 */
2064 dev->sc_sync[dev->target].period = sbicfromscsiperiod(dev, msgaddr[3]);
2065 dev->sc_sync[dev->target].offset = msgaddr[4];
2066 dev->sc_sync[dev->target].state = SYNC_DONE;
2067
2068 /*
2069 * Put the WD chip in synchronous mode
2070 */
2071 SET_SBIC_syn(regs, SBIC_SYN(dev->sc_sync[dev->target].offset,
2072 dev->sc_sync[dev->target].period));
2073 #ifdef DEBUG
2074 if ( sync_debug )
2075 printf("msgin(%d): sync reg = 0x%02x\n", dev->target,
2076 SBIC_SYN(dev->sc_sync[dev->target].offset,
2077 dev->sc_sync[dev->target].period));
2078 #endif
2079
2080 printf("%s: target %d now synchronous, period=%dns, offset=%d.\n",
2081 dev->sc_dev.dv_xname, dev->target,
2082 msgaddr[3] * 4, msgaddr[4]);
2083
2084 } else {
2085
2086 /*
2087 * We don't support whatever this message is...
2088 */
2089 #ifdef DEBUG
2090 if ( sbic_debug || sync_debug )
2091 printf ("sbicmsgin: Rejecting message 0x%02x\n", msgaddr[0]);
2092 #endif
2093
2094 /*
2095 * prepare to reject the message, NACK
2096 */
2097 SET_SBIC_cmd(regs, SBIC_CMD_SET_ATN);
2098 WAIT_CIP(regs);
2099 }
2100
2101 /*
2102 * Negate ACK to complete the transfer
2103 */
2104 SET_SBIC_cmd(regs, SBIC_CMD_CLR_ACK);
2105
2106 /*
2107 * Wait for the interrupt for the next byte, or phase change.
2108 * Only read the CSR if we have more data to transfer.
2109 * XXXSCW: We should really verify that we're still in MSG IN phase
2110 * before blindly going back around this loop, but that would mean
2111 * we read the CSR... <sigh>
2112 */
2113 SBIC_WAIT(regs, SBIC_ASR_INT, 0);
2114 if ( recvlen > 0 )
2115 GET_SBIC_csr(regs, csr);
2116
2117 } while ( recvlen > 0 );
2118
2119 /*
2120 * Should still have one CSR to read
2121 */
2122 return SBIC_STATE_RUNNING;
2123 }
2124
2125
2126 /*
2127 * sbicnextstate()
2128 * return:
2129 * SBIC_STATE_DONE == done
2130 * SBIC_STATE_RUNNING == working
2131 * SBIC_STATE_DISCONNECT == disconnected
2132 * SBIC_STATE_ERROR == error
2133 */
2134 int
2135 sbicnextstate(dev, csr, asr)
2136 struct sbic_softc *dev;
2137 u_char csr,
2138 asr;
2139 {
2140 sbic_regmap_p regs = dev->sc_sbicp;
2141 struct sbic_acb *acb = dev->sc_nexus;
2142
2143 QPRINTF(("next[%02x,%02x]: ",asr,csr));
2144
2145 switch (csr) {
2146
2147 case SBIC_CSR_XFERRED | CMD_PHASE:
2148 case SBIC_CSR_MIS | CMD_PHASE:
2149 case SBIC_CSR_MIS_1 | CMD_PHASE:
2150 case SBIC_CSR_MIS_2 | CMD_PHASE:
2151 {
2152 if ( sbicxfout(regs, acb->clen, &acb->cmd) )
2153 goto abort;
2154 }
2155 break;
2156
2157 case SBIC_CSR_XFERRED | STATUS_PHASE:
2158 case SBIC_CSR_MIS | STATUS_PHASE:
2159 case SBIC_CSR_MIS_1 | STATUS_PHASE:
2160 case SBIC_CSR_MIS_2 | STATUS_PHASE:
2161 {
2162 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
2163
2164 /*
2165 * this should be the normal i/o completion case.
2166 * get the status & cmd complete msg then let the
2167 * device driver look at what happened.
2168 */
2169 sbicxfdone(dev);
2170
2171 #ifdef DEBUG
2172 dev->sc_dmatimo = 0;
2173 if ( data_pointer_debug > 1 )
2174 printf("next dmastop: %d(%p:%lx)\n", dev->target,
2175 dev->sc_cur->dc_addr,
2176 dev->sc_tcnt);
2177 #endif
2178 /*
2179 * Stop the DMA chip
2180 */
2181 dev->sc_dmastop(dev);
2182
2183 dev->sc_flags &= ~(SBICF_INDMA | SBICF_DCFLUSH);
2184
2185 /*
2186 * Indicate to the upper layers that the command is done
2187 */
2188 sbic_scsidone(acb, dev->sc_stat[0]);
2189
2190 return SBIC_STATE_DONE;
2191 }
2192
2193 case SBIC_CSR_XFERRED | DATA_OUT_PHASE:
2194 case SBIC_CSR_XFERRED | DATA_IN_PHASE:
2195 case SBIC_CSR_MIS | DATA_OUT_PHASE:
2196 case SBIC_CSR_MIS | DATA_IN_PHASE:
2197 case SBIC_CSR_MIS_1 | DATA_OUT_PHASE:
2198 case SBIC_CSR_MIS_1 | DATA_IN_PHASE:
2199 case SBIC_CSR_MIS_2 | DATA_OUT_PHASE:
2200 case SBIC_CSR_MIS_2 | DATA_IN_PHASE:
2201 {
2202 /*
2203 * Verify that we expected to transfer data...
2204 */
2205 if ( acb->sc_kv.dc_count <= 0 ) {
2206 printf("next: DATA phase with xfer count == %d, asr:0x%02x csr:0x%02x\n",
2207 acb->sc_kv.dc_count, asr, csr);
2208 goto abort;
2209 }
2210
2211 /*
2212 * Should we transfer using PIO or DMA ?
2213 */
2214 if ( dev->sc_xs->xs_control & XS_CTL_POLL || dev->sc_flags & SBICF_ICMD ||
2215 acb->sc_dmacmd == 0 ) {
2216
2217 /*
2218 * Do PIO transfer
2219 */
2220 int i;
2221
2222 #ifdef DEBUG
2223 if ( data_pointer_debug > 1 )
2224 printf("next PIO: %d(%p:%x)\n", dev->target,
2225 acb->sc_kv.dc_addr,
2226 acb->sc_kv.dc_count);
2227 #endif
2228
2229 if ( SBIC_PHASE(csr) == DATA_IN_PHASE )
2230 /*
2231 * data in
2232 */
2233 i = sbicxfin(regs, acb->sc_kv.dc_count,
2234 acb->sc_kv.dc_addr);
2235 else
2236 /*
2237 * data out
2238 */
2239 i = sbicxfout(regs, acb->sc_kv.dc_count,
2240 acb->sc_kv.dc_addr);
2241
2242 acb->sc_kv.dc_addr += (acb->sc_kv.dc_count - i);
2243 acb->sc_kv.dc_count = i;
2244
2245 /*
2246 * Update current count...
2247 */
2248 acb->sc_tcnt = dev->sc_tcnt = i;
2249
2250 dev->sc_flags &= ~SBICF_INDMA;
2251
2252 } else {
2253
2254 /*
2255 * Do DMA transfer
2256 * set next dma addr and dec count
2257 */
2258 sbic_save_ptrs(dev);
2259 sbic_load_ptrs(dev);
2260
2261 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI |
2262 SBIC_MACHINE_DMA_MODE);
2263
2264 #ifdef DEBUG
2265 dev->sc_dmatimo = 1;
2266 if ( data_pointer_debug > 1 )
2267 printf("next DMA: %d(%p:%lx)\n", dev->target,
2268 dev->sc_cur->dc_addr,
2269 dev->sc_tcnt);
2270 #endif
2271 /*
2272 * Start the DMA chip going
2273 */
2274 dev->sc_tcnt = dev->sc_dmanext(dev);
2275
2276 /*
2277 * Tell the WD chip how much to transfer this time around
2278 */
2279 SBIC_TC_PUT(regs, (unsigned)dev->sc_tcnt);
2280
2281 /*
2282 * Start the transfer
2283 */
2284 SET_SBIC_cmd(regs, SBIC_CMD_XFER_INFO);
2285
2286 /*
2287 * Indicate that we're in DMA mode
2288 */
2289 dev->sc_flags |= SBICF_INDMA;
2290 }
2291 }
2292 break;
2293
2294 case SBIC_CSR_XFERRED | MESG_IN_PHASE:
2295 case SBIC_CSR_MIS | MESG_IN_PHASE:
2296 case SBIC_CSR_MIS_1 | MESG_IN_PHASE:
2297 case SBIC_CSR_MIS_2 | MESG_IN_PHASE:
2298 {
2299 sbic_save_ptrs(dev);
2300
2301 /*
2302 * Handle a single message in...
2303 */
2304 return sbicmsgin(dev);
2305 }
2306
2307 case SBIC_CSR_MSGIN_W_ACK:
2308 {
2309 /*
2310 * We should never see this since it's handled in 'sbicmsgin()'
2311 * but just for the sake of paranoia...
2312 */
2313 SET_SBIC_cmd(regs, SBIC_CMD_CLR_ACK); /* Dunno what I'm ACKing */
2314 printf("Acking unknown msgin CSR:%02x",csr);
2315 }
2316 break;
2317
2318 case SBIC_CSR_XFERRED | MESG_OUT_PHASE:
2319 case SBIC_CSR_MIS | MESG_OUT_PHASE:
2320 case SBIC_CSR_MIS_1 | MESG_OUT_PHASE:
2321 case SBIC_CSR_MIS_2 | MESG_OUT_PHASE:
2322 {
2323 /*
2324 * We only ever handle a message out phase here for sending a
2325 * REJECT message.
2326 */
2327 sbic_save_ptrs(dev);
2328
2329 #ifdef DEBUG
2330 if (sync_debug)
2331 printf ("sending REJECT msg to last msg.\n");
2332 #endif
2333
2334 SEND_BYTE(regs, MSG_REJECT);
2335 WAIT_CIP(regs);
2336 }
2337 break;
2338
2339 case SBIC_CSR_DISC:
2340 case SBIC_CSR_DISC_1:
2341 {
2342 /*
2343 * Try to schedule another target
2344 */
2345 sbic_save_ptrs(dev);
2346
2347 dev->sc_flags &= ~SBICF_SELECTED;
2348
2349 #ifdef DEBUG
2350 if ( reselect_debug > 1 )
2351 printf("sbicnext target %d disconnected\n", dev->target);
2352 #endif
2353
2354 TAILQ_INSERT_HEAD(&dev->nexus_list, acb, chain);
2355
2356 ++dev->sc_tinfo[dev->target].dconns;
2357
2358 dev->sc_nexus = NULL;
2359 dev->sc_xs = NULL;
2360
2361 if ( acb->xs->xs_control & XS_CTL_POLL || dev->sc_flags & SBICF_ICMD ||
2362 !sbic_parallel_operations )
2363 return SBIC_STATE_DISCONNECT;
2364
2365 QPRINTF(("sbicnext: calling sbic_sched\n"));
2366
2367 sbic_sched(dev);
2368
2369 QPRINTF(("sbicnext: sbic_sched returned\n"));
2370
2371 return SBIC_STATE_DISCONNECT;
2372 }
2373
2374 case SBIC_CSR_RSLT_NI:
2375 case SBIC_CSR_RSLT_IFY:
2376 {
2377 /*
2378 * A reselection.
2379 * Note that since we don't enable Advanced Features (assuming
2380 * the WD chip is at least the 'A' revision), we're only ever
2381 * likely to see the 'SBIC_CSR_RSLT_NI' status. But for the
2382 * hell of it, we'll handle it anyway, for all the extra code
2383 * it needs...
2384 */
2385 u_char newtarget,
2386 newlun;
2387
2388 GET_SBIC_rselid(regs, newtarget);
2389
2390 /*
2391 * check SBIC_RID_SIV?
2392 */
2393 newtarget &= SBIC_RID_MASK;
2394
2395 if ( csr == SBIC_CSR_RSLT_IFY ) {
2396
2397 /*
2398 * Read Identify msg to avoid lockup
2399 */
2400 GET_SBIC_data(regs, newlun);
2401 WAIT_CIP(regs);
2402 newlun &= SBIC_TLUN_MASK;
2403
2404 } else {
2405
2406 /*
2407 * Need to read Identify message the hard way, assuming
2408 * the target even sends us one...
2409 */
2410 for (newlun = 255; newlun; --newlun) {
2411 GET_SBIC_asr(regs, asr);
2412 if (asr & SBIC_ASR_INT)
2413 break;
2414 delay(10);
2415 }
2416
2417 /*
2418 * If we didn't get an interrupt, somethink's up
2419 */
2420 if ( (asr & SBIC_ASR_INT) == 0 ) {
2421 printf("%s: Reselect without identify? asr %x\n",
2422 dev->sc_dev.dv_xname, asr);
2423 newlun = 0; /* XXXX */
2424 } else {
2425 /*
2426 * We got an interrupt, verify that it's a change to
2427 * message in phase, and if so read the message.
2428 */
2429 GET_SBIC_csr(regs,csr);
2430
2431 if ( csr == (SBIC_CSR_MIS | MESG_IN_PHASE) ||
2432 csr == (SBIC_CSR_MIS_1 | MESG_IN_PHASE) ||
2433 csr == (SBIC_CSR_MIS_2 | MESG_IN_PHASE) ) {
2434 /*
2435 * Yup, gone to message in. Fetch the target LUN
2436 */
2437 sbicmsgin(dev);
2438 newlun = dev->sc_msg[0] & 0x07;
2439
2440 } else {
2441 /*
2442 * Whoops! Target didn't go to message in phase!!
2443 */
2444 printf("RSLT_NI - not MESG_IN_PHASE %x\n", csr);
2445 newlun = 0; /* XXXSCW */
2446 }
2447 }
2448 }
2449
2450 /*
2451 * Ok, we have the identity of the reselecting target.
2452 */
2453 #ifdef DEBUG
2454 if ( reselect_debug > 1 ||
2455 (reselect_debug && csr == SBIC_CSR_RSLT_NI) ) {
2456 printf("sbicnext: reselect %s from targ %d lun %d\n",
2457 csr == SBIC_CSR_RSLT_NI ? "NI" : "IFY", newtarget, newlun);
2458 }
2459 #endif
2460
2461 if ( dev->sc_nexus ) {
2462 /*
2463 * Whoops! We've been reselected with an command in progress!
2464 * The best we can do is to put the current command back on the
2465 * ready list and hope for the best.
2466 */
2467 #ifdef DEBUG
2468 if ( reselect_debug > 1 ) {
2469 printf("%s: reselect %s with active command\n",
2470 dev->sc_dev.dv_xname,
2471 csr == SBIC_CSR_RSLT_NI ? "NI" : "IFY");
2472 }
2473 #endif
2474
2475 TAILQ_INSERT_HEAD(&dev->ready_list, dev->sc_nexus, chain);
2476
2477 dev->sc_tinfo[dev->target].lubusy &= ~(1 << dev->lun);
2478
2479 dev->sc_nexus = NULL;
2480 dev->sc_xs = NULL;
2481 }
2482
2483 /*
2484 * Reload sync values for this target
2485 */
2486 if ( dev->sc_sync[newtarget].state == SYNC_DONE )
2487 SET_SBIC_syn(regs, SBIC_SYN (dev->sc_sync[newtarget].offset,
2488 dev->sc_sync[newtarget].period));
2489 else
2490 SET_SBIC_syn(regs, SBIC_SYN (0, sbic_min_period));
2491
2492 /*
2493 * Loop through the nexus list until we find the saved entry
2494 * for the reselecting target...
2495 */
2496 for (acb = dev->nexus_list.tqh_first; acb;
2497 acb = acb->chain.tqe_next) {
2498
2499 if ( acb->xs->sc_link->scsipi_scsi.target == newtarget &&
2500 acb->xs->sc_link->scsipi_scsi.lun == newlun) {
2501 /*
2502 * We've found the saved entry. Dequeue it, and
2503 * make it current again.
2504 */
2505 TAILQ_REMOVE(&dev->nexus_list, acb, chain);
2506
2507 dev->sc_nexus = acb;
2508 dev->sc_xs = acb->xs;
2509 dev->sc_flags |= SBICF_SELECTED;
2510 dev->target = newtarget;
2511 dev->lun = newlun;
2512 break;
2513 }
2514 }
2515
2516 if ( acb == NULL ) {
2517 printf("%s: reselect %s targ %d not in nexus_list %p\n",
2518 dev->sc_dev.dv_xname,
2519 csr == SBIC_CSR_RSLT_NI ? "NI" : "IFY", newtarget,
2520 &dev->nexus_list.tqh_first);
2521 panic("bad reselect in sbic");
2522 }
2523
2524 if ( csr == SBIC_CSR_RSLT_IFY )
2525 SET_SBIC_cmd(regs, SBIC_CMD_CLR_ACK);
2526 }
2527 break;
2528
2529 default:
2530 abort:
2531 {
2532 /*
2533 * Something unexpected happened -- deal with it.
2534 */
2535 printf("next: aborting asr 0x%02x csr 0x%02x\n", asr, csr);
2536
2537 #ifdef DDB
2538 Debugger();
2539 #endif
2540
2541 #ifdef DEBUG
2542 dev->sc_dmatimo = 0;
2543 if ( data_pointer_debug > 1 )
2544 printf("next dmastop: %d(%p:%lx)\n", dev->target,
2545 dev->sc_cur->dc_addr,
2546 dev->sc_tcnt);
2547 #endif
2548
2549 dev->sc_dmastop(dev);
2550 SET_SBIC_control(regs, SBIC_CTL_EDI | SBIC_CTL_IDI);
2551 if ( dev->sc_xs ) sbicerror(dev, csr);
2552 sbicabort(dev, "next");
2553
2554 if ( dev->sc_flags & SBICF_INDMA ) {
2555 dev->sc_flags &= ~(SBICF_INDMA | SBICF_DCFLUSH);
2556
2557 #ifdef DEBUG
2558 dev->sc_dmatimo = 0;
2559 if ( data_pointer_debug > 1 )
2560 printf("next dmastop: %d(%p:%lx)\n", dev->target,
2561 dev->sc_cur->dc_addr,
2562 dev->sc_tcnt);
2563 #endif
2564 sbic_scsidone(acb, -1);
2565 }
2566
2567 return SBIC_STATE_ERROR;
2568 }
2569 }
2570
2571 return(SBIC_STATE_RUNNING);
2572 }
2573
2574
2575 /*
2576 * Check if DMA can not be used with specified buffer
2577 */
2578 int
2579 sbiccheckdmap(bp, len, mask)
2580 void *bp;
2581 u_long len,
2582 mask;
2583 {
2584 u_char *buffer;
2585 u_long phy_buf;
2586 u_long phy_len;
2587
2588 buffer = bp;
2589
2590 if ( len == 0 )
2591 return(1);
2592
2593 while ( len ) {
2594
2595 phy_buf = kvtop((caddr_t)buffer);
2596 phy_len = NBPG - ((int) buffer & PGOFSET);
2597
2598 if ( len < phy_len )
2599 phy_len = len;
2600
2601 if ( phy_buf & mask )
2602 return(1);
2603
2604 buffer += phy_len;
2605 len -= phy_len;
2606 }
2607
2608 return(0);
2609 }
2610
2611 int
2612 sbictoscsiperiod(dev, a)
2613 struct sbic_softc *dev;
2614 int a;
2615 {
2616 unsigned int fs;
2617
2618 /*
2619 * cycle = DIV / (2 * CLK)
2620 * DIV = FS + 2
2621 * best we can do is 200ns at 20Mhz, 2 cycles
2622 */
2623
2624 GET_SBIC_myid(dev->sc_sbicp, fs);
2625
2626 fs = (fs >> 6) + 2; /* DIV */
2627
2628 fs = (fs * 10000) / (dev->sc_clkfreq << 1); /* Cycle, in ns */
2629
2630 if ( a < 2 )
2631 a = 8; /* map to Cycles */
2632
2633 return ( (fs * a) >> 2 ); /* in 4 ns units */
2634 }
2635
2636 int
2637 sbicfromscsiperiod(dev, p)
2638 struct sbic_softc *dev;
2639 int p;
2640 {
2641 unsigned fs,
2642 ret;
2643
2644 /*
2645 * Just the inverse of the above
2646 */
2647 GET_SBIC_myid(dev->sc_sbicp, fs);
2648
2649 fs = (fs >> 6) + 2; /* DIV */
2650
2651 fs = (fs * 10000) / (dev->sc_clkfreq << 1); /* Cycle, in ns */
2652
2653 ret = p << 2; /* in ns units */
2654 ret = ret / fs; /* in Cycles */
2655
2656 if ( ret < sbic_min_period )
2657 return(sbic_min_period);
2658
2659 /*
2660 * verify rounding
2661 */
2662 if ( sbictoscsiperiod(dev, ret) < p )
2663 ret++;
2664
2665 return( (ret >= 8) ? 0 : ret );
2666 }
2667
2668 #ifdef DEBUG
2669 void
2670 sbictimeout(dev)
2671 struct sbic_softc *dev;
2672 {
2673 int s,
2674 asr;
2675
2676 s = splbio();
2677
2678 if ( dev->sc_dmatimo ) {
2679
2680 if ( dev->sc_dmatimo > 1 ) {
2681
2682 printf("%s: dma timeout #%d\n", dev->sc_dev.dv_xname,
2683 dev->sc_dmatimo - 1);
2684
2685 GET_SBIC_asr(dev->sc_sbicp, asr);
2686
2687 if ( asr & SBIC_ASR_INT ) {
2688 /*
2689 * We need to service a missed IRQ
2690 */
2691 sbicintr(dev);
2692 } else {
2693 (void) sbicabort(dev, "timeout");
2694 splx(s);
2695 return;
2696 }
2697 }
2698
2699 dev->sc_dmatimo++;
2700 }
2701
2702 splx(s);
2703
2704 timeout((void *)sbictimeout, dev, 30 * hz);
2705 }
2706 #endif
2707