xref: /netbsd-src/sys/dev/ic/wd33c93.c (revision 404fbe5fb94ca1e054339640cabb2801ce52dd30)
1 /*	$NetBSD: wd33c93.c,v 1.19 2008/04/08 12:07:27 cegger Exp $	*/
2 
3 /*
4  * Copyright (c) 1990 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * Van Jacobson of Lawrence Berkeley Laboratory.
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. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *  @(#)scsi.c  7.5 (Berkeley) 5/4/91
35  */
36 
37 /*
38  * Changes Copyright (c) 2001 Wayne Knowles
39  * Changes Copyright (c) 1996 Steve Woodford
40  * Original Copyright (c) 1994 Christian E. Hopps
41  *
42  * This code is derived from software contributed to Berkeley by
43  * Van Jacobson of Lawrence Berkeley Laboratory.
44  *
45  * Redistribution and use in source and binary forms, with or without
46  * modification, are permitted provided that the following conditions
47  * are met:
48  * 1. Redistributions of source code must retain the above copyright
49  *    notice, this list of conditions and the following disclaimer.
50  * 2. Redistributions in binary form must reproduce the above copyright
51  *    notice, this list of conditions and the following disclaimer in the
52  *    documentation and/or other materials provided with the distribution.
53  * 3. All advertising materials mentioning features or use of this software
54  *    must display the following acknowledgement:
55  *  This product includes software developed by the University of
56  *  California, Berkeley and its contributors.
57  * 4. Neither the name of the University nor the names of its contributors
58  *    may be used to endorse or promote products derived from this software
59  *    without specific prior written permission.
60  *
61  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
62  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
63  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
64  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
65  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
66  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
67  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
68  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
69  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
70  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71  * SUCH DAMAGE.
72  *
73  *  @(#)scsi.c  7.5 (Berkeley) 5/4/91
74  */
75 
76 /*
77  * This version of the driver is pretty well generic, so should work with
78  * any flavour of WD33C93 chip.
79  */
80 
81 #include <sys/cdefs.h>
82 __KERNEL_RCSID(0, "$NetBSD: wd33c93.c,v 1.19 2008/04/08 12:07:27 cegger Exp $");
83 
84 #include "opt_ddb.h"
85 
86 #include <sys/param.h>
87 #include <sys/systm.h>
88 #include <sys/device.h>
89 #include <sys/kernel.h> /* For hz */
90 #include <sys/disklabel.h>
91 #include <sys/buf.h>
92 
93 #include <dev/scsipi/scsi_all.h>
94 #include <dev/scsipi/scsipi_all.h>
95 #include <dev/scsipi/scsiconf.h>
96 #include <dev/scsipi/scsi_message.h>
97 
98 #include <uvm/uvm_extern.h>
99 
100 #include <sys/bus.h>
101 
102 #include <dev/ic/wd33c93reg.h>
103 #include <dev/ic/wd33c93var.h>
104 
105 /*
106  * SCSI delays
107  * In u-seconds, primarily for state changes on the SPC.
108  */
109 #define SBIC_CMD_WAIT	50000	/* wait per step of 'immediate' cmds */
110 #define SBIC_DATA_WAIT	50000	/* wait per data in/out step */
111 #define SBIC_INIT_WAIT	50000	/* wait per step (both) during init */
112 
113 #define STATUS_UNKNOWN	0xff	/* uninitialized status */
114 
115 /*
116  * Convenience macro for waiting for a particular wd33c93 event
117  */
118 #define SBIC_WAIT(regs, until, timeo) wd33c93_wait(regs, until, timeo, __LINE__)
119 
120 void	wd33c93_init (struct wd33c93_softc *);
121 void	wd33c93_reset (struct wd33c93_softc *);
122 int	wd33c93_go (struct wd33c93_softc *, struct wd33c93_acb *);
123 int	wd33c93_dmaok (struct wd33c93_softc *, struct scsipi_xfer *);
124 int	wd33c93_wait (struct wd33c93_softc *, u_char, int , int);
125 u_char	wd33c93_selectbus (struct wd33c93_softc *, struct wd33c93_acb *);
126 int	wd33c93_xfout (struct wd33c93_softc *, int, void *);
127 int	wd33c93_xfin (struct wd33c93_softc *, int, void *);
128 int	wd33c93_poll (struct wd33c93_softc *, struct wd33c93_acb *);
129 int	wd33c93_nextstate (struct wd33c93_softc *, struct wd33c93_acb *,
130 				u_char, u_char);
131 int	wd33c93_abort (struct wd33c93_softc *, struct wd33c93_acb *,
132      const char *);
133 void	wd33c93_xferdone (struct wd33c93_softc *);
134 void	wd33c93_error (struct wd33c93_softc *, struct wd33c93_acb *);
135 void	wd33c93_scsidone (struct wd33c93_softc *, struct wd33c93_acb *, int);
136 void	wd33c93_sched (struct wd33c93_softc *);
137 void	wd33c93_dequeue (struct wd33c93_softc *, struct wd33c93_acb *);
138 void	wd33c93_dma_stop (struct wd33c93_softc *);
139 void	wd33c93_dma_setup (struct wd33c93_softc *, int);
140 int	wd33c93_msgin_phase (struct wd33c93_softc *, int);
141 void	wd33c93_msgin (struct wd33c93_softc *, u_char *, int);
142 void	wd33c93_reselect (struct wd33c93_softc *, int, int, int, int);
143 void	wd33c93_sched_msgout (struct wd33c93_softc *, u_short);
144 void	wd33c93_msgout (struct wd33c93_softc *);
145 void	wd33c93_timeout (void *arg);
146 void	wd33c93_watchdog (void *arg);
147 u_char	wd33c93_stp2syn (struct wd33c93_softc *, struct wd33c93_tinfo *);
148 void	wd33c93_setsync (struct wd33c93_softc *, struct wd33c93_tinfo *);
149 void	wd33c93_update_xfer_mode (struct wd33c93_softc *, int);
150 
151 static struct pool wd33c93_pool;		/* Adapter Control Blocks */
152 static int wd33c93_pool_initialized = 0;
153 
154 /*
155  * Timeouts
156  */
157 int	wd33c93_cmd_wait	= SBIC_CMD_WAIT;
158 int	wd33c93_data_wait	= SBIC_DATA_WAIT;
159 int	wd33c93_init_wait	= SBIC_INIT_WAIT;
160 
161 int	wd33c93_nodma		= 0;	/* Use polled IO transfers */
162 int	wd33c93_nodisc		= 0;	/* Allow command queues */
163 int	wd33c93_notags		= 0;	/* No Tags */
164 
165 /*
166  * Some useful stuff for debugging purposes
167  */
168 #ifdef DEBUG
169 
170 #define QPRINTF(a)	SBIC_DEBUG(MISC, a)
171 
172 int	wd33c93_debug	= 0;		/* Debug flags */
173 
174 void	wd33c93_print_csr (u_char);
175 void	wd33c93_hexdump (u_char *, int);
176 
177 #else
178 #define QPRINTF(a)  /* */
179 #endif
180 
181 static const char *wd33c93_chip_names[] = SBIC_CHIP_LIST;
182 
183 /*
184  * Attach instance of driver and probe for sub devices
185  */
186 void
187 wd33c93_attach(struct wd33c93_softc *dev)
188 {
189 	struct scsipi_adapter *adapt = &dev->sc_adapter;
190 	struct scsipi_channel *chan = &dev->sc_channel;
191 
192 	adapt->adapt_dev = &dev->sc_dev;
193 	adapt->adapt_nchannels = 1;
194 	adapt->adapt_openings = 256;
195 	adapt->adapt_max_periph = 256; /* Max tags per device */
196 	adapt->adapt_ioctl = NULL;
197 	/* adapt_request initialized by MD interface */
198 	/* adapt_minphys initialized by MD interface */
199 
200 	memset(chan, 0, sizeof(*chan));
201 	chan->chan_adapter = &dev->sc_adapter;
202 	chan->chan_bustype = &scsi_bustype;
203 	chan->chan_channel = 0;
204 	chan->chan_ntargets = SBIC_NTARG;
205 	chan->chan_nluns = SBIC_NLUN;
206 	chan->chan_id = dev->sc_id;
207 
208 	callout_init(&dev->sc_watchdog, 0);
209 
210 	/*
211 	 * Add reference to adapter so that we drop the reference after
212 	 * config_found() to make sure the adatper is disabled.
213 	 */
214 	if (scsipi_adapter_addref(&dev->sc_adapter) != 0) {
215 		aprint_error_dev(&dev->sc_dev, "unable to enable controller\n");
216 		return;
217 	}
218 
219 	dev->sc_cfflags = device_cfdata(&dev->sc_dev)->cf_flags;
220 	wd33c93_init(dev);
221 
222 	printf(": %s (%d.%d MHz clock, %s, SCSI ID %d)\n",
223 	    wd33c93_chip_names[dev->sc_chip],
224 	    dev->sc_clkfreq / 10, dev->sc_clkfreq % 10,
225 	    (dev->sc_dmamode == SBIC_CTL_DMA) ? "DMA" :
226 	    (dev->sc_dmamode == SBIC_CTL_DBA_DMA) ? "DBA" :
227 	    (dev->sc_dmamode == SBIC_CTL_BURST_DMA) ? "BURST DMA" : "PIO",
228 	    dev->sc_channel.chan_id);
229 	if (dev->sc_chip == SBIC_CHIP_WD33C93B) {
230 		aprint_error_dev(&dev->sc_dev, "microcode revision 0x%02x",
231 		    dev->sc_rev);
232 		if (dev->sc_minsyncperiod < 50)
233 			printf(", Fast SCSI");
234 		printf("\n");
235 	}
236 
237 	dev->sc_child = config_found(&dev->sc_dev, &dev->sc_channel,
238 				     scsiprint);
239 	scsipi_adapter_delref(&dev->sc_adapter);
240 }
241 
242 /*
243  * Initialize driver-private structures
244  */
245 void
246 wd33c93_init(struct wd33c93_softc *dev)
247 {
248 	u_int i;
249 
250 	if (!wd33c93_pool_initialized) {
251 		/* All instances share the same pool */
252 		pool_init(&wd33c93_pool, sizeof(struct wd33c93_acb), 0, 0, 0,
253 		    "wd33c93_acb", NULL, IPL_BIO);
254 		++wd33c93_pool_initialized;
255 	}
256 
257 	if (dev->sc_state == 0) {
258 		TAILQ_INIT(&dev->ready_list);
259 
260 		dev->sc_nexus = NULL;
261 		dev->sc_disc  = 0;
262 		memset(dev->sc_tinfo, 0, sizeof(dev->sc_tinfo));
263 
264 		callout_reset(&dev->sc_watchdog, 60 * hz, wd33c93_watchdog, dev);
265 	} else
266 		panic("wd33c93: reinitializing driver!");
267 
268 	dev->sc_flags = 0;
269 	dev->sc_state = SBIC_IDLE;
270 	wd33c93_reset(dev);
271 
272 	for (i = 0; i < 8; i++) {
273 		struct wd33c93_tinfo *ti = &dev->sc_tinfo[i];
274 		/*
275 		 * cf_flags = 0xTTSSRR
276 		 *
277 		 *   TT = Bitmask to disable Tagged Queues
278 		 *   SS = Bitmask to disable Sync negotiation
279 		 *   RR = Bitmask to disable disconnect/reselect
280 		 */
281 		ti->flags = T_NEED_RESET;
282 		if (CFFLAGS_NOSYNC(dev->sc_cfflags, i))
283 			ti->flags |= T_NOSYNC;
284 		if (CFFLAGS_NODISC(dev->sc_cfflags, i) || wd33c93_nodisc)
285 			ti->flags |= T_NODISC;
286 		ti->period = dev->sc_minsyncperiod;
287 		ti->offset = 0;
288 	}
289 }
290 
291 void
292 wd33c93_reset(struct wd33c93_softc *dev)
293 {
294 	u_int	my_id, s, div, i;
295 	u_char	csr, reg;
296 
297 	SET_SBIC_cmd(dev, SBIC_CMD_ABORT);
298 	WAIT_CIP(dev);
299 
300 	s = splbio();
301 
302 	if (dev->sc_reset != NULL)
303 		(*dev->sc_reset)(dev);
304 
305 	my_id = dev->sc_channel.chan_id & SBIC_ID_MASK;
306 
307 	/* Enable advanced features and really(!) advanced features */
308 #if 1
309 	my_id |= (SBIC_ID_EAF | SBIC_ID_RAF);	/* XXX - MD Layer */
310 #endif
311 
312 	SET_SBIC_myid(dev, my_id);
313 
314 	/* Reset the chip */
315 	SET_SBIC_cmd(dev, SBIC_CMD_RESET);
316 	DELAY(25);
317 	SBIC_WAIT(dev, SBIC_ASR_INT, 0);
318 
319 	/* Set up various chip parameters */
320 	SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
321 
322 	GET_SBIC_csr(dev, csr);			/* clears interrupt also */
323 	GET_SBIC_cdb1(dev, dev->sc_rev);	/* valid with RAF on wd33c93b */
324 
325 	switch (csr) {
326 	case SBIC_CSR_RESET:
327 		dev->sc_chip = SBIC_CHIP_WD33C93;
328 		break;
329 	case SBIC_CSR_RESET_AM:
330 		SET_SBIC_queue_tag(dev, 0x55);
331 		GET_SBIC_queue_tag(dev, reg);
332 		dev->sc_chip = (reg == 0x55) ?
333 		    	       SBIC_CHIP_WD33C93B : SBIC_CHIP_WD33C93A;
334 		SET_SBIC_queue_tag(dev, 0x0);
335 		break;
336 	default:
337 		dev->sc_chip = SBIC_CHIP_UNKNOWN;
338 	}
339 
340 	/*
341 	 * Choose a suitable clock divisor and work out the resulting
342 	 * sync transfer periods in 4ns units.
343 	 */
344 	if (dev->sc_clkfreq < 110) {
345 		my_id |= SBIC_ID_FS_8_10;
346 		div = 2;
347 	} else if (dev->sc_clkfreq < 160) {
348 		my_id |= SBIC_ID_FS_12_15;
349 		div = 3;
350 	} else if (dev->sc_clkfreq < 210) {
351 		my_id |= SBIC_ID_FS_16_20;
352 		div = 4;
353 	} else
354 		panic("wd33c93: invalid clock speed %d", dev->sc_clkfreq);
355 
356 	for (i = 0; i < 7; i++)
357 		dev->sc_syncperiods[i] =
358 		    (i + 2) * div * 1250 / dev->sc_clkfreq;
359 	dev->sc_minsyncperiod = dev->sc_syncperiods[0];
360 	SBIC_DEBUG(SYNC, ("available sync periods: %d %d %d %d %d %d %d\n",
361 	    dev->sc_syncperiods[0], dev->sc_syncperiods[1],
362 	    dev->sc_syncperiods[2], dev->sc_syncperiods[3],
363 	    dev->sc_syncperiods[4], dev->sc_syncperiods[5],
364 	    dev->sc_syncperiods[6]));
365 
366 	if (dev->sc_clkfreq >= 160 && dev->sc_chip == SBIC_CHIP_WD33C93B) {
367 		for (i = 0; i < 3; i++)
368 			dev->sc_fsyncperiods[i] =
369 			    (i + 2) * 2 * 1250 / dev->sc_clkfreq;
370 		SBIC_DEBUG(SYNC, ("available fast sync periods: %d %d %d\n",
371 		    dev->sc_fsyncperiods[0], dev->sc_fsyncperiods[1],
372 		    dev->sc_fsyncperiods[2]));
373 		dev->sc_minsyncperiod = dev->sc_fsyncperiods[0];
374 	}
375 
376 	/* Max Sync Offset */
377 	if (dev->sc_chip == SBIC_CHIP_WD33C93A ||
378 	    dev->sc_chip == SBIC_CHIP_WD33C93B)
379 		dev->sc_maxoffset = SBIC_SYN_93AB_MAX_OFFSET;
380 	else
381 		dev->sc_maxoffset = SBIC_SYN_93_MAX_OFFSET;
382 
383 	/*
384 	 * don't allow Selection (SBIC_RID_ES)
385 	 * until we can handle target mode!!
386 	 */
387 	SET_SBIC_rselid(dev, SBIC_RID_ER);
388 
389 	/* Asynchronous for now */
390 	SET_SBIC_syn(dev, 0);
391 
392 	dev->sc_flags = 0;
393 	dev->sc_state = SBIC_IDLE;
394 
395 	splx(s);
396 }
397 
398 void
399 wd33c93_error(struct wd33c93_softc *dev, struct wd33c93_acb *acb)
400 {
401 	struct scsipi_xfer *xs = acb->xs;
402 
403 	KASSERT(xs);
404 
405 	if (xs->xs_control & XS_CTL_SILENT)
406 		return;
407 
408 	scsipi_printaddr(xs->xs_periph);
409 	printf("SCSI Error\n");
410 }
411 
412 /*
413  * Determine an appropriate value for the synchronous transfer register
414  * given the period and offset values in *ti.
415  */
416 u_char
417 wd33c93_stp2syn(struct wd33c93_softc *dev, struct wd33c93_tinfo *ti)
418 {
419 	unsigned i;
420 
421 	/* see if we can handle fast scsi (100-200ns) first */
422 	if (ti->period < 50 && dev->sc_minsyncperiod < 50) {
423 		for (i = 0; i < 3; i++)
424 			if (dev->sc_fsyncperiods[i] >= ti->period)
425 				return (SBIC_SYN(ti->offset, i + 2, 1));
426 	}
427 
428 	for (i = 0; i < 7; i++) {
429 		if (dev->sc_syncperiods[i] >= ti->period) {
430 			if (i == 6)
431 				return (SBIC_SYN(0, 0, 0));
432 			else
433 				return (SBIC_SYN(ti->offset, i + 2, 0));
434 		}
435 	}
436 
437 	/* XXX - can't handle it; do async */
438 	return (SBIC_SYN(0, 0, 0));
439 }
440 
441 /*
442  * Setup sync mode for given target
443  */
444 void
445 wd33c93_setsync(struct wd33c93_softc *dev, struct wd33c93_tinfo *ti)
446 {
447 	u_char syncreg;
448 
449 	if (ti->flags & T_SYNCMODE)
450 		syncreg = wd33c93_stp2syn(dev, ti);
451 	else
452 		syncreg = SBIC_SYN(0, 0, 0);
453 
454 	SBIC_DEBUG(SYNC, ("wd33c93_setsync: sync reg = 0x%02x\n", syncreg));
455 	SET_SBIC_syn(dev, syncreg);
456 }
457 
458 /*
459  * Check if current operation can be done using DMA
460  *
461  * returns 1 if DMA OK, 0 for polled I/O transfer
462  */
463 int
464 wd33c93_dmaok(struct wd33c93_softc *dev, struct scsipi_xfer *xs)
465 {
466 	if (wd33c93_nodma || (xs->xs_control & XS_CTL_POLL) || xs->datalen == 0)
467 		return (0);
468 	return(1);
469 }
470 
471 /*
472  * Setup for DMA transfer
473  */
474 void
475 wd33c93_dma_setup(struct wd33c93_softc *dev, int datain)
476 {
477 	struct wd33c93_acb *acb = dev->sc_nexus;
478 	int s;
479 
480 	dev->sc_daddr = acb->daddr;
481 	dev->sc_dleft = acb->dleft;
482 
483 	s = splbio();
484 	/* Indicate that we're in DMA mode */
485 	if (dev->sc_dleft) {
486 		dev->sc_dmasetup(dev, &dev->sc_daddr, &dev->sc_dleft,
487 		    datain, &dev->sc_dleft);
488 	}
489 	splx(s);
490 	return;
491 }
492 
493 
494 /*
495  * Save DMA pointers.  Take into account partial transfer. Shut down DMA.
496  */
497 void
498 wd33c93_dma_stop(struct wd33c93_softc *dev)
499 {
500 	size_t count;
501 	int asr;
502 
503 	/* Wait until WD chip is idle */
504 	do {
505 		GET_SBIC_asr(dev, asr);	/* XXX */
506 		if (asr & SBIC_ASR_DBR) {
507 			printf("wd33c93_dma_stop: asr %02x canceled!\n", asr);
508 			break;
509 		}
510 	} while (asr & (SBIC_ASR_BSY|SBIC_ASR_CIP));
511 
512 	/* Only need to save pointers if DMA was active */
513 	if (dev->sc_flags & SBICF_INDMA) {
514 		int s = splbio();
515 
516 		/* Shut down DMA and flush FIFO's */
517 		dev->sc_dmastop(dev);
518 
519 		/* Fetch the residual count */
520 		SBIC_TC_GET(dev, count);
521 
522 		/* Work out how many bytes were actually transferred */
523 		count = dev->sc_tcnt - count;
524 
525 		if (dev->sc_dleft < count)
526 			printf("xfer too large: dleft=%zu resid=%zu\n",
527 			    dev->sc_dleft, count);
528 
529 		/* Fixup partial xfers */
530 		dev->sc_daddr = (char*)dev->sc_daddr + count;
531 		dev->sc_dleft -= count;
532 		dev->sc_tcnt   = 0;
533 		dev->sc_flags &= ~SBICF_INDMA;
534 		splx(s);
535 		SBIC_DEBUG(DMA, ("dma_stop\n"));
536 	}
537 	/*
538 	 * Ensure the WD chip is back in polled I/O mode, with nothing to
539 	 * transfer.
540 	 */
541 	SBIC_TC_PUT(dev, 0);
542 	SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
543 }
544 
545 
546 /*
547  * Handle new request from scsipi layer
548  */
549 void
550 wd33c93_scsi_request(struct scsipi_channel *chan, scsipi_adapter_req_t req, void *arg)
551 {
552 	struct wd33c93_softc *dev = (void *)chan->chan_adapter->adapt_dev;
553 	struct scsipi_xfer *xs;
554 	struct scsipi_periph *periph;
555 	struct wd33c93_acb *acb;
556 	int flags, s;
557 
558 	SBIC_DEBUG(MISC, ("wd33c93_scsi_request: req 0x%x\n", (int)req));
559 
560 	switch (req) {
561 	case ADAPTER_REQ_RUN_XFER:
562 		xs = arg;
563 		periph = xs->xs_periph;
564 		flags = xs->xs_control;
565 
566 		if (flags & XS_CTL_DATA_UIO)
567 			panic("wd33c93: scsi data uio requested");
568 
569 		if (dev->sc_nexus && (flags & XS_CTL_POLL))
570 			panic("wd33c93_scsicmd: busy");
571 
572 		s = splbio();
573 		acb = (struct wd33c93_acb *)pool_get(&wd33c93_pool, PR_NOWAIT);
574 		splx(s);
575 
576 		if (acb == NULL) {
577 			scsipi_printaddr(periph);
578 			printf("cannot allocate acb\n");
579 			xs->error = XS_RESOURCE_SHORTAGE;
580 			scsipi_done(xs);
581 			return;
582 		}
583 
584 		acb->flags = ACB_ACTIVE;
585 		acb->xs    = xs;
586 		acb->clen  = xs->cmdlen;
587 		acb->daddr = xs->data;
588 		acb->dleft = xs->datalen;
589 		acb->timeout = xs->timeout;
590 		memcpy(&acb->cmd, xs->cmd, xs->cmdlen);
591 
592 		if (flags & XS_CTL_POLL) {
593 			/*
594 			 * Complete currently active command(s) before
595 			 * issuing an immediate command
596 			 */
597 			while (dev->sc_nexus)
598 				wd33c93_poll(dev, dev->sc_nexus);
599 		}
600 
601 		s = splbio();
602 		TAILQ_INSERT_TAIL(&dev->ready_list, acb, chain);
603 		acb->flags |= ACB_READY;
604 
605 		/* If nothing is active, try to start it now. */
606 		if (dev->sc_state == SBIC_IDLE)
607 			wd33c93_sched(dev);
608 		splx(s);
609 
610 		if ((flags & XS_CTL_POLL) == 0)
611 			return;
612 
613 		if (wd33c93_poll(dev, acb)) {
614 			wd33c93_timeout(acb);
615 			if (wd33c93_poll(dev, acb)) /* 2nd retry for ABORT */
616 				wd33c93_timeout(acb);
617 		}
618 		return;
619 
620 	case ADAPTER_REQ_GROW_RESOURCES:
621 		/* XXX Not supported. */
622 		return;
623 
624 	case ADAPTER_REQ_SET_XFER_MODE:
625 	    {
626 		struct wd33c93_tinfo *ti;
627 		struct scsipi_xfer_mode *xm = arg;
628 
629 		ti = &dev->sc_tinfo[xm->xm_target];
630 		ti->flags &= ~T_WANTSYNC;
631 
632 		if ((CFFLAGS_NOTAGS(dev->sc_cfflags, xm->xm_target) == 0) &&
633 		    (xm->xm_mode & PERIPH_CAP_TQING) && !wd33c93_notags)
634 			ti->flags |= T_TAG;
635 		else
636 			ti->flags &= ~T_TAG;
637 
638 		SBIC_DEBUG(SYNC, ("wd33c93_scsi_request: "
639 		    "target %d: scsipi requested %s\n", xm->xm_target,
640 		    (xm->xm_mode & PERIPH_CAP_SYNC) ? "sync" : "async"));
641 
642 		if ((xm->xm_mode & PERIPH_CAP_SYNC) != 0 &&
643 		    (ti->flags & T_NOSYNC) == 0)
644 			ti->flags |= T_WANTSYNC;
645 		/*
646 		 * If we're not going to negotiate, send the notification
647 		 * now, since it won't happen later.
648 		 */
649 		if (!(ti->flags & T_WANTSYNC) == !(ti->flags & T_SYNCMODE))
650 			wd33c93_update_xfer_mode(dev, xm->xm_target);
651 		else
652 			ti->flags |= T_NEGOTIATE;
653 		return;
654 	    }
655 
656 	}
657 }
658 
659 /*
660  * attempt to start the next available command
661  */
662 void
663 wd33c93_sched(struct wd33c93_softc *dev)
664 {
665 	struct scsipi_periph *periph = NULL; /* Gag the compiler */
666 	struct wd33c93_acb *acb;
667 	struct wd33c93_tinfo *ti;
668 	struct wd33c93_linfo *li;
669 	int lun, tag, flags;
670 
671 	if (dev->sc_state != SBIC_IDLE)
672 		return;
673 
674 	KASSERT(dev->sc_nexus == NULL);
675 
676 	/* Loop through the ready list looking for work to do... */
677 	TAILQ_FOREACH(acb, &dev->ready_list, chain) {
678 		periph = acb->xs->xs_periph;
679 		lun = periph->periph_lun;
680 		ti = &dev->sc_tinfo[periph->periph_target];
681 		li = TINFO_LUN(ti, lun);
682 
683 		KASSERT(acb->flags & ACB_READY);
684 
685 		/* Select type of tag for this command */
686 		if ((ti->flags & T_NODISC) != 0)
687 			tag = 0;
688 		else if ((ti->flags & T_TAG) == 0)
689 			tag = 0;
690 		else if ((acb->flags & ACB_SENSE) != 0)
691 			tag = 0;
692 		else if (acb->xs->xs_control & XS_CTL_POLL)
693 			tag = 0; /* No tags for polled commands */
694 		else
695 			tag = acb->xs->xs_tag_type;
696 
697 		if (li == NULL) {
698 			/* Initialize LUN info and add to list. */
699 			li = malloc(sizeof(*li), M_DEVBUF, M_NOWAIT);
700 			if (li == NULL)
701 				continue;
702 			memset(li, 0, sizeof(*li));
703 			li->lun = lun;
704 			if (lun < SBIC_NLUN)
705 				ti->lun[lun] = li;
706 		}
707 		li->last_used = time_second;
708 
709 		/*
710 		 * We've found a potential command, but is the target/lun busy?
711 		 */
712 
713 		if (tag == 0 && li->untagged == NULL)
714 			li->untagged = acb; /* Issue untagged */
715 
716 		if (li->untagged != NULL) {
717 			tag = 0;
718 			if ((li->state != L_STATE_BUSY) && li->used == 0) {
719 				/* Issue this untagged command now */
720 				acb = li->untagged;
721 				periph = acb->xs->xs_periph;
722 			} else	/* Not ready yet */
723 				continue;
724 		}
725 
726 		acb->tag_type = tag;
727 		if (tag != 0) {
728 			if (li->queued[acb->xs->xs_tag_id])
729 				printf("queueing to active tag\n");
730 			li->queued[acb->xs->xs_tag_id] = acb;
731 			acb->tag_id = acb->xs->xs_tag_id;
732 			li->used++;
733 			break;
734 		}
735 		if (li->untagged != NULL && (li->state != L_STATE_BUSY)) {
736 			li->state = L_STATE_BUSY;
737 			break;
738 		}
739 		if (li->untagged == NULL && tag != 0) {
740 			break;
741 		} else
742 			printf("%d:%d busy\n", periph->periph_target,
743 			    periph->periph_lun);
744 	}
745 
746 	if (acb == NULL) {
747 		SBIC_DEBUG(ACBS, ("wd33c93sched: no work\n"));
748 		return;			/* did not find an available command */
749 	}
750 
751 	SBIC_DEBUG(ACBS, ("wd33c93_sched(%d,%d)\n", periph->periph_target,
752 		       periph->periph_lun));
753 
754 	TAILQ_REMOVE(&dev->ready_list, acb, chain);
755 	acb->flags &= ~ACB_READY;
756 
757 	flags = acb->xs->xs_control;
758 	if (flags & XS_CTL_RESET)
759 		wd33c93_reset(dev);
760 
761 	/* XXX - Implicitly call scsidone on select timeout */
762 	if (wd33c93_go(dev, acb) != 0 || acb->xs->error == XS_SELTIMEOUT) {
763 		acb->dleft = dev->sc_dleft;
764 		wd33c93_scsidone(dev, acb, dev->sc_status);
765 		return;
766 	}
767 
768 	return;
769 }
770 
771 void
772 wd33c93_scsidone(struct wd33c93_softc *dev, struct wd33c93_acb *acb, int status)
773 {
774 	struct scsipi_xfer	*xs = acb->xs;
775 	struct wd33c93_tinfo	*ti;
776 	struct wd33c93_linfo	*li;
777 	int			s;
778 
779 #ifdef DIAGNOSTIC
780 	KASSERT(dev->target == xs->xs_periph->periph_target);
781 	KASSERT(dev->lun    == xs->xs_periph->periph_lun);
782 	if (acb == NULL || xs == NULL) {
783 		panic("wd33c93_scsidone -- (%d,%d) no scsipi_xfer",
784 		    dev->target, dev->lun);
785 	}
786 	KASSERT(acb->flags != ACB_FREE);
787 #endif
788 
789 	SBIC_DEBUG(ACBS, ("scsidone: (%d,%d)->(%d,%d)%02x\n",
790 		       xs->xs_periph->periph_target, xs->xs_periph->periph_lun,
791 		       dev->target, dev->lun, status));
792 	callout_stop(&xs->xs_callout);
793 
794 	xs->status = status & SCSI_STATUS_MASK;
795 	xs->resid = acb->dleft;
796 
797 	if (xs->error == XS_NOERROR) {
798 		switch (xs->status) {
799 		case SCSI_CHECK:
800 		case SCSI_TERMINATED:
801 			/* XXX Need to read sense - return busy for now */
802 			/*FALLTHROUGH*/
803 		case SCSI_QUEUE_FULL:
804 		case SCSI_BUSY:
805 			xs->error = XS_BUSY;
806 			break;
807 		}
808 	}
809 
810 	ti = &dev->sc_tinfo[dev->target];
811 	li = TINFO_LUN(ti, dev->lun);
812 	ti->cmds++;
813 	if (xs->error == XS_SELTIMEOUT) {
814 		/* Selection timeout -- discard this LUN if empty */
815 		if (li->untagged == NULL && li->used == 0) {
816 			if (dev->lun < SBIC_NLUN)
817 				ti->lun[dev->lun] = NULL;
818 			free(li, M_DEVBUF);
819 		}
820 	}
821 
822 	wd33c93_dequeue(dev, acb);
823 	if (dev->sc_nexus == acb) {
824 		dev->sc_state = SBIC_IDLE;
825 		dev->sc_nexus = NULL;
826 		dev->sc_flags = 0;
827 
828 		if (!TAILQ_EMPTY(&dev->ready_list))
829 			wd33c93_sched(dev);
830 	}
831 
832 	/* place control block back on free list. */
833 	s = splbio();
834 	acb->flags = ACB_FREE;
835 	pool_put(&wd33c93_pool, (void *)acb);
836 	splx(s);
837 
838 	scsipi_done(xs);
839 }
840 
841 void
842 wd33c93_dequeue(struct wd33c93_softc *dev, struct wd33c93_acb *acb)
843 {
844 	struct wd33c93_tinfo *ti = &dev->sc_tinfo[acb->xs->xs_periph->periph_target];
845 	struct wd33c93_linfo *li;
846 	int lun = acb->xs->xs_periph->periph_lun;
847 
848 	li = TINFO_LUN(ti, lun);
849 #ifdef DIAGNOSTIC
850 	if (li == NULL || li->lun != lun)
851 		panic("wd33c93_dequeue: lun %d for ecb %p does not exist",
852 		      lun, acb);
853 #endif
854 	if (li->untagged == acb) {
855 		li->state = L_STATE_IDLE;
856 		li->untagged = NULL;
857 	}
858 	if (acb->tag_type && li->queued[acb->tag_id] != NULL) {
859 #ifdef DIAGNOSTIC
860 		if (li->queued[acb->tag_id] != NULL &&
861 		    (li->queued[acb->tag_id] != acb))
862 			panic("wd33c93_dequeue: slot %d for lun %d has %p "
863 			    "instead of acb %p\n", acb->tag_id,
864 			    lun, li->queued[acb->tag_id], acb);
865 #endif
866 		li->queued[acb->tag_id] = NULL;
867 		li->used--;
868 	}
869 }
870 
871 
872 int
873 wd33c93_wait(struct wd33c93_softc *dev, u_char until, int timeo, int line)
874 {
875 	u_char val;
876 
877 	if (timeo == 0)
878 		timeo = 1000000;	/* some large value.. */
879 	GET_SBIC_asr(dev, val);
880 	while ((val & until) == 0) {
881 		if (timeo-- == 0) {
882 			int csr;
883 			GET_SBIC_csr(dev, csr);
884 			printf("wd33c93_wait: TIMEO @%d with asr=x%x csr=x%x\n",
885 			    line, val, csr);
886 #if defined(DDB) && defined(DEBUG)
887 			Debugger();
888 #endif
889 			return(val); /* Maybe I should abort */
890 			break;
891 		}
892 		DELAY(1);
893 		GET_SBIC_asr(dev, val);
894 	}
895 	return(val);
896 }
897 
898 int
899 wd33c93_abort(struct wd33c93_softc *dev, struct wd33c93_acb *acb,
900      const char *where)
901 {
902 	u_char csr, asr;
903 
904 	GET_SBIC_asr(dev, asr);
905 	GET_SBIC_csr(dev, csr);
906 
907 	scsipi_printaddr(acb->xs->xs_periph);
908 	printf ("ABORT in %s: csr=0x%02x, asr=0x%02x\n", where, csr, asr);
909 
910 	acb->timeout = SBIC_ABORT_TIMEOUT;
911 	acb->flags |= ACB_ABORT;
912 
913 	/*
914 	 * Clean up chip itself
915 	 */
916 	if (dev->sc_nexus == acb) {
917 		/* Reschedule timeout. */
918 		callout_reset(&acb->xs->xs_callout, mstohz(acb->timeout),
919 		    wd33c93_timeout, acb);
920 
921 		while (asr & SBIC_ASR_DBR) {
922 			/*
923 			 * wd33c93 is jammed w/data. need to clear it
924 			 * But we don't know what direction it needs to go
925 			 */
926 			GET_SBIC_data(dev, asr);
927 			printf("abort %s: clearing data buffer 0x%02x\n",
928 			       where, asr);
929 			GET_SBIC_asr(dev, asr);
930 			if (asr & SBIC_ASR_DBR) /* Not the read direction */
931 				SET_SBIC_data(dev, asr);
932 			GET_SBIC_asr(dev, asr);
933 		}
934 
935 		scsipi_printaddr(acb->xs->xs_periph);
936 		printf("sending ABORT command\n");
937 
938 		WAIT_CIP(dev);
939 		SET_SBIC_cmd(dev, SBIC_CMD_ABORT);
940 		WAIT_CIP(dev);
941 
942 		GET_SBIC_asr(dev, asr);
943 
944 		scsipi_printaddr(acb->xs->xs_periph);
945 		if (asr & (SBIC_ASR_BSY|SBIC_ASR_LCI)) {
946 			/*
947 			 * ok, get more drastic..
948 			 */
949 			printf("Resetting bus\n");
950 			wd33c93_reset(dev);
951 		} else {
952 			printf("sending DISCONNECT to target\n");
953 			SET_SBIC_cmd(dev, SBIC_CMD_DISC);
954 			WAIT_CIP(dev);
955 
956 			do {
957 				SBIC_WAIT (dev, SBIC_ASR_INT, 0);
958 				GET_SBIC_asr(dev, asr);
959 				GET_SBIC_csr(dev, csr);
960 				SBIC_DEBUG(MISC, ("csr: 0x%02x, asr: 0x%02x\n",
961 					       csr, asr));
962 			} while ((csr != SBIC_CSR_DISC) &&
963 			    (csr != SBIC_CSR_DISC_1) &&
964 			    (csr != SBIC_CSR_CMD_INVALID));
965 		}
966 		dev->sc_state = SBIC_ERROR;
967 		dev->sc_flags = 0;
968 	}
969 	return SBIC_STATE_ERROR;
970 }
971 
972 
973 /*
974  * select the bus, return when selected or error.
975  *
976  * Returns the current CSR following selection and optionally MSG out phase.
977  * i.e. the returned CSR *should* indicate CMD phase...
978  * If the return value is 0, some error happened.
979  */
980 u_char
981 wd33c93_selectbus(struct wd33c93_softc *dev, struct wd33c93_acb *acb)
982 {
983 	struct scsipi_xfer *xs = acb->xs;
984 	struct wd33c93_tinfo *ti;
985 	u_char target, lun, asr, csr, id;
986 
987 	KASSERT(dev->sc_state == SBIC_IDLE);
988 
989 	target = xs->xs_periph->periph_target;
990 	lun    = xs->xs_periph->periph_lun;
991 	ti     = &dev->sc_tinfo[target];
992 
993 	dev->sc_state = SBIC_SELECTING;
994 	dev->target    = target;
995 	dev->lun       = lun;
996 
997 	SBIC_DEBUG(PHASE, ("wd33c93_selectbus %d: ", target));
998 
999 	if ((xs->xs_control & XS_CTL_POLL) == 0)
1000 		callout_reset(&xs->xs_callout, mstohz(acb->timeout),
1001 		    wd33c93_timeout, acb);
1002 
1003 	/*
1004 	 * issue select
1005 	 */
1006 	SBIC_TC_PUT(dev, 0);
1007 	SET_SBIC_selid(dev, target);
1008 	SET_SBIC_timeo(dev, SBIC_TIMEOUT(250, dev->sc_clkfreq));
1009 
1010 	GET_SBIC_asr(dev, asr);
1011 	if (asr & (SBIC_ASR_INT|SBIC_ASR_BSY)) {
1012 		/* This means we got ourselves reselected upon */
1013 		SBIC_DEBUG(PHASE, ("WD busy (reselect?) ASR=%02x\n", asr));
1014 		return 0;
1015 	}
1016 
1017 	SET_SBIC_cmd(dev, SBIC_CMD_SEL_ATN);
1018 	WAIT_CIP(dev);
1019 
1020 	/*
1021 	 * wait for select (merged from separate function may need
1022 	 * cleanup)
1023 	 */
1024 	do {
1025 		asr = SBIC_WAIT(dev, SBIC_ASR_INT | SBIC_ASR_LCI, 0);
1026 		if (asr & SBIC_ASR_LCI) {
1027 			QPRINTF(("late LCI: asr %02x\n", asr));
1028 			return 0;
1029 		}
1030 
1031 		/* Clear interrupt */
1032 		GET_SBIC_csr (dev, csr);
1033 
1034 		/* Reselected from under our feet? */
1035 		if (csr == SBIC_CSR_RSLT_NI || csr == SBIC_CSR_RSLT_IFY) {
1036 			SBIC_DEBUG(PHASE, ("got reselected, asr %02x\n", asr));
1037 			/*
1038 			 * We need to handle this now so we don't lock up later
1039 			 */
1040 			wd33c93_nextstate(dev, acb, csr, asr);
1041 			return 0;
1042 		}
1043 
1044 		/* Whoops! */
1045 		if (csr == SBIC_CSR_SLT || csr == SBIC_CSR_SLT_ATN) {
1046 			panic("wd33c93_selectbus: target issued select!");
1047 			return 0;
1048 		}
1049 
1050 	} while (csr != (SBIC_CSR_MIS_2 | MESG_OUT_PHASE) &&
1051 		 csr != (SBIC_CSR_MIS_2 | CMD_PHASE) &&
1052 		 csr != SBIC_CSR_SEL_TIMEO);
1053 
1054 	/* Anyone at home? */
1055 	if (csr == SBIC_CSR_SEL_TIMEO) {
1056 		xs->error = XS_SELTIMEOUT;
1057 		SBIC_DEBUG(PHASE, ("-- Selection Timeout\n"));
1058 		return 0;
1059 	}
1060 
1061 	SBIC_DEBUG(PHASE, ("Selection Complete\n"));
1062 
1063 	/* Assume we're now selected */
1064 	GET_SBIC_selid(dev, id);
1065 	if (id != target) {
1066 		/* Something went wrong - wrong target was select */
1067 		printf("wd33c93_selectbus: wrong target selected;"
1068 		    "  WANTED %d GOT %d", target, id);
1069 		return 0;      /* XXX: Need to call nexstate to handle? */
1070 	}
1071 
1072 	dev->sc_flags |= SBICF_SELECTED;
1073 	dev->sc_state  = SBIC_CONNECTED;
1074 
1075 	/* setup correct sync mode for this target */
1076 	wd33c93_setsync(dev, ti);
1077 
1078 	if (ti->flags & T_NODISC && dev->sc_disc == 0)
1079 		SET_SBIC_rselid (dev, 0); /* Not expecting a reselect */
1080 	else
1081 		SET_SBIC_rselid (dev, SBIC_RID_ER);
1082 
1083 	/*
1084 	 * We only really need to do anything when the target goes to MSG out
1085 	 * If the device ignored ATN, it's probably old and brain-dead,
1086 	 * but we'll try to support it anyhow.
1087 	 * If it doesn't support message out, it definately doesn't
1088 	 * support synchronous transfers, so no point in even asking...
1089 	 */
1090 	if (csr == (SBIC_CSR_MIS_2 | MESG_OUT_PHASE)) {
1091 		if (ti->flags & T_NEGOTIATE) {
1092 			/* Inititae a SDTR message */
1093 			SBIC_DEBUG(SYNC, ("Sending SDTR to target %d\n", id));
1094 			if (ti->flags & T_WANTSYNC) {
1095 				ti->period = dev->sc_minsyncperiod;
1096 				ti->offset = dev->sc_maxoffset;
1097 			} else {
1098 				ti->period = 0;
1099 				ti->offset = 0;
1100 			}
1101 			/* Send Sync negotiation message */
1102 			dev->sc_omsg[0] = MSG_IDENTIFY(lun, 0); /* No Disc */
1103 			dev->sc_omsg[1] = MSG_EXTENDED;
1104 			dev->sc_omsg[2] = MSG_EXT_SDTR_LEN;
1105 			dev->sc_omsg[3] = MSG_EXT_SDTR;
1106 			if (ti->flags & T_WANTSYNC) {
1107 				dev->sc_omsg[4] = dev->sc_minsyncperiod;
1108 				dev->sc_omsg[5] = dev->sc_maxoffset;
1109 			} else {
1110 				dev->sc_omsg[4] = 0;
1111 				dev->sc_omsg[5] = 0;
1112 			}
1113 			wd33c93_xfout(dev, 6, dev->sc_omsg);
1114 			dev->sc_msgout |= SEND_SDTR; /* may be rejected */
1115 			dev->sc_flags  |= SBICF_SYNCNEGO;
1116 		} else {
1117 			if (dev->sc_nexus->tag_type != 0) {
1118 				/* Use TAGS */
1119 				SBIC_DEBUG(TAGS, ("<select %d:%d TAG=%x>\n",
1120 					       dev->target, dev->lun,
1121 					       dev->sc_nexus->tag_id));
1122 				dev->sc_omsg[0] = MSG_IDENTIFY(lun, 1);
1123 				dev->sc_omsg[1] = dev->sc_nexus->tag_type;
1124 				dev->sc_omsg[2] = dev->sc_nexus->tag_id;
1125 				wd33c93_xfout(dev, 3, dev->sc_omsg);
1126 				dev->sc_msgout |= SEND_TAG;
1127 			} else {
1128 				int no_disc;
1129 
1130 				/* Setup LUN nexus and disconnect privilege */
1131 				no_disc = xs->xs_control & XS_CTL_POLL ||
1132 					  ti->flags & T_NODISC;
1133 				SEND_BYTE(dev, MSG_IDENTIFY(lun, !no_disc));
1134 			}
1135 		}
1136 		/*
1137 		 * There's one interrupt still to come:
1138 		 * the change to CMD phase...
1139 		 */
1140 		SBIC_WAIT(dev, SBIC_ASR_INT , 0);
1141 		GET_SBIC_csr(dev, csr);
1142 	}
1143 
1144 	return csr;
1145 }
1146 
1147 /*
1148  * Information Transfer *to* a SCSI Target.
1149  *
1150  * Note: Don't expect there to be an interrupt immediately after all
1151  * the data is transferred out. The WD spec sheet says that the Transfer-
1152  * Info command for non-MSG_IN phases only completes when the target
1153  * next asserts 'REQ'. That is, when the SCSI bus changes to a new state.
1154  *
1155  * This can have a nasty effect on commands which take a relatively long
1156  * time to complete, for example a START/STOP unit command may remain in
1157  * CMD phase until the disk has spun up. Only then will the target change
1158  * to STATUS phase. This is really only a problem for immediate commands
1159  * since we don't allow disconnection for them (yet).
1160  */
1161 int
1162 wd33c93_xfout(struct wd33c93_softc *dev, int len, void *bp)
1163 {
1164 	int wait = wd33c93_data_wait;
1165 	u_char asr, *buf = bp;
1166 
1167 	QPRINTF(("wd33c93_xfout {%d} %02x %02x %02x %02x %02x "
1168 		    "%02x %02x %02x %02x %02x\n", len, buf[0], buf[1], buf[2],
1169 		    buf[3], buf[4], buf[5], buf[6], buf[7], buf[8], buf[9]));
1170 
1171 	/*
1172 	 * sigh.. WD-PROTO strikes again.. sending the command in one go
1173 	 * causes the chip to lock up if talking to certain (misbehaving?)
1174 	 * targets. Anyway, this procedure should work for all targets, but
1175 	 * it's slightly slower due to the overhead
1176 	 */
1177 
1178 	SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
1179 	SBIC_TC_PUT (dev, (unsigned)len);
1180 
1181 	WAIT_CIP (dev);
1182 	SET_SBIC_cmd (dev, SBIC_CMD_XFER_INFO);
1183 
1184 	/*
1185 	 * Loop for each byte transferred
1186 	 */
1187 	do {
1188 		GET_SBIC_asr (dev, asr);
1189 
1190 		if (asr & SBIC_ASR_DBR) {
1191 			if (len) {
1192 				SET_SBIC_data (dev, *buf);
1193 				buf++;
1194 				len--;
1195 			} else {
1196 				SET_SBIC_data (dev, 0);
1197 			}
1198 			wait = wd33c93_data_wait;
1199 		}
1200 	} while (len && (asr & SBIC_ASR_INT) == 0 && wait-- > 0);
1201 
1202 	QPRINTF(("wd33c93_xfout done: %d bytes remaining (wait:%d)\n", len, wait));
1203 
1204 	/*
1205 	 * Normally, an interrupt will be pending when this routing returns.
1206 	 */
1207 	return(len);
1208 }
1209 
1210 /*
1211  * Information Transfer *from* a Scsi Target
1212  * returns # bytes left to read
1213  */
1214 int
1215 wd33c93_xfin(struct wd33c93_softc *dev, int len, void *bp)
1216 {
1217 	int     wait = wd33c93_data_wait;
1218 	u_char  *buf = bp;
1219 	u_char  asr;
1220 #ifdef  DEBUG
1221 	u_char  *obp = bp;
1222 #endif
1223 	SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
1224 	SBIC_TC_PUT (dev, (unsigned)len);
1225 
1226 	WAIT_CIP (dev);
1227 	SET_SBIC_cmd (dev, SBIC_CMD_XFER_INFO);
1228 
1229 	/*
1230 	 * Loop for each byte transferred
1231 	 */
1232 	do {
1233 		GET_SBIC_asr (dev, asr);
1234 
1235 		if (asr & SBIC_ASR_DBR) {
1236 			if (len) {
1237 				GET_SBIC_data (dev, *buf);
1238 				buf++;
1239 				len--;
1240 			} else {
1241 				u_char foo;
1242 				GET_SBIC_data (dev, foo);
1243 			}
1244 			wait = wd33c93_data_wait;
1245 		}
1246 
1247 	} while ((asr & SBIC_ASR_INT) == 0 && wait-- > 0);
1248 
1249 	QPRINTF(("wd33c93_xfin {%d} %02x %02x %02x %02x %02x %02x "
1250 		    "%02x %02x %02x %02x\n", len, obp[0], obp[1], obp[2],
1251 		    obp[3], obp[4], obp[5], obp[6], obp[7], obp[8], obp[9]));
1252 
1253 	SBIC_TC_PUT (dev, 0);
1254 
1255 	/*
1256 	 * this leaves with one csr to be read
1257 	 */
1258 	return len;
1259 }
1260 
1261 
1262 /*
1263  * Finish SCSI xfer command:  After the completion interrupt from
1264  * a read/write operation, sequence through the final phases in
1265  * programmed i/o.
1266  */
1267 void
1268 wd33c93_xferdone(struct wd33c93_softc *dev)
1269 {
1270 	u_char	phase, csr;
1271 	int	s;
1272 
1273 	QPRINTF(("{"));
1274 	s = splbio();
1275 
1276 	/*
1277 	 * have the wd33c93 complete on its own
1278 	 */
1279 	SBIC_TC_PUT(dev, 0);
1280 	SET_SBIC_cmd_phase(dev, 0x46);
1281 	SET_SBIC_cmd(dev, SBIC_CMD_SEL_ATN_XFER);
1282 
1283 	do {
1284 		SBIC_WAIT (dev, SBIC_ASR_INT, 0);
1285 		GET_SBIC_csr (dev, csr);
1286 		QPRINTF(("%02x:", csr));
1287 	} while ((csr != SBIC_CSR_DISC) &&
1288 		 (csr != SBIC_CSR_DISC_1) &&
1289 		 (csr != SBIC_CSR_S_XFERRED));
1290 
1291 	dev->sc_flags &= ~SBICF_SELECTED;
1292 	dev->sc_state = SBIC_DISCONNECT;
1293 
1294 	GET_SBIC_cmd_phase (dev, phase);
1295 	QPRINTF(("}%02x", phase));
1296 
1297 	if (phase == 0x60)
1298 		GET_SBIC_tlun(dev, dev->sc_status);
1299 	else
1300 		wd33c93_error(dev, dev->sc_nexus);
1301 
1302 	QPRINTF(("=STS:%02x=\n", dev->sc_status));
1303 	splx(s);
1304 }
1305 
1306 
1307 int
1308 wd33c93_go(struct wd33c93_softc *dev, struct wd33c93_acb *acb)
1309 {
1310 	struct scsipi_xfer	*xs = acb->xs;
1311 	int			i, dmaok;
1312 	u_char			csr, asr;
1313 
1314 	SBIC_DEBUG(ACBS, ("wd33c93_go(%d:%d)\n", dev->target, dev->lun));
1315 
1316 	dev->sc_nexus = acb;
1317 
1318 	dev->target = xs->xs_periph->periph_target;
1319 	dev->lun    = xs->xs_periph->periph_lun;
1320 
1321 	dev->sc_status = STATUS_UNKNOWN;
1322 	dev->sc_daddr = acb->daddr;
1323 	dev->sc_dleft = acb->dleft;
1324 
1325 	dev->sc_msgpriq = dev->sc_msgout = dev->sc_msgoutq = 0;
1326 	dev->sc_flags = 0;
1327 
1328 	dmaok = wd33c93_dmaok(dev, xs);
1329 
1330 	if (dmaok == 0)
1331 		dev->sc_flags |= SBICF_NODMA;
1332 
1333 	SBIC_DEBUG(DMA, ("wd33c93_go dmago:%d(tcnt=%zx) dmaok=%dx\n",
1334 		       dev->target, dev->sc_tcnt, dmaok));
1335 
1336 	/* select the SCSI bus (it's an error if bus isn't free) */
1337 	if ((csr = wd33c93_selectbus(dev, acb)) == 0)
1338 		return(0); /* Not done: needs to be rescheduled */
1339 
1340 	/*
1341 	 * Lets cycle a while then let the interrupt handler take over.
1342 	 */
1343 	GET_SBIC_asr(dev, asr);
1344 	do {
1345 		QPRINTF(("go[0x%x] ", csr));
1346 
1347 		/* Handle the new phase */
1348 		i = wd33c93_nextstate(dev, acb, csr, asr);
1349 		WAIT_CIP(dev);		/* XXX */
1350 		if (dev->sc_state == SBIC_CONNECTED) {
1351 
1352 			GET_SBIC_asr(dev, asr);
1353 
1354 			if (asr & SBIC_ASR_LCI)
1355 				printf("wd33c93_go: LCI asr:%02x csr:%02x\n", asr, csr);
1356 
1357 			if (asr & SBIC_ASR_INT)
1358 				GET_SBIC_csr(dev, csr);
1359 		}
1360 
1361 	} while (dev->sc_state == SBIC_CONNECTED &&
1362 	    	 asr & (SBIC_ASR_INT|SBIC_ASR_LCI));
1363 
1364 	QPRINTF(("> done i=%d stat=%02x\n", i, dev->sc_status));
1365 
1366 	if (i == SBIC_STATE_DONE) {
1367 		if (dev->sc_status == STATUS_UNKNOWN) {
1368 			printf("wd33c93_go: done & stat == UNKNOWN\n");
1369 			return 1;  /* Did we really finish that fast? */
1370 		}
1371 	}
1372 	return 0;
1373 }
1374 
1375 
1376 int
1377 wd33c93_intr(struct wd33c93_softc *dev)
1378 {
1379 	u_char	asr, csr;
1380 	int	i;
1381 
1382 	/*
1383 	 * pending interrupt?
1384 	 */
1385 	GET_SBIC_asr (dev, asr);
1386 	if ((asr & SBIC_ASR_INT) == 0)
1387 		return(0);
1388 
1389 	GET_SBIC_csr(dev, csr);
1390 
1391 	do {
1392 		SBIC_DEBUG(INTS, ("intr[csr=0x%x]", csr));
1393 
1394 		i = wd33c93_nextstate(dev, dev->sc_nexus, csr, asr);
1395 		WAIT_CIP(dev);		/* XXX */
1396 		if (dev->sc_state == SBIC_CONNECTED) {
1397 			GET_SBIC_asr(dev, asr);
1398 
1399 			if (asr & SBIC_ASR_LCI)
1400 				printf("wd33c93_intr: LCI asr:%02x csr:%02x\n",
1401 				    asr, csr);
1402 
1403 			if (asr & SBIC_ASR_INT)
1404 				GET_SBIC_csr(dev, csr);
1405 		}
1406 	} while (dev->sc_state == SBIC_CONNECTED &&
1407 	    	 asr & (SBIC_ASR_INT|SBIC_ASR_LCI));
1408 
1409 	SBIC_DEBUG(INTS, ("intr done. state=%d, asr=0x%02x\n", i, asr));
1410 
1411 	return(1);
1412 }
1413 
1414 /*
1415  * Complete current command using polled I/O.   Used when interrupt driven
1416  * I/O is not allowed (ie. during boot and shutdown)
1417  *
1418  * Polled I/O is very processor intensive
1419  */
1420 int
1421 wd33c93_poll(struct wd33c93_softc *dev, struct wd33c93_acb *acb)
1422 {
1423 	u_char			asr, csr=0;
1424 	int			i, count;
1425 	struct scsipi_xfer	*xs = acb->xs;
1426 
1427 	SBIC_WAIT(dev, SBIC_ASR_INT, wd33c93_cmd_wait);
1428 	for (count=acb->timeout; count;) {
1429 		GET_SBIC_asr (dev, asr);
1430 		if (asr & SBIC_ASR_LCI)
1431 			printf("wd33c93_poll: LCI; asr:%02x csr:%02x\n",
1432 			    asr, csr);
1433 		if (asr & SBIC_ASR_INT) {
1434 			GET_SBIC_csr(dev, csr);
1435 			dev->sc_flags |= SBICF_NODMA;
1436 			i = wd33c93_nextstate(dev, dev->sc_nexus, csr, asr);
1437 			WAIT_CIP(dev);		/* XXX */
1438 		} else {
1439 			DELAY(1000);
1440 			count--;
1441 		}
1442 
1443 		if ((xs->xs_status & XS_STS_DONE) != 0)
1444 			return (0);
1445 
1446 		if (dev->sc_state == SBIC_IDLE) {
1447 			SBIC_DEBUG(ACBS, ("[poll: rescheduling] "));
1448 			wd33c93_sched(dev);
1449 		}
1450 	}
1451 	return (1);
1452 }
1453 
1454 static inline int
1455 __verify_msg_format(u_char *p, int len)
1456 {
1457 
1458 	if (len == 1 && MSG_IS1BYTE(p[0]))
1459 		return 1;
1460 	if (len == 2 && MSG_IS2BYTE(p[0]))
1461 		return 1;
1462 	if (len >= 3 && MSG_ISEXTENDED(p[0]) &&
1463 	    len == p[1] + 2)
1464 		return 1;
1465 	return 0;
1466 }
1467 
1468 /*
1469  * Handle message_in phase
1470  */
1471 int
1472 wd33c93_msgin_phase(struct wd33c93_softc *dev, int reselect)
1473 {
1474 	int len;
1475 	u_char asr, csr, *msg;
1476 
1477 	GET_SBIC_asr(dev, asr);
1478 
1479 	SBIC_DEBUG(MSGS, ("wd33c93msgin asr=%02x\n", asr));
1480 
1481 	GET_SBIC_selid (dev, csr);
1482 	SET_SBIC_selid (dev, csr | SBIC_SID_FROM_SCSI);
1483 
1484 	SBIC_TC_PUT(dev, 0);
1485 
1486 	SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
1487 
1488 	msg = dev->sc_imsg;
1489 	len = 0;
1490 
1491 	do {
1492 		/* Fetch the next byte of the message */
1493 		RECV_BYTE(dev, *msg++);
1494 		len++;
1495 
1496 		/*
1497 		 * get the command completion interrupt, or we
1498 		 * can't send a new command (LCI)
1499 		 */
1500 		SBIC_WAIT(dev, SBIC_ASR_INT, 0);
1501 		GET_SBIC_csr(dev, csr);
1502 
1503 		if (__verify_msg_format(dev->sc_imsg, len))
1504 			break; /* Complete message recieved */
1505 
1506 		/*
1507 		 * Clear ACK, and wait for the interrupt
1508 		 * for the next byte or phase change
1509 		 */
1510 		SET_SBIC_cmd(dev, SBIC_CMD_CLR_ACK);
1511 		SBIC_WAIT(dev, SBIC_ASR_INT, 0);
1512 
1513 		GET_SBIC_csr(dev, csr);
1514 	} while (len < SBIC_MAX_MSGLEN);
1515 
1516 	if (__verify_msg_format(dev->sc_imsg, len))
1517 		wd33c93_msgin(dev, dev->sc_imsg, len);
1518 
1519 	/*
1520 	 * Clear ACK, and wait for the interrupt
1521 	 * for the phase change
1522 	 */
1523 	SET_SBIC_cmd(dev, SBIC_CMD_CLR_ACK);
1524 	SBIC_WAIT(dev, SBIC_ASR_INT, 0);
1525 
1526 	/* Should still have one CSR to read */
1527 	return SBIC_STATE_RUNNING;
1528 }
1529 
1530 
1531 void wd33c93_msgin(struct wd33c93_softc *dev, u_char *msgaddr, int msglen)
1532 {
1533 	struct wd33c93_acb    *acb = dev->sc_nexus;
1534 	struct wd33c93_tinfo  *ti = &dev->sc_tinfo[dev->target];
1535 	struct wd33c93_linfo  *li;
1536 	u_char asr;
1537 
1538 	switch (dev->sc_state) {
1539 	case SBIC_CONNECTED:
1540 		switch (msgaddr[0]) {
1541 		case MSG_MESSAGE_REJECT:
1542 			SBIC_DEBUG(MSGS, ("msgin: MSG_REJECT, "
1543 				       "last msgout=%x\n", dev->sc_msgout));
1544 			switch (dev->sc_msgout) {
1545 			case SEND_TAG:
1546 				printf("%s: tagged queuing rejected: "
1547 				    "target %d\n",
1548 				    device_xname(&dev->sc_dev), dev->target);
1549 				ti->flags &= ~T_TAG;
1550 				li = TINFO_LUN(ti, dev->lun);
1551 				if (acb->tag_type &&
1552 				    li->queued[acb->tag_id] != NULL) {
1553 					li->queued[acb->tag_id] = NULL;
1554 					li->used--;
1555 				}
1556 				acb->tag_type = acb->tag_id = 0;
1557 				li->untagged = acb;
1558 				li->state = L_STATE_BUSY;
1559 				break;
1560 
1561 			case SEND_SDTR:
1562 				printf("%s: sync transfer rejected: target %d\n",
1563 				    device_xname(&dev->sc_dev), dev->target);
1564 
1565 				dev->sc_flags &= ~SBICF_SYNCNEGO;
1566 				ti->flags &= ~(T_NEGOTIATE | T_SYNCMODE);
1567 				wd33c93_update_xfer_mode(dev,
1568 				    acb->xs->xs_periph->periph_target);
1569 				wd33c93_setsync(dev, ti);
1570 
1571 			case SEND_INIT_DET_ERR:
1572 				goto abort;
1573 
1574 			default:
1575 				SBIC_DEBUG(MSGS, ("Unexpected MSG_REJECT\n"));
1576 				break;
1577 			}
1578 			dev->sc_msgout = 0;
1579 			break;
1580 
1581 		case MSG_HEAD_OF_Q_TAG:
1582 		case MSG_ORDERED_Q_TAG:
1583 		case MSG_SIMPLE_Q_TAG:
1584 			printf("-- Out of phase TAG;"
1585 			    "Nexus=%d:%d Tag=%02x/%02x\n",
1586 			    dev->target, dev->lun, msgaddr[0], msgaddr[1]);
1587 			break;
1588 
1589 		case MSG_DISCONNECT:
1590 			SBIC_DEBUG(MSGS, ("msgin: DISCONNECT"));
1591 			/*
1592 			 * Mark the fact that all bytes have moved. The
1593 			 * target may not bother to do a SAVE POINTERS
1594 			 * at this stage. This flag will set the residual
1595 			 * count to zero on MSG COMPLETE.
1596 			 */
1597 			if (dev->sc_dleft == 0)
1598 				acb->flags |= ACB_COMPLETE;
1599 
1600 			if (acb->xs->xs_control & XS_CTL_POLL)
1601 				/* Don't allow disconnect in immediate mode */
1602 				goto reject;
1603 			else {  /* Allow disconnect */
1604 				dev->sc_flags &= ~SBICF_SELECTED;
1605 				dev->sc_state = SBIC_DISCONNECT;
1606 			}
1607 			if ((acb->xs->xs_periph->periph_quirks &
1608 				PQUIRK_AUTOSAVE) == 0)
1609 				break;
1610 			/*FALLTHROUGH*/
1611 
1612 		case MSG_SAVEDATAPOINTER:
1613 			SBIC_DEBUG(MSGS, ("msgin: SAVEDATAPTR"));
1614 			acb->daddr = dev->sc_daddr;
1615 			acb->dleft = dev->sc_dleft;
1616 			break;
1617 
1618 		case MSG_RESTOREPOINTERS:
1619 			SBIC_DEBUG(MSGS, ("msgin: RESTOREPTR"));
1620 			dev->sc_daddr = acb->daddr;
1621 			dev->sc_dleft = acb->dleft;
1622 			break;
1623 
1624 		case MSG_CMDCOMPLETE:
1625 			/*
1626 			 * !! KLUDGE ALERT !! quite a few drives don't seem to
1627 			 * really like the current way of sending the
1628 			 * sync-handshake together with the ident-message, and
1629 			 * they react by sending command-complete and
1630 			 * disconnecting right after returning the valid sync
1631 			 * handshake. So, all I can do is reselect the drive,
1632 			 * and hope it won't disconnect again. I don't think
1633 			 * this is valid behavior, but I can't help fixing a
1634 			 * problem that apparently exists.
1635 			 *
1636 			 * Note: we should not get here on `normal' command
1637 			 * completion, as that condition is handled by the
1638 			 * high-level sel&xfer resume command used to walk
1639 			 * thru status/cc-phase.
1640 			 */
1641 			SBIC_DEBUG(MSGS, ("msgin: CMD_COMPLETE"));
1642 			SBIC_DEBUG(SYNC, ("GOT MSG %d! target %d"
1643 				       " acting weird.."
1644 				       " waiting for disconnect...\n",
1645 				       msgaddr[0], dev->target));
1646 
1647 			/* Check to see if wd33c93 is handling this */
1648 			GET_SBIC_asr(dev, asr);
1649 			if (asr & SBIC_ASR_BSY)
1650 				break;
1651 
1652 			/* XXX: Assume it works and set status to 00 */
1653 			dev->sc_status = 0;
1654 			dev->sc_state = SBIC_CMDCOMPLETE;
1655 			break;
1656 
1657 		case MSG_EXTENDED:
1658 			switch(msgaddr[2]) {
1659 			case MSG_EXT_SDTR: /* Sync negotiation */
1660 				SBIC_DEBUG(MSGS, ("msgin: EXT_SDTR; "
1661 					       "period %d, offset %d",
1662 					       msgaddr[3], msgaddr[4]));
1663 				if (msgaddr[1] != 3)
1664 					goto reject;
1665 
1666 				ti->period =
1667 				    MAX(msgaddr[3], dev->sc_minsyncperiod);
1668 				ti->offset = MIN(msgaddr[4], dev->sc_maxoffset);
1669 
1670 				/*
1671 				 * <SGI, IBM DORS-32160, WA6A> will do nothing
1672 				 * but attempt sync negotiation until it gets
1673 				 * what it wants. To avoid an infinite loop set
1674 				 * off by the identify request, oblige them.
1675 				 */
1676 				if ((dev->sc_flags&SBICF_SYNCNEGO) == 0 &&
1677 				    msgaddr[3] != 0)
1678 					ti->flags |= T_WANTSYNC;
1679 
1680 				if (!(ti->flags & T_WANTSYNC))
1681 					ti->period = ti->offset = 0;
1682 
1683 				ti->flags &= ~T_NEGOTIATE;
1684 
1685 				if (ti->offset == 0)
1686 					ti->flags &= ~T_SYNCMODE; /* Async */
1687 				else
1688 					ti->flags |= T_SYNCMODE; /* Sync */
1689 
1690 				/* target initiated negotiation */
1691 				if ((dev->sc_flags&SBICF_SYNCNEGO) == 0)
1692 					wd33c93_sched_msgout(dev, SEND_SDTR);
1693 				dev->sc_flags &= ~SBICF_SYNCNEGO;
1694 
1695 				SBIC_DEBUG(SYNC, ("msgin(%d): SDTR(o=%d,p=%d)",
1696 					       dev->target, ti->offset,
1697 					       ti->period));
1698 				wd33c93_update_xfer_mode(dev,
1699 				    acb->xs->xs_periph->periph_target);
1700 				wd33c93_setsync(dev, ti);
1701 				break;
1702 
1703 			case MSG_EXT_WDTR:
1704 				SBIC_DEBUG(MSGS, ("msgin: EXT_WDTR rejected"));
1705 				goto reject;
1706 
1707 			default:
1708 				scsipi_printaddr(acb->xs->xs_periph);
1709 				printf("unrecognized MESSAGE EXTENDED;"
1710 				    " sending REJECT\n");
1711 				goto reject;
1712 			}
1713 			break;
1714 
1715 		default:
1716 			scsipi_printaddr(acb->xs->xs_periph);
1717 			printf("unrecognized MESSAGE; sending REJECT\n");
1718 
1719 		reject:
1720 			/* We don't support whatever this message is... */
1721 			wd33c93_sched_msgout(dev, SEND_REJECT);
1722 			break;
1723 		}
1724 		break;
1725 
1726 	case SBIC_IDENTIFIED:
1727 		/*
1728 		 * IDENTIFY message was received and queue tag is expected now
1729 		 */
1730 		if ((msgaddr[0]!=MSG_SIMPLE_Q_TAG) || (dev->sc_msgify==0)) {
1731 			printf("%s: TAG reselect without IDENTIFY;"
1732 			    " MSG %x; sending DEVICE RESET\n",
1733 			    device_xname(&dev->sc_dev), msgaddr[0]);
1734 			goto reset;
1735 		}
1736 		SBIC_DEBUG(TAGS, ("TAG %x/%x\n", msgaddr[0], msgaddr[1]));
1737 		if (dev->sc_nexus)
1738 			printf("*TAG Recv with active nexus!!\n");
1739 		wd33c93_reselect(dev, dev->target, dev->lun,
1740 		    	      msgaddr[0], msgaddr[1]);
1741 		break;
1742 
1743 	case SBIC_RESELECTED:
1744 		/*
1745 		 * IDENTIFY message with target
1746 		 */
1747 		if (MSG_ISIDENTIFY(msgaddr[0])) {
1748 			SBIC_DEBUG(PHASE, ("IFFY[%x] ", msgaddr[0]));
1749 			dev->sc_msgify = msgaddr[0];
1750 		} else {
1751 			printf("%s: reselect without IDENTIFY;"
1752 			    " MSG %x;"
1753 			    " sending DEVICE RESET\n",
1754 			    device_xname(&dev->sc_dev), msgaddr[0]);
1755 			goto reset;
1756 		}
1757 		break;
1758 
1759 	default:
1760 		printf("Unexpected MESSAGE IN.  State=%d - Sending RESET\n",
1761 		    dev->sc_state);
1762 	reset:
1763 		wd33c93_sched_msgout(dev, SEND_DEV_RESET);
1764 		break;
1765 	abort:
1766 		wd33c93_sched_msgout(dev, SEND_ABORT);
1767 		break;
1768 	}
1769 }
1770 
1771 void
1772 wd33c93_sched_msgout(struct wd33c93_softc *dev, u_short msg)
1773 {
1774 	u_char	asr;
1775 
1776 	SBIC_DEBUG(SYNC,("sched_msgout: %04x\n", msg));
1777 	dev->sc_msgpriq |= msg;
1778 
1779 	/* Schedule MSGOUT Phase to send message */
1780 
1781 	WAIT_CIP(dev);
1782 	SET_SBIC_cmd(dev, SBIC_CMD_SET_ATN);
1783 	WAIT_CIP(dev);
1784 	GET_SBIC_asr(dev, asr);
1785 	if (asr & SBIC_ASR_LCI) {
1786 		printf("MSGOUT Failed!\n");
1787 	}
1788 	SET_SBIC_cmd(dev, SBIC_CMD_CLR_ACK);
1789 	WAIT_CIP(dev);
1790 }
1791 
1792 /*
1793  * Send the highest priority, scheduled message
1794  */
1795 void
1796 wd33c93_msgout(struct wd33c93_softc *dev)
1797 {
1798 	struct wd33c93_tinfo *ti;
1799 	struct wd33c93_acb *acb = dev->sc_nexus;
1800 
1801 	if (acb == NULL)
1802 		panic("MSGOUT with no nexus");
1803 
1804 	if (dev->sc_omsglen == 0) {
1805 		/* Pick up highest priority message */
1806 		dev->sc_msgout   = dev->sc_msgpriq & -dev->sc_msgpriq;
1807 		dev->sc_msgoutq |= dev->sc_msgout;
1808 		dev->sc_msgpriq &= ~dev->sc_msgout;
1809 		dev->sc_omsglen = 1;		/* "Default" message len */
1810 		switch (dev->sc_msgout) {
1811 		case SEND_SDTR:
1812 			ti = &dev->sc_tinfo[acb->xs->xs_periph->periph_target];
1813 			dev->sc_omsg[0] = MSG_EXTENDED;
1814 			dev->sc_omsg[1] = MSG_EXT_SDTR_LEN;
1815 			dev->sc_omsg[2] = MSG_EXT_SDTR;
1816 			if (ti->flags & T_WANTSYNC) {
1817 				dev->sc_omsg[3] = ti->period;
1818 				dev->sc_omsg[4] = ti->offset;
1819 			} else {
1820 				dev->sc_omsg[3] = 0;
1821 				dev->sc_omsg[4] = 0;
1822 			}
1823 			dev->sc_omsglen = 5;
1824 			if ((dev->sc_flags & SBICF_SYNCNEGO) == 0) {
1825 				if (ti->flags & T_WANTSYNC)
1826 					ti->flags |= T_SYNCMODE;
1827 				else
1828 					ti->flags &= ~T_SYNCMODE;
1829 				wd33c93_setsync(dev, ti);
1830 			}
1831 			break;
1832 		case SEND_IDENTIFY:
1833 			if (dev->sc_state != SBIC_CONNECTED) {
1834 				printf("%s at line %d: no nexus\n",
1835 				    device_xname(&dev->sc_dev), __LINE__);
1836 			}
1837 			dev->sc_omsg[0] =
1838 			    MSG_IDENTIFY(acb->xs->xs_periph->periph_lun, 0);
1839 			break;
1840 		case SEND_TAG:
1841 			if (dev->sc_state != SBIC_CONNECTED) {
1842 				printf("%s at line %d: no nexus\n",
1843 				    device_xname(&dev->sc_dev), __LINE__);
1844 			}
1845 			dev->sc_omsg[0] = acb->tag_type;
1846 			dev->sc_omsg[1] = acb->tag_id;
1847 			dev->sc_omsglen = 2;
1848 			break;
1849 		case SEND_DEV_RESET:
1850 			dev->sc_omsg[0] = MSG_BUS_DEV_RESET;
1851 			ti = &dev->sc_tinfo[dev->target];
1852 			ti->flags &= ~T_SYNCMODE;
1853 			wd33c93_update_xfer_mode(dev, dev->target);
1854 			if ((ti->flags & T_NOSYNC) == 0)
1855 				/* We can re-start sync negotiation */
1856 				ti->flags |= T_NEGOTIATE;
1857 			break;
1858 		case SEND_PARITY_ERROR:
1859 			dev->sc_omsg[0] = MSG_PARITY_ERROR;
1860 			break;
1861 		case SEND_ABORT:
1862 			dev->sc_flags  |= SBICF_ABORTING;
1863 			dev->sc_omsg[0] = MSG_ABORT;
1864 			break;
1865 		case SEND_INIT_DET_ERR:
1866 			dev->sc_omsg[0] = MSG_INITIATOR_DET_ERR;
1867 			break;
1868 		case SEND_REJECT:
1869 			dev->sc_omsg[0] = MSG_MESSAGE_REJECT;
1870 			break;
1871 		default:
1872 			/* Wasn't expecting MSGOUT Phase */
1873 			dev->sc_omsg[0] = MSG_NOOP;
1874 			break;
1875 		}
1876 	}
1877 
1878 	wd33c93_xfout(dev, dev->sc_omsglen, dev->sc_omsg);
1879 }
1880 
1881 
1882 /*
1883  * wd33c93_nextstate()
1884  * return:
1885  *	SBIC_STATE_DONE		== done
1886  *	SBIC_STATE_RUNNING	== working
1887  *	SBIC_STATE_DISCONNECT	== disconnected
1888  *	SBIC_STATE_ERROR	== error
1889  */
1890 int
1891 wd33c93_nextstate(struct wd33c93_softc *dev, struct wd33c93_acb	*acb, u_char csr, u_char asr)
1892 {
1893 	SBIC_DEBUG(PHASE, ("next[a=%02x,c=%02x]: ",asr,csr));
1894 
1895 	switch (csr) {
1896 
1897 	case SBIC_CSR_XFERRED | CMD_PHASE:
1898 	case SBIC_CSR_MIS     | CMD_PHASE:
1899 	case SBIC_CSR_MIS_1   | CMD_PHASE:
1900 	case SBIC_CSR_MIS_2   | CMD_PHASE:
1901 
1902 		if (wd33c93_xfout(dev, acb->clen, &acb->cmd))
1903 			goto abort;
1904 		break;
1905 
1906 	case SBIC_CSR_XFERRED | STATUS_PHASE:
1907 	case SBIC_CSR_MIS     | STATUS_PHASE:
1908 	case SBIC_CSR_MIS_1   | STATUS_PHASE:
1909 	case SBIC_CSR_MIS_2   | STATUS_PHASE:
1910 
1911 		SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
1912 
1913 		/*
1914 		 * this should be the normal i/o completion case.
1915 		 * get the status & cmd complete msg then let the
1916 		 * device driver look at what happened.
1917 		 */
1918 		wd33c93_xferdone(dev);
1919 
1920 		wd33c93_dma_stop(dev);
1921 
1922 		/* Fixup byte count to be passed to higher layer */
1923 		acb->dleft = (acb->flags & ACB_COMPLETE) ? 0 :
1924 		    	      dev->sc_dleft;
1925 
1926 		/*
1927 		 * Indicate to the upper layers that the command is done
1928 		 */
1929 		wd33c93_scsidone(dev, acb, dev->sc_status);
1930 
1931 		return SBIC_STATE_DONE;
1932 
1933 
1934 	case SBIC_CSR_XFERRED | DATA_IN_PHASE:
1935 	case SBIC_CSR_MIS     | DATA_IN_PHASE:
1936 	case SBIC_CSR_MIS_1   | DATA_IN_PHASE:
1937 	case SBIC_CSR_MIS_2   | DATA_IN_PHASE:
1938 	case SBIC_CSR_XFERRED | DATA_OUT_PHASE:
1939 	case SBIC_CSR_MIS     | DATA_OUT_PHASE:
1940 	case SBIC_CSR_MIS_1   | DATA_OUT_PHASE:
1941 	case SBIC_CSR_MIS_2   | DATA_OUT_PHASE:
1942 		/*
1943 		 * Verify that we expected to transfer data...
1944 		 */
1945 		if (acb->dleft <= 0) {
1946 			printf("next: DATA phase with xfer count == %zd, asr:0x%02x csr:0x%02x\n",
1947 			    acb->dleft, asr, csr);
1948 			goto abort;
1949 		}
1950 
1951 		/*
1952 		 * Should we transfer using PIO or DMA ?
1953 		 */
1954 		if (acb->xs->xs_control & XS_CTL_POLL ||
1955 		    dev->sc_flags & SBICF_NODMA) {
1956 			/* Perfrom transfer using PIO */
1957 			int resid;
1958 
1959 			SBIC_DEBUG(DMA, ("PIO xfer: %d(%p:%zx)\n", dev->target,
1960 				       dev->sc_daddr, dev->sc_dleft));
1961 
1962 			if (SBIC_PHASE(csr) == DATA_IN_PHASE)
1963 				/* data in */
1964 				resid = wd33c93_xfin(dev, dev->sc_dleft,
1965 				    		 dev->sc_daddr);
1966 			else	/* data out */
1967 				resid = wd33c93_xfout(dev, dev->sc_dleft,
1968 				    		  dev->sc_daddr);
1969 
1970 			dev->sc_daddr = (char*)dev->sc_daddr +
1971 				(acb->dleft - resid);
1972 			dev->sc_dleft = resid;
1973 		} else {
1974 			int datain = SBIC_PHASE(csr) == DATA_IN_PHASE;
1975 
1976 			/* Perform transfer using DMA */
1977 			wd33c93_dma_setup(dev, datain);
1978 
1979 			SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI |
1980 			    dev->sc_dmamode);
1981 
1982 			SBIC_DEBUG(DMA, ("DMA xfer: %d(%p:%zx)\n", dev->target,
1983 				       dev->sc_daddr, dev->sc_dleft));
1984 
1985 			/* Setup byte count for transfer */
1986 			SBIC_TC_PUT(dev, (unsigned)dev->sc_dleft);
1987 
1988 			/* Start the transfer */
1989 			SET_SBIC_cmd(dev, SBIC_CMD_XFER_INFO);
1990 
1991 			/* Start the DMA chip going */
1992 			dev->sc_tcnt = dev->sc_dmago(dev);
1993 
1994 			/* Indicate that we're in DMA mode */
1995 			dev->sc_flags |= SBICF_INDMA;
1996 		}
1997 		break;
1998 
1999 	case SBIC_CSR_XFERRED | MESG_IN_PHASE:
2000 	case SBIC_CSR_MIS     | MESG_IN_PHASE:
2001 	case SBIC_CSR_MIS_1   | MESG_IN_PHASE:
2002 	case SBIC_CSR_MIS_2   | MESG_IN_PHASE:
2003 
2004 		wd33c93_dma_stop(dev);
2005 
2006 		/* Handle a single message in... */
2007 		return wd33c93_msgin_phase(dev, 0);
2008 
2009 	case SBIC_CSR_MSGIN_W_ACK:
2010 
2011 		/*
2012 		 * We should never see this since it's handled in
2013 		 * 'wd33c93_msgin_phase()' but just for the sake of paranoia...
2014 		 */
2015 		SET_SBIC_cmd(dev, SBIC_CMD_CLR_ACK);
2016 
2017 		printf("Acking unknown msgin CSR:%02x",csr);
2018 		break;
2019 
2020 	case SBIC_CSR_XFERRED | MESG_OUT_PHASE:
2021 	case SBIC_CSR_MIS     | MESG_OUT_PHASE:
2022 	case SBIC_CSR_MIS_1   | MESG_OUT_PHASE:
2023 	case SBIC_CSR_MIS_2   | MESG_OUT_PHASE:
2024 
2025 		/*
2026 		 * Message out phase.  ATN signal has been asserted
2027 		 */
2028 		wd33c93_dma_stop(dev);
2029 		wd33c93_msgout(dev);
2030 		return SBIC_STATE_RUNNING;
2031 
2032 	case SBIC_CSR_DISC:
2033 	case SBIC_CSR_DISC_1:
2034 		SBIC_DEBUG(RSEL, ("wd33c93next target %d disconnected\n",
2035 			       dev->target));
2036 		wd33c93_dma_stop(dev);
2037 
2038 		dev->sc_nexus = NULL;
2039 		dev->sc_state = SBIC_IDLE;
2040 		dev->sc_flags = 0;
2041 
2042 		++dev->sc_tinfo[dev->target].dconns;
2043 		++dev->sc_disc;
2044 
2045 		if (acb->xs->xs_control & XS_CTL_POLL || wd33c93_nodisc)
2046 			return SBIC_STATE_DISCONNECT;
2047 
2048 		/* Try to schedule another target */
2049 		wd33c93_sched(dev);
2050 
2051 		return SBIC_STATE_DISCONNECT;
2052 
2053 	case SBIC_CSR_RSLT_NI:
2054 	case SBIC_CSR_RSLT_IFY:
2055 	{
2056 		/*
2057 		 * A reselection.
2058 		 * Note that since we don't enable Advanced Features (assuming
2059 		 * the WD chip is at least the 'A' revision), we're only ever
2060 		 * likely to see the 'SBIC_CSR_RSLT_NI' status. But for the
2061 		 * hell of it, we'll handle it anyway, for all the extra code
2062 		 * it needs...
2063 		 */
2064 		u_char  newtarget, newlun;
2065 
2066 		if (dev->sc_flags & SBICF_INDMA) {
2067 			printf("**** RESELECT WHILE DMA ACTIVE!!! ***\n");
2068 			wd33c93_dma_stop(dev);
2069 		}
2070 
2071 		dev->sc_state = SBIC_RESELECTED;
2072 		GET_SBIC_rselid(dev, newtarget);
2073 
2074 		/* check SBIC_RID_SIV? */
2075 		newtarget &= SBIC_RID_MASK;
2076 
2077 		if (csr == SBIC_CSR_RSLT_IFY) {
2078 			/* Read Identify msg to avoid lockup */
2079 			GET_SBIC_data(dev, newlun);
2080 			WAIT_CIP(dev);
2081 			newlun &= SBIC_TLUN_MASK;
2082 			dev->sc_msgify = MSG_IDENTIFY(newlun, 0);
2083 		} else {
2084 			/*
2085 			 * Need to read Identify message the hard way, assuming
2086 			 * the target even sends us one...
2087 			 */
2088 			for (newlun = 255; newlun; --newlun) {
2089 				GET_SBIC_asr(dev, asr);
2090 				if (asr & SBIC_ASR_INT)
2091 					break;
2092 				DELAY(10);
2093 			}
2094 
2095 			/* If we didn't get an interrupt, somethink's up */
2096 			if ((asr & SBIC_ASR_INT) == 0) {
2097 				printf("%s: Reselect without identify? asr %x\n",
2098 				    device_xname(&dev->sc_dev), asr);
2099 				newlun = 0; /* XXXX */
2100 			} else {
2101 				/*
2102 				 * We got an interrupt, verify that it's a
2103 				 * change to message in phase, and if so
2104 				 * read the message.
2105 				 */
2106 				GET_SBIC_csr(dev,csr);
2107 
2108 				if (csr == (SBIC_CSR_MIS   | MESG_IN_PHASE) ||
2109 				    csr == (SBIC_CSR_MIS_1 | MESG_IN_PHASE) ||
2110 				    csr == (SBIC_CSR_MIS_2 | MESG_IN_PHASE)) {
2111 					/*
2112 					 * Yup, gone to message in.
2113 					 * Fetch the target LUN
2114 					 */
2115 					dev->sc_msgify = 0;
2116 					wd33c93_msgin_phase(dev, 1);
2117 					newlun = dev->sc_msgify & SBIC_TLUN_MASK;
2118 				} else {
2119 					/*
2120 					 * Whoops! Target didn't go to msg_in
2121 					 * phase!!
2122 					 */
2123 					printf("RSLT_NI - not MESG_IN_PHASE %x\n", csr);
2124 					newlun = 0; /* XXXSCW */
2125 				}
2126 			}
2127 		}
2128 
2129 		/* Ok, we have the identity of the reselecting target. */
2130 		SBIC_DEBUG(RSEL, ("wd33c93next: reselect from targ %d lun %d",
2131 			       newtarget, newlun));
2132 		wd33c93_reselect(dev, newtarget, newlun, 0, 0);
2133 		dev->sc_disc--;
2134 
2135 		if (csr == SBIC_CSR_RSLT_IFY)
2136 			SET_SBIC_cmd(dev, SBIC_CMD_CLR_ACK);
2137 		break;
2138 	}
2139 
2140 	default:
2141 	abort:
2142 		/* Something unexpected happend -- deal with it. */
2143 		printf("next: aborting asr 0x%02x csr 0x%02x\n", asr, csr);
2144 
2145 #ifdef DDB
2146 		Debugger();
2147 #endif
2148 
2149 		SET_SBIC_control(dev, SBIC_CTL_EDI | SBIC_CTL_IDI);
2150 		if (acb->xs)
2151 			wd33c93_error(dev, acb);
2152 		wd33c93_abort(dev, acb, "next");
2153 
2154 		if (dev->sc_flags & SBICF_INDMA) {
2155 			wd33c93_dma_stop(dev);
2156 			wd33c93_scsidone(dev, acb, STATUS_UNKNOWN);
2157 		}
2158 		return SBIC_STATE_ERROR;
2159 	}
2160 	return SBIC_STATE_RUNNING;
2161 }
2162 
2163 
2164 void
2165 wd33c93_reselect(struct wd33c93_softc *dev, int target, int lun, int tag_type, int tag_id)
2166 {
2167 
2168 	struct wd33c93_tinfo *ti;
2169 	struct wd33c93_linfo *li;
2170 	struct wd33c93_acb *acb;
2171 
2172 	if (dev->sc_nexus) {
2173 		/*
2174 		 * Whoops! We've been reselected with a
2175 		 * command in progress!
2176 		 * The best we can do is to put the current
2177 		 * command back on the ready list and hope
2178 		 * for the best.
2179 		 */
2180 		SBIC_DEBUG(RSEL, ("%s: reselect with active command\n",
2181 			       device_xname(&dev->sc_dev)));
2182 		ti = &dev->sc_tinfo[dev->target];
2183 		li = TINFO_LUN(ti, dev->lun);
2184 		li->state = L_STATE_IDLE;
2185 
2186 		wd33c93_dequeue(dev, dev->sc_nexus);
2187 		TAILQ_INSERT_HEAD(&dev->ready_list, dev->sc_nexus, chain);
2188 		dev->sc_nexus->flags |= ACB_READY;
2189 
2190 		dev->sc_nexus = NULL;
2191 	}
2192 
2193 	/* Setup state for new nexus */
2194 	acb = NULL;
2195 	dev->sc_flags = SBICF_SELECTED;
2196 	dev->sc_msgpriq = dev->sc_msgout = dev->sc_msgoutq = 0;
2197 
2198 	ti = &dev->sc_tinfo[target];
2199 	li = TINFO_LUN(ti, lun);
2200 
2201 	if (li != NULL) {
2202 		if (li->untagged != NULL && li->state)
2203 			acb = li->untagged;
2204 		else if (tag_type != MSG_SIMPLE_Q_TAG) {
2205 			/* Wait for tag to come by during MESG_IN Phase */
2206 			dev->target    = target; /* setup I_T_L nexus */
2207 			dev->lun       = lun;
2208 			dev->sc_state  = SBIC_IDENTIFIED;
2209 			return;
2210 		} else if (tag_type)
2211 			acb = li->queued[tag_id];
2212 	}
2213 
2214 	if (acb == NULL) {
2215 		printf("%s: reselect from target %d lun %d tag %x:%x "
2216 		    "with no nexus; sending ABORT\n",
2217 		    device_xname(&dev->sc_dev), target, lun, tag_type, tag_id);
2218 		goto abort;
2219 	}
2220 
2221 	dev->target    = target;
2222 	dev->lun       = lun;
2223 	dev->sc_nexus  = acb;
2224 	dev->sc_state  = SBIC_CONNECTED;
2225 
2226 	if (!wd33c93_dmaok(dev, acb->xs))
2227 		dev->sc_flags |= SBICF_NODMA;
2228 
2229 	/* Do an implicit RESTORE POINTERS. */
2230 	dev->sc_daddr = acb->daddr;
2231 	dev->sc_dleft = acb->dleft;
2232 
2233 	/* Set sync modes for new target */
2234 	wd33c93_setsync(dev, ti);
2235 
2236 	if (acb->flags & ACB_RESET)
2237 		wd33c93_sched_msgout(dev, SEND_DEV_RESET);
2238 	else if (acb->flags & ACB_ABORT)
2239 		wd33c93_sched_msgout(dev, SEND_ABORT);
2240 	return;
2241 
2242 abort:
2243 	wd33c93_sched_msgout(dev, SEND_ABORT);
2244 	return;
2245 
2246 }
2247 
2248 void
2249 wd33c93_update_xfer_mode(struct wd33c93_softc *sc, int target)
2250 {
2251 	struct wd33c93_tinfo *ti = &sc->sc_tinfo[target];
2252 	struct scsipi_xfer_mode xm;
2253 
2254 	xm.xm_target = target;
2255 	xm.xm_mode = 0;
2256 	xm.xm_period = 0;
2257 	xm.xm_offset = 0;
2258 
2259 	if (ti->flags & T_SYNCMODE) {
2260 		xm.xm_mode |= PERIPH_CAP_SYNC;
2261 		xm.xm_period = ti->period;
2262 		xm.xm_offset = ti->offset;
2263 	}
2264 
2265 	if ((ti->flags & (T_NODISC|T_TAG)) == T_TAG)
2266 		xm.xm_mode |= PERIPH_CAP_TQING;
2267 
2268 	SBIC_DEBUG(SYNC, ("wd33c93_update_xfer_mode: reporting target %d %s\n",
2269 		       xm.xm_target,
2270 		       (xm.xm_mode & PERIPH_CAP_SYNC) ? "sync" : "async"));
2271 
2272 	scsipi_async_event(&sc->sc_channel, ASYNC_EVENT_XFER_MODE, &xm);
2273 }
2274 
2275 void
2276 wd33c93_timeout(void *arg)
2277 {
2278 	struct wd33c93_acb *acb = arg;
2279 	struct scsipi_xfer *xs = acb->xs;
2280 	struct scsipi_periph *periph = xs->xs_periph;
2281 	struct wd33c93_softc *dev =
2282 	    (void *)periph->periph_channel->chan_adapter->adapt_dev;
2283 	int s, asr;
2284 
2285 	s = splbio();
2286 
2287 	GET_SBIC_asr(dev, asr);
2288 
2289 	scsipi_printaddr(periph);
2290 	printf("%s: timed out; asr=0x%02x [acb %p (flags 0x%x, dleft %zx)], "
2291 	    "<state %d, nexus %p, resid %lx, msg(q %x,o %x)>",
2292 	    device_xname(&dev->sc_dev), asr, acb, acb->flags, acb->dleft,
2293 	    dev->sc_state, dev->sc_nexus, (long)dev->sc_dleft,
2294 	    dev->sc_msgpriq, dev->sc_msgout);
2295 
2296 	if (asr & SBIC_ASR_INT) {
2297 		/* We need to service a missed IRQ */
2298 		wd33c93_intr(dev);
2299 	} else {
2300 		(void) wd33c93_abort(dev, dev->sc_nexus, "timeout");
2301 	}
2302 	splx(s);
2303 }
2304 
2305 
2306 void
2307 wd33c93_watchdog(void *arg)
2308 {
2309 	struct wd33c93_softc *dev = arg;
2310 	struct wd33c93_tinfo *ti;
2311 	struct wd33c93_linfo *li;
2312 	int t, s, l;
2313 	/* scrub LUN's that have not been used in the last 10min. */
2314 	time_t old = time_second - (10 * 60);
2315 
2316 	for (t = 0; t < SBIC_NTARG; t++) {
2317 		ti = &dev->sc_tinfo[t];
2318 		for (l = 0; l < SBIC_NLUN; l++) {
2319 			s = splbio();
2320 			li = TINFO_LUN(ti, l);
2321 			if (li && li->last_used < old &&
2322 			    li->untagged == NULL && li->used == 0) {
2323 				ti->lun[li->lun] = NULL;
2324 				free(li, M_DEVBUF);
2325 			}
2326 			splx(s);
2327 		}
2328 	}
2329 	callout_reset(&dev->sc_watchdog, 60 * hz, wd33c93_watchdog, dev);
2330 }
2331 
2332 
2333 #ifdef DEBUG
2334 void
2335 wd33c93_hexdump(u_char *buf, int len)
2336 {
2337 	printf("{%d}:", len);
2338 	while (len--)
2339 		printf(" %02x", *buf++);
2340 	printf("\n");
2341 }
2342 
2343 
2344 void
2345 wd33c93_print_csr(u_char csr)
2346 {
2347 	switch (SCSI_PHASE(csr)) {
2348 	case CMD_PHASE:
2349 		printf("CMD_PHASE\n");
2350 		break;
2351 
2352 	case STATUS_PHASE:
2353 		printf("STATUS_PHASE\n");
2354 		break;
2355 
2356 	case DATA_IN_PHASE:
2357 		printf("DATAIN_PHASE\n");
2358 		break;
2359 
2360 	case DATA_OUT_PHASE:
2361 		printf("DATAOUT_PHASE\n");
2362 		break;
2363 
2364 	case MESG_IN_PHASE:
2365 		printf("MESG_IN_PHASE\n");
2366 		break;
2367 
2368 	case MESG_OUT_PHASE:
2369 		printf("MESG_OUT_PHASE\n");
2370 		break;
2371 
2372 	default:
2373 		switch (csr) {
2374 		case SBIC_CSR_DISC_1:
2375 			printf("DISC_1\n");
2376 			break;
2377 
2378 		case SBIC_CSR_RSLT_NI:
2379 			printf("RESELECT_NO_IFY\n");
2380 			break;
2381 
2382 		case SBIC_CSR_RSLT_IFY:
2383 			printf("RESELECT_IFY\n");
2384 			break;
2385 
2386 		case SBIC_CSR_SLT:
2387 			printf("SELECT\n");
2388 			break;
2389 
2390 		case SBIC_CSR_SLT_ATN:
2391 			printf("SELECT, ATN\n");
2392 			break;
2393 
2394 		case SBIC_CSR_UNK_GROUP:
2395 			printf("UNK_GROUP\n");
2396 			break;
2397 
2398 		default:
2399 			printf("UNKNOWN csr=%02x\n", csr);
2400 		}
2401 	}
2402 }
2403 #endif
2404