2 * Copyright (c) 1996 John Shifflett, GeoLog Consulting
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 * Drew Eckhardt's excellent 'Generic NCR5380' sources from Linux-PC
19 * provided much of the inspiration and some of the code for this
20 * driver. Everything I know about Amiga DMA was gleaned from careful
21 * reading of Hamish Mcdonald's original wd33c93 driver; in fact, I
22 * borrowed shamelessly from all over that source. Thanks Hamish!
24 * _This_ driver is (I feel) an improvement over the old one in
27 * - Target Disconnection/Reconnection is now supported. Any
28 * system with more than one device active on the SCSI bus
29 * will benefit from this. The driver defaults to what I
30 * call 'adaptive disconnect' - meaning that each command
31 * is evaluated individually as to whether or not it should
32 * be run with the option to disconnect/reselect (if the
33 * device chooses), or as a "SCSI-bus-hog".
35 * - Synchronous data transfers are now supported. Because of
36 * a few devices that choke after telling the driver that
37 * they can do sync transfers, we don't automatically use
38 * this faster protocol - it can be enabled via the command-
39 * line on a device-by-device basis.
41 * - Runtime operating parameters can now be specified through
42 * the 'amiboot' or the 'insmod' command line. For amiboot do:
43 * "amiboot [usual stuff] wd33c93=blah,blah,blah"
44 * The defaults should be good for most people. See the comment
45 * for 'setup_strings' below for more details.
47 * - The old driver relied exclusively on what the Western Digital
48 * docs call "Combination Level 2 Commands", which are a great
49 * idea in that the CPU is relieved of a lot of interrupt
50 * overhead. However, by accepting a certain (user-settable)
51 * amount of additional interrupts, this driver achieves
52 * better control over the SCSI bus, and data transfers are
53 * almost as fast while being much easier to define, track,
58 * more speed. linked commands.
61 * People with bug reports, wish-lists, complaints, comments,
62 * or improvements are asked to pah-leeez email me (John Shifflett)
63 * at john@geolog.com or jshiffle@netcom.com! I'm anxious to get
64 * this thing into as good a shape as possible, and I'm positive
65 * there are lots of lurking bugs and "Stupid Places".
69 * Added support for pre -A chips, which don't have advanced features
70 * and will generate CSR_RESEL rather than CSR_RESEL_AM.
71 * Richard Hirst <richard@sleepie.demon.co.uk> August 2000
74 #include <linux/module.h>
76 #include <linux/sched.h>
77 #include <linux/string.h>
78 #include <linux/delay.h>
79 #include <linux/init.h>
80 #include <linux/interrupt.h>
81 #include <linux/blkdev.h>
83 #include <scsi/scsi.h>
84 #include <scsi/scsi_cmnd.h>
85 #include <scsi/scsi_device.h>
86 #include <scsi/scsi_host.h>
91 #define WD33C93_VERSION "1.26"
92 #define WD33C93_DATE "22/Feb/2003"
94 MODULE_AUTHOR("John Shifflett");
95 MODULE_DESCRIPTION("Generic WD33C93 SCSI driver");
96 MODULE_LICENSE("GPL");
99 * 'setup_strings' is a single string used to pass operating parameters and
100 * settings from the kernel/module command-line to the driver. 'setup_args[]'
101 * is an array of strings that define the compile-time default values for
102 * these settings. If Linux boots with an amiboot or insmod command-line,
103 * those settings are combined with 'setup_args[]'. Note that amiboot
104 * command-lines are prefixed with "wd33c93=" while insmod uses a
105 * "setup_strings=" prefix. The driver recognizes the following keywords
106 * (lower case required) and arguments:
108 * - nosync:bitmask -bitmask is a byte where the 1st 7 bits correspond with
109 * the 7 possible SCSI devices. Set a bit to negotiate for
110 * asynchronous transfers on that device. To maintain
111 * backwards compatibility, a command-line such as
112 * "wd33c93=255" will be automatically translated to
113 * "wd33c93=nosync:0xff".
114 * - nodma:x -x = 1 to disable DMA, x = 0 to enable it. Argument is
115 * optional - if not present, same as "nodma:1".
116 * - period:ns -ns is the minimum # of nanoseconds in a SCSI data transfer
117 * period. Default is 500; acceptable values are 250 - 1000.
118 * - disconnect:x -x = 0 to never allow disconnects, 2 to always allow them.
119 * x = 1 does 'adaptive' disconnects, which is the default
120 * and generally the best choice.
121 * - debug:x -If 'DEBUGGING_ON' is defined, x is a bit mask that causes
122 * various types of debug output to printed - see the DB_xxx
123 * defines in wd33c93.h
124 * - clock:x -x = clock input in MHz for WD33c93 chip. Normal values
125 * would be from 8 through 20. Default is 8.
126 * - next -No argument. Used to separate blocks of keywords when
127 * there's more than one host adapter in the system.
130 * - Numeric arguments can be decimal or the '0x' form of hex notation. There
131 * _must_ be a colon between a keyword and its numeric argument, with no
133 * - Keywords are separated by commas, no spaces, in the standard kernel
134 * command-line manner.
135 * - A keyword in the 'nth' comma-separated command-line member will overwrite
136 * the 'nth' element of setup_args[]. A blank command-line member (in
137 * other words, a comma with no preceding keyword) will _not_ overwrite
138 * the corresponding setup_args[] element.
139 * - If a keyword is used more than once, the first one applies to the first
140 * SCSI host found, the second to the second card, etc, unless the 'next'
141 * keyword is used to change the order.
143 * Some amiboot examples (for insmod, use 'setup_strings' instead of 'wd33c93'):
144 * - wd33c93=nosync:255
147 * - wd33c93=disconnect:2,nosync:0x08,period:250
148 * - wd33c93=debug:0x1c
151 /* Normally, no defaults are specified */
152 static char *setup_args
[] = { "", "", "", "", "", "", "", "", "" };
154 static char *setup_strings
;
155 module_param(setup_strings
, charp
, 0);
157 static void wd33c93_execute(struct Scsi_Host
*instance
);
159 #ifdef CONFIG_WD33C93_PIO
161 read_wd33c93(const wd33c93_regs regs
, uchar reg_num
)
165 outb(reg_num
, regs
.SASR
);
166 data
= inb(regs
.SCMD
);
170 static inline unsigned long
171 read_wd33c93_count(const wd33c93_regs regs
)
175 outb(WD_TRANSFER_COUNT_MSB
, regs
.SASR
);
176 value
= inb(regs
.SCMD
) << 16;
177 value
|= inb(regs
.SCMD
) << 8;
178 value
|= inb(regs
.SCMD
);
183 read_aux_stat(const wd33c93_regs regs
)
185 return inb(regs
.SASR
);
189 write_wd33c93(const wd33c93_regs regs
, uchar reg_num
, uchar value
)
191 outb(reg_num
, regs
.SASR
);
192 outb(value
, regs
.SCMD
);
196 write_wd33c93_count(const wd33c93_regs regs
, unsigned long value
)
198 outb(WD_TRANSFER_COUNT_MSB
, regs
.SASR
);
199 outb((value
>> 16) & 0xff, regs
.SCMD
);
200 outb((value
>> 8) & 0xff, regs
.SCMD
);
201 outb( value
& 0xff, regs
.SCMD
);
204 #define write_wd33c93_cmd(regs, cmd) \
205 write_wd33c93((regs), WD_COMMAND, (cmd))
208 write_wd33c93_cdb(const wd33c93_regs regs
, uint len
, uchar cmnd
[])
212 outb(WD_CDB_1
, regs
.SASR
);
213 for (i
=0; i
<len
; i
++)
214 outb(cmnd
[i
], regs
.SCMD
);
217 #else /* CONFIG_WD33C93_PIO */
219 read_wd33c93(const wd33c93_regs regs
, uchar reg_num
)
221 *regs
.SASR
= reg_num
;
227 read_wd33c93_count(const wd33c93_regs regs
)
231 *regs
.SASR
= WD_TRANSFER_COUNT_MSB
;
233 value
= *regs
.SCMD
<< 16;
234 value
|= *regs
.SCMD
<< 8;
241 read_aux_stat(const wd33c93_regs regs
)
247 write_wd33c93(const wd33c93_regs regs
, uchar reg_num
, uchar value
)
249 *regs
.SASR
= reg_num
;
256 write_wd33c93_count(const wd33c93_regs regs
, unsigned long value
)
258 *regs
.SASR
= WD_TRANSFER_COUNT_MSB
;
260 *regs
.SCMD
= value
>> 16;
261 *regs
.SCMD
= value
>> 8;
267 write_wd33c93_cmd(const wd33c93_regs regs
, uchar cmd
)
269 *regs
.SASR
= WD_COMMAND
;
276 write_wd33c93_cdb(const wd33c93_regs regs
, uint len
, uchar cmnd
[])
280 *regs
.SASR
= WD_CDB_1
;
281 for (i
= 0; i
< len
; i
++)
282 *regs
.SCMD
= cmnd
[i
];
284 #endif /* CONFIG_WD33C93_PIO */
287 read_1_byte(const wd33c93_regs regs
)
292 write_wd33c93(regs
, WD_CONTROL
, CTRL_IDI
| CTRL_EDI
| CTRL_POLLED
);
293 write_wd33c93_cmd(regs
, WD_CMD_TRANS_INFO
| 0x80);
295 asr
= read_aux_stat(regs
);
297 x
= read_wd33c93(regs
, WD_DATA
);
298 } while (!(asr
& ASR_INT
));
302 static struct sx_period sx_table
[] = {
315 round_period(unsigned int period
)
319 for (x
= 1; sx_table
[x
].period_ns
; x
++) {
320 if ((period
<= sx_table
[x
- 0].period_ns
) &&
321 (period
> sx_table
[x
- 1].period_ns
)) {
329 calc_sync_xfer(unsigned int period
, unsigned int offset
)
333 period
*= 4; /* convert SDTR code to ns */
334 result
= sx_table
[round_period(period
)].reg_value
;
335 result
|= (offset
< OPTIMUM_SX_OFF
) ? offset
: OPTIMUM_SX_OFF
;
340 wd33c93_queuecommand(struct scsi_cmnd
*cmd
,
341 void (*done
)(struct scsi_cmnd
*))
343 struct WD33C93_hostdata
*hostdata
;
344 struct scsi_cmnd
*tmp
;
346 hostdata
= (struct WD33C93_hostdata
*) cmd
->device
->host
->hostdata
;
349 printk("Q-%d-%02x-%ld( ", cmd
->device
->id
, cmd
->cmnd
[0], cmd
->pid
))
351 /* Set up a few fields in the scsi_cmnd structure for our own use:
352 * - host_scribble is the pointer to the next cmd in the input queue
353 * - scsi_done points to the routine we call when a cmd is finished
354 * - result is what you'd expect
356 cmd
->host_scribble
= NULL
;
357 cmd
->scsi_done
= done
;
360 /* We use the Scsi_Pointer structure that's included with each command
361 * as a scratchpad (as it's intended to be used!). The handy thing about
362 * the SCp.xxx fields is that they're always associated with a given
363 * cmd, and are preserved across disconnect-reselect. This means we
364 * can pretty much ignore SAVE_POINTERS and RESTORE_POINTERS messages
365 * if we keep all the critical pointers and counters in SCp:
366 * - SCp.ptr is the pointer into the RAM buffer
367 * - SCp.this_residual is the size of that buffer
368 * - SCp.buffer points to the current scatter-gather buffer
369 * - SCp.buffers_residual tells us how many S.G. buffers there are
370 * - SCp.have_data_in is not used
371 * - SCp.sent_command is not used
372 * - SCp.phase records this command's SRCID_ER bit setting
376 cmd
->SCp
.buffer
= (struct scatterlist
*) cmd
->request_buffer
;
377 cmd
->SCp
.buffers_residual
= cmd
->use_sg
- 1;
378 cmd
->SCp
.ptr
= page_address(cmd
->SCp
.buffer
->page
) +
379 cmd
->SCp
.buffer
->offset
;
380 cmd
->SCp
.this_residual
= cmd
->SCp
.buffer
->length
;
382 cmd
->SCp
.buffer
= NULL
;
383 cmd
->SCp
.buffers_residual
= 0;
384 cmd
->SCp
.ptr
= (char *) cmd
->request_buffer
;
385 cmd
->SCp
.this_residual
= cmd
->request_bufflen
;
388 /* WD docs state that at the conclusion of a "LEVEL2" command, the
389 * status byte can be retrieved from the LUN register. Apparently,
390 * this is the case only for *uninterrupted* LEVEL2 commands! If
391 * there are any unexpected phases entered, even if they are 100%
392 * legal (different devices may choose to do things differently),
393 * the LEVEL2 command sequence is exited. This often occurs prior
394 * to receiving the status byte, in which case the driver does a
395 * status phase interrupt and gets the status byte on its own.
396 * While such a command can then be "resumed" (ie restarted to
397 * finish up as a LEVEL2 command), the LUN register will NOT be
398 * a valid status byte at the command's conclusion, and we must
399 * use the byte obtained during the earlier interrupt. Here, we
400 * preset SCp.Status to an illegal value (0xff) so that when
401 * this command finally completes, we can tell where the actual
402 * status byte is stored.
405 cmd
->SCp
.Status
= ILLEGAL_STATUS_BYTE
;
408 * Add the cmd to the end of 'input_Q'. Note that REQUEST SENSE
409 * commands are added to the head of the queue so that the desired
410 * sense data is not lost before REQUEST_SENSE executes.
413 spin_lock_irq(&hostdata
->lock
);
415 if (!(hostdata
->input_Q
) || (cmd
->cmnd
[0] == REQUEST_SENSE
)) {
416 cmd
->host_scribble
= (uchar
*) hostdata
->input_Q
;
417 hostdata
->input_Q
= cmd
;
418 } else { /* find the end of the queue */
419 for (tmp
= (struct scsi_cmnd
*) hostdata
->input_Q
;
421 tmp
= (struct scsi_cmnd
*) tmp
->host_scribble
) ;
422 tmp
->host_scribble
= (uchar
*) cmd
;
425 /* We know that there's at least one command in 'input_Q' now.
426 * Go see if any of them are runnable!
429 wd33c93_execute(cmd
->device
->host
);
431 DB(DB_QUEUE_COMMAND
, printk(")Q-%ld ", cmd
->pid
))
433 spin_unlock_irq(&hostdata
->lock
);
438 * This routine attempts to start a scsi command. If the host_card is
439 * already connected, we give up immediately. Otherwise, look through
440 * the input_Q, using the first command we find that's intended
441 * for a currently non-busy target/lun.
443 * wd33c93_execute() is always called with interrupts disabled or from
444 * the wd33c93_intr itself, which means that a wd33c93 interrupt
445 * cannot occur while we are in here.
448 wd33c93_execute(struct Scsi_Host
*instance
)
450 struct WD33C93_hostdata
*hostdata
=
451 (struct WD33C93_hostdata
*) instance
->hostdata
;
452 const wd33c93_regs regs
= hostdata
->regs
;
453 struct scsi_cmnd
*cmd
, *prev
;
455 DB(DB_EXECUTE
, printk("EX("))
456 if (hostdata
->selecting
|| hostdata
->connected
) {
457 DB(DB_EXECUTE
, printk(")EX-0 "))
462 * Search through the input_Q for a command destined
463 * for an idle target/lun.
466 cmd
= (struct scsi_cmnd
*) hostdata
->input_Q
;
469 if (!(hostdata
->busy
[cmd
->device
->id
] & (1 << cmd
->device
->lun
)))
472 cmd
= (struct scsi_cmnd
*) cmd
->host_scribble
;
475 /* quit if queue empty or all possible targets are busy */
478 DB(DB_EXECUTE
, printk(")EX-1 "))
482 /* remove command from queue */
485 prev
->host_scribble
= cmd
->host_scribble
;
487 hostdata
->input_Q
= (struct scsi_cmnd
*) cmd
->host_scribble
;
489 #ifdef PROC_STATISTICS
490 hostdata
->cmd_cnt
[cmd
->device
->id
]++;
494 * Start the selection process
497 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
498 write_wd33c93(regs
, WD_DESTINATION_ID
, cmd
->device
->id
);
500 write_wd33c93(regs
, WD_DESTINATION_ID
, cmd
->device
->id
| DSTID_DPD
);
502 /* Now we need to figure out whether or not this command is a good
503 * candidate for disconnect/reselect. We guess to the best of our
504 * ability, based on a set of hierarchical rules. When several
505 * devices are operating simultaneously, disconnects are usually
506 * an advantage. In a single device system, or if only 1 device
507 * is being accessed, transfers usually go faster if disconnects
510 * + Commands should NEVER disconnect if hostdata->disconnect =
511 * DIS_NEVER (this holds for tape drives also), and ALWAYS
512 * disconnect if hostdata->disconnect = DIS_ALWAYS.
513 * + Tape drive commands should always be allowed to disconnect.
514 * + Disconnect should be allowed if disconnected_Q isn't empty.
515 * + Commands should NOT disconnect if input_Q is empty.
516 * + Disconnect should be allowed if there are commands in input_Q
517 * for a different target/lun. In this case, the other commands
518 * should be made disconnect-able, if not already.
520 * I know, I know - this code would flunk me out of any
521 * "C Programming 101" class ever offered. But it's easy
522 * to change around and experiment with for now.
525 cmd
->SCp
.phase
= 0; /* assume no disconnect */
526 if (hostdata
->disconnect
== DIS_NEVER
)
528 if (hostdata
->disconnect
== DIS_ALWAYS
)
530 if (cmd
->device
->type
== 1) /* tape drive? */
532 if (hostdata
->disconnected_Q
) /* other commands disconnected? */
534 if (!(hostdata
->input_Q
)) /* input_Q empty? */
536 for (prev
= (struct scsi_cmnd
*) hostdata
->input_Q
; prev
;
537 prev
= (struct scsi_cmnd
*) prev
->host_scribble
) {
538 if ((prev
->device
->id
!= cmd
->device
->id
) ||
539 (prev
->device
->lun
!= cmd
->device
->lun
)) {
540 for (prev
= (struct scsi_cmnd
*) hostdata
->input_Q
; prev
;
541 prev
= (struct scsi_cmnd
*) prev
->host_scribble
)
552 #ifdef PROC_STATISTICS
553 hostdata
->disc_allowed_cnt
[cmd
->device
->id
]++;
558 write_wd33c93(regs
, WD_SOURCE_ID
, ((cmd
->SCp
.phase
) ? SRCID_ER
: 0));
560 write_wd33c93(regs
, WD_TARGET_LUN
, cmd
->device
->lun
);
561 write_wd33c93(regs
, WD_SYNCHRONOUS_TRANSFER
,
562 hostdata
->sync_xfer
[cmd
->device
->id
]);
563 hostdata
->busy
[cmd
->device
->id
] |= (1 << cmd
->device
->lun
);
565 if ((hostdata
->level2
== L2_NONE
) ||
566 (hostdata
->sync_stat
[cmd
->device
->id
] == SS_UNSET
)) {
569 * Do a 'Select-With-ATN' command. This will end with
570 * one of the following interrupts:
571 * CSR_RESEL_AM: failure - can try again later.
572 * CSR_TIMEOUT: failure - give up.
573 * CSR_SELECT: success - proceed.
576 hostdata
->selecting
= cmd
;
578 /* Every target has its own synchronous transfer setting, kept in the
579 * sync_xfer array, and a corresponding status byte in sync_stat[].
580 * Each target's sync_stat[] entry is initialized to SX_UNSET, and its
581 * sync_xfer[] entry is initialized to the default/safe value. SS_UNSET
582 * means that the parameters are undetermined as yet, and that we
583 * need to send an SDTR message to this device after selection is
584 * complete: We set SS_FIRST to tell the interrupt routine to do so.
585 * If we've been asked not to try synchronous transfers on this
586 * target (and _all_ luns within it), we'll still send the SDTR message
587 * later, but at that time we'll negotiate for async by specifying a
588 * sync fifo depth of 0.
590 if (hostdata
->sync_stat
[cmd
->device
->id
] == SS_UNSET
)
591 hostdata
->sync_stat
[cmd
->device
->id
] = SS_FIRST
;
592 hostdata
->state
= S_SELECTING
;
593 write_wd33c93_count(regs
, 0); /* guarantee a DATA_PHASE interrupt */
594 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN
);
598 * Do a 'Select-With-ATN-Xfer' command. This will end with
599 * one of the following interrupts:
600 * CSR_RESEL_AM: failure - can try again later.
601 * CSR_TIMEOUT: failure - give up.
602 * anything else: success - proceed.
605 hostdata
->connected
= cmd
;
606 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0);
608 /* copy command_descriptor_block into WD chip
609 * (take advantage of auto-incrementing)
612 write_wd33c93_cdb(regs
, cmd
->cmd_len
, cmd
->cmnd
);
614 /* The wd33c93 only knows about Group 0, 1, and 5 commands when
615 * it's doing a 'select-and-transfer'. To be safe, we write the
616 * size of the CDB into the OWN_ID register for every case. This
617 * way there won't be problems with vendor-unique, audio, etc.
620 write_wd33c93(regs
, WD_OWN_ID
, cmd
->cmd_len
);
622 /* When doing a non-disconnect command with DMA, we can save
623 * ourselves a DATA phase interrupt later by setting everything
627 if ((cmd
->SCp
.phase
== 0) && (hostdata
->no_dma
== 0)) {
628 if (hostdata
->dma_setup(cmd
,
629 (cmd
->sc_data_direction
== DMA_TO_DEVICE
) ?
630 DATA_OUT_DIR
: DATA_IN_DIR
))
631 write_wd33c93_count(regs
, 0); /* guarantee a DATA_PHASE interrupt */
633 write_wd33c93_count(regs
,
634 cmd
->SCp
.this_residual
);
635 write_wd33c93(regs
, WD_CONTROL
,
636 CTRL_IDI
| CTRL_EDI
| CTRL_DMA
);
637 hostdata
->dma
= D_DMA_RUNNING
;
640 write_wd33c93_count(regs
, 0); /* guarantee a DATA_PHASE interrupt */
642 hostdata
->state
= S_RUNNING_LEVEL2
;
643 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
647 * Since the SCSI bus can handle only 1 connection at a time,
648 * we get out of here now. If the selection fails, or when
649 * the command disconnects, we'll come back to this routine
650 * to search the input_Q again...
654 printk("%s%ld)EX-2 ", (cmd
->SCp
.phase
) ? "d:" : "", cmd
->pid
))
658 transfer_pio(const wd33c93_regs regs
, uchar
* buf
, int cnt
,
659 int data_in_dir
, struct WD33C93_hostdata
*hostdata
)
664 printk("(%p,%d,%s:", buf
, cnt
, data_in_dir
? "in" : "out"))
666 write_wd33c93(regs
, WD_CONTROL
, CTRL_IDI
| CTRL_EDI
| CTRL_POLLED
);
667 write_wd33c93_count(regs
, cnt
);
668 write_wd33c93_cmd(regs
, WD_CMD_TRANS_INFO
);
671 asr
= read_aux_stat(regs
);
673 *buf
++ = read_wd33c93(regs
, WD_DATA
);
674 } while (!(asr
& ASR_INT
));
677 asr
= read_aux_stat(regs
);
679 write_wd33c93(regs
, WD_DATA
, *buf
++);
680 } while (!(asr
& ASR_INT
));
683 /* Note: we are returning with the interrupt UN-cleared.
684 * Since (presumably) an entire I/O operation has
685 * completed, the bus phase is probably different, and
686 * the interrupt routine will discover this when it
687 * responds to the uncleared int.
693 transfer_bytes(const wd33c93_regs regs
, struct scsi_cmnd
*cmd
,
696 struct WD33C93_hostdata
*hostdata
;
697 unsigned long length
;
699 hostdata
= (struct WD33C93_hostdata
*) cmd
->device
->host
->hostdata
;
701 /* Normally, you'd expect 'this_residual' to be non-zero here.
702 * In a series of scatter-gather transfers, however, this
703 * routine will usually be called with 'this_residual' equal
704 * to 0 and 'buffers_residual' non-zero. This means that a
705 * previous transfer completed, clearing 'this_residual', and
706 * now we need to setup the next scatter-gather buffer as the
707 * source or destination for THIS transfer.
709 if (!cmd
->SCp
.this_residual
&& cmd
->SCp
.buffers_residual
) {
711 --cmd
->SCp
.buffers_residual
;
712 cmd
->SCp
.this_residual
= cmd
->SCp
.buffer
->length
;
713 cmd
->SCp
.ptr
= page_address(cmd
->SCp
.buffer
->page
) +
714 cmd
->SCp
.buffer
->offset
;
717 write_wd33c93(regs
, WD_SYNCHRONOUS_TRANSFER
,
718 hostdata
->sync_xfer
[cmd
->device
->id
]);
720 /* 'hostdata->no_dma' is TRUE if we don't even want to try DMA.
721 * Update 'this_residual' and 'ptr' after 'transfer_pio()' returns.
724 if (hostdata
->no_dma
|| hostdata
->dma_setup(cmd
, data_in_dir
)) {
725 #ifdef PROC_STATISTICS
728 transfer_pio(regs
, (uchar
*) cmd
->SCp
.ptr
,
729 cmd
->SCp
.this_residual
, data_in_dir
, hostdata
);
730 length
= cmd
->SCp
.this_residual
;
731 cmd
->SCp
.this_residual
= read_wd33c93_count(regs
);
732 cmd
->SCp
.ptr
+= (length
- cmd
->SCp
.this_residual
);
735 /* We are able to do DMA (in fact, the Amiga hardware is
736 * already going!), so start up the wd33c93 in DMA mode.
737 * We set 'hostdata->dma' = D_DMA_RUNNING so that when the
738 * transfer completes and causes an interrupt, we're
739 * reminded to tell the Amiga to shut down its end. We'll
740 * postpone the updating of 'this_residual' and 'ptr'
745 #ifdef PROC_STATISTICS
748 write_wd33c93(regs
, WD_CONTROL
, CTRL_IDI
| CTRL_EDI
| CTRL_DMA
);
749 write_wd33c93_count(regs
, cmd
->SCp
.this_residual
);
751 if ((hostdata
->level2
>= L2_DATA
) ||
752 (hostdata
->level2
== L2_BASIC
&& cmd
->SCp
.phase
== 0)) {
753 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0x45);
754 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
755 hostdata
->state
= S_RUNNING_LEVEL2
;
757 write_wd33c93_cmd(regs
, WD_CMD_TRANS_INFO
);
759 hostdata
->dma
= D_DMA_RUNNING
;
764 wd33c93_intr(struct Scsi_Host
*instance
)
766 struct WD33C93_hostdata
*hostdata
=
767 (struct WD33C93_hostdata
*) instance
->hostdata
;
768 const wd33c93_regs regs
= hostdata
->regs
;
769 struct scsi_cmnd
*patch
, *cmd
;
770 uchar asr
, sr
, phs
, id
, lun
, *ucp
, msg
;
771 unsigned long length
, flags
;
773 asr
= read_aux_stat(regs
);
774 if (!(asr
& ASR_INT
) || (asr
& ASR_BSY
))
777 spin_lock_irqsave(&hostdata
->lock
, flags
);
779 #ifdef PROC_STATISTICS
783 cmd
= (struct scsi_cmnd
*) hostdata
->connected
; /* assume we're connected */
784 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
); /* clear the interrupt */
785 phs
= read_wd33c93(regs
, WD_COMMAND_PHASE
);
787 DB(DB_INTR
, printk("{%02x:%02x-", asr
, sr
))
789 /* After starting a DMA transfer, the next interrupt
790 * is guaranteed to be in response to completion of
791 * the transfer. Since the Amiga DMA hardware runs in
792 * in an open-ended fashion, it needs to be told when
793 * to stop; do that here if D_DMA_RUNNING is true.
794 * Also, we have to update 'this_residual' and 'ptr'
795 * based on the contents of the TRANSFER_COUNT register,
796 * in case the device decided to do an intermediate
797 * disconnect (a device may do this if it has to do a
798 * seek, or just to be nice and let other devices have
799 * some bus time during long transfers). After doing
800 * whatever is needed, we go on and service the WD3393
801 * interrupt normally.
803 if (hostdata
->dma
== D_DMA_RUNNING
) {
805 printk("[%p/%d:", cmd
->SCp
.ptr
, cmd
->SCp
.this_residual
))
806 hostdata
->dma_stop(cmd
->device
->host
, cmd
, 1);
807 hostdata
->dma
= D_DMA_OFF
;
808 length
= cmd
->SCp
.this_residual
;
809 cmd
->SCp
.this_residual
= read_wd33c93_count(regs
);
810 cmd
->SCp
.ptr
+= (length
- cmd
->SCp
.this_residual
);
812 printk("%p/%d]", cmd
->SCp
.ptr
, cmd
->SCp
.this_residual
))
815 /* Respond to the specific WD3393 interrupt - there are quite a few! */
818 DB(DB_INTR
, printk("TIMEOUT"))
820 if (hostdata
->state
== S_RUNNING_LEVEL2
)
821 hostdata
->connected
= NULL
;
823 cmd
= (struct scsi_cmnd
*) hostdata
->selecting
; /* get a valid cmd */
824 hostdata
->selecting
= NULL
;
827 cmd
->result
= DID_NO_CONNECT
<< 16;
828 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
829 hostdata
->state
= S_UNCONNECTED
;
833 * There is a window of time within the scsi_done() path
834 * of execution where interrupts are turned back on full
835 * blast and left that way. During that time we could
836 * reconnect to a disconnected command, then we'd bomb
837 * out below. We could also end up executing two commands
838 * at _once_. ...just so you know why the restore_flags()
842 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
844 /* We are not connected to a target - check to see if there
845 * are commands waiting to be executed.
848 wd33c93_execute(instance
);
851 /* Note: this interrupt should not occur in a LEVEL2 command */
854 DB(DB_INTR
, printk("SELECT"))
855 hostdata
->connected
= cmd
=
856 (struct scsi_cmnd
*) hostdata
->selecting
;
857 hostdata
->selecting
= NULL
;
859 /* construct an IDENTIFY message with correct disconnect bit */
861 hostdata
->outgoing_msg
[0] = (0x80 | 0x00 | cmd
->device
->lun
);
863 hostdata
->outgoing_msg
[0] |= 0x40;
865 if (hostdata
->sync_stat
[cmd
->device
->id
] == SS_FIRST
) {
867 printk(" sending SDTR ");
870 hostdata
->sync_stat
[cmd
->device
->id
] = SS_WAITING
;
872 /* Tack on a 2nd message to ask about synchronous transfers. If we've
873 * been asked to do only asynchronous transfers on this device, we
874 * request a fifo depth of 0, which is equivalent to async - should
875 * solve the problems some people have had with GVP's Guru ROM.
878 hostdata
->outgoing_msg
[1] = EXTENDED_MESSAGE
;
879 hostdata
->outgoing_msg
[2] = 3;
880 hostdata
->outgoing_msg
[3] = EXTENDED_SDTR
;
881 if (hostdata
->no_sync
& (1 << cmd
->device
->id
)) {
882 hostdata
->outgoing_msg
[4] =
883 hostdata
->default_sx_per
/ 4;
884 hostdata
->outgoing_msg
[5] = 0;
886 hostdata
->outgoing_msg
[4] = OPTIMUM_SX_PER
/ 4;
887 hostdata
->outgoing_msg
[5] = OPTIMUM_SX_OFF
;
889 hostdata
->outgoing_len
= 6;
891 hostdata
->outgoing_len
= 1;
893 hostdata
->state
= S_CONNECTED
;
894 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
897 case CSR_XFER_DONE
| PHS_DATA_IN
:
898 case CSR_UNEXP
| PHS_DATA_IN
:
899 case CSR_SRV_REQ
| PHS_DATA_IN
:
901 printk("IN-%d.%d", cmd
->SCp
.this_residual
,
902 cmd
->SCp
.buffers_residual
))
903 transfer_bytes(regs
, cmd
, DATA_IN_DIR
);
904 if (hostdata
->state
!= S_RUNNING_LEVEL2
)
905 hostdata
->state
= S_CONNECTED
;
906 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
909 case CSR_XFER_DONE
| PHS_DATA_OUT
:
910 case CSR_UNEXP
| PHS_DATA_OUT
:
911 case CSR_SRV_REQ
| PHS_DATA_OUT
:
913 printk("OUT-%d.%d", cmd
->SCp
.this_residual
,
914 cmd
->SCp
.buffers_residual
))
915 transfer_bytes(regs
, cmd
, DATA_OUT_DIR
);
916 if (hostdata
->state
!= S_RUNNING_LEVEL2
)
917 hostdata
->state
= S_CONNECTED
;
918 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
921 /* Note: this interrupt should not occur in a LEVEL2 command */
923 case CSR_XFER_DONE
| PHS_COMMAND
:
924 case CSR_UNEXP
| PHS_COMMAND
:
925 case CSR_SRV_REQ
| PHS_COMMAND
:
926 DB(DB_INTR
, printk("CMND-%02x,%ld", cmd
->cmnd
[0], cmd
->pid
))
927 transfer_pio(regs
, cmd
->cmnd
, cmd
->cmd_len
, DATA_OUT_DIR
,
929 hostdata
->state
= S_CONNECTED
;
930 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
933 case CSR_XFER_DONE
| PHS_STATUS
:
934 case CSR_UNEXP
| PHS_STATUS
:
935 case CSR_SRV_REQ
| PHS_STATUS
:
936 DB(DB_INTR
, printk("STATUS="))
937 cmd
->SCp
.Status
= read_1_byte(regs
);
938 DB(DB_INTR
, printk("%02x", cmd
->SCp
.Status
))
939 if (hostdata
->level2
>= L2_BASIC
) {
940 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
); /* clear interrupt */
942 hostdata
->state
= S_RUNNING_LEVEL2
;
943 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0x50);
944 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
946 hostdata
->state
= S_CONNECTED
;
948 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
951 case CSR_XFER_DONE
| PHS_MESS_IN
:
952 case CSR_UNEXP
| PHS_MESS_IN
:
953 case CSR_SRV_REQ
| PHS_MESS_IN
:
954 DB(DB_INTR
, printk("MSG_IN="))
956 msg
= read_1_byte(regs
);
957 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
); /* clear interrupt */
960 hostdata
->incoming_msg
[hostdata
->incoming_ptr
] = msg
;
961 if (hostdata
->incoming_msg
[0] == EXTENDED_MESSAGE
)
962 msg
= EXTENDED_MESSAGE
;
964 hostdata
->incoming_ptr
= 0;
966 cmd
->SCp
.Message
= msg
;
969 case COMMAND_COMPLETE
:
970 DB(DB_INTR
, printk("CCMP-%ld", cmd
->pid
))
971 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
972 hostdata
->state
= S_PRE_CMP_DISC
;
976 DB(DB_INTR
, printk("SDP"))
977 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
978 hostdata
->state
= S_CONNECTED
;
981 case RESTORE_POINTERS
:
982 DB(DB_INTR
, printk("RDP"))
983 if (hostdata
->level2
>= L2_BASIC
) {
984 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0x45);
985 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
986 hostdata
->state
= S_RUNNING_LEVEL2
;
988 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
989 hostdata
->state
= S_CONNECTED
;
994 DB(DB_INTR
, printk("DIS"))
995 cmd
->device
->disconnect
= 1;
996 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
997 hostdata
->state
= S_PRE_TMP_DISC
;
1000 case MESSAGE_REJECT
:
1001 DB(DB_INTR
, printk("REJ"))
1005 if (hostdata
->sync_stat
[cmd
->device
->id
] == SS_WAITING
)
1006 hostdata
->sync_stat
[cmd
->device
->id
] = SS_SET
;
1007 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
1008 hostdata
->state
= S_CONNECTED
;
1011 case EXTENDED_MESSAGE
:
1012 DB(DB_INTR
, printk("EXT"))
1014 ucp
= hostdata
->incoming_msg
;
1017 printk("%02x", ucp
[hostdata
->incoming_ptr
]);
1019 /* Is this the last byte of the extended message? */
1021 if ((hostdata
->incoming_ptr
>= 2) &&
1022 (hostdata
->incoming_ptr
== (ucp
[1] + 1))) {
1024 switch (ucp
[2]) { /* what's the EXTENDED code? */
1026 id
= calc_sync_xfer(ucp
[3], ucp
[4]);
1027 if (hostdata
->sync_stat
[cmd
->device
->id
] !=
1030 /* A device has sent an unsolicited SDTR message; rather than go
1031 * through the effort of decoding it and then figuring out what
1032 * our reply should be, we're just gonna say that we have a
1033 * synchronous fifo depth of 0. This will result in asynchronous
1034 * transfers - not ideal but so much easier.
1035 * Actually, this is OK because it assures us that if we don't
1036 * specifically ask for sync transfers, we won't do any.
1039 write_wd33c93_cmd(regs
, WD_CMD_ASSERT_ATN
); /* want MESS_OUT */
1040 hostdata
->outgoing_msg
[0] =
1042 hostdata
->outgoing_msg
[1] = 3;
1043 hostdata
->outgoing_msg
[2] =
1045 hostdata
->outgoing_msg
[3] =
1046 hostdata
->default_sx_per
/
1048 hostdata
->outgoing_msg
[4] = 0;
1049 hostdata
->outgoing_len
= 5;
1050 hostdata
->sync_xfer
[cmd
->device
->id
] =
1051 calc_sync_xfer(hostdata
->
1055 hostdata
->sync_xfer
[cmd
->device
->id
] = id
;
1058 printk("sync_xfer=%02x",
1059 hostdata
->sync_xfer
[cmd
->device
->id
]);
1061 hostdata
->sync_stat
[cmd
->device
->id
] =
1063 write_wd33c93_cmd(regs
,
1065 hostdata
->state
= S_CONNECTED
;
1068 write_wd33c93_cmd(regs
, WD_CMD_ASSERT_ATN
); /* want MESS_OUT */
1069 printk("sending WDTR ");
1070 hostdata
->outgoing_msg
[0] =
1072 hostdata
->outgoing_msg
[1] = 2;
1073 hostdata
->outgoing_msg
[2] =
1075 hostdata
->outgoing_msg
[3] = 0; /* 8 bit transfer width */
1076 hostdata
->outgoing_len
= 4;
1077 write_wd33c93_cmd(regs
,
1079 hostdata
->state
= S_CONNECTED
;
1082 write_wd33c93_cmd(regs
, WD_CMD_ASSERT_ATN
); /* want MESS_OUT */
1084 ("Rejecting Unknown Extended Message(%02x). ",
1086 hostdata
->outgoing_msg
[0] =
1088 hostdata
->outgoing_len
= 1;
1089 write_wd33c93_cmd(regs
,
1091 hostdata
->state
= S_CONNECTED
;
1094 hostdata
->incoming_ptr
= 0;
1097 /* We need to read more MESS_IN bytes for the extended message */
1100 hostdata
->incoming_ptr
++;
1101 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
1102 hostdata
->state
= S_CONNECTED
;
1107 printk("Rejecting Unknown Message(%02x) ", msg
);
1108 write_wd33c93_cmd(regs
, WD_CMD_ASSERT_ATN
); /* want MESS_OUT */
1109 hostdata
->outgoing_msg
[0] = MESSAGE_REJECT
;
1110 hostdata
->outgoing_len
= 1;
1111 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
1112 hostdata
->state
= S_CONNECTED
;
1114 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1117 /* Note: this interrupt will occur only after a LEVEL2 command */
1119 case CSR_SEL_XFER_DONE
:
1121 /* Make sure that reselection is enabled at this point - it may
1122 * have been turned off for the command that just completed.
1125 write_wd33c93(regs
, WD_SOURCE_ID
, SRCID_ER
);
1127 DB(DB_INTR
, printk("SX-DONE-%ld", cmd
->pid
))
1128 cmd
->SCp
.Message
= COMMAND_COMPLETE
;
1129 lun
= read_wd33c93(regs
, WD_TARGET_LUN
);
1130 DB(DB_INTR
, printk(":%d.%d", cmd
->SCp
.Status
, lun
))
1131 hostdata
->connected
= NULL
;
1132 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
1133 hostdata
->state
= S_UNCONNECTED
;
1134 if (cmd
->SCp
.Status
== ILLEGAL_STATUS_BYTE
)
1135 cmd
->SCp
.Status
= lun
;
1136 if (cmd
->cmnd
[0] == REQUEST_SENSE
1137 && cmd
->SCp
.Status
!= GOOD
)
1140 result
& 0x00ffff) | (DID_ERROR
<< 16);
1143 cmd
->SCp
.Status
| (cmd
->SCp
.Message
<< 8);
1144 cmd
->scsi_done(cmd
);
1146 /* We are no longer connected to a target - check to see if
1147 * there are commands waiting to be executed.
1149 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1150 wd33c93_execute(instance
);
1153 ("%02x:%02x:%02x-%ld: Unknown SEL_XFER_DONE phase!!---",
1154 asr
, sr
, phs
, cmd
->pid
);
1155 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1159 /* Note: this interrupt will occur only after a LEVEL2 command */
1162 DB(DB_INTR
, printk("SDP"))
1163 hostdata
->state
= S_RUNNING_LEVEL2
;
1164 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0x41);
1165 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
1166 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1169 case CSR_XFER_DONE
| PHS_MESS_OUT
:
1170 case CSR_UNEXP
| PHS_MESS_OUT
:
1171 case CSR_SRV_REQ
| PHS_MESS_OUT
:
1172 DB(DB_INTR
, printk("MSG_OUT="))
1174 /* To get here, we've probably requested MESSAGE_OUT and have
1175 * already put the correct bytes in outgoing_msg[] and filled
1176 * in outgoing_len. We simply send them out to the SCSI bus.
1177 * Sometimes we get MESSAGE_OUT phase when we're not expecting
1178 * it - like when our SDTR message is rejected by a target. Some
1179 * targets send the REJECT before receiving all of the extended
1180 * message, and then seem to go back to MESSAGE_OUT for a byte
1181 * or two. Not sure why, or if I'm doing something wrong to
1182 * cause this to happen. Regardless, it seems that sending
1183 * NOP messages in these situations results in no harm and
1184 * makes everyone happy.
1186 if (hostdata
->outgoing_len
== 0) {
1187 hostdata
->outgoing_len
= 1;
1188 hostdata
->outgoing_msg
[0] = NOP
;
1190 transfer_pio(regs
, hostdata
->outgoing_msg
,
1191 hostdata
->outgoing_len
, DATA_OUT_DIR
, hostdata
);
1192 DB(DB_INTR
, printk("%02x", hostdata
->outgoing_msg
[0]))
1193 hostdata
->outgoing_len
= 0;
1194 hostdata
->state
= S_CONNECTED
;
1195 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1198 case CSR_UNEXP_DISC
:
1200 /* I think I've seen this after a request-sense that was in response
1201 * to an error condition, but not sure. We certainly need to do
1202 * something when we get this interrupt - the question is 'what?'.
1203 * Let's think positively, and assume some command has finished
1204 * in a legal manner (like a command that provokes a request-sense),
1205 * so we treat it as a normal command-complete-disconnect.
1208 /* Make sure that reselection is enabled at this point - it may
1209 * have been turned off for the command that just completed.
1212 write_wd33c93(regs
, WD_SOURCE_ID
, SRCID_ER
);
1214 printk(" - Already disconnected! ");
1215 hostdata
->state
= S_UNCONNECTED
;
1216 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1219 DB(DB_INTR
, printk("UNEXP_DISC-%ld", cmd
->pid
))
1220 hostdata
->connected
= NULL
;
1221 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
1222 hostdata
->state
= S_UNCONNECTED
;
1223 if (cmd
->cmnd
[0] == REQUEST_SENSE
&& cmd
->SCp
.Status
!= GOOD
)
1225 (cmd
->result
& 0x00ffff) | (DID_ERROR
<< 16);
1227 cmd
->result
= cmd
->SCp
.Status
| (cmd
->SCp
.Message
<< 8);
1228 cmd
->scsi_done(cmd
);
1230 /* We are no longer connected to a target - check to see if
1231 * there are commands waiting to be executed.
1233 /* look above for comments on scsi_done() */
1234 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1235 wd33c93_execute(instance
);
1240 /* Make sure that reselection is enabled at this point - it may
1241 * have been turned off for the command that just completed.
1244 write_wd33c93(regs
, WD_SOURCE_ID
, SRCID_ER
);
1245 DB(DB_INTR
, printk("DISC-%ld", cmd
->pid
))
1247 printk(" - Already disconnected! ");
1248 hostdata
->state
= S_UNCONNECTED
;
1250 switch (hostdata
->state
) {
1251 case S_PRE_CMP_DISC
:
1252 hostdata
->connected
= NULL
;
1253 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
1254 hostdata
->state
= S_UNCONNECTED
;
1255 DB(DB_INTR
, printk(":%d", cmd
->SCp
.Status
))
1256 if (cmd
->cmnd
[0] == REQUEST_SENSE
1257 && cmd
->SCp
.Status
!= GOOD
)
1260 result
& 0x00ffff) | (DID_ERROR
<< 16);
1263 cmd
->SCp
.Status
| (cmd
->SCp
.Message
<< 8);
1264 cmd
->scsi_done(cmd
);
1266 case S_PRE_TMP_DISC
:
1267 case S_RUNNING_LEVEL2
:
1268 cmd
->host_scribble
= (uchar
*) hostdata
->disconnected_Q
;
1269 hostdata
->disconnected_Q
= cmd
;
1270 hostdata
->connected
= NULL
;
1271 hostdata
->state
= S_UNCONNECTED
;
1273 #ifdef PROC_STATISTICS
1274 hostdata
->disc_done_cnt
[cmd
->device
->id
]++;
1279 printk("*** Unexpected DISCONNECT interrupt! ***");
1280 hostdata
->state
= S_UNCONNECTED
;
1283 /* We are no longer connected to a target - check to see if
1284 * there are commands waiting to be executed.
1286 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1287 wd33c93_execute(instance
);
1292 DB(DB_INTR
, printk("RESEL%s", sr
== CSR_RESEL_AM
? "_AM" : ""))
1294 /* Old chips (pre -A ???) don't have advanced features and will
1295 * generate CSR_RESEL. In that case we have to extract the LUN the
1296 * hard way (see below).
1297 * First we have to make sure this reselection didn't
1298 * happen during Arbitration/Selection of some other device.
1299 * If yes, put losing command back on top of input_Q.
1301 if (hostdata
->level2
<= L2_NONE
) {
1303 if (hostdata
->selecting
) {
1304 cmd
= (struct scsi_cmnd
*) hostdata
->selecting
;
1305 hostdata
->selecting
= NULL
;
1306 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
1307 cmd
->host_scribble
=
1308 (uchar
*) hostdata
->input_Q
;
1309 hostdata
->input_Q
= cmd
;
1317 hostdata
->busy
[cmd
->device
->id
] &=
1318 ~(1 << cmd
->device
->lun
);
1319 cmd
->host_scribble
=
1320 (uchar
*) hostdata
->input_Q
;
1321 hostdata
->input_Q
= cmd
;
1324 ("---%02x:%02x:%02x-TROUBLE: Intrusive ReSelect!---",
1333 /* OK - find out which device reselected us. */
1335 id
= read_wd33c93(regs
, WD_SOURCE_ID
);
1338 /* and extract the lun from the ID message. (Note that we don't
1339 * bother to check for a valid message here - I guess this is
1340 * not the right way to go, but...)
1343 if (sr
== CSR_RESEL_AM
) {
1344 lun
= read_wd33c93(regs
, WD_DATA
);
1345 if (hostdata
->level2
< L2_RESELECT
)
1346 write_wd33c93_cmd(regs
, WD_CMD_NEGATE_ACK
);
1349 /* Old chip; wait for msgin phase to pick up the LUN. */
1350 for (lun
= 255; lun
; lun
--) {
1351 if ((asr
= read_aux_stat(regs
)) & ASR_INT
)
1355 if (!(asr
& ASR_INT
)) {
1357 ("wd33c93: Reselected without IDENTIFY\n");
1360 /* Verify this is a change to MSG_IN and read the message */
1361 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
);
1363 if (sr
== (CSR_ABORT
| PHS_MESS_IN
) ||
1364 sr
== (CSR_UNEXP
| PHS_MESS_IN
) ||
1365 sr
== (CSR_SRV_REQ
| PHS_MESS_IN
)) {
1366 /* Got MSG_IN, grab target LUN */
1367 lun
= read_1_byte(regs
);
1368 /* Now we expect a 'paused with ACK asserted' int.. */
1369 asr
= read_aux_stat(regs
);
1370 if (!(asr
& ASR_INT
)) {
1372 asr
= read_aux_stat(regs
);
1373 if (!(asr
& ASR_INT
))
1375 ("wd33c93: No int after LUN on RESEL (%02x)\n",
1378 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
);
1380 if (sr
!= CSR_MSGIN
)
1382 ("wd33c93: Not paused with ACK on RESEL (%02x)\n",
1385 write_wd33c93_cmd(regs
,
1389 ("wd33c93: Not MSG_IN on reselect (%02x)\n",
1396 /* Now we look for the command that's reconnecting. */
1398 cmd
= (struct scsi_cmnd
*) hostdata
->disconnected_Q
;
1401 if (id
== cmd
->device
->id
&& lun
== cmd
->device
->lun
)
1404 cmd
= (struct scsi_cmnd
*) cmd
->host_scribble
;
1407 /* Hmm. Couldn't find a valid command.... What to do? */
1411 ("---TROUBLE: target %d.%d not in disconnect queue---",
1413 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1417 /* Ok, found the command - now start it up again. */
1420 patch
->host_scribble
= cmd
->host_scribble
;
1422 hostdata
->disconnected_Q
=
1423 (struct scsi_cmnd
*) cmd
->host_scribble
;
1424 hostdata
->connected
= cmd
;
1426 /* We don't need to worry about 'initialize_SCp()' or 'hostdata->busy[]'
1427 * because these things are preserved over a disconnect.
1428 * But we DO need to fix the DPD bit so it's correct for this command.
1431 if (cmd
->sc_data_direction
== DMA_TO_DEVICE
)
1432 write_wd33c93(regs
, WD_DESTINATION_ID
, cmd
->device
->id
);
1434 write_wd33c93(regs
, WD_DESTINATION_ID
,
1435 cmd
->device
->id
| DSTID_DPD
);
1436 if (hostdata
->level2
>= L2_RESELECT
) {
1437 write_wd33c93_count(regs
, 0); /* we want a DATA_PHASE interrupt */
1438 write_wd33c93(regs
, WD_COMMAND_PHASE
, 0x45);
1439 write_wd33c93_cmd(regs
, WD_CMD_SEL_ATN_XFER
);
1440 hostdata
->state
= S_RUNNING_LEVEL2
;
1442 hostdata
->state
= S_CONNECTED
;
1444 DB(DB_INTR
, printk("-%ld", cmd
->pid
))
1445 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1449 printk("--UNKNOWN INTERRUPT:%02x:%02x:%02x--", asr
, sr
, phs
);
1450 spin_unlock_irqrestore(&hostdata
->lock
, flags
);
1453 DB(DB_INTR
, printk("} "))
1458 reset_wd33c93(struct Scsi_Host
*instance
)
1460 struct WD33C93_hostdata
*hostdata
=
1461 (struct WD33C93_hostdata
*) instance
->hostdata
;
1462 const wd33c93_regs regs
= hostdata
->regs
;
1465 #ifdef CONFIG_SGI_IP22
1468 extern void sgiwd93_reset(unsigned long);
1469 /* wait 'til the chip gets some time for us */
1470 while ((read_aux_stat(regs
) & ASR_BSY
) && busycount
++ < 100)
1473 * there are scsi devices out there, which manage to lock up
1474 * the wd33c93 in a busy condition. In this state it won't
1475 * accept the reset command. The only way to solve this is to
1476 * give the chip a hardware reset (if possible). The code below
1477 * does this for the SGI Indy, where this is possible
1480 if (read_aux_stat(regs
) & ASR_BSY
)
1481 sgiwd93_reset(instance
->base
); /* yeah, give it the hard one */
1485 write_wd33c93(regs
, WD_OWN_ID
, OWNID_EAF
| OWNID_RAF
|
1486 instance
->this_id
| hostdata
->clock_freq
);
1487 write_wd33c93(regs
, WD_CONTROL
, CTRL_IDI
| CTRL_EDI
| CTRL_POLLED
);
1488 write_wd33c93(regs
, WD_SYNCHRONOUS_TRANSFER
,
1489 calc_sync_xfer(hostdata
->default_sx_per
/ 4,
1491 write_wd33c93(regs
, WD_COMMAND
, WD_CMD_RESET
);
1494 #ifdef CONFIG_MVME147_SCSI
1495 udelay(25); /* The old wd33c93 on MVME147 needs this, at least */
1498 while (!(read_aux_stat(regs
) & ASR_INT
))
1500 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
);
1502 hostdata
->microcode
= read_wd33c93(regs
, WD_CDB_1
);
1504 hostdata
->chip
= C_WD33C93
;
1505 else if (sr
== 0x01) {
1506 write_wd33c93(regs
, WD_QUEUE_TAG
, 0xa5); /* any random number */
1507 sr
= read_wd33c93(regs
, WD_QUEUE_TAG
);
1509 hostdata
->chip
= C_WD33C93B
;
1510 write_wd33c93(regs
, WD_QUEUE_TAG
, 0);
1512 hostdata
->chip
= C_WD33C93A
;
1514 hostdata
->chip
= C_UNKNOWN_CHIP
;
1516 write_wd33c93(regs
, WD_TIMEOUT_PERIOD
, TIMEOUT_PERIOD_VALUE
);
1517 write_wd33c93(regs
, WD_CONTROL
, CTRL_IDI
| CTRL_EDI
| CTRL_POLLED
);
1521 wd33c93_host_reset(struct scsi_cmnd
* SCpnt
)
1523 struct Scsi_Host
*instance
;
1524 struct WD33C93_hostdata
*hostdata
;
1527 instance
= SCpnt
->device
->host
;
1528 hostdata
= (struct WD33C93_hostdata
*) instance
->hostdata
;
1530 printk("scsi%d: reset. ", instance
->host_no
);
1531 disable_irq(instance
->irq
);
1533 hostdata
->dma_stop(instance
, NULL
, 0);
1534 for (i
= 0; i
< 8; i
++) {
1535 hostdata
->busy
[i
] = 0;
1536 hostdata
->sync_xfer
[i
] =
1537 calc_sync_xfer(DEFAULT_SX_PER
/ 4, DEFAULT_SX_OFF
);
1538 hostdata
->sync_stat
[i
] = SS_UNSET
; /* using default sync values */
1540 hostdata
->input_Q
= NULL
;
1541 hostdata
->selecting
= NULL
;
1542 hostdata
->connected
= NULL
;
1543 hostdata
->disconnected_Q
= NULL
;
1544 hostdata
->state
= S_UNCONNECTED
;
1545 hostdata
->dma
= D_DMA_OFF
;
1546 hostdata
->incoming_ptr
= 0;
1547 hostdata
->outgoing_len
= 0;
1549 reset_wd33c93(instance
);
1550 SCpnt
->result
= DID_RESET
<< 16;
1551 enable_irq(instance
->irq
);
1556 wd33c93_abort(struct scsi_cmnd
* cmd
)
1558 struct Scsi_Host
*instance
;
1559 struct WD33C93_hostdata
*hostdata
;
1561 struct scsi_cmnd
*tmp
, *prev
;
1563 disable_irq(cmd
->device
->host
->irq
);
1565 instance
= cmd
->device
->host
;
1566 hostdata
= (struct WD33C93_hostdata
*) instance
->hostdata
;
1567 regs
= hostdata
->regs
;
1570 * Case 1 : If the command hasn't been issued yet, we simply remove it
1574 tmp
= (struct scsi_cmnd
*) hostdata
->input_Q
;
1579 prev
->host_scribble
= cmd
->host_scribble
;
1582 (struct scsi_cmnd
*) cmd
->host_scribble
;
1583 cmd
->host_scribble
= NULL
;
1584 cmd
->result
= DID_ABORT
<< 16;
1586 ("scsi%d: Abort - removing command %ld from input_Q. ",
1587 instance
->host_no
, cmd
->pid
);
1588 enable_irq(cmd
->device
->host
->irq
);
1589 cmd
->scsi_done(cmd
);
1593 tmp
= (struct scsi_cmnd
*) tmp
->host_scribble
;
1597 * Case 2 : If the command is connected, we're going to fail the abort
1598 * and let the high level SCSI driver retry at a later time or
1601 * Timeouts, and therefore aborted commands, will be highly unlikely
1602 * and handling them cleanly in this situation would make the common
1603 * case of noresets less efficient, and would pollute our code. So,
1607 if (hostdata
->connected
== cmd
) {
1609 unsigned long timeout
;
1611 printk("scsi%d: Aborting connected command %ld - ",
1612 instance
->host_no
, cmd
->pid
);
1614 printk("stopping DMA - ");
1615 if (hostdata
->dma
== D_DMA_RUNNING
) {
1616 hostdata
->dma_stop(instance
, cmd
, 0);
1617 hostdata
->dma
= D_DMA_OFF
;
1620 printk("sending wd33c93 ABORT command - ");
1621 write_wd33c93(regs
, WD_CONTROL
,
1622 CTRL_IDI
| CTRL_EDI
| CTRL_POLLED
);
1623 write_wd33c93_cmd(regs
, WD_CMD_ABORT
);
1625 /* Now we have to attempt to flush out the FIFO... */
1627 printk("flushing fifo - ");
1630 asr
= read_aux_stat(regs
);
1632 read_wd33c93(regs
, WD_DATA
);
1633 } while (!(asr
& ASR_INT
) && timeout
-- > 0);
1634 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
);
1636 ("asr=%02x, sr=%02x, %ld bytes un-transferred (timeout=%ld) - ",
1637 asr
, sr
, read_wd33c93_count(regs
), timeout
);
1640 * Abort command processed.
1642 * We must disconnect.
1645 printk("sending wd33c93 DISCONNECT command - ");
1646 write_wd33c93_cmd(regs
, WD_CMD_DISCONNECT
);
1649 asr
= read_aux_stat(regs
);
1650 while ((asr
& ASR_CIP
) && timeout
-- > 0)
1651 asr
= read_aux_stat(regs
);
1652 sr
= read_wd33c93(regs
, WD_SCSI_STATUS
);
1653 printk("asr=%02x, sr=%02x.", asr
, sr
);
1655 hostdata
->busy
[cmd
->device
->id
] &= ~(1 << cmd
->device
->lun
);
1656 hostdata
->connected
= NULL
;
1657 hostdata
->state
= S_UNCONNECTED
;
1658 cmd
->result
= DID_ABORT
<< 16;
1661 wd33c93_execute(instance
);
1663 enable_irq(cmd
->device
->host
->irq
);
1664 cmd
->scsi_done(cmd
);
1669 * Case 3: If the command is currently disconnected from the bus,
1670 * we're not going to expend much effort here: Let's just return
1671 * an ABORT_SNOOZE and hope for the best...
1674 tmp
= (struct scsi_cmnd
*) hostdata
->disconnected_Q
;
1678 ("scsi%d: Abort - command %ld found on disconnected_Q - ",
1679 instance
->host_no
, cmd
->pid
);
1680 printk("Abort SNOOZE. ");
1681 enable_irq(cmd
->device
->host
->irq
);
1684 tmp
= (struct scsi_cmnd
*) tmp
->host_scribble
;
1688 * Case 4 : If we reached this point, the command was not found in any of
1691 * We probably reached this point because of an unlikely race condition
1692 * between the command completing successfully and the abortion code,
1693 * so we won't panic, but we will notify the user in case something really
1698 wd33c93_execute(instance
);
1700 enable_irq(cmd
->device
->host
->irq
);
1701 printk("scsi%d: warning : SCSI command probably completed successfully"
1702 " before abortion. ", instance
->host_no
);
1706 #define MAX_WD33C93_HOSTS 4
1707 #define MAX_SETUP_ARGS ARRAY_SIZE(setup_args)
1708 #define SETUP_BUFFER_SIZE 200
1709 static char setup_buffer
[SETUP_BUFFER_SIZE
];
1710 static char setup_used
[MAX_SETUP_ARGS
];
1711 static int done_setup
= 0;
1714 wd33c93_setup(char *str
)
1719 /* The kernel does some processing of the command-line before calling
1720 * this function: If it begins with any decimal or hex number arguments,
1721 * ints[0] = how many numbers found and ints[1] through [n] are the values
1722 * themselves. str points to where the non-numeric arguments (if any)
1723 * start: We do our own parsing of those. We construct synthetic 'nosync'
1724 * keywords out of numeric args (to maintain compatibility with older
1725 * versions) and then add the rest of the arguments.
1731 strncpy(p1
, str
, SETUP_BUFFER_SIZE
- strlen(setup_buffer
));
1732 setup_buffer
[SETUP_BUFFER_SIZE
- 1] = '\0';
1735 while (*p1
&& (i
< MAX_SETUP_ARGS
)) {
1736 p2
= strchr(p1
, ',');
1748 for (i
= 0; i
< MAX_SETUP_ARGS
; i
++)
1754 __setup("wd33c93=", wd33c93_setup
);
1756 /* check_setup_args() returns index if key found, 0 if not
1759 check_setup_args(char *key
, int *flags
, int *val
, char *buf
)
1764 for (x
= 0; x
< MAX_SETUP_ARGS
; x
++) {
1767 if (!strncmp(setup_args
[x
], key
, strlen(key
)))
1769 if (!strncmp(setup_args
[x
], "next", strlen("next")))
1772 if (x
== MAX_SETUP_ARGS
)
1775 cp
= setup_args
[x
] + strlen(key
);
1780 if ((*cp
>= '0') && (*cp
<= '9')) {
1781 *val
= simple_strtoul(cp
, NULL
, 0);
1787 wd33c93_init(struct Scsi_Host
*instance
, const wd33c93_regs regs
,
1788 dma_setup_t setup
, dma_stop_t stop
, int clock_freq
)
1790 struct WD33C93_hostdata
*hostdata
;
1796 if (!done_setup
&& setup_strings
)
1797 wd33c93_setup(setup_strings
);
1799 hostdata
= (struct WD33C93_hostdata
*) instance
->hostdata
;
1801 hostdata
->regs
= regs
;
1802 hostdata
->clock_freq
= clock_freq
;
1803 hostdata
->dma_setup
= setup
;
1804 hostdata
->dma_stop
= stop
;
1805 hostdata
->dma_bounce_buffer
= NULL
;
1806 hostdata
->dma_bounce_len
= 0;
1807 for (i
= 0; i
< 8; i
++) {
1808 hostdata
->busy
[i
] = 0;
1809 hostdata
->sync_xfer
[i
] =
1810 calc_sync_xfer(DEFAULT_SX_PER
/ 4, DEFAULT_SX_OFF
);
1811 hostdata
->sync_stat
[i
] = SS_UNSET
; /* using default sync values */
1812 #ifdef PROC_STATISTICS
1813 hostdata
->cmd_cnt
[i
] = 0;
1814 hostdata
->disc_allowed_cnt
[i
] = 0;
1815 hostdata
->disc_done_cnt
[i
] = 0;
1818 hostdata
->input_Q
= NULL
;
1819 hostdata
->selecting
= NULL
;
1820 hostdata
->connected
= NULL
;
1821 hostdata
->disconnected_Q
= NULL
;
1822 hostdata
->state
= S_UNCONNECTED
;
1823 hostdata
->dma
= D_DMA_OFF
;
1824 hostdata
->level2
= L2_BASIC
;
1825 hostdata
->disconnect
= DIS_ADAPTIVE
;
1826 hostdata
->args
= DEBUG_DEFAULTS
;
1827 hostdata
->incoming_ptr
= 0;
1828 hostdata
->outgoing_len
= 0;
1829 hostdata
->default_sx_per
= DEFAULT_SX_PER
;
1830 hostdata
->no_sync
= 0xff; /* sync defaults to off */
1831 hostdata
->no_dma
= 0; /* default is DMA enabled */
1833 #ifdef PROC_INTERFACE
1834 hostdata
->proc
= PR_VERSION
| PR_INFO
| PR_STATISTICS
|
1835 PR_CONNECTED
| PR_INPUTQ
| PR_DISCQ
| PR_STOP
;
1836 #ifdef PROC_STATISTICS
1837 hostdata
->dma_cnt
= 0;
1838 hostdata
->pio_cnt
= 0;
1839 hostdata
->int_cnt
= 0;
1843 if (check_setup_args("nosync", &flags
, &val
, buf
))
1844 hostdata
->no_sync
= val
;
1846 if (check_setup_args("nodma", &flags
, &val
, buf
))
1847 hostdata
->no_dma
= (val
== -1) ? 1 : val
;
1849 if (check_setup_args("period", &flags
, &val
, buf
))
1850 hostdata
->default_sx_per
=
1851 sx_table
[round_period((unsigned int) val
)].period_ns
;
1853 if (check_setup_args("disconnect", &flags
, &val
, buf
)) {
1854 if ((val
>= DIS_NEVER
) && (val
<= DIS_ALWAYS
))
1855 hostdata
->disconnect
= val
;
1857 hostdata
->disconnect
= DIS_ADAPTIVE
;
1860 if (check_setup_args("level2", &flags
, &val
, buf
))
1861 hostdata
->level2
= val
;
1863 if (check_setup_args("debug", &flags
, &val
, buf
))
1864 hostdata
->args
= val
& DB_MASK
;
1866 if (check_setup_args("clock", &flags
, &val
, buf
)) {
1867 if (val
> 7 && val
< 11)
1868 val
= WD33C93_FS_8_10
;
1869 else if (val
> 11 && val
< 16)
1870 val
= WD33C93_FS_12_15
;
1871 else if (val
> 15 && val
< 21)
1872 val
= WD33C93_FS_16_20
;
1874 val
= WD33C93_FS_8_10
;
1875 hostdata
->clock_freq
= val
;
1878 if ((i
= check_setup_args("next", &flags
, &val
, buf
))) {
1880 setup_used
[--i
] = 1;
1882 #ifdef PROC_INTERFACE
1883 if (check_setup_args("proc", &flags
, &val
, buf
))
1884 hostdata
->proc
= val
;
1887 spin_lock_irq(&hostdata
->lock
);
1888 reset_wd33c93(instance
);
1889 spin_unlock_irq(&hostdata
->lock
);
1891 printk("wd33c93-%d: chip=%s/%d no_sync=0x%x no_dma=%d",
1893 (hostdata
->chip
== C_WD33C93
) ? "WD33c93" : (hostdata
->chip
==
1895 "WD33c93A" : (hostdata
->chip
==
1896 C_WD33C93B
) ? "WD33c93B" : "unknown",
1897 hostdata
->microcode
, hostdata
->no_sync
, hostdata
->no_dma
);
1899 printk(" debug_flags=0x%02x\n", hostdata
->args
);
1901 printk(" debugging=OFF\n");
1903 printk(" setup_args=");
1904 for (i
= 0; i
< MAX_SETUP_ARGS
; i
++)
1905 printk("%s,", setup_args
[i
]);
1907 printk(" Version %s - %s, Compiled %s at %s\n",
1908 WD33C93_VERSION
, WD33C93_DATE
, __DATE__
, __TIME__
);
1912 wd33c93_proc_info(struct Scsi_Host
*instance
, char *buf
, char **start
, off_t off
, int len
, int in
)
1915 #ifdef PROC_INTERFACE
1919 struct WD33C93_hostdata
*hd
;
1920 struct scsi_cmnd
*cmd
;
1922 static int stop
= 0;
1924 hd
= (struct WD33C93_hostdata
*) instance
->hostdata
;
1926 /* If 'in' is TRUE we need to _read_ the proc file. We accept the following
1927 * keywords (same format as command-line, but only ONE per read):
1939 if (!strncmp(bp
, "debug:", 6)) {
1941 hd
->args
= simple_strtoul(bp
, NULL
, 0) & DB_MASK
;
1942 } else if (!strncmp(bp
, "disconnect:", 11)) {
1944 x
= simple_strtoul(bp
, NULL
, 0);
1945 if (x
< DIS_NEVER
|| x
> DIS_ALWAYS
)
1948 } else if (!strncmp(bp
, "period:", 7)) {
1950 x
= simple_strtoul(bp
, NULL
, 0);
1951 hd
->default_sx_per
=
1952 sx_table
[round_period((unsigned int) x
)].period_ns
;
1953 } else if (!strncmp(bp
, "resync:", 7)) {
1955 x
= simple_strtoul(bp
, NULL
, 0);
1956 for (i
= 0; i
< 7; i
++)
1958 hd
->sync_stat
[i
] = SS_UNSET
;
1959 } else if (!strncmp(bp
, "proc:", 5)) {
1961 hd
->proc
= simple_strtoul(bp
, NULL
, 0);
1962 } else if (!strncmp(bp
, "nodma:", 6)) {
1964 hd
->no_dma
= simple_strtoul(bp
, NULL
, 0);
1965 } else if (!strncmp(bp
, "level2:", 7)) {
1967 hd
->level2
= simple_strtoul(bp
, NULL
, 0);
1972 spin_lock_irq(&hd
->lock
);
1975 if (hd
->proc
& PR_VERSION
) {
1976 sprintf(tbuf
, "\nVersion %s - %s. Compiled %s %s",
1977 WD33C93_VERSION
, WD33C93_DATE
, __DATE__
, __TIME__
);
1980 if (hd
->proc
& PR_INFO
) {
1981 sprintf(tbuf
, "\nclock_freq=%02x no_sync=%02x no_dma=%d",
1982 hd
->clock_freq
, hd
->no_sync
, hd
->no_dma
);
1984 strcat(bp
, "\nsync_xfer[] = ");
1985 for (x
= 0; x
< 7; x
++) {
1986 sprintf(tbuf
, "\t%02x", hd
->sync_xfer
[x
]);
1989 strcat(bp
, "\nsync_stat[] = ");
1990 for (x
= 0; x
< 7; x
++) {
1991 sprintf(tbuf
, "\t%02x", hd
->sync_stat
[x
]);
1995 #ifdef PROC_STATISTICS
1996 if (hd
->proc
& PR_STATISTICS
) {
1997 strcat(bp
, "\ncommands issued: ");
1998 for (x
= 0; x
< 7; x
++) {
1999 sprintf(tbuf
, "\t%ld", hd
->cmd_cnt
[x
]);
2002 strcat(bp
, "\ndisconnects allowed:");
2003 for (x
= 0; x
< 7; x
++) {
2004 sprintf(tbuf
, "\t%ld", hd
->disc_allowed_cnt
[x
]);
2007 strcat(bp
, "\ndisconnects done: ");
2008 for (x
= 0; x
< 7; x
++) {
2009 sprintf(tbuf
, "\t%ld", hd
->disc_done_cnt
[x
]);
2013 "\ninterrupts: %ld, DATA_PHASE ints: %ld DMA, %ld PIO",
2014 hd
->int_cnt
, hd
->dma_cnt
, hd
->pio_cnt
);
2018 if (hd
->proc
& PR_CONNECTED
) {
2019 strcat(bp
, "\nconnected: ");
2020 if (hd
->connected
) {
2021 cmd
= (struct scsi_cmnd
*) hd
->connected
;
2022 sprintf(tbuf
, " %ld-%d:%d(%02x)",
2023 cmd
->pid
, cmd
->device
->id
, cmd
->device
->lun
, cmd
->cmnd
[0]);
2027 if (hd
->proc
& PR_INPUTQ
) {
2028 strcat(bp
, "\ninput_Q: ");
2029 cmd
= (struct scsi_cmnd
*) hd
->input_Q
;
2031 sprintf(tbuf
, " %ld-%d:%d(%02x)",
2032 cmd
->pid
, cmd
->device
->id
, cmd
->device
->lun
, cmd
->cmnd
[0]);
2034 cmd
= (struct scsi_cmnd
*) cmd
->host_scribble
;
2037 if (hd
->proc
& PR_DISCQ
) {
2038 strcat(bp
, "\ndisconnected_Q:");
2039 cmd
= (struct scsi_cmnd
*) hd
->disconnected_Q
;
2041 sprintf(tbuf
, " %ld-%d:%d(%02x)",
2042 cmd
->pid
, cmd
->device
->id
, cmd
->device
->lun
, cmd
->cmnd
[0]);
2044 cmd
= (struct scsi_cmnd
*) cmd
->host_scribble
;
2048 spin_unlock_irq(&hd
->lock
);
2054 if (off
> 0x40000) /* ALWAYS stop after 256k bytes have been read */
2056 if (hd
->proc
& PR_STOP
) /* stop every other time */
2060 #else /* PROC_INTERFACE */
2064 #endif /* PROC_INTERFACE */
2069 wd33c93_release(void)
2073 EXPORT_SYMBOL(wd33c93_host_reset
);
2074 EXPORT_SYMBOL(wd33c93_init
);
2075 EXPORT_SYMBOL(wd33c93_release
);
2076 EXPORT_SYMBOL(wd33c93_abort
);
2077 EXPORT_SYMBOL(wd33c93_queuecommand
);
2078 EXPORT_SYMBOL(wd33c93_intr
);
2079 EXPORT_SYMBOL(wd33c93_proc_info
);