ncr53c9x.c revision 1.26 1 1.26 thorpej /* $NetBSD: ncr53c9x.c,v 1.26 1998/05/26 23:17:34 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 1996 Charles M. Hannum. All rights reserved.
5 1.1 thorpej *
6 1.1 thorpej * Redistribution and use in source and binary forms, with or without
7 1.1 thorpej * modification, are permitted provided that the following conditions
8 1.1 thorpej * are met:
9 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
10 1.1 thorpej * notice, this list of conditions and the following disclaimer.
11 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
13 1.1 thorpej * documentation and/or other materials provided with the distribution.
14 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
15 1.1 thorpej * must display the following acknowledgement:
16 1.1 thorpej * This product includes software developed by Charles M. Hannum.
17 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
18 1.1 thorpej * derived from this software without specific prior written permission.
19 1.1 thorpej *
20 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 thorpej */
31 1.1 thorpej
32 1.1 thorpej /*
33 1.1 thorpej * Copyright (c) 1994 Peter Galbavy
34 1.1 thorpej * Copyright (c) 1995 Paul Kranenburg
35 1.1 thorpej * All rights reserved.
36 1.1 thorpej *
37 1.1 thorpej * Redistribution and use in source and binary forms, with or without
38 1.1 thorpej * modification, are permitted provided that the following conditions
39 1.1 thorpej * are met:
40 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
41 1.1 thorpej * notice, this list of conditions and the following disclaimer.
42 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
43 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
44 1.1 thorpej * documentation and/or other materials provided with the distribution.
45 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
46 1.1 thorpej * must display the following acknowledgement:
47 1.1 thorpej * This product includes software developed by Peter Galbavy
48 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
49 1.1 thorpej * derived from this software without specific prior written permission.
50 1.1 thorpej *
51 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
52 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
53 1.1 thorpej * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
54 1.1 thorpej * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
55 1.1 thorpej * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
56 1.1 thorpej * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
57 1.1 thorpej * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
59 1.1 thorpej * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
60 1.1 thorpej * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
61 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
62 1.1 thorpej */
63 1.1 thorpej
64 1.1 thorpej /*
65 1.1 thorpej * Based on aic6360 by Jarle Greipsland
66 1.1 thorpej *
67 1.1 thorpej * Acknowledgements: Many of the algorithms used in this driver are
68 1.1 thorpej * inspired by the work of Julian Elischer (julian (at) tfs.com) and
69 1.1 thorpej * Charles Hannum (mycroft (at) duality.gnu.ai.mit.edu). Thanks a million!
70 1.1 thorpej */
71 1.1 thorpej
72 1.1 thorpej #include <sys/types.h>
73 1.1 thorpej #include <sys/param.h>
74 1.1 thorpej #include <sys/systm.h>
75 1.1 thorpej #include <sys/kernel.h>
76 1.1 thorpej #include <sys/errno.h>
77 1.1 thorpej #include <sys/ioctl.h>
78 1.1 thorpej #include <sys/device.h>
79 1.1 thorpej #include <sys/buf.h>
80 1.24 pk #include <sys/malloc.h>
81 1.1 thorpej #include <sys/proc.h>
82 1.1 thorpej #include <sys/user.h>
83 1.1 thorpej #include <sys/queue.h>
84 1.1 thorpej
85 1.18 bouyer #include <dev/scsipi/scsi_all.h>
86 1.18 bouyer #include <dev/scsipi/scsipi_all.h>
87 1.18 bouyer #include <dev/scsipi/scsiconf.h>
88 1.18 bouyer #include <dev/scsipi/scsi_message.h>
89 1.1 thorpej
90 1.1 thorpej #include <machine/cpu.h>
91 1.1 thorpej
92 1.1 thorpej #include <dev/ic/ncr53c9xreg.h>
93 1.1 thorpej #include <dev/ic/ncr53c9xvar.h>
94 1.1 thorpej
95 1.1 thorpej int ncr53c9x_debug = 0; /*NCR_SHOWPHASE|NCR_SHOWMISC|NCR_SHOWTRAC|NCR_SHOWCMDS;*/
96 1.1 thorpej
97 1.1 thorpej /*static*/ void ncr53c9x_readregs __P((struct ncr53c9x_softc *));
98 1.1 thorpej /*static*/ void ncr53c9x_select __P((struct ncr53c9x_softc *,
99 1.1 thorpej struct ncr53c9x_ecb *));
100 1.1 thorpej /*static*/ int ncr53c9x_reselect __P((struct ncr53c9x_softc *, int));
101 1.1 thorpej /*static*/ void ncr53c9x_scsi_reset __P((struct ncr53c9x_softc *));
102 1.1 thorpej /*static*/ void ncr53c9x_init __P((struct ncr53c9x_softc *, int));
103 1.1 thorpej /*static*/ int ncr53c9x_poll __P((struct ncr53c9x_softc *,
104 1.18 bouyer struct scsipi_xfer *, int));
105 1.1 thorpej /*static*/ void ncr53c9x_sched __P((struct ncr53c9x_softc *));
106 1.1 thorpej /*static*/ void ncr53c9x_done __P((struct ncr53c9x_softc *,
107 1.1 thorpej struct ncr53c9x_ecb *));
108 1.1 thorpej /*static*/ void ncr53c9x_msgin __P((struct ncr53c9x_softc *));
109 1.1 thorpej /*static*/ void ncr53c9x_msgout __P((struct ncr53c9x_softc *));
110 1.1 thorpej /*static*/ void ncr53c9x_timeout __P((void *arg));
111 1.1 thorpej /*static*/ void ncr53c9x_abort __P((struct ncr53c9x_softc *,
112 1.1 thorpej struct ncr53c9x_ecb *));
113 1.1 thorpej /*static*/ void ncr53c9x_dequeue __P((struct ncr53c9x_softc *,
114 1.1 thorpej struct ncr53c9x_ecb *));
115 1.1 thorpej
116 1.1 thorpej void ncr53c9x_sense __P((struct ncr53c9x_softc *,
117 1.1 thorpej struct ncr53c9x_ecb *));
118 1.1 thorpej void ncr53c9x_free_ecb __P((struct ncr53c9x_softc *,
119 1.1 thorpej struct ncr53c9x_ecb *, int));
120 1.1 thorpej struct ncr53c9x_ecb *ncr53c9x_get_ecb __P((struct ncr53c9x_softc *, int));
121 1.1 thorpej
122 1.1 thorpej static inline int ncr53c9x_stp2cpb __P((struct ncr53c9x_softc *, int));
123 1.1 thorpej static inline void ncr53c9x_setsync __P((struct ncr53c9x_softc *,
124 1.1 thorpej struct ncr53c9x_tinfo *));
125 1.1 thorpej
126 1.1 thorpej /*
127 1.1 thorpej * Names for the NCR53c9x variants, correspnding to the variant tags
128 1.1 thorpej * in ncr53c9xvar.h.
129 1.1 thorpej */
130 1.1 thorpej const char *ncr53c9x_variant_names[] = {
131 1.1 thorpej "ESP100",
132 1.1 thorpej "ESP100A",
133 1.1 thorpej "ESP200",
134 1.1 thorpej "NCR53C94",
135 1.2 briggs "NCR53C96",
136 1.10 pk "ESP406",
137 1.10 pk "FAS408",
138 1.20 mhitch "FAS216",
139 1.1 thorpej };
140 1.1 thorpej
141 1.1 thorpej /*
142 1.1 thorpej * Attach this instance, and then all the sub-devices
143 1.1 thorpej */
144 1.1 thorpej void
145 1.1 thorpej ncr53c9x_attach(sc, adapter, dev)
146 1.1 thorpej struct ncr53c9x_softc *sc;
147 1.18 bouyer struct scsipi_adapter *adapter;
148 1.18 bouyer struct scsipi_device *dev;
149 1.1 thorpej {
150 1.1 thorpej
151 1.1 thorpej /*
152 1.24 pk * Allocate SCSI message buffers.
153 1.24 pk * Front-ends can override allocation to avoid alignment
154 1.24 pk * handling in the DMA engines. Note that that ncr53c9x_msgout()
155 1.24 pk * can request a 1 byte DMA transfer.
156 1.24 pk */
157 1.24 pk if (sc->sc_omess == NULL)
158 1.24 pk sc->sc_omess = malloc(NCR_MAX_MSG_LEN, M_DEVBUF, M_NOWAIT);
159 1.24 pk
160 1.24 pk if (sc->sc_imess == NULL)
161 1.24 pk sc->sc_imess = malloc(NCR_MAX_MSG_LEN+1, M_DEVBUF, M_NOWAIT);
162 1.24 pk
163 1.24 pk if (sc->sc_omess == NULL || sc->sc_imess == NULL) {
164 1.24 pk printf("out of memory\n");
165 1.24 pk return;
166 1.24 pk }
167 1.24 pk
168 1.24 pk /*
169 1.1 thorpej * Note, the front-end has set us up to print the chip variation.
170 1.1 thorpej */
171 1.1 thorpej if (sc->sc_rev >= NCR_VARIANT_MAX) {
172 1.1 thorpej printf("\n%s: unknown variant %d, devices not attached\n",
173 1.1 thorpej sc->sc_dev.dv_xname, sc->sc_rev);
174 1.1 thorpej return;
175 1.1 thorpej }
176 1.1 thorpej
177 1.1 thorpej printf(": %s, %dMHz, SCSI ID %d\n",
178 1.1 thorpej ncr53c9x_variant_names[sc->sc_rev], sc->sc_freq, sc->sc_id);
179 1.1 thorpej
180 1.1 thorpej sc->sc_ccf = FREQTOCCF(sc->sc_freq);
181 1.1 thorpej
182 1.1 thorpej /* The value *must not* be == 1. Make it 2 */
183 1.1 thorpej if (sc->sc_ccf == 1)
184 1.1 thorpej sc->sc_ccf = 2;
185 1.1 thorpej
186 1.1 thorpej /*
187 1.1 thorpej * The recommended timeout is 250ms. This register is loaded
188 1.1 thorpej * with a value calculated as follows, from the docs:
189 1.1 thorpej *
190 1.1 thorpej * (timout period) x (CLK frequency)
191 1.1 thorpej * reg = -------------------------------------
192 1.1 thorpej * 8192 x (Clock Conversion Factor)
193 1.1 thorpej *
194 1.1 thorpej * Since CCF has a linear relation to CLK, this generally computes
195 1.1 thorpej * to the constant of 153.
196 1.1 thorpej */
197 1.1 thorpej sc->sc_timeout = ((250 * 1000) * sc->sc_freq) / (8192 * sc->sc_ccf);
198 1.1 thorpej
199 1.1 thorpej /* CCF register only has 3 bits; 0 is actually 8 */
200 1.1 thorpej sc->sc_ccf &= 7;
201 1.1 thorpej
202 1.1 thorpej /* Reset state & bus */
203 1.16 pk sc->sc_cfflags = sc->sc_dev.dv_cfdata->cf_flags;
204 1.1 thorpej sc->sc_state = 0;
205 1.1 thorpej ncr53c9x_init(sc, 1);
206 1.1 thorpej
207 1.1 thorpej /*
208 1.18 bouyer * fill in the prototype scsipi_link.
209 1.1 thorpej */
210 1.18 bouyer sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
211 1.1 thorpej sc->sc_link.adapter_softc = sc;
212 1.18 bouyer sc->sc_link.scsipi_scsi.adapter_target = sc->sc_id;
213 1.1 thorpej sc->sc_link.adapter = adapter;
214 1.1 thorpej sc->sc_link.device = dev;
215 1.1 thorpej sc->sc_link.openings = 2;
216 1.18 bouyer sc->sc_link.scsipi_scsi.max_target = 7;
217 1.18 bouyer sc->sc_link.type = BUS_SCSI;
218 1.1 thorpej
219 1.1 thorpej /*
220 1.1 thorpej * Now try to attach all the sub-devices
221 1.1 thorpej */
222 1.1 thorpej config_found(&sc->sc_dev, &sc->sc_link, scsiprint);
223 1.10 pk
224 1.10 pk /*
225 1.10 pk * Enable interupts from the SCSI core
226 1.10 pk */
227 1.10 pk if ((sc->sc_rev == NCR_VARIANT_ESP406) ||
228 1.10 pk (sc->sc_rev == NCR_VARIANT_FAS408)) {
229 1.10 pk NCR_PIOREGS(sc);
230 1.10 pk NCR_WRITE_REG(sc, NCR_CFG5, NCRCFG5_SINT |
231 1.10 pk NCR_READ_REG(sc, NCR_CFG5));
232 1.10 pk NCR_SCSIREGS(sc);
233 1.10 pk }
234 1.24 pk
235 1.1 thorpej }
236 1.1 thorpej
237 1.1 thorpej /*
238 1.1 thorpej * This is the generic esp reset function. It does not reset the SCSI bus,
239 1.1 thorpej * only this controllers, but kills any on-going commands, and also stops
240 1.1 thorpej * and resets the DMA.
241 1.1 thorpej *
242 1.1 thorpej * After reset, registers are loaded with the defaults from the attach
243 1.1 thorpej * routine above.
244 1.1 thorpej */
245 1.1 thorpej void
246 1.1 thorpej ncr53c9x_reset(sc)
247 1.1 thorpej struct ncr53c9x_softc *sc;
248 1.1 thorpej {
249 1.1 thorpej
250 1.1 thorpej /* reset DMA first */
251 1.1 thorpej NCRDMA_RESET(sc);
252 1.1 thorpej
253 1.1 thorpej /* reset SCSI chip */
254 1.1 thorpej NCRCMD(sc, NCRCMD_RSTCHIP);
255 1.1 thorpej NCRCMD(sc, NCRCMD_NOP);
256 1.1 thorpej DELAY(500);
257 1.1 thorpej
258 1.1 thorpej /* do these backwards, and fall through */
259 1.1 thorpej switch (sc->sc_rev) {
260 1.10 pk case NCR_VARIANT_ESP406:
261 1.10 pk case NCR_VARIANT_FAS408:
262 1.10 pk NCR_SCSIREGS(sc);
263 1.20 mhitch case NCR_VARIANT_FAS216:
264 1.1 thorpej case NCR_VARIANT_NCR53C94:
265 1.2 briggs case NCR_VARIANT_NCR53C96:
266 1.1 thorpej case NCR_VARIANT_ESP200:
267 1.26 thorpej sc->sc_features |= NCR_F_HASCFG3;
268 1.1 thorpej NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
269 1.1 thorpej case NCR_VARIANT_ESP100A:
270 1.1 thorpej NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
271 1.1 thorpej case NCR_VARIANT_ESP100:
272 1.1 thorpej NCR_WRITE_REG(sc, NCR_CFG1, sc->sc_cfg1);
273 1.1 thorpej NCR_WRITE_REG(sc, NCR_CCF, sc->sc_ccf);
274 1.1 thorpej NCR_WRITE_REG(sc, NCR_SYNCOFF, 0);
275 1.1 thorpej NCR_WRITE_REG(sc, NCR_TIMEOUT, sc->sc_timeout);
276 1.1 thorpej break;
277 1.1 thorpej default:
278 1.1 thorpej printf("%s: unknown revision code, assuming ESP100\n",
279 1.1 thorpej sc->sc_dev.dv_xname);
280 1.1 thorpej NCR_WRITE_REG(sc, NCR_CFG1, sc->sc_cfg1);
281 1.1 thorpej NCR_WRITE_REG(sc, NCR_CCF, sc->sc_ccf);
282 1.1 thorpej NCR_WRITE_REG(sc, NCR_SYNCOFF, 0);
283 1.1 thorpej NCR_WRITE_REG(sc, NCR_TIMEOUT, sc->sc_timeout);
284 1.1 thorpej }
285 1.1 thorpej }
286 1.1 thorpej
287 1.1 thorpej /*
288 1.1 thorpej * Reset the SCSI bus, but not the chip
289 1.1 thorpej */
290 1.1 thorpej void
291 1.1 thorpej ncr53c9x_scsi_reset(sc)
292 1.1 thorpej struct ncr53c9x_softc *sc;
293 1.1 thorpej {
294 1.1 thorpej
295 1.1 thorpej (*sc->sc_glue->gl_dma_stop)(sc);
296 1.1 thorpej
297 1.1 thorpej printf("%s: resetting SCSI bus\n", sc->sc_dev.dv_xname);
298 1.1 thorpej NCRCMD(sc, NCRCMD_RSTSCSI);
299 1.1 thorpej }
300 1.1 thorpej
301 1.1 thorpej /*
302 1.1 thorpej * Initialize esp state machine
303 1.1 thorpej */
304 1.1 thorpej void
305 1.1 thorpej ncr53c9x_init(sc, doreset)
306 1.1 thorpej struct ncr53c9x_softc *sc;
307 1.1 thorpej int doreset;
308 1.1 thorpej {
309 1.1 thorpej struct ncr53c9x_ecb *ecb;
310 1.1 thorpej int r;
311 1.1 thorpej
312 1.1 thorpej NCR_TRACE(("[NCR_INIT(%d)] ", doreset));
313 1.1 thorpej
314 1.1 thorpej if (sc->sc_state == 0) {
315 1.1 thorpej /* First time through; initialize. */
316 1.1 thorpej TAILQ_INIT(&sc->ready_list);
317 1.1 thorpej TAILQ_INIT(&sc->nexus_list);
318 1.1 thorpej TAILQ_INIT(&sc->free_list);
319 1.1 thorpej sc->sc_nexus = NULL;
320 1.1 thorpej ecb = sc->sc_ecb;
321 1.1 thorpej bzero(ecb, sizeof(sc->sc_ecb));
322 1.1 thorpej for (r = 0; r < sizeof(sc->sc_ecb) / sizeof(*ecb); r++) {
323 1.1 thorpej TAILQ_INSERT_TAIL(&sc->free_list, ecb, chain);
324 1.1 thorpej ecb++;
325 1.1 thorpej }
326 1.1 thorpej bzero(sc->sc_tinfo, sizeof(sc->sc_tinfo));
327 1.1 thorpej } else {
328 1.1 thorpej /* Cancel any active commands. */
329 1.1 thorpej sc->sc_state = NCR_CLEANING;
330 1.1 thorpej if ((ecb = sc->sc_nexus) != NULL) {
331 1.16 pk ecb->xs->error = XS_TIMEOUT;
332 1.1 thorpej ncr53c9x_done(sc, ecb);
333 1.1 thorpej }
334 1.1 thorpej while ((ecb = sc->nexus_list.tqh_first) != NULL) {
335 1.16 pk ecb->xs->error = XS_TIMEOUT;
336 1.1 thorpej ncr53c9x_done(sc, ecb);
337 1.1 thorpej }
338 1.1 thorpej }
339 1.1 thorpej
340 1.1 thorpej /*
341 1.1 thorpej * reset the chip to a known state
342 1.1 thorpej */
343 1.1 thorpej ncr53c9x_reset(sc);
344 1.1 thorpej
345 1.1 thorpej sc->sc_phase = sc->sc_prevphase = INVALID_PHASE;
346 1.1 thorpej for (r = 0; r < 8; r++) {
347 1.1 thorpej struct ncr53c9x_tinfo *ti = &sc->sc_tinfo[r];
348 1.1 thorpej /* XXX - config flags per target: low bits: no reselect; high bits: no synch */
349 1.1 thorpej
350 1.16 pk ti->flags = ((sc->sc_minsync && !(sc->sc_cfflags & (1<<(r+8))))
351 1.1 thorpej ? T_NEGOTIATE : 0) |
352 1.16 pk ((sc->sc_cfflags & (1<<r)) ? T_RSELECTOFF : 0) |
353 1.1 thorpej T_NEED_TO_RESET;
354 1.1 thorpej ti->period = sc->sc_minsync;
355 1.1 thorpej ti->offset = 0;
356 1.1 thorpej }
357 1.1 thorpej
358 1.1 thorpej if (doreset) {
359 1.1 thorpej sc->sc_state = NCR_SBR;
360 1.1 thorpej NCRCMD(sc, NCRCMD_RSTSCSI);
361 1.1 thorpej } else {
362 1.1 thorpej sc->sc_state = NCR_IDLE;
363 1.15 pk ncr53c9x_sched(sc);
364 1.1 thorpej }
365 1.1 thorpej }
366 1.1 thorpej
367 1.1 thorpej /*
368 1.1 thorpej * Read the NCR registers, and save their contents for later use.
369 1.1 thorpej * NCR_STAT, NCR_STEP & NCR_INTR are mostly zeroed out when reading
370 1.1 thorpej * NCR_INTR - so make sure it is the last read.
371 1.1 thorpej *
372 1.1 thorpej * I think that (from reading the docs) most bits in these registers
373 1.1 thorpej * only make sense when he DMA CSR has an interrupt showing. Call only
374 1.1 thorpej * if an interrupt is pending.
375 1.1 thorpej */
376 1.25 pk __inline__ void
377 1.1 thorpej ncr53c9x_readregs(sc)
378 1.1 thorpej struct ncr53c9x_softc *sc;
379 1.1 thorpej {
380 1.1 thorpej
381 1.1 thorpej sc->sc_espstat = NCR_READ_REG(sc, NCR_STAT);
382 1.1 thorpej /* Only the stepo bits are of interest */
383 1.1 thorpej sc->sc_espstep = NCR_READ_REG(sc, NCR_STEP) & NCRSTEP_MASK;
384 1.1 thorpej sc->sc_espintr = NCR_READ_REG(sc, NCR_INTR);
385 1.1 thorpej
386 1.1 thorpej if (sc->sc_glue->gl_clear_latched_intr != NULL)
387 1.1 thorpej (*sc->sc_glue->gl_clear_latched_intr)(sc);
388 1.1 thorpej
389 1.1 thorpej /*
390 1.1 thorpej * Determine the SCSI bus phase, return either a real SCSI bus phase
391 1.1 thorpej * or some pseudo phase we use to detect certain exceptions.
392 1.1 thorpej */
393 1.1 thorpej
394 1.1 thorpej sc->sc_phase = (sc->sc_espintr & NCRINTR_DIS)
395 1.1 thorpej ? /* Disconnected */ BUSFREE_PHASE
396 1.1 thorpej : sc->sc_espstat & NCRSTAT_PHASE;
397 1.1 thorpej
398 1.1 thorpej NCR_MISC(("regs[intr=%02x,stat=%02x,step=%02x] ",
399 1.1 thorpej sc->sc_espintr, sc->sc_espstat, sc->sc_espstep));
400 1.1 thorpej }
401 1.1 thorpej
402 1.1 thorpej /*
403 1.1 thorpej * Convert Synchronous Transfer Period to chip register Clock Per Byte value.
404 1.1 thorpej */
405 1.1 thorpej static inline int
406 1.1 thorpej ncr53c9x_stp2cpb(sc, period)
407 1.1 thorpej struct ncr53c9x_softc *sc;
408 1.1 thorpej int period;
409 1.1 thorpej {
410 1.1 thorpej int v;
411 1.1 thorpej v = (sc->sc_freq * period) / 250;
412 1.1 thorpej if (ncr53c9x_cpb2stp(sc, v) < period)
413 1.1 thorpej /* Correct round-down error */
414 1.1 thorpej v++;
415 1.25 pk return (v);
416 1.1 thorpej }
417 1.1 thorpej
418 1.1 thorpej static inline void
419 1.1 thorpej ncr53c9x_setsync(sc, ti)
420 1.1 thorpej struct ncr53c9x_softc *sc;
421 1.1 thorpej struct ncr53c9x_tinfo *ti;
422 1.1 thorpej {
423 1.26 thorpej u_char syncoff, synctp, cfg3 = sc->sc_cfg3;
424 1.1 thorpej
425 1.1 thorpej if (ti->flags & T_SYNCMODE) {
426 1.26 thorpej syncoff = ti->offset;
427 1.26 thorpej synctp = ncr53c9x_stp2cpb(sc, ti->period);
428 1.26 thorpej if (sc->sc_features & NCR_F_FASTSCSI) {
429 1.26 thorpej /*
430 1.26 thorpej * If the period is 200ns or less (ti->period <= 50),
431 1.26 thorpej * put the chip in Fast SCSI mode.
432 1.26 thorpej */
433 1.26 thorpej if (ti->period <= 50)
434 1.26 thorpej cfg3 |= NCRCFG3_FSCSI;
435 1.26 thorpej }
436 1.1 thorpej } else {
437 1.26 thorpej syncoff = 0;
438 1.26 thorpej synctp = 0;
439 1.1 thorpej }
440 1.26 thorpej
441 1.26 thorpej if (sc->sc_features & NCR_F_HASCFG3)
442 1.26 thorpej NCR_WRITE_REG(sc, NCR_CFG3, cfg3);
443 1.26 thorpej
444 1.26 thorpej NCR_WRITE_REG(sc, NCR_SYNCOFF, syncoff);
445 1.26 thorpej NCR_WRITE_REG(sc, NCR_SYNCTP, synctp);
446 1.1 thorpej }
447 1.1 thorpej
448 1.8 pk int ncr53c9x_dmaselect = 0;
449 1.1 thorpej /*
450 1.1 thorpej * Send a command to a target, set the driver state to NCR_SELECTING
451 1.1 thorpej * and let the caller take care of the rest.
452 1.1 thorpej *
453 1.1 thorpej * Keeping this as a function allows me to say that this may be done
454 1.1 thorpej * by DMA instead of programmed I/O soon.
455 1.1 thorpej */
456 1.1 thorpej void
457 1.1 thorpej ncr53c9x_select(sc, ecb)
458 1.1 thorpej struct ncr53c9x_softc *sc;
459 1.1 thorpej struct ncr53c9x_ecb *ecb;
460 1.1 thorpej {
461 1.18 bouyer struct scsipi_link *sc_link = ecb->xs->sc_link;
462 1.18 bouyer int target = sc_link->scsipi_scsi.target;
463 1.22 pk int lun = sc_link->scsipi_scsi.lun;
464 1.1 thorpej struct ncr53c9x_tinfo *ti = &sc->sc_tinfo[target];
465 1.22 pk int tiflags = ti->flags;
466 1.1 thorpej u_char *cmd;
467 1.1 thorpej int clen;
468 1.1 thorpej
469 1.1 thorpej NCR_TRACE(("[ncr53c9x_select(t%d,l%d,cmd:%x)] ",
470 1.22 pk target, lun, ecb->cmd.cmd.opcode));
471 1.1 thorpej
472 1.1 thorpej sc->sc_state = NCR_SELECTING;
473 1.1 thorpej
474 1.7 gwr /*
475 1.7 gwr * Schedule the timeout now, the first time we will go away
476 1.7 gwr * expecting to come back due to an interrupt, because it is
477 1.7 gwr * always possible that the interrupt may never happen.
478 1.7 gwr */
479 1.7 gwr if ((ecb->xs->flags & SCSI_POLL) == 0)
480 1.7 gwr timeout(ncr53c9x_timeout, ecb,
481 1.7 gwr (ecb->timeout * hz) / 1000);
482 1.7 gwr
483 1.1 thorpej /*
484 1.1 thorpej * The docs say the target register is never reset, and I
485 1.1 thorpej * can't think of a better place to set it
486 1.1 thorpej */
487 1.1 thorpej NCR_WRITE_REG(sc, NCR_SELID, target);
488 1.1 thorpej ncr53c9x_setsync(sc, ti);
489 1.1 thorpej
490 1.22 pk if (ncr53c9x_dmaselect && (tiflags & T_NEGOTIATE) == 0) {
491 1.22 pk size_t dmasize;
492 1.22 pk
493 1.8 pk ecb->cmd.id =
494 1.22 pk MSG_IDENTIFY(lun, (tiflags & T_RSELECTOFF)?0:1);
495 1.22 pk
496 1.8 pk
497 1.8 pk /* setup DMA transfer for command */
498 1.22 pk dmasize = clen = ecb->clen + 1;
499 1.8 pk sc->sc_cmdlen = clen;
500 1.8 pk sc->sc_cmdp = (caddr_t)&ecb->cmd;
501 1.22 pk NCRDMA_SETUP(sc, &sc->sc_cmdp, &sc->sc_cmdlen, 0, &dmasize);
502 1.22 pk
503 1.8 pk /* Program the SCSI counter */
504 1.22 pk NCR_WRITE_REG(sc, NCR_TCL, dmasize);
505 1.22 pk NCR_WRITE_REG(sc, NCR_TCM, dmasize >> 8);
506 1.8 pk if (sc->sc_cfg2 & NCRCFG2_FE) {
507 1.22 pk NCR_WRITE_REG(sc, NCR_TCH, dmasize >> 16);
508 1.8 pk }
509 1.8 pk
510 1.22 pk /* load the count in */
511 1.22 pk NCRCMD(sc, NCRCMD_NOP|NCRCMD_DMA);
512 1.22 pk
513 1.8 pk /* And get the targets attention */
514 1.8 pk NCRCMD(sc, NCRCMD_SELATN | NCRCMD_DMA);
515 1.8 pk NCRDMA_GO(sc);
516 1.8 pk return;
517 1.8 pk }
518 1.22 pk
519 1.1 thorpej /*
520 1.1 thorpej * Who am I. This is where we tell the target that we are
521 1.1 thorpej * happy for it to disconnect etc.
522 1.1 thorpej */
523 1.1 thorpej NCR_WRITE_REG(sc, NCR_FIFO,
524 1.22 pk MSG_IDENTIFY(lun, (tiflags & T_RSELECTOFF)?0:1));
525 1.1 thorpej
526 1.1 thorpej if (ti->flags & T_NEGOTIATE) {
527 1.1 thorpej /* Arbitrate, select and stop after IDENTIFY message */
528 1.1 thorpej NCRCMD(sc, NCRCMD_SELATNS);
529 1.1 thorpej return;
530 1.1 thorpej }
531 1.1 thorpej
532 1.1 thorpej /* Now the command into the FIFO */
533 1.8 pk cmd = (u_char *)&ecb->cmd.cmd;
534 1.1 thorpej clen = ecb->clen;
535 1.1 thorpej while (clen--)
536 1.1 thorpej NCR_WRITE_REG(sc, NCR_FIFO, *cmd++);
537 1.1 thorpej
538 1.1 thorpej /* And get the targets attention */
539 1.1 thorpej NCRCMD(sc, NCRCMD_SELATN);
540 1.1 thorpej }
541 1.1 thorpej
542 1.1 thorpej void
543 1.1 thorpej ncr53c9x_free_ecb(sc, ecb, flags)
544 1.1 thorpej struct ncr53c9x_softc *sc;
545 1.1 thorpej struct ncr53c9x_ecb *ecb;
546 1.1 thorpej int flags;
547 1.1 thorpej {
548 1.1 thorpej int s;
549 1.1 thorpej
550 1.1 thorpej s = splbio();
551 1.1 thorpej
552 1.1 thorpej ecb->flags = 0;
553 1.1 thorpej TAILQ_INSERT_HEAD(&sc->free_list, ecb, chain);
554 1.1 thorpej
555 1.1 thorpej /*
556 1.1 thorpej * If there were none, wake anybody waiting for one to come free,
557 1.1 thorpej * starting with queued entries.
558 1.1 thorpej */
559 1.1 thorpej if (ecb->chain.tqe_next == 0)
560 1.1 thorpej wakeup(&sc->free_list);
561 1.1 thorpej
562 1.1 thorpej splx(s);
563 1.1 thorpej }
564 1.1 thorpej
565 1.1 thorpej struct ncr53c9x_ecb *
566 1.1 thorpej ncr53c9x_get_ecb(sc, flags)
567 1.1 thorpej struct ncr53c9x_softc *sc;
568 1.1 thorpej int flags;
569 1.1 thorpej {
570 1.1 thorpej struct ncr53c9x_ecb *ecb;
571 1.1 thorpej int s;
572 1.1 thorpej
573 1.1 thorpej s = splbio();
574 1.1 thorpej
575 1.1 thorpej while ((ecb = sc->free_list.tqh_first) == NULL &&
576 1.1 thorpej (flags & SCSI_NOSLEEP) == 0)
577 1.1 thorpej tsleep(&sc->free_list, PRIBIO, "especb", 0);
578 1.1 thorpej if (ecb) {
579 1.1 thorpej TAILQ_REMOVE(&sc->free_list, ecb, chain);
580 1.1 thorpej ecb->flags |= ECB_ALLOC;
581 1.1 thorpej }
582 1.1 thorpej
583 1.1 thorpej splx(s);
584 1.25 pk return (ecb);
585 1.1 thorpej }
586 1.1 thorpej
587 1.1 thorpej /*
588 1.1 thorpej * DRIVER FUNCTIONS CALLABLE FROM HIGHER LEVEL DRIVERS
589 1.1 thorpej */
590 1.1 thorpej
591 1.1 thorpej /*
592 1.1 thorpej * Start a SCSI-command
593 1.1 thorpej * This function is called by the higher level SCSI-driver to queue/run
594 1.1 thorpej * SCSI-commands.
595 1.1 thorpej */
596 1.1 thorpej int
597 1.1 thorpej ncr53c9x_scsi_cmd(xs)
598 1.18 bouyer struct scsipi_xfer *xs;
599 1.1 thorpej {
600 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
601 1.1 thorpej struct ncr53c9x_softc *sc = sc_link->adapter_softc;
602 1.1 thorpej struct ncr53c9x_ecb *ecb;
603 1.1 thorpej int s, flags;
604 1.1 thorpej
605 1.1 thorpej NCR_TRACE(("[ncr53c9x_scsi_cmd] "));
606 1.1 thorpej NCR_CMDS(("[0x%x, %d]->%d ", (int)xs->cmd->opcode, xs->cmdlen,
607 1.18 bouyer sc_link->scsipi_scsi.target));
608 1.1 thorpej
609 1.1 thorpej flags = xs->flags;
610 1.16 pk if ((ecb = ncr53c9x_get_ecb(sc, flags)) == NULL)
611 1.25 pk return (TRY_AGAIN_LATER);
612 1.1 thorpej
613 1.1 thorpej /* Initialize ecb */
614 1.1 thorpej ecb->xs = xs;
615 1.1 thorpej ecb->timeout = xs->timeout;
616 1.1 thorpej
617 1.4 gwr if (flags & SCSI_RESET) {
618 1.1 thorpej ecb->flags |= ECB_RESET;
619 1.1 thorpej ecb->clen = 0;
620 1.1 thorpej ecb->dleft = 0;
621 1.1 thorpej } else {
622 1.8 pk bcopy(xs->cmd, &ecb->cmd.cmd, xs->cmdlen);
623 1.1 thorpej ecb->clen = xs->cmdlen;
624 1.1 thorpej ecb->daddr = xs->data;
625 1.1 thorpej ecb->dleft = xs->datalen;
626 1.1 thorpej }
627 1.1 thorpej ecb->stat = 0;
628 1.1 thorpej
629 1.1 thorpej s = splbio();
630 1.1 thorpej
631 1.1 thorpej TAILQ_INSERT_TAIL(&sc->ready_list, ecb, chain);
632 1.1 thorpej if (sc->sc_state == NCR_IDLE)
633 1.1 thorpej ncr53c9x_sched(sc);
634 1.1 thorpej
635 1.1 thorpej splx(s);
636 1.1 thorpej
637 1.1 thorpej if ((flags & SCSI_POLL) == 0)
638 1.25 pk return (SUCCESSFULLY_QUEUED);
639 1.1 thorpej
640 1.1 thorpej /* Not allowed to use interrupts, use polling instead */
641 1.1 thorpej if (ncr53c9x_poll(sc, xs, ecb->timeout)) {
642 1.1 thorpej ncr53c9x_timeout(ecb);
643 1.1 thorpej if (ncr53c9x_poll(sc, xs, ecb->timeout))
644 1.1 thorpej ncr53c9x_timeout(ecb);
645 1.1 thorpej }
646 1.25 pk return (COMPLETE);
647 1.1 thorpej }
648 1.1 thorpej
649 1.1 thorpej /*
650 1.1 thorpej * Used when interrupt driven I/O isn't allowed, e.g. during boot.
651 1.1 thorpej */
652 1.1 thorpej int
653 1.1 thorpej ncr53c9x_poll(sc, xs, count)
654 1.1 thorpej struct ncr53c9x_softc *sc;
655 1.18 bouyer struct scsipi_xfer *xs;
656 1.1 thorpej int count;
657 1.1 thorpej {
658 1.1 thorpej
659 1.1 thorpej NCR_TRACE(("[ncr53c9x_poll] "));
660 1.1 thorpej while (count) {
661 1.1 thorpej if (NCRDMA_ISINTR(sc)) {
662 1.1 thorpej ncr53c9x_intr(sc);
663 1.1 thorpej }
664 1.1 thorpej #if alternatively
665 1.1 thorpej if (NCR_READ_REG(sc, NCR_STAT) & NCRSTAT_INT)
666 1.1 thorpej ncr53c9x_intr(sc);
667 1.1 thorpej #endif
668 1.1 thorpej if ((xs->flags & ITSDONE) != 0)
669 1.25 pk return (0);
670 1.1 thorpej if (sc->sc_state == NCR_IDLE) {
671 1.1 thorpej NCR_TRACE(("[ncr53c9x_poll: rescheduling] "));
672 1.1 thorpej ncr53c9x_sched(sc);
673 1.1 thorpej }
674 1.1 thorpej DELAY(1000);
675 1.1 thorpej count--;
676 1.1 thorpej }
677 1.25 pk return (1);
678 1.1 thorpej }
679 1.1 thorpej
680 1.1 thorpej
681 1.1 thorpej /*
682 1.1 thorpej * LOW LEVEL SCSI UTILITIES
683 1.1 thorpej */
684 1.1 thorpej
685 1.1 thorpej /*
686 1.1 thorpej * Schedule a scsi operation. This has now been pulled out of the interrupt
687 1.1 thorpej * handler so that we may call it from ncr53c9x_scsi_cmd and ncr53c9x_done.
688 1.1 thorpej * This may save us an unecessary interrupt just to get things going.
689 1.1 thorpej * Should only be called when state == NCR_IDLE and at bio pl.
690 1.1 thorpej */
691 1.1 thorpej void
692 1.1 thorpej ncr53c9x_sched(sc)
693 1.1 thorpej struct ncr53c9x_softc *sc;
694 1.1 thorpej {
695 1.1 thorpej struct ncr53c9x_ecb *ecb;
696 1.18 bouyer struct scsipi_link *sc_link;
697 1.1 thorpej struct ncr53c9x_tinfo *ti;
698 1.1 thorpej
699 1.1 thorpej NCR_TRACE(("[ncr53c9x_sched] "));
700 1.1 thorpej if (sc->sc_state != NCR_IDLE)
701 1.1 thorpej panic("ncr53c9x_sched: not IDLE (state=%d)", sc->sc_state);
702 1.1 thorpej
703 1.1 thorpej /*
704 1.1 thorpej * Find first ecb in ready queue that is for a target/lunit
705 1.1 thorpej * combinations that is not busy.
706 1.1 thorpej */
707 1.1 thorpej for (ecb = sc->ready_list.tqh_first; ecb; ecb = ecb->chain.tqe_next) {
708 1.1 thorpej sc_link = ecb->xs->sc_link;
709 1.18 bouyer ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
710 1.18 bouyer if ((ti->lubusy & (1 << sc_link->scsipi_scsi.lun)) == 0) {
711 1.1 thorpej TAILQ_REMOVE(&sc->ready_list, ecb, chain);
712 1.1 thorpej sc->sc_nexus = ecb;
713 1.1 thorpej ncr53c9x_select(sc, ecb);
714 1.1 thorpej break;
715 1.1 thorpej } else
716 1.1 thorpej NCR_MISC(("%d:%d busy\n",
717 1.22 pk sc_link->scsipi_scsi.target,
718 1.22 pk sc_link->scsipi_scsi.lun));
719 1.1 thorpej }
720 1.1 thorpej }
721 1.1 thorpej
722 1.1 thorpej void
723 1.1 thorpej ncr53c9x_sense(sc, ecb)
724 1.1 thorpej struct ncr53c9x_softc *sc;
725 1.1 thorpej struct ncr53c9x_ecb *ecb;
726 1.1 thorpej {
727 1.18 bouyer struct scsipi_xfer *xs = ecb->xs;
728 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
729 1.18 bouyer struct ncr53c9x_tinfo *ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
730 1.18 bouyer struct scsipi_sense *ss = (void *)&ecb->cmd.cmd;
731 1.1 thorpej
732 1.1 thorpej NCR_MISC(("requesting sense "));
733 1.1 thorpej /* Next, setup a request sense command block */
734 1.1 thorpej bzero(ss, sizeof(*ss));
735 1.1 thorpej ss->opcode = REQUEST_SENSE;
736 1.18 bouyer ss->byte2 = sc_link->scsipi_scsi.lun << 5;
737 1.18 bouyer ss->length = sizeof(struct scsipi_sense_data);
738 1.1 thorpej ecb->clen = sizeof(*ss);
739 1.18 bouyer ecb->daddr = (char *)&xs->sense.scsi_sense;
740 1.18 bouyer ecb->dleft = sizeof(struct scsipi_sense_data);
741 1.1 thorpej ecb->flags |= ECB_SENSE;
742 1.7 gwr ecb->timeout = NCR_SENSE_TIMEOUT;
743 1.1 thorpej ti->senses++;
744 1.1 thorpej if (ecb->flags & ECB_NEXUS)
745 1.18 bouyer ti->lubusy &= ~(1 << sc_link->scsipi_scsi.lun);
746 1.1 thorpej if (ecb == sc->sc_nexus) {
747 1.23 pk ecb->flags &= ~ECB_NEXUS;
748 1.1 thorpej ncr53c9x_select(sc, ecb);
749 1.1 thorpej } else {
750 1.1 thorpej ncr53c9x_dequeue(sc, ecb);
751 1.1 thorpej TAILQ_INSERT_HEAD(&sc->ready_list, ecb, chain);
752 1.1 thorpej if (sc->sc_state == NCR_IDLE)
753 1.1 thorpej ncr53c9x_sched(sc);
754 1.1 thorpej }
755 1.1 thorpej }
756 1.1 thorpej
757 1.1 thorpej /*
758 1.1 thorpej * POST PROCESSING OF SCSI_CMD (usually current)
759 1.1 thorpej */
760 1.1 thorpej void
761 1.1 thorpej ncr53c9x_done(sc, ecb)
762 1.1 thorpej struct ncr53c9x_softc *sc;
763 1.1 thorpej struct ncr53c9x_ecb *ecb;
764 1.1 thorpej {
765 1.18 bouyer struct scsipi_xfer *xs = ecb->xs;
766 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
767 1.18 bouyer struct ncr53c9x_tinfo *ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
768 1.1 thorpej
769 1.1 thorpej NCR_TRACE(("[ncr53c9x_done(error:%x)] ", xs->error));
770 1.1 thorpej
771 1.7 gwr untimeout(ncr53c9x_timeout, ecb);
772 1.7 gwr
773 1.1 thorpej /*
774 1.1 thorpej * Now, if we've come here with no error code, i.e. we've kept the
775 1.1 thorpej * initial XS_NOERROR, and the status code signals that we should
776 1.1 thorpej * check sense, we'll need to set up a request sense cmd block and
777 1.1 thorpej * push the command back into the ready queue *before* any other
778 1.1 thorpej * commands for this target/lunit, else we lose the sense info.
779 1.1 thorpej * We don't support chk sense conditions for the request sense cmd.
780 1.1 thorpej */
781 1.1 thorpej if (xs->error == XS_NOERROR) {
782 1.12 pk xs->status = ecb->stat;
783 1.1 thorpej if ((ecb->flags & ECB_ABORT) != 0) {
784 1.16 pk xs->error = XS_TIMEOUT;
785 1.1 thorpej } else if ((ecb->flags & ECB_SENSE) != 0) {
786 1.1 thorpej xs->error = XS_SENSE;
787 1.1 thorpej } else if ((ecb->stat & ST_MASK) == SCSI_CHECK) {
788 1.1 thorpej /* First, save the return values */
789 1.1 thorpej xs->resid = ecb->dleft;
790 1.1 thorpej ncr53c9x_sense(sc, ecb);
791 1.1 thorpej return;
792 1.1 thorpej } else {
793 1.1 thorpej xs->resid = ecb->dleft;
794 1.1 thorpej }
795 1.1 thorpej }
796 1.1 thorpej
797 1.1 thorpej xs->flags |= ITSDONE;
798 1.1 thorpej
799 1.1 thorpej #ifdef NCR53C9X_DEBUG
800 1.1 thorpej if (ncr53c9x_debug & NCR_SHOWMISC) {
801 1.1 thorpej if (xs->resid != 0)
802 1.1 thorpej printf("resid=%d ", xs->resid);
803 1.1 thorpej if (xs->error == XS_SENSE)
804 1.18 bouyer printf("sense=0x%02x\n", xs->sense.scsi_sense.error_code);
805 1.1 thorpej else
806 1.1 thorpej printf("error=%d\n", xs->error);
807 1.1 thorpej }
808 1.1 thorpej #endif
809 1.1 thorpej
810 1.1 thorpej /*
811 1.1 thorpej * Remove the ECB from whatever queue it's on.
812 1.1 thorpej */
813 1.1 thorpej if (ecb->flags & ECB_NEXUS)
814 1.18 bouyer ti->lubusy &= ~(1 << sc_link->scsipi_scsi.lun);
815 1.1 thorpej if (ecb == sc->sc_nexus) {
816 1.1 thorpej sc->sc_nexus = NULL;
817 1.15 pk if (sc->sc_state != NCR_CLEANING) {
818 1.15 pk sc->sc_state = NCR_IDLE;
819 1.15 pk ncr53c9x_sched(sc);
820 1.15 pk }
821 1.1 thorpej } else
822 1.1 thorpej ncr53c9x_dequeue(sc, ecb);
823 1.1 thorpej
824 1.1 thorpej ncr53c9x_free_ecb(sc, ecb, xs->flags);
825 1.1 thorpej ti->cmds++;
826 1.18 bouyer scsipi_done(xs);
827 1.1 thorpej }
828 1.1 thorpej
829 1.1 thorpej void
830 1.1 thorpej ncr53c9x_dequeue(sc, ecb)
831 1.1 thorpej struct ncr53c9x_softc *sc;
832 1.1 thorpej struct ncr53c9x_ecb *ecb;
833 1.1 thorpej {
834 1.1 thorpej
835 1.1 thorpej if (ecb->flags & ECB_NEXUS) {
836 1.1 thorpej TAILQ_REMOVE(&sc->nexus_list, ecb, chain);
837 1.23 pk ecb->flags &= ~ECB_NEXUS;
838 1.1 thorpej } else {
839 1.1 thorpej TAILQ_REMOVE(&sc->ready_list, ecb, chain);
840 1.1 thorpej }
841 1.1 thorpej }
842 1.1 thorpej
843 1.1 thorpej /*
844 1.1 thorpej * INTERRUPT/PROTOCOL ENGINE
845 1.1 thorpej */
846 1.1 thorpej
847 1.1 thorpej /*
848 1.1 thorpej * Schedule an outgoing message by prioritizing it, and asserting
849 1.1 thorpej * attention on the bus. We can only do this when we are the initiator
850 1.1 thorpej * else there will be an illegal command interrupt.
851 1.1 thorpej */
852 1.1 thorpej #define ncr53c9x_sched_msgout(m) \
853 1.1 thorpej do { \
854 1.1 thorpej NCR_MISC(("ncr53c9x_sched_msgout %d ", m)); \
855 1.1 thorpej NCRCMD(sc, NCRCMD_SETATN); \
856 1.1 thorpej sc->sc_flags |= NCR_ATN; \
857 1.1 thorpej sc->sc_msgpriq |= (m); \
858 1.1 thorpej } while (0)
859 1.1 thorpej
860 1.1 thorpej int
861 1.1 thorpej ncr53c9x_reselect(sc, message)
862 1.1 thorpej struct ncr53c9x_softc *sc;
863 1.1 thorpej int message;
864 1.1 thorpej {
865 1.1 thorpej u_char selid, target, lun;
866 1.1 thorpej struct ncr53c9x_ecb *ecb;
867 1.18 bouyer struct scsipi_link *sc_link;
868 1.1 thorpej struct ncr53c9x_tinfo *ti;
869 1.1 thorpej
870 1.1 thorpej /*
871 1.1 thorpej * The SCSI chip made a snapshot of the data bus while the reselection
872 1.1 thorpej * was being negotiated. This enables us to determine which target did
873 1.1 thorpej * the reselect.
874 1.1 thorpej */
875 1.1 thorpej selid = sc->sc_selid & ~(1 << sc->sc_id);
876 1.1 thorpej if (selid & (selid - 1)) {
877 1.1 thorpej printf("%s: reselect with invalid selid %02x;"
878 1.1 thorpej " sending DEVICE RESET\n", sc->sc_dev.dv_xname, selid);
879 1.1 thorpej goto reset;
880 1.1 thorpej }
881 1.1 thorpej
882 1.1 thorpej /*
883 1.1 thorpej * Search wait queue for disconnected cmd
884 1.1 thorpej * The list should be short, so I haven't bothered with
885 1.1 thorpej * any more sophisticated structures than a simple
886 1.1 thorpej * singly linked list.
887 1.1 thorpej */
888 1.1 thorpej target = ffs(selid) - 1;
889 1.1 thorpej lun = message & 0x07;
890 1.1 thorpej for (ecb = sc->nexus_list.tqh_first; ecb != NULL;
891 1.1 thorpej ecb = ecb->chain.tqe_next) {
892 1.1 thorpej sc_link = ecb->xs->sc_link;
893 1.23 pk if (sc_link->scsipi_scsi.target == target &&
894 1.23 pk sc_link->scsipi_scsi.lun == lun)
895 1.1 thorpej break;
896 1.1 thorpej }
897 1.1 thorpej if (ecb == NULL) {
898 1.1 thorpej printf("%s: reselect from target %d lun %d with no nexus;"
899 1.1 thorpej " sending ABORT\n", sc->sc_dev.dv_xname, target, lun);
900 1.1 thorpej goto abort;
901 1.1 thorpej }
902 1.1 thorpej
903 1.1 thorpej /* Make this nexus active again. */
904 1.1 thorpej TAILQ_REMOVE(&sc->nexus_list, ecb, chain);
905 1.1 thorpej sc->sc_state = NCR_CONNECTED;
906 1.1 thorpej sc->sc_nexus = ecb;
907 1.1 thorpej ti = &sc->sc_tinfo[target];
908 1.23 pk #ifdef NCR53C9X_DEBUG
909 1.23 pk if ((ti->lubusy & (1 << lun)) == 0) {
910 1.23 pk printf("%s: reselect: target %d, lun %d: should be busy\n",
911 1.23 pk sc->sc_dev.dv_xname, target, lun);
912 1.23 pk ti->lubusy |= (1 << lun);
913 1.23 pk }
914 1.23 pk #endif
915 1.1 thorpej ncr53c9x_setsync(sc, ti);
916 1.1 thorpej
917 1.1 thorpej if (ecb->flags & ECB_RESET)
918 1.1 thorpej ncr53c9x_sched_msgout(SEND_DEV_RESET);
919 1.1 thorpej else if (ecb->flags & ECB_ABORT)
920 1.1 thorpej ncr53c9x_sched_msgout(SEND_ABORT);
921 1.1 thorpej
922 1.1 thorpej /* Do an implicit RESTORE POINTERS. */
923 1.1 thorpej sc->sc_dp = ecb->daddr;
924 1.1 thorpej sc->sc_dleft = ecb->dleft;
925 1.1 thorpej
926 1.1 thorpej return (0);
927 1.1 thorpej
928 1.1 thorpej reset:
929 1.1 thorpej ncr53c9x_sched_msgout(SEND_DEV_RESET);
930 1.1 thorpej return (1);
931 1.1 thorpej
932 1.1 thorpej abort:
933 1.1 thorpej ncr53c9x_sched_msgout(SEND_ABORT);
934 1.1 thorpej return (1);
935 1.1 thorpej }
936 1.1 thorpej
937 1.1 thorpej #define IS1BYTEMSG(m) (((m) != 1 && (m) < 0x20) || (m) & 0x80)
938 1.1 thorpej #define IS2BYTEMSG(m) (((m) & 0xf0) == 0x20)
939 1.1 thorpej #define ISEXTMSG(m) ((m) == 1)
940 1.1 thorpej
941 1.1 thorpej /*
942 1.1 thorpej * Get an incoming message as initiator.
943 1.1 thorpej *
944 1.1 thorpej * The SCSI bus must already be in MESSAGE_IN_PHASE and there is a
945 1.1 thorpej * byte in the FIFO
946 1.1 thorpej */
947 1.1 thorpej void
948 1.1 thorpej ncr53c9x_msgin(sc)
949 1.1 thorpej register struct ncr53c9x_softc *sc;
950 1.1 thorpej {
951 1.1 thorpej register int v;
952 1.1 thorpej
953 1.1 thorpej NCR_TRACE(("[ncr53c9x_msgin(curmsglen:%ld)] ", (long)sc->sc_imlen));
954 1.1 thorpej
955 1.1 thorpej if ((NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) == 0) {
956 1.1 thorpej printf("%s: msgin: no msg byte available\n",
957 1.1 thorpej sc->sc_dev.dv_xname);
958 1.1 thorpej return;
959 1.1 thorpej }
960 1.1 thorpej
961 1.1 thorpej /*
962 1.1 thorpej * Prepare for a new message. A message should (according
963 1.1 thorpej * to the SCSI standard) be transmitted in one single
964 1.1 thorpej * MESSAGE_IN_PHASE. If we have been in some other phase,
965 1.1 thorpej * then this is a new message.
966 1.1 thorpej */
967 1.1 thorpej if (sc->sc_prevphase != MESSAGE_IN_PHASE) {
968 1.1 thorpej sc->sc_flags &= ~NCR_DROP_MSGI;
969 1.1 thorpej sc->sc_imlen = 0;
970 1.1 thorpej }
971 1.1 thorpej
972 1.1 thorpej v = NCR_READ_REG(sc, NCR_FIFO);
973 1.1 thorpej NCR_MISC(("<msgbyte:0x%02x>", v));
974 1.1 thorpej
975 1.1 thorpej #if 0
976 1.1 thorpej if (sc->sc_state == NCR_RESELECTED && sc->sc_imlen == 0) {
977 1.1 thorpej /*
978 1.1 thorpej * Which target is reselecting us? (The ID bit really)
979 1.1 thorpej */
980 1.1 thorpej sc->sc_selid = v;
981 1.1 thorpej NCR_MISC(("selid=0x%2x ", sc->sc_selid));
982 1.1 thorpej return;
983 1.1 thorpej }
984 1.1 thorpej #endif
985 1.1 thorpej
986 1.1 thorpej sc->sc_imess[sc->sc_imlen] = v;
987 1.1 thorpej
988 1.1 thorpej /*
989 1.1 thorpej * If we're going to reject the message, don't bother storing
990 1.1 thorpej * the incoming bytes. But still, we need to ACK them.
991 1.1 thorpej */
992 1.1 thorpej
993 1.1 thorpej if ((sc->sc_flags & NCR_DROP_MSGI)) {
994 1.1 thorpej NCRCMD(sc, NCRCMD_MSGOK);
995 1.1 thorpej printf("<dropping msg byte %x>",
996 1.1 thorpej sc->sc_imess[sc->sc_imlen]);
997 1.1 thorpej return;
998 1.1 thorpej }
999 1.1 thorpej
1000 1.1 thorpej if (sc->sc_imlen >= NCR_MAX_MSG_LEN) {
1001 1.1 thorpej ncr53c9x_sched_msgout(SEND_REJECT);
1002 1.1 thorpej sc->sc_flags |= NCR_DROP_MSGI;
1003 1.1 thorpej } else {
1004 1.1 thorpej sc->sc_imlen++;
1005 1.1 thorpej /*
1006 1.1 thorpej * This testing is suboptimal, but most
1007 1.1 thorpej * messages will be of the one byte variety, so
1008 1.1 thorpej * it should not effect performance
1009 1.1 thorpej * significantly.
1010 1.1 thorpej */
1011 1.1 thorpej if (sc->sc_imlen == 1 && IS1BYTEMSG(sc->sc_imess[0]))
1012 1.1 thorpej goto gotit;
1013 1.1 thorpej if (sc->sc_imlen == 2 && IS2BYTEMSG(sc->sc_imess[0]))
1014 1.1 thorpej goto gotit;
1015 1.1 thorpej if (sc->sc_imlen >= 3 && ISEXTMSG(sc->sc_imess[0]) &&
1016 1.1 thorpej sc->sc_imlen == sc->sc_imess[1] + 2)
1017 1.1 thorpej goto gotit;
1018 1.1 thorpej }
1019 1.1 thorpej /* Ack what we have so far */
1020 1.1 thorpej NCRCMD(sc, NCRCMD_MSGOK);
1021 1.1 thorpej return;
1022 1.1 thorpej
1023 1.1 thorpej gotit:
1024 1.1 thorpej NCR_MSGS(("gotmsg(%x)", sc->sc_imess[0]));
1025 1.1 thorpej /*
1026 1.1 thorpej * Now we should have a complete message (1 byte, 2 byte
1027 1.1 thorpej * and moderately long extended messages). We only handle
1028 1.1 thorpej * extended messages which total length is shorter than
1029 1.1 thorpej * NCR_MAX_MSG_LEN. Longer messages will be amputated.
1030 1.1 thorpej */
1031 1.1 thorpej switch (sc->sc_state) {
1032 1.1 thorpej struct ncr53c9x_ecb *ecb;
1033 1.1 thorpej struct ncr53c9x_tinfo *ti;
1034 1.1 thorpej
1035 1.1 thorpej case NCR_CONNECTED:
1036 1.1 thorpej ecb = sc->sc_nexus;
1037 1.18 bouyer ti = &sc->sc_tinfo[ecb->xs->sc_link->scsipi_scsi.target];
1038 1.1 thorpej
1039 1.1 thorpej switch (sc->sc_imess[0]) {
1040 1.1 thorpej case MSG_CMDCOMPLETE:
1041 1.1 thorpej NCR_MSGS(("cmdcomplete "));
1042 1.1 thorpej if (sc->sc_dleft < 0) {
1043 1.18 bouyer struct scsipi_link *sc_link = ecb->xs->sc_link;
1044 1.1 thorpej printf("%s: %ld extra bytes from %d:%d\n",
1045 1.1 thorpej sc->sc_dev.dv_xname, -(long)sc->sc_dleft,
1046 1.18 bouyer sc_link->scsipi_scsi.target, sc_link->scsipi_scsi.lun);
1047 1.1 thorpej sc->sc_dleft = 0;
1048 1.1 thorpej }
1049 1.13 pk ecb->dleft = (ecb->flags & ECB_TENTATIVE_DONE)
1050 1.13 pk ? 0
1051 1.13 pk : sc->sc_dleft;
1052 1.13 pk if ((ecb->flags & ECB_SENSE) == 0)
1053 1.13 pk ecb->xs->resid = ecb->dleft;
1054 1.1 thorpej sc->sc_state = NCR_CMDCOMPLETE;
1055 1.1 thorpej break;
1056 1.1 thorpej
1057 1.1 thorpej case MSG_MESSAGE_REJECT:
1058 1.23 pk NCR_MSGS(("msg reject (msgout=%x) ", sc->sc_msgout));
1059 1.1 thorpej switch (sc->sc_msgout) {
1060 1.1 thorpej case SEND_SDTR:
1061 1.1 thorpej sc->sc_flags &= ~NCR_SYNCHNEGO;
1062 1.1 thorpej ti->flags &= ~(T_NEGOTIATE | T_SYNCMODE);
1063 1.1 thorpej ncr53c9x_setsync(sc, ti);
1064 1.1 thorpej break;
1065 1.1 thorpej case SEND_INIT_DET_ERR:
1066 1.1 thorpej goto abort;
1067 1.1 thorpej }
1068 1.1 thorpej break;
1069 1.1 thorpej
1070 1.1 thorpej case MSG_NOOP:
1071 1.1 thorpej NCR_MSGS(("noop "));
1072 1.1 thorpej break;
1073 1.1 thorpej
1074 1.1 thorpej case MSG_DISCONNECT:
1075 1.1 thorpej NCR_MSGS(("disconnect "));
1076 1.1 thorpej ti->dconns++;
1077 1.1 thorpej sc->sc_state = NCR_DISCONNECT;
1078 1.8 pk
1079 1.13 pk /*
1080 1.13 pk * Mark the fact that all bytes have moved. The
1081 1.13 pk * target may not bother to do a SAVE POINTERS
1082 1.13 pk * at this stage. This flag will set the residual
1083 1.13 pk * count to zero on MSG COMPLETE.
1084 1.13 pk */
1085 1.13 pk if (sc->sc_dleft == 0)
1086 1.13 pk ecb->flags |= ECB_TENTATIVE_DONE;
1087 1.13 pk
1088 1.13 pk break;
1089 1.1 thorpej
1090 1.1 thorpej case MSG_SAVEDATAPOINTER:
1091 1.1 thorpej NCR_MSGS(("save datapointer "));
1092 1.1 thorpej ecb->daddr = sc->sc_dp;
1093 1.1 thorpej ecb->dleft = sc->sc_dleft;
1094 1.1 thorpej break;
1095 1.1 thorpej
1096 1.1 thorpej case MSG_RESTOREPOINTERS:
1097 1.1 thorpej NCR_MSGS(("restore datapointer "));
1098 1.1 thorpej sc->sc_dp = ecb->daddr;
1099 1.1 thorpej sc->sc_dleft = ecb->dleft;
1100 1.1 thorpej break;
1101 1.1 thorpej
1102 1.1 thorpej case MSG_EXTENDED:
1103 1.1 thorpej NCR_MSGS(("extended(%x) ", sc->sc_imess[2]));
1104 1.1 thorpej switch (sc->sc_imess[2]) {
1105 1.1 thorpej case MSG_EXT_SDTR:
1106 1.1 thorpej NCR_MSGS(("SDTR period %d, offset %d ",
1107 1.1 thorpej sc->sc_imess[3], sc->sc_imess[4]));
1108 1.1 thorpej if (sc->sc_imess[1] != 3)
1109 1.1 thorpej goto reject;
1110 1.1 thorpej ti->period = sc->sc_imess[3];
1111 1.1 thorpej ti->offset = sc->sc_imess[4];
1112 1.1 thorpej ti->flags &= ~T_NEGOTIATE;
1113 1.1 thorpej if (sc->sc_minsync == 0 ||
1114 1.1 thorpej ti->offset == 0 ||
1115 1.1 thorpej ti->period > 124) {
1116 1.1 thorpej printf("%s:%d: async\n", "esp",
1117 1.18 bouyer ecb->xs->sc_link->scsipi_scsi.target);
1118 1.1 thorpej if ((sc->sc_flags&NCR_SYNCHNEGO)
1119 1.1 thorpej == 0) {
1120 1.1 thorpej /*
1121 1.1 thorpej * target initiated negotiation
1122 1.1 thorpej */
1123 1.1 thorpej ti->offset = 0;
1124 1.1 thorpej ti->flags &= ~T_SYNCMODE;
1125 1.1 thorpej ncr53c9x_sched_msgout(
1126 1.1 thorpej SEND_SDTR);
1127 1.1 thorpej } else {
1128 1.1 thorpej /* we are async */
1129 1.1 thorpej ti->flags &= ~T_SYNCMODE;
1130 1.1 thorpej }
1131 1.1 thorpej } else {
1132 1.1 thorpej int r = 250/ti->period;
1133 1.1 thorpej int s = (100*250)/ti->period - 100*r;
1134 1.1 thorpej int p;
1135 1.1 thorpej
1136 1.1 thorpej p = ncr53c9x_stp2cpb(sc, ti->period);
1137 1.1 thorpej ti->period = ncr53c9x_cpb2stp(sc, p);
1138 1.1 thorpej #ifdef NCR53C9X_DEBUG
1139 1.18 bouyer scsi_print_addr(ecb->xs->sc_link);
1140 1.18 bouyer printf("max sync rate %d.%02dMb/s\n",
1141 1.1 thorpej r, s);
1142 1.1 thorpej #endif
1143 1.22 pk if ((sc->sc_flags&NCR_SYNCHNEGO) == 0) {
1144 1.1 thorpej /*
1145 1.1 thorpej * target initiated negotiation
1146 1.1 thorpej */
1147 1.1 thorpej if (ti->period <
1148 1.1 thorpej sc->sc_minsync)
1149 1.1 thorpej ti->period =
1150 1.1 thorpej sc->sc_minsync;
1151 1.1 thorpej if (ti->offset > 15)
1152 1.1 thorpej ti->offset = 15;
1153 1.1 thorpej ti->flags &= ~T_SYNCMODE;
1154 1.1 thorpej ncr53c9x_sched_msgout(
1155 1.1 thorpej SEND_SDTR);
1156 1.1 thorpej } else {
1157 1.1 thorpej /* we are sync */
1158 1.1 thorpej ti->flags |= T_SYNCMODE;
1159 1.1 thorpej }
1160 1.1 thorpej }
1161 1.1 thorpej sc->sc_flags &= ~NCR_SYNCHNEGO;
1162 1.1 thorpej ncr53c9x_setsync(sc, ti);
1163 1.1 thorpej break;
1164 1.1 thorpej
1165 1.1 thorpej default:
1166 1.1 thorpej printf("%s: unrecognized MESSAGE EXTENDED;"
1167 1.1 thorpej " sending REJECT\n", sc->sc_dev.dv_xname);
1168 1.1 thorpej goto reject;
1169 1.1 thorpej }
1170 1.1 thorpej break;
1171 1.1 thorpej
1172 1.1 thorpej default:
1173 1.1 thorpej NCR_MSGS(("ident "));
1174 1.1 thorpej printf("%s: unrecognized MESSAGE; sending REJECT\n",
1175 1.1 thorpej sc->sc_dev.dv_xname);
1176 1.1 thorpej reject:
1177 1.1 thorpej ncr53c9x_sched_msgout(SEND_REJECT);
1178 1.1 thorpej break;
1179 1.1 thorpej }
1180 1.1 thorpej break;
1181 1.1 thorpej
1182 1.1 thorpej case NCR_RESELECTED:
1183 1.1 thorpej if (!MSG_ISIDENTIFY(sc->sc_imess[0])) {
1184 1.1 thorpej printf("%s: reselect without IDENTIFY;"
1185 1.1 thorpej " sending DEVICE RESET\n", sc->sc_dev.dv_xname);
1186 1.1 thorpej goto reset;
1187 1.1 thorpej }
1188 1.1 thorpej
1189 1.1 thorpej (void) ncr53c9x_reselect(sc, sc->sc_imess[0]);
1190 1.1 thorpej break;
1191 1.1 thorpej
1192 1.1 thorpej default:
1193 1.1 thorpej printf("%s: unexpected MESSAGE IN; sending DEVICE RESET\n",
1194 1.1 thorpej sc->sc_dev.dv_xname);
1195 1.1 thorpej reset:
1196 1.1 thorpej ncr53c9x_sched_msgout(SEND_DEV_RESET);
1197 1.1 thorpej break;
1198 1.1 thorpej
1199 1.1 thorpej abort:
1200 1.1 thorpej ncr53c9x_sched_msgout(SEND_ABORT);
1201 1.1 thorpej break;
1202 1.1 thorpej }
1203 1.1 thorpej
1204 1.1 thorpej /* Ack last message byte */
1205 1.1 thorpej NCRCMD(sc, NCRCMD_MSGOK);
1206 1.1 thorpej
1207 1.1 thorpej /* Done, reset message pointer. */
1208 1.1 thorpej sc->sc_flags &= ~NCR_DROP_MSGI;
1209 1.1 thorpej sc->sc_imlen = 0;
1210 1.1 thorpej }
1211 1.1 thorpej
1212 1.1 thorpej
1213 1.1 thorpej /*
1214 1.1 thorpej * Send the highest priority, scheduled message
1215 1.1 thorpej */
1216 1.1 thorpej void
1217 1.1 thorpej ncr53c9x_msgout(sc)
1218 1.1 thorpej register struct ncr53c9x_softc *sc;
1219 1.1 thorpej {
1220 1.1 thorpej struct ncr53c9x_tinfo *ti;
1221 1.1 thorpej struct ncr53c9x_ecb *ecb;
1222 1.1 thorpej size_t size;
1223 1.1 thorpej
1224 1.1 thorpej NCR_TRACE(("[ncr53c9x_msgout(priq:%x, prevphase:%x)]",
1225 1.1 thorpej sc->sc_msgpriq, sc->sc_prevphase));
1226 1.1 thorpej
1227 1.22 pk /*
1228 1.22 pk * XXX - the NCR_ATN flag is not in sync with the actual ATN
1229 1.22 pk * condition on the SCSI bus. The 53c9x chip
1230 1.22 pk * automatically turns off ATN before sending the
1231 1.22 pk * message byte. (see also the comment below in the
1232 1.22 pk * default case when picking out a message to send)
1233 1.22 pk */
1234 1.1 thorpej if (sc->sc_flags & NCR_ATN) {
1235 1.1 thorpej if (sc->sc_prevphase != MESSAGE_OUT_PHASE) {
1236 1.1 thorpej new:
1237 1.1 thorpej NCRCMD(sc, NCRCMD_FLUSH);
1238 1.1 thorpej DELAY(1);
1239 1.1 thorpej sc->sc_msgoutq = 0;
1240 1.1 thorpej sc->sc_omlen = 0;
1241 1.1 thorpej }
1242 1.1 thorpej } else {
1243 1.1 thorpej if (sc->sc_prevphase == MESSAGE_OUT_PHASE) {
1244 1.1 thorpej ncr53c9x_sched_msgout(sc->sc_msgoutq);
1245 1.1 thorpej goto new;
1246 1.1 thorpej } else {
1247 1.1 thorpej printf("%s at line %d: unexpected MESSAGE OUT phase\n",
1248 1.1 thorpej sc->sc_dev.dv_xname, __LINE__);
1249 1.1 thorpej }
1250 1.1 thorpej }
1251 1.1 thorpej
1252 1.1 thorpej if (sc->sc_omlen == 0) {
1253 1.1 thorpej /* Pick up highest priority message */
1254 1.1 thorpej sc->sc_msgout = sc->sc_msgpriq & -sc->sc_msgpriq;
1255 1.1 thorpej sc->sc_msgoutq |= sc->sc_msgout;
1256 1.1 thorpej sc->sc_msgpriq &= ~sc->sc_msgout;
1257 1.1 thorpej sc->sc_omlen = 1; /* "Default" message len */
1258 1.1 thorpej switch (sc->sc_msgout) {
1259 1.1 thorpej case SEND_SDTR:
1260 1.1 thorpej ecb = sc->sc_nexus;
1261 1.18 bouyer ti = &sc->sc_tinfo[ecb->xs->sc_link->scsipi_scsi.target];
1262 1.1 thorpej sc->sc_omess[0] = MSG_EXTENDED;
1263 1.1 thorpej sc->sc_omess[1] = 3;
1264 1.1 thorpej sc->sc_omess[2] = MSG_EXT_SDTR;
1265 1.1 thorpej sc->sc_omess[3] = ti->period;
1266 1.1 thorpej sc->sc_omess[4] = ti->offset;
1267 1.1 thorpej sc->sc_omlen = 5;
1268 1.1 thorpej if ((sc->sc_flags & NCR_SYNCHNEGO) == 0) {
1269 1.1 thorpej ti->flags |= T_SYNCMODE;
1270 1.1 thorpej ncr53c9x_setsync(sc, ti);
1271 1.1 thorpej }
1272 1.1 thorpej break;
1273 1.1 thorpej case SEND_IDENTIFY:
1274 1.1 thorpej if (sc->sc_state != NCR_CONNECTED) {
1275 1.1 thorpej printf("%s at line %d: no nexus\n",
1276 1.1 thorpej sc->sc_dev.dv_xname, __LINE__);
1277 1.1 thorpej }
1278 1.1 thorpej ecb = sc->sc_nexus;
1279 1.1 thorpej sc->sc_omess[0] =
1280 1.18 bouyer MSG_IDENTIFY(ecb->xs->sc_link->scsipi_scsi.lun, 0);
1281 1.1 thorpej break;
1282 1.1 thorpej case SEND_DEV_RESET:
1283 1.1 thorpej sc->sc_flags |= NCR_ABORTING;
1284 1.1 thorpej sc->sc_omess[0] = MSG_BUS_DEV_RESET;
1285 1.1 thorpej ecb = sc->sc_nexus;
1286 1.18 bouyer ti = &sc->sc_tinfo[ecb->xs->sc_link->scsipi_scsi.target];
1287 1.1 thorpej ti->flags &= ~T_SYNCMODE;
1288 1.1 thorpej ti->flags |= T_NEGOTIATE;
1289 1.1 thorpej break;
1290 1.1 thorpej case SEND_PARITY_ERROR:
1291 1.1 thorpej sc->sc_omess[0] = MSG_PARITY_ERROR;
1292 1.1 thorpej break;
1293 1.1 thorpej case SEND_ABORT:
1294 1.1 thorpej sc->sc_flags |= NCR_ABORTING;
1295 1.1 thorpej sc->sc_omess[0] = MSG_ABORT;
1296 1.1 thorpej break;
1297 1.1 thorpej case SEND_INIT_DET_ERR:
1298 1.1 thorpej sc->sc_omess[0] = MSG_INITIATOR_DET_ERR;
1299 1.1 thorpej break;
1300 1.1 thorpej case SEND_REJECT:
1301 1.1 thorpej sc->sc_omess[0] = MSG_MESSAGE_REJECT;
1302 1.1 thorpej break;
1303 1.1 thorpej default:
1304 1.22 pk /*
1305 1.22 pk * We normally do not get here, since the chip
1306 1.22 pk * automatically turns off ATN before the last
1307 1.22 pk * byte of a message is sent to the target.
1308 1.22 pk * However, if the target rejects our (multi-byte)
1309 1.22 pk * message early by switching to MSG IN phase
1310 1.22 pk * ATN remains on, so the target may return to
1311 1.22 pk * MSG OUT phase. If there are no scheduled messages
1312 1.22 pk * left we send a NO-OP.
1313 1.22 pk *
1314 1.22 pk * XXX - Note that this leaves no useful purpose for
1315 1.22 pk * the NCR_ATN flag.
1316 1.22 pk */
1317 1.1 thorpej sc->sc_flags &= ~NCR_ATN;
1318 1.1 thorpej sc->sc_omess[0] = MSG_NOOP;
1319 1.1 thorpej break;
1320 1.1 thorpej }
1321 1.1 thorpej sc->sc_omp = sc->sc_omess;
1322 1.1 thorpej }
1323 1.1 thorpej
1324 1.1 thorpej /* (re)send the message */
1325 1.1 thorpej size = min(sc->sc_omlen, sc->sc_maxxfer);
1326 1.1 thorpej NCRDMA_SETUP(sc, &sc->sc_omp, &sc->sc_omlen, 0, &size);
1327 1.1 thorpej /* Program the SCSI counter */
1328 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCL, size);
1329 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCM, size >> 8);
1330 1.1 thorpej if (sc->sc_cfg2 & NCRCFG2_FE) {
1331 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCH, size >> 16);
1332 1.1 thorpej }
1333 1.22 pk /* Load the count in and start the message-out transfer */
1334 1.1 thorpej NCRCMD(sc, NCRCMD_NOP|NCRCMD_DMA);
1335 1.1 thorpej NCRCMD(sc, NCRCMD_TRANS|NCRCMD_DMA);
1336 1.1 thorpej NCRDMA_GO(sc);
1337 1.1 thorpej }
1338 1.1 thorpej
1339 1.1 thorpej /*
1340 1.1 thorpej * This is the most critical part of the driver, and has to know
1341 1.1 thorpej * how to deal with *all* error conditions and phases from the SCSI
1342 1.1 thorpej * bus. If there are no errors and the DMA was active, then call the
1343 1.1 thorpej * DMA pseudo-interrupt handler. If this returns 1, then that was it
1344 1.1 thorpej * and we can return from here without further processing.
1345 1.1 thorpej *
1346 1.1 thorpej * Most of this needs verifying.
1347 1.1 thorpej */
1348 1.25 pk int sdebug = 0;
1349 1.1 thorpej int
1350 1.1 thorpej ncr53c9x_intr(sc)
1351 1.1 thorpej register struct ncr53c9x_softc *sc;
1352 1.1 thorpej {
1353 1.1 thorpej register struct ncr53c9x_ecb *ecb;
1354 1.18 bouyer register struct scsipi_link *sc_link;
1355 1.1 thorpej struct ncr53c9x_tinfo *ti;
1356 1.1 thorpej size_t size;
1357 1.5 pk int nfifo;
1358 1.1 thorpej
1359 1.10 pk NCR_TRACE(("[ncr53c9x_intr] "));
1360 1.1 thorpej
1361 1.25 pk if (!NCRDMA_ISINTR(sc))
1362 1.25 pk return (0);
1363 1.25 pk
1364 1.25 pk again:
1365 1.25 pk /* and what do the registers say... */
1366 1.25 pk ncr53c9x_readregs(sc);
1367 1.25 pk
1368 1.25 pk sc->sc_intrcnt.ev_count++;
1369 1.25 pk
1370 1.1 thorpej /*
1371 1.25 pk * At the moment, only a SCSI Bus Reset or Illegal
1372 1.25 pk * Command are classed as errors. A disconnect is a
1373 1.25 pk * valid condition, and we let the code check is the
1374 1.25 pk * "NCR_BUSFREE_OK" flag was set before declaring it
1375 1.25 pk * and error.
1376 1.1 thorpej *
1377 1.25 pk * Also, the status register tells us about "Gross
1378 1.25 pk * Errors" and "Parity errors". Only the Gross Error
1379 1.25 pk * is really bad, and the parity errors are dealt
1380 1.25 pk * with later
1381 1.1 thorpej *
1382 1.25 pk * TODO
1383 1.25 pk * If there are too many parity error, go to slow
1384 1.25 pk * cable mode ?
1385 1.1 thorpej */
1386 1.25 pk
1387 1.25 pk /* SCSI Reset */
1388 1.25 pk if (sc->sc_espintr & NCRINTR_SBR) {
1389 1.25 pk if (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) {
1390 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1391 1.25 pk DELAY(1);
1392 1.25 pk }
1393 1.25 pk if (sc->sc_state != NCR_SBR) {
1394 1.25 pk printf("%s: SCSI bus reset\n",
1395 1.25 pk sc->sc_dev.dv_xname);
1396 1.25 pk ncr53c9x_init(sc, 0); /* Restart everything */
1397 1.25 pk return (1);
1398 1.25 pk }
1399 1.1 thorpej #if 0
1400 1.25 pk /*XXX*/ printf("<expected bus reset: "
1401 1.25 pk "[intr %x, stat %x, step %d]>\n",
1402 1.25 pk sc->sc_espintr, sc->sc_espstat,
1403 1.25 pk sc->sc_espstep);
1404 1.1 thorpej #endif
1405 1.25 pk if (sc->sc_nexus)
1406 1.25 pk panic("%s: nexus in reset state",
1407 1.25 pk sc->sc_dev.dv_xname);
1408 1.25 pk goto sched;
1409 1.25 pk }
1410 1.1 thorpej
1411 1.25 pk ecb = sc->sc_nexus;
1412 1.1 thorpej
1413 1.25 pk #define NCRINTR_ERR (NCRINTR_SBR|NCRINTR_ILL)
1414 1.25 pk if (sc->sc_espintr & NCRINTR_ERR ||
1415 1.25 pk sc->sc_espstat & NCRSTAT_GE) {
1416 1.1 thorpej
1417 1.25 pk if (sc->sc_espstat & NCRSTAT_GE) {
1418 1.25 pk /* Gross Error; no target ? */
1419 1.1 thorpej if (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) {
1420 1.1 thorpej NCRCMD(sc, NCRCMD_FLUSH);
1421 1.1 thorpej DELAY(1);
1422 1.1 thorpej }
1423 1.25 pk if (sc->sc_state == NCR_CONNECTED ||
1424 1.25 pk sc->sc_state == NCR_SELECTING) {
1425 1.25 pk ecb->xs->error = XS_TIMEOUT;
1426 1.25 pk ncr53c9x_done(sc, ecb);
1427 1.1 thorpej }
1428 1.25 pk return (1);
1429 1.1 thorpej }
1430 1.1 thorpej
1431 1.25 pk if (sc->sc_espintr & NCRINTR_ILL) {
1432 1.25 pk if (sc->sc_flags & NCR_EXPECT_ILLCMD) {
1433 1.25 pk /*
1434 1.25 pk * Eat away "Illegal command" interrupt
1435 1.25 pk * on a ESP100 caused by a re-selection
1436 1.25 pk * while we were trying to select
1437 1.25 pk * another target.
1438 1.25 pk */
1439 1.19 pk #ifdef DEBUG
1440 1.25 pk printf("%s: ESP100 work-around activated\n",
1441 1.25 pk sc->sc_dev.dv_xname);
1442 1.19 pk #endif
1443 1.25 pk sc->sc_flags &= ~NCR_EXPECT_ILLCMD;
1444 1.25 pk return (1);
1445 1.25 pk }
1446 1.25 pk /* illegal command, out of sync ? */
1447 1.25 pk printf("%s: illegal command: 0x%x "
1448 1.25 pk "(state %d, phase %x, prevphase %x)\n",
1449 1.25 pk sc->sc_dev.dv_xname, sc->sc_lastcmd,
1450 1.25 pk sc->sc_state, sc->sc_phase,
1451 1.25 pk sc->sc_prevphase);
1452 1.25 pk if (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) {
1453 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1454 1.25 pk DELAY(1);
1455 1.1 thorpej }
1456 1.25 pk ncr53c9x_init(sc, 1); /* Restart everything */
1457 1.25 pk return (1);
1458 1.1 thorpej }
1459 1.25 pk }
1460 1.25 pk sc->sc_flags &= ~NCR_EXPECT_ILLCMD;
1461 1.1 thorpej
1462 1.25 pk /*
1463 1.25 pk * Call if DMA is active.
1464 1.25 pk *
1465 1.25 pk * If DMA_INTR returns true, then maybe go 'round the loop
1466 1.25 pk * again in case there is no more DMA queued, but a phase
1467 1.25 pk * change is expected.
1468 1.25 pk */
1469 1.25 pk if (NCRDMA_ISACTIVE(sc)) {
1470 1.25 pk int r = NCRDMA_INTR(sc);
1471 1.25 pk if (r == -1) {
1472 1.25 pk printf("%s: DMA error; resetting\n",
1473 1.25 pk sc->sc_dev.dv_xname);
1474 1.25 pk ncr53c9x_init(sc, 1);
1475 1.25 pk }
1476 1.25 pk /* If DMA active here, then go back to work... */
1477 1.25 pk if (NCRDMA_ISACTIVE(sc))
1478 1.25 pk return (1);
1479 1.1 thorpej
1480 1.25 pk if ((sc->sc_espstat & NCRSTAT_TC) == 0) {
1481 1.25 pk /*
1482 1.25 pk * DMA not completed. If we can not find a
1483 1.25 pk * acceptable explanation, print a diagnostic.
1484 1.25 pk */
1485 1.25 pk if (sc->sc_state == NCR_SELECTING)
1486 1.25 pk /*
1487 1.25 pk * This can happen if we are reselected
1488 1.25 pk * while using DMA to select a target.
1489 1.25 pk */
1490 1.25 pk /*void*/;
1491 1.25 pk else if (sc->sc_prevphase == MESSAGE_OUT_PHASE) {
1492 1.25 pk /*
1493 1.25 pk * Our (multi-byte) message (eg SDTR) was
1494 1.25 pk * interrupted by the target to send
1495 1.25 pk * a MSG REJECT.
1496 1.25 pk * Print diagnostic if current phase
1497 1.25 pk * is not MESSAGE IN.
1498 1.25 pk */
1499 1.25 pk if (sc->sc_phase != MESSAGE_IN_PHASE)
1500 1.25 pk printf("%s: !TC on MSG OUT"
1501 1.25 pk " [intr %x, stat %x, step %d]"
1502 1.25 pk " prevphase %x, resid %x\n",
1503 1.25 pk sc->sc_dev.dv_xname,
1504 1.25 pk sc->sc_espintr,
1505 1.25 pk sc->sc_espstat,
1506 1.25 pk sc->sc_espstep,
1507 1.25 pk sc->sc_prevphase,
1508 1.25 pk sc->sc_omlen);
1509 1.25 pk } else if (sc->sc_dleft == 0) {
1510 1.22 pk /*
1511 1.25 pk * The DMA operation was started for
1512 1.25 pk * a DATA transfer. Print a diagnostic
1513 1.25 pk * if the DMA counter and TC bit
1514 1.25 pk * appear to be out of sync.
1515 1.22 pk */
1516 1.25 pk printf("%s: !TC on DATA XFER"
1517 1.25 pk " [intr %x, stat %x, step %d]"
1518 1.25 pk " prevphase %x, resid %x\n",
1519 1.25 pk sc->sc_dev.dv_xname,
1520 1.25 pk sc->sc_espintr,
1521 1.25 pk sc->sc_espstat,
1522 1.25 pk sc->sc_espstep,
1523 1.25 pk sc->sc_prevphase,
1524 1.25 pk ecb?ecb->dleft:-1);
1525 1.22 pk }
1526 1.1 thorpej }
1527 1.25 pk }
1528 1.25 pk
1529 1.25 pk /*
1530 1.25 pk * Check for less serious errors.
1531 1.25 pk */
1532 1.25 pk if (sc->sc_espstat & NCRSTAT_PE) {
1533 1.25 pk printf("%s: SCSI bus parity error\n", sc->sc_dev.dv_xname);
1534 1.25 pk if (sc->sc_prevphase == MESSAGE_IN_PHASE)
1535 1.25 pk ncr53c9x_sched_msgout(SEND_PARITY_ERROR);
1536 1.25 pk else
1537 1.25 pk ncr53c9x_sched_msgout(SEND_INIT_DET_ERR);
1538 1.25 pk }
1539 1.1 thorpej
1540 1.25 pk if (sc->sc_espintr & NCRINTR_DIS) {
1541 1.25 pk NCR_MISC(("<DISC [intr %x, stat %x, step %d]>",
1542 1.25 pk sc->sc_espintr,sc->sc_espstat,sc->sc_espstep));
1543 1.25 pk if (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) {
1544 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1545 1.25 pk DELAY(1);
1546 1.1 thorpej }
1547 1.1 thorpej /*
1548 1.25 pk * This command must (apparently) be issued within
1549 1.25 pk * 250mS of a disconnect. So here you are...
1550 1.1 thorpej */
1551 1.25 pk NCRCMD(sc, NCRCMD_ENSEL);
1552 1.1 thorpej
1553 1.25 pk switch (sc->sc_state) {
1554 1.25 pk case NCR_RESELECTED:
1555 1.25 pk goto sched;
1556 1.22 pk
1557 1.25 pk case NCR_SELECTING:
1558 1.25 pk ecb->xs->error = XS_SELTIMEOUT;
1559 1.25 pk goto finish;
1560 1.1 thorpej
1561 1.25 pk case NCR_CONNECTED:
1562 1.25 pk if ((sc->sc_flags & NCR_SYNCHNEGO)) {
1563 1.1 thorpej #ifdef NCR53C9X_DEBUG
1564 1.25 pk if (ecb)
1565 1.25 pk scsi_print_addr(ecb->xs->sc_link);
1566 1.25 pk printf("sync nego not completed!\n");
1567 1.1 thorpej #endif
1568 1.25 pk ti = &sc->sc_tinfo[ecb->xs->sc_link->scsipi_scsi.target];
1569 1.25 pk sc->sc_flags &= ~NCR_SYNCHNEGO;
1570 1.25 pk ti->flags &= ~(T_NEGOTIATE | T_SYNCMODE);
1571 1.25 pk }
1572 1.1 thorpej
1573 1.25 pk /* it may be OK to disconnect */
1574 1.25 pk if ((sc->sc_flags & NCR_ABORTING) == 0) {
1575 1.25 pk /*
1576 1.25 pk * Section 5.1.1 of the SCSI 2 spec
1577 1.25 pk * suggests issuing a REQUEST SENSE
1578 1.25 pk * following an unexpected disconnect.
1579 1.25 pk * Some devices go into a contingent
1580 1.25 pk * allegiance condition when
1581 1.25 pk * disconnecting, and this is necessary
1582 1.25 pk * to clean up their state.
1583 1.25 pk */
1584 1.25 pk printf("%s: unexpected disconnect; ",
1585 1.25 pk sc->sc_dev.dv_xname);
1586 1.25 pk if (ecb->flags & ECB_SENSE) {
1587 1.25 pk printf("resetting\n");
1588 1.25 pk goto reset;
1589 1.1 thorpej }
1590 1.25 pk printf("sending REQUEST SENSE\n");
1591 1.25 pk untimeout(ncr53c9x_timeout, ecb);
1592 1.25 pk ncr53c9x_sense(sc, ecb);
1593 1.25 pk goto out;
1594 1.25 pk }
1595 1.1 thorpej
1596 1.25 pk ecb->xs->error = XS_TIMEOUT;
1597 1.25 pk goto finish;
1598 1.1 thorpej
1599 1.25 pk case NCR_DISCONNECT:
1600 1.25 pk TAILQ_INSERT_HEAD(&sc->nexus_list, ecb, chain);
1601 1.25 pk sc->sc_nexus = NULL;
1602 1.25 pk goto sched;
1603 1.1 thorpej
1604 1.25 pk case NCR_CMDCOMPLETE:
1605 1.25 pk goto finish;
1606 1.1 thorpej }
1607 1.25 pk }
1608 1.1 thorpej
1609 1.25 pk switch (sc->sc_state) {
1610 1.25 pk
1611 1.25 pk case NCR_SBR:
1612 1.25 pk printf("%s: waiting for SCSI Bus Reset to happen\n",
1613 1.25 pk sc->sc_dev.dv_xname);
1614 1.25 pk return (1);
1615 1.1 thorpej
1616 1.25 pk case NCR_RESELECTED:
1617 1.25 pk /*
1618 1.25 pk * we must be continuing a message ?
1619 1.25 pk */
1620 1.25 pk if (sc->sc_phase != MESSAGE_IN_PHASE) {
1621 1.25 pk printf("%s: target didn't identify\n",
1622 1.1 thorpej sc->sc_dev.dv_xname);
1623 1.25 pk ncr53c9x_init(sc, 1);
1624 1.25 pk return (1);
1625 1.25 pk }
1626 1.25 pk printf("<<RESELECT CONT'd>>");
1627 1.25 pk #if XXXX
1628 1.25 pk ncr53c9x_msgin(sc);
1629 1.25 pk if (sc->sc_state != NCR_CONNECTED) {
1630 1.25 pk /* IDENTIFY fail?! */
1631 1.25 pk printf("%s: identify failed\n",
1632 1.25 pk sc->sc_dev.dv_xname);
1633 1.25 pk ncr53c9x_init(sc, 1);
1634 1.25 pk return (1);
1635 1.25 pk }
1636 1.25 pk #endif
1637 1.25 pk break;
1638 1.25 pk
1639 1.25 pk case NCR_IDLE:
1640 1.25 pk case NCR_SELECTING:
1641 1.25 pk sc->sc_msgpriq = sc->sc_msgout = sc->sc_msgoutq = 0;
1642 1.25 pk sc->sc_flags = 0;
1643 1.25 pk ecb = sc->sc_nexus;
1644 1.25 pk if (ecb != NULL && (ecb->flags & ECB_NEXUS)) {
1645 1.25 pk scsi_print_addr(ecb->xs->sc_link);
1646 1.25 pk printf("ECB_NEXUS while in state %x\n", sc->sc_state);
1647 1.25 pk }
1648 1.1 thorpej
1649 1.25 pk if (sc->sc_espintr & NCRINTR_RESEL) {
1650 1.1 thorpej /*
1651 1.25 pk * If we're trying to select a
1652 1.25 pk * target ourselves, push our command
1653 1.25 pk * back into the ready list.
1654 1.1 thorpej */
1655 1.25 pk if (sc->sc_state == NCR_SELECTING) {
1656 1.25 pk NCR_MISC(("backoff selector "));
1657 1.25 pk untimeout(ncr53c9x_timeout, ecb);
1658 1.25 pk sc_link = ecb->xs->sc_link;
1659 1.25 pk ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
1660 1.25 pk TAILQ_INSERT_HEAD(&sc->ready_list, ecb, chain);
1661 1.25 pk ecb = sc->sc_nexus = NULL;
1662 1.25 pk }
1663 1.25 pk sc->sc_state = NCR_RESELECTED;
1664 1.1 thorpej if (sc->sc_phase != MESSAGE_IN_PHASE) {
1665 1.25 pk /*
1666 1.25 pk * Things are seriously fucked up.
1667 1.25 pk * Pull the brakes, i.e. reset
1668 1.25 pk */
1669 1.1 thorpej printf("%s: target didn't identify\n",
1670 1.1 thorpej sc->sc_dev.dv_xname);
1671 1.1 thorpej ncr53c9x_init(sc, 1);
1672 1.25 pk return (1);
1673 1.1 thorpej }
1674 1.25 pk /*
1675 1.25 pk * The C90 only inhibits FIFO writes until
1676 1.25 pk * reselection is complete, instead of
1677 1.25 pk * waiting until the interrupt status register
1678 1.25 pk * has been read. So, if the reselect happens
1679 1.25 pk * while we were entering a command bytes (for
1680 1.25 pk * another target) some of those bytes can
1681 1.25 pk * appear in the FIFO here, after the
1682 1.25 pk * interrupt is taken.
1683 1.25 pk */
1684 1.25 pk nfifo = NCR_READ_REG(sc,NCR_FFLAG) & NCRFIFO_FF;
1685 1.25 pk if (nfifo < 2 ||
1686 1.25 pk (nfifo > 2 &&
1687 1.25 pk sc->sc_rev != NCR_VARIANT_ESP100)) {
1688 1.25 pk printf("%s: RESELECT: %d bytes in FIFO! "
1689 1.25 pk "[intr %x, stat %x, step %d, prevphase %x]\n",
1690 1.25 pk sc->sc_dev.dv_xname,
1691 1.25 pk nfifo,
1692 1.25 pk sc->sc_espintr,
1693 1.25 pk sc->sc_espstat,
1694 1.25 pk sc->sc_espstep,
1695 1.25 pk sc->sc_prevphase);
1696 1.25 pk ncr53c9x_init(sc, 1);
1697 1.25 pk return (1);
1698 1.25 pk }
1699 1.25 pk sc->sc_selid = NCR_READ_REG(sc, NCR_FIFO);
1700 1.25 pk NCR_MISC(("selid=0x%2x ", sc->sc_selid));
1701 1.25 pk
1702 1.25 pk /* Handle identify message */
1703 1.1 thorpej ncr53c9x_msgin(sc);
1704 1.25 pk if (nfifo != 2) {
1705 1.25 pk /*
1706 1.25 pk * Note: this should not happen
1707 1.25 pk * with `dmaselect' on.
1708 1.25 pk */
1709 1.25 pk sc->sc_flags |= NCR_EXPECT_ILLCMD;
1710 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1711 1.25 pk } else if (ncr53c9x_dmaselect &&
1712 1.25 pk sc->sc_rev == NCR_VARIANT_ESP100) {
1713 1.25 pk sc->sc_flags |= NCR_EXPECT_ILLCMD;
1714 1.25 pk }
1715 1.25 pk
1716 1.1 thorpej if (sc->sc_state != NCR_CONNECTED) {
1717 1.1 thorpej /* IDENTIFY fail?! */
1718 1.1 thorpej printf("%s: identify failed\n",
1719 1.1 thorpej sc->sc_dev.dv_xname);
1720 1.1 thorpej ncr53c9x_init(sc, 1);
1721 1.25 pk return (1);
1722 1.1 thorpej }
1723 1.25 pk goto shortcut; /* ie. next phase expected soon */
1724 1.25 pk }
1725 1.1 thorpej
1726 1.25 pk #define NCRINTR_DONE (NCRINTR_FC|NCRINTR_BS)
1727 1.25 pk if ((sc->sc_espintr & NCRINTR_DONE) == NCRINTR_DONE) {
1728 1.25 pk /*
1729 1.25 pk * Arbitration won; examine the `step' register
1730 1.25 pk * to determine how far the selection could progress.
1731 1.25 pk */
1732 1.7 gwr ecb = sc->sc_nexus;
1733 1.25 pk if (!ecb)
1734 1.25 pk panic("esp: no nexus");
1735 1.25 pk
1736 1.25 pk sc_link = ecb->xs->sc_link;
1737 1.25 pk ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
1738 1.1 thorpej
1739 1.25 pk switch (sc->sc_espstep) {
1740 1.25 pk case 0:
1741 1.1 thorpej /*
1742 1.25 pk * The target did not respond with a
1743 1.25 pk * message out phase - probably an old
1744 1.25 pk * device that doesn't recognize ATN.
1745 1.25 pk * Clear ATN and just continue, the
1746 1.25 pk * target should be in the command
1747 1.25 pk * phase.
1748 1.25 pk * XXXX check for command phase?
1749 1.1 thorpej */
1750 1.25 pk NCRCMD(sc, NCRCMD_RSTATN);
1751 1.25 pk break;
1752 1.25 pk case 1:
1753 1.25 pk if ((ti->flags & T_NEGOTIATE) == 0) {
1754 1.25 pk printf("%s: step 1 & !NEG\n",
1755 1.25 pk sc->sc_dev.dv_xname);
1756 1.25 pk goto reset;
1757 1.1 thorpej }
1758 1.25 pk if (sc->sc_phase != MESSAGE_OUT_PHASE) {
1759 1.25 pk printf("%s: !MSGOUT\n",
1760 1.1 thorpej sc->sc_dev.dv_xname);
1761 1.25 pk goto reset;
1762 1.1 thorpej }
1763 1.25 pk /* Start negotiating */
1764 1.25 pk ti->period = sc->sc_minsync;
1765 1.25 pk ti->offset = 15;
1766 1.25 pk sc->sc_flags |= NCR_SYNCHNEGO;
1767 1.25 pk ncr53c9x_sched_msgout(SEND_SDTR);
1768 1.25 pk break;
1769 1.25 pk case 3:
1770 1.5 pk /*
1771 1.25 pk * Grr, this is supposed to mean
1772 1.25 pk * "target left command phase prematurely".
1773 1.25 pk * It seems to happen regularly when
1774 1.25 pk * sync mode is on.
1775 1.25 pk * Look at FIFO to see if command went out.
1776 1.25 pk * (Timing problems?)
1777 1.5 pk */
1778 1.25 pk if (ncr53c9x_dmaselect) {
1779 1.25 pk if (sc->sc_cmdlen == 0)
1780 1.8 pk /* Hope for the best.. */
1781 1.8 pk break;
1782 1.25 pk } else if ((NCR_READ_REG(sc, NCR_FFLAG)
1783 1.1 thorpej & NCRFIFO_FF) == 0) {
1784 1.25 pk /* Hope for the best.. */
1785 1.1 thorpej break;
1786 1.1 thorpej }
1787 1.25 pk printf("(%s:%d:%d): selection failed;"
1788 1.25 pk " %d left in FIFO "
1789 1.25 pk "[intr %x, stat %x, step %d]\n",
1790 1.1 thorpej sc->sc_dev.dv_xname,
1791 1.25 pk sc_link->scsipi_scsi.target,
1792 1.25 pk sc_link->scsipi_scsi.lun,
1793 1.25 pk NCR_READ_REG(sc, NCR_FFLAG)
1794 1.25 pk & NCRFIFO_FF,
1795 1.1 thorpej sc->sc_espintr, sc->sc_espstat,
1796 1.1 thorpej sc->sc_espstep);
1797 1.1 thorpej NCRCMD(sc, NCRCMD_FLUSH);
1798 1.25 pk ncr53c9x_sched_msgout(SEND_ABORT);
1799 1.25 pk return (1);
1800 1.25 pk case 2:
1801 1.25 pk /* Select stuck at Command Phase */
1802 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1803 1.25 pk case 4:
1804 1.25 pk if (ncr53c9x_dmaselect &&
1805 1.25 pk sc->sc_cmdlen != 0)
1806 1.25 pk printf("(%s:%d:%d): select; "
1807 1.25 pk "%d left in DMA buffer "
1808 1.25 pk "[intr %x, stat %x, step %d]\n",
1809 1.25 pk sc->sc_dev.dv_xname,
1810 1.25 pk sc_link->scsipi_scsi.target,
1811 1.25 pk sc_link->scsipi_scsi.lun,
1812 1.25 pk sc->sc_cmdlen,
1813 1.25 pk sc->sc_espintr,
1814 1.25 pk sc->sc_espstat,
1815 1.25 pk sc->sc_espstep);
1816 1.25 pk /* So far, everything went fine */
1817 1.25 pk break;
1818 1.1 thorpej }
1819 1.25 pk
1820 1.25 pk ecb->flags |= ECB_NEXUS;
1821 1.25 pk ti->lubusy |= (1 << sc_link->scsipi_scsi.lun);
1822 1.25 pk
1823 1.25 pk sc->sc_prevphase = INVALID_PHASE; /* ?? */
1824 1.25 pk /* Do an implicit RESTORE POINTERS. */
1825 1.25 pk sc->sc_dp = ecb->daddr;
1826 1.25 pk sc->sc_dleft = ecb->dleft;
1827 1.25 pk sc->sc_state = NCR_CONNECTED;
1828 1.1 thorpej break;
1829 1.1 thorpej
1830 1.25 pk } else {
1831 1.1 thorpej
1832 1.25 pk printf("%s: unexpected status after select"
1833 1.25 pk ": [intr %x, stat %x, step %x]\n",
1834 1.25 pk sc->sc_dev.dv_xname,
1835 1.25 pk sc->sc_espintr, sc->sc_espstat,
1836 1.25 pk sc->sc_espstep);
1837 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1838 1.25 pk DELAY(1);
1839 1.25 pk goto reset;
1840 1.1 thorpej }
1841 1.25 pk if (sc->sc_state == NCR_IDLE) {
1842 1.25 pk printf("%s: stray interrupt\n",
1843 1.25 pk sc->sc_dev.dv_xname);
1844 1.25 pk return (0);
1845 1.1 thorpej }
1846 1.25 pk break;
1847 1.1 thorpej
1848 1.25 pk case NCR_CONNECTED:
1849 1.25 pk if (sc->sc_flags & NCR_ICCS) {
1850 1.25 pk /* "Initiate Command Complete Steps" in progress */
1851 1.25 pk u_char msg;
1852 1.25 pk
1853 1.25 pk sc->sc_flags &= ~NCR_ICCS;
1854 1.25 pk
1855 1.25 pk if (!(sc->sc_espintr & NCRINTR_DONE)) {
1856 1.25 pk printf("%s: ICCS: "
1857 1.25 pk ": [intr %x, stat %x, step %x]\n",
1858 1.1 thorpej sc->sc_dev.dv_xname,
1859 1.1 thorpej sc->sc_espintr, sc->sc_espstat,
1860 1.1 thorpej sc->sc_espstep);
1861 1.1 thorpej }
1862 1.25 pk if ((NCR_READ_REG(sc, NCR_FFLAG)
1863 1.25 pk & NCRFIFO_FF) != 2) {
1864 1.25 pk int i = (NCR_READ_REG(sc, NCR_FFLAG)
1865 1.25 pk & NCRFIFO_FF) - 2;
1866 1.25 pk while (i--)
1867 1.25 pk (void) NCR_READ_REG(sc, NCR_FIFO);
1868 1.1 thorpej }
1869 1.25 pk ecb->stat = NCR_READ_REG(sc, NCR_FIFO);
1870 1.25 pk msg = NCR_READ_REG(sc, NCR_FIFO);
1871 1.25 pk NCR_PHASE(("<stat:(%x,%x)>", ecb->stat, msg));
1872 1.25 pk if (msg == MSG_CMDCOMPLETE) {
1873 1.25 pk ecb->dleft = (ecb->flags & ECB_TENTATIVE_DONE)
1874 1.25 pk ? 0
1875 1.25 pk : sc->sc_dleft;
1876 1.25 pk if ((ecb->flags & ECB_SENSE) == 0)
1877 1.25 pk ecb->xs->resid = ecb->dleft;
1878 1.25 pk sc->sc_state = NCR_CMDCOMPLETE;
1879 1.25 pk } else
1880 1.25 pk printf("%s: STATUS_PHASE: msg %d\n",
1881 1.25 pk sc->sc_dev.dv_xname, msg);
1882 1.25 pk NCRCMD(sc, NCRCMD_MSGOK);
1883 1.25 pk goto shortcut; /* ie. wait for disconnect */
1884 1.25 pk }
1885 1.25 pk break;
1886 1.25 pk default:
1887 1.25 pk panic("%s: invalid state: %d",
1888 1.25 pk sc->sc_dev.dv_xname,
1889 1.25 pk sc->sc_state);
1890 1.25 pk }
1891 1.8 pk
1892 1.25 pk /*
1893 1.25 pk * Driver is now in state NCR_CONNECTED, i.e. we
1894 1.25 pk * have a current command working the SCSI bus.
1895 1.25 pk */
1896 1.25 pk if (sc->sc_state != NCR_CONNECTED || ecb == NULL) {
1897 1.25 pk panic("esp no nexus");
1898 1.25 pk }
1899 1.22 pk
1900 1.25 pk switch (sc->sc_phase) {
1901 1.25 pk case MESSAGE_OUT_PHASE:
1902 1.25 pk NCR_PHASE(("MESSAGE_OUT_PHASE "));
1903 1.25 pk ncr53c9x_msgout(sc);
1904 1.25 pk sc->sc_prevphase = MESSAGE_OUT_PHASE;
1905 1.25 pk break;
1906 1.25 pk case MESSAGE_IN_PHASE:
1907 1.25 pk NCR_PHASE(("MESSAGE_IN_PHASE "));
1908 1.25 pk sc->sc_prevphase = MESSAGE_IN_PHASE;
1909 1.25 pk if (sc->sc_espintr & NCRINTR_BS) {
1910 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1911 1.25 pk sc->sc_flags |= NCR_WAITI;
1912 1.25 pk NCRCMD(sc, NCRCMD_TRANS);
1913 1.25 pk } else if (sc->sc_espintr & NCRINTR_FC) {
1914 1.25 pk if ((sc->sc_flags & NCR_WAITI) == 0) {
1915 1.25 pk printf("%s: MSGIN: unexpected FC bit: "
1916 1.25 pk "[intr %x, stat %x, step %x]\n",
1917 1.25 pk sc->sc_dev.dv_xname,
1918 1.25 pk sc->sc_espintr, sc->sc_espstat,
1919 1.25 pk sc->sc_espstep);
1920 1.8 pk }
1921 1.25 pk sc->sc_flags &= ~NCR_WAITI;
1922 1.25 pk ncr53c9x_msgin(sc);
1923 1.25 pk } else {
1924 1.25 pk printf("%s: MSGIN: weird bits: "
1925 1.25 pk "[intr %x, stat %x, step %x]\n",
1926 1.25 pk sc->sc_dev.dv_xname,
1927 1.25 pk sc->sc_espintr, sc->sc_espstat,
1928 1.25 pk sc->sc_espstep);
1929 1.25 pk }
1930 1.25 pk goto shortcut; /* i.e. expect data to be ready */
1931 1.25 pk break;
1932 1.25 pk case COMMAND_PHASE:
1933 1.25 pk /*
1934 1.25 pk * Send the command block. Normally we don't see this
1935 1.25 pk * phase because the SEL_ATN command takes care of
1936 1.25 pk * all this. However, we end up here if either the
1937 1.25 pk * target or we wanted to exchange some more messages
1938 1.25 pk * first (e.g. to start negotiations).
1939 1.25 pk */
1940 1.25 pk
1941 1.25 pk NCR_PHASE(("COMMAND_PHASE 0x%02x (%d) ",
1942 1.25 pk ecb->cmd.cmd.opcode, ecb->clen));
1943 1.25 pk if (NCR_READ_REG(sc, NCR_FFLAG) & NCRFIFO_FF) {
1944 1.1 thorpej NCRCMD(sc, NCRCMD_FLUSH);
1945 1.25 pk DELAY(1);
1946 1.25 pk }
1947 1.25 pk if (ncr53c9x_dmaselect) {
1948 1.25 pk size_t size;
1949 1.25 pk /* setup DMA transfer for command */
1950 1.25 pk size = ecb->clen;
1951 1.25 pk sc->sc_cmdlen = size;
1952 1.25 pk sc->sc_cmdp = (caddr_t)&ecb->cmd.cmd;
1953 1.25 pk NCRDMA_SETUP(sc, &sc->sc_cmdp, &sc->sc_cmdlen,
1954 1.25 pk 0, &size);
1955 1.1 thorpej /* Program the SCSI counter */
1956 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCL, size);
1957 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCM, size >> 8);
1958 1.1 thorpej if (sc->sc_cfg2 & NCRCFG2_FE) {
1959 1.1 thorpej NCR_WRITE_REG(sc, NCR_TCH, size >> 16);
1960 1.1 thorpej }
1961 1.25 pk
1962 1.1 thorpej /* load the count in */
1963 1.1 thorpej NCRCMD(sc, NCRCMD_NOP|NCRCMD_DMA);
1964 1.1 thorpej
1965 1.25 pk /* start the command transfer */
1966 1.25 pk NCRCMD(sc, NCRCMD_TRANS | NCRCMD_DMA);
1967 1.1 thorpej NCRDMA_GO(sc);
1968 1.25 pk } else {
1969 1.25 pk u_char *cmd = (u_char *)&ecb->cmd.cmd;
1970 1.25 pk int i;
1971 1.25 pk /* Now the command into the FIFO */
1972 1.25 pk for (i = 0; i < ecb->clen; i++)
1973 1.25 pk NCR_WRITE_REG(sc, NCR_FIFO, *cmd++);
1974 1.25 pk NCRCMD(sc, NCRCMD_TRANS);
1975 1.25 pk }
1976 1.25 pk sc->sc_prevphase = COMMAND_PHASE;
1977 1.25 pk break;
1978 1.25 pk case DATA_OUT_PHASE:
1979 1.25 pk NCR_PHASE(("DATA_OUT_PHASE [%ld] ",(long)sc->sc_dleft));
1980 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1981 1.25 pk size = min(sc->sc_dleft, sc->sc_maxxfer);
1982 1.25 pk NCRDMA_SETUP(sc, &sc->sc_dp, &sc->sc_dleft,
1983 1.25 pk 0, &size);
1984 1.25 pk sc->sc_prevphase = DATA_OUT_PHASE;
1985 1.25 pk goto setup_xfer;
1986 1.25 pk case DATA_IN_PHASE:
1987 1.25 pk NCR_PHASE(("DATA_IN_PHASE "));
1988 1.25 pk if (sc->sc_rev == NCR_VARIANT_ESP100)
1989 1.25 pk NCRCMD(sc, NCRCMD_FLUSH);
1990 1.25 pk size = min(sc->sc_dleft, sc->sc_maxxfer);
1991 1.25 pk NCRDMA_SETUP(sc, &sc->sc_dp, &sc->sc_dleft,
1992 1.25 pk 1, &size);
1993 1.25 pk sc->sc_prevphase = DATA_IN_PHASE;
1994 1.25 pk setup_xfer:
1995 1.25 pk /* Target returned to data phase: wipe "done" memory */
1996 1.25 pk ecb->flags &= ~ECB_TENTATIVE_DONE;
1997 1.25 pk
1998 1.25 pk /* Program the SCSI counter */
1999 1.25 pk NCR_WRITE_REG(sc, NCR_TCL, size);
2000 1.25 pk NCR_WRITE_REG(sc, NCR_TCM, size >> 8);
2001 1.25 pk if (sc->sc_cfg2 & NCRCFG2_FE) {
2002 1.25 pk NCR_WRITE_REG(sc, NCR_TCH, size >> 16);
2003 1.1 thorpej }
2004 1.25 pk /* load the count in */
2005 1.25 pk NCRCMD(sc, NCRCMD_NOP|NCRCMD_DMA);
2006 1.25 pk
2007 1.25 pk /*
2008 1.25 pk * Note that if `size' is 0, we've already transceived
2009 1.25 pk * all the bytes we want but we're still in DATA PHASE.
2010 1.25 pk * Apparently, the device needs padding. Also, a
2011 1.25 pk * transfer size of 0 means "maximum" to the chip
2012 1.25 pk * DMA logic.
2013 1.25 pk */
2014 1.25 pk NCRCMD(sc,
2015 1.25 pk (size==0?NCRCMD_TRPAD:NCRCMD_TRANS)|NCRCMD_DMA);
2016 1.25 pk NCRDMA_GO(sc);
2017 1.25 pk return (1);
2018 1.25 pk case STATUS_PHASE:
2019 1.25 pk NCR_PHASE(("STATUS_PHASE "));
2020 1.25 pk sc->sc_flags |= NCR_ICCS;
2021 1.25 pk NCRCMD(sc, NCRCMD_ICCS);
2022 1.25 pk sc->sc_prevphase = STATUS_PHASE;
2023 1.25 pk goto shortcut; /* i.e. expect status results soon */
2024 1.25 pk break;
2025 1.25 pk case INVALID_PHASE:
2026 1.25 pk break;
2027 1.25 pk default:
2028 1.25 pk printf("%s: unexpected bus phase; resetting\n",
2029 1.25 pk sc->sc_dev.dv_xname);
2030 1.25 pk goto reset;
2031 1.1 thorpej }
2032 1.25 pk
2033 1.25 pk out:
2034 1.25 pk return (1);
2035 1.1 thorpej
2036 1.1 thorpej reset:
2037 1.1 thorpej ncr53c9x_init(sc, 1);
2038 1.25 pk goto out;
2039 1.1 thorpej
2040 1.1 thorpej finish:
2041 1.1 thorpej ncr53c9x_done(sc, ecb);
2042 1.1 thorpej goto out;
2043 1.1 thorpej
2044 1.1 thorpej sched:
2045 1.1 thorpej sc->sc_state = NCR_IDLE;
2046 1.1 thorpej ncr53c9x_sched(sc);
2047 1.1 thorpej goto out;
2048 1.1 thorpej
2049 1.25 pk shortcut:
2050 1.25 pk /*
2051 1.25 pk * The idea is that many of the SCSI operations take very little
2052 1.25 pk * time, and going away and getting interrupted is too high an
2053 1.25 pk * overhead to pay. For example, selecting, sending a message
2054 1.25 pk * and command and then doing some work can be done in one "pass".
2055 1.25 pk *
2056 1.25 pk * The delay is a heuristic. It is 2 when at 20Mhz, 2 at 25Mhz and 1
2057 1.25 pk * at 40Mhz. This needs testing.
2058 1.25 pk */
2059 1.25 pk DELAY(50/sc->sc_freq);
2060 1.25 pk if (NCRDMA_ISINTR(sc))
2061 1.25 pk goto again;
2062 1.25 pk goto out;
2063 1.1 thorpej }
2064 1.1 thorpej
2065 1.1 thorpej void
2066 1.1 thorpej ncr53c9x_abort(sc, ecb)
2067 1.1 thorpej struct ncr53c9x_softc *sc;
2068 1.1 thorpej struct ncr53c9x_ecb *ecb;
2069 1.1 thorpej {
2070 1.1 thorpej
2071 1.1 thorpej /* 2 secs for the abort */
2072 1.1 thorpej ecb->timeout = NCR_ABORT_TIMEOUT;
2073 1.1 thorpej ecb->flags |= ECB_ABORT;
2074 1.1 thorpej
2075 1.1 thorpej if (ecb == sc->sc_nexus) {
2076 1.1 thorpej /*
2077 1.1 thorpej * If we're still selecting, the message will be scheduled
2078 1.1 thorpej * after selection is complete.
2079 1.1 thorpej */
2080 1.1 thorpej if (sc->sc_state == NCR_CONNECTED)
2081 1.1 thorpej ncr53c9x_sched_msgout(SEND_ABORT);
2082 1.1 thorpej
2083 1.1 thorpej /*
2084 1.1 thorpej * Reschedule timeout. First, cancel a queued timeout (if any)
2085 1.1 thorpej * in case someone decides to call ncr53c9x_abort() from
2086 1.1 thorpej * elsewhere.
2087 1.1 thorpej */
2088 1.1 thorpej untimeout(ncr53c9x_timeout, ecb);
2089 1.1 thorpej timeout(ncr53c9x_timeout, ecb, (ecb->timeout * hz) / 1000);
2090 1.1 thorpej } else {
2091 1.23 pk /* The command should be on the nexus list */
2092 1.23 pk if ((ecb->flags & ECB_NEXUS) == 0) {
2093 1.23 pk scsi_print_addr(ecb->xs->sc_link);
2094 1.23 pk printf("ncr53c9x_abort: not NEXUS\n");
2095 1.23 pk ncr53c9x_init(sc, 1);
2096 1.23 pk }
2097 1.23 pk /*
2098 1.23 pk * Just leave the command on the nexus list.
2099 1.23 pk * XXX - what choice do we have but to reset the SCSI
2100 1.23 pk * eventually?
2101 1.23 pk */
2102 1.1 thorpej if (sc->sc_state == NCR_IDLE)
2103 1.1 thorpej ncr53c9x_sched(sc);
2104 1.1 thorpej }
2105 1.1 thorpej }
2106 1.1 thorpej
2107 1.1 thorpej void
2108 1.1 thorpej ncr53c9x_timeout(arg)
2109 1.1 thorpej void *arg;
2110 1.1 thorpej {
2111 1.1 thorpej struct ncr53c9x_ecb *ecb = arg;
2112 1.18 bouyer struct scsipi_xfer *xs = ecb->xs;
2113 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
2114 1.1 thorpej struct ncr53c9x_softc *sc = sc_link->adapter_softc;
2115 1.18 bouyer struct ncr53c9x_tinfo *ti = &sc->sc_tinfo[sc_link->scsipi_scsi.target];
2116 1.1 thorpej int s;
2117 1.1 thorpej
2118 1.18 bouyer scsi_print_addr(sc_link);
2119 1.1 thorpej printf("%s: timed out [ecb %p (flags 0x%x, dleft %x, stat %x)], "
2120 1.23 pk "<state %d, nexus %p, phase(l %x, c %x, p %x), resid %lx, "
2121 1.1 thorpej "msg(q %x,o %x) %s>",
2122 1.1 thorpej sc->sc_dev.dv_xname,
2123 1.1 thorpej ecb, ecb->flags, ecb->dleft, ecb->stat,
2124 1.23 pk sc->sc_state, sc->sc_nexus,
2125 1.23 pk NCR_READ_REG(sc, NCR_STAT),
2126 1.23 pk sc->sc_phase, sc->sc_prevphase,
2127 1.1 thorpej (long)sc->sc_dleft, sc->sc_msgpriq, sc->sc_msgout,
2128 1.1 thorpej NCRDMA_ISACTIVE(sc) ? "DMA active" : "");
2129 1.7 gwr #if NCR53C9X_DEBUG > 1
2130 1.1 thorpej printf("TRACE: %s.", ecb->trace);
2131 1.1 thorpej #endif
2132 1.1 thorpej
2133 1.1 thorpej s = splbio();
2134 1.1 thorpej
2135 1.1 thorpej if (ecb->flags & ECB_ABORT) {
2136 1.1 thorpej /* abort timed out */
2137 1.1 thorpej printf(" AGAIN\n");
2138 1.16 pk
2139 1.1 thorpej ncr53c9x_init(sc, 1);
2140 1.1 thorpej } else {
2141 1.1 thorpej /* abort the operation that has timed out */
2142 1.1 thorpej printf("\n");
2143 1.1 thorpej xs->error = XS_TIMEOUT;
2144 1.1 thorpej ncr53c9x_abort(sc, ecb);
2145 1.16 pk
2146 1.16 pk /* Disable sync mode if stuck in a data phase */
2147 1.16 pk if (ecb == sc->sc_nexus &&
2148 1.16 pk (ti->flags & T_SYNCMODE) != 0 &&
2149 1.16 pk (sc->sc_phase & (MSGI|CDI)) == 0) {
2150 1.18 bouyer scsi_print_addr(sc_link);
2151 1.16 pk printf("sync negotiation disabled\n");
2152 1.18 bouyer sc->sc_cfflags |= (1<<(sc_link->scsipi_scsi.target+8));
2153 1.16 pk }
2154 1.1 thorpej }
2155 1.1 thorpej
2156 1.1 thorpej splx(s);
2157 1.1 thorpej }
2158