sunscpal.c revision 1.8 1 /* $NetBSD: sunscpal.c,v 1.8 2001/11/04 12:05:42 tsutsui Exp $ */
2
3 /*
4 * Copyright (c) 2001 Matthew Fredette
5 * Copyright (c) 1995 David Jones, Gordon W. Ross
6 * Copyright (c) 1994 Jarle Greipsland
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. The name of the authors may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 * 4. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by
22 * David Jones and Gordon Ross
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36 /*
37 * This is a machine-independent driver for the Sun "sc"
38 * SCSI Bus Controller (SBC).
39 *
40 * This code should work with any memory-mapped card,
41 * and can be shared by multiple adapters that address
42 * the card with different register offset spacings.
43 * (This can happen on the atari, for example.)
44 *
45 * Credits, history:
46 *
47 * Matthew Fredette completely copied revision 1.38 of
48 * ncr5380sbc.c, and then heavily modified it to match
49 * the Sun sc PAL. The remaining credits are for
50 * ncr5380sbc.c:
51 *
52 * David Jones is the author of most of the code that now
53 * appears in this file, and was the architect of the
54 * current overall structure (MI/MD code separation, etc.)
55 *
56 * Gordon Ross integrated the message phase code, added lots of
57 * comments about what happens when and why (re. SCSI spec.),
58 * debugged some reentrance problems, and added several new
59 * "hooks" needed for the Sun3 "si" adapters.
60 *
61 * The message in/out code was taken nearly verbatim from
62 * the aic6360 driver by Jarle Greipsland.
63 *
64 * Several other NCR5380 drivers were used for reference
65 * while developing this driver, including work by:
66 * The Alice Group (mac68k port) namely:
67 * Allen K. Briggs, Chris P. Caputo, Michael L. Finch,
68 * Bradley A. Grantham, and Lawrence A. Kesteloot
69 * Michael L. Hitch (amiga drivers: sci.c)
70 * Leo Weppelman (atari driver: ncr5380.c)
71 * There are others too. Thanks, everyone.
72 *
73 * Transliteration to bus_space() performed 9/17/98 by
74 * John Ruschmeyer (jruschme (at) exit109.com) for i386 'nca' driver.
75 * Thank you all.
76 */
77
78 #include "opt_ddb.h"
79
80 #include <sys/types.h>
81 #include <sys/param.h>
82 #include <sys/systm.h>
83 #include <sys/kernel.h>
84 #include <sys/errno.h>
85 #include <sys/malloc.h>
86 #include <sys/device.h>
87 #include <sys/buf.h>
88 #include <sys/proc.h>
89 #include <sys/user.h>
90
91 #include <dev/scsipi/scsi_all.h>
92 #include <dev/scsipi/scsipi_all.h>
93 #include <dev/scsipi/scsipi_debug.h>
94 #include <dev/scsipi/scsi_message.h>
95 #include <dev/scsipi/scsiconf.h>
96
97 #ifdef DDB
98 #include <ddb/db_output.h>
99 #endif
100
101 #include <dev/ic/sunscpalreg.h>
102 #include <dev/ic/sunscpalvar.h>
103
104 static void sunscpal_reset_scsibus __P((struct sunscpal_softc *));
105 static void sunscpal_sched __P((struct sunscpal_softc *));
106 static void sunscpal_done __P((struct sunscpal_softc *));
107
108 static int sunscpal_select
109 __P((struct sunscpal_softc *, struct sunscpal_req *));
110 static void sunscpal_reselect __P((struct sunscpal_softc *));
111
112 static int sunscpal_msg_in __P((struct sunscpal_softc *));
113 static int sunscpal_msg_out __P((struct sunscpal_softc *));
114 static int sunscpal_data_xfer __P((struct sunscpal_softc *, int));
115 static int sunscpal_command __P((struct sunscpal_softc *));
116 static int sunscpal_status __P((struct sunscpal_softc *));
117 static void sunscpal_machine __P((struct sunscpal_softc *));
118
119 void sunscpal_abort __P((struct sunscpal_softc *));
120 void sunscpal_cmd_timeout __P((void *));
121 /*
122 * Action flags returned by the info_transfer functions:
123 * (These determine what happens next.)
124 */
125 #define ACT_CONTINUE 0x00 /* No flags: expect another phase */
126 #define ACT_DISCONNECT 0x01 /* Target is disconnecting */
127 #define ACT_CMD_DONE 0x02 /* Need to call scsipi_done() */
128 #define ACT_RESET_BUS 0x04 /* Need bus reset (cmd timeout) */
129 #define ACT_WAIT_DMA 0x10 /* Wait for DMA to complete */
130
131 /*****************************************************************
132 * Debugging stuff
133 *****************************************************************/
134
135 #ifndef DDB
136 /* This is used only in recoverable places. */
137 #ifndef Debugger
138 #define Debugger() printf("Debug: sunscpal.c:%d\n", __LINE__)
139 #endif
140 #endif
141
142 #ifdef SUNSCPAL_DEBUG
143
144 #define SUNSCPAL_DBG_BREAK 1
145 #define SUNSCPAL_DBG_CMDS 2
146 #define SUNSCPAL_DBG_DMA 4
147 int sunscpal_debug = 0;
148 #define SUNSCPAL_BREAK() \
149 do { if (sunscpal_debug & SUNSCPAL_DBG_BREAK) Debugger(); } while (0)
150 static void sunscpal_show_scsi_cmd __P((struct scsipi_xfer *));
151 #ifdef DDB
152 void sunscpal_clear_trace __P((void));
153 void sunscpal_show_trace __P((void));
154 void sunscpal_show_req __P((struct sunscpal_req *));
155 void sunscpal_show_state __P((void));
156 #endif /* DDB */
157 #else /* SUNSCPAL_DEBUG */
158
159 #define SUNSCPAL_BREAK() /* nada */
160 #define sunscpal_show_scsi_cmd(xs) /* nada */
161
162 #endif /* SUNSCPAL_DEBUG */
163
164 static char *
165 phase_names[8] = {
166 "DATA_OUT",
167 "DATA_IN",
168 "COMMAND",
169 "STATUS",
170 "UNSPEC1",
171 "UNSPEC2",
172 "MSG_OUT",
173 "MSG_IN",
174 };
175
176 #ifdef SUNSCPAL_USE_BUS_DMA
177 static void sunscpal_dma_alloc __P((struct sunscpal_softc *));
178 static void sunscpal_dma_free __P((struct sunscpal_softc *));
179 static void sunscpal_dma_setup __P((struct sunscpal_softc *));
180 #else
181 #define sunscpal_dma_alloc(sc) (*sc->sc_dma_alloc)(sc)
182 #define sunscpal_dma_free(sc) (*sc->sc_dma_free)(sc)
183 #define sunscpal_dma_setup(sc) (*sc->sc_dma_setup)(sc)
184 #endif
185 static void sunscpal_minphys __P((struct buf *));
186
187 /*****************************************************************
188 * Actual chip control
189 *****************************************************************/
190
191 /*
192 * XXX: These timeouts might need to be tuned...
193 */
194
195 /* This one is used when waiting for a phase change. (X100uS.) */
196 int sunscpal_wait_phase_timo = 1000 * 10 * 300; /* 5 min. */
197
198 /* These are used in the following inline functions. */
199 int sunscpal_wait_req_timo = 1000 * 50; /* X2 = 100 mS. */
200 int sunscpal_wait_nrq_timo = 1000 * 25; /* X2 = 50 mS. */
201
202 static __inline int sunscpal_wait_req __P((struct sunscpal_softc *));
203 static __inline int sunscpal_wait_not_req __P((struct sunscpal_softc *));
204 static __inline void sunscpal_sched_msgout __P((struct sunscpal_softc *, int));
205
206 /* Return zero on success. */
207 static __inline int sunscpal_wait_req(sc)
208 struct sunscpal_softc *sc;
209 {
210 int timo = sunscpal_wait_req_timo;
211 for (;;) {
212 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_REQUEST) {
213 timo = 0; /* return 0 */
214 break;
215 }
216 if (--timo < 0)
217 break; /* return -1 */
218 delay(2);
219 }
220 return (timo);
221 }
222
223 /* Return zero on success. */
224 static __inline int sunscpal_wait_not_req(sc)
225 struct sunscpal_softc *sc;
226 {
227 int timo = sunscpal_wait_nrq_timo;
228 for (;;) {
229 if ((SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_REQUEST) == 0) {
230 timo = 0; /* return 0 */
231 break;
232 }
233 if (--timo < 0)
234 break; /* return -1 */
235 delay(2);
236 }
237 return (timo);
238 }
239
240 /*
241 * These functions control DMA functions in the chipset independent of
242 * the host DMA implementation.
243 */
244 static void sunscpal_dma_start __P((struct sunscpal_softc *));
245 static void sunscpal_dma_poll __P((struct sunscpal_softc *));
246 static void sunscpal_dma_stop __P((struct sunscpal_softc *));
247
248 static void
249 sunscpal_dma_start(sc)
250 struct sunscpal_softc *sc;
251 {
252 struct sunscpal_req *sr = sc->sc_current;
253 int xlen;
254 u_int16_t icr;
255
256 xlen = sc->sc_reqlen;
257
258 /* Let'er rip! */
259 icr = SUNSCPAL_READ_2(sc, sunscpal_icr);
260 icr |= SUNSCPAL_ICR_DMA_ENABLE |
261 ((xlen & 1) ? 0 : SUNSCPAL_ICR_WORD_MODE) |
262 ((sr->sr_flags & SR_IMMED) ? 0 : SUNSCPAL_ICR_INTERRUPT_ENABLE);
263 SUNSCPAL_WRITE_2(sc, sunscpal_icr, icr);
264
265 sc->sc_state |= SUNSCPAL_DOINGDMA;
266
267 #ifdef SUNSCPAL_DEBUG
268 if (sunscpal_debug & SUNSCPAL_DBG_DMA) {
269 printf("sunscpal_dma_start: started, flags=0x%x\n",
270 sc->sc_state);
271 }
272 #endif
273 }
274
275 #define ICR_MASK (SUNSCPAL_ICR_PARITY_ERROR | SUNSCPAL_ICR_BUS_ERROR | SUNSCPAL_ICR_INTERRUPT_REQUEST)
276 #define POLL_TIMO 50000 /* X100 = 5 sec. */
277
278 /*
279 * Poll (spin-wait) for DMA completion.
280 * Called right after xx_dma_start(), and
281 * xx_dma_stop() will be called next.
282 */
283 static void
284 sunscpal_dma_poll(sc)
285 struct sunscpal_softc *sc;
286 {
287 struct sunscpal_req *sr = sc->sc_current;
288 int tmo;
289
290 /* Make sure DMA started successfully. */
291 if (sc->sc_state & SUNSCPAL_ABORTING)
292 return;
293
294 /* Wait for any "dma complete" or error bits. */
295 tmo = POLL_TIMO;
296 for (;;) {
297 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & ICR_MASK)
298 break;
299 if (--tmo <= 0) {
300 printf("sc: DMA timeout (while polling)\n");
301 /* Indicate timeout as MI code would. */
302 sr->sr_flags |= SR_OVERDUE;
303 break;
304 }
305 delay(100);
306 }
307 SUNSCPAL_TRACE("sunscpal_dma_poll: waited %d\n",
308 POLL_TIMO - tmo);
309
310 #ifdef SUNSCPAL_DEBUG
311 if (sunscpal_debug & SUNSCPAL_DBG_DMA) {
312 char buffer[64];
313 bitmask_snprintf(SUNSCPAL_READ_2(sc, sunscpal_icr), SUNSCPAL_ICR_BITS, buffer, sizeof(buffer));
314 printf("sunscpal_dma_poll: done, icr=%s\n", buffer);
315 }
316 #endif
317 }
318
319 static void
320 sunscpal_dma_stop(sc)
321 struct sunscpal_softc *sc;
322 {
323 struct sunscpal_req *sr = sc->sc_current;
324 struct scsipi_xfer *xs = sr->sr_xs;
325 int resid, ntrans;
326 u_int16_t icr;
327
328 if ((sc->sc_state & SUNSCPAL_DOINGDMA) == 0) {
329 #ifdef DEBUG
330 printf("sunscpal_dma_stop: dma not running\n");
331 #endif
332 return;
333 }
334 sc->sc_state &= ~SUNSCPAL_DOINGDMA;
335
336 /* First, halt the DMA engine. */
337 icr = SUNSCPAL_READ_2(sc, sunscpal_icr);
338 icr &= ~(SUNSCPAL_ICR_DMA_ENABLE | SUNSCPAL_ICR_WORD_MODE | SUNSCPAL_ICR_INTERRUPT_ENABLE);
339 SUNSCPAL_WRITE_2(sc, sunscpal_icr, icr);
340
341 #ifdef SUNSCPAL_USE_BUS_DMA
342 /*
343 * XXX - this function is supposed to be independent of
344 * the host's DMA implementation.
345 */
346 {
347 sunscpal_dma_handle_t dh = sr->sr_dma_hand;
348
349 /* sync the DMA map: */
350 bus_dmamap_sync(sc->sunscpal_dmat, dh->dh_dmamap, 0, dh->dh_maplen,
351 ((xs->xs_control & XS_CTL_DATA_OUT) == 0 ? BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE));
352 }
353 #endif /* SUNSCPAL_USE_BUS_DMA */
354
355
356 if (icr & (SUNSCPAL_ICR_BUS_ERROR)) {
357 char buffer[64];
358 bitmask_snprintf(icr, SUNSCPAL_ICR_BITS, buffer, sizeof(buffer));
359 printf("sc: DMA error, icr=%s, reset\n", buffer);
360 sr->sr_xs->error = XS_DRIVER_STUFFUP;
361 sc->sc_state |= SUNSCPAL_ABORTING;
362 goto out;
363 }
364
365 /* Note that timeout may have set the error flag. */
366 if (sc->sc_state & SUNSCPAL_ABORTING)
367 goto out;
368
369 /* XXX: Wait for DMA to actually finish? */
370
371 /*
372 * Now try to figure out how much actually transferred
373 */
374
375 resid = SUNSCPAL_DMA_COUNT_FLIP(SUNSCPAL_READ_2(sc, sunscpal_dma_count));
376 ntrans = sc->sc_reqlen - resid;
377
378 #ifdef SUNSCPAL_DEBUG
379 if (sunscpal_debug & SUNSCPAL_DBG_DMA) {
380 printf("sunscpal_dma_stop: resid=0x%x ntrans=0x%x\n",
381 resid, ntrans);
382 }
383 #endif
384
385 if (ntrans < sc->sc_min_dma_len) {
386 printf("sc: DMA count: 0x%x\n", resid);
387 sc->sc_state |= SUNSCPAL_ABORTING;
388 goto out;
389 }
390 if (ntrans > sc->sc_datalen)
391 panic("sunscpal_dma_stop: excess transfer");
392
393 /* Adjust data pointer */
394 sc->sc_dataptr += ntrans;
395 sc->sc_datalen -= ntrans;
396
397 /*
398 * After a read, we may need to clean-up
399 * "Left-over bytes" (yuck!)
400 */
401 if (((xs->xs_control & XS_CTL_DATA_OUT) == 0) &&
402 ((icr & SUNSCPAL_ICR_ODD_LENGTH) != 0))
403 {
404 #ifdef DEBUG
405 printf("sc: Got Left-over bytes!\n");
406 #endif
407 *(sc->sc_dataptr++) = SUNSCPAL_READ_1(sc, sunscpal_data);
408 sc->sc_datalen--;
409 }
410
411 out:
412 SUNSCPAL_WRITE_2(sc, sunscpal_dma_count, SUNSCPAL_DMA_COUNT_FLIP(0));
413
414 }
415
416 /* Ask the target for a MSG_OUT phase. */
417 static __inline void
418 sunscpal_sched_msgout(sc, msg_code)
419 struct sunscpal_softc *sc;
420 int msg_code;
421 {
422 /*
423 * This controller does not allow you to assert ATN, which
424 * will eventually leave us with no option other than to reset
425 * the bus. We keep this function as a placeholder, though,
426 * and this printf will eventually go away or get #ifdef'ed:
427 */
428 printf("sunscpal_sched_msgout: trying to schedule 0x%0x\n", msg_code);
429 sc->sc_msgpriq |= msg_code;
430 }
431
432 int
433 sunscpal_pio_out(sc, phase, count, data)
434 struct sunscpal_softc *sc;
435 int phase, count;
436 unsigned char *data;
437 {
438 int resid;
439
440 resid = count;
441 while (resid > 0) {
442 if (!SUNSCPAL_BUSY(sc)) {
443 SUNSCPAL_TRACE("pio_out: lost BSY, resid=%d\n", resid);
444 break;
445 }
446 if (sunscpal_wait_req(sc)) {
447 SUNSCPAL_TRACE("pio_out: no REQ, resid=%d\n", resid);
448 break;
449 }
450 if (SUNSCPAL_BUS_PHASE(SUNSCPAL_READ_2(sc, sunscpal_icr)) != phase)
451 break;
452
453 /* Put the data on the bus. */
454 if (data) {
455 SUNSCPAL_BYTE_WRITE(sc, phase, *data++);
456 } else {
457 SUNSCPAL_BYTE_WRITE(sc, phase, 0);
458 }
459
460 --resid;
461 }
462
463 return (count - resid);
464 }
465
466
467 int
468 sunscpal_pio_in(sc, phase, count, data)
469 struct sunscpal_softc *sc;
470 int phase, count;
471 unsigned char *data;
472 {
473 int resid;
474
475 resid = count;
476 while (resid > 0) {
477 if (!SUNSCPAL_BUSY(sc)) {
478 SUNSCPAL_TRACE("pio_in: lost BSY, resid=%d\n", resid);
479 break;
480 }
481 if (sunscpal_wait_req(sc)) {
482 SUNSCPAL_TRACE("pio_in: no REQ, resid=%d\n", resid);
483 break;
484 }
485 /* A phase change is not valid until AFTER REQ rises! */
486 if (SUNSCPAL_BUS_PHASE(SUNSCPAL_READ_2(sc, sunscpal_icr)) != phase)
487 break;
488
489 /* Read the data bus. */
490 if (data)
491 *data++ = SUNSCPAL_BYTE_READ(sc, phase);
492 else
493 (void) SUNSCPAL_BYTE_READ(sc, phase);
494
495 --resid;
496 }
497
498 return (count - resid);
499 }
500
501
502 void
503 sunscpal_init(sc)
504 struct sunscpal_softc *sc;
505 {
506 int i, j;
507
508 #ifdef SUNSCPAL_DEBUG
509 sunscpal_debug_sc = sc;
510 #endif
511
512 for (i = 0; i < SUNSCPAL_OPENINGS; i++)
513 sc->sc_ring[i].sr_xs = NULL;
514 for (i = 0; i < 8; i++)
515 for (j = 0; j < 8; j++)
516 sc->sc_matrix[i][j] = NULL;
517
518 sc->sc_prevphase = SUNSCPAL_PHASE_INVALID;
519 sc->sc_state = SUNSCPAL_IDLE;
520
521 SUNSCPAL_WRITE_2(sc, sunscpal_icr, 0);
522 SUNSCPAL_WRITE_2(sc, sunscpal_dma_addr_h, 0);
523 SUNSCPAL_WRITE_2(sc, sunscpal_dma_addr_l, 0);
524 SUNSCPAL_WRITE_2(sc, sunscpal_dma_count, SUNSCPAL_DMA_COUNT_FLIP(0));
525
526 SUNSCPAL_CLR_INTR(sc);
527
528 /* Another hack (Er.. hook!) for anything that needs it: */
529 if (sc->sc_intr_on) {
530 SUNSCPAL_TRACE("init: intr ON\n", 0);
531 sc->sc_intr_on(sc);
532 }
533 }
534
535
536 static void
537 sunscpal_reset_scsibus(sc)
538 struct sunscpal_softc *sc;
539 {
540
541 SUNSCPAL_TRACE("reset_scsibus, cur=0x%x\n",
542 (long) sc->sc_current);
543
544 SUNSCPAL_WRITE_2(sc, sunscpal_icr, SUNSCPAL_ICR_RESET);
545 delay(500);
546 SUNSCPAL_WRITE_2(sc, sunscpal_icr, 0);
547
548 SUNSCPAL_CLR_INTR(sc);
549 /* XXX - Need long delay here! */
550 delay(100000);
551
552 /* XXX - Need to cancel disconnected requests. */
553 }
554
555
556 /*
557 * Interrupt handler for the SCSI Bus Controller (SBC)
558 * This may also called for a DMA timeout (at splbio).
559 */
560 int
561 sunscpal_intr(arg)
562 void *arg;
563 {
564 struct sunscpal_softc *sc = arg;
565 int claimed = 0;
566
567 /*
568 * Do not touch SBC regs here unless sc_current == NULL
569 * or it will complain about "register conflict" errors.
570 * Instead, just let sunscpal_machine() deal with it.
571 */
572 SUNSCPAL_TRACE("intr: top, state=%d\n", sc->sc_state);
573
574 if (sc->sc_state == SUNSCPAL_IDLE) {
575 /*
576 * Might be reselect. sunscpal_reselect() will check,
577 * and set up the connection if so. This will verify
578 * that sc_current == NULL at the beginning...
579 */
580
581 /* Another hack (Er.. hook!) for anything that needs it: */
582 if (sc->sc_intr_off) {
583 SUNSCPAL_TRACE("intr: for reselect, intr off\n", 0);
584 sc->sc_intr_off(sc);
585 }
586
587 sunscpal_reselect(sc);
588 }
589
590 /*
591 * The remaining documented interrupt causes are a DMA complete
592 * condition.
593 *
594 * The procedure is to let sunscpal_machine() figure out what
595 * to do next.
596 */
597 if (sc->sc_state & SUNSCPAL_WORKING) {
598 SUNSCPAL_TRACE("intr: call machine, cur=0x%x\n",
599 (long) sc->sc_current);
600 /* This will usually free-up the nexus. */
601 sunscpal_machine(sc);
602 SUNSCPAL_TRACE("intr: machine done, cur=0x%x\n",
603 (long) sc->sc_current);
604 claimed = 1;
605 }
606
607 /* Maybe we can run some commands now... */
608 if (sc->sc_state == SUNSCPAL_IDLE) {
609 SUNSCPAL_TRACE("intr: call sched, cur=0x%x\n",
610 (long) sc->sc_current);
611 sunscpal_sched(sc);
612 SUNSCPAL_TRACE("intr: sched done, cur=0x%x\n",
613 (long) sc->sc_current);
614 }
615
616 return claimed;
617 }
618
619
620 /*
621 * Abort the current command (i.e. due to timeout)
622 */
623 void
624 sunscpal_abort(sc)
625 struct sunscpal_softc *sc;
626 {
627
628 /*
629 * Finish it now. If DMA is in progress, we
630 * can not call sunscpal_sched_msgout() because
631 * that hits the SBC (avoid DMA conflict).
632 */
633
634 /* Another hack (Er.. hook!) for anything that needs it: */
635 if (sc->sc_intr_off) {
636 SUNSCPAL_TRACE("abort: intr off\n", 0);
637 sc->sc_intr_off(sc);
638 }
639
640 sc->sc_state |= SUNSCPAL_ABORTING;
641 if ((sc->sc_state & SUNSCPAL_DOINGDMA) == 0) {
642 sunscpal_sched_msgout(sc, SEND_ABORT);
643 }
644 SUNSCPAL_TRACE("abort: call machine, cur=0x%x\n",
645 (long) sc->sc_current);
646 sunscpal_machine(sc);
647 SUNSCPAL_TRACE("abort: machine done, cur=0x%x\n",
648 (long) sc->sc_current);
649
650 /* Another hack (Er.. hook!) for anything that needs it: */
651 if (sc->sc_intr_on) {
652 SUNSCPAL_TRACE("abort: intr ON\n", 0);
653 sc->sc_intr_on(sc);
654 }
655 }
656
657 /*
658 * Timeout handler, scheduled for each SCSI command.
659 */
660 void
661 sunscpal_cmd_timeout(arg)
662 void *arg;
663 {
664 struct sunscpal_req *sr = arg;
665 struct scsipi_xfer *xs;
666 struct scsipi_periph *periph;
667 struct sunscpal_softc *sc;
668 int s;
669
670 s = splbio();
671
672 /* Get all our variables... */
673 xs = sr->sr_xs;
674 if (xs == NULL) {
675 printf("sunscpal_cmd_timeout: no scsipi_xfer\n");
676 goto out;
677 }
678 periph = xs->xs_periph;
679 sc = (void *)periph->periph_channel->chan_adapter->adapt_dev;
680
681 printf("%s: cmd timeout, targ=%d, lun=%d\n",
682 sc->sc_dev.dv_xname,
683 sr->sr_target, sr->sr_lun);
684
685 /*
686 * Mark the overdue job as failed, and arrange for
687 * sunscpal_machine to terminate it. If the victim
688 * is the current job, call sunscpal_machine() now.
689 * Otherwise arrange for sunscpal_sched() to do it.
690 */
691 sr->sr_flags |= SR_OVERDUE;
692 if (sc->sc_current == sr) {
693 SUNSCPAL_TRACE("cmd_tmo: call abort, sr=0x%x\n", (long) sr);
694 sunscpal_abort(sc);
695 } else {
696 /*
697 * The driver may be idle, or busy with another job.
698 * Arrange for sunscpal_sched() to do the deed.
699 */
700 SUNSCPAL_TRACE("cmd_tmo: clear matrix, t/l=0x%02x\n",
701 (sr->sr_target << 4) | sr->sr_lun);
702 sc->sc_matrix[sr->sr_target][sr->sr_lun] = NULL;
703 }
704
705 /*
706 * We may have aborted the current job, or may have
707 * already been idle. In either case, we should now
708 * be idle, so try to start another job.
709 */
710 if (sc->sc_state == SUNSCPAL_IDLE) {
711 SUNSCPAL_TRACE("cmd_tmo: call sched, cur=0x%x\n",
712 (long) sc->sc_current);
713 sunscpal_sched(sc);
714 SUNSCPAL_TRACE("cmd_tmo: sched done, cur=0x%x\n",
715 (long) sc->sc_current);
716 }
717
718 out:
719 splx(s);
720 }
721
722
723 /*****************************************************************
724 * Interface to higher level
725 *****************************************************************/
726
727
728 /*
729 * Enter a new SCSI command into the "issue" queue, and
730 * if there is work to do, start it going.
731 *
732 * WARNING: This can be called recursively!
733 * (see comment in sunscpal_done)
734 */
735 void
736 sunscpal_scsipi_request(chan, req, arg)
737 struct scsipi_channel *chan;
738 scsipi_adapter_req_t req;
739 void *arg;
740 {
741 struct scsipi_xfer *xs;
742 struct scsipi_periph *periph;
743 struct sunscpal_softc *sc = (void *)chan->chan_adapter->adapt_dev;
744 struct sunscpal_req *sr;
745 int s, i, flags;
746
747 switch (req) {
748 case ADAPTER_REQ_RUN_XFER:
749 xs = arg;
750 periph = xs->xs_periph;
751 flags = xs->xs_control;
752
753 if (sc->sc_flags & SUNSCPAL_FORCE_POLLING)
754 flags |= XS_CTL_POLL;
755
756 if (flags & XS_CTL_DATA_UIO)
757 panic("sunscpal: scsi data uio requested");
758
759 s = splbio();
760
761 if (flags & XS_CTL_POLL) {
762 /* Terminate any current command. */
763 sr = sc->sc_current;
764 if (sr) {
765 printf("%s: polled request aborting %d/%d\n",
766 sc->sc_dev.dv_xname,
767 sr->sr_target, sr->sr_lun);
768 sunscpal_abort(sc);
769 }
770 if (sc->sc_state != SUNSCPAL_IDLE) {
771 panic("sunscpal_scsi_cmd: polled request, abort failed");
772 }
773 }
774
775 /*
776 * Find lowest empty slot in ring buffer.
777 * XXX: What about "fairness" and cmd order?
778 */
779 for (i = 0; i < SUNSCPAL_OPENINGS; i++)
780 if (sc->sc_ring[i].sr_xs == NULL)
781 goto new;
782
783 xs->error = XS_RESOURCE_SHORTAGE;
784 SUNSCPAL_TRACE("scsipi_cmd: no openings, rv=%d\n", rv);
785 goto out;
786
787 new:
788 /* Create queue entry */
789 sr = &sc->sc_ring[i];
790 sr->sr_xs = xs;
791 sr->sr_target = xs->xs_periph->periph_target;
792 sr->sr_lun = xs->xs_periph->periph_lun;
793 sr->sr_dma_hand = NULL;
794 sr->sr_dataptr = xs->data;
795 sr->sr_datalen = xs->datalen;
796 sr->sr_flags = (flags & XS_CTL_POLL) ? SR_IMMED : 0;
797 sr->sr_status = -1; /* no value */
798 sc->sc_ncmds++;
799
800 SUNSCPAL_TRACE("scsipi_cmd: new sr=0x%x\n", (long)sr);
801
802 if (flags & XS_CTL_POLL) {
803 /* Force this new command to be next. */
804 sc->sc_rr = i;
805 }
806
807 /*
808 * If we were idle, run some commands...
809 */
810 if (sc->sc_state == SUNSCPAL_IDLE) {
811 SUNSCPAL_TRACE("scsipi_cmd: call sched, cur=0x%x\n",
812 (long) sc->sc_current);
813 sunscpal_sched(sc);
814 SUNSCPAL_TRACE("scsipi_cmd: sched done, cur=0x%x\n",
815 (long) sc->sc_current);
816 }
817
818 if (flags & XS_CTL_POLL) {
819 /* Make sure sunscpal_sched() finished it. */
820 if ((xs->xs_status & XS_STS_DONE) == 0)
821 panic("sunscpal_scsi_cmd: poll didn't finish");
822 }
823
824 out:
825 splx(s);
826 return;
827
828 case ADAPTER_REQ_GROW_RESOURCES:
829 /* XXX Not supported. */
830 return;
831
832 case ADAPTER_REQ_SET_XFER_MODE:
833 {
834 /*
835 * We don't support Sync, Wide, or Tagged Queueing.
836 * Just callback now, to report this.
837 */
838 struct scsipi_xfer_mode *xm = arg;
839
840 xm->xm_mode = 0;
841 xm->xm_period = 0;
842 xm->xm_offset = 0;
843 scsipi_async_event(chan, ASYNC_EVENT_XFER_MODE, xm);
844 return;
845 }
846 }
847 }
848
849
850 /*
851 * POST PROCESSING OF SCSI_CMD (usually current)
852 * Called by sunscpal_sched(), sunscpal_machine()
853 */
854 static void
855 sunscpal_done(sc)
856 struct sunscpal_softc *sc;
857 {
858 struct sunscpal_req *sr;
859 struct scsipi_xfer *xs;
860
861 #ifdef DIAGNOSTIC
862 if (sc->sc_state == SUNSCPAL_IDLE)
863 panic("sunscpal_done: state=idle");
864 if (sc->sc_current == NULL)
865 panic("sunscpal_done: current=0");
866 #endif
867
868 sr = sc->sc_current;
869 xs = sr->sr_xs;
870
871 SUNSCPAL_TRACE("done: top, cur=0x%x\n", (long) sc->sc_current);
872
873 /*
874 * Clean up DMA resources for this command.
875 */
876 if (sr->sr_dma_hand) {
877 SUNSCPAL_TRACE("done: dma_free, dh=0x%x\n",
878 (long) sr->sr_dma_hand);
879 sunscpal_dma_free(sc);
880 }
881 #ifdef DIAGNOSTIC
882 if (sr->sr_dma_hand)
883 panic("sunscpal_done: dma free did not");
884 #endif
885
886 if (sc->sc_state & SUNSCPAL_ABORTING) {
887 SUNSCPAL_TRACE("done: aborting, error=%d\n", xs->error);
888 if (xs->error == XS_NOERROR)
889 xs->error = XS_TIMEOUT;
890 }
891
892 SUNSCPAL_TRACE("done: check error=%d\n", (long) xs->error);
893
894 /* If error is already set, ignore sr_status value. */
895 if (xs->error != XS_NOERROR)
896 goto finish;
897
898 SUNSCPAL_TRACE("done: check status=%d\n", sr->sr_status);
899
900 xs->status = sr->sr_status;
901 switch (sr->sr_status) {
902 case SCSI_OK: /* 0 */
903 break;
904
905 case SCSI_CHECK:
906 case SCSI_BUSY:
907 xs->error = XS_BUSY;
908 break;
909
910 case -1:
911 /* This is our "impossible" initial value. */
912 /* fallthrough */
913 default:
914 printf("%s: target %d, bad status=%d\n",
915 sc->sc_dev.dv_xname, sr->sr_target, sr->sr_status);
916 xs->error = XS_DRIVER_STUFFUP;
917 break;
918 }
919
920 finish:
921
922 SUNSCPAL_TRACE("done: finish, error=%d\n", xs->error);
923
924 /*
925 * Dequeue the finished command, but don't clear sc_state until
926 * after the call to scsipi_done(), because that may call back to
927 * sunscpal_scsi_cmd() - unwanted recursion!
928 *
929 * Keeping sc->sc_state != idle terminates the recursion.
930 */
931 #ifdef DIAGNOSTIC
932 if ((sc->sc_state & SUNSCPAL_WORKING) == 0)
933 panic("sunscpal_done: bad state");
934 #endif
935
936 /* Clear our pointers to the request. */
937 sc->sc_current = NULL;
938 sc->sc_matrix[sr->sr_target][sr->sr_lun] = NULL;
939 callout_stop(&sr->sr_xs->xs_callout);
940
941 /* Make the request free. */
942 sr->sr_xs = NULL;
943 sc->sc_ncmds--;
944
945 /* Tell common SCSI code it is done. */
946 scsipi_done(xs);
947
948 sc->sc_state = SUNSCPAL_IDLE;
949 /* Now sunscpal_sched() may be called again. */
950 }
951
952
953 /*
954 * Schedule a SCSI operation. This routine should return
955 * only after it achieves one of the following conditions:
956 * Busy (sc->sc_state != SUNSCPAL_IDLE)
957 * No more work can be started.
958 */
959 static void
960 sunscpal_sched(sc)
961 struct sunscpal_softc *sc;
962 {
963 struct sunscpal_req *sr;
964 struct scsipi_xfer *xs;
965 int target = 0, lun = 0;
966 int error, i;
967
968 /* Another hack (Er.. hook!) for anything that needs it: */
969 if (sc->sc_intr_off) {
970 SUNSCPAL_TRACE("sched: top, intr off\n", 0);
971 sc->sc_intr_off(sc);
972 }
973
974 next_job:
975 /*
976 * Grab the next job from queue. Must be idle.
977 */
978 #ifdef DIAGNOSTIC
979 if (sc->sc_state != SUNSCPAL_IDLE)
980 panic("sunscpal_sched: not idle");
981 if (sc->sc_current)
982 panic("sunscpal_sched: current set");
983 #endif
984
985 /*
986 * Always start the search where we last looked.
987 */
988 i = sc->sc_rr;
989 sr = NULL;
990 do {
991 if (sc->sc_ring[i].sr_xs) {
992 target = sc->sc_ring[i].sr_target;
993 lun = sc->sc_ring[i].sr_lun;
994 if (sc->sc_matrix[target][lun] == NULL) {
995 /*
996 * Do not mark the target/LUN busy yet,
997 * because reselect may cause some other
998 * job to become the current one, so we
999 * might not actually start this job.
1000 * Instead, set sc_matrix later on.
1001 */
1002 sc->sc_rr = i;
1003 sr = &sc->sc_ring[i];
1004 break;
1005 }
1006 }
1007 i++;
1008 if (i == SUNSCPAL_OPENINGS)
1009 i = 0;
1010 } while (i != sc->sc_rr);
1011
1012 if (sr == NULL) {
1013 SUNSCPAL_TRACE("sched: no work, cur=0x%x\n",
1014 (long) sc->sc_current);
1015
1016 /* Another hack (Er.. hook!) for anything that needs it: */
1017 if (sc->sc_intr_on) {
1018 SUNSCPAL_TRACE("sched: ret, intr ON\n", 0);
1019 sc->sc_intr_on(sc);
1020 }
1021
1022 return; /* No more work to do. */
1023 }
1024
1025 SUNSCPAL_TRACE("sched: select for t/l=0x%02x\n",
1026 (sr->sr_target << 4) | sr->sr_lun);
1027
1028 sc->sc_state = SUNSCPAL_WORKING;
1029 error = sunscpal_select(sc, sr);
1030 if (sc->sc_current) {
1031 /* Lost the race! reselected out from under us! */
1032 /* Work with the reselected job. */
1033 if (sr->sr_flags & SR_IMMED) {
1034 printf("%s: reselected while polling (abort)\n",
1035 sc->sc_dev.dv_xname);
1036 /* Abort the reselected job. */
1037 sc->sc_state |= SUNSCPAL_ABORTING;
1038 sc->sc_msgpriq |= SEND_ABORT;
1039 }
1040 sr = sc->sc_current;
1041 xs = sr->sr_xs;
1042 SUNSCPAL_TRACE("sched: reselect, new sr=0x%x\n", (long)sr);
1043 goto have_nexus;
1044 }
1045
1046 /* Normal selection result. Target/LUN is now busy. */
1047 sc->sc_matrix[target][lun] = sr;
1048 sc->sc_current = sr; /* connected */
1049 xs = sr->sr_xs;
1050
1051 /*
1052 * Initialize pointers, etc. for this job
1053 */
1054 sc->sc_dataptr = sr->sr_dataptr;
1055 sc->sc_datalen = sr->sr_datalen;
1056 sc->sc_prevphase = SUNSCPAL_PHASE_INVALID;
1057 sc->sc_msgpriq = SEND_IDENTIFY;
1058 sc->sc_msgoutq = 0;
1059 sc->sc_msgout = 0;
1060
1061 SUNSCPAL_TRACE("sched: select rv=%d\n", error);
1062
1063 switch (error) {
1064 case XS_NOERROR:
1065 break;
1066
1067 case XS_BUSY:
1068 /* XXX - Reset and try again. */
1069 printf("%s: select found SCSI bus busy, resetting...\n",
1070 sc->sc_dev.dv_xname);
1071 sunscpal_reset_scsibus(sc);
1072 /* fallthrough */
1073 case XS_SELTIMEOUT:
1074 default:
1075 xs->error = error; /* from select */
1076 SUNSCPAL_TRACE("sched: call done, sr=0x%x\n", (long)sr);
1077 sunscpal_done(sc);
1078
1079 /* Paranoia: clear everything. */
1080 sc->sc_dataptr = NULL;
1081 sc->sc_datalen = 0;
1082 sc->sc_prevphase = SUNSCPAL_PHASE_INVALID;
1083 sc->sc_msgpriq = 0;
1084 sc->sc_msgoutq = 0;
1085 sc->sc_msgout = 0;
1086
1087 goto next_job;
1088 }
1089
1090 /*
1091 * Selection was successful. Normally, this means
1092 * we are starting a new command. However, this
1093 * might be the termination of an overdue job.
1094 */
1095 if (sr->sr_flags & SR_OVERDUE) {
1096 SUNSCPAL_TRACE("sched: overdue, sr=0x%x\n", (long)sr);
1097 sc->sc_state |= SUNSCPAL_ABORTING;
1098 sc->sc_msgpriq |= SEND_ABORT;
1099 goto have_nexus;
1100 }
1101
1102 /*
1103 * OK, we are starting a new command.
1104 * Initialize and allocate resources for the new command.
1105 * Device reset is special (only uses MSG_OUT phase).
1106 * Normal commands start in MSG_OUT phase where we will
1107 * send and IDENDIFY message, and then expect CMD phase.
1108 */
1109 #ifdef SUNSCPAL_DEBUG
1110 if (sunscpal_debug & SUNSCPAL_DBG_CMDS) {
1111 printf("sunscpal_sched: begin, target=%d, LUN=%d\n",
1112 xs->xs_periph->periph_target, xs->xs_periph->periph_lun);
1113 sunscpal_show_scsi_cmd(xs);
1114 }
1115 #endif
1116 if (xs->xs_control & XS_CTL_RESET) {
1117 SUNSCPAL_TRACE("sched: cmd=reset, sr=0x%x\n", (long)sr);
1118 /* Not an error, so do not set SUNSCPAL_ABORTING */
1119 sc->sc_msgpriq |= SEND_DEV_RESET;
1120 goto have_nexus;
1121 }
1122
1123 #ifdef DIAGNOSTIC
1124 if ((xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) == 0) {
1125 if (sc->sc_dataptr) {
1126 printf("%s: ptr but no data in/out flags?\n",
1127 sc->sc_dev.dv_xname);
1128 SUNSCPAL_BREAK();
1129 sc->sc_dataptr = NULL;
1130 }
1131 }
1132 #endif
1133
1134 /* Allocate DMA space (maybe) */
1135 if (sc->sc_dataptr && (sc->sc_flags & SUNSCPAL_DISABLE_DMA) == 0 &&
1136 (sc->sc_datalen >= sc->sc_min_dma_len))
1137 {
1138 SUNSCPAL_TRACE("sched: dma_alloc, len=%d\n", sc->sc_datalen);
1139 sunscpal_dma_alloc(sc);
1140 }
1141
1142 /*
1143 * Initialization hook called just after select,
1144 * at the beginning of COMMAND phase.
1145 * (but AFTER the DMA allocation is done)
1146 *
1147 * We need to set up the DMA engine BEFORE the target puts
1148 * the SCSI bus into any DATA phase.
1149 */
1150 if (sr->sr_dma_hand) {
1151 SUNSCPAL_TRACE("sched: dma_setup, dh=0x%x\n",
1152 (long) sr->sr_dma_hand);
1153 sunscpal_dma_setup(sc);
1154 }
1155
1156 /*
1157 * Schedule a timeout for the job we are starting.
1158 */
1159 if ((sr->sr_flags & SR_IMMED) == 0) {
1160 i = (xs->timeout * hz) / 1000;
1161 SUNSCPAL_TRACE("sched: set timeout=%d\n", i);
1162 callout_reset(&sr->sr_xs->xs_callout, i,
1163 sunscpal_cmd_timeout, sr);
1164 }
1165
1166 have_nexus:
1167
1168 SUNSCPAL_TRACE("sched: call machine, cur=0x%x\n",
1169 (long) sc->sc_current);
1170 sunscpal_machine(sc);
1171 SUNSCPAL_TRACE("sched: machine done, cur=0x%x\n",
1172 (long) sc->sc_current);
1173
1174 /*
1175 * What state did sunscpal_machine() leave us in?
1176 * Hopefully it sometimes completes a job...
1177 */
1178 if (sc->sc_state == SUNSCPAL_IDLE)
1179 goto next_job;
1180
1181 return; /* Have work in progress. */
1182 }
1183
1184
1185 /*
1186 * Reselect handler: checks for reselection, and if we are being
1187 * reselected, it sets up sc->sc_current.
1188 *
1189 * We are reselected when:
1190 * SEL is TRUE
1191 * IO is TRUE
1192 * BSY is FALSE
1193 */
1194 void
1195 sunscpal_reselect(sc)
1196 struct sunscpal_softc *sc;
1197 {
1198 /*
1199 * This controller does not implement disconnect/reselect, so
1200 * we really don't have anything to do here. We keep this
1201 * function as a placeholder, though.
1202 */
1203 }
1204
1205 /*
1206 * Select target: xs is the transfer that we are selecting for.
1207 * sc->sc_current should be NULL.
1208 *
1209 * Returns:
1210 * sc->sc_current != NULL ==> we were reselected (race!)
1211 * XS_NOERROR ==> selection worked
1212 * XS_BUSY ==> lost arbitration
1213 * XS_SELTIMEOUT ==> no response to selection
1214 */
1215 static int
1216 sunscpal_select(sc, sr)
1217 struct sunscpal_softc *sc;
1218 struct sunscpal_req *sr;
1219 {
1220 int timo, target_mask;
1221 u_short mode;
1222
1223 /* Check for reselect */
1224 sunscpal_reselect(sc);
1225 if (sc->sc_current) {
1226 SUNSCPAL_TRACE("select: reselect, cur=0x%x\n",
1227 (long) sc->sc_current);
1228 return XS_BUSY; /* reselected */
1229 }
1230
1231 /*
1232 * Select the target.
1233 */
1234 target_mask = (1 << sr->sr_target);
1235 SUNSCPAL_WRITE_1(sc, sunscpal_data, target_mask);
1236 SUNSCPAL_WRITE_2(sc, sunscpal_icr, SUNSCPAL_ICR_SELECT);
1237
1238 /*
1239 * Wait for the target to assert BSY.
1240 * SCSI spec. says wait for 250 mS.
1241 */
1242 for (timo = 25000;;) {
1243 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_BUSY)
1244 goto success;
1245 if (--timo <= 0)
1246 break;
1247 delay(10);
1248 }
1249
1250 SUNSCPAL_WRITE_1(sc, sunscpal_data, 0);
1251 SUNSCPAL_WRITE_2(sc, sunscpal_icr, 0);
1252
1253 SUNSCPAL_TRACE("select: device down, rc=%d\n", XS_SELTIMEOUT);
1254 return XS_SELTIMEOUT;
1255
1256 success:
1257
1258 /*
1259 * The target is now driving BSY, so we can stop
1260 * driving SEL and the data bus. We do set up
1261 * whether or not this target needs parity.
1262 */
1263 mode = 0;
1264 if ((sc->sc_parity_disable & target_mask) == 0)
1265 mode |= SUNSCPAL_ICR_PARITY_ENABLE;
1266 SUNSCPAL_WRITE_2(sc, sunscpal_icr, mode);
1267
1268 return XS_NOERROR;
1269 }
1270
1271 /*****************************************************************
1272 * Functions to handle each info. transfer phase:
1273 *****************************************************************/
1274
1275 /*
1276 * The message system:
1277 *
1278 * This is a revamped message system that now should easier accomodate
1279 * new messages, if necessary.
1280 *
1281 * Currently we accept these messages:
1282 * IDENTIFY (when reselecting)
1283 * COMMAND COMPLETE # (expect bus free after messages marked #)
1284 * NOOP
1285 * MESSAGE REJECT
1286 * SYNCHRONOUS DATA TRANSFER REQUEST
1287 * SAVE DATA POINTER
1288 * RESTORE POINTERS
1289 * DISCONNECT #
1290 *
1291 * We may send these messages in prioritized order:
1292 * BUS DEVICE RESET # if XS_CTL_RESET & xs->xs_control (or in
1293 * weird sits.)
1294 * MESSAGE PARITY ERROR par. err. during MSGI
1295 * MESSAGE REJECT If we get a message we don't know how to handle
1296 * ABORT # send on errors
1297 * INITIATOR DETECTED ERROR also on errors (SCSI2) (during info xfer)
1298 * IDENTIFY At the start of each transfer
1299 * SYNCHRONOUS DATA TRANSFER REQUEST if appropriate
1300 * NOOP if nothing else fits the bill ...
1301 */
1302
1303 /*
1304 * Precondition:
1305 * The SCSI bus is already in the MSGI phase and there is a message byte
1306 * on the bus, along with an asserted REQ signal.
1307 *
1308 * Our return value determines whether our caller, sunscpal_machine()
1309 * will expect to see another REQ (and possibly phase change).
1310 */
1311 static int
1312 sunscpal_msg_in(sc)
1313 struct sunscpal_softc *sc;
1314 {
1315 struct sunscpal_req *sr = sc->sc_current;
1316 struct scsipi_xfer *xs = sr->sr_xs;
1317 int n, phase;
1318 int act_flags;
1319
1320 act_flags = ACT_CONTINUE;
1321
1322 if (sc->sc_prevphase == SUNSCPAL_PHASE_MSG_IN) {
1323 /* This is a continuation of the previous message. */
1324 n = sc->sc_imp - sc->sc_imess;
1325 SUNSCPAL_TRACE("msg_in: continuation, n=%d\n", n);
1326 goto nextbyte;
1327 }
1328
1329 /* This is a new MESSAGE IN phase. Clean up our state. */
1330 sc->sc_state &= ~SUNSCPAL_DROP_MSGIN;
1331
1332 nextmsg:
1333 n = 0;
1334 sc->sc_imp = &sc->sc_imess[n];
1335
1336 nextbyte:
1337 /*
1338 * Read a whole message, but don't ack the last byte. If we reject the
1339 * message, we have to assert ATN during the message transfer phase
1340 * itself.
1341 */
1342 for (;;) {
1343 /*
1344 * Read a message byte.
1345 * First, check BSY, REQ, phase...
1346 */
1347 if (!SUNSCPAL_BUSY(sc)) {
1348 SUNSCPAL_TRACE("msg_in: lost BSY, n=%d\n", n);
1349 /* XXX - Assume the command completed? */
1350 act_flags |= (ACT_DISCONNECT | ACT_CMD_DONE);
1351 return (act_flags);
1352 }
1353 if (sunscpal_wait_req(sc)) {
1354 SUNSCPAL_TRACE("msg_in: BSY but no REQ, n=%d\n", n);
1355 /* Just let sunscpal_machine() handle it... */
1356 return (act_flags);
1357 }
1358 phase = SUNSCPAL_BUS_PHASE(SUNSCPAL_READ_2(sc, sunscpal_icr));
1359 if (phase != SUNSCPAL_PHASE_MSG_IN) {
1360 /*
1361 * Target left MESSAGE IN, probably because it
1362 * a) noticed our ATN signal, or
1363 * b) ran out of messages.
1364 */
1365 return (act_flags);
1366 }
1367 /* Still in MESSAGE IN phase, and REQ is asserted. */
1368 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_PARITY_ERROR) {
1369 sunscpal_sched_msgout(sc, SEND_PARITY_ERROR);
1370 sc->sc_state |= SUNSCPAL_DROP_MSGIN;
1371 }
1372
1373 /* Gather incoming message bytes if needed. */
1374 if ((sc->sc_state & SUNSCPAL_DROP_MSGIN) == 0) {
1375 if (n >= SUNSCPAL_MAX_MSG_LEN) {
1376 sunscpal_sched_msgout(sc, SEND_REJECT);
1377 sc->sc_state |= SUNSCPAL_DROP_MSGIN;
1378 } else {
1379 *sc->sc_imp++ = SUNSCPAL_READ_1(sc, sunscpal_cmd_stat);
1380 n++;
1381 /*
1382 * This testing is suboptimal, but most
1383 * messages will be of the one byte variety, so
1384 * it should not affect performance
1385 * significantly.
1386 */
1387 if (n == 1 && MSG_IS1BYTE(sc->sc_imess[0]))
1388 goto have_msg;
1389 if (n == 2 && MSG_IS2BYTE(sc->sc_imess[0]))
1390 goto have_msg;
1391 if (n >= 3 && MSG_ISEXTENDED(sc->sc_imess[0]) &&
1392 n == sc->sc_imess[1] + 2)
1393 goto have_msg;
1394 }
1395 }
1396
1397 /*
1398 * If we reach this spot we're either:
1399 * a) in the middle of a multi-byte message, or
1400 * b) dropping bytes.
1401 */
1402
1403 if (act_flags != ACT_CONTINUE)
1404 return (act_flags);
1405
1406 /* back to nextbyte */
1407 }
1408
1409 have_msg:
1410 /* We now have a complete message. Parse it. */
1411
1412 switch (sc->sc_imess[0]) {
1413 case MSG_CMDCOMPLETE:
1414 SUNSCPAL_TRACE("msg_in: CMDCOMPLETE\n", 0);
1415 /* Target is about to disconnect. */
1416 act_flags |= (ACT_DISCONNECT | ACT_CMD_DONE);
1417 break;
1418
1419 case MSG_PARITY_ERROR:
1420 SUNSCPAL_TRACE("msg_in: PARITY_ERROR\n", 0);
1421 /* Resend the last message. */
1422 sunscpal_sched_msgout(sc, sc->sc_msgout);
1423 break;
1424
1425 case MSG_MESSAGE_REJECT:
1426 /* The target rejects the last message we sent. */
1427 SUNSCPAL_TRACE("msg_in: got reject for 0x%x\n", sc->sc_msgout);
1428 switch (sc->sc_msgout) {
1429 case SEND_IDENTIFY:
1430 /* Really old target controller? */
1431 /* XXX ... */
1432 break;
1433 case SEND_INIT_DET_ERR:
1434 goto abort;
1435 }
1436 break;
1437
1438 case MSG_NOOP:
1439 SUNSCPAL_TRACE("msg_in: NOOP\n", 0);
1440 break;
1441
1442 case MSG_DISCONNECT:
1443 SUNSCPAL_TRACE("msg_in: DISCONNECT\n", 0);
1444 /* Target is about to disconnect. */
1445 act_flags |= ACT_DISCONNECT;
1446 if ((xs->xs_periph->periph_quirks & PQUIRK_AUTOSAVE) == 0)
1447 break;
1448 /*FALLTHROUGH*/
1449
1450 case MSG_SAVEDATAPOINTER:
1451 SUNSCPAL_TRACE("msg_in: SAVE_PTRS\n", 0);
1452 sr->sr_dataptr = sc->sc_dataptr;
1453 sr->sr_datalen = sc->sc_datalen;
1454 break;
1455
1456 case MSG_RESTOREPOINTERS:
1457 SUNSCPAL_TRACE("msg_in: RESTORE_PTRS\n", 0);
1458 sc->sc_dataptr = sr->sr_dataptr;
1459 sc->sc_datalen = sr->sr_datalen;
1460 break;
1461
1462 case MSG_EXTENDED:
1463 switch (sc->sc_imess[2]) {
1464 case MSG_EXT_SDTR:
1465 case MSG_EXT_WDTR:
1466 /* The ncr5380 can not do synchronous mode. */
1467 goto reject;
1468 default:
1469 printf("%s: unrecognized MESSAGE EXTENDED; sending REJECT\n",
1470 sc->sc_dev.dv_xname);
1471 SUNSCPAL_BREAK();
1472 goto reject;
1473 }
1474 break;
1475
1476 default:
1477 SUNSCPAL_TRACE("msg_in: eh? imsg=0x%x\n", sc->sc_imess[0]);
1478 printf("%s: unrecognized MESSAGE; sending REJECT\n",
1479 sc->sc_dev.dv_xname);
1480 SUNSCPAL_BREAK();
1481 /* fallthrough */
1482 reject:
1483 sunscpal_sched_msgout(sc, SEND_REJECT);
1484 break;
1485
1486 abort:
1487 sc->sc_state |= SUNSCPAL_ABORTING;
1488 sunscpal_sched_msgout(sc, SEND_ABORT);
1489 break;
1490 }
1491
1492 /* Go get the next message, if any. */
1493 if (act_flags == ACT_CONTINUE)
1494 goto nextmsg;
1495
1496 return (act_flags);
1497 }
1498
1499
1500 /*
1501 * The message out (and in) stuff is a bit complicated:
1502 * If the target requests another message (sequence) without
1503 * having changed phase in between it really asks for a
1504 * retransmit, probably due to parity error(s).
1505 * The following messages can be sent:
1506 * IDENTIFY @ These 4 stem from SCSI command activity
1507 * SDTR @
1508 * WDTR @
1509 * DEV_RESET @
1510 * REJECT if MSGI doesn't make sense
1511 * PARITY_ERROR if parity error while in MSGI
1512 * INIT_DET_ERR if parity error while not in MSGI
1513 * ABORT if INIT_DET_ERR rejected
1514 * NOOP if asked for a message and there's nothing to send
1515 *
1516 * Note that we call this one with (sc_current == NULL)
1517 * when sending ABORT for unwanted reselections.
1518 */
1519 static int
1520 sunscpal_msg_out(sc)
1521 struct sunscpal_softc *sc;
1522 {
1523 /*
1524 * This controller does not allow you to assert ATN, which
1525 * means we will never get the opportunity to send messages to
1526 * the target (the bus will never enter this MSG_OUT phase).
1527 * This will eventually leave us with no option other than to
1528 * reset the bus. We keep this function as a placeholder,
1529 * though, and this printf will eventually go away or get
1530 * #ifdef'ed:
1531 */
1532 printf("sunscpal_msg_out: bus is in MSG_OUT phase?\n");
1533 return (ACT_CONTINUE | ACT_RESET_BUS);
1534 }
1535
1536 /*
1537 * Handle command phase.
1538 */
1539 static int
1540 sunscpal_command(sc)
1541 struct sunscpal_softc *sc;
1542 {
1543 struct sunscpal_req *sr = sc->sc_current;
1544 struct scsipi_xfer *xs = sr->sr_xs;
1545 int len;
1546
1547 /* Assume command can be sent in one go. */
1548 /* XXX: Do this using DMA, and get a phase change intr? */
1549 len = sunscpal_pio_out(sc, SUNSCPAL_PHASE_COMMAND, xs->cmdlen,
1550 (u_char *)xs->cmd);
1551
1552 if (len != xs->cmdlen) {
1553 #ifdef SUNSCPAL_DEBUG
1554 printf("sunscpal_command: short transfer: wanted %d got %d.\n",
1555 xs->cmdlen, len);
1556 sunscpal_show_scsi_cmd(xs);
1557 SUNSCPAL_BREAK();
1558 #endif
1559 if (len < 6) {
1560 xs->error = XS_DRIVER_STUFFUP;
1561 sc->sc_state |= SUNSCPAL_ABORTING;
1562 sunscpal_sched_msgout(sc, SEND_ABORT);
1563 }
1564
1565 }
1566
1567 return ACT_CONTINUE;
1568 }
1569
1570
1571 /*
1572 * Handle either data_in or data_out
1573 */
1574 static int
1575 sunscpal_data_xfer(sc, phase)
1576 struct sunscpal_softc *sc;
1577 int phase;
1578 {
1579 struct sunscpal_req *sr = sc->sc_current;
1580 struct scsipi_xfer *xs = sr->sr_xs;
1581 int expected_phase;
1582 int len;
1583
1584 /*
1585 * When aborting a command, disallow any data phase.
1586 */
1587 if (sc->sc_state & SUNSCPAL_ABORTING) {
1588 printf("%s: aborting, bus phase=%s (reset)\n",
1589 sc->sc_dev.dv_xname, phase_names[(phase >> 8) & 7]);
1590 return ACT_RESET_BUS; /* XXX */
1591 }
1592
1593 /* Validate expected phase (data_in or data_out) */
1594 expected_phase = (xs->xs_control & XS_CTL_DATA_OUT) ?
1595 SUNSCPAL_PHASE_DATA_OUT : SUNSCPAL_PHASE_DATA_IN;
1596 if (phase != expected_phase) {
1597 printf("%s: data phase error\n", sc->sc_dev.dv_xname);
1598 goto abort;
1599 }
1600
1601 /* Make sure we have some data to move. */
1602 if (sc->sc_datalen <= 0) {
1603 /* Device needs padding. */
1604 if (phase == SUNSCPAL_PHASE_DATA_IN)
1605 sunscpal_pio_in(sc, phase, 4096, NULL);
1606 else
1607 sunscpal_pio_out(sc, phase, 4096, NULL);
1608 /* Make sure that caused a phase change. */
1609 if (SUNSCPAL_BUS_PHASE(SUNSCPAL_READ_2(sc, sunscpal_icr)) == phase) {
1610 /* More than 4k is just too much! */
1611 printf("%s: too much data padding\n",
1612 sc->sc_dev.dv_xname);
1613 goto abort;
1614 }
1615 return ACT_CONTINUE;
1616 }
1617
1618 /*
1619 * Attempt DMA only if dma_alloc gave us a DMA handle AND
1620 * there is enough left to transfer so DMA is worth while.
1621 */
1622 if (sr->sr_dma_hand &&
1623 (sc->sc_datalen >= sc->sc_min_dma_len))
1624 {
1625 /*
1626 * OK, really start DMA. Note, the MD start function
1627 * is responsible for setting the TCMD register, etc.
1628 * (Acknowledge the phase change there, not here.)
1629 */
1630 SUNSCPAL_TRACE("data_xfer: dma_start, dh=0x%x\n",
1631 (long) sr->sr_dma_hand);
1632 sunscpal_dma_start(sc);
1633 return ACT_WAIT_DMA;
1634 }
1635
1636 /*
1637 * Doing PIO for data transfer. (Possibly "Pseudo DMA")
1638 * XXX: Do PDMA functions need to set tcmd later?
1639 */
1640 SUNSCPAL_TRACE("data_xfer: doing PIO, len=%d\n", sc->sc_datalen);
1641 if (phase == SUNSCPAL_PHASE_DATA_OUT) {
1642 len = sunscpal_pio_out(sc, phase, sc->sc_datalen, sc->sc_dataptr);
1643 } else {
1644 len = sunscpal_pio_in(sc, phase, sc->sc_datalen, sc->sc_dataptr);
1645 }
1646 sc->sc_dataptr += len;
1647 sc->sc_datalen -= len;
1648
1649 SUNSCPAL_TRACE("data_xfer: did PIO, resid=%d\n", sc->sc_datalen);
1650 return (ACT_CONTINUE);
1651
1652 abort:
1653 sc->sc_state |= SUNSCPAL_ABORTING;
1654 sunscpal_sched_msgout(sc, SEND_ABORT);
1655 return (ACT_CONTINUE);
1656 }
1657
1658
1659 static int
1660 sunscpal_status(sc)
1661 struct sunscpal_softc *sc;
1662 {
1663 int len;
1664 u_char status;
1665 struct sunscpal_req *sr = sc->sc_current;
1666
1667 len = sunscpal_pio_in(sc, SUNSCPAL_PHASE_STATUS, 1, &status);
1668 if (len) {
1669 sr->sr_status = status;
1670 } else {
1671 printf("sunscpal_status: none?\n");
1672 }
1673
1674 return ACT_CONTINUE;
1675 }
1676
1677
1678 /*
1679 * This is the big state machine that follows SCSI phase changes.
1680 * This is somewhat like a co-routine. It will do a SCSI command,
1681 * and exit if the command is complete, or if it must wait, i.e.
1682 * for DMA to complete or for reselect to resume the job.
1683 *
1684 * The bus must be selected, and we need to know which command is
1685 * being undertaken.
1686 */
1687 static void
1688 sunscpal_machine(sc)
1689 struct sunscpal_softc *sc;
1690 {
1691 struct sunscpal_req *sr;
1692 struct scsipi_xfer *xs;
1693 int act_flags, phase, timo;
1694
1695 #ifdef DIAGNOSTIC
1696 if (sc->sc_state == SUNSCPAL_IDLE)
1697 panic("sunscpal_machine: state=idle");
1698 if (sc->sc_current == NULL)
1699 panic("sunscpal_machine: no current cmd");
1700 #endif
1701
1702 sr = sc->sc_current;
1703 xs = sr->sr_xs;
1704 act_flags = ACT_CONTINUE;
1705
1706 /*
1707 * This will be called by sunscpal_intr() when DMA is
1708 * complete. Must stop DMA before touching the PAL or
1709 * there will be "register conflict" errors.
1710 */
1711 if (sc->sc_state & SUNSCPAL_DOINGDMA) {
1712 /* Pick-up where where we left off... */
1713 goto dma_done;
1714 }
1715
1716 next_phase:
1717
1718 if (!SUNSCPAL_BUSY(sc)) {
1719 /* Unexpected disconnect */
1720 printf("sunscpal_machine: unexpected disconnect.\n");
1721 xs->error = XS_DRIVER_STUFFUP;
1722 act_flags |= (ACT_DISCONNECT | ACT_CMD_DONE);
1723 goto do_actions;
1724 }
1725
1726 /*
1727 * Wait for REQ before reading the phase.
1728 * Need to wait longer than usual here, because
1729 * some devices are just plain slow...
1730 */
1731 timo = sunscpal_wait_phase_timo;
1732 for (;;) {
1733 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_REQUEST)
1734 break;
1735 if (--timo <= 0) {
1736 if (sc->sc_state & SUNSCPAL_ABORTING) {
1737 printf("%s: no REQ while aborting, reset\n",
1738 sc->sc_dev.dv_xname);
1739 act_flags |= ACT_RESET_BUS;
1740 goto do_actions;
1741 }
1742 printf("%s: no REQ for next phase, abort\n",
1743 sc->sc_dev.dv_xname);
1744 sc->sc_state |= SUNSCPAL_ABORTING;
1745 sunscpal_sched_msgout(sc, SEND_ABORT);
1746 goto next_phase;
1747 }
1748 delay(100);
1749 }
1750
1751 phase = SUNSCPAL_BUS_PHASE(SUNSCPAL_READ_2(sc, sunscpal_icr));
1752 SUNSCPAL_TRACE("machine: phase=%s\n",
1753 (long) phase_names[(phase >> 8) & 7]);
1754
1755 /*
1756 * We assume that the device knows what it's doing,
1757 * so any phase is good.
1758 */
1759
1760 switch (phase) {
1761
1762 case SUNSCPAL_PHASE_DATA_OUT:
1763 case SUNSCPAL_PHASE_DATA_IN:
1764 act_flags = sunscpal_data_xfer(sc, phase);
1765 break;
1766
1767 case SUNSCPAL_PHASE_COMMAND:
1768 act_flags = sunscpal_command(sc);
1769 break;
1770
1771 case SUNSCPAL_PHASE_STATUS:
1772 act_flags = sunscpal_status(sc);
1773 break;
1774
1775 case SUNSCPAL_PHASE_MSG_OUT:
1776 act_flags = sunscpal_msg_out(sc);
1777 break;
1778
1779 case SUNSCPAL_PHASE_MSG_IN:
1780 act_flags = sunscpal_msg_in(sc);
1781 break;
1782
1783 default:
1784 printf("sunscpal_machine: Unexpected phase 0x%x\n", phase);
1785 sc->sc_state |= SUNSCPAL_ABORTING;
1786 sunscpal_sched_msgout(sc, SEND_ABORT);
1787 goto next_phase;
1788
1789 } /* switch */
1790 sc->sc_prevphase = phase;
1791
1792 do_actions:
1793
1794 if (act_flags & ACT_WAIT_DMA) {
1795 act_flags &= ~ACT_WAIT_DMA;
1796 /* Wait for DMA to complete (polling, or interrupt). */
1797 if ((sr->sr_flags & SR_IMMED) == 0) {
1798 SUNSCPAL_TRACE("machine: wait for DMA intr.\n", 0);
1799 return; /* will resume at dma_done */
1800 }
1801 /* Busy-wait for it to finish. */
1802 SUNSCPAL_TRACE("machine: dma_poll, dh=0x%x\n",
1803 (long) sr->sr_dma_hand);
1804 sunscpal_dma_poll(sc);
1805 dma_done:
1806 /* Return here after interrupt. */
1807 if (sr->sr_flags & SR_OVERDUE)
1808 sc->sc_state |= SUNSCPAL_ABORTING;
1809 SUNSCPAL_TRACE("machine: dma_stop, dh=0x%x\n",
1810 (long) sr->sr_dma_hand);
1811 sunscpal_dma_stop(sc);
1812 SUNSCPAL_CLR_INTR(sc); /* XXX */
1813 /*
1814 * While DMA is running we can not touch the SBC,
1815 * so various places just set SUNSCPAL_ABORTING and
1816 * expect us the "kick it" when DMA is done.
1817 */
1818 if (sc->sc_state & SUNSCPAL_ABORTING) {
1819 sunscpal_sched_msgout(sc, SEND_ABORT);
1820 }
1821 }
1822
1823 /*
1824 * Check for parity error.
1825 * XXX - better place to check?
1826 */
1827 if (SUNSCPAL_READ_2(sc, sunscpal_icr) & SUNSCPAL_ICR_PARITY_ERROR) {
1828 printf("%s: parity error!\n", sc->sc_dev.dv_xname);
1829 /* XXX: sc->sc_state |= SUNSCPAL_ABORTING; */
1830 sunscpal_sched_msgout(sc, SEND_PARITY_ERROR);
1831 }
1832
1833 if (act_flags == ACT_CONTINUE)
1834 goto next_phase;
1835 /* All other actions "break" from the loop. */
1836
1837 SUNSCPAL_TRACE("machine: act_flags=0x%x\n", act_flags);
1838
1839 if (act_flags & ACT_RESET_BUS) {
1840 act_flags |= ACT_CMD_DONE;
1841 /*
1842 * Reset the SCSI bus, usually due to a timeout.
1843 * The error code XS_TIMEOUT allows retries.
1844 */
1845 sc->sc_state |= SUNSCPAL_ABORTING;
1846 printf("%s: reset SCSI bus for TID=%d LUN=%d\n",
1847 sc->sc_dev.dv_xname, sr->sr_target, sr->sr_lun);
1848 sunscpal_reset_scsibus(sc);
1849 }
1850
1851 if (act_flags & ACT_CMD_DONE) {
1852 act_flags |= ACT_DISCONNECT;
1853 /* Need to call scsipi_done() */
1854 /* XXX: from the aic6360 driver, but why? */
1855 if (sc->sc_datalen < 0) {
1856 printf("%s: %d extra bytes from %d:%d\n",
1857 sc->sc_dev.dv_xname, -sc->sc_datalen,
1858 sr->sr_target, sr->sr_lun);
1859 sc->sc_datalen = 0;
1860 }
1861 xs->resid = sc->sc_datalen;
1862 /* Note: this will clear sc_current */
1863 SUNSCPAL_TRACE("machine: call done, cur=0x%x\n", (long)sr);
1864 sunscpal_done(sc);
1865 }
1866
1867 if (act_flags & ACT_DISCONNECT) {
1868 /*
1869 * The device has dropped BSY (or will soon).
1870 * We have to wait here for BSY to drop, otherwise
1871 * the next command may decide we need a bus reset.
1872 */
1873 timo = sunscpal_wait_req_timo; /* XXX */
1874 for (;;) {
1875 if (!SUNSCPAL_BUSY(sc))
1876 goto busfree;
1877 if (--timo <= 0)
1878 break;
1879 delay(2);
1880 }
1881 /* Device is sitting on the bus! */
1882 printf("%s: Target %d LUN %d stuck busy, resetting...\n",
1883 sc->sc_dev.dv_xname, sr->sr_target, sr->sr_lun);
1884 sunscpal_reset_scsibus(sc);
1885 busfree:
1886 SUNSCPAL_TRACE("machine: discon, waited %d\n",
1887 sunscpal_wait_req_timo - timo);
1888
1889 SUNSCPAL_WRITE_2(sc, sunscpal_icr, 0);
1890
1891 if ((act_flags & ACT_CMD_DONE) == 0) {
1892 SUNSCPAL_TRACE("machine: discon, cur=0x%x\n", (long)sr);
1893 }
1894
1895 /*
1896 * We may be here due to a disconnect message,
1897 * in which case we did NOT call sunscpal_done,
1898 * and we need to clear sc_current.
1899 */
1900 sc->sc_state = SUNSCPAL_IDLE;
1901 sc->sc_current = NULL;
1902
1903 /* Paranoia: clear everything. */
1904 sc->sc_dataptr = NULL;
1905 sc->sc_datalen = 0;
1906 sc->sc_prevphase = SUNSCPAL_PHASE_INVALID;
1907 sc->sc_msgpriq = 0;
1908 sc->sc_msgoutq = 0;
1909 sc->sc_msgout = 0;
1910
1911 /* Our caller will re-enable interrupts. */
1912 }
1913 }
1914
1915
1916 #ifdef SUNSCPAL_DEBUG
1917
1918 static void
1919 sunscpal_show_scsi_cmd(xs)
1920 struct scsipi_xfer *xs;
1921 {
1922 u_char *b = (u_char *) xs->cmd;
1923 int i = 0;
1924
1925 scsipi_printaddr(xs->xs_periph);
1926 if ( ! ( xs->xs_control & XS_CTL_RESET ) ) {
1927 printf("-");
1928 while (i < xs->cmdlen) {
1929 if (i) printf(",");
1930 printf("%x",b[i++]);
1931 }
1932 printf("-\n");
1933 } else {
1934
1935 printf("-RESET-\n");
1936 }
1937 }
1938
1939
1940 int sunscpal_traceidx = 0;
1941
1942 #define TRACE_MAX 1024
1943 struct trace_ent {
1944 char *msg;
1945 long val;
1946 } sunscpal_tracebuf[TRACE_MAX];
1947
1948 void
1949 sunscpal_trace(msg, val)
1950 char *msg;
1951 long val;
1952 {
1953 struct trace_ent *tr;
1954 int s;
1955
1956 s = splbio();
1957
1958 tr = &sunscpal_tracebuf[sunscpal_traceidx];
1959
1960 sunscpal_traceidx++;
1961 if (sunscpal_traceidx >= TRACE_MAX)
1962 sunscpal_traceidx = 0;
1963
1964 tr->msg = msg;
1965 tr->val = val;
1966
1967 splx(s);
1968 }
1969
1970 #ifdef DDB
1971 void
1972 sunscpal_clear_trace()
1973 {
1974 sunscpal_traceidx = 0;
1975 memset((char*) sunscpal_tracebuf, 0, sizeof(sunscpal_tracebuf));
1976 }
1977
1978 void
1979 sunscpal_show_trace()
1980 {
1981 struct trace_ent *tr;
1982 int idx;
1983
1984 idx = sunscpal_traceidx;
1985 do {
1986 tr = &sunscpal_tracebuf[idx];
1987 idx++;
1988 if (idx >= TRACE_MAX)
1989 idx = 0;
1990 if (tr->msg)
1991 db_printf(tr->msg, tr->val);
1992 } while (idx != sunscpal_traceidx);
1993 }
1994
1995 void
1996 sunscpal_show_req(sr)
1997 struct sunscpal_req *sr;
1998 {
1999 struct scsipi_xfer *xs = sr->sr_xs;
2000
2001 db_printf("TID=%d ", sr->sr_target);
2002 db_printf("LUN=%d ", sr->sr_lun);
2003 db_printf("dh=%p ", sr->sr_dma_hand);
2004 db_printf("dptr=%p ", sr->sr_dataptr);
2005 db_printf("dlen=0x%x ", sr->sr_datalen);
2006 db_printf("flags=%d ", sr->sr_flags);
2007 db_printf("stat=%d ", sr->sr_status);
2008
2009 if (xs == NULL) {
2010 db_printf("(xs=NULL)\n");
2011 return;
2012 }
2013 db_printf("\n");
2014 #ifdef SCSIDEBUG
2015 show_scsipi_xs(xs);
2016 #else
2017 db_printf("xs=%p\n", xs);
2018 #endif
2019 }
2020
2021 void
2022 sunscpal_show_state()
2023 {
2024 struct sunscpal_softc *sc;
2025 struct sunscpal_req *sr;
2026 int i, j, k;
2027
2028 sc = sunscpal_debug_sc;
2029
2030 if (sc == NULL) {
2031 db_printf("sunscpal_debug_sc == NULL\n");
2032 return;
2033 }
2034
2035 db_printf("sc_ncmds=%d\n", sc->sc_ncmds);
2036 k = -1; /* which is current? */
2037 for (i = 0; i < SUNSCPAL_OPENINGS; i++) {
2038 sr = &sc->sc_ring[i];
2039 if (sr->sr_xs) {
2040 if (sr == sc->sc_current)
2041 k = i;
2042 db_printf("req %d: (sr=%p)", i, sr);
2043 sunscpal_show_req(sr);
2044 }
2045 }
2046 db_printf("sc_rr=%d, current=%d\n", sc->sc_rr, k);
2047
2048 db_printf("Active request matrix:\n");
2049 for(i = 0; i < 8; i++) { /* targets */
2050 for (j = 0; j < 8; j++) { /* LUN */
2051 sr = sc->sc_matrix[i][j];
2052 if (sr) {
2053 db_printf("TID=%d LUN=%d sr=%p\n", i, j, sr);
2054 }
2055 }
2056 }
2057
2058 db_printf("sc_state=0x%x\n", sc->sc_state);
2059 db_printf("sc_current=%p\n", sc->sc_current);
2060 db_printf("sc_dataptr=%p\n", sc->sc_dataptr);
2061 db_printf("sc_datalen=0x%x\n", sc->sc_datalen);
2062
2063 db_printf("sc_prevphase=%d\n", sc->sc_prevphase);
2064 db_printf("sc_msgpriq=0x%x\n", sc->sc_msgpriq);
2065 }
2066 #endif /* DDB */
2067 #endif /* SUNSCPAL_DEBUG */
2068
2069 void
2070 sunscpal_attach(sc, options)
2071 struct sunscpal_softc *sc;
2072 int options;
2073 {
2074
2075 /*
2076 * Handle our options.
2077 */
2078 printf(": options=0x%x\n", options);
2079 sc->sc_parity_disable = (options & SUNSCPAL_OPT_NO_PARITY_CHK);
2080 if (options & SUNSCPAL_OPT_FORCE_POLLING)
2081 sc->sc_flags |= SUNSCPAL_FORCE_POLLING;
2082 if (options & SUNSCPAL_OPT_DISABLE_DMA)
2083 sc->sc_flags |= SUNSCPAL_DISABLE_DMA;
2084
2085 /*
2086 * Fill in the adapter.
2087 */
2088 memset(&sc->sc_adapter, 0, sizeof(sc->sc_adapter));
2089 sc->sc_adapter.adapt_dev = &sc->sc_dev;
2090 sc->sc_adapter.adapt_nchannels = 1;
2091 sc->sc_adapter.adapt_openings = SUNSCPAL_OPENINGS;
2092 sc->sc_adapter.adapt_max_periph = 1;
2093 sc->sc_adapter.adapt_request = sunscpal_scsipi_request;
2094 sc->sc_adapter.adapt_minphys = sunscpal_minphys;
2095
2096 sc->sc_channel.chan_adapter = &sc->sc_adapter;
2097 sc->sc_channel.chan_bustype = &scsi_bustype;
2098 sc->sc_channel.chan_channel = 0;
2099 sc->sc_channel.chan_ntargets = 8;
2100 sc->sc_channel.chan_nluns = 8;
2101 sc->sc_channel.chan_id = 7;
2102
2103 /*
2104 * Add reference to adapter so that we drop the reference after
2105 * config_found() to make sure the adatper is disabled.
2106 */
2107 if (scsipi_adapter_addref(&sc->sc_adapter) != 0) {
2108 printf("%s: unable to enable controller\n",
2109 sc->sc_dev.dv_xname);
2110 return;
2111 }
2112
2113 sunscpal_init(sc); /* Init chip and driver */
2114 sunscpal_reset_scsibus(sc);
2115
2116 /*
2117 * Ask the adapter what subunits are present
2118 */
2119 (void) config_found(&sc->sc_dev, &sc->sc_channel, scsiprint);
2120 scsipi_adapter_delref(&sc->sc_adapter);
2121 }
2122
2123 int
2124 sunscpal_detach(sc, flags)
2125 struct sunscpal_softc *sc;
2126 int flags;
2127 {
2128
2129 return (EOPNOTSUPP);
2130 }
2131
2132 static void
2133 sunscpal_minphys(struct buf *bp)
2134 {
2135 if (bp->b_bcount > SUNSCPAL_MAX_DMA_LEN) {
2136 #ifdef SUNSCPAL_DEBUG
2137 if (sunscpal_debug & SUNSCPAL_DBG_DMA) {
2138 printf("sunscpal_minphys len = 0x%lx.\n", bp->b_bcount);
2139 Debugger();
2140 }
2141 #endif
2142 bp->b_bcount = SUNSCPAL_MAX_DMA_LEN;
2143 }
2144 return (minphys(bp));
2145 }
2146
2147 #ifdef SUNSCPAL_USE_BUS_DMA
2148
2149 /*
2150 * Allocate a DMA handle and put it in sr->sr_dma_hand. Prepare
2151 * for DMA transfer.
2152 */
2153 static void
2154 sunscpal_dma_alloc(sc)
2155 struct sunscpal_softc *sc;
2156 {
2157 struct sunscpal_req *sr = sc->sc_current;
2158 sunscpal_dma_handle_t dh;
2159 int i, xlen;
2160 u_long addr;
2161
2162 #ifdef DIAGNOSTIC
2163 if (sr->sr_dma_hand != NULL)
2164 panic("sunscpal_dma_alloc: already have DMA handle");
2165 #endif
2166
2167 addr = (u_long) sc->sc_dataptr;
2168 xlen = sc->sc_datalen;
2169
2170 /* If the DMA start addr is misaligned then do PIO */
2171 if ((addr & 1) || (xlen & 1)) {
2172 printf("sunscpal_dma_alloc: misaligned.\n");
2173 return;
2174 }
2175
2176 /* Make sure our caller checked sc_min_dma_len. */
2177 if (xlen < sc->sc_min_dma_len)
2178 panic("sunscpal_dma_alloc: xlen=0x%x\n", xlen);
2179
2180 /*
2181 * Never attempt single transfers of more than 63k, because
2182 * our count register is only 16 bits.
2183 * This should never happen since already bounded by minphys().
2184 * XXX - Should just segment these...
2185 */
2186 if (xlen > SUNSCPAL_MAX_DMA_LEN) {
2187 printf("sunscpal_dma_alloc: excessive xlen=0x%x\n", xlen);
2188 Debugger();
2189 sc->sc_datalen = xlen = SUNSCPAL_MAX_DMA_LEN;
2190 }
2191
2192 /* Find free DMA handle. Guaranteed to find one since we have
2193 as many DMA handles as the driver has processes. */
2194 for (i = 0; i < SUNSCPAL_OPENINGS; i++) {
2195 if ((sc->sc_dma_handles[i].dh_flags & SUNSCDH_BUSY) == 0)
2196 goto found;
2197 }
2198 panic("sc: no free DMA handles.");
2199 found:
2200
2201 dh = &sc->sc_dma_handles[i];
2202 dh->dh_flags = SUNSCDH_BUSY;
2203 dh->dh_mapaddr = (u_char*) addr;
2204 dh->dh_maplen = xlen;
2205 dh->dh_dvma = 0;
2206
2207 /* Load the DMA map. */
2208 if (bus_dmamap_load(sc->sunscpal_dmat, dh->dh_dmamap, dh->dh_mapaddr, dh->dh_maplen, NULL, BUS_DMA_NOWAIT) != 0) {
2209 /* Can't load map */
2210 printf("sunscpal_dma_alloc: can't DMA %p/0x%x\n",
2211 dh->dh_mapaddr, dh->dh_maplen);
2212 dh->dh_flags = 0;
2213 return;
2214 }
2215
2216 /* success */
2217 sr->sr_dma_hand = dh;
2218
2219 return;
2220 }
2221
2222 static void
2223 sunscpal_dma_free(sc)
2224 struct sunscpal_softc *sc;
2225 {
2226 struct sunscpal_req *sr = sc->sc_current;
2227 sunscpal_dma_handle_t dh = sr->sr_dma_hand;
2228
2229 #ifdef DIAGNOSTIC
2230 if (dh == NULL)
2231 panic("sunscpal_dma_free: no DMA handle");
2232 #endif
2233
2234 if (sc->sc_state & SUNSCPAL_DOINGDMA)
2235 panic("sunscpal_dma_free: free while in progress");
2236
2237 if (dh->dh_flags & SUNSCDH_BUSY) {
2238 /* XXX - Should separate allocation and mapping. */
2239 /* Give back the DVMA space. */
2240 bus_dmamap_unload(sc->sunscpal_dmat, dh->dh_dmamap);
2241 dh->dh_flags = 0;
2242 }
2243 sr->sr_dma_hand = NULL;
2244 }
2245
2246 /*
2247 * This function is called during the SELECT phase that
2248 * precedes a COMMAND phase, in case we need to setup the
2249 * DMA engine before the bus enters a DATA phase.
2250 *
2251 * On the sc version, setup the start address and the count.
2252 */
2253 static void
2254 sunscpal_dma_setup(sc)
2255 struct sunscpal_softc *sc;
2256 {
2257 struct sunscpal_req *sr = sc->sc_current;
2258 struct scsipi_xfer *xs = sr->sr_xs;
2259 sunscpal_dma_handle_t dh = sr->sr_dma_hand;
2260 long data_pa;
2261 int xlen;
2262
2263 /*
2264 * Get the DVMA mapping for this segment.
2265 * XXX - Should separate allocation and mapin.
2266 */
2267 data_pa = dh->dh_dvma;
2268 data_pa += (sc->sc_dataptr - dh->dh_mapaddr);
2269 if (data_pa & 1)
2270 panic("sunscpal_dma_setup: bad pa=0x%lx", data_pa);
2271 xlen = sc->sc_datalen;
2272 if (xlen & 1)
2273 panic("sunscpal_dma_setup: bad xlen=0x%x", xlen);
2274 sc->sc_reqlen = xlen; /* XXX: or less? */
2275
2276 #ifdef SUNSCPAL_DEBUG
2277 if (sunscpal_debug & SUNSCPAL_DBG_DMA) {
2278 printf("sunscpal_dma_setup: dh=%p, pa=0x%lx, xlen=0x%x\n",
2279 dh, data_pa, xlen);
2280 }
2281 #endif
2282
2283 /* sync the DMA map: */
2284 bus_dmamap_sync(sc->sunscpal_dmat, dh->dh_dmamap, 0, dh->dh_maplen,
2285 ((xs->xs_control & XS_CTL_DATA_OUT) == 0 ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE));
2286
2287 /* Load the start address and the count. */
2288 SUNSCPAL_WRITE_2(sc, sunscpal_dma_addr_h, (data_pa >> 16) & 0xFFFF);
2289 SUNSCPAL_WRITE_2(sc, sunscpal_dma_addr_l, (data_pa >> 0) & 0xFFFF);
2290 SUNSCPAL_WRITE_2(sc, sunscpal_dma_count, SUNSCPAL_DMA_COUNT_FLIP(xlen));
2291 }
2292
2293 #endif /* SUNSCPAL_USE_BUS_DMA */
2294