1/*	$NetBSD$	*/
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$");
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 <sys/bus.h>
99
100#include <dev/ic/wd33c93reg.h>
101#include <dev/ic/wd33c93var.h>
102
103/*
104 * SCSI delays
105 * In u-seconds, primarily for state changes on the SPC.
106 */
107#define SBIC_CMD_WAIT	50000	/* wait per step of 'immediate' cmds */
108#define SBIC_DATA_WAIT	50000	/* wait per data in/out step */
109#define SBIC_INIT_WAIT	50000	/* wait per step (both) during init */
110
111#define STATUS_UNKNOWN	0xff	/* uninitialized status */
112
113/*
114 * Convenience macro for waiting for a particular wd33c93 event
115 */
116#define SBIC_WAIT(regs, until, timeo) wd33c93_wait(regs, until, timeo, __LINE__)
117
118void	wd33c93_init (struct wd33c93_softc *);
119void	wd33c93_reset (struct wd33c93_softc *);
120int	wd33c93_go (struct wd33c93_softc *, struct wd33c93_acb *);
121int	wd33c93_dmaok (struct wd33c93_softc *, struct scsipi_xfer *);
122int	wd33c93_wait (struct wd33c93_softc *, u_char, int , int);
123u_char	wd33c93_selectbus (struct wd33c93_softc *, struct wd33c93_acb *);
124int	wd33c93_xfout (struct wd33c93_softc *, int, void *);
125int	wd33c93_xfin (struct wd33c93_softc *, int, void *);
126int	wd33c93_poll (struct wd33c93_softc *, struct wd33c93_acb *);
127int	wd33c93_nextstate (struct wd33c93_softc *, struct wd33c93_acb *,
128				u_char, u_char);
129int	wd33c93_abort (struct wd33c93_softc *, struct wd33c93_acb *,
130     const char *);
131void	wd33c93_xferdone (struct wd33c93_softc *);
132void	wd33c93_error (struct wd33c93_softc *, struct wd33c93_acb *);
133void	wd33c93_scsidone (struct wd33c93_softc *, struct wd33c93_acb *, int);
134void	wd33c93_sched (struct wd33c93_softc *);
135void	wd33c93_dequeue (struct wd33c93_softc *, struct wd33c93_acb *);
136void	wd33c93_dma_stop (struct wd33c93_softc *);
137void	wd33c93_dma_setup (struct wd33c93_softc *, int);
138int	wd33c93_msgin_phase (struct wd33c93_softc *, int);
139void	wd33c93_msgin (struct wd33c93_softc *, u_char *, int);
140void	wd33c93_reselect (struct wd33c93_softc *, int, int, int, int);
141void	wd33c93_sched_msgout (struct wd33c93_softc *, u_short);
142void	wd33c93_msgout (struct wd33c93_softc *);
143void	wd33c93_timeout (void *arg);
144void	wd33c93_watchdog (void *arg);
145u_char	wd33c93_stp2syn (struct wd33c93_softc *, struct wd33c93_tinfo *);
146void	wd33c93_setsync (struct wd33c93_softc *, struct wd33c93_tinfo *);
147void	wd33c93_update_xfer_mode (struct wd33c93_softc *, int);
148
149static struct pool wd33c93_pool;		/* Adapter Control Blocks */
150static int wd33c93_pool_initialized = 0;
151
152/*
153 * Timeouts
154 */
155int	wd33c93_cmd_wait	= SBIC_CMD_WAIT;
156int	wd33c93_data_wait	= SBIC_DATA_WAIT;
157int	wd33c93_init_wait	= SBIC_INIT_WAIT;
158
159int	wd33c93_nodma		= 0;	/* Use polled IO transfers */
160int	wd33c93_nodisc		= 0;	/* Allow command queues */
161int	wd33c93_notags		= 0;	/* No Tags */
162
163/*
164 * Some useful stuff for debugging purposes
165 */
166#ifdef DEBUG
167
168#define QPRINTF(a)	SBIC_DEBUG(MISC, a)
169
170int	wd33c93_debug	= 0;		/* Debug flags */
171
172void	wd33c93_print_csr (u_char);
173void	wd33c93_hexdump (u_char *, int);
174
175#else
176#define QPRINTF(a)  /* */
177#endif
178
179static const char *wd33c93_chip_names[] = SBIC_CHIP_LIST;
180
181/*
182 * Attach instance of driver and probe for sub devices
183 */
184void
185wd33c93_attach(struct wd33c93_softc *sc)
186{
187	struct scsipi_adapter *adapt = &sc->sc_adapter;
188	struct scsipi_channel *chan = &sc->sc_channel;
189
190	adapt->adapt_dev = sc->sc_dev;
191	adapt->adapt_nchannels = 1;
192	adapt->adapt_openings = 256;
193	adapt->adapt_max_periph = 256; /* Max tags per device */
194	adapt->adapt_ioctl = NULL;
195	/* adapt_request initialized by MD interface */
196	/* adapt_minphys initialized by MD interface */
197
198	memset(chan, 0, sizeof(*chan));
199	chan->chan_adapter = &sc->sc_adapter;
200	chan->chan_bustype = &scsi_bustype;
201	chan->chan_channel = 0;
202	chan->chan_ntargets = SBIC_NTARG;
203	chan->chan_nluns = SBIC_NLUN;
204	chan->chan_id = sc->sc_id;
205
206	callout_init(&sc->sc_watchdog, 0);
207
208	/*
209	 * Add reference to adapter so that we drop the reference after
210	 * config_found() to make sure the adatper is disabled.
211	 */
212	if (scsipi_adapter_addref(&sc->sc_adapter) != 0) {
213		aprint_error_dev(sc->sc_dev, "unable to enable controller\n");
214		return;
215	}
216
217	sc->sc_cfflags = device_cfdata(sc->sc_dev)->cf_flags;
218	wd33c93_init(sc);
219
220	aprint_normal(": %s (%d.%d MHz clock, %s, SCSI ID %d)\n",
221	    wd33c93_chip_names[sc->sc_chip],
222	    sc->sc_clkfreq / 10, sc->sc_clkfreq % 10,
223	    (sc->sc_dmamode == SBIC_CTL_DMA) ? "DMA" :
224	    (sc->sc_dmamode == SBIC_CTL_DBA_DMA) ? "DBA" :
225	    (sc->sc_dmamode == SBIC_CTL_BURST_DMA) ? "BURST DMA" : "PIO",
226	    sc->sc_channel.chan_id);
227	if (sc->sc_chip == SBIC_CHIP_WD33C93B) {
228		aprint_normal_dev(sc->sc_dev, "microcode revision 0x%02x",
229		    sc->sc_rev);
230		if (sc->sc_minsyncperiod < 50)
231			aprint_normal(", Fast SCSI");
232		aprint_normal("\n");
233	}
234
235	sc->sc_child = config_found(sc->sc_dev, &sc->sc_channel,
236				     scsiprint);
237	scsipi_adapter_delref(&sc->sc_adapter);
238}
239
240/*
241 * Initialize driver-private structures
242 */
243void
244wd33c93_init(struct wd33c93_softc *sc)
245{
246	u_int i;
247
248	if (!wd33c93_pool_initialized) {
249		/* All instances share the same pool */
250		pool_init(&wd33c93_pool, sizeof(struct wd33c93_acb), 0, 0, 0,
251		    "wd33c93_acb", NULL, IPL_BIO);
252		++wd33c93_pool_initialized;
253	}
254
255	if (sc->sc_state == 0) {
256		TAILQ_INIT(&sc->ready_list);
257
258		sc->sc_nexus = NULL;
259		sc->sc_disc  = 0;
260		memset(sc->sc_tinfo, 0, sizeof(sc->sc_tinfo));
261
262		callout_reset(&sc->sc_watchdog, 60 * hz, wd33c93_watchdog, sc);
263	} else
264		panic("wd33c93: reinitializing driver!");
265
266	sc->sc_flags = 0;
267	sc->sc_state = SBIC_IDLE;
268	wd33c93_reset(sc);
269
270	for (i = 0; i < 8; i++) {
271		struct wd33c93_tinfo *ti = &sc->sc_tinfo[i];
272		/*
273		 * cf_flags = 0xTTSSRR
274		 *
275		 *   TT = Bitmask to disable Tagged Queues
276		 *   SS = Bitmask to disable Sync negotiation
277		 *   RR = Bitmask to disable disconnect/reselect
278		 */
279		ti->flags = T_NEED_RESET;
280		if (CFFLAGS_NOSYNC(sc->sc_cfflags, i))
281			ti->flags |= T_NOSYNC;
282		if (CFFLAGS_NODISC(sc->sc_cfflags, i) || wd33c93_nodisc)
283			ti->flags |= T_NODISC;
284		ti->period = sc->sc_minsyncperiod;
285		ti->offset = 0;
286	}
287}
288
289void
290wd33c93_reset(struct wd33c93_softc *sc)
291{
292	u_int	my_id, s, div, i;
293	u_char	csr, reg;
294
295	SET_SBIC_cmd(sc, SBIC_CMD_ABORT);
296	WAIT_CIP(sc);
297
298	s = splbio();
299
300	if (sc->sc_reset != NULL)
301		(*sc->sc_reset)(sc);
302
303	my_id = sc->sc_channel.chan_id & SBIC_ID_MASK;
304
305	/* Enable advanced features and really(!) advanced features */
306#if 1
307	my_id |= (SBIC_ID_EAF | SBIC_ID_RAF);	/* XXX - MD Layer */
308#endif
309
310	SET_SBIC_myid(sc, my_id);
311
312	/* Reset the chip */
313	SET_SBIC_cmd(sc, SBIC_CMD_RESET);
314	DELAY(25);
315	SBIC_WAIT(sc, SBIC_ASR_INT, 0);
316
317	/* Set up various chip parameters */
318	SET_SBIC_control(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
319
320	GET_SBIC_csr(sc, csr);			/* clears interrupt also */
321	GET_SBIC_cdb1(sc, sc->sc_rev);		/* valid with RAF on wd33c93b */
322
323	switch (csr) {
324	case SBIC_CSR_RESET:
325		sc->sc_chip = SBIC_CHIP_WD33C93;
326		break;
327	case SBIC_CSR_RESET_AM:
328		SET_SBIC_queue_tag(sc, 0x55);
329		GET_SBIC_queue_tag(sc, reg);
330		sc->sc_chip = (reg == 0x55) ?
331		    	       SBIC_CHIP_WD33C93B : SBIC_CHIP_WD33C93A;
332		SET_SBIC_queue_tag(sc, 0x0);
333		break;
334	default:
335		sc->sc_chip = SBIC_CHIP_UNKNOWN;
336	}
337
338	/*
339	 * Choose a suitable clock divisor and work out the resulting
340	 * sync transfer periods in 4ns units.
341	 */
342	if (sc->sc_clkfreq < 110) {
343		my_id |= SBIC_ID_FS_8_10;
344		div = 2;
345	} else if (sc->sc_clkfreq < 160) {
346		my_id |= SBIC_ID_FS_12_15;
347		div = 3;
348	} else if (sc->sc_clkfreq < 210) {
349		my_id |= SBIC_ID_FS_16_20;
350		div = 4;
351	} else
352		panic("wd33c93: invalid clock speed %d", sc->sc_clkfreq);
353
354	for (i = 0; i < 7; i++)
355		sc->sc_syncperiods[i] =
356		    (i + 2) * div * 1250 / sc->sc_clkfreq;
357	sc->sc_minsyncperiod = sc->sc_syncperiods[0];
358	SBIC_DEBUG(SYNC, ("available sync periods: %d %d %d %d %d %d %d\n",
359	    sc->sc_syncperiods[0], sc->sc_syncperiods[1],
360	    sc->sc_syncperiods[2], sc->sc_syncperiods[3],
361	    sc->sc_syncperiods[4], sc->sc_syncperiods[5],
362	    sc->sc_syncperiods[6]));
363
364	if (sc->sc_clkfreq >= 160 && sc->sc_chip == SBIC_CHIP_WD33C93B) {
365		for (i = 0; i < 3; i++)
366			sc->sc_fsyncperiods[i] =
367			    (i + 2) * 2 * 1250 / sc->sc_clkfreq;
368		SBIC_DEBUG(SYNC, ("available fast sync periods: %d %d %d\n",
369		    sc->sc_fsyncperiods[0], sc->sc_fsyncperiods[1],
370		    sc->sc_fsyncperiods[2]));
371		sc->sc_minsyncperiod = sc->sc_fsyncperiods[0];
372	}
373
374	/* Max Sync Offset */
375	if (sc->sc_chip == SBIC_CHIP_WD33C93A ||
376	    sc->sc_chip == SBIC_CHIP_WD33C93B)
377		sc->sc_maxoffset = SBIC_SYN_93AB_MAX_OFFSET;
378	else
379		sc->sc_maxoffset = SBIC_SYN_93_MAX_OFFSET;
380
381	/*
382	 * don't allow Selection (SBIC_RID_ES)
383	 * until we can handle target mode!!
384	 */
385	SET_SBIC_rselid(sc, SBIC_RID_ER);
386
387	/* Asynchronous for now */
388	SET_SBIC_syn(sc, 0);
389
390	sc->sc_flags = 0;
391	sc->sc_state = SBIC_IDLE;
392
393	splx(s);
394}
395
396void
397wd33c93_error(struct wd33c93_softc *sc, struct wd33c93_acb *acb)
398{
399	struct scsipi_xfer *xs = acb->xs;
400
401	KASSERT(xs);
402
403	if (xs->xs_control & XS_CTL_SILENT)
404		return;
405
406	scsipi_printaddr(xs->xs_periph);
407	printf("SCSI Error\n");
408}
409
410/*
411 * Determine an appropriate value for the synchronous transfer register
412 * given the period and offset values in *ti.
413 */
414u_char
415wd33c93_stp2syn(struct wd33c93_softc *sc, struct wd33c93_tinfo *ti)
416{
417	unsigned i;
418
419	/* see if we can handle fast scsi (100-200ns) first */
420	if (ti->period < 50 && sc->sc_minsyncperiod < 50) {
421		for (i = 0; i < 3; i++)
422			if (sc->sc_fsyncperiods[i] >= ti->period)
423				return (SBIC_SYN(ti->offset, i + 2, 1));
424	}
425
426	for (i = 0; i < 7; i++) {
427		if (sc->sc_syncperiods[i] >= ti->period) {
428			if (i == 6)
429				return (SBIC_SYN(0, 0, 0));
430			else
431				return (SBIC_SYN(ti->offset, i + 2, 0));
432		}
433	}
434
435	/* XXX - can't handle it; do async */
436	return (SBIC_SYN(0, 0, 0));
437}
438
439/*
440 * Setup sync mode for given target
441 */
442void
443wd33c93_setsync(struct wd33c93_softc *sc, struct wd33c93_tinfo *ti)
444{
445	u_char syncreg;
446
447	if (ti->flags & T_SYNCMODE)
448		syncreg = wd33c93_stp2syn(sc, ti);
449	else
450		syncreg = SBIC_SYN(0, 0, 0);
451
452	SBIC_DEBUG(SYNC, ("wd33c93_setsync: sync reg = 0x%02x\n", syncreg));
453	SET_SBIC_syn(sc, syncreg);
454}
455
456/*
457 * Check if current operation can be done using DMA
458 *
459 * returns 1 if DMA OK, 0 for polled I/O transfer
460 */
461int
462wd33c93_dmaok(struct wd33c93_softc *sc, struct scsipi_xfer *xs)
463{
464	if (wd33c93_nodma || sc->sc_dmamode == SBIC_CTL_NO_DMA ||
465	    (xs->xs_control & XS_CTL_POLL) || xs->datalen == 0)
466		return (0);
467	return(1);
468}
469
470/*
471 * Setup for DMA transfer
472 */
473void
474wd33c93_dma_setup(struct wd33c93_softc *sc, int datain)
475{
476	struct wd33c93_acb *acb = sc->sc_nexus;
477	int s;
478
479	sc->sc_daddr = acb->daddr;
480	sc->sc_dleft = acb->dleft;
481
482	s = splbio();
483	/* Indicate that we're in DMA mode */
484	if (sc->sc_dleft) {
485		sc->sc_dmasetup(sc, &sc->sc_daddr, &sc->sc_dleft,
486		    datain, &sc->sc_dleft);
487	}
488	splx(s);
489	return;
490}
491
492
493/*
494 * Save DMA pointers.  Take into account partial transfer. Shut down DMA.
495 */
496void
497wd33c93_dma_stop(struct wd33c93_softc *sc)
498{
499	size_t count;
500	int asr;
501
502	/* Wait until WD chip is idle */
503	do {
504		GET_SBIC_asr(sc, asr);	/* XXX */
505		if (asr & SBIC_ASR_DBR) {
506			printf("wd33c93_dma_stop: asr %02x canceled!\n", asr);
507			break;
508		}
509	} while (asr & (SBIC_ASR_BSY|SBIC_ASR_CIP));
510
511	/* Only need to save pointers if DMA was active */
512	if (sc->sc_flags & SBICF_INDMA) {
513		int s = splbio();
514
515		/* Shut down DMA and flush FIFO's */
516		sc->sc_dmastop(sc);
517
518		/* Fetch the residual count */
519		SBIC_TC_GET(sc, count);
520
521		/* Work out how many bytes were actually transferred */
522		count = sc->sc_tcnt - count;
523
524		if (sc->sc_dleft < count)
525			printf("xfer too large: dleft=%zu resid=%zu\n",
526			    sc->sc_dleft, count);
527
528		/* Fixup partial xfers */
529		sc->sc_daddr = (char *)sc->sc_daddr + count;
530		sc->sc_dleft -= count;
531		sc->sc_tcnt   = 0;
532		sc->sc_flags &= ~SBICF_INDMA;
533		splx(s);
534		SBIC_DEBUG(DMA, ("dma_stop\n"));
535	}
536	/*
537	 * Ensure the WD chip is back in polled I/O mode, with nothing to
538	 * transfer.
539	 */
540	SBIC_TC_PUT(sc, 0);
541	SET_SBIC_control(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
542}
543
544
545/*
546 * Handle new request from scsipi layer
547 */
548void
549wd33c93_scsi_request(struct scsipi_channel *chan, scsipi_adapter_req_t req, void *arg)
550{
551	struct wd33c93_softc *sc =
552	    device_private(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 (sc->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 (sc->sc_nexus)
598				wd33c93_poll(sc, sc->sc_nexus);
599		}
600
601		s = splbio();
602		TAILQ_INSERT_TAIL(&sc->ready_list, acb, chain);
603		acb->flags |= ACB_READY;
604
605		/* If nothing is active, try to start it now. */
606		if (sc->sc_state == SBIC_IDLE)
607			wd33c93_sched(sc);
608		splx(s);
609
610		if ((flags & XS_CTL_POLL) == 0)
611			return;
612
613		if (wd33c93_poll(sc, acb)) {
614			wd33c93_timeout(acb);
615			if (wd33c93_poll(sc, 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 = &sc->sc_tinfo[xm->xm_target];
630		ti->flags &= ~T_WANTSYNC;
631
632		if ((CFFLAGS_NOTAGS(sc->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(sc, 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 */
662void
663wd33c93_sched(struct wd33c93_softc *sc)
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 (sc->sc_state != SBIC_IDLE)
672		return;
673
674	KASSERT(sc->sc_nexus == NULL);
675
676	/* Loop through the ready list looking for work to do... */
677	TAILQ_FOREACH(acb, &sc->ready_list, chain) {
678		periph = acb->xs->xs_periph;
679		lun = periph->periph_lun;
680		ti = &sc->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(&sc->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(sc);
760
761	/* XXX - Implicitly call scsidone on select timeout */
762	if (wd33c93_go(sc, acb) != 0 || acb->xs->error == XS_SELTIMEOUT) {
763		acb->dleft = sc->sc_dleft;
764		wd33c93_scsidone(sc, acb, sc->sc_status);
765		return;
766	}
767
768	return;
769}
770
771void
772wd33c93_scsidone(struct wd33c93_softc *sc, 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(sc->target == xs->xs_periph->periph_target);
781	KASSERT(sc->lun    == xs->xs_periph->periph_lun);
782	if (acb == NULL || xs == NULL) {
783		panic("wd33c93_scsidone -- (%d,%d) no scsipi_xfer",
784		    sc->target, sc->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		       sc->target, sc->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 = &sc->sc_tinfo[sc->target];
811	li = TINFO_LUN(ti, sc->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 (sc->lun < SBIC_NLUN)
817				ti->lun[sc->lun] = NULL;
818			free(li, M_DEVBUF);
819		}
820	}
821
822	wd33c93_dequeue(sc, acb);
823	if (sc->sc_nexus == acb) {
824		sc->sc_state = SBIC_IDLE;
825		sc->sc_nexus = NULL;
826		sc->sc_flags = 0;
827
828		if (!TAILQ_EMPTY(&sc->ready_list))
829			wd33c93_sched(sc);
830	}
831
832	/* place control block back on free list. */
833	s = splbio();
834	acb->flags = ACB_FREE;
835	pool_put(&wd33c93_pool, acb);
836	splx(s);
837
838	scsipi_done(xs);
839}
840
841void
842wd33c93_dequeue(struct wd33c93_softc *sc, struct wd33c93_acb *acb)
843{
844	struct wd33c93_tinfo *ti = &sc->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
872int
873wd33c93_wait(struct wd33c93_softc *sc, 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(sc, val);
880	while ((val & until) == 0) {
881		if (timeo-- == 0) {
882			int csr;
883			GET_SBIC_csr(sc, 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(sc, val);
894	}
895	return(val);
896}
897
898int
899wd33c93_abort(struct wd33c93_softc *sc, struct wd33c93_acb *acb,
900     const char *where)
901{
902	u_char csr, asr;
903
904	GET_SBIC_asr(sc, asr);
905	GET_SBIC_csr(sc, 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 (sc->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(sc, asr);
927			printf("abort %s: clearing data buffer 0x%02x\n",
928			       where, asr);
929			GET_SBIC_asr(sc, asr);
930			if (asr & SBIC_ASR_DBR) /* Not the read direction */
931				SET_SBIC_data(sc, asr);
932			GET_SBIC_asr(sc, asr);
933		}
934
935		scsipi_printaddr(acb->xs->xs_periph);
936		printf("sending ABORT command\n");
937
938		WAIT_CIP(sc);
939		SET_SBIC_cmd(sc, SBIC_CMD_ABORT);
940		WAIT_CIP(sc);
941
942		GET_SBIC_asr(sc, 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(sc);
951		} else {
952			printf("sending DISCONNECT to target\n");
953			SET_SBIC_cmd(sc, SBIC_CMD_DISC);
954			WAIT_CIP(sc);
955
956			do {
957				SBIC_WAIT (sc, SBIC_ASR_INT, 0);
958				GET_SBIC_asr(sc, asr);
959				GET_SBIC_csr(sc, 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		sc->sc_state = SBIC_ERROR;
967		sc->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 */
980u_char
981wd33c93_selectbus(struct wd33c93_softc *sc, 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(sc->sc_state == SBIC_IDLE);
988
989	target = xs->xs_periph->periph_target;
990	lun    = xs->xs_periph->periph_lun;
991	ti     = &sc->sc_tinfo[target];
992
993	sc->sc_state = SBIC_SELECTING;
994	sc->target    = target;
995	sc->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(sc, 0);
1007	SET_SBIC_selid(sc, target);
1008	SET_SBIC_timeo(sc, SBIC_TIMEOUT(250, sc->sc_clkfreq));
1009
1010	GET_SBIC_asr(sc, 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(sc, SBIC_CMD_SEL_ATN);
1018	WAIT_CIP(sc);
1019
1020	/*
1021	 * wait for select (merged from separate function may need
1022	 * cleanup)
1023	 */
1024	do {
1025		asr = SBIC_WAIT(sc, 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 (sc, 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(sc, 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(sc, 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	sc->sc_flags |= SBICF_SELECTED;
1073	sc->sc_state  = SBIC_CONNECTED;
1074
1075	/* setup correct sync mode for this target */
1076	wd33c93_setsync(sc, ti);
1077
1078	if (ti->flags & T_NODISC && sc->sc_disc == 0)
1079		SET_SBIC_rselid (sc, 0); /* Not expecting a reselect */
1080	else
1081		SET_SBIC_rselid (sc, 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 = sc->sc_minsyncperiod;
1096				ti->offset = sc->sc_maxoffset;
1097			} else {
1098				ti->period = 0;
1099				ti->offset = 0;
1100			}
1101			/* Send Sync negotiation message */
1102			sc->sc_omsg[0] = MSG_IDENTIFY(lun, 0); /* No Disc */
1103			sc->sc_omsg[1] = MSG_EXTENDED;
1104			sc->sc_omsg[2] = MSG_EXT_SDTR_LEN;
1105			sc->sc_omsg[3] = MSG_EXT_SDTR;
1106			if (ti->flags & T_WANTSYNC) {
1107				sc->sc_omsg[4] = sc->sc_minsyncperiod;
1108				sc->sc_omsg[5] = sc->sc_maxoffset;
1109			} else {
1110				sc->sc_omsg[4] = 0;
1111				sc->sc_omsg[5] = 0;
1112			}
1113			wd33c93_xfout(sc, 6, sc->sc_omsg);
1114			sc->sc_msgout |= SEND_SDTR; /* may be rejected */
1115			sc->sc_flags  |= SBICF_SYNCNEGO;
1116		} else {
1117			if (sc->sc_nexus->tag_type != 0) {
1118				/* Use TAGS */
1119				SBIC_DEBUG(TAGS, ("<select %d:%d TAG=%x>\n",
1120					       sc->target, sc->lun,
1121					       sc->sc_nexus->tag_id));
1122				sc->sc_omsg[0] = MSG_IDENTIFY(lun, 1);
1123				sc->sc_omsg[1] = sc->sc_nexus->tag_type;
1124				sc->sc_omsg[2] = sc->sc_nexus->tag_id;
1125				wd33c93_xfout(sc, 3, sc->sc_omsg);
1126				sc->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(sc, 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(sc, SBIC_ASR_INT , 0);
1141		GET_SBIC_csr(sc, 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 */
1161int
1162wd33c93_xfout(struct wd33c93_softc *sc, 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(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
1179	SBIC_TC_PUT (sc, (unsigned)len);
1180
1181	WAIT_CIP (sc);
1182	SET_SBIC_cmd (sc, SBIC_CMD_XFER_INFO);
1183
1184	/*
1185	 * Loop for each byte transferred
1186	 */
1187	do {
1188		GET_SBIC_asr (sc, asr);
1189
1190		if (asr & SBIC_ASR_DBR) {
1191			if (len) {
1192				SET_SBIC_data (sc, *buf);
1193				buf++;
1194				len--;
1195			} else {
1196				SET_SBIC_data (sc, 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 */
1214int
1215wd33c93_xfin(struct wd33c93_softc *sc, 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(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
1224	SBIC_TC_PUT (sc, (unsigned)len);
1225
1226	WAIT_CIP (sc);
1227	SET_SBIC_cmd (sc, SBIC_CMD_XFER_INFO);
1228
1229	/*
1230	 * Loop for each byte transferred
1231	 */
1232	do {
1233		GET_SBIC_asr (sc, asr);
1234
1235		if (asr & SBIC_ASR_DBR) {
1236			if (len) {
1237				GET_SBIC_data (sc, *buf);
1238				buf++;
1239				len--;
1240			} else {
1241				u_char foo;
1242				GET_SBIC_data (sc, 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 (sc, 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 */
1267void
1268wd33c93_xferdone(struct wd33c93_softc *sc)
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(sc, 0);
1280	SET_SBIC_cmd_phase(sc, 0x46);
1281	SET_SBIC_cmd(sc, SBIC_CMD_SEL_ATN_XFER);
1282
1283	do {
1284		SBIC_WAIT (sc, SBIC_ASR_INT, 0);
1285		GET_SBIC_csr (sc, 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	sc->sc_flags &= ~SBICF_SELECTED;
1292	sc->sc_state = SBIC_DISCONNECT;
1293
1294	GET_SBIC_cmd_phase (sc, phase);
1295	QPRINTF(("}%02x", phase));
1296
1297	if (phase == 0x60)
1298		GET_SBIC_tlun(sc, sc->sc_status);
1299	else
1300		wd33c93_error(sc, sc->sc_nexus);
1301
1302	QPRINTF(("=STS:%02x=\n", sc->sc_status));
1303	splx(s);
1304}
1305
1306
1307int
1308wd33c93_go(struct wd33c93_softc *sc, 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", sc->target, sc->lun));
1315
1316	sc->sc_nexus = acb;
1317
1318	sc->target = xs->xs_periph->periph_target;
1319	sc->lun    = xs->xs_periph->periph_lun;
1320
1321	sc->sc_status = STATUS_UNKNOWN;
1322	sc->sc_daddr = acb->daddr;
1323	sc->sc_dleft = acb->dleft;
1324
1325	sc->sc_msgpriq = sc->sc_msgout = sc->sc_msgoutq = 0;
1326	sc->sc_flags = 0;
1327
1328	dmaok = wd33c93_dmaok(sc, xs);
1329
1330	if (dmaok == 0)
1331		sc->sc_flags |= SBICF_NODMA;
1332
1333	SBIC_DEBUG(DMA, ("wd33c93_go dmago:%d(tcnt=%zx) dmaok=%dx\n",
1334		       sc->target, sc->sc_tcnt, dmaok));
1335
1336	/* select the SCSI bus (it's an error if bus isn't free) */
1337	if ((csr = wd33c93_selectbus(sc, 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(sc, asr);
1344	do {
1345		QPRINTF(("go[0x%x] ", csr));
1346
1347		/* Handle the new phase */
1348		i = wd33c93_nextstate(sc, acb, csr, asr);
1349		WAIT_CIP(sc);		/* XXX */
1350		if (sc->sc_state == SBIC_CONNECTED) {
1351
1352			GET_SBIC_asr(sc, 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(sc, csr);
1359		}
1360
1361	} while (sc->sc_state == SBIC_CONNECTED &&
1362	    	 asr & (SBIC_ASR_INT|SBIC_ASR_LCI));
1363
1364	QPRINTF(("> done i=%d stat=%02x\n", i, sc->sc_status));
1365
1366	if (i == SBIC_STATE_DONE) {
1367		if (sc->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
1376int
1377wd33c93_intr(struct wd33c93_softc *sc)
1378{
1379	u_char	asr, csr;
1380	int	i;
1381
1382	/*
1383	 * pending interrupt?
1384	 */
1385	GET_SBIC_asr (sc, asr);
1386	if ((asr & SBIC_ASR_INT) == 0)
1387		return(0);
1388
1389	GET_SBIC_csr(sc, csr);
1390
1391	do {
1392		SBIC_DEBUG(INTS, ("intr[csr=0x%x]", csr));
1393
1394		i = wd33c93_nextstate(sc, sc->sc_nexus, csr, asr);
1395		WAIT_CIP(sc);		/* XXX */
1396		if (sc->sc_state == SBIC_CONNECTED) {
1397			GET_SBIC_asr(sc, 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(sc, csr);
1405		}
1406	} while (sc->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 */
1420int
1421wd33c93_poll(struct wd33c93_softc *sc, 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(sc, SBIC_ASR_INT, wd33c93_cmd_wait);
1428	for (count=acb->timeout; count;) {
1429		GET_SBIC_asr (sc, 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(sc, csr);
1435			sc->sc_flags |= SBICF_NODMA;
1436			i = wd33c93_nextstate(sc, sc->sc_nexus, csr, asr);
1437			WAIT_CIP(sc);		/* 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 (sc->sc_state == SBIC_IDLE) {
1447			SBIC_DEBUG(ACBS, ("[poll: rescheduling] "));
1448			wd33c93_sched(sc);
1449		}
1450	}
1451	return (1);
1452}
1453
1454static 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 */
1471int
1472wd33c93_msgin_phase(struct wd33c93_softc *sc, int reselect)
1473{
1474	int len;
1475	u_char asr, csr, *msg;
1476
1477	GET_SBIC_asr(sc, asr);
1478
1479	SBIC_DEBUG(MSGS, ("wd33c93msgin asr=%02x\n", asr));
1480
1481	GET_SBIC_selid (sc, csr);
1482	SET_SBIC_selid (sc, csr | SBIC_SID_FROM_SCSI);
1483
1484	SBIC_TC_PUT(sc, 0);
1485
1486	SET_SBIC_control(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
1487
1488	msg = sc->sc_imsg;
1489	len = 0;
1490
1491	do {
1492		/* Fetch the next byte of the message */
1493		RECV_BYTE(sc, *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(sc, SBIC_ASR_INT, 0);
1501		GET_SBIC_csr(sc, csr);
1502
1503		if (__verify_msg_format(sc->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(sc, SBIC_CMD_CLR_ACK);
1511		SBIC_WAIT(sc, SBIC_ASR_INT, 0);
1512
1513		GET_SBIC_csr(sc, csr);
1514	} while (len < SBIC_MAX_MSGLEN);
1515
1516	if (__verify_msg_format(sc->sc_imsg, len))
1517		wd33c93_msgin(sc, sc->sc_imsg, len);
1518
1519	/*
1520	 * Clear ACK, and wait for the interrupt
1521	 * for the phase change
1522	 */
1523	SET_SBIC_cmd(sc, SBIC_CMD_CLR_ACK);
1524	SBIC_WAIT(sc, SBIC_ASR_INT, 0);
1525
1526	/* Should still have one CSR to read */
1527	return SBIC_STATE_RUNNING;
1528}
1529
1530
1531void wd33c93_msgin(struct wd33c93_softc *sc, u_char *msgaddr, int msglen)
1532{
1533	struct wd33c93_acb    *acb = sc->sc_nexus;
1534	struct wd33c93_tinfo  *ti = &sc->sc_tinfo[sc->target];
1535	struct wd33c93_linfo  *li;
1536	u_char asr;
1537
1538	switch (sc->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", sc->sc_msgout));
1544			switch (sc->sc_msgout) {
1545			case SEND_TAG:
1546				printf("%s: tagged queuing rejected: "
1547				    "target %d\n",
1548				    device_xname(sc->sc_dev), sc->target);
1549				ti->flags &= ~T_TAG;
1550				li = TINFO_LUN(ti, sc->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(sc->sc_dev), sc->target);
1564
1565				sc->sc_flags &= ~SBICF_SYNCNEGO;
1566				ti->flags &= ~(T_NEGOTIATE | T_SYNCMODE);
1567				wd33c93_update_xfer_mode(sc,
1568				    acb->xs->xs_periph->periph_target);
1569				wd33c93_setsync(sc, 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			sc->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			    sc->target, sc->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 (sc->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				sc->sc_flags &= ~SBICF_SELECTED;
1605				sc->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 = sc->sc_daddr;
1615			acb->dleft = sc->sc_dleft;
1616			break;
1617
1618		case MSG_RESTOREPOINTERS:
1619			SBIC_DEBUG(MSGS, ("msgin: RESTOREPTR"));
1620			sc->sc_daddr = acb->daddr;
1621			sc->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], sc->target));
1646
1647			/* Check to see if wd33c93 is handling this */
1648			GET_SBIC_asr(sc, asr);
1649			if (asr & SBIC_ASR_BSY)
1650				break;
1651
1652			/* XXX: Assume it works and set status to 00 */
1653			sc->sc_status = 0;
1654			sc->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], sc->sc_minsyncperiod);
1668				ti->offset = MIN(msgaddr[4], sc->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 ((sc->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 ((sc->sc_flags&SBICF_SYNCNEGO) == 0)
1692					wd33c93_sched_msgout(sc, SEND_SDTR);
1693				sc->sc_flags &= ~SBICF_SYNCNEGO;
1694
1695				SBIC_DEBUG(SYNC, ("msgin(%d): SDTR(o=%d,p=%d)",
1696					       sc->target, ti->offset,
1697					       ti->period));
1698				wd33c93_update_xfer_mode(sc,
1699				    acb->xs->xs_periph->periph_target);
1700				wd33c93_setsync(sc, 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(sc, 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) || (sc->sc_msgify==0)) {
1731			printf("%s: TAG reselect without IDENTIFY;"
1732			    " MSG %x; sending DEVICE RESET\n",
1733			    device_xname(sc->sc_dev), msgaddr[0]);
1734			goto reset;
1735		}
1736		SBIC_DEBUG(TAGS, ("TAG %x/%x\n", msgaddr[0], msgaddr[1]));
1737		if (sc->sc_nexus)
1738			printf("*TAG Recv with active nexus!!\n");
1739		wd33c93_reselect(sc, sc->target, sc->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			sc->sc_msgify = msgaddr[0];
1750		} else {
1751			printf("%s: reselect without IDENTIFY;"
1752			    " MSG %x;"
1753			    " sending DEVICE RESET\n",
1754			    device_xname(sc->sc_dev), msgaddr[0]);
1755			goto reset;
1756		}
1757		break;
1758
1759	default:
1760		printf("Unexpected MESSAGE IN.  State=%d - Sending RESET\n",
1761		    sc->sc_state);
1762	reset:
1763		wd33c93_sched_msgout(sc, SEND_DEV_RESET);
1764		break;
1765	abort:
1766		wd33c93_sched_msgout(sc, SEND_ABORT);
1767		break;
1768	}
1769}
1770
1771void
1772wd33c93_sched_msgout(struct wd33c93_softc *sc, u_short msg)
1773{
1774	u_char	asr;
1775
1776	SBIC_DEBUG(SYNC,("sched_msgout: %04x\n", msg));
1777	sc->sc_msgpriq |= msg;
1778
1779	/* Schedule MSGOUT Phase to send message */
1780
1781	WAIT_CIP(sc);
1782	SET_SBIC_cmd(sc, SBIC_CMD_SET_ATN);
1783	WAIT_CIP(sc);
1784	GET_SBIC_asr(sc, asr);
1785	if (asr & SBIC_ASR_LCI) {
1786		printf("MSGOUT Failed!\n");
1787	}
1788	SET_SBIC_cmd(sc, SBIC_CMD_CLR_ACK);
1789	WAIT_CIP(sc);
1790}
1791
1792/*
1793 * Send the highest priority, scheduled message
1794 */
1795void
1796wd33c93_msgout(struct wd33c93_softc *sc)
1797{
1798	struct wd33c93_tinfo *ti;
1799	struct wd33c93_acb *acb = sc->sc_nexus;
1800
1801	if (acb == NULL)
1802		panic("MSGOUT with no nexus");
1803
1804	if (sc->sc_omsglen == 0) {
1805		/* Pick up highest priority message */
1806		sc->sc_msgout   = sc->sc_msgpriq & -sc->sc_msgpriq;
1807		sc->sc_msgoutq |= sc->sc_msgout;
1808		sc->sc_msgpriq &= ~sc->sc_msgout;
1809		sc->sc_omsglen = 1;		/* "Default" message len */
1810		switch (sc->sc_msgout) {
1811		case SEND_SDTR:
1812			ti = &sc->sc_tinfo[acb->xs->xs_periph->periph_target];
1813			sc->sc_omsg[0] = MSG_EXTENDED;
1814			sc->sc_omsg[1] = MSG_EXT_SDTR_LEN;
1815			sc->sc_omsg[2] = MSG_EXT_SDTR;
1816			if (ti->flags & T_WANTSYNC) {
1817				sc->sc_omsg[3] = ti->period;
1818				sc->sc_omsg[4] = ti->offset;
1819			} else {
1820				sc->sc_omsg[3] = 0;
1821				sc->sc_omsg[4] = 0;
1822			}
1823			sc->sc_omsglen = 5;
1824			if ((sc->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(sc, ti);
1830			}
1831			break;
1832		case SEND_IDENTIFY:
1833			if (sc->sc_state != SBIC_CONNECTED) {
1834				printf("%s at line %d: no nexus\n",
1835				    device_xname(sc->sc_dev), __LINE__);
1836			}
1837			sc->sc_omsg[0] =
1838			    MSG_IDENTIFY(acb->xs->xs_periph->periph_lun, 0);
1839			break;
1840		case SEND_TAG:
1841			if (sc->sc_state != SBIC_CONNECTED) {
1842				printf("%s at line %d: no nexus\n",
1843				    device_xname(sc->sc_dev), __LINE__);
1844			}
1845			sc->sc_omsg[0] = acb->tag_type;
1846			sc->sc_omsg[1] = acb->tag_id;
1847			sc->sc_omsglen = 2;
1848			break;
1849		case SEND_DEV_RESET:
1850			sc->sc_omsg[0] = MSG_BUS_DEV_RESET;
1851			ti = &sc->sc_tinfo[sc->target];
1852			ti->flags &= ~T_SYNCMODE;
1853			wd33c93_update_xfer_mode(sc, sc->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			sc->sc_omsg[0] = MSG_PARITY_ERROR;
1860			break;
1861		case SEND_ABORT:
1862			sc->sc_flags  |= SBICF_ABORTING;
1863			sc->sc_omsg[0] = MSG_ABORT;
1864			break;
1865		case SEND_INIT_DET_ERR:
1866			sc->sc_omsg[0] = MSG_INITIATOR_DET_ERR;
1867			break;
1868		case SEND_REJECT:
1869			sc->sc_omsg[0] = MSG_MESSAGE_REJECT;
1870			break;
1871		default:
1872			/* Wasn't expecting MSGOUT Phase */
1873			sc->sc_omsg[0] = MSG_NOOP;
1874			break;
1875		}
1876	}
1877
1878	wd33c93_xfout(sc, sc->sc_omsglen, sc->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 */
1890int
1891wd33c93_nextstate(struct wd33c93_softc *sc, 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(sc, 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(sc, 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(sc);
1919
1920		wd33c93_dma_stop(sc);
1921
1922		/* Fixup byte count to be passed to higher layer */
1923		acb->dleft = (acb->flags & ACB_COMPLETE) ? 0 :
1924		    	      sc->sc_dleft;
1925
1926		/*
1927		 * Indicate to the upper layers that the command is done
1928		 */
1929		wd33c93_scsidone(sc, acb, sc->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		    sc->sc_flags & SBICF_NODMA) {
1956			/* Perfrom transfer using PIO */
1957			int resid;
1958
1959			SBIC_DEBUG(DMA, ("PIO xfer: %d(%p:%zx)\n", sc->target,
1960				       sc->sc_daddr, sc->sc_dleft));
1961
1962			if (SBIC_PHASE(csr) == DATA_IN_PHASE)
1963				/* data in */
1964				resid = wd33c93_xfin(sc, sc->sc_dleft,
1965				    		 sc->sc_daddr);
1966			else	/* data out */
1967				resid = wd33c93_xfout(sc, sc->sc_dleft,
1968				    		  sc->sc_daddr);
1969
1970			sc->sc_daddr = (char *)sc->sc_daddr +
1971				(acb->dleft - resid);
1972			sc->sc_dleft = resid;
1973		} else {
1974			int datain = SBIC_PHASE(csr) == DATA_IN_PHASE;
1975
1976			/* Perform transfer using DMA */
1977			wd33c93_dma_setup(sc, datain);
1978
1979			SET_SBIC_control(sc, SBIC_CTL_EDI | SBIC_CTL_IDI |
1980			    sc->sc_dmamode);
1981
1982			SBIC_DEBUG(DMA, ("DMA xfer: %d(%p:%zx)\n", sc->target,
1983				       sc->sc_daddr, sc->sc_dleft));
1984
1985			/* Setup byte count for transfer */
1986			SBIC_TC_PUT(sc, (unsigned)sc->sc_dleft);
1987
1988			/* Start the transfer */
1989			SET_SBIC_cmd(sc, SBIC_CMD_XFER_INFO);
1990
1991			/* Start the DMA chip going */
1992			sc->sc_tcnt = sc->sc_dmago(sc);
1993
1994			/* Indicate that we're in DMA mode */
1995			sc->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(sc);
2005
2006		/* Handle a single message in... */
2007		return wd33c93_msgin_phase(sc, 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(sc, 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(sc);
2029		wd33c93_msgout(sc);
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			       sc->target));
2036		wd33c93_dma_stop(sc);
2037
2038		sc->sc_nexus = NULL;
2039		sc->sc_state = SBIC_IDLE;
2040		sc->sc_flags = 0;
2041
2042		++sc->sc_tinfo[sc->target].dconns;
2043		++sc->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(sc);
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 (sc->sc_flags & SBICF_INDMA) {
2067			printf("**** RESELECT WHILE DMA ACTIVE!!! ***\n");
2068			wd33c93_dma_stop(sc);
2069		}
2070
2071		sc->sc_state = SBIC_RESELECTED;
2072		GET_SBIC_rselid(sc, 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(sc, newlun);
2080			WAIT_CIP(sc);
2081			newlun &= SBIC_TLUN_MASK;
2082			sc->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(sc, 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(sc->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(sc,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					sc->sc_msgify = 0;
2116					wd33c93_msgin_phase(sc, 1);
2117					newlun = sc->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(sc, newtarget, newlun, 0, 0);
2133		sc->sc_disc--;
2134
2135		if (csr == SBIC_CSR_RSLT_IFY)
2136			SET_SBIC_cmd(sc, 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(sc, SBIC_CTL_EDI | SBIC_CTL_IDI);
2150		if (acb->xs)
2151			wd33c93_error(sc, acb);
2152		wd33c93_abort(sc, acb, "next");
2153
2154		if (sc->sc_flags & SBICF_INDMA) {
2155			wd33c93_dma_stop(sc);
2156			wd33c93_scsidone(sc, acb, STATUS_UNKNOWN);
2157		}
2158		return SBIC_STATE_ERROR;
2159	}
2160	return SBIC_STATE_RUNNING;
2161}
2162
2163
2164void
2165wd33c93_reselect(struct wd33c93_softc *sc, 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 (sc->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(sc->sc_dev)));
2182		ti = &sc->sc_tinfo[sc->target];
2183		li = TINFO_LUN(ti, sc->lun);
2184		li->state = L_STATE_IDLE;
2185
2186		wd33c93_dequeue(sc, sc->sc_nexus);
2187		TAILQ_INSERT_HEAD(&sc->ready_list, sc->sc_nexus, chain);
2188		sc->sc_nexus->flags |= ACB_READY;
2189
2190		sc->sc_nexus = NULL;
2191	}
2192
2193	/* Setup state for new nexus */
2194	acb = NULL;
2195	sc->sc_flags = SBICF_SELECTED;
2196	sc->sc_msgpriq = sc->sc_msgout = sc->sc_msgoutq = 0;
2197
2198	ti = &sc->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			sc->target    = target; /* setup I_T_L nexus */
2207			sc->lun       = lun;
2208			sc->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(sc->sc_dev), target, lun, tag_type, tag_id);
2218		goto abort;
2219	}
2220
2221	sc->target    = target;
2222	sc->lun       = lun;
2223	sc->sc_nexus  = acb;
2224	sc->sc_state  = SBIC_CONNECTED;
2225
2226	if (!wd33c93_dmaok(sc, acb->xs))
2227		sc->sc_flags |= SBICF_NODMA;
2228
2229	/* Do an implicit RESTORE POINTERS. */
2230	sc->sc_daddr = acb->daddr;
2231	sc->sc_dleft = acb->dleft;
2232
2233	/* Set sync modes for new target */
2234	wd33c93_setsync(sc, ti);
2235
2236	if (acb->flags & ACB_RESET)
2237		wd33c93_sched_msgout(sc, SEND_DEV_RESET);
2238	else if (acb->flags & ACB_ABORT)
2239		wd33c93_sched_msgout(sc, SEND_ABORT);
2240	return;
2241
2242abort:
2243	wd33c93_sched_msgout(sc, SEND_ABORT);
2244	return;
2245
2246}
2247
2248void
2249wd33c93_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
2275void
2276wd33c93_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 *sc =
2282	    device_private(periph->periph_channel->chan_adapter->adapt_dev);
2283	int s, asr;
2284
2285	s = splbio();
2286
2287	GET_SBIC_asr(sc, 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(sc->sc_dev), asr, acb, acb->flags, acb->dleft,
2293	    sc->sc_state, sc->sc_nexus, (long)sc->sc_dleft,
2294	    sc->sc_msgpriq, sc->sc_msgout);
2295
2296	if (asr & SBIC_ASR_INT) {
2297		/* We need to service a missed IRQ */
2298		wd33c93_intr(sc);
2299	} else {
2300		(void) wd33c93_abort(sc, sc->sc_nexus, "timeout");
2301	}
2302	splx(s);
2303}
2304
2305
2306void
2307wd33c93_watchdog(void *arg)
2308{
2309	struct wd33c93_softc *sc = 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 = &sc->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(&sc->sc_watchdog, 60 * hz, wd33c93_watchdog, sc);
2330}
2331
2332
2333#ifdef DEBUG
2334void
2335wd33c93_hexdump(u_char *buf, int len)
2336{
2337	printf("{%d}:", len);
2338	while (len--)
2339		printf(" %02x", *buf++);
2340	printf("\n");
2341}
2342
2343
2344void
2345wd33c93_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