ncr5380.c revision 1.20.4.1 1 1.20.4.1 jtc /* $NetBSD: ncr5380.c,v 1.20.4.1 1996/07/20 00:10:05 jtc Exp $ */
2 1.1 leo
3 1.1 leo /*
4 1.1 leo * Copyright (c) 1995 Leo Weppelman.
5 1.1 leo * All rights reserved.
6 1.1 leo *
7 1.1 leo * Redistribution and use in source and binary forms, with or without
8 1.1 leo * modification, are permitted provided that the following conditions
9 1.1 leo * are met:
10 1.1 leo * 1. Redistributions of source code must retain the above copyright
11 1.1 leo * notice, this list of conditions and the following disclaimer.
12 1.1 leo * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 leo * notice, this list of conditions and the following disclaimer in the
14 1.1 leo * documentation and/or other materials provided with the distribution.
15 1.1 leo * 3. All advertising materials mentioning features or use of this software
16 1.1 leo * must display the following acknowledgement:
17 1.1 leo * This product includes software developed by Leo Weppelman.
18 1.1 leo * 4. The name of the author may not be used to endorse or promote products
19 1.1 leo * derived from this software without specific prior written permission
20 1.1 leo *
21 1.1 leo * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 leo * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 leo * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 leo * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 leo * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 leo * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 leo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 leo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 leo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 leo * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 leo */
32 1.1 leo
33 1.6 leo /*
34 1.6 leo * Bit mask of targets you want debugging to be shown
35 1.6 leo */
36 1.6 leo u_char dbg_target_mask = 0x7f;
37 1.1 leo
38 1.1 leo /*
39 1.1 leo * Set bit for target when parity checking must be disabled.
40 1.1 leo * My (LWP) Maxtor 7245S seems to generate parity errors on about 50%
41 1.1 leo * of all transfers while the data is correct!?
42 1.1 leo */
43 1.4 leo u_char ncr5380_no_parchk = 0xff;
44 1.1 leo
45 1.13 leo #ifdef AUTO_SENSE
46 1.13 leo
47 1.13 leo /*
48 1.13 leo * Bit masks of targets that accept linked commands, and those
49 1.20 leo * that we've already checked out. Some devices will report
50 1.20 leo * that they support linked commands when they have problems with
51 1.20 leo * them. By default, don't try them on any devices. Allow an
52 1.20 leo * option to override.
53 1.13 leo */
54 1.20 leo #ifdef TRY_SCSI_LINKED_COMMANDS
55 1.20 leo u_char ncr_test_link = ((~TRY_SCSI_LINKED_COMMANDS) & 0x7f);
56 1.20 leo #else
57 1.20 leo u_char ncr_test_link = 0x7f;
58 1.20 leo #endif
59 1.13 leo u_char ncr_will_link = 0x00;
60 1.13 leo
61 1.13 leo #endif /* AUTO_SENSE */
62 1.13 leo
63 1.1 leo /*
64 1.1 leo * This is the default sense-command we send.
65 1.1 leo */
66 1.1 leo static u_char sense_cmd[] = {
67 1.6 leo REQUEST_SENSE, 0, 0, 0, sizeof(struct scsi_sense_data), 0
68 1.1 leo };
69 1.1 leo
70 1.1 leo /*
71 1.1 leo * True if the main co-routine is running
72 1.1 leo */
73 1.1 leo static volatile int main_running = 0;
74 1.1 leo
75 1.1 leo /*
76 1.1 leo * Mask of targets selected
77 1.1 leo */
78 1.4 leo static u_char busy;
79 1.1 leo
80 1.20 leo static void ncr5380_minphys __P((struct buf *bp));
81 1.20 leo static int ncr5380_scsi_cmd __P((struct scsi_xfer *xs));
82 1.20 leo static void ncr5380_show_scsi_cmd __P((struct scsi_xfer *xs));
83 1.1 leo
84 1.1 leo struct scsi_adapter ncr5380_switch = {
85 1.1 leo ncr5380_scsi_cmd, /* scsi_cmd() */
86 1.1 leo ncr5380_minphys, /* scsi_minphys() */
87 1.1 leo 0, /* open_target_lu() */
88 1.1 leo 0 /* close_target_lu() */
89 1.1 leo };
90 1.1 leo
91 1.1 leo struct scsi_device ncr5380_dev = {
92 1.1 leo NULL, /* use default error handler */
93 1.1 leo NULL, /* do not have a start functio */
94 1.1 leo NULL, /* have no async handler */
95 1.1 leo NULL /* Use default done routine */
96 1.1 leo };
97 1.1 leo
98 1.1 leo
99 1.1 leo static SC_REQ req_queue[NREQ];
100 1.1 leo static SC_REQ *free_head = NULL; /* Free request structures */
101 1.4 leo
102 1.1 leo
103 1.1 leo /*
104 1.1 leo * Inline functions:
105 1.1 leo */
106 1.1 leo
107 1.1 leo /*
108 1.1 leo * Determine the size of a SCSI command.
109 1.1 leo */
110 1.1 leo extern __inline__ int command_size(opcode)
111 1.1 leo u_char opcode;
112 1.1 leo {
113 1.4 leo switch ((opcode >> 4) & 0xf) {
114 1.1 leo case 0:
115 1.1 leo case 1:
116 1.4 leo return (6);
117 1.1 leo case 2:
118 1.1 leo case 3:
119 1.4 leo return (10);
120 1.1 leo }
121 1.4 leo return (12);
122 1.1 leo }
123 1.1 leo
124 1.1 leo
125 1.1 leo /*
126 1.1 leo * Wait for request-line to become active. When it doesn't return 0.
127 1.1 leo * Otherwise return != 0.
128 1.1 leo * The timeouts in the 'wait_req_*' functions are arbitrary and rather
129 1.1 leo * large. In 99% of the invocations nearly no timeout is needed but in
130 1.1 leo * some cases (especially when using my tapedrive, a Tandberg 3600) the
131 1.1 leo * device is busy internally and the first SCSI-phase will be delayed.
132 1.1 leo */
133 1.1 leo extern __inline__ int wait_req_true(void)
134 1.1 leo {
135 1.20 leo int timeout = 250000;
136 1.1 leo
137 1.4 leo while (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_REQ) && --timeout)
138 1.1 leo delay(1);
139 1.4 leo return (GET_5380_REG(NCR5380_IDSTAT) & SC_S_REQ);
140 1.1 leo }
141 1.1 leo
142 1.1 leo /*
143 1.1 leo * Wait for request-line to become inactive. When it doesn't return 0.
144 1.1 leo * Otherwise return != 0.
145 1.1 leo */
146 1.1 leo extern __inline__ int wait_req_false(void)
147 1.1 leo {
148 1.20 leo int timeout = 250000;
149 1.1 leo
150 1.4 leo while ((GET_5380_REG(NCR5380_IDSTAT) & SC_S_REQ) && --timeout)
151 1.1 leo delay(1);
152 1.4 leo return (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_REQ));
153 1.1 leo }
154 1.1 leo
155 1.8 leo extern __inline__ void ack_message()
156 1.8 leo {
157 1.8 leo SET_5380_REG(NCR5380_ICOM, 0);
158 1.8 leo }
159 1.8 leo
160 1.10 leo extern __inline__ void nack_message(SC_REQ *reqp, u_char msg)
161 1.8 leo {
162 1.8 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
163 1.10 leo reqp->msgout = msg;
164 1.8 leo }
165 1.8 leo
166 1.1 leo extern __inline__ void finish_req(SC_REQ *reqp)
167 1.1 leo {
168 1.1 leo int sps;
169 1.1 leo struct scsi_xfer *xs = reqp->xs;
170 1.1 leo
171 1.4 leo #ifdef REAL_DMA
172 1.4 leo /*
173 1.4 leo * If we bounced, free the bounce buffer
174 1.4 leo */
175 1.4 leo if (reqp->dr_flag & DRIVER_BOUNCING)
176 1.4 leo free_bounceb(reqp->bounceb);
177 1.4 leo #endif /* REAL_DMA */
178 1.6 leo #ifdef DBG_REQ
179 1.6 leo if (dbg_target_mask & (1 << reqp->targ_id))
180 1.6 leo show_request(reqp, "DONE");
181 1.6 leo #endif
182 1.6 leo #ifdef DBG_ERR_RET
183 1.20.4.1 jtc if ((dbg_target_mask & (1 << reqp->targ_id)) && (reqp->xs->error != 0))
184 1.6 leo show_request(reqp, "ERR_RET");
185 1.6 leo #endif
186 1.1 leo /*
187 1.1 leo * Return request to free-q
188 1.1 leo */
189 1.1 leo sps = splbio();
190 1.1 leo reqp->next = free_head;
191 1.1 leo free_head = reqp;
192 1.1 leo splx(sps);
193 1.1 leo
194 1.1 leo xs->flags |= ITSDONE;
195 1.13 leo if (!(reqp->dr_flag & DRIVER_LINKCHK))
196 1.13 leo scsi_done(xs);
197 1.1 leo }
198 1.1 leo
199 1.1 leo /*
200 1.1 leo * Auto config stuff....
201 1.1 leo */
202 1.4 leo int ncr_cprint __P((void *auxp, char *));
203 1.1 leo void ncr_attach __P((struct device *, struct device *, void *));
204 1.17 thorpej int ncr_match __P((struct device *, void *, void *));
205 1.1 leo
206 1.4 leo /*
207 1.4 leo * Tricks to make driver-name configurable
208 1.4 leo */
209 1.17 thorpej #define CFNAME(n) __CONCAT(n,_cd)
210 1.17 thorpej #define CANAME(n) __CONCAT(n,_ca)
211 1.4 leo #define CFSTRING(n) __STRING(n)
212 1.4 leo
213 1.17 thorpej struct cfattach CANAME(DRNAME) = {
214 1.17 thorpej sizeof(struct ncr_softc), ncr_match, ncr_attach
215 1.17 thorpej };
216 1.17 thorpej
217 1.4 leo struct cfdriver CFNAME(DRNAME) = {
218 1.17 thorpej NULL, CFSTRING(DRNAME), DV_DULL, NULL, 0
219 1.17 thorpej };
220 1.1 leo
221 1.1 leo int
222 1.17 thorpej ncr_match(pdp, match, auxp)
223 1.1 leo struct device *pdp;
224 1.17 thorpej void *match, *auxp;
225 1.1 leo {
226 1.17 thorpej return (machine_match(pdp, match, auxp, &CFNAME(DRNAME)));
227 1.1 leo }
228 1.1 leo
229 1.1 leo void
230 1.1 leo ncr_attach(pdp, dp, auxp)
231 1.1 leo struct device *pdp, *dp;
232 1.1 leo void *auxp;
233 1.1 leo {
234 1.1 leo struct ncr_softc *sc;
235 1.4 leo int i;
236 1.1 leo
237 1.1 leo sc = (struct ncr_softc *)dp;
238 1.1 leo
239 1.1 leo sc->sc_link.adapter_softc = sc;
240 1.1 leo sc->sc_link.adapter_target = 7;
241 1.1 leo sc->sc_link.adapter = &ncr5380_switch;
242 1.1 leo sc->sc_link.device = &ncr5380_dev;
243 1.1 leo sc->sc_link.openings = NREQ - 1;
244 1.1 leo
245 1.1 leo /*
246 1.9 leo * bitmasks
247 1.9 leo */
248 1.9 leo sc->sc_noselatn = 0;
249 1.9 leo sc->sc_selected = 0;
250 1.9 leo
251 1.9 leo /*
252 1.4 leo * Initialize machine-type specific things...
253 1.1 leo */
254 1.4 leo scsi_mach_init(sc);
255 1.4 leo printf("\n");
256 1.1 leo
257 1.1 leo /*
258 1.1 leo * Initialize request queue freelist.
259 1.1 leo */
260 1.4 leo for (i = 0; i < NREQ; i++) {
261 1.1 leo req_queue[i].next = free_head;
262 1.1 leo free_head = &req_queue[i];
263 1.1 leo }
264 1.1 leo
265 1.1 leo /*
266 1.1 leo * Initialize the host adapter
267 1.1 leo */
268 1.1 leo scsi_idisable();
269 1.4 leo ENABLE_NCR5380(sc);
270 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
271 1.4 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
272 1.4 leo SET_5380_REG(NCR5380_TCOM, 0);
273 1.4 leo SET_5380_REG(NCR5380_IDSTAT, 0);
274 1.4 leo scsi_ienable();
275 1.1 leo
276 1.1 leo /*
277 1.1 leo * attach all scsi units on us
278 1.1 leo */
279 1.4 leo config_found(dp, &sc->sc_link, ncr_cprint);
280 1.1 leo }
281 1.1 leo
282 1.1 leo /*
283 1.1 leo * print diag if name is NULL else just extra
284 1.1 leo */
285 1.1 leo int
286 1.4 leo ncr_cprint(auxp, name)
287 1.1 leo void *auxp;
288 1.1 leo char *name;
289 1.1 leo {
290 1.4 leo if (name == NULL)
291 1.4 leo return (UNCONF);
292 1.4 leo return (QUIET);
293 1.1 leo }
294 1.1 leo /*
295 1.1 leo * End of auto config stuff....
296 1.1 leo */
297 1.1 leo
298 1.1 leo /*
299 1.1 leo * Carry out a request from the high level driver.
300 1.1 leo */
301 1.1 leo static int
302 1.1 leo ncr5380_scsi_cmd(struct scsi_xfer *xs)
303 1.1 leo {
304 1.1 leo int sps;
305 1.13 leo SC_REQ *reqp, *link, *tmp;
306 1.1 leo int flags = xs->flags;
307 1.1 leo
308 1.1 leo /*
309 1.1 leo * We do not queue RESET commands
310 1.1 leo */
311 1.4 leo if (flags & SCSI_RESET) {
312 1.16 leo scsi_reset_verbose(xs->sc_link->adapter_softc,
313 1.16 leo "Got reset-command");
314 1.4 leo return (COMPLETE);
315 1.1 leo }
316 1.1 leo
317 1.1 leo /*
318 1.1 leo * Get a request block
319 1.1 leo */
320 1.1 leo sps = splbio();
321 1.4 leo if ((reqp = free_head) == 0) {
322 1.1 leo splx(sps);
323 1.4 leo return (TRY_AGAIN_LATER);
324 1.1 leo }
325 1.1 leo free_head = reqp->next;
326 1.1 leo reqp->next = NULL;
327 1.1 leo splx(sps);
328 1.1 leo
329 1.1 leo /*
330 1.1 leo * Initialize our private fields
331 1.1 leo */
332 1.4 leo reqp->dr_flag = (flags & SCSI_POLL) ? DRIVER_NOINT : 0;
333 1.1 leo reqp->phase = NR_PHASE;
334 1.1 leo reqp->msgout = MSG_NOOP;
335 1.1 leo reqp->status = SCSGOOD;
336 1.20 leo reqp->message = 0xff;
337 1.1 leo reqp->link = NULL;
338 1.1 leo reqp->xs = xs;
339 1.1 leo reqp->targ_id = xs->sc_link->target;
340 1.4 leo reqp->targ_lun = xs->sc_link->lun;
341 1.1 leo reqp->xdata_ptr = (u_char*)xs->data;
342 1.1 leo reqp->xdata_len = xs->datalen;
343 1.1 leo memcpy(&reqp->xcmd, xs->cmd, sizeof(struct scsi_generic));
344 1.4 leo reqp->xcmd.bytes[0] |= reqp->targ_lun << 5;
345 1.1 leo
346 1.1 leo /*
347 1.4 leo * Sanity check on flags...
348 1.4 leo */
349 1.4 leo if (flags & ITSDONE) {
350 1.4 leo ncr_tprint(reqp, "scsi_cmd: command already done.....\n");
351 1.4 leo xs->flags &= ~ITSDONE;
352 1.4 leo }
353 1.4 leo if (!(flags & INUSE)) {
354 1.4 leo ncr_tprint(reqp, "scsi_cmd: command not in use.....\n");
355 1.19 leo xs->flags |= INUSE;
356 1.4 leo }
357 1.4 leo
358 1.4 leo #ifdef REAL_DMA
359 1.4 leo /*
360 1.1 leo * Check if DMA can be used on this request
361 1.1 leo */
362 1.4 leo if (scsi_dmaok(reqp))
363 1.1 leo reqp->dr_flag |= DRIVER_DMAOK;
364 1.4 leo #endif /* REAL_DMA */
365 1.1 leo
366 1.1 leo /*
367 1.1 leo * Insert the command into the issue queue. Note that 'REQUEST SENSE'
368 1.1 leo * commands are inserted at the head of the queue since any command
369 1.1 leo * will clear the existing contingent allegience condition and the sense
370 1.1 leo * data is only valid while the condition exists.
371 1.1 leo * When possible, link the command to a previous command to the same
372 1.1 leo * target. This is not very sensible when AUTO_SENSE is not defined!
373 1.1 leo * Interrupts are disabled while we are fiddling with the issue-queue.
374 1.1 leo */
375 1.1 leo sps = splbio();
376 1.13 leo link = NULL;
377 1.4 leo if ((issue_q == NULL) || (reqp->xcmd.opcode == REQUEST_SENSE)) {
378 1.1 leo reqp->next = issue_q;
379 1.1 leo issue_q = reqp;
380 1.1 leo }
381 1.1 leo else {
382 1.1 leo tmp = issue_q;
383 1.1 leo do {
384 1.4 leo if (!link && (tmp->targ_id == reqp->targ_id) && !tmp->link)
385 1.1 leo link = tmp;
386 1.4 leo } while (tmp->next && (tmp = tmp->next));
387 1.1 leo tmp->next = reqp;
388 1.1 leo #ifdef AUTO_SENSE
389 1.13 leo if (link && (ncr_will_link & (1<<reqp->targ_id))) {
390 1.1 leo link->link = reqp;
391 1.12 jtc link->xcmd.bytes[link->xs->cmdlen-2] |= 1;
392 1.1 leo }
393 1.1 leo #endif
394 1.1 leo }
395 1.13 leo #ifdef AUTO_SENSE
396 1.13 leo /*
397 1.13 leo * If we haven't already, check the target for link support.
398 1.13 leo * Do this by prefixing the current command with a dummy
399 1.13 leo * Request_Sense command, link the dummy to the current
400 1.13 leo * command, and insert the dummy command at the head of the
401 1.13 leo * issue queue. Set the DRIVER_LINKCHK flag so that we'll
402 1.13 leo * ignore the results of the dummy command, since we only
403 1.13 leo * care about whether it was accepted or not.
404 1.13 leo */
405 1.13 leo if (!link && !(ncr_test_link & (1<<reqp->targ_id)) &&
406 1.13 leo (tmp = free_head) && !(reqp->dr_flag & DRIVER_NOINT)) {
407 1.13 leo free_head = tmp->next;
408 1.13 leo tmp->dr_flag = (reqp->dr_flag & ~DRIVER_DMAOK) | DRIVER_LINKCHK;
409 1.13 leo tmp->phase = NR_PHASE;
410 1.13 leo tmp->msgout = MSG_NOOP;
411 1.13 leo tmp->status = SCSGOOD;
412 1.13 leo tmp->xs = reqp->xs;
413 1.13 leo tmp->targ_id = reqp->targ_id;
414 1.13 leo tmp->targ_lun = reqp->targ_lun;
415 1.13 leo bcopy(sense_cmd, &tmp->xcmd, sizeof(sense_cmd));
416 1.13 leo tmp->xdata_ptr = (u_char *)&tmp->xs->sense;
417 1.13 leo tmp->xdata_len = sizeof(tmp->xs->sense);
418 1.13 leo ncr_test_link |= 1<<tmp->targ_id;
419 1.13 leo tmp->link = reqp;
420 1.13 leo tmp->xcmd.bytes[sizeof(sense_cmd)-2] |= 1;
421 1.13 leo tmp->next = issue_q;
422 1.13 leo issue_q = tmp;
423 1.13 leo #ifdef DBG_REQ
424 1.13 leo if (dbg_target_mask & (1 << tmp->targ_id))
425 1.13 leo show_request(tmp, "LINKCHK");
426 1.13 leo #endif
427 1.13 leo }
428 1.13 leo #endif
429 1.1 leo splx(sps);
430 1.1 leo
431 1.1 leo #ifdef DBG_REQ
432 1.6 leo if (dbg_target_mask & (1 << reqp->targ_id))
433 1.6 leo show_request(reqp, (reqp->xcmd.opcode == REQUEST_SENSE) ?
434 1.6 leo "HEAD":"TAIL");
435 1.1 leo #endif
436 1.1 leo
437 1.4 leo run_main(xs->sc_link->adapter_softc);
438 1.1 leo
439 1.12 jtc if (xs->flags & (SCSI_POLL|ITSDONE))
440 1.12 jtc return (COMPLETE); /* We're booting or run_main has completed */
441 1.4 leo return (SUCCESSFULLY_QUEUED);
442 1.1 leo }
443 1.1 leo
444 1.5 mycroft static void
445 1.1 leo ncr5380_minphys(struct buf *bp)
446 1.1 leo {
447 1.6 leo if (bp->b_bcount > MIN_PHYS)
448 1.1 leo bp->b_bcount = MIN_PHYS;
449 1.5 mycroft minphys(bp);
450 1.1 leo }
451 1.1 leo #undef MIN_PHYS
452 1.1 leo
453 1.16 leo static void
454 1.1 leo ncr5380_show_scsi_cmd(struct scsi_xfer *xs)
455 1.1 leo {
456 1.1 leo u_char *b = (u_char *) xs->cmd;
457 1.1 leo int i = 0;
458 1.1 leo
459 1.4 leo if (!(xs->flags & SCSI_RESET)) {
460 1.4 leo printf("(%d:%d:%d,0x%x)-", xs->sc_link->scsibus,
461 1.1 leo xs->sc_link->target, xs->sc_link->lun, xs->sc_link->flags);
462 1.4 leo while (i < xs->cmdlen) {
463 1.4 leo if (i)
464 1.1 leo printf(",");
465 1.1 leo printf("%x",b[i++]);
466 1.1 leo }
467 1.1 leo printf("-\n");
468 1.1 leo }
469 1.1 leo else {
470 1.4 leo printf("(%d:%d:%d)-RESET-\n",
471 1.1 leo xs->sc_link->scsibus,xs->sc_link->target, xs->sc_link->lun);
472 1.1 leo }
473 1.1 leo }
474 1.1 leo
475 1.1 leo /*
476 1.1 leo * The body of the driver.
477 1.1 leo */
478 1.1 leo static void
479 1.4 leo scsi_main(sc)
480 1.4 leo struct ncr_softc *sc;
481 1.1 leo {
482 1.1 leo SC_REQ *req, *prev;
483 1.1 leo int itype;
484 1.1 leo int sps;
485 1.1 leo
486 1.1 leo /*
487 1.1 leo * While running in the driver SCSI-interrupts are disabled.
488 1.1 leo */
489 1.1 leo scsi_idisable();
490 1.4 leo ENABLE_NCR5380(sc);
491 1.1 leo
492 1.4 leo PID("scsi_main1");
493 1.4 leo for (;;) {
494 1.1 leo sps = splbio();
495 1.4 leo if (!connected) {
496 1.4 leo /*
497 1.4 leo * Check if it is fair keep any exclusive access to DMA
498 1.4 leo * claimed. If not, stop queueing new jobs so the discon_q
499 1.4 leo * will be eventually drained and DMA can be given up.
500 1.4 leo */
501 1.4 leo if (!fair_to_keep_dma())
502 1.4 leo goto main_exit;
503 1.1 leo
504 1.1 leo /*
505 1.1 leo * Search through the issue-queue for a command
506 1.1 leo * destined for a target that isn't busy.
507 1.1 leo */
508 1.1 leo prev = NULL;
509 1.4 leo for (req=issue_q; req != NULL; prev = req, req = req->next) {
510 1.4 leo if (!(busy & (1 << req->targ_id))) {
511 1.1 leo /*
512 1.1 leo * Found one, remove it from the issue queue
513 1.1 leo */
514 1.4 leo if (prev == NULL)
515 1.1 leo issue_q = req->next;
516 1.1 leo else prev->next = req->next;
517 1.1 leo req->next = NULL;
518 1.1 leo break;
519 1.1 leo }
520 1.1 leo }
521 1.1 leo
522 1.1 leo /*
523 1.1 leo * When a request has just ended, we get here before an other
524 1.1 leo * device detects that the bus is free and that it can
525 1.1 leo * reconnect. The problem is that when this happens, we always
526 1.1 leo * baffle the device because our (initiator) id is higher. This
527 1.1 leo * can cause a sort of starvation on slow devices. So we check
528 1.1 leo * for a pending reselection here.
529 1.1 leo * Note that 'connected' will be non-null if the reselection
530 1.1 leo * succeeds.
531 1.1 leo */
532 1.4 leo if ((GET_5380_REG(NCR5380_IDSTAT) & (SC_S_SEL|SC_S_IO))
533 1.1 leo == (SC_S_SEL|SC_S_IO)){
534 1.4 leo if (req != NULL) {
535 1.1 leo req->next = issue_q;
536 1.1 leo issue_q = req;
537 1.1 leo }
538 1.1 leo splx(sps);
539 1.1 leo
540 1.4 leo reselect(sc);
541 1.4 leo scsi_clr_ipend();
542 1.1 leo goto connected;
543 1.1 leo }
544 1.1 leo
545 1.1 leo /*
546 1.1 leo * The host is not connected and there is no request
547 1.1 leo * pending, exit.
548 1.1 leo */
549 1.4 leo if (req == NULL) {
550 1.4 leo PID("scsi_main2");
551 1.1 leo goto main_exit;
552 1.1 leo }
553 1.1 leo
554 1.1 leo /*
555 1.1 leo * Re-enable interrupts before handling the request.
556 1.1 leo */
557 1.1 leo splx(sps);
558 1.1 leo
559 1.1 leo #ifdef DBG_REQ
560 1.6 leo if (dbg_target_mask & (1 << req->targ_id))
561 1.6 leo show_request(req, "TARGET");
562 1.1 leo #endif
563 1.1 leo /*
564 1.1 leo * We found a request. Try to connect to the target. If the
565 1.1 leo * initiator fails arbitration, the command is put back in the
566 1.1 leo * issue queue.
567 1.1 leo */
568 1.4 leo if (scsi_select(req, 0)) {
569 1.1 leo sps = splbio();
570 1.6 leo req->next = issue_q;
571 1.1 leo issue_q = req;
572 1.1 leo splx(sps);
573 1.1 leo #ifdef DBG_REQ
574 1.6 leo if (dbg_target_mask & (1 << req->targ_id))
575 1.6 leo ncr_tprint(req, "Select failed\n");
576 1.1 leo #endif
577 1.1 leo }
578 1.1 leo }
579 1.1 leo else splx(sps);
580 1.1 leo connected:
581 1.4 leo if (connected) {
582 1.1 leo /*
583 1.1 leo * If the host is currently connected but a 'real-dma' transfer
584 1.1 leo * is in progress, the 'end-of-dma' interrupt restarts main.
585 1.1 leo * So quit.
586 1.1 leo */
587 1.1 leo sps = splbio();
588 1.4 leo if (connected && (connected->dr_flag & DRIVER_IN_DMA)) {
589 1.4 leo PID("scsi_main3");
590 1.1 leo goto main_exit;
591 1.1 leo }
592 1.1 leo splx(sps);
593 1.1 leo
594 1.1 leo /*
595 1.1 leo * Let the target guide us through the bus-phases
596 1.1 leo */
597 1.15 leo while (information_transfer(sc) == -1)
598 1.1 leo ;
599 1.1 leo }
600 1.1 leo }
601 1.1 leo /* NEVER TO REACH HERE */
602 1.20.4.1 jtc show_phase(NULL, 0); /* XXX: Get rid of not used warning */
603 1.4 leo panic("ncr5380-SCSI: not designed to come here");
604 1.1 leo
605 1.1 leo main_exit:
606 1.1 leo /*
607 1.1 leo * We enter here with interrupts disabled. We are about to exit main
608 1.1 leo * so interrupts should be re-enabled. Because interrupts are edge
609 1.1 leo * triggered, we could already have missed the interrupt. Therefore
610 1.1 leo * we check the IRQ-line here and re-enter when we really missed a
611 1.1 leo * valid interrupt.
612 1.1 leo */
613 1.4 leo PID("scsi_main4");
614 1.1 leo scsi_ienable();
615 1.15 leo
616 1.15 leo /*
617 1.15 leo * If we're not currently connected, enable reselection
618 1.15 leo * interrupts.
619 1.15 leo */
620 1.15 leo if (!connected)
621 1.15 leo SET_5380_REG(NCR5380_IDSTAT, SC_HOST_ID);
622 1.15 leo
623 1.15 leo if (scsi_ipending()) {
624 1.4 leo if ((itype = check_intr(sc)) != INTR_SPURIOUS) {
625 1.1 leo scsi_idisable();
626 1.1 leo splx(sps);
627 1.1 leo
628 1.4 leo if (itype == INTR_RESEL)
629 1.4 leo reselect(sc);
630 1.4 leo #ifdef REAL_DMA
631 1.4 leo else dma_ready();
632 1.4 leo #else
633 1.9 leo else {
634 1.9 leo if (pdma_ready())
635 1.9 leo goto connected;
636 1.9 leo panic("Got DMA interrupt without DMA");
637 1.9 leo }
638 1.4 leo #endif
639 1.4 leo scsi_clr_ipend();
640 1.1 leo goto connected;
641 1.1 leo }
642 1.1 leo }
643 1.4 leo reconsider_dma();
644 1.1 leo main_running = 0;
645 1.1 leo splx(sps);
646 1.4 leo PID("scsi_main5");
647 1.1 leo }
648 1.1 leo
649 1.4 leo #ifdef REAL_DMA
650 1.1 leo /*
651 1.1 leo * The SCSI-DMA interrupt.
652 1.1 leo * This interrupt can only be triggered when running in non-polled DMA
653 1.1 leo * mode. When DMA is not active, it will be silently ignored, it is usually
654 1.1 leo * to late because the EOP interrupt of the controller happens just a tiny
655 1.1 leo * bit earlier. It might become usefull when scatter/gather is implemented,
656 1.1 leo * because in that case only part of the DATAIN/DATAOUT transfer is taken
657 1.1 leo * out of a single buffer.
658 1.1 leo */
659 1.4 leo static void
660 1.4 leo ncr_dma_intr(sc)
661 1.4 leo struct ncr_softc *sc;
662 1.1 leo {
663 1.1 leo SC_REQ *reqp;
664 1.1 leo int dma_done;
665 1.1 leo
666 1.4 leo PID("ncr_dma_intr");
667 1.4 leo if ((reqp = connected) && (reqp->dr_flag & DRIVER_IN_DMA)) {
668 1.1 leo scsi_idisable();
669 1.4 leo if (!(dma_done = dma_ready())) {
670 1.1 leo transfer_dma(reqp, reqp->phase, 0);
671 1.1 leo return;
672 1.1 leo }
673 1.4 leo run_main(sc);
674 1.1 leo }
675 1.1 leo }
676 1.4 leo #endif /* REAL_DMA */
677 1.1 leo
678 1.1 leo /*
679 1.1 leo * The SCSI-controller interrupt. This interrupt occurs on reselections and
680 1.4 leo * at the end of non-polled DMA-interrupts. It is assumed to be called from
681 1.4 leo * the machine-dependent hardware interrupt.
682 1.1 leo */
683 1.4 leo static void
684 1.4 leo ncr_ctrl_intr(sc)
685 1.4 leo struct ncr_softc *sc;
686 1.1 leo {
687 1.1 leo int itype;
688 1.1 leo
689 1.20.4.1 jtc if (main_running)
690 1.20.4.1 jtc return; /* scsi_main() should handle this one */
691 1.20.4.1 jtc
692 1.15 leo while (scsi_ipending()) {
693 1.1 leo scsi_idisable();
694 1.4 leo if ((itype = check_intr(sc)) != INTR_SPURIOUS) {
695 1.4 leo if (itype == INTR_RESEL)
696 1.4 leo reselect(sc);
697 1.1 leo else {
698 1.4 leo #ifdef REAL_DMA
699 1.20 leo int dma_done;
700 1.4 leo if (!(dma_done = dma_ready())) {
701 1.1 leo transfer_dma(connected, connected->phase, 0);
702 1.1 leo return;
703 1.1 leo }
704 1.4 leo #else
705 1.9 leo if (pdma_ready())
706 1.9 leo return;
707 1.4 leo panic("Got DMA interrupt without DMA\n");
708 1.4 leo #endif
709 1.1 leo }
710 1.4 leo scsi_clr_ipend();
711 1.1 leo }
712 1.4 leo run_main(sc);
713 1.1 leo return;
714 1.1 leo }
715 1.4 leo PID("ncr_ctrl_intr1");
716 1.1 leo }
717 1.1 leo
718 1.1 leo /*
719 1.1 leo * Initiate a connection path between the host and the target. The function
720 1.1 leo * first goes into arbitration for the SCSI-bus. When this succeeds, the target
721 1.1 leo * is selected and an 'IDENTIFY' message is send.
722 1.1 leo * Returns -1 when the arbitration failed. Otherwise 0 is returned. When
723 1.1 leo * the target does not respond (to either selection or 'MESSAGE OUT') the
724 1.1 leo * 'done' function is executed.
725 1.1 leo * The result code given by the driver can be influenced by setting 'code'
726 1.1 leo * to a non-zero value. This is the case when 'select' is called by abort.
727 1.1 leo */
728 1.1 leo static int
729 1.1 leo scsi_select(reqp, code)
730 1.1 leo SC_REQ *reqp;
731 1.16 leo int code;
732 1.1 leo {
733 1.4 leo u_char tmp[1];
734 1.4 leo u_char phase;
735 1.4 leo u_long cnt;
736 1.4 leo int sps;
737 1.9 leo u_int8_t atn_flag;
738 1.9 leo u_int8_t targ_bit;
739 1.4 leo struct ncr_softc *sc;
740 1.1 leo
741 1.4 leo sc = reqp->xs->sc_link->adapter_softc;
742 1.1 leo DBG_SELPRINT ("Starting arbitration\n", 0);
743 1.4 leo PID("scsi_select1");
744 1.1 leo
745 1.1 leo sps = splbio();
746 1.1 leo
747 1.1 leo /*
748 1.1 leo * Prevent a race condition here. If a reslection interrupt occurred
749 1.1 leo * between the decision to pick a new request and the call to select,
750 1.1 leo * we abort the selection.
751 1.1 leo * Interrupts are lowered when the 5380 is setup to arbitrate for the
752 1.1 leo * bus.
753 1.1 leo */
754 1.11 leo if (connected) {
755 1.1 leo splx(sps);
756 1.4 leo PID("scsi_select2");
757 1.4 leo return (-1);
758 1.1 leo }
759 1.1 leo
760 1.1 leo /*
761 1.1 leo * Set phase bits to 0, otherwise the 5380 won't drive the bus during
762 1.1 leo * selection.
763 1.1 leo */
764 1.4 leo SET_5380_REG(NCR5380_TCOM, 0);
765 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
766 1.1 leo
767 1.1 leo /*
768 1.1 leo * Arbitrate for the bus.
769 1.1 leo */
770 1.4 leo SET_5380_REG(NCR5380_DATA, SC_HOST_ID);
771 1.4 leo SET_5380_REG(NCR5380_MODE, SC_ARBIT);
772 1.1 leo
773 1.1 leo splx(sps);
774 1.1 leo
775 1.11 leo cnt = 10;
776 1.4 leo while (!(GET_5380_REG(NCR5380_ICOM) & SC_AIP) && --cnt)
777 1.1 leo delay(1);
778 1.1 leo
779 1.4 leo if (!(GET_5380_REG(NCR5380_ICOM) & SC_AIP)) {
780 1.4 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
781 1.11 leo SET_5380_REG(NCR5380_ICOM, 0);
782 1.11 leo DBG_SELPRINT ("Arbitration lost, bus not free\n",0);
783 1.4 leo PID("scsi_select3");
784 1.4 leo return (-1);
785 1.1 leo }
786 1.1 leo
787 1.1 leo /* The arbitration delay is 2.2 usecs */
788 1.1 leo delay(3);
789 1.1 leo
790 1.1 leo /*
791 1.1 leo * Check the result of the arbitration. If we failed, return -1.
792 1.1 leo */
793 1.4 leo if (GET_5380_REG(NCR5380_ICOM) & SC_LA) {
794 1.11 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
795 1.11 leo SET_5380_REG(NCR5380_ICOM, 0);
796 1.11 leo PID("scsi_select4");
797 1.11 leo return (-1);
798 1.11 leo }
799 1.11 leo
800 1.11 leo /*
801 1.11 leo * The spec requires that we should read the data register to
802 1.11 leo * check for higher id's and check the SC_LA again.
803 1.11 leo */
804 1.11 leo tmp[0] = GET_5380_REG(NCR5380_DATA);
805 1.11 leo if (tmp[0] & ~((SC_HOST_ID << 1) - 1)) {
806 1.11 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
807 1.11 leo SET_5380_REG(NCR5380_ICOM, 0);
808 1.11 leo DBG_SELPRINT ("Arbitration lost, higher id present\n",0);
809 1.11 leo PID("scsi_select5");
810 1.11 leo return (-1);
811 1.11 leo }
812 1.11 leo if (GET_5380_REG(NCR5380_ICOM) & SC_LA) {
813 1.11 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
814 1.11 leo SET_5380_REG(NCR5380_ICOM, 0);
815 1.11 leo DBG_SELPRINT ("Arbitration lost,deassert SC_ARBIT\n",0);
816 1.11 leo PID("scsi_select6");
817 1.11 leo return (-1);
818 1.1 leo }
819 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_SEL | SC_A_BSY);
820 1.4 leo if (GET_5380_REG(NCR5380_ICOM) & SC_LA) {
821 1.4 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
822 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
823 1.1 leo DBG_SELPRINT ("Arbitration lost, deassert SC_A_SEL\n", 0);
824 1.11 leo PID("scsi_select7");
825 1.4 leo return (-1);
826 1.1 leo }
827 1.1 leo /* Bus settle delay + Bus clear delay = 1.2 usecs */
828 1.1 leo delay(2);
829 1.1 leo DBG_SELPRINT ("Arbitration complete\n", 0);
830 1.1 leo
831 1.1 leo /*
832 1.1 leo * Now that we won the arbitration, start the selection.
833 1.1 leo */
834 1.11 leo targ_bit = 1 << reqp->targ_id;
835 1.9 leo SET_5380_REG(NCR5380_DATA, SC_HOST_ID | targ_bit);
836 1.9 leo
837 1.9 leo if (sc->sc_noselatn & targ_bit)
838 1.9 leo atn_flag = 0;
839 1.9 leo else
840 1.9 leo atn_flag = SC_A_ATN;
841 1.1 leo
842 1.1 leo /*
843 1.1 leo * Raise ATN while SEL is true before BSY goes false from arbitration,
844 1.1 leo * since this is the only way to guarantee that we'll get a MESSAGE OUT
845 1.1 leo * phase immediately after the selection.
846 1.1 leo */
847 1.9 leo SET_5380_REG(NCR5380_ICOM, SC_A_BSY | SC_A_SEL | atn_flag | SC_ADTB);
848 1.4 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
849 1.1 leo
850 1.1 leo /*
851 1.1 leo * Turn off reselection interrupts
852 1.1 leo */
853 1.4 leo SET_5380_REG(NCR5380_IDSTAT, 0);
854 1.1 leo
855 1.1 leo /*
856 1.1 leo * Reset BSY. The delay following it, surpresses a glitch in the
857 1.1 leo * 5380 which causes us to see our own BSY signal instead of that of
858 1.1 leo * the target.
859 1.1 leo */
860 1.9 leo SET_5380_REG(NCR5380_ICOM, SC_A_SEL | atn_flag | SC_ADTB);
861 1.1 leo delay(1);
862 1.1 leo
863 1.1 leo /*
864 1.1 leo * Wait for the target to react, the specs call for a timeout of
865 1.1 leo * 250 ms.
866 1.1 leo */
867 1.11 leo cnt = 25000;
868 1.4 leo while (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY) && --cnt)
869 1.4 leo delay(10);
870 1.1 leo
871 1.4 leo if (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY)) {
872 1.1 leo /*
873 1.1 leo * There is no reaction from the target, start the selection
874 1.1 leo * timeout procedure. We release the databus but keep SEL
875 1.1 leo * asserted. After that we wait a 'selection abort time' (200
876 1.1 leo * usecs) and 2 deskew delays (90 ns) and check BSY again.
877 1.1 leo * When BSY is asserted, we assume the selection succeeded,
878 1.1 leo * otherwise we release the bus.
879 1.1 leo */
880 1.11 leo SET_5380_REG(NCR5380_ICOM, SC_A_SEL | atn_flag);
881 1.1 leo delay(201);
882 1.4 leo if (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY)) {
883 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
884 1.1 leo reqp->xs->error = code ? code : XS_SELTIMEOUT;
885 1.1 leo DBG_SELPRINT ("Target %d not responding to sel\n",
886 1.1 leo reqp->targ_id);
887 1.13 leo if (reqp->dr_flag & DRIVER_LINKCHK)
888 1.13 leo ncr_test_link &= ~(1<<reqp->targ_id);
889 1.1 leo finish_req(reqp);
890 1.11 leo PID("scsi_select8");
891 1.4 leo return (0);
892 1.1 leo }
893 1.1 leo }
894 1.9 leo SET_5380_REG(NCR5380_ICOM, atn_flag);
895 1.1 leo
896 1.1 leo DBG_SELPRINT ("Target %d responding to select.\n", reqp->targ_id);
897 1.1 leo
898 1.1 leo /*
899 1.1 leo * The SCSI-interrupts are disabled while a request is being handled.
900 1.1 leo */
901 1.1 leo scsi_idisable();
902 1.1 leo
903 1.1 leo /*
904 1.9 leo * If we did not request ATN, then don't try to send IDENTIFY.
905 1.9 leo */
906 1.9 leo if (atn_flag == 0) {
907 1.9 leo reqp->phase = PH_CMD;
908 1.9 leo goto identify_failed;
909 1.9 leo }
910 1.9 leo
911 1.9 leo /*
912 1.9 leo * Here we prepare to send an 'IDENTIFY' message.
913 1.1 leo * Allow disconnect only when interrups are allowed.
914 1.1 leo */
915 1.4 leo tmp[0] = MSG_IDENTIFY(reqp->targ_lun,
916 1.9 leo (reqp->dr_flag & DRIVER_NOINT) ? 0 : 1);
917 1.1 leo cnt = 1;
918 1.1 leo phase = PH_MSGOUT;
919 1.9 leo
920 1.9 leo /*
921 1.9 leo * Since we followed the SCSI-spec and raised ATN while SEL was true
922 1.9 leo * but before BSY was false during the selection, a 'MESSAGE OUT'
923 1.9 leo * phase should follow. Unfortunately, this does not happen on
924 1.9 leo * all targets (Asante ethernet devices, for example), so we must
925 1.9 leo * check the actual mode if the message transfer fails--if the
926 1.9 leo * new phase is PH_CMD and has never been successfully selected
927 1.9 leo * w/ATN in the past, then we assume that it is an old device
928 1.9 leo * that doesn't support select w/ATN.
929 1.9 leo */
930 1.8 leo if (transfer_pio(&phase, tmp, &cnt, 0) || cnt) {
931 1.9 leo
932 1.9 leo if ((phase == PH_CMD) && !(sc->sc_selected & targ_bit)) {
933 1.9 leo DBG_SELPRINT ("Target %d: not responding to ATN.\n",
934 1.9 leo reqp->targ_id);
935 1.9 leo sc->sc_noselatn |= targ_bit;
936 1.9 leo reqp->phase = PH_CMD;
937 1.9 leo goto identify_failed;
938 1.9 leo }
939 1.9 leo
940 1.1 leo DBG_SELPRINT ("Target %d: failed to send identify\n",
941 1.1 leo reqp->targ_id);
942 1.1 leo /*
943 1.9 leo * Try to disconnect from the target. We cannot leave
944 1.9 leo * it just hanging here.
945 1.1 leo */
946 1.4 leo if (!reach_msg_out(sc, sizeof(struct scsi_generic))) {
947 1.1 leo u_long len = 1;
948 1.1 leo u_char phase = PH_MSGOUT;
949 1.1 leo u_char msg = MSG_ABORT;
950 1.1 leo
951 1.8 leo transfer_pio(&phase, &msg, &len, 0);
952 1.1 leo }
953 1.16 leo else scsi_reset_verbose(sc, "Connected to unidentified target");
954 1.1 leo
955 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
956 1.1 leo reqp->xs->error = code ? code : XS_DRIVER_STUFFUP;
957 1.1 leo finish_req(reqp);
958 1.11 leo PID("scsi_select9");
959 1.4 leo return (0);
960 1.1 leo }
961 1.1 leo reqp->phase = PH_MSGOUT;
962 1.1 leo
963 1.9 leo identify_failed:
964 1.9 leo sc->sc_selected |= targ_bit;
965 1.9 leo
966 1.1 leo #ifdef notyet /* LWP: Do we need timeouts in the driver? */
967 1.1 leo /*
968 1.1 leo * Command is connected, start timer ticking.
969 1.1 leo */
970 1.1 leo ccb_p->xtimeout = ccb_p->timeout + Lbolt;
971 1.1 leo #endif
972 1.1 leo
973 1.1 leo connected = reqp;
974 1.9 leo busy |= targ_bit;
975 1.11 leo PID("scsi_select10");
976 1.4 leo return (0);
977 1.1 leo }
978 1.1 leo
979 1.1 leo /*
980 1.1 leo * Return codes:
981 1.15 leo * 0: Job has finished or disconnected, find something else
982 1.15 leo * -1: keep on calling information_transfer() from scsi_main()
983 1.1 leo */
984 1.1 leo static int
985 1.15 leo information_transfer(sc)
986 1.15 leo struct ncr_softc *sc;
987 1.1 leo {
988 1.1 leo SC_REQ *reqp = connected;
989 1.1 leo u_char tmp, phase;
990 1.1 leo u_long len;
991 1.1 leo
992 1.4 leo PID("info_transf1");
993 1.1 leo /*
994 1.1 leo * Clear pending interrupts from 5380-chip.
995 1.1 leo */
996 1.4 leo scsi_clr_ipend();
997 1.1 leo
998 1.1 leo /*
999 1.15 leo * The SCSI-spec requires BSY to be true while connected to a target,
1000 1.15 leo * loosing it means we lost the target...
1001 1.15 leo * Also REQ needs to be asserted here to indicate that the bus-phase
1002 1.15 leo * is valid. When the target does not supply REQ within a 'reasonable'
1003 1.15 leo * amount of time, it's probably lost in it's own maze of twisting
1004 1.15 leo * passages, we have to reset the bus to free it.
1005 1.1 leo */
1006 1.15 leo if (GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY)
1007 1.15 leo wait_req_true();
1008 1.4 leo tmp = GET_5380_REG(NCR5380_IDSTAT);
1009 1.1 leo
1010 1.15 leo
1011 1.15 leo if ((tmp & (SC_S_BSY|SC_S_REQ)) != (SC_S_BSY|SC_S_REQ)) {
1012 1.1 leo busy &= ~(1 << reqp->targ_id);
1013 1.1 leo connected = NULL;
1014 1.15 leo reqp->xs->error = XS_TIMEOUT;
1015 1.1 leo finish_req(reqp);
1016 1.15 leo if (!(tmp & SC_S_REQ))
1017 1.16 leo scsi_reset_verbose(sc,
1018 1.16 leo "Timeout waiting for phase-change");
1019 1.4 leo PID("info_transf2");
1020 1.4 leo return (0);
1021 1.1 leo }
1022 1.1 leo
1023 1.15 leo phase = (tmp >> 2) & 7;
1024 1.15 leo if (phase != reqp->phase) {
1025 1.15 leo reqp->phase = phase;
1026 1.20.4.1 jtc #ifdef DBG_INF
1027 1.20.4.1 jtc if (dbg_target_mask & (1 << reqp->targ_id))
1028 1.20.4.1 jtc DBG_INFPRINT(show_phase, reqp, phase);
1029 1.20.4.1 jtc #endif
1030 1.1 leo }
1031 1.19 leo else {
1032 1.19 leo /*
1033 1.19 leo * Same data-phase. If same error give up
1034 1.19 leo */
1035 1.19 leo if ((reqp->msgout == MSG_ABORT)
1036 1.19 leo && ((phase == PH_DATAOUT) || (phase == PH_DATAIN))) {
1037 1.19 leo busy &= ~(1 << reqp->targ_id);
1038 1.19 leo connected = NULL;
1039 1.20.4.1 jtc reqp->xs->error = XS_TIMEOUT;
1040 1.19 leo finish_req(reqp);
1041 1.19 leo scsi_reset_verbose(sc, "Failure to abort command");
1042 1.19 leo return (0);
1043 1.19 leo }
1044 1.19 leo }
1045 1.1 leo
1046 1.4 leo switch (phase) {
1047 1.1 leo case PH_DATAOUT:
1048 1.1 leo #ifdef DBG_NOWRITE
1049 1.4 leo ncr_tprint(reqp, "NOWRITE set -- write attempt aborted.");
1050 1.1 leo reqp->msgout = MSG_ABORT;
1051 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
1052 1.4 leo return (-1);
1053 1.1 leo #endif /* DBG_NOWRITE */
1054 1.4 leo /*
1055 1.4 leo * If this is the first write using DMA, fill
1056 1.4 leo * the bounce buffer.
1057 1.4 leo */
1058 1.4 leo if (reqp->xdata_ptr == reqp->xs->data) { /* XXX */
1059 1.4 leo if (reqp->dr_flag & DRIVER_BOUNCING)
1060 1.4 leo bcopy(reqp->xdata_ptr, reqp->bounceb, reqp->xdata_len);
1061 1.4 leo }
1062 1.1 leo
1063 1.1 leo case PH_DATAIN:
1064 1.19 leo if (reqp->xdata_len <= 0) {
1065 1.19 leo /*
1066 1.19 leo * Target keeps requesting data. Try to get into
1067 1.19 leo * message-out phase by feeding/taking 100 byte.
1068 1.19 leo */
1069 1.19 leo ncr_tprint(reqp, "Target requests too much data\n");
1070 1.19 leo reqp->msgout = MSG_ABORT;
1071 1.19 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
1072 1.19 leo reach_msg_out(sc, 100);
1073 1.19 leo return (-1);
1074 1.19 leo }
1075 1.1 leo #ifdef REAL_DMA
1076 1.4 leo if (reqp->dr_flag & DRIVER_DMAOK) {
1077 1.1 leo int poll = REAL_DMA_POLL|(reqp->dr_flag & DRIVER_NOINT);
1078 1.1 leo transfer_dma(reqp, phase, poll);
1079 1.4 leo if (!poll)
1080 1.4 leo return (0);
1081 1.1 leo }
1082 1.1 leo else
1083 1.1 leo #endif
1084 1.1 leo {
1085 1.4 leo PID("info_transf3");
1086 1.1 leo len = reqp->xdata_len;
1087 1.4 leo #ifdef USE_PDMA
1088 1.7 leo if (transfer_pdma(&phase, reqp->xdata_ptr, &len) == 0)
1089 1.7 leo return (0);
1090 1.4 leo #else
1091 1.8 leo transfer_pio(&phase, reqp->xdata_ptr, &len, 0);
1092 1.4 leo #endif
1093 1.1 leo reqp->xdata_ptr += reqp->xdata_len - len;
1094 1.1 leo reqp->xdata_len = len;
1095 1.1 leo }
1096 1.4 leo return (-1);
1097 1.1 leo case PH_MSGIN:
1098 1.1 leo /*
1099 1.1 leo * We only expect single byte messages here.
1100 1.1 leo */
1101 1.1 leo len = 1;
1102 1.8 leo transfer_pio(&phase, &tmp, &len, 1);
1103 1.1 leo reqp->message = tmp;
1104 1.4 leo return (handle_message(reqp, tmp));
1105 1.1 leo case PH_MSGOUT:
1106 1.1 leo len = 1;
1107 1.8 leo transfer_pio(&phase, &reqp->msgout, &len, 0);
1108 1.4 leo if (reqp->msgout == MSG_ABORT) {
1109 1.1 leo busy &= ~(1 << reqp->targ_id);
1110 1.1 leo connected = NULL;
1111 1.19 leo if (!reqp->xs->error)
1112 1.19 leo reqp->xs->error = XS_DRIVER_STUFFUP;
1113 1.1 leo finish_req(reqp);
1114 1.4 leo PID("info_transf4");
1115 1.4 leo return (0);
1116 1.1 leo }
1117 1.1 leo reqp->msgout = MSG_NOOP;
1118 1.4 leo return (-1);
1119 1.1 leo case PH_CMD :
1120 1.1 leo len = command_size(reqp->xcmd.opcode);
1121 1.8 leo transfer_pio(&phase, (u_char *)&reqp->xcmd, &len, 0);
1122 1.4 leo PID("info_transf5");
1123 1.4 leo return (-1);
1124 1.1 leo case PH_STATUS:
1125 1.1 leo len = 1;
1126 1.8 leo transfer_pio(&phase, &tmp, &len, 0);
1127 1.1 leo reqp->status = tmp;
1128 1.4 leo PID("info_transf6");
1129 1.4 leo return (-1);
1130 1.1 leo default :
1131 1.4 leo ncr_tprint(reqp, "Unknown phase\n");
1132 1.1 leo }
1133 1.4 leo PID("info_transf7");
1134 1.4 leo return (-1);
1135 1.1 leo }
1136 1.1 leo
1137 1.1 leo /*
1138 1.1 leo * Handle the message 'msg' send to us by the target.
1139 1.1 leo * Return values:
1140 1.1 leo * 0 : The current command has completed.
1141 1.1 leo * -1 : Get on to the next phase.
1142 1.1 leo */
1143 1.1 leo static int
1144 1.1 leo handle_message(reqp, msg)
1145 1.1 leo SC_REQ *reqp;
1146 1.1 leo u_int msg;
1147 1.1 leo {
1148 1.1 leo int sps;
1149 1.12 jtc SC_REQ *prev, *req;
1150 1.1 leo
1151 1.4 leo PID("hmessage1");
1152 1.4 leo switch (msg) {
1153 1.1 leo /*
1154 1.1 leo * Linking lets us reduce the time required to get
1155 1.1 leo * the next command to the device, skipping the arbitration
1156 1.1 leo * and selection time. In the current implementation,
1157 1.1 leo * we merely have to start the next command pointed
1158 1.1 leo * to by 'next_link'.
1159 1.1 leo */
1160 1.1 leo case MSG_LINK_CMD_COMPLETE:
1161 1.1 leo case MSG_LINK_CMD_COMPLETEF:
1162 1.4 leo if (reqp->link == NULL) {
1163 1.4 leo ncr_tprint(reqp, "No link for linked command");
1164 1.10 leo nack_message(reqp, MSG_ABORT);
1165 1.4 leo PID("hmessage2");
1166 1.4 leo return (-1);
1167 1.1 leo }
1168 1.8 leo ack_message();
1169 1.12 jtc if (!(reqp->dr_flag & DRIVER_AUTOSEN)) {
1170 1.12 jtc reqp->xs->resid = reqp->xdata_len;
1171 1.12 jtc reqp->xs->error = 0;
1172 1.12 jtc }
1173 1.1 leo
1174 1.1 leo #ifdef AUTO_SENSE
1175 1.12 jtc if (check_autosense(reqp, 1) == -1)
1176 1.4 leo return (-1);
1177 1.1 leo #endif /* AUTO_SENSE */
1178 1.1 leo
1179 1.1 leo #ifdef DBG_REQ
1180 1.6 leo if (dbg_target_mask & (1 << reqp->targ_id))
1181 1.6 leo show_request(reqp->link, "LINK");
1182 1.1 leo #endif
1183 1.1 leo connected = reqp->link;
1184 1.12 jtc
1185 1.12 jtc /*
1186 1.12 jtc * Unlink the 'linked' request from the issue_q
1187 1.12 jtc */
1188 1.12 jtc sps = splbio();
1189 1.12 jtc prev = NULL;
1190 1.12 jtc req = issue_q;
1191 1.12 jtc for (; req != NULL; prev = req, req = req->next) {
1192 1.12 jtc if (req == connected)
1193 1.12 jtc break;
1194 1.12 jtc }
1195 1.12 jtc if (req == NULL)
1196 1.12 jtc panic("Inconsistent issue_q");
1197 1.12 jtc if (prev == NULL)
1198 1.12 jtc issue_q = req->next;
1199 1.12 jtc else prev->next = req->next;
1200 1.12 jtc req->next = NULL;
1201 1.12 jtc splx(sps);
1202 1.12 jtc
1203 1.1 leo finish_req(reqp);
1204 1.4 leo PID("hmessage3");
1205 1.4 leo return (-1);
1206 1.1 leo case MSG_ABORT:
1207 1.1 leo case MSG_CMDCOMPLETE:
1208 1.8 leo ack_message();
1209 1.6 leo connected = NULL;
1210 1.1 leo busy &= ~(1 << reqp->targ_id);
1211 1.6 leo if (!(reqp->dr_flag & DRIVER_AUTOSEN)) {
1212 1.1 leo reqp->xs->resid = reqp->xdata_len;
1213 1.1 leo reqp->xs->error = 0;
1214 1.6 leo }
1215 1.1 leo
1216 1.1 leo #ifdef AUTO_SENSE
1217 1.4 leo if (check_autosense(reqp, 0) == -1) {
1218 1.4 leo PID("hmessage4");
1219 1.4 leo return (0);
1220 1.1 leo }
1221 1.1 leo #endif /* AUTO_SENSE */
1222 1.1 leo
1223 1.1 leo finish_req(reqp);
1224 1.4 leo PID("hmessage5");
1225 1.4 leo return (0);
1226 1.1 leo case MSG_MESSAGE_REJECT:
1227 1.8 leo ack_message();
1228 1.4 leo PID("hmessage6");
1229 1.4 leo return (-1);
1230 1.1 leo case MSG_DISCONNECT:
1231 1.8 leo ack_message();
1232 1.1 leo #ifdef DBG_REQ
1233 1.6 leo if (dbg_target_mask & (1 << reqp->targ_id))
1234 1.6 leo show_request(reqp, "DISCON");
1235 1.1 leo #endif
1236 1.1 leo sps = splbio();
1237 1.1 leo connected = NULL;
1238 1.1 leo reqp->next = discon_q;
1239 1.1 leo discon_q = reqp;
1240 1.1 leo splx(sps);
1241 1.4 leo PID("hmessage7");
1242 1.4 leo return (0);
1243 1.1 leo case MSG_SAVEDATAPOINTER:
1244 1.1 leo case MSG_RESTOREPOINTERS:
1245 1.1 leo /*
1246 1.1 leo * We save pointers implicitely at disconnect.
1247 1.1 leo * So we can ignore these messages.
1248 1.1 leo */
1249 1.8 leo ack_message();
1250 1.4 leo PID("hmessage8");
1251 1.4 leo return (-1);
1252 1.8 leo case MSG_EXTENDED:
1253 1.10 leo nack_message(reqp, MSG_MESSAGE_REJECT);
1254 1.8 leo PID("hmessage9");
1255 1.8 leo return (-1);
1256 1.1 leo default:
1257 1.20 leo if ((msg & 0x80) && !(msg & 0x18)) { /* IDENTIFY */
1258 1.20 leo PID("hmessage10");
1259 1.20 leo ack_message();
1260 1.20 leo return (0);
1261 1.20 leo } else {
1262 1.20 leo ncr_tprint(reqp,
1263 1.20 leo "Unknown message %x. Rejecting.\n",
1264 1.20 leo msg);
1265 1.20 leo nack_message(reqp, MSG_MESSAGE_REJECT);
1266 1.20 leo }
1267 1.4 leo return (-1);
1268 1.1 leo }
1269 1.20 leo PID("hmessage11");
1270 1.4 leo return (-1);
1271 1.1 leo }
1272 1.1 leo
1273 1.1 leo /*
1274 1.1 leo * Handle reselection. If a valid reconnection occurs, connected
1275 1.1 leo * points at the reconnected command. The command is removed from the
1276 1.1 leo * disconnected queue.
1277 1.1 leo */
1278 1.1 leo static void
1279 1.4 leo reselect(sc)
1280 1.4 leo struct ncr_softc *sc;
1281 1.1 leo {
1282 1.1 leo u_char phase;
1283 1.1 leo u_long len;
1284 1.1 leo u_char msg;
1285 1.1 leo u_char target_mask;
1286 1.1 leo int abort = 0;
1287 1.20 leo SC_REQ *tmp, *prev;
1288 1.1 leo
1289 1.4 leo PID("reselect1");
1290 1.4 leo target_mask = GET_5380_REG(NCR5380_DATA) & ~SC_HOST_ID;
1291 1.1 leo
1292 1.1 leo /*
1293 1.1 leo * At this point, we have detected that our SCSI-id is on the bus,
1294 1.1 leo * SEL is true and BSY was false for at least one bus settle
1295 1.1 leo * delay (400 ns.).
1296 1.1 leo * We must assert BSY ourselves, until the target drops the SEL signal.
1297 1.8 leo * The SCSI-spec specifies no maximum time for this, so we have to
1298 1.8 leo * choose something long enough to suit all targets.
1299 1.1 leo */
1300 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_BSY);
1301 1.12 jtc len = 250000;
1302 1.7 leo while ((GET_5380_REG(NCR5380_IDSTAT) & SC_S_SEL) && (len > 0)) {
1303 1.7 leo delay(1);
1304 1.7 leo len--;
1305 1.7 leo }
1306 1.7 leo if (GET_5380_REG(NCR5380_IDSTAT) & SC_S_SEL) {
1307 1.7 leo /* Damn SEL isn't dropping */
1308 1.16 leo scsi_reset_verbose(sc, "Target won't drop SEL during Reselect");
1309 1.7 leo return;
1310 1.7 leo }
1311 1.7 leo
1312 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
1313 1.1 leo
1314 1.1 leo /*
1315 1.12 jtc * Check if the reselection is still valid. Check twice because
1316 1.12 jtc * of possible line glitches - cheaper than delay(1) and we need
1317 1.12 jtc * only a few nanoseconds.
1318 1.12 jtc */
1319 1.12 jtc if (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY)) {
1320 1.12 jtc if (!(GET_5380_REG(NCR5380_IDSTAT) & SC_S_BSY)) {
1321 1.12 jtc ncr_aprint(sc, "Stepped into the reselection timeout\n");
1322 1.12 jtc return;
1323 1.12 jtc }
1324 1.12 jtc }
1325 1.12 jtc
1326 1.12 jtc /*
1327 1.1 leo * Get the expected identify message.
1328 1.1 leo */
1329 1.1 leo phase = PH_MSGIN;
1330 1.1 leo len = 1;
1331 1.8 leo transfer_pio(&phase, &msg, &len, 0);
1332 1.4 leo if (len || !MSG_ISIDENTIFY(msg)) {
1333 1.4 leo ncr_aprint(sc, "Expecting IDENTIFY, got 0x%x\n", msg);
1334 1.1 leo abort = 1;
1335 1.20 leo tmp = NULL;
1336 1.1 leo }
1337 1.1 leo else {
1338 1.1 leo /*
1339 1.1 leo * Find the command reconnecting
1340 1.1 leo */
1341 1.4 leo for (tmp = discon_q, prev = NULL; tmp; prev = tmp, tmp = tmp->next){
1342 1.4 leo if (target_mask == (1 << tmp->targ_id)) {
1343 1.4 leo if (prev)
1344 1.1 leo prev->next = tmp->next;
1345 1.1 leo else discon_q = tmp->next;
1346 1.1 leo tmp->next = NULL;
1347 1.1 leo break;
1348 1.1 leo }
1349 1.1 leo }
1350 1.4 leo if (tmp == NULL) {
1351 1.4 leo ncr_aprint(sc, "No disconnected job for targetmask %x\n",
1352 1.1 leo target_mask);
1353 1.4 leo abort = 1;
1354 1.1 leo }
1355 1.1 leo }
1356 1.4 leo if (abort) {
1357 1.1 leo msg = MSG_ABORT;
1358 1.1 leo len = 1;
1359 1.1 leo phase = PH_MSGOUT;
1360 1.1 leo
1361 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
1362 1.13 leo if (transfer_pio(&phase, &msg, &len, 0) || len)
1363 1.16 leo scsi_reset_verbose(sc, "Failure to abort reselection");
1364 1.1 leo }
1365 1.1 leo else {
1366 1.1 leo connected = tmp;
1367 1.1 leo #ifdef DBG_REQ
1368 1.6 leo if (dbg_target_mask & (1 << tmp->targ_id))
1369 1.6 leo show_request(tmp, "RECON");
1370 1.1 leo #endif
1371 1.1 leo }
1372 1.4 leo PID("reselect2");
1373 1.1 leo }
1374 1.1 leo
1375 1.1 leo /*
1376 1.4 leo * Transfer data in a given phase using programmed I/O.
1377 1.1 leo * Returns -1 when a different phase is entered without transferring the
1378 1.8 leo * maximum number of bytes, 0 if all bytes transferred or exit is in the same
1379 1.1 leo * phase.
1380 1.1 leo */
1381 1.1 leo static int
1382 1.8 leo transfer_pio(phase, data, len, dont_drop_ack)
1383 1.1 leo u_char *phase;
1384 1.1 leo u_char *data;
1385 1.1 leo u_long *len;
1386 1.8 leo int dont_drop_ack;
1387 1.1 leo {
1388 1.1 leo u_int cnt = *len;
1389 1.1 leo u_char ph = *phase;
1390 1.8 leo u_char tmp, new_icom;
1391 1.1 leo
1392 1.1 leo DBG_PIOPRINT ("SCSI: transfer_pio start: phase: %d, len: %d\n", ph,cnt);
1393 1.4 leo PID("tpio1");
1394 1.4 leo SET_5380_REG(NCR5380_TCOM, ph);
1395 1.1 leo do {
1396 1.4 leo if (!wait_req_true()) {
1397 1.20.4.1 jtc DBG_PIOPRINT ("SCSI: transfer_pio: missing REQ\n", 0, 0);
1398 1.1 leo break;
1399 1.1 leo }
1400 1.4 leo if (((GET_5380_REG(NCR5380_IDSTAT) >> 2) & 7) != ph) {
1401 1.20.4.1 jtc DBG_PIOPRINT ("SCSI: transfer_pio: phase mismatch\n", 0, 0);
1402 1.1 leo break;
1403 1.1 leo }
1404 1.4 leo if (PH_IN(ph)) {
1405 1.4 leo *data++ = GET_5380_REG(NCR5380_DATA);
1406 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ACK);
1407 1.8 leo if ((cnt == 1) && dont_drop_ack)
1408 1.8 leo new_icom = SC_A_ACK;
1409 1.8 leo else new_icom = 0;
1410 1.1 leo }
1411 1.1 leo else {
1412 1.4 leo SET_5380_REG(NCR5380_DATA, *data++);
1413 1.1 leo
1414 1.1 leo /*
1415 1.1 leo * The SCSI-standard suggests that in the 'MESSAGE OUT' phase,
1416 1.1 leo * the initiator should drop ATN on the last byte of the
1417 1.1 leo * message phase after REQ has been asserted for the handshake
1418 1.1 leo * but before the initiator raises ACK.
1419 1.1 leo */
1420 1.4 leo if (!( (ph == PH_MSGOUT) && (cnt > 1) )) {
1421 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_ADTB);
1422 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_ADTB | SC_A_ACK);
1423 1.8 leo new_icom = 0;
1424 1.1 leo }
1425 1.1 leo else {
1426 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_ADTB | SC_A_ATN);
1427 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_ADTB|SC_A_ATN|SC_A_ACK);
1428 1.8 leo new_icom = SC_A_ATN;
1429 1.1 leo }
1430 1.1 leo }
1431 1.4 leo if (!wait_req_false()) {
1432 1.1 leo DBG_PIOPRINT ("SCSI: transfer_pio - REQ not dropping\n", 0, 0);
1433 1.1 leo break;
1434 1.1 leo }
1435 1.8 leo SET_5380_REG(NCR5380_ICOM, new_icom);
1436 1.1 leo
1437 1.4 leo } while (--cnt);
1438 1.1 leo
1439 1.4 leo if ((tmp = GET_5380_REG(NCR5380_IDSTAT)) & SC_S_REQ)
1440 1.1 leo *phase = (tmp >> 2) & 7;
1441 1.1 leo else *phase = NR_PHASE;
1442 1.1 leo *len = cnt;
1443 1.1 leo DBG_PIOPRINT ("SCSI: transfer_pio done: phase: %d, len: %d\n",
1444 1.1 leo *phase, cnt);
1445 1.4 leo PID("tpio2");
1446 1.4 leo if (!cnt || (*phase == ph))
1447 1.4 leo return (0);
1448 1.4 leo return (-1);
1449 1.1 leo }
1450 1.1 leo
1451 1.4 leo #ifdef REAL_DMA
1452 1.20.4.1 jtc
1453 1.1 leo /*
1454 1.1 leo * Start a DMA-transfer on the device using the current pointers.
1455 1.4 leo * If 'poll' is true, the function busy-waits until DMA has completed.
1456 1.1 leo */
1457 1.1 leo static void
1458 1.1 leo transfer_dma(reqp, phase, poll)
1459 1.1 leo SC_REQ *reqp;
1460 1.1 leo u_int phase;
1461 1.1 leo int poll;
1462 1.1 leo {
1463 1.4 leo int dma_done;
1464 1.1 leo u_char mbase = 0;
1465 1.1 leo int sps;
1466 1.1 leo
1467 1.1 leo again:
1468 1.4 leo PID("tdma1");
1469 1.4 leo
1470 1.1 leo /*
1471 1.1 leo * We should be in phase, otherwise we are not allowed to
1472 1.1 leo * drive the bus.
1473 1.1 leo */
1474 1.4 leo SET_5380_REG(NCR5380_TCOM, phase);
1475 1.1 leo
1476 1.1 leo /*
1477 1.1 leo * Defer interrupts until DMA is fully running.
1478 1.1 leo */
1479 1.1 leo sps = splbio();
1480 1.1 leo
1481 1.1 leo /*
1482 1.1 leo * Clear pending interrupts and parity errors.
1483 1.1 leo */
1484 1.4 leo scsi_clr_ipend();
1485 1.1 leo
1486 1.4 leo if (!poll) {
1487 1.1 leo /*
1488 1.1 leo * Enable SCSI interrupts and set IN_DMA flag, set 'mbase'
1489 1.1 leo * to the interrupts we want enabled.
1490 1.1 leo */
1491 1.1 leo scsi_ienable();
1492 1.1 leo reqp->dr_flag |= DRIVER_IN_DMA;
1493 1.1 leo mbase = SC_E_EOPI | SC_MON_BSY;
1494 1.1 leo }
1495 1.4 leo else scsi_idisable();
1496 1.4 leo mbase |= IMODE_BASE | SC_M_DMA;
1497 1.4 leo scsi_dma_setup(reqp, phase, mbase);
1498 1.1 leo
1499 1.1 leo splx(sps);
1500 1.1 leo
1501 1.4 leo if (poll) {
1502 1.1 leo /*
1503 1.4 leo * On polled-dma transfers, we wait here until the
1504 1.4 leo * 'end-of-dma' condition occurs.
1505 1.4 leo */
1506 1.4 leo poll_edma(reqp);
1507 1.4 leo if (!(dma_done = dma_ready()))
1508 1.1 leo goto again;
1509 1.1 leo }
1510 1.4 leo PID("tdma2");
1511 1.1 leo }
1512 1.1 leo
1513 1.1 leo /*
1514 1.1 leo * Check results of a DMA data-transfer.
1515 1.1 leo */
1516 1.1 leo static int
1517 1.4 leo dma_ready()
1518 1.1 leo {
1519 1.1 leo SC_REQ *reqp = connected;
1520 1.4 leo int dmstat, is_edma;
1521 1.4 leo long bytes_left, bytes_done;
1522 1.1 leo
1523 1.4 leo is_edma = get_dma_result(reqp, &bytes_left);
1524 1.4 leo dmstat = GET_5380_REG(NCR5380_DMSTAT);
1525 1.1 leo
1526 1.1 leo /*
1527 1.1 leo * Check if the call is sensible and not caused by any spurious
1528 1.1 leo * interrupt.
1529 1.1 leo */
1530 1.4 leo if (!is_edma && !(dmstat & (SC_END_DMA|SC_BSY_ERR))
1531 1.4 leo && (dmstat & SC_PHS_MTCH) ) {
1532 1.14 leo ncr_tprint(reqp, "dma_ready: spurious call "
1533 1.4 leo "(dm:%x,last_hit: %s)\n",
1534 1.4 leo #ifdef DBG_PID
1535 1.14 leo dmstat, last_hit[DBG_PID-1]);
1536 1.4 leo #else
1537 1.14 leo dmstat, "unknown");
1538 1.4 leo #endif
1539 1.4 leo return (0);
1540 1.1 leo }
1541 1.1 leo
1542 1.1 leo /*
1543 1.4 leo * Clear all (pending) interrupts.
1544 1.1 leo */
1545 1.4 leo scsi_clr_ipend();
1546 1.1 leo
1547 1.1 leo /*
1548 1.1 leo * Update various transfer-pointers/lengths
1549 1.1 leo */
1550 1.1 leo bytes_done = reqp->dm_cur->dm_count - bytes_left;
1551 1.1 leo
1552 1.4 leo if ((reqp->dr_flag & DRIVER_BOUNCING) && (PH_IN(reqp->phase))) {
1553 1.4 leo /*
1554 1.4 leo * Copy the bytes read until now from the bounce buffer
1555 1.4 leo * to the 'real' destination. Flush the data-cache
1556 1.4 leo * before copying.
1557 1.4 leo */
1558 1.4 leo PCIA();
1559 1.4 leo bcopy(reqp->bouncerp, reqp->xdata_ptr, bytes_done);
1560 1.4 leo reqp->bouncerp += bytes_done;
1561 1.4 leo }
1562 1.4 leo
1563 1.1 leo reqp->xdata_ptr = &reqp->xdata_ptr[bytes_done]; /* XXX */
1564 1.1 leo reqp->xdata_len -= bytes_done; /* XXX */
1565 1.4 leo if ((reqp->dm_cur->dm_count -= bytes_done) == 0)
1566 1.1 leo reqp->dm_cur++;
1567 1.1 leo else reqp->dm_cur->dm_addr += bytes_done;
1568 1.1 leo
1569 1.4 leo if (PH_IN(reqp->phase) && (dmstat & SC_PAR_ERR)) {
1570 1.19 leo if (!(ncr5380_no_parchk & (1 << reqp->targ_id))) {
1571 1.19 leo ncr_tprint(reqp, "parity error in data-phase\n");
1572 1.19 leo reqp->xs->error = XS_TIMEOUT;
1573 1.19 leo }
1574 1.1 leo }
1575 1.1 leo
1576 1.1 leo /*
1577 1.1 leo * DMA mode should always be reset even when we will continue with the
1578 1.11 leo * next chain. It is also essential to clear the MON_BUSY because
1579 1.11 leo * when LOST_BUSY is unexpectedly set, we will not be able to drive
1580 1.11 leo * the bus....
1581 1.1 leo */
1582 1.11 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
1583 1.4 leo
1584 1.4 leo
1585 1.4 leo if ((dmstat & SC_BSY_ERR) || !(dmstat & SC_PHS_MTCH)
1586 1.4 leo || (reqp->dm_cur > reqp->dm_last) || (reqp->xs->error)) {
1587 1.1 leo
1588 1.1 leo /*
1589 1.1 leo * Tell interrupt functions DMA mode has ended.
1590 1.1 leo */
1591 1.1 leo reqp->dr_flag &= ~DRIVER_IN_DMA;
1592 1.1 leo
1593 1.1 leo /*
1594 1.4 leo * Clear mode and icom
1595 1.1 leo */
1596 1.4 leo SET_5380_REG(NCR5380_MODE, IMODE_BASE);
1597 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
1598 1.1 leo
1599 1.4 leo if (dmstat & SC_BSY_ERR) {
1600 1.4 leo if (!reqp->xs->error)
1601 1.19 leo reqp->xs->error = XS_TIMEOUT;
1602 1.1 leo finish_req(reqp);
1603 1.4 leo PID("dma_ready1");
1604 1.4 leo return (1);
1605 1.1 leo }
1606 1.1 leo
1607 1.4 leo if (reqp->xs->error != 0) {
1608 1.4 leo ncr_tprint(reqp, "dma-ready: code = %d\n", reqp->xs->error); /* LWP */
1609 1.1 leo reqp->msgout = MSG_ABORT;
1610 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
1611 1.1 leo }
1612 1.4 leo PID("dma_ready2");
1613 1.4 leo return (1);
1614 1.1 leo }
1615 1.4 leo return (0);
1616 1.1 leo }
1617 1.4 leo #endif /* REAL_DMA */
1618 1.1 leo
1619 1.1 leo static int
1620 1.1 leo check_autosense(reqp, linked)
1621 1.1 leo SC_REQ *reqp;
1622 1.1 leo int linked;
1623 1.1 leo {
1624 1.1 leo int sps;
1625 1.1 leo
1626 1.1 leo /*
1627 1.13 leo * If this is the driver's Link Check for this target, ignore
1628 1.13 leo * the results of the command. All we care about is whether we
1629 1.13 leo * got here from a LINK_CMD_COMPLETE or CMD_COMPLETE message.
1630 1.13 leo */
1631 1.13 leo PID("linkcheck");
1632 1.13 leo if (reqp->dr_flag & DRIVER_LINKCHK) {
1633 1.13 leo if (linked)
1634 1.13 leo ncr_will_link |= 1<<reqp->targ_id;
1635 1.13 leo else ncr_tprint(reqp, "Does not support linked commands\n");
1636 1.13 leo return (0);
1637 1.13 leo }
1638 1.13 leo /*
1639 1.1 leo * If we not executing an auto-sense and the status code
1640 1.1 leo * is request-sense, we automatically issue a request
1641 1.1 leo * sense command.
1642 1.1 leo */
1643 1.4 leo PID("cautos1");
1644 1.4 leo if (!(reqp->dr_flag & DRIVER_AUTOSEN)) {
1645 1.12 jtc switch (reqp->status & SCSMASK) {
1646 1.12 jtc case SCSCHKC:
1647 1.12 jtc bcopy(sense_cmd, &reqp->xcmd, sizeof(sense_cmd));
1648 1.1 leo reqp->xdata_ptr = (u_char *)&reqp->xs->sense;
1649 1.1 leo reqp->xdata_len = sizeof(reqp->xs->sense);
1650 1.1 leo reqp->dr_flag |= DRIVER_AUTOSEN;
1651 1.1 leo reqp->dr_flag &= ~DRIVER_DMAOK;
1652 1.4 leo if (!linked) {
1653 1.1 leo sps = splbio();
1654 1.1 leo reqp->next = issue_q;
1655 1.1 leo issue_q = reqp;
1656 1.1 leo splx(sps);
1657 1.1 leo }
1658 1.13 leo else reqp->xcmd.bytes[sizeof(sense_cmd)-2] |= 1;
1659 1.1 leo
1660 1.1 leo #ifdef DBG_REQ
1661 1.6 leo bzero(reqp->xdata_ptr, reqp->xdata_len);
1662 1.6 leo if (dbg_target_mask & (1 << reqp->targ_id))
1663 1.6 leo show_request(reqp, "AUTO-SENSE");
1664 1.1 leo #endif
1665 1.4 leo PID("cautos2");
1666 1.4 leo return (-1);
1667 1.12 jtc case SCSBUSY:
1668 1.12 jtc reqp->xs->error = XS_BUSY;
1669 1.12 jtc return (0);
1670 1.1 leo }
1671 1.1 leo }
1672 1.1 leo else {
1673 1.1 leo /*
1674 1.1 leo * An auto-sense has finished
1675 1.1 leo */
1676 1.4 leo if ((reqp->status & SCSMASK) != SCSGOOD)
1677 1.1 leo reqp->xs->error = XS_DRIVER_STUFFUP; /* SC_E_AUTOSEN; */
1678 1.1 leo else reqp->xs->error = XS_SENSE;
1679 1.1 leo reqp->status = SCSCHKC;
1680 1.1 leo }
1681 1.4 leo PID("cautos3");
1682 1.4 leo return (0);
1683 1.1 leo }
1684 1.1 leo
1685 1.1 leo static int
1686 1.4 leo reach_msg_out(sc, len)
1687 1.4 leo struct ncr_softc *sc;
1688 1.4 leo u_long len;
1689 1.1 leo {
1690 1.1 leo u_char phase;
1691 1.1 leo u_char data;
1692 1.19 leo u_long n = len;
1693 1.1 leo
1694 1.4 leo ncr_aprint(sc, "Trying to reach Message-out phase\n");
1695 1.4 leo if ((phase = GET_5380_REG(NCR5380_IDSTAT)) & SC_S_REQ)
1696 1.1 leo phase = (phase >> 2) & 7;
1697 1.4 leo else return (-1);
1698 1.4 leo ncr_aprint(sc, "Trying to reach Message-out phase, now: %d\n", phase);
1699 1.4 leo if (phase == PH_MSGOUT)
1700 1.4 leo return (0);
1701 1.1 leo
1702 1.4 leo SET_5380_REG(NCR5380_TCOM, phase);
1703 1.1 leo
1704 1.1 leo do {
1705 1.4 leo if (!wait_req_true())
1706 1.1 leo break;
1707 1.4 leo if (((GET_5380_REG(NCR5380_IDSTAT) >> 2) & 7) != phase)
1708 1.1 leo break;
1709 1.4 leo if (PH_IN(phase)) {
1710 1.4 leo data = GET_5380_REG(NCR5380_DATA);
1711 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ACK | SC_A_ATN);
1712 1.1 leo }
1713 1.1 leo else {
1714 1.4 leo SET_5380_REG(NCR5380_DATA, 0);
1715 1.20.4.1 jtc SET_5380_REG(NCR5380_ICOM, SC_ADTB|SC_A_ATN);
1716 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_ADTB|SC_A_ACK|SC_A_ATN);
1717 1.1 leo }
1718 1.4 leo if (!wait_req_false())
1719 1.1 leo break;
1720 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_ATN);
1721 1.19 leo } while (--n);
1722 1.1 leo
1723 1.4 leo if ((phase = GET_5380_REG(NCR5380_IDSTAT)) & SC_S_REQ) {
1724 1.1 leo phase = (phase >> 2) & 7;
1725 1.4 leo if (phase == PH_MSGOUT) {
1726 1.19 leo ncr_aprint(sc, "Message-out phase reached after "
1727 1.19 leo "%ld bytes.\n", len - n);
1728 1.4 leo return (0);
1729 1.1 leo }
1730 1.20.4.1 jtc ncr_aprint(sc, "Phase now: %d after %ld bytes.\n", phase,
1731 1.20.4.1 jtc len - n);
1732 1.20.4.1 jtc
1733 1.1 leo }
1734 1.4 leo return (-1);
1735 1.1 leo }
1736 1.1 leo
1737 1.16 leo void
1738 1.16 leo scsi_reset()
1739 1.1 leo {
1740 1.1 leo SC_REQ *tmp, *next;
1741 1.4 leo int sps;
1742 1.1 leo
1743 1.4 leo PID("scsi_reset1");
1744 1.1 leo sps = splbio();
1745 1.4 leo SET_5380_REG(NCR5380_ICOM, SC_A_RST);
1746 1.15 leo delay(100);
1747 1.4 leo SET_5380_REG(NCR5380_ICOM, 0);
1748 1.15 leo scsi_clr_ipend();
1749 1.1 leo
1750 1.1 leo /*
1751 1.1 leo * None of the jobs in the discon_q will ever be reconnected,
1752 1.1 leo * notify this to the higher level code.
1753 1.1 leo */
1754 1.4 leo for (tmp = discon_q; tmp ;) {
1755 1.1 leo next = tmp->next;
1756 1.1 leo tmp->next = NULL;
1757 1.1 leo tmp->xs->error = XS_TIMEOUT;
1758 1.1 leo busy &= ~(1 << tmp->targ_id);
1759 1.1 leo finish_req(tmp);
1760 1.1 leo tmp = next;
1761 1.1 leo }
1762 1.1 leo discon_q = NULL;
1763 1.1 leo
1764 1.1 leo /*
1765 1.1 leo * The current job will never finish either.
1766 1.1 leo * The problem is that we can't finish the job because an instance
1767 1.1 leo * of main is running on it. Our best guess is that the job is currently
1768 1.1 leo * doing REAL-DMA. In that case 'dma_ready()' should correctly finish
1769 1.1 leo * the job because it detects BSY-loss.
1770 1.1 leo */
1771 1.19 leo if ((tmp = connected) != NULL) {
1772 1.4 leo if (tmp->dr_flag & DRIVER_IN_DMA) {
1773 1.1 leo tmp->xs->error = XS_DRIVER_STUFFUP;
1774 1.4 leo #ifdef REAL_DMA
1775 1.4 leo dma_ready();
1776 1.4 leo #endif
1777 1.1 leo }
1778 1.1 leo }
1779 1.1 leo splx(sps);
1780 1.4 leo PID("scsi_reset2");
1781 1.15 leo
1782 1.15 leo /*
1783 1.15 leo * Give the attached devices some time to handle the reset. This
1784 1.15 leo * value is arbitrary but should be relatively long.
1785 1.15 leo */
1786 1.15 leo delay(100000);
1787 1.1 leo }
1788 1.1 leo
1789 1.16 leo static void
1790 1.16 leo scsi_reset_verbose(sc, why)
1791 1.16 leo struct ncr_softc *sc;
1792 1.16 leo const char *why;
1793 1.16 leo {
1794 1.16 leo ncr_aprint(sc, "Resetting SCSI-bus (%s)\n", why);
1795 1.16 leo
1796 1.16 leo scsi_reset();
1797 1.16 leo }
1798 1.16 leo
1799 1.1 leo /*
1800 1.1 leo * Check validity of the IRQ set by the 5380. If the interrupt is valid,
1801 1.1 leo * the appropriate action is carried out (reselection or DMA ready) and
1802 1.1 leo * INTR_RESEL or INTR_DMA is returned. Otherwise a console notice is written
1803 1.1 leo * and INTR_SPURIOUS is returned.
1804 1.1 leo */
1805 1.1 leo static int
1806 1.4 leo check_intr(sc)
1807 1.4 leo struct ncr_softc *sc;
1808 1.1 leo {
1809 1.1 leo SC_REQ *reqp;
1810 1.1 leo
1811 1.4 leo if ((GET_5380_REG(NCR5380_IDSTAT) & (SC_S_SEL|SC_S_IO))
1812 1.4 leo ==(SC_S_SEL|SC_S_IO))
1813 1.4 leo return (INTR_RESEL);
1814 1.1 leo else {
1815 1.4 leo if ((reqp = connected) && (reqp->dr_flag & DRIVER_IN_DMA)){
1816 1.1 leo reqp->dr_flag &= ~DRIVER_IN_DMA;
1817 1.4 leo return (INTR_DMA);
1818 1.1 leo }
1819 1.1 leo }
1820 1.1 leo printf("-->");
1821 1.1 leo scsi_show();
1822 1.20.4.1 jtc scsi_clr_ipend();
1823 1.4 leo ncr_aprint(sc, "Spurious interrupt.\n");
1824 1.4 leo return (INTR_SPURIOUS);
1825 1.1 leo }
1826 1.1 leo
1827 1.4 leo #ifdef REAL_DMA
1828 1.1 leo /*
1829 1.1 leo * Check if DMA can be used for this request. This function also builds
1830 1.1 leo * the dma-chain.
1831 1.1 leo */
1832 1.1 leo static int
1833 1.1 leo scsi_dmaok(reqp)
1834 1.1 leo SC_REQ *reqp;
1835 1.1 leo {
1836 1.1 leo u_long phy_buf;
1837 1.1 leo u_long phy_len;
1838 1.1 leo void *req_addr;
1839 1.1 leo u_long req_len;
1840 1.1 leo struct dma_chain *dm;
1841 1.1 leo
1842 1.1 leo /*
1843 1.1 leo * Initialize locals and requests' DMA-chain.
1844 1.1 leo */
1845 1.4 leo req_len = reqp->xdata_len;
1846 1.4 leo req_addr = (void*)reqp->xdata_ptr;
1847 1.4 leo dm = reqp->dm_cur = reqp->dm_last = reqp->dm_chain;
1848 1.4 leo dm->dm_count = dm->dm_addr = 0;
1849 1.4 leo reqp->dr_flag &= ~DRIVER_BOUNCING;
1850 1.1 leo
1851 1.1 leo /*
1852 1.1 leo * Do not accept zero length DMA.
1853 1.1 leo */
1854 1.4 leo if (req_len == 0)
1855 1.4 leo return (0);
1856 1.1 leo
1857 1.1 leo /*
1858 1.1 leo * LWP: I think that this restriction is not strictly nessecary.
1859 1.1 leo */
1860 1.4 leo if ((req_len & 0x1) || ((u_int)req_addr & 0x3))
1861 1.4 leo return (0);
1862 1.1 leo
1863 1.1 leo /*
1864 1.1 leo * Build the DMA-chain.
1865 1.1 leo */
1866 1.1 leo dm->dm_addr = phy_buf = kvtop(req_addr);
1867 1.4 leo while (req_len) {
1868 1.4 leo if (req_len < (phy_len = NBPG - ((u_long)req_addr & PGOFSET)))
1869 1.1 leo phy_len = req_len;
1870 1.1 leo
1871 1.1 leo req_addr += phy_len;
1872 1.1 leo req_len -= phy_len;
1873 1.1 leo dm->dm_count += phy_len;
1874 1.1 leo
1875 1.4 leo if (req_len) {
1876 1.4 leo u_long tmp = kvtop(req_addr);
1877 1.1 leo
1878 1.4 leo if ((phy_buf + phy_len) != tmp) {
1879 1.4 leo if (wrong_dma_range(reqp, dm)) {
1880 1.4 leo if (reqp->dr_flag & DRIVER_BOUNCING)
1881 1.4 leo goto bounceit;
1882 1.4 leo return (0);
1883 1.4 leo }
1884 1.1 leo
1885 1.4 leo if (++dm >= &reqp->dm_chain[MAXDMAIO]) {
1886 1.4 leo ncr_tprint(reqp,"dmaok: DMA chain too long!\n");
1887 1.4 leo return (0);
1888 1.1 leo }
1889 1.1 leo dm->dm_count = 0;
1890 1.1 leo dm->dm_addr = tmp;
1891 1.1 leo }
1892 1.1 leo phy_buf = tmp;
1893 1.1 leo }
1894 1.1 leo }
1895 1.4 leo if (wrong_dma_range(reqp, dm)) {
1896 1.4 leo if (reqp->dr_flag & DRIVER_BOUNCING)
1897 1.4 leo goto bounceit;
1898 1.4 leo return (0);
1899 1.4 leo }
1900 1.1 leo reqp->dm_last = dm;
1901 1.4 leo return (1);
1902 1.4 leo
1903 1.4 leo bounceit:
1904 1.4 leo if ((reqp->bounceb = alloc_bounceb(reqp->xdata_len)) == NULL) {
1905 1.4 leo /*
1906 1.4 leo * If we can't get a bounce buffer, forget DMA
1907 1.4 leo */
1908 1.4 leo reqp->dr_flag &= ~DRIVER_BOUNCING;
1909 1.4 leo return(0);
1910 1.4 leo }
1911 1.4 leo /*
1912 1.4 leo * Initialize a single DMA-range containing the bounced request
1913 1.4 leo */
1914 1.4 leo dm = reqp->dm_cur = reqp->dm_last = reqp->dm_chain;
1915 1.4 leo dm->dm_addr = kvtop(reqp->bounceb);
1916 1.4 leo dm->dm_count = reqp->xdata_len;
1917 1.4 leo reqp->bouncerp = reqp->bounceb;
1918 1.4 leo
1919 1.4 leo return (1);
1920 1.1 leo }
1921 1.4 leo #endif /* REAL_DMA */
1922 1.1 leo
1923 1.1 leo static void
1924 1.4 leo run_main(sc)
1925 1.4 leo struct ncr_softc *sc;
1926 1.1 leo {
1927 1.1 leo int sps = splbio();
1928 1.1 leo
1929 1.4 leo if (!main_running) {
1930 1.4 leo /*
1931 1.4 leo * If shared resources are required, claim them
1932 1.4 leo * before entering 'scsi_main'. If we can't get them
1933 1.4 leo * now, assume 'run_main' will be called when the resource
1934 1.4 leo * becomes available.
1935 1.4 leo */
1936 1.4 leo if (!claimed_dma()) {
1937 1.4 leo splx(sps);
1938 1.4 leo return;
1939 1.4 leo }
1940 1.1 leo main_running = 1;
1941 1.1 leo splx(sps);
1942 1.4 leo scsi_main(sc);
1943 1.1 leo }
1944 1.1 leo else splx(sps);
1945 1.1 leo }
1946 1.1 leo
1947 1.4 leo /*
1948 1.4 leo * Prefix message with full target info.
1949 1.4 leo */
1950 1.4 leo static void
1951 1.4 leo ncr_tprint(SC_REQ *reqp, char *fmt, ...)
1952 1.4 leo {
1953 1.4 leo va_list ap;
1954 1.4 leo
1955 1.4 leo va_start(ap, fmt);
1956 1.4 leo sc_print_addr(reqp->xs->sc_link);
1957 1.18 christos printf("%:", fmt, ap);
1958 1.4 leo va_end(ap);
1959 1.4 leo }
1960 1.4 leo
1961 1.4 leo /*
1962 1.4 leo * Prefix message with adapter info.
1963 1.4 leo */
1964 1.4 leo static void
1965 1.4 leo ncr_aprint(struct ncr_softc *sc, char *fmt, ...)
1966 1.4 leo {
1967 1.4 leo va_list ap;
1968 1.4 leo
1969 1.4 leo va_start(ap, fmt);
1970 1.18 christos printf("%s : %:", sc->sc_dev.dv_xname, fmt, ap);
1971 1.4 leo va_end(ap);
1972 1.4 leo }
1973 1.1 leo /****************************************************************************
1974 1.1 leo * Start Debugging Functions *
1975 1.1 leo ****************************************************************************/
1976 1.20.4.1 jtc static char *phase_names[] = {
1977 1.20.4.1 jtc "DATA_OUT", "DATA_IN", "COMMAND", "STATUS", "NONE", "NONE", "MSG_OUT",
1978 1.20.4.1 jtc "MSG_IN"
1979 1.20.4.1 jtc };
1980 1.20.4.1 jtc
1981 1.20.4.1 jtc static void
1982 1.20.4.1 jtc show_phase(reqp, phase)
1983 1.20.4.1 jtc SC_REQ *reqp;
1984 1.20.4.1 jtc int phase;
1985 1.20.4.1 jtc {
1986 1.20.4.1 jtc printf("INFTRANS: %d Phase = %s\n", reqp->targ_id, phase_names[phase]);
1987 1.20.4.1 jtc }
1988 1.20.4.1 jtc
1989 1.1 leo static void
1990 1.1 leo show_data_sense(xs)
1991 1.1 leo struct scsi_xfer *xs;
1992 1.1 leo {
1993 1.6 leo u_char *p1, *p2;
1994 1.1 leo int i;
1995 1.1 leo int sz;
1996 1.1 leo
1997 1.6 leo p1 = (u_char *) xs->cmd;
1998 1.6 leo p2 = (u_char *)&xs->sense;
1999 1.6 leo if(*p2 == 0)
2000 1.6 leo return; /* No(n)sense */
2001 1.6 leo printf("cmd[%d,%d]: ", xs->cmdlen, sz = command_size(*p1));
2002 1.4 leo for (i = 0; i < sz; i++)
2003 1.6 leo printf("%x ", p1[i]);
2004 1.1 leo printf("\nsense: ");
2005 1.4 leo for (i = 0; i < sizeof(xs->sense); i++)
2006 1.6 leo printf("%x ", p2[i]);
2007 1.1 leo printf("\n");
2008 1.1 leo }
2009 1.1 leo
2010 1.1 leo static void
2011 1.1 leo show_request(reqp, qtxt)
2012 1.1 leo SC_REQ *reqp;
2013 1.1 leo char *qtxt;
2014 1.1 leo {
2015 1.19 leo printf("REQ-%s: %d %p[%ld] cmd[0]=%x S=%x M=%x R=%x resid=%d dr_flag=%x %s\n",
2016 1.6 leo qtxt, reqp->targ_id, reqp->xdata_ptr, reqp->xdata_len,
2017 1.1 leo reqp->xcmd.opcode, reqp->status, reqp->message,
2018 1.13 leo reqp->xs->error, reqp->xs->resid, reqp->dr_flag,
2019 1.13 leo reqp->link ? "L":"");
2020 1.4 leo if (reqp->status == SCSCHKC)
2021 1.1 leo show_data_sense(reqp->xs);
2022 1.1 leo }
2023 1.1 leo
2024 1.8 leo static char *sig_names[] = {
2025 1.8 leo "PAR", "SEL", "I/O", "C/D", "MSG", "REQ", "BSY", "RST",
2026 1.8 leo "ACK", "ATN", "LBSY", "PMATCH", "IRQ", "EPAR", "DREQ", "EDMA"
2027 1.8 leo };
2028 1.8 leo
2029 1.8 leo static void
2030 1.8 leo show_signals(dmstat, idstat)
2031 1.8 leo u_char dmstat, idstat;
2032 1.8 leo {
2033 1.8 leo u_short tmp, mask;
2034 1.16 leo int j, need_pipe;
2035 1.8 leo
2036 1.8 leo tmp = idstat | ((dmstat & 3) << 8);
2037 1.8 leo printf("Bus signals (%02x/%02x): ", idstat, dmstat & 3);
2038 1.8 leo for (mask = 1, j = need_pipe = 0; mask <= tmp; mask <<= 1, j++) {
2039 1.8 leo if (tmp & mask)
2040 1.8 leo printf("%s%s", need_pipe++ ? "|" : "", sig_names[j]);
2041 1.8 leo }
2042 1.8 leo printf("\nDma status (%02x): ", dmstat);
2043 1.8 leo for (mask = 4, j = 10, need_pipe = 0; mask <= dmstat; mask <<= 1, j++) {
2044 1.8 leo if (dmstat & mask)
2045 1.8 leo printf("%s%s", need_pipe++ ? "|" : "", sig_names[j]);
2046 1.8 leo }
2047 1.8 leo printf("\n");
2048 1.8 leo }
2049 1.8 leo
2050 1.16 leo void
2051 1.1 leo scsi_show()
2052 1.1 leo {
2053 1.1 leo SC_REQ *tmp;
2054 1.1 leo int sps = splhigh();
2055 1.8 leo u_char idstat, dmstat;
2056 1.14 leo int i;
2057 1.1 leo
2058 1.19 leo printf("scsi_show: scsi_main is%s running\n",
2059 1.16 leo main_running ? "" : " not");
2060 1.4 leo for (tmp = issue_q; tmp; tmp = tmp->next)
2061 1.1 leo show_request(tmp, "ISSUED");
2062 1.4 leo for (tmp = discon_q; tmp; tmp = tmp->next)
2063 1.1 leo show_request(tmp, "DISCONNECTED");
2064 1.4 leo if (connected)
2065 1.1 leo show_request(connected, "CONNECTED");
2066 1.20.4.1 jtc if (can_access_5380()) {
2067 1.20.4.1 jtc idstat = GET_5380_REG(NCR5380_IDSTAT);
2068 1.20.4.1 jtc dmstat = GET_5380_REG(NCR5380_DMSTAT);
2069 1.20.4.1 jtc show_signals(dmstat, idstat);
2070 1.20.4.1 jtc }
2071 1.20.4.1 jtc
2072 1.4 leo if (connected)
2073 1.1 leo printf("phase = %d, ", connected->phase);
2074 1.14 leo printf("busy:%x, spl:%04x\n", busy, sps);
2075 1.14 leo #ifdef DBG_PID
2076 1.14 leo for (i=0; i<DBG_PID; i++)
2077 1.14 leo printf("\t%d\t%s\n", i, last_hit[i]);
2078 1.14 leo #endif
2079 1.1 leo
2080 1.1 leo splx(sps);
2081 1.1 leo }
2082