blob: 809ef25b7049fef1551c2fb71fbcf85c7c2bc945 [file] [log] [blame]
Roman Zippelc28bda22007-05-01 22:32:36 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * NCR 5380 generic driver routines. These should make it *trivial*
Roman Zippelc28bda22007-05-01 22:32:36 +02003 * to implement 5380 SCSI drivers under Linux with a non-trantor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * architecture.
5 *
6 * Note that these routines also work with NR53c400 family chips.
7 *
8 * Copyright 1993, Drew Eckhardt
Roman Zippelc28bda22007-05-01 22:32:36 +02009 * Visionary Computing
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (Unix and Linux consulting and custom programming)
Roman Zippelc28bda22007-05-01 22:32:36 +020011 * drew@colorado.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * +1 (303) 666-5836
13 *
Roman Zippelc28bda22007-05-01 22:32:36 +020014 * For more information, please consult
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * NCR 5380 Family
17 * SCSI Protocol Controller
18 * Databook
19 *
20 * NCR Microelectronics
21 * 1635 Aeroplaza Drive
22 * Colorado Springs, CO 80916
23 * 1+ (719) 578-3400
24 * 1+ (800) 334-5454
25 */
26
27/*
28 * ++roman: To port the 5380 driver to the Atari, I had to do some changes in
29 * this file, too:
30 *
31 * - Some of the debug statements were incorrect (undefined variables and the
32 * like). I fixed that.
33 *
34 * - In information_transfer(), I think a #ifdef was wrong. Looking at the
35 * possible DMA transfer size should also happen for REAL_DMA. I added this
36 * in the #if statement.
37 *
38 * - When using real DMA, information_transfer() should return in a DATAOUT
39 * phase after starting the DMA. It has nothing more to do.
40 *
41 * - The interrupt service routine should run main after end of DMA, too (not
42 * only after RESELECTION interrupts). Additionally, it should _not_ test
43 * for more interrupts after running main, since a DMA process may have
44 * been started and interrupts are turned on now. The new int could happen
45 * inside the execution of NCR5380_intr(), leading to recursive
46 * calls.
47 *
48 * - I've added a function merge_contiguous_buffers() that tries to
49 * merge scatter-gather buffers that are located at contiguous
50 * physical addresses and can be processed with the same DMA setup.
51 * Since most scatter-gather operations work on a page (4K) of
52 * 4 buffers (1K), in more than 90% of all cases three interrupts and
53 * DMA setup actions are saved.
54 *
55 * - I've deleted all the stuff for AUTOPROBE_IRQ, REAL_DMA_POLL, PSEUDO_DMA
56 * and USLEEP, because these were messing up readability and will never be
57 * needed for Atari SCSI.
Roman Zippelc28bda22007-05-01 22:32:36 +020058 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * - I've revised the NCR5380_main() calling scheme (relax the 'main_running'
60 * stuff), and 'main' is executed in a bottom half if awoken by an
61 * interrupt.
62 *
63 * - The code was quite cluttered up by "#if (NDEBUG & NDEBUG_*) printk..."
64 * constructs. In my eyes, this made the source rather unreadable, so I
65 * finally replaced that by the *_PRINTK() macros.
66 *
67 */
68
Finn Thaine3f463b2014-11-12 16:12:16 +110069/* Adapted for the sun3 by Sam Creasey. */
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
72 * Design
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 *
Roman Zippelc28bda22007-05-01 22:32:36 +020074 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * one simply writes appropriate system specific macros (ie, data
Roman Zippelc28bda22007-05-01 22:32:36 +020076 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * memory mapped) and drops this file in their 'C' wrapper.
78 *
Roman Zippelc28bda22007-05-01 22:32:36 +020079 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * each 5380 in the system - commands that haven't been issued yet,
Roman Zippelc28bda22007-05-01 22:32:36 +020081 * and commands that are currently executing. This means that an
82 * unlimited number of commands may be queued, letting
83 * more commands propagate from the higher driver levels giving higher
84 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
85 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * while a command is already executing.
87 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 *
Roman Zippelc28bda22007-05-01 22:32:36 +020089 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 *
Roman Zippelc28bda22007-05-01 22:32:36 +020091 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
92 * piece of hardware that requires you to sit in a loop polling for
93 * the REQ signal as long as you are connected. Some devices are
94 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Finn Thain686f3992016-01-03 16:05:26 +110095 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * broken devices are the exception rather than the rule and I'd rather
97 * spend my time optimizing for the normal case.
98 *
99 * Architecture :
100 *
101 * At the heart of the design is a coroutine, NCR5380_main,
Finn Thainff50f9e2014-11-12 16:12:18 +1100102 * which is started from a workqueue for each NCR5380 host in the
103 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
104 * removing the commands from the issue queue and calling
105 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 *
107 * Once a nexus is established, the NCR5380_information_transfer()
108 * phase goes through the various phases as instructed by the target.
109 * if the target goes into MSG IN and sends a DISCONNECT message,
110 * the command structure is placed into the per instance disconnected
Finn Thainff50f9e2014-11-12 16:12:18 +1100111 * queue, and NCR5380_main tries to find more work. If the target is
112 * idle for too long, the system will try to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
114 * If a command has disconnected, eventually an interrupt will trigger,
115 * calling NCR5380_intr() which will in turn call NCR5380_reselect
116 * to reestablish a nexus. This will run main if necessary.
117 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200118 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * appropriate.
120 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200121 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 * structures, being initialized after the command is connected
123 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
124 * Note that in violation of the standard, an implicit SAVE POINTERS operation
125 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
126 */
127
128/*
129 * Using this file :
130 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Roman Zippelc28bda22007-05-01 22:32:36 +0200131 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * and macros and include this file in your driver.
133 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200134 * These macros control options :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Roman Zippelc28bda22007-05-01 22:32:36 +0200136 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100138 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
139 * transceivers.
140 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
142 *
143 * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
144 *
145 * These macros MUST be defined :
Roman Zippelc28bda22007-05-01 22:32:36 +0200146 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * NCR5380_read(register) - read from the specified register
148 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200149 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100151 * NCR5380_implementation_fields - additional fields needed for this
152 * specific implementation of the NCR5380
153 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * Either real DMA *or* pseudo DMA may be implemented
Roman Zippelc28bda22007-05-01 22:32:36 +0200155 * REAL functions :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
Roman Zippelc28bda22007-05-01 22:32:36 +0200157 * Note that the DMA setup functions should return the number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * that they were able to program the controller for.
159 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200160 * Also note that generic i386/PC versions of these macros are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * available as NCR5380_i386_dma_write_setup,
162 * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
163 *
164 * NCR5380_dma_write_setup(instance, src, count) - initialize
165 * NCR5380_dma_read_setup(instance, dst, count) - initialize
166 * NCR5380_dma_residual(instance); - residual count
167 *
168 * PSEUDO functions :
169 * NCR5380_pwrite(instance, src, count)
170 * NCR5380_pread(instance, dst, count);
171 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * The generic driver is initialized by calling NCR5380_init(instance),
Roman Zippelc28bda22007-05-01 22:32:36 +0200173 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
Finn Thain8c325132014-11-12 16:11:58 +1100175 * possible) function may be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
177
Finn Thain710ddd02014-11-12 16:12:02 +1100178#define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
Roman Zippel3130d902007-05-01 22:32:37 +0200179#define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next))
Finn Thain710ddd02014-11-12 16:12:02 +1100180#define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#define HOSTNO instance->host_no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Finn Thain636b1ec2016-01-03 16:05:10 +1100184static int do_abort(struct Scsi_Host *);
185static void do_reset(struct Scsi_Host *);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#ifdef SUPPORT_TAGS
188
189/*
190 * Functions for handling tagged queuing
191 * =====================================
192 *
193 * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
194 *
195 * Using consecutive numbers for the tags is no good idea in my eyes. There
196 * could be wrong re-usings if the counter (8 bit!) wraps and some early
197 * command has been preempted for a long time. My solution: a bitfield for
198 * remembering used tags.
199 *
200 * There's also the problem that each target has a certain queue size, but we
201 * cannot know it in advance :-( We just see a QUEUE_FULL status being
202 * returned. So, in this case, the driver internal queue size assumption is
203 * reduced to the number of active tags if QUEUE_FULL is returned by the
Finn Thaine42d0152016-01-03 16:05:49 +1100204 * target.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 *
206 * We're also not allowed running tagged commands as long as an untagged
207 * command is active. And REQUEST SENSE commands after a contingent allegiance
208 * condition _must_ be untagged. To keep track whether an untagged command has
209 * been issued, the host->busy array is still employed, as it is without
210 * support for tagged queuing.
211 *
212 * One could suspect that there are possible race conditions between
213 * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
214 * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
215 * which already guaranteed to be running at most once. It is also the only
216 * place where tags/LUNs are allocated. So no other allocation can slip
217 * between that pair, there could only happen a reselection, which can free a
218 * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
219 * important: the tag bit must be cleared before 'nr_allocated' is decreased.
220 */
221
Finn Thainca513fc2014-11-12 16:12:19 +1100222static void __init init_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Roman Zippelc28bda22007-05-01 22:32:36 +0200224 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100225 struct tag_alloc *ta;
Roman Zippelc28bda22007-05-01 22:32:36 +0200226
Finn Thainca513fc2014-11-12 16:12:19 +1100227 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200228 return;
229
230 for (target = 0; target < 8; ++target) {
231 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100232 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200233 bitmap_zero(ta->allocated, MAX_TAGS);
234 ta->nr_allocated = 0;
235 /* At the beginning, assume the maximum queue size we could
236 * support (MAX_TAGS). This value will be decreased if the target
237 * returns QUEUE_FULL status.
238 */
239 ta->queue_size = MAX_TAGS;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244
245/* Check if we can issue a command to this LUN: First see if the LUN is marked
246 * busy by an untagged command. If the command should use tagged queuing, also
247 * check that there is a free tag and the target's queue won't overflow. This
248 * function should be called with interrupts disabled to avoid race
249 * conditions.
Roman Zippelc28bda22007-05-01 22:32:36 +0200250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Finn Thain710ddd02014-11-12 16:12:02 +1100252static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200254 u8 lun = cmd->device->lun;
Finn Thaindbb6b352016-01-03 16:05:53 +1100255 struct Scsi_Host *instance = cmd->device->host;
256 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200258 if (hostdata->busy[cmd->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200259 return 1;
260 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100261 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
262 !cmd->device->tagged_supported)
Roman Zippelc28bda22007-05-01 22:32:36 +0200263 return 0;
Finn Thain61d739a2014-11-12 16:12:20 +1100264 if (hostdata->TagAlloc[scmd_id(cmd)][lun].nr_allocated >=
265 hostdata->TagAlloc[scmd_id(cmd)][lun].queue_size) {
Finn Thaindbb6b352016-01-03 16:05:53 +1100266 dsprintk(NDEBUG_TAGS, instance, "target %d lun %d: no free tags\n",
267 scmd_id(cmd), lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200268 return 1;
269 }
270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273
274/* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
275 * must be called before!), or reserve the LUN in 'busy' if the command is
276 * untagged.
277 */
278
Finn Thain710ddd02014-11-12 16:12:02 +1100279static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200281 u8 lun = cmd->device->lun;
Finn Thaindbb6b352016-01-03 16:05:53 +1100282 struct Scsi_Host *instance = cmd->device->host;
283 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Roman Zippelc28bda22007-05-01 22:32:36 +0200285 /* If we or the target don't support tagged queuing, allocate the LUN for
286 * an untagged command.
287 */
288 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100289 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
290 !cmd->device->tagged_supported) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200291 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200292 hostdata->busy[cmd->device->id] |= (1 << lun);
Finn Thaindbb6b352016-01-03 16:05:53 +1100293 dsprintk(NDEBUG_TAGS, instance, "target %d lun %d now allocated by untagged command\n",
294 scmd_id(cmd), lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200295 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100296 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Roman Zippelc28bda22007-05-01 22:32:36 +0200298 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
299 set_bit(cmd->tag, ta->allocated);
300 ta->nr_allocated++;
Finn Thaindbb6b352016-01-03 16:05:53 +1100301 dsprintk(NDEBUG_TAGS, instance, "using tag %d for target %d lun %d (%d tags allocated)\n",
302 cmd->tag, scmd_id(cmd), lun, ta->nr_allocated);
Roman Zippelc28bda22007-05-01 22:32:36 +0200303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306
307/* Mark the tag of command 'cmd' as free, or in case of an untagged command,
308 * unlock the LUN.
309 */
310
Finn Thain710ddd02014-11-12 16:12:02 +1100311static void cmd_free_tag(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200313 u8 lun = cmd->device->lun;
Finn Thaindbb6b352016-01-03 16:05:53 +1100314 struct Scsi_Host *instance = cmd->device->host;
315 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Roman Zippelc28bda22007-05-01 22:32:36 +0200317 if (cmd->tag == TAG_NONE) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200318 hostdata->busy[cmd->device->id] &= ~(1 << lun);
Finn Thaindbb6b352016-01-03 16:05:53 +1100319 dsprintk(NDEBUG_TAGS, instance, "target %d lun %d untagged cmd freed\n",
320 scmd_id(cmd), lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200321 } else if (cmd->tag >= MAX_TAGS) {
Finn Thaindbb6b352016-01-03 16:05:53 +1100322 shost_printk(KERN_NOTICE, instance,
323 "trying to free bad tag %d!\n", cmd->tag);
Roman Zippelc28bda22007-05-01 22:32:36 +0200324 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100325 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200326 clear_bit(cmd->tag, ta->allocated);
327 ta->nr_allocated--;
Finn Thaindbb6b352016-01-03 16:05:53 +1100328 dsprintk(NDEBUG_TAGS, instance, "freed tag %d for target %d lun %d\n",
329 cmd->tag, scmd_id(cmd), lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333
Finn Thainca513fc2014-11-12 16:12:19 +1100334static void free_all_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Roman Zippelc28bda22007-05-01 22:32:36 +0200336 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100337 struct tag_alloc *ta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Finn Thainca513fc2014-11-12 16:12:19 +1100339 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200340 return;
341
342 for (target = 0; target < 8; ++target) {
343 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100344 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200345 bitmap_zero(ta->allocated, MAX_TAGS);
346 ta->nr_allocated = 0;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351#endif /* SUPPORT_TAGS */
352
353
354/*
Finn Thain710ddd02014-11-12 16:12:02 +1100355 * Function: void merge_contiguous_buffers( struct scsi_cmnd *cmd )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
357 * Purpose: Try to merge several scatter-gather requests into one DMA
358 * transfer. This is possible if the scatter buffers lie on
359 * physical contiguous addresses.
360 *
Finn Thain710ddd02014-11-12 16:12:02 +1100361 * Parameters: struct scsi_cmnd *cmd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * The command to work on. The first scatter buffer's data are
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300363 * assumed to be already transferred into ptr/this_residual.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365
Finn Thain710ddd02014-11-12 16:12:02 +1100366static void merge_contiguous_buffers(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Finn Thaine3f463b2014-11-12 16:12:16 +1100368#if !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +0200369 unsigned long endaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200371 unsigned long oldlen = cmd->SCp.this_residual;
372 int cnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#endif
374
Roman Zippelc28bda22007-05-01 22:32:36 +0200375 for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
376 cmd->SCp.buffers_residual &&
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200377 virt_to_phys(sg_virt(&cmd->SCp.buffer[1])) == endaddr;) {
Finn Thaind65e6342014-03-18 11:42:20 +1100378 dprintk(NDEBUG_MERGING, "VTOP(%p) == %08lx -> merging\n",
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200379 page_address(sg_page(&cmd->SCp.buffer[1])), endaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200381 ++cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200383 ++cmd->SCp.buffer;
384 --cmd->SCp.buffers_residual;
385 cmd->SCp.this_residual += cmd->SCp.buffer->length;
386 endaddr += cmd->SCp.buffer->length;
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200389 if (oldlen != cmd->SCp.this_residual)
Finn Thaind65e6342014-03-18 11:42:20 +1100390 dprintk(NDEBUG_MERGING, "merged %d buffers from %p, new length %08x\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200391 cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#endif
Finn Thaine3f463b2014-11-12 16:12:16 +1100393#endif /* !defined(CONFIG_SUN3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Finn Thainff50f9e2014-11-12 16:12:18 +1100396/**
397 * initialize_SCp - init the scsi pointer field
398 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100400 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 */
402
Finn Thain710ddd02014-11-12 16:12:02 +1100403static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Roman Zippelc28bda22007-05-01 22:32:36 +0200405 /*
406 * Initialize the Scsi Pointer field so that all of the commands in the
407 * various queues are valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200409
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200410 if (scsi_bufflen(cmd)) {
411 cmd->SCp.buffer = scsi_sglist(cmd);
412 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200413 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +0200414 cmd->SCp.this_residual = cmd->SCp.buffer->length;
415 /* ++roman: Try to merge some scatter-buffers if they are at
416 * contiguous physical addresses.
417 */
418 merge_contiguous_buffers(cmd);
419 } else {
420 cmd->SCp.buffer = NULL;
421 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200422 cmd->SCp.ptr = NULL;
423 cmd->SCp.this_residual = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Finn Thain636b1ec2016-01-03 16:05:10 +1100427/**
Finn Thainb32ade12016-01-03 16:05:41 +1100428 * NCR5380_poll_politely2 - wait for two chip register values
Finn Thain636b1ec2016-01-03 16:05:10 +1100429 * @instance: controller to poll
Finn Thainb32ade12016-01-03 16:05:41 +1100430 * @reg1: 5380 register to poll
431 * @bit1: Bitmask to check
432 * @val1: Expected value
433 * @reg2: Second 5380 register to poll
434 * @bit2: Second bitmask to check
435 * @val2: Second expected value
Finn Thain2f854b82016-01-03 16:05:22 +1100436 * @wait: Time-out in jiffies
Finn Thain636b1ec2016-01-03 16:05:10 +1100437 *
Finn Thain2f854b82016-01-03 16:05:22 +1100438 * Polls the chip in a reasonably efficient manner waiting for an
439 * event to occur. After a short quick poll we begin to yield the CPU
440 * (if possible). In irq contexts the time-out is arbitrarily limited.
441 * Callers may hold locks as long as they are held in irq mode.
Finn Thain636b1ec2016-01-03 16:05:10 +1100442 *
Finn Thainb32ade12016-01-03 16:05:41 +1100443 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
Finn Thain636b1ec2016-01-03 16:05:10 +1100444 */
445
Finn Thainb32ade12016-01-03 16:05:41 +1100446static int NCR5380_poll_politely2(struct Scsi_Host *instance,
447 int reg1, int bit1, int val1,
448 int reg2, int bit2, int val2, int wait)
Finn Thain636b1ec2016-01-03 16:05:10 +1100449{
Finn Thain2f854b82016-01-03 16:05:22 +1100450 struct NCR5380_hostdata *hostdata = shost_priv(instance);
451 unsigned long deadline = jiffies + wait;
452 unsigned long n;
Finn Thain636b1ec2016-01-03 16:05:10 +1100453
Finn Thain2f854b82016-01-03 16:05:22 +1100454 /* Busy-wait for up to 10 ms */
455 n = min(10000U, jiffies_to_usecs(wait));
456 n *= hostdata->accesses_per_ms;
Finn Thainb32ade12016-01-03 16:05:41 +1100457 n /= 2000;
Finn Thain2f854b82016-01-03 16:05:22 +1100458 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100459 if ((NCR5380_read(reg1) & bit1) == val1)
460 return 0;
461 if ((NCR5380_read(reg2) & bit2) == val2)
Finn Thain636b1ec2016-01-03 16:05:10 +1100462 return 0;
463 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100464 } while (n--);
465
466 if (irqs_disabled() || in_interrupt())
467 return -ETIMEDOUT;
468
469 /* Repeatedly sleep for 1 ms until deadline */
470 while (time_is_after_jiffies(deadline)) {
471 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100472 if ((NCR5380_read(reg1) & bit1) == val1)
473 return 0;
474 if ((NCR5380_read(reg2) & bit2) == val2)
Finn Thain2f854b82016-01-03 16:05:22 +1100475 return 0;
Finn Thain636b1ec2016-01-03 16:05:10 +1100476 }
477
Finn Thain636b1ec2016-01-03 16:05:10 +1100478 return -ETIMEDOUT;
479}
480
Finn Thainb32ade12016-01-03 16:05:41 +1100481static inline int NCR5380_poll_politely(struct Scsi_Host *instance,
482 int reg, int bit, int val, int wait)
483{
484 return NCR5380_poll_politely2(instance, reg, bit, val,
485 reg, bit, val, wait);
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#if NDEBUG
489static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200490 unsigned char mask;
491 const char *name;
492} signals[] = {
493 { SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" },
494 { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD, "CD" }, { SR_IO, "IO" },
495 { SR_SEL, "SEL" }, {0, NULL}
496}, basrs[] = {
497 {BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}
498}, icrs[] = {
499 {ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
500 {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"},
501 {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"},
502 {0, NULL}
503}, mrs[] = {
504 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"},
505 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR,
506 "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
507 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
508 {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"},
509 {0, NULL}
510};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Finn Thainff50f9e2014-11-12 16:12:18 +1100512/**
513 * NCR5380_print - print scsi bus signals
514 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100516 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518
Roman Zippelc28bda22007-05-01 22:32:36 +0200519static void NCR5380_print(struct Scsi_Host *instance)
520{
521 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Roman Zippelc28bda22007-05-01 22:32:36 +0200523 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
524 status = NCR5380_read(STATUS_REG);
525 mr = NCR5380_read(MODE_REG);
526 icr = NCR5380_read(INITIATOR_COMMAND_REG);
527 basr = NCR5380_read(BUS_AND_STATUS_REG);
Finn Thain11d2f632016-01-03 16:05:51 +1100528
Roman Zippelc28bda22007-05-01 22:32:36 +0200529 printk("STATUS_REG: %02x ", status);
530 for (i = 0; signals[i].mask; ++i)
531 if (status & signals[i].mask)
532 printk(",%s", signals[i].name);
533 printk("\nBASR: %02x ", basr);
534 for (i = 0; basrs[i].mask; ++i)
535 if (basr & basrs[i].mask)
536 printk(",%s", basrs[i].name);
537 printk("\nICR: %02x ", icr);
538 for (i = 0; icrs[i].mask; ++i)
539 if (icr & icrs[i].mask)
540 printk(",%s", icrs[i].name);
541 printk("\nMODE: %02x ", mr);
542 for (i = 0; mrs[i].mask; ++i)
543 if (mr & mrs[i].mask)
544 printk(",%s", mrs[i].name);
545 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200549 unsigned char value;
550 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551} phases[] = {
Roman Zippelc28bda22007-05-01 22:32:36 +0200552 {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
553 {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
554 {PHASE_UNKNOWN, "UNKNOWN"}
555};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Finn Thainff50f9e2014-11-12 16:12:18 +1100557/**
558 * NCR5380_print_phase - show SCSI phase
559 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100561 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100563 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565
566static void NCR5380_print_phase(struct Scsi_Host *instance)
567{
Roman Zippelc28bda22007-05-01 22:32:36 +0200568 unsigned char status;
569 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Roman Zippelc28bda22007-05-01 22:32:36 +0200571 status = NCR5380_read(STATUS_REG);
572 if (!(status & SR_REQ))
573 printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
574 else {
575 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
576 (phases[i].value != (status & PHASE_MASK)); ++i)
577 ;
578 printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#endif
583
Finn Thain8c325132014-11-12 16:11:58 +1100584/**
585 * NCR58380_info - report driver and host information
586 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
Finn Thain8c325132014-11-12 16:11:58 +1100588 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 *
Finn Thain8c325132014-11-12 16:11:58 +1100590 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
592
Finn Thain8c325132014-11-12 16:11:58 +1100593static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Finn Thain8c325132014-11-12 16:11:58 +1100595 struct NCR5380_hostdata *hostdata = shost_priv(instance);
596
597 return hostdata->info;
598}
599
600static void prepare_info(struct Scsi_Host *instance)
601{
602 struct NCR5380_hostdata *hostdata = shost_priv(instance);
603
604 snprintf(hostdata->info, sizeof(hostdata->info),
605 "%s, io_port 0x%lx, n_io_port %d, "
606 "base 0x%lx, irq %d, "
607 "can_queue %d, cmd_per_lun %d, "
608 "sg_tablesize %d, this_id %d, "
Finn Thain9c3f0e22016-01-03 16:05:11 +1100609 "flags { %s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100610 "options { %s} ",
611 instance->hostt->name, instance->io_port, instance->n_io_port,
612 instance->base, instance->irq,
613 instance->can_queue, instance->cmd_per_lun,
614 instance->sg_tablesize, instance->this_id,
Finn Thainca513fc2014-11-12 16:12:19 +1100615 hostdata->flags & FLAG_TAGGED_QUEUING ? "TAGGED_QUEUING " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100616 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100617#ifdef DIFFERENTIAL
618 "DIFFERENTIAL "
619#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100621 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622#endif
623#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100624 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#endif
626#ifdef SUPPORT_TAGS
Finn Thain8c325132014-11-12 16:11:58 +1100627 "SUPPORT_TAGS "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#endif
Finn Thain8c325132014-11-12 16:11:58 +1100629 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Finn Thainff50f9e2014-11-12 16:12:18 +1100632/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100633 * NCR5380_init - initialise an NCR5380
634 * @instance: adapter to configure
635 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100637 * Initializes *instance and corresponding 5380 chip,
638 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *
640 * Notes : I assume that the host, hostno, and id bits have been
Finn Thainff50f9e2014-11-12 16:12:18 +1100641 * set correctly. I don't care about the irq and other fields.
Roman Zippelc28bda22007-05-01 22:32:36 +0200642 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100643 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
645
Michael Schmitz95fde7a2009-01-18 03:22:15 +0100646static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Finn Thaine8a60142016-01-03 16:05:54 +1100648 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +0200649 int i;
Finn Thain2f854b82016-01-03 16:05:22 +1100650 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Finn Thaina53a21e2014-11-12 16:12:21 +1100652 hostdata->host = instance;
Roman Zippelc28bda22007-05-01 22:32:36 +0200653 hostdata->id_mask = 1 << instance->this_id;
654 hostdata->id_higher_mask = 0;
655 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
656 if (i > hostdata->id_mask)
657 hostdata->id_higher_mask |= i;
658 for (i = 0; i < 8; ++i)
659 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +1100661 init_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#endif
663#if defined (REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +0200664 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#endif
Finn Thain11d2f632016-01-03 16:05:51 +1100666 spin_lock_init(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +0200667 hostdata->connected = NULL;
668 hostdata->issue_queue = NULL;
669 hostdata->disconnected_queue = NULL;
Finn Thainef1081c2014-11-12 16:12:14 +1100670 hostdata->flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Finn Thaina53a21e2014-11-12 16:12:21 +1100672 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100673 hostdata->work_q = alloc_workqueue("ncr5380_%d",
674 WQ_UNBOUND | WQ_MEM_RECLAIM,
675 1, instance->host_no);
676 if (!hostdata->work_q)
677 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Finn Thain8c325132014-11-12 16:11:58 +1100679 prepare_info(instance);
680
Roman Zippelc28bda22007-05-01 22:32:36 +0200681 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
682 NCR5380_write(MODE_REG, MR_BASE);
683 NCR5380_write(TARGET_COMMAND_REG, 0);
684 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Finn Thain2f854b82016-01-03 16:05:22 +1100686 /* Calibrate register polling loop */
687 i = 0;
688 deadline = jiffies + 1;
689 do {
690 cpu_relax();
691 } while (time_is_after_jiffies(deadline));
692 deadline += msecs_to_jiffies(256);
693 do {
694 NCR5380_read(STATUS_REG);
695 ++i;
696 cpu_relax();
697 } while (time_is_after_jiffies(deadline));
698 hostdata->accesses_per_ms = i / 256;
699
Roman Zippelc28bda22007-05-01 22:32:36 +0200700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Finn Thainff50f9e2014-11-12 16:12:18 +1100703/**
Finn Thain636b1ec2016-01-03 16:05:10 +1100704 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
705 * @instance: adapter to check
706 *
707 * If the system crashed, it may have crashed with a connected target and
708 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
709 * currently established nexus, which we know nothing about. Failing that
710 * do a bus reset.
711 *
712 * Note that a bus reset will cause the chip to assert IRQ.
713 *
714 * Returns 0 if successful, otherwise -ENXIO.
715 */
716
717static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
718{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100719 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain636b1ec2016-01-03 16:05:10 +1100720 int pass;
721
722 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
723 switch (pass) {
724 case 1:
725 case 3:
726 case 5:
727 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
728 NCR5380_poll_politely(instance,
729 STATUS_REG, SR_BSY, 0, 5 * HZ);
730 break;
731 case 2:
732 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
733 do_abort(instance);
734 break;
735 case 4:
736 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
737 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100738 /* Wait after a reset; the SCSI standard calls for
739 * 250ms, we wait 500ms to be on the safe side.
740 * But some Toshiba CD-ROMs need ten times that.
741 */
742 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
743 msleep(2500);
744 else
745 msleep(500);
Finn Thain636b1ec2016-01-03 16:05:10 +1100746 break;
747 case 6:
748 shost_printk(KERN_ERR, instance, "bus locked solid\n");
749 return -ENXIO;
750 }
751 }
752 return 0;
753}
754
755/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100756 * NCR5380_exit - remove an NCR5380
757 * @instance: adapter to remove
758 *
759 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
760 */
761
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200762static void NCR5380_exit(struct Scsi_Host *instance)
763{
Finn Thaina53a21e2014-11-12 16:12:21 +1100764 struct NCR5380_hostdata *hostdata = shost_priv(instance);
765
766 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100767 destroy_workqueue(hostdata->work_q);
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200768}
769
Finn Thainff50f9e2014-11-12 16:12:18 +1100770/**
771 * NCR5380_queue_command - queue a command
772 * @instance: the relevant SCSI adapter
773 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
Finn Thain1bb40582016-01-03 16:05:29 +1100775 * cmd is added to the per-instance issue queue, with minor
Finn Thainff50f9e2014-11-12 16:12:18 +1100776 * twiddling done to the host specific fields of cmd. If the
777 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
779
Finn Thain16b29e72014-11-12 16:12:08 +1100780static int NCR5380_queue_command(struct Scsi_Host *instance,
781 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Finn Thain16b29e72014-11-12 16:12:08 +1100783 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain710ddd02014-11-12 16:12:02 +1100784 struct scsi_cmnd *tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +0200785 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787#if (NDEBUG & NDEBUG_NO_WRITE)
Roman Zippelc28bda22007-05-01 22:32:36 +0200788 switch (cmd->cmnd[0]) {
789 case WRITE_6:
790 case WRITE_10:
Finn Thaindbb6b352016-01-03 16:05:53 +1100791 shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n");
Roman Zippelc28bda22007-05-01 22:32:36 +0200792 cmd->result = (DID_ERROR << 16);
Finn Thain16b29e72014-11-12 16:12:08 +1100793 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200794 return 0;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
797
Roman Zippelc28bda22007-05-01 22:32:36 +0200798 /*
799 * We use the host_scribble field as a pointer to the next command
800 * in a queue
801 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Roman Zippel3130d902007-05-01 22:32:37 +0200803 SET_NEXT(cmd, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +0200804 cmd->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Roman Zippelc28bda22007-05-01 22:32:36 +0200806 /*
807 * Insert the cmd into the issue queue. Note that REQUEST SENSE
808 * commands are added to the head of the queue since any command will
809 * clear the contingent allegiance condition that exists and the
810 * sense data is only guaranteed to be valid while the condition exists.
811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Roman Zippelc28bda22007-05-01 22:32:36 +0200813 /* ++guenther: now that the issue queue is being set up, we can lock ST-DMA.
814 * Otherwise a running NCR5380_main may steal the lock.
815 * Lock before actually inserting due to fairness reasons explained in
816 * atari_scsi.c. If we insert first, then it's impossible for this driver
817 * to release the lock.
818 * Stop timer for this command while waiting for the lock, or timeouts
819 * may happen (and they really do), and it's no good if the command doesn't
820 * appear in any of the queues.
821 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
822 * because also a timer int can trigger an abort or reset, which would
823 * alter queues and touch the lock.
824 */
Finn Thaine3c3da62014-11-12 16:12:15 +1100825 if (!NCR5380_acquire_dma_irq(instance))
Finn Thain16b29e72014-11-12 16:12:08 +1100826 return SCSI_MLQUEUE_HOST_BUSY;
827
Finn Thain11d2f632016-01-03 16:05:51 +1100828 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain16b29e72014-11-12 16:12:08 +1100829
Finn Thainff50f9e2014-11-12 16:12:18 +1100830 /*
831 * Insert the cmd into the issue queue. Note that REQUEST SENSE
832 * commands are added to the head of the queue since any command will
833 * clear the contingent allegiance condition that exists and the
834 * sense data is only guaranteed to be valid while the condition exists.
835 */
836
Roman Zippelc28bda22007-05-01 22:32:36 +0200837 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
Roman Zippel3130d902007-05-01 22:32:37 +0200838 SET_NEXT(cmd, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +0200839 hostdata->issue_queue = cmd;
840 } else {
Finn Thain710ddd02014-11-12 16:12:02 +1100841 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +0200842 NEXT(tmp); tmp = NEXT(tmp))
843 ;
Roman Zippel3130d902007-05-01 22:32:37 +0200844 SET_NEXT(tmp, cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200845 }
Finn Thain11d2f632016-01-03 16:05:51 +1100846 spin_unlock_irqrestore(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Finn Thaindbb6b352016-01-03 16:05:53 +1100848 dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n",
849 cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Finn Thain010e89d2016-01-03 16:05:38 +1100851 /* Kick off command processing */
852 queue_work(hostdata->work_q, &hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +0200853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Finn Thaine3c3da62014-11-12 16:12:15 +1100856static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
857{
858 struct NCR5380_hostdata *hostdata = shost_priv(instance);
859
860 /* Caller does the locking needed to set & test these data atomically */
861 if (!hostdata->disconnected_queue &&
862 !hostdata->issue_queue &&
863 !hostdata->connected &&
864 !hostdata->retain_dma_intr)
865 NCR5380_release_dma_irq(instance);
866}
867
Finn Thainff50f9e2014-11-12 16:12:18 +1100868/**
869 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100871 * NCR5380_main is a coroutine that runs as long as more work can
872 * be done on the NCR5380 host adapters in a system. Both
873 * NCR5380_queue_command() and NCR5380_intr() will try to start it
874 * in case it is not running.
Roman Zippelc28bda22007-05-01 22:32:36 +0200875 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100876 * Locks: called as its own thread with no locks held.
Roman Zippelc28bda22007-05-01 22:32:36 +0200877 */
878
Geert Uytterhoevenb312b382007-05-01 22:32:48 +0200879static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Finn Thaina53a21e2014-11-12 16:12:21 +1100881 struct NCR5380_hostdata *hostdata =
882 container_of(work, struct NCR5380_hostdata, main_task);
883 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +1100884 struct scsi_cmnd *tmp, *prev;
Roman Zippelc28bda22007-05-01 22:32:36 +0200885 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Roman Zippelc28bda22007-05-01 22:32:36 +0200887 /*
Roman Zippelc28bda22007-05-01 22:32:36 +0200888 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
889 * because also a timer int can trigger an abort or reset, which can
890 * alter queues and touch the Falcon lock.
891 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Finn Thain11d2f632016-01-03 16:05:51 +1100893 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +0200894 do {
Roman Zippelc28bda22007-05-01 22:32:36 +0200895 done = 1;
896
897 if (!hostdata->connected) {
Finn Thaind65e6342014-03-18 11:42:20 +1100898 dprintk(NDEBUG_MAIN, "scsi%d: not connected\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +0200899 /*
900 * Search through the issue_queue for a command destined
901 * for a target that's not busy.
902 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903#if (NDEBUG & NDEBUG_LISTS)
Finn Thain710ddd02014-11-12 16:12:02 +1100904 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +0200905 tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
906 ;
907 /*printk("%p ", tmp);*/
908 if ((tmp == prev) && tmp)
909 printk(" LOOP\n");
910 /* else printk("\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911#endif
Finn Thain710ddd02014-11-12 16:12:02 +1100912 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
Roman Zippelc28bda22007-05-01 22:32:36 +0200913 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200914 u8 lun = tmp->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Finn Thain0d3d9a42016-01-03 16:05:55 +1100916 dsprintk(NDEBUG_QUEUES, instance, "main: tmp=%p target=%d busy=%d lun=%d\n",
917 tmp, scmd_id(tmp), hostdata->busy[scmd_id(tmp)], lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200918 /* When we find one, remove it from the issue queue. */
Roman Zippelc28bda22007-05-01 22:32:36 +0200919 if (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +0200921 !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#else
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200923 !(hostdata->busy[tmp->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200924#endif
925 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200926 if (prev) {
Roman Zippel3130d902007-05-01 22:32:37 +0200927 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +0200928 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +0200929 hostdata->issue_queue = NEXT(tmp);
930 }
Roman Zippel3130d902007-05-01 22:32:37 +0200931 SET_NEXT(tmp, NULL);
Finn Thain0d3d9a42016-01-03 16:05:55 +1100932 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES,
933 instance, "main: removed %p from issue queue %p\n",
934 tmp, prev);
935
Finn Thainef1081c2014-11-12 16:12:14 +1100936 hostdata->retain_dma_intr++;
Roman Zippelc28bda22007-05-01 22:32:36 +0200937
Roman Zippelc28bda22007-05-01 22:32:36 +0200938 /*
939 * Attempt to establish an I_T_L nexus here.
940 * On success, instance->hostdata->connected is set.
941 * On failure, we must add the command back to the
942 * issue queue so we can keep trying.
943 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200944 /*
945 * REQUEST SENSE commands are issued without tagged
946 * queueing, even on SCSI-II devices because the
947 * contingent allegiance condition exists for the
948 * entire unit.
949 */
950 /* ++roman: ...and the standard also requires that
951 * REQUEST SENSE command are untagged.
952 */
953
954#ifdef SUPPORT_TAGS
955 cmd_get_tag(tmp, tmp->cmnd[0] != REQUEST_SENSE);
956#endif
Finn Thain76f13b92014-11-12 16:11:53 +1100957 if (!NCR5380_select(instance, tmp)) {
Finn Thain1f1b0c72016-01-03 16:05:17 +1100958 /* OK or bad target */
Finn Thainef1081c2014-11-12 16:12:14 +1100959 hostdata->retain_dma_intr--;
Finn Thaine3c3da62014-11-12 16:12:15 +1100960 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +0200961 } else {
Finn Thain1f1b0c72016-01-03 16:05:17 +1100962 /* Need to retry */
Roman Zippel3130d902007-05-01 22:32:37 +0200963 SET_NEXT(tmp, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +0200964 hostdata->issue_queue = tmp;
Finn Thain0d3d9a42016-01-03 16:05:55 +1100965 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES,
966 instance, "main: select() failed, %p returned to issue queue\n",
967 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +0200968#ifdef SUPPORT_TAGS
969 cmd_free_tag(tmp);
970#endif
Finn Thainef1081c2014-11-12 16:12:14 +1100971 hostdata->retain_dma_intr--;
Finn Thain1d3db592016-01-03 16:05:24 +1100972 done = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200973 }
Finn Thain1f1b0c72016-01-03 16:05:17 +1100974 if (hostdata->connected)
975 break;
Roman Zippelc28bda22007-05-01 22:32:36 +0200976 } /* if target/lun/target queue is not busy */
977 } /* for issue_queue */
978 } /* if (!hostdata->connected) */
979
980 if (hostdata->connected
981#ifdef REAL_DMA
982 && !hostdata->dma_len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983#endif
984 ) {
Finn Thaind65e6342014-03-18 11:42:20 +1100985 dprintk(NDEBUG_MAIN, "scsi%d: main: performing information transfer\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200986 HOSTNO);
987 NCR5380_information_transfer(instance);
Finn Thaind65e6342014-03-18 11:42:20 +1100988 dprintk(NDEBUG_MAIN, "scsi%d: main: done set false\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +0200989 done = 0;
990 }
991 } while (!done);
Finn Thain11d2f632016-01-03 16:05:51 +1100992 spin_unlock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995
996#ifdef REAL_DMA
997/*
998 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
999 *
1000 * Purpose : Called by interrupt handler when DMA finishes or a phase
Roman Zippelc28bda22007-05-01 22:32:36 +02001001 * mismatch occurs (which would finish the DMA transfer).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 *
1003 * Inputs : instance - this instance of the NCR5380.
1004 *
1005 */
1006
Roman Zippelc28bda22007-05-01 22:32:36 +02001007static void NCR5380_dma_complete(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Finn Thaine8a60142016-01-03 16:05:54 +11001009 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain01bd9082014-11-12 16:12:23 +11001010 int transferred;
Finn Thaine3f463b2014-11-12 16:12:16 +11001011 unsigned char **data;
Finn Thain5299b3c2016-01-03 16:05:57 +11001012 int *count;
Finn Thaine3f463b2014-11-12 16:12:16 +11001013 int saved_data = 0, overrun = 0;
1014 unsigned char p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Finn Thainef1081c2014-11-12 16:12:14 +11001016 if (hostdata->read_overruns) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001017 p = hostdata->connected->SCp.phase;
1018 if (p & SR_IO) {
1019 udelay(10);
1020 if ((NCR5380_read(BUS_AND_STATUS_REG) &
1021 (BASR_PHASE_MATCH|BASR_ACK)) ==
1022 (BASR_PHASE_MATCH|BASR_ACK)) {
1023 saved_data = NCR5380_read(INPUT_DATA_REG);
1024 overrun = 1;
Finn Thaind65e6342014-03-18 11:42:20 +11001025 dprintk(NDEBUG_DMA, "scsi%d: read overrun handled\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001026 }
1027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001029
Finn Thaine3f463b2014-11-12 16:12:16 +11001030#if defined(CONFIG_SUN3)
1031 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
1032 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
1033 instance->host_no);
1034 BUG();
1035 }
1036
1037 /* make sure we're not stuck in a data phase */
1038 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
1039 (BASR_PHASE_MATCH | BASR_ACK)) {
1040 pr_err("scsi%d: BASR %02x\n", instance->host_no,
1041 NCR5380_read(BUS_AND_STATUS_REG));
1042 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
1043 instance->host_no);
1044 BUG();
1045 }
1046#endif
1047
Roman Zippelc28bda22007-05-01 22:32:36 +02001048 NCR5380_write(MODE_REG, MR_BASE);
1049 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaincd400822016-01-03 16:05:40 +11001050 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001051
Finn Thain01bd9082014-11-12 16:12:23 +11001052 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001053 hostdata->dma_len = 0;
1054
1055 data = (unsigned char **)&hostdata->connected->SCp.ptr;
1056 count = &hostdata->connected->SCp.this_residual;
Finn Thain01bd9082014-11-12 16:12:23 +11001057 *data += transferred;
1058 *count -= transferred;
Roman Zippelc28bda22007-05-01 22:32:36 +02001059
Finn Thainef1081c2014-11-12 16:12:14 +11001060 if (hostdata->read_overruns) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001061 int cnt, toPIO;
1062
Roman Zippelc28bda22007-05-01 22:32:36 +02001063 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
Finn Thainef1081c2014-11-12 16:12:14 +11001064 cnt = toPIO = hostdata->read_overruns;
Roman Zippelc28bda22007-05-01 22:32:36 +02001065 if (overrun) {
Finn Thaind65e6342014-03-18 11:42:20 +11001066 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001067 *(*data)++ = saved_data;
1068 (*count)--;
1069 cnt--;
1070 toPIO--;
1071 }
Finn Thaind65e6342014-03-18 11:42:20 +11001072 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%08lx\n", cnt, (long)*data);
Roman Zippelc28bda22007-05-01 22:32:36 +02001073 NCR5380_transfer_pio(instance, &p, &cnt, data);
1074 *count -= toPIO - cnt;
1075 }
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078#endif /* REAL_DMA */
1079
1080
Finn Thainff50f9e2014-11-12 16:12:18 +11001081/**
1082 * NCR5380_intr - generic NCR5380 irq handler
1083 * @irq: interrupt number
1084 * @dev_id: device info
Roman Zippelc28bda22007-05-01 22:32:36 +02001085 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001086 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1087 * from the disconnected queue, and restarting NCR5380_main()
1088 * as required.
Finn Thaincd400822016-01-03 16:05:40 +11001089 *
1090 * The chip can assert IRQ in any of six different conditions. The IRQ flag
1091 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
1092 * Three of these six conditions are latched in the Bus and Status Register:
1093 * - End of DMA (cleared by ending DMA Mode)
1094 * - Parity error (cleared by reading RPIR)
1095 * - Loss of BSY (cleared by reading RPIR)
1096 * Two conditions have flag bits that are not latched:
1097 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
1098 * - Bus reset (non-maskable)
1099 * The remaining condition has no flag bit at all:
1100 * - Selection/reselection
1101 *
1102 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
1103 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
1104 * claimed that "the design of the [DP8490] interrupt logic ensures
1105 * interrupts will not be lost (they can be on the DP5380)."
1106 * The L5380/53C80 datasheet from LOGIC Devices has more details.
1107 *
1108 * Checking for bus reset by reading RST is futile because of interrupt
1109 * latency, but a bus reset will reset chip logic. Checking for parity error
1110 * is unnecessary because that interrupt is never enabled. A Loss of BSY
1111 * condition will clear DMA Mode. We can tell when this occurs because the
1112 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114
Roman Zippelc28bda22007-05-01 22:32:36 +02001115static irqreturn_t NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Finn Thaina53a21e2014-11-12 16:12:21 +11001117 struct Scsi_Host *instance = dev_id;
Finn Thain010e89d2016-01-03 16:05:38 +11001118 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thaincd400822016-01-03 16:05:40 +11001119 int handled = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001120 unsigned char basr;
Finn Thain11d2f632016-01-03 16:05:51 +11001121 unsigned long flags;
1122
1123 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Roman Zippelc28bda22007-05-01 22:32:36 +02001125 basr = NCR5380_read(BUS_AND_STATUS_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001126 if (basr & BASR_IRQ) {
Finn Thaincd400822016-01-03 16:05:40 +11001127 unsigned char mr = NCR5380_read(MODE_REG);
1128 unsigned char sr = NCR5380_read(STATUS_REG);
1129
1130 dprintk(NDEBUG_INTR, "scsi%d: IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
1131 HOSTNO, irq, basr, sr, mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
1133#if defined(REAL_DMA)
Finn Thaincd400822016-01-03 16:05:40 +11001134 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
1135 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
1136 * We ack IRQ after clearing Mode Register. Workarounds
1137 * for End of DMA errata need to happen in DMA Mode.
Roman Zippelc28bda22007-05-01 22:32:36 +02001138 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Finn Thaincd400822016-01-03 16:05:40 +11001140 dprintk(NDEBUG_INTR, "scsi%d: interrupt in DMA mode\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001141
Finn Thaincd400822016-01-03 16:05:40 +11001142 if (hostdata->connected) {
1143 NCR5380_dma_complete(instance);
1144 queue_work(hostdata->work_q, &hostdata->main_task);
1145 } else {
1146 NCR5380_write(MODE_REG, MR_BASE);
1147 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001148 }
Finn Thaincd400822016-01-03 16:05:40 +11001149 } else
1150#endif /* REAL_DMA */
1151 if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
1152 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
1153 /* Probably reselected */
1154 NCR5380_write(SELECT_ENABLE_REG, 0);
1155 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1156
1157 dprintk(NDEBUG_INTR, "scsi%d: interrupt with SEL and IO\n",
1158 HOSTNO);
1159
1160 if (!hostdata->connected) {
1161 NCR5380_reselect(instance);
1162 queue_work(hostdata->work_q, &hostdata->main_task);
1163 }
1164 if (!hostdata->connected)
1165 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1166 } else {
1167 /* Probably Bus Reset */
1168 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1169
1170 dprintk(NDEBUG_INTR, "scsi%d: unknown interrupt\n", HOSTNO);
1171#ifdef SUN3_SCSI_VME
1172 dregs->csr |= CSR_DMA_ENABLE;
1173#endif
1174 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001175 handled = 1;
Finn Thaincd400822016-01-03 16:05:40 +11001176 } else {
1177 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
Finn Thaine3f463b2014-11-12 16:12:16 +11001178#ifdef SUN3_SCSI_VME
1179 dregs->csr |= CSR_DMA_ENABLE;
1180#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001181 }
1182
Finn Thain11d2f632016-01-03 16:05:51 +11001183 spin_unlock_irqrestore(&hostdata->lock, flags);
1184
Roman Zippelc28bda22007-05-01 22:32:36 +02001185 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
Roman Zippelc28bda22007-05-01 22:32:36 +02001188/*
Finn Thain710ddd02014-11-12 16:12:02 +11001189 * Function : int NCR5380_select(struct Scsi_Host *instance,
1190 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 *
1192 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Roman Zippelc28bda22007-05-01 22:32:36 +02001193 * including ARBITRATION, SELECTION, and initial message out for
1194 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001196 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001197 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 *
Finn Thain63238762016-01-03 16:05:15 +11001199 * Returns : -1 if selection failed but should be retried.
1200 * 0 if selection failed and should not be retried.
1201 * 0 if selection succeeded completely (hostdata->connected == cmd).
Roman Zippelc28bda22007-05-01 22:32:36 +02001202 *
1203 * Side effects :
1204 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 * with registers as they should have been on entry - ie
1206 * SELECT_ENABLE will be set appropriately, the NCR5380
1207 * will cease to drive any SCSI bus signals.
1208 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001209 * If successful : I_T_L or I_T_L_Q nexus will be established,
1210 * instance->connected will be set to cmd.
1211 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001213 * If failed (no target) : cmd->scsi_done() will be called, and the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * cmd->result host byte set to DID_BAD_TARGET.
1215 */
1216
Finn Thain710ddd02014-11-12 16:12:02 +11001217static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Finn Thaine8a60142016-01-03 16:05:54 +11001219 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001220 unsigned char tmp[3], phase;
1221 unsigned char *data;
1222 int len;
Finn Thainae753a32016-01-03 16:05:23 +11001223 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Finn Thain8ad3a592014-03-18 11:42:19 +11001225 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001226 dprintk(NDEBUG_ARBITRATION, "scsi%d: starting arbitration, id = %d\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02001227 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Roman Zippelc28bda22007-05-01 22:32:36 +02001229 /*
1230 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1231 * data bus during SELECTION.
1232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Roman Zippelc28bda22007-05-01 22:32:36 +02001234 NCR5380_write(TARGET_COMMAND_REG, 0);
1235
1236 /*
1237 * Start arbitration.
1238 */
1239
1240 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1241 NCR5380_write(MODE_REG, MR_ARBITRATE);
1242
Finn Thain55500d92016-01-03 16:05:35 +11001243 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1244 * Bus Free Delay, arbitration will begin.
Roman Zippelc28bda22007-05-01 22:32:36 +02001245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Finn Thain11d2f632016-01-03 16:05:51 +11001247 spin_unlock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001248 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1249 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1250 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001251 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001252 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
1253 /* Reselection interrupt */
1254 return -1;
1255 }
1256 if (err < 0) {
1257 NCR5380_write(MODE_REG, MR_BASE);
1258 shost_printk(KERN_ERR, instance,
1259 "select: arbitration timeout\n");
1260 return -1;
Finn Thain55500d92016-01-03 16:05:35 +11001261 }
Finn Thain11d2f632016-01-03 16:05:51 +11001262 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001263
1264 /* The SCSI-2 arbitration delay is 2.4 us */
Roman Zippelc28bda22007-05-01 22:32:36 +02001265 udelay(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Roman Zippelc28bda22007-05-01 22:32:36 +02001267 /* Check for lost arbitration */
1268 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1269 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
Finn Thain11d2f632016-01-03 16:05:51 +11001270 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001271 NCR5380_write(MODE_REG, MR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001272 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001273 HOSTNO);
Finn Thain11d2f632016-01-03 16:05:51 +11001274 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001275 return -1;
1276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Finn Thaincf13b082016-01-03 16:05:18 +11001278 /* After/during arbitration, BSY should be asserted.
1279 * IBM DPES-31080 Version S31Q works now
1280 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1281 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001282 NCR5380_write(INITIATOR_COMMAND_REG,
1283 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Roman Zippelc28bda22007-05-01 22:32:36 +02001285 /*
1286 * Again, bus clear + bus settle time is 1.2us, however, this is
1287 * a minimum so we'll udelay ceil(1.2)
1288 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Finn Thain9c3f0e22016-01-03 16:05:11 +11001290 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1291 udelay(15);
1292 else
1293 udelay(2);
Roman Zippelc28bda22007-05-01 22:32:36 +02001294
Finn Thain11d2f632016-01-03 16:05:51 +11001295 spin_lock_irq(&hostdata->lock);
1296
Finn Thain72064a72016-01-03 16:05:44 +11001297 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1298 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Roman Zippelc28bda22007-05-01 22:32:36 +02001299 return -1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001300
Finn Thaind65e6342014-03-18 11:42:20 +11001301 dprintk(NDEBUG_ARBITRATION, "scsi%d: won arbitration\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001302
1303 /*
1304 * Now that we have won arbitration, start Selection process, asserting
1305 * the host and target ID's on the SCSI bus.
1306 */
1307
1308 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->device->id)));
1309
1310 /*
1311 * Raise ATN while SEL is true before BSY goes false from arbitration,
1312 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1313 * phase immediately after selection.
1314 */
1315
1316 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY |
1317 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Roman Zippelc28bda22007-05-01 22:32:36 +02001320 /*
1321 * Reselect interrupts must be turned off prior to the dropping of BSY,
1322 * otherwise we will trigger an interrupt.
1323 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001324 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Finn Thain11d2f632016-01-03 16:05:51 +11001326 spin_unlock_irq(&hostdata->lock);
1327
Roman Zippelc28bda22007-05-01 22:32:36 +02001328 /*
1329 * The initiator shall then wait at least two deskew delays and release
1330 * the BSY signal.
1331 */
1332 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Roman Zippelc28bda22007-05-01 22:32:36 +02001334 /* Reset BSY */
1335 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
1336 ICR_ASSERT_ATN | ICR_ASSERT_SEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Roman Zippelc28bda22007-05-01 22:32:36 +02001338 /*
1339 * Something weird happens when we cease to drive BSY - looks
1340 * like the board/chip is letting us do another read before the
1341 * appropriate propagation delay has expired, and we're confusing
1342 * a BSY signal from ourselves as the target's response to SELECTION.
1343 *
1344 * A small delay (the 'C++' frontend breaks the pipeline with an
1345 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1346 * tighter 'C' code breaks and requires this) solves the problem -
1347 * the 1 us delay is arbitrary, and only used because this delay will
1348 * be the same on other platforms and since it works here, it should
1349 * work there.
1350 *
1351 * wingel suggests that this could be due to failing to wait
1352 * one deskew delay.
1353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Roman Zippelc28bda22007-05-01 22:32:36 +02001355 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Finn Thaind65e6342014-03-18 11:42:20 +11001357 dprintk(NDEBUG_SELECTION, "scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Roman Zippelc28bda22007-05-01 22:32:36 +02001359 /*
1360 * The SCSI specification calls for a 250 ms timeout for the actual
1361 * selection.
1362 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Finn Thainae753a32016-01-03 16:05:23 +11001364 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1365 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Roman Zippelc28bda22007-05-01 22:32:36 +02001367 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001368 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001369 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1370 NCR5380_reselect(instance);
Finn Thaincd400822016-01-03 16:05:40 +11001371 if (!hostdata->connected)
1372 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Roman Zippelc28bda22007-05-01 22:32:36 +02001373 printk(KERN_ERR "scsi%d: reselection after won arbitration?\n",
1374 HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001375 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001377
Finn Thainae753a32016-01-03 16:05:23 +11001378 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001379 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001380 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02001381 cmd->result = DID_BAD_TARGET << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02001382#ifdef SUPPORT_TAGS
1383 cmd_free_tag(cmd);
1384#endif
1385 cmd->scsi_done(cmd);
1386 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaind65e6342014-03-18 11:42:20 +11001387 dprintk(NDEBUG_SELECTION, "scsi%d: target did not respond within 250ms\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001388 return 0;
1389 }
1390
Roman Zippelc28bda22007-05-01 22:32:36 +02001391 /*
Finn Thainae753a32016-01-03 16:05:23 +11001392 * No less than two deskew delays after the initiator detects the
1393 * BSY signal is true, it shall release the SEL signal and may
1394 * change the DATA BUS. -wingel
1395 */
1396
1397 udelay(1);
1398
1399 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1400
1401 /*
Roman Zippelc28bda22007-05-01 22:32:36 +02001402 * Since we followed the SCSI spec, and raised ATN while SEL
1403 * was true but before BSY was false during selection, the information
1404 * transfer phase should be a MESSAGE OUT phase so that we can send the
1405 * IDENTIFY message.
1406 *
1407 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1408 * message (2 bytes) with a tag ID that we increment with every command
1409 * until it wraps back to 0.
1410 *
1411 * XXX - it turns out that there are some broken SCSI-II devices,
1412 * which claim to support tagged queuing but fail when more than
1413 * some number of commands are issued at once.
1414 */
1415
1416 /* Wait for start of REQ/ACK handshake */
Finn Thain55500d92016-01-03 16:05:35 +11001417
1418 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001419 spin_lock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001420 if (err < 0) {
1421 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1422 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1423 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1424 return -1;
1425 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001426
Finn Thaind65e6342014-03-18 11:42:20 +11001427 dprintk(NDEBUG_SELECTION, "scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001428 HOSTNO, cmd->device->id);
1429 tmp[0] = IDENTIFY(1, cmd->device->lun);
1430
1431#ifdef SUPPORT_TAGS
1432 if (cmd->tag != TAG_NONE) {
1433 tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
1434 tmp[2] = cmd->tag;
1435 len = 3;
1436 } else
1437 len = 1;
1438#else
1439 len = 1;
1440 cmd->tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441#endif /* SUPPORT_TAGS */
1442
Roman Zippelc28bda22007-05-01 22:32:36 +02001443 /* Send message(s) */
1444 data = tmp;
1445 phase = PHASE_MSGOUT;
1446 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11001447 dprintk(NDEBUG_SELECTION, "scsi%d: nexus established.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001448 /* XXX need to handle errors here */
Finn Thain11d2f632016-01-03 16:05:51 +11001449
Roman Zippelc28bda22007-05-01 22:32:36 +02001450 hostdata->connected = cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451#ifndef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001452 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
1453#endif
Finn Thaine3f463b2014-11-12 16:12:16 +11001454#ifdef SUN3_SCSI_VME
1455 dregs->csr |= CSR_INTR;
1456#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Roman Zippelc28bda22007-05-01 22:32:36 +02001458 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Roman Zippelc28bda22007-05-01 22:32:36 +02001460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
Roman Zippelc28bda22007-05-01 22:32:36 +02001463/*
1464 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 * unsigned char *phase, int *count, unsigned char **data)
1466 *
1467 * Purpose : transfers data in given phase using polled I/O
1468 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001469 * Inputs : instance - instance of driver, *phase - pointer to
1470 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001472 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001474 * maximum number of bytes, 0 if all bytes are transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 * is in same phase.
1476 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001477 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 *
1479 * XXX Note : handling for bus free may be useful.
1480 */
1481
1482/*
Roman Zippelc28bda22007-05-01 22:32:36 +02001483 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 * IS 100% reliable, and for the actual data transfer where speed
1485 * counts, we will always do a pseudo DMA or DMA transfer.
1486 */
1487
Roman Zippelc28bda22007-05-01 22:32:36 +02001488static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1489 unsigned char *phase, int *count,
1490 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Roman Zippelc28bda22007-05-01 22:32:36 +02001492 register unsigned char p = *phase, tmp;
1493 register int c = *count;
1494 register unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Roman Zippelc28bda22007-05-01 22:32:36 +02001496 /*
1497 * The NCR5380 chip will only drive the SCSI bus when the
1498 * phase specified in the appropriate bits of the TARGET COMMAND
1499 * REGISTER match the STATUS REGISTER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 */
1501
Roman Zippelc28bda22007-05-01 22:32:36 +02001502 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Roman Zippelc28bda22007-05-01 22:32:36 +02001504 do {
1505 /*
1506 * Wait for assertion of REQ, after which the phase bits will be
1507 * valid
1508 */
Finn Thain686f3992016-01-03 16:05:26 +11001509
1510 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
1511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Finn Thaind65e6342014-03-18 11:42:20 +11001513 dprintk(NDEBUG_HANDSHAKE, "scsi%d: REQ detected\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Roman Zippelc28bda22007-05-01 22:32:36 +02001515 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001516 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thaind65e6342014-03-18 11:42:20 +11001517 dprintk(NDEBUG_PIO, "scsi%d: phase mismatch\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11001518 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001519 break;
1520 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Roman Zippelc28bda22007-05-01 22:32:36 +02001522 /* Do actual transfer from SCSI bus to / from memory */
1523 if (!(p & SR_IO))
1524 NCR5380_write(OUTPUT_DATA_REG, *d);
1525 else
1526 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Roman Zippelc28bda22007-05-01 22:32:36 +02001528 ++d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Roman Zippelc28bda22007-05-01 22:32:36 +02001530 /*
1531 * The SCSI standard suggests that in MSGOUT phase, the initiator
1532 * should drop ATN on the last byte of the message phase
1533 * after REQ has been asserted for the handshake but before
1534 * the initiator raises ACK.
1535 */
1536
1537 if (!(p & SR_IO)) {
1538 if (!((p & SR_MSG) && c > 1)) {
1539 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thain8ad3a592014-03-18 11:42:19 +11001540 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001541 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1542 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1543 } else {
1544 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1545 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Finn Thain8ad3a592014-03-18 11:42:19 +11001546 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001547 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1548 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1549 }
1550 } else {
Finn Thain8ad3a592014-03-18 11:42:19 +11001551 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001552 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1553 }
1554
Finn Thaina2edc4a2016-01-03 16:05:27 +11001555 if (NCR5380_poll_politely(instance,
1556 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1557 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001558
Finn Thaind65e6342014-03-18 11:42:20 +11001559 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001560
1561 /*
1562 * We have several special cases to consider during REQ/ACK handshaking :
1563 * 1. We were in MSGOUT phase, and we are on the last byte of the
1564 * message. ATN must be dropped as ACK is dropped.
1565 *
1566 * 2. We are in a MSGIN phase, and we are on the last byte of the
1567 * message. We must exit with ACK asserted, so that the calling
1568 * code may raise ATN before dropping ACK to reject the message.
1569 *
1570 * 3. ACK and ATN are clear and the target may proceed as normal.
1571 */
1572 if (!(p == PHASE_MSGIN && c == 1)) {
1573 if (p == PHASE_MSGOUT && c > 1)
1574 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1575 else
1576 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1577 }
1578 } while (--c);
1579
Finn Thaind65e6342014-03-18 11:42:20 +11001580 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001581
1582 *count = c;
1583 *data = d;
1584 tmp = NCR5380_read(STATUS_REG);
1585 /* The phase read from the bus is valid if either REQ is (already)
Finn Thaina2edc4a2016-01-03 16:05:27 +11001586 * asserted or if ACK hasn't been released yet. The latter applies if
1587 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
Roman Zippelc28bda22007-05-01 22:32:36 +02001588 */
Finn Thaina2edc4a2016-01-03 16:05:27 +11001589 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Roman Zippelc28bda22007-05-01 22:32:36 +02001590 *phase = tmp & PHASE_MASK;
1591 else
1592 *phase = PHASE_UNKNOWN;
1593
1594 if (!c || (*phase == p))
1595 return 0;
1596 else
1597 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
1599
Finn Thain636b1ec2016-01-03 16:05:10 +11001600/**
1601 * do_reset - issue a reset command
1602 * @instance: adapter to reset
1603 *
1604 * Issue a reset sequence to the NCR5380 and try and get the bus
1605 * back into sane shape.
1606 *
1607 * This clears the reset interrupt flag because there may be no handler for
1608 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1609 * been installed. And when in EH we may have released the ST DMA interrupt.
1610 */
1611
1612static void do_reset(struct Scsi_Host *instance)
1613{
1614 unsigned long flags;
1615
1616 local_irq_save(flags);
1617 NCR5380_write(TARGET_COMMAND_REG,
1618 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1619 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1620 udelay(50);
1621 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1622 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1623 local_irq_restore(flags);
1624}
1625
Finn Thain80d3eb62016-01-03 16:05:34 +11001626/**
1627 * do_abort - abort the currently established nexus by going to
1628 * MESSAGE OUT phase and sending an ABORT message.
1629 * @instance: relevant scsi host instance
Roman Zippelc28bda22007-05-01 22:32:36 +02001630 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001631 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 */
1633
Finn Thaina53a21e2014-11-12 16:12:21 +11001634static int do_abort(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Roman Zippelc28bda22007-05-01 22:32:36 +02001636 unsigned char tmp, *msgptr, phase;
1637 int len;
Finn Thain80d3eb62016-01-03 16:05:34 +11001638 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Roman Zippelc28bda22007-05-01 22:32:36 +02001640 /* Request message out phase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Roman Zippelc28bda22007-05-01 22:32:36 +02001643 /*
1644 * Wait for the target to indicate a valid phase by asserting
1645 * REQ. Once this happens, we'll have either a MSGOUT phase
1646 * and can immediately send the ABORT message, or we'll have some
1647 * other phase and will have to source/sink data.
1648 *
1649 * We really don't care what value was on the bus or what value
1650 * the target sees, so we just handshake.
1651 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Finn Thain80d3eb62016-01-03 16:05:34 +11001653 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
1654 if (rc < 0)
1655 goto timeout;
1656
1657 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Roman Zippelc28bda22007-05-01 22:32:36 +02001658
1659 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1660
Finn Thain80d3eb62016-01-03 16:05:34 +11001661 if (tmp != PHASE_MSGOUT) {
1662 NCR5380_write(INITIATOR_COMMAND_REG,
1663 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1664 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
1665 if (rc < 0)
1666 goto timeout;
Roman Zippelc28bda22007-05-01 22:32:36 +02001667 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1668 }
1669
1670 tmp = ABORT;
1671 msgptr = &tmp;
1672 len = 1;
1673 phase = PHASE_MSGOUT;
Finn Thaina53a21e2014-11-12 16:12:21 +11001674 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001675
1676 /*
1677 * If we got here, and the command completed successfully,
1678 * we're about to go into bus free state.
1679 */
1680
1681 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001682
1683timeout:
1684 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1685 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686}
1687
1688#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001689/*
1690 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 * unsigned char *phase, int *count, unsigned char **data)
1692 *
1693 * Purpose : transfers data in given phase using either real
1694 * or pseudo DMA.
1695 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001696 * Inputs : instance - instance of driver, *phase - pointer to
1697 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001699 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001701 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * is in same phase.
1703 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001704 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 *
1706 */
1707
1708
Roman Zippelc28bda22007-05-01 22:32:36 +02001709static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1710 unsigned char *phase, int *count,
1711 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Finn Thaine8a60142016-01-03 16:05:54 +11001713 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001714 register int c = *count;
1715 register unsigned char p = *phase;
Finn Thaine3f463b2014-11-12 16:12:16 +11001716
1717#if defined(CONFIG_SUN3)
1718 /* sanity check */
1719 if (!sun3_dma_setup_done) {
1720 pr_err("scsi%d: transfer_dma without setup!\n",
1721 instance->host_no);
1722 BUG();
1723 }
1724 hostdata->dma_len = c;
1725
1726 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
1727 instance->host_no, (p & SR_IO) ? "reading" : "writing",
1728 c, (p & SR_IO) ? "to" : "from", *data);
1729
1730 /* netbsd turns off ints here, why not be safe and do it too */
Finn Thaine3f463b2014-11-12 16:12:16 +11001731
1732 /* send start chain */
1733 sun3scsi_dma_start(c, *data);
1734
Finn Thaincd400822016-01-03 16:05:40 +11001735 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1736 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1737 MR_ENABLE_EOP_INTR);
Finn Thaine3f463b2014-11-12 16:12:16 +11001738 if (p & SR_IO) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001739 NCR5380_write(INITIATOR_COMMAND_REG, 0);
Finn Thaine3f463b2014-11-12 16:12:16 +11001740 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1741 } else {
Finn Thaine3f463b2014-11-12 16:12:16 +11001742 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
Finn Thaine3f463b2014-11-12 16:12:16 +11001743 NCR5380_write(START_DMA_SEND_REG, 0);
1744 }
1745
1746#ifdef SUN3_SCSI_VME
1747 dregs->csr |= CSR_DMA_ENABLE;
1748#endif
1749
Finn Thaine3f463b2014-11-12 16:12:16 +11001750 sun3_dma_active = 1;
1751
1752#else /* !defined(CONFIG_SUN3) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001753 register unsigned char *d = *data;
1754 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Roman Zippelc28bda22007-05-01 22:32:36 +02001756 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1757 *phase = tmp;
1758 return -1;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Finn Thainef1081c2014-11-12 16:12:14 +11001761 if (hostdata->read_overruns && (p & SR_IO))
1762 c -= hostdata->read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Finn Thaind65e6342014-03-18 11:42:20 +11001764 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001765 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1766 c, (p & SR_IO) ? "to" : "from", d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Roman Zippelc28bda22007-05-01 22:32:36 +02001768 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thaincd400822016-01-03 16:05:40 +11001769 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1770 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Finn Thainef1081c2014-11-12 16:12:14 +11001772 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001773 /* On the Medusa, it is a must to initialize the DMA before
1774 * starting the NCR. This is also the cleaner way for the TT.
1775 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001776 hostdata->dma_len = (p & SR_IO) ?
1777 NCR5380_dma_read_setup(instance, d, c) :
1778 NCR5380_dma_write_setup(instance, d, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Roman Zippelc28bda22007-05-01 22:32:36 +02001781 if (p & SR_IO)
1782 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1783 else {
1784 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1785 NCR5380_write(START_DMA_SEND_REG, 0);
1786 }
1787
Finn Thainef1081c2014-11-12 16:12:14 +11001788 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001789 /* On the Falcon, the DMA setup must be done after the last */
1790 /* NCR access, else the DMA setup gets trashed!
1791 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001792 hostdata->dma_len = (p & SR_IO) ?
1793 NCR5380_dma_read_setup(instance, d, c) :
1794 NCR5380_dma_write_setup(instance, d, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001795 }
Finn Thaine3f463b2014-11-12 16:12:16 +11001796#endif /* !defined(CONFIG_SUN3) */
1797
Roman Zippelc28bda22007-05-01 22:32:36 +02001798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800#endif /* defined(REAL_DMA) */
1801
1802/*
1803 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1804 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001805 * Purpose : run through the various SCSI phases and do as the target
1806 * directs us to. Operates on the currently connected command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 * instance->connected.
1808 *
1809 * Inputs : instance, instance for which we are doing commands
1810 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001811 * Side effects : SCSI things happen, the disconnected queue will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 * modified if a command disconnects, *instance->connected will
1813 * change.
1814 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001815 * XXX Note : we need to watch for bus free or a reset condition here
1816 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001818
1819static void NCR5380_information_transfer(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
Finn Thaine8a60142016-01-03 16:05:54 +11001821 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001822 unsigned char msgout = NOP;
1823 int sink = 0;
1824 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001826 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001828 unsigned char *data;
1829 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001830 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Finn Thaine3f463b2014-11-12 16:12:16 +11001832#ifdef SUN3_SCSI_VME
1833 dregs->csr |= CSR_INTR;
1834#endif
1835
Finn Thain11d2f632016-01-03 16:05:51 +11001836 while ((cmd = hostdata->connected)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001837 tmp = NCR5380_read(STATUS_REG);
1838 /* We only have a valid SCSI phase when REQ is asserted */
1839 if (tmp & SR_REQ) {
1840 phase = (tmp & PHASE_MASK);
1841 if (phase != old_phase) {
1842 old_phase = phase;
Finn Thain8ad3a592014-03-18 11:42:19 +11001843 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Finn Thaine3f463b2014-11-12 16:12:16 +11001845#if defined(CONFIG_SUN3)
1846 if (phase == PHASE_CMDOUT) {
1847#if defined(REAL_DMA)
1848 void *d;
1849 unsigned long count;
1850
1851 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1852 count = cmd->SCp.buffer->length;
1853 d = sg_virt(cmd->SCp.buffer);
1854 } else {
1855 count = cmd->SCp.this_residual;
1856 d = cmd->SCp.ptr;
1857 }
1858 /* this command setup for dma yet? */
1859 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != cmd)) {
1860 if (cmd->request->cmd_type == REQ_TYPE_FS) {
1861 sun3scsi_dma_setup(d, count,
1862 rq_data_dir(cmd->request));
1863 sun3_dma_setup_done = cmd;
1864 }
1865 }
1866#endif
1867#ifdef SUN3_SCSI_VME
1868 dregs->csr |= CSR_INTR;
1869#endif
1870 }
1871#endif /* CONFIG_SUN3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Roman Zippelc28bda22007-05-01 22:32:36 +02001873 if (sink && (phase != PHASE_MSGOUT)) {
1874 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Roman Zippelc28bda22007-05-01 22:32:36 +02001876 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1877 ICR_ASSERT_ACK);
1878 while (NCR5380_read(STATUS_REG) & SR_REQ)
1879 ;
1880 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1881 ICR_ASSERT_ATN);
1882 sink = 0;
1883 continue;
1884 }
1885
1886 switch (phase) {
1887 case PHASE_DATAOUT:
1888#if (NDEBUG & NDEBUG_NO_DATAOUT)
1889 printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
1890 "aborted\n", HOSTNO);
1891 sink = 1;
1892 do_abort(instance);
1893 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04001894 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001895 return;
1896#endif
1897 case PHASE_DATAIN:
1898 /*
1899 * If there is no room left in the current buffer in the
1900 * scatter-gather list, move onto the next one.
1901 */
1902
1903 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1904 ++cmd->SCp.buffer;
1905 --cmd->SCp.buffers_residual;
1906 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001907 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +02001908 /* ++roman: Try to merge some scatter-buffers if
1909 * they are at contiguous physical addresses.
1910 */
1911 merge_contiguous_buffers(cmd);
Finn Thaind65e6342014-03-18 11:42:20 +11001912 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001913 HOSTNO, cmd->SCp.this_residual,
1914 cmd->SCp.buffers_residual);
1915 }
1916
1917 /*
1918 * The preferred transfer method is going to be
1919 * PSEUDO-DMA for systems that are strictly PIO,
1920 * since we can let the hardware do the handshaking.
1921 *
1922 * For this to work, we need to know the transfersize
1923 * ahead of time, since the pseudo-DMA code will sit
1924 * in an unconditional loop.
1925 */
1926
1927 /* ++roman: I suggest, this should be
1928 * #if def(REAL_DMA)
1929 * instead of leaving REAL_DMA out.
1930 */
1931
1932#if defined(REAL_DMA)
Finn Thaine3f463b2014-11-12 16:12:16 +11001933#if !defined(CONFIG_SUN3)
Finn Thainff3d4572016-01-03 16:05:25 +11001934 transfersize = 0;
1935 if (!cmd->device->borken)
Finn Thaine3f463b2014-11-12 16:12:16 +11001936#endif
Finn Thainff3d4572016-01-03 16:05:25 +11001937 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
1938
1939 if (transfersize >= DMA_MIN_SIZE) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001940 len = transfersize;
1941 cmd->SCp.phase = phase;
1942 if (NCR5380_transfer_dma(instance, &phase,
1943 &len, (unsigned char **)&cmd->SCp.ptr)) {
1944 /*
1945 * If the watchdog timer fires, all future
1946 * accesses to this device will use the
1947 * polled-IO. */
Finn Thainff50f9e2014-11-12 16:12:18 +11001948 scmd_printk(KERN_INFO, cmd,
1949 "switching to slow handshake\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001950 cmd->device->borken = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001951 sink = 1;
1952 do_abort(instance);
1953 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04001954 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001955 /* XXX - need to source or sink data here, as appropriate */
1956 } else {
1957#ifdef REAL_DMA
1958 /* ++roman: When using real DMA,
1959 * information_transfer() should return after
1960 * starting DMA since it has nothing more to
1961 * do.
1962 */
1963 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964#else
Roman Zippelc28bda22007-05-01 22:32:36 +02001965 cmd->SCp.this_residual -= transfersize - len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001967 }
1968 } else
1969#endif /* defined(REAL_DMA) */
Finn Thain11d2f632016-01-03 16:05:51 +11001970 {
1971 spin_unlock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001972 NCR5380_transfer_pio(instance, &phase,
1973 (int *)&cmd->SCp.this_residual,
1974 (unsigned char **)&cmd->SCp.ptr);
Finn Thain11d2f632016-01-03 16:05:51 +11001975 spin_lock_irq(&hostdata->lock);
1976 }
Finn Thaine3f463b2014-11-12 16:12:16 +11001977#if defined(CONFIG_SUN3) && defined(REAL_DMA)
1978 /* if we had intended to dma that command clear it */
1979 if (sun3_dma_setup_done == cmd)
1980 sun3_dma_setup_done = NULL;
1981#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001982 break;
1983 case PHASE_MSGIN:
1984 len = 1;
1985 data = &tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02001986 NCR5380_transfer_pio(instance, &phase, &len, &data);
1987 cmd->SCp.Message = tmp;
1988
1989 switch (tmp) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001990 case ABORT:
1991 case COMMAND_COMPLETE:
1992 /* Accept message by clearing ACK */
1993 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001994 dsprintk(NDEBUG_QUEUES, instance,
1995 "COMMAND COMPLETE %p target %d lun %llu\n",
1996 cmd, scmd_id(cmd), cmd->device->lun);
Finn Thaine3c3da62014-11-12 16:12:15 +11001997
Finn Thaine3c3da62014-11-12 16:12:15 +11001998 hostdata->connected = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02001999#ifdef SUPPORT_TAGS
2000 cmd_free_tag(cmd);
2001 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
Finn Thain61d739a2014-11-12 16:12:20 +11002002 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002003 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
Roman Zippelc28bda22007-05-01 22:32:36 +02002004 "QUEUE_FULL after %d commands\n",
2005 HOSTNO, cmd->device->id, cmd->device->lun,
2006 ta->nr_allocated);
2007 if (ta->queue_size > ta->nr_allocated)
Finn Thaine42d0152016-01-03 16:05:49 +11002008 ta->queue_size = ta->nr_allocated;
Roman Zippelc28bda22007-05-01 22:32:36 +02002009 }
2010#else
2011 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2012#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002013
2014 /*
2015 * I'm not sure what the correct thing to do here is :
2016 *
2017 * If the command that just executed is NOT a request
2018 * sense, the obvious thing to do is to set the result
2019 * code to the values of the stored parameters.
2020 *
2021 * If it was a REQUEST SENSE command, we need some way to
2022 * differentiate between the failure code of the original
2023 * and the failure code of the REQUEST sense - the obvious
2024 * case is success, where we fall through and leave the
2025 * result code unchanged.
2026 *
2027 * The non-obvious place is where the REQUEST SENSE failed
2028 */
2029
2030 if (cmd->cmnd[0] != REQUEST_SENSE)
2031 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2032 else if (status_byte(cmd->SCp.Status) != GOOD)
2033 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2034
Boaz Harrosh28424d32007-09-10 22:37:45 +03002035 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2036 hostdata->ses.cmd_len) {
2037 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2038 hostdata->ses.cmd_len = 0 ;
2039 }
2040
Roman Zippelc28bda22007-05-01 22:32:36 +02002041 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2042 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
Boaz Harrosh28424d32007-09-10 22:37:45 +03002043 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
Roman Zippelc28bda22007-05-01 22:32:36 +02002044
Roman Zippel3130d902007-05-01 22:32:37 +02002045 SET_NEXT(cmd, hostdata->issue_queue);
Finn Thain710ddd02014-11-12 16:12:02 +11002046 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thain0d3d9a42016-01-03 16:05:55 +11002047 dsprintk(NDEBUG_AUTOSENSE | NDEBUG_QUEUES,
2048 instance, "REQUEST SENSE cmd %p added to head of issue queue\n",
Finn Thaindbb6b352016-01-03 16:05:53 +11002049 cmd);
Finn Thain997acab2014-11-12 16:11:54 +11002050 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002051 cmd->scsi_done(cmd);
2052 }
2053
Roman Zippelc28bda22007-05-01 22:32:36 +02002054 /*
2055 * Restore phase bits to 0 so an interrupted selection,
2056 * arbitration can resume.
2057 */
2058 NCR5380_write(TARGET_COMMAND_REG, 0);
2059
Finn Thain72064a72016-01-03 16:05:44 +11002060 /* Enable reselect interrupts */
2061 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2062
Roman Zippelc28bda22007-05-01 22:32:36 +02002063 /* ++roman: For Falcon SCSI, release the lock on the
2064 * ST-DMA here if no other commands are waiting on the
2065 * disconnected queue.
2066 */
Finn Thaine3c3da62014-11-12 16:12:15 +11002067 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002068 return;
2069 case MESSAGE_REJECT:
2070 /* Accept message by clearing ACK */
2071 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02002072 switch (hostdata->last_message) {
2073 case HEAD_OF_QUEUE_TAG:
2074 case ORDERED_QUEUE_TAG:
2075 case SIMPLE_QUEUE_TAG:
2076 /* The target obviously doesn't support tagged
2077 * queuing, even though it announced this ability in
2078 * its INQUIRY data ?!? (maybe only this LUN?) Ok,
2079 * clear 'tagged_supported' and lock the LUN, since
2080 * the command is treated as untagged further on.
2081 */
2082 cmd->device->tagged_supported = 0;
2083 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
2084 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002085 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
Roman Zippelc28bda22007-05-01 22:32:36 +02002086 "QUEUE_TAG message; tagged queuing "
2087 "disabled\n",
2088 HOSTNO, cmd->device->id, cmd->device->lun);
2089 break;
2090 }
2091 break;
2092 case DISCONNECT:
2093 /* Accept message by clearing ACK */
2094 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippel3130d902007-05-01 22:32:37 +02002095 SET_NEXT(cmd, hostdata->disconnected_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02002096 hostdata->connected = NULL;
2097 hostdata->disconnected_queue = cmd;
Finn Thain0d3d9a42016-01-03 16:05:55 +11002098 dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES,
2099 instance, "connected command %p for target %d lun %llu moved to disconnected queue\n",
2100 cmd, scmd_id(cmd), cmd->device->lun);
2101
Roman Zippelc28bda22007-05-01 22:32:36 +02002102 /*
2103 * Restore phase bits to 0 so an interrupted selection,
2104 * arbitration can resume.
2105 */
2106 NCR5380_write(TARGET_COMMAND_REG, 0);
2107
2108 /* Enable reselect interrupts */
2109 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine3f463b2014-11-12 16:12:16 +11002110#ifdef SUN3_SCSI_VME
2111 dregs->csr |= CSR_DMA_ENABLE;
2112#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002113 return;
2114 /*
2115 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2116 * operation, in violation of the SCSI spec so we can safely
2117 * ignore SAVE/RESTORE pointers calls.
2118 *
2119 * Unfortunately, some disks violate the SCSI spec and
2120 * don't issue the required SAVE_POINTERS message before
2121 * disconnecting, and we have to break spec to remain
2122 * compatible.
2123 */
2124 case SAVE_POINTERS:
2125 case RESTORE_POINTERS:
2126 /* Accept message by clearing ACK */
2127 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02002128 break;
2129 case EXTENDED_MESSAGE:
2130 /*
2131 * Extended messages are sent in the following format :
2132 * Byte
2133 * 0 EXTENDED_MESSAGE == 1
2134 * 1 length (includes one byte for code, doesn't
2135 * include first two bytes)
2136 * 2 code
2137 * 3..length+1 arguments
2138 *
2139 * Start the extended message buffer with the EXTENDED_MESSAGE
2140 * byte, since spi_print_msg() wants the whole thing.
2141 */
2142 extended_msg[0] = EXTENDED_MESSAGE;
2143 /* Accept first byte by clearing ACK */
2144 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2145
Finn Thain11d2f632016-01-03 16:05:51 +11002146 spin_unlock_irq(&hostdata->lock);
2147
Finn Thaind65e6342014-03-18 11:42:20 +11002148 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002149
2150 len = 2;
2151 data = extended_msg + 1;
2152 phase = PHASE_MSGIN;
2153 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002154 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002155 (int)extended_msg[1], (int)extended_msg[2]);
2156
Finn Thaine0783ed2016-01-03 16:05:45 +11002157 if (!len && extended_msg[1] > 0 &&
2158 extended_msg[1] <= sizeof(extended_msg) - 2) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002159 /* Accept third byte by clearing ACK */
2160 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2161 len = extended_msg[1] - 1;
2162 data = extended_msg + 3;
2163 phase = PHASE_MSGIN;
2164
2165 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002166 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002167 HOSTNO, len);
2168
2169 switch (extended_msg[2]) {
2170 case EXTENDED_SDTR:
2171 case EXTENDED_WDTR:
2172 case EXTENDED_MODIFY_DATA_POINTER:
2173 case EXTENDED_EXTENDED_IDENTIFY:
2174 tmp = 0;
2175 }
2176 } else if (len) {
2177 printk(KERN_NOTICE "scsi%d: error receiving "
2178 "extended message\n", HOSTNO);
2179 tmp = 0;
2180 } else {
2181 printk(KERN_NOTICE "scsi%d: extended message "
2182 "code %02x length %d is too long\n",
2183 HOSTNO, extended_msg[2], extended_msg[1]);
2184 tmp = 0;
2185 }
Finn Thain11d2f632016-01-03 16:05:51 +11002186
2187 spin_lock_irq(&hostdata->lock);
2188 if (!hostdata->connected)
2189 return;
2190
Roman Zippelc28bda22007-05-01 22:32:36 +02002191 /* Fall through to reject message */
2192
2193 /*
2194 * If we get something weird that we aren't expecting,
2195 * reject it.
2196 */
2197 default:
2198 if (!tmp) {
Finn Thainff50f9e2014-11-12 16:12:18 +11002199 printk(KERN_INFO "scsi%d: rejecting message ",
2200 instance->host_no);
Roman Zippelc28bda22007-05-01 22:32:36 +02002201 spi_print_msg(extended_msg);
2202 printk("\n");
2203 } else if (tmp != EXTENDED_MESSAGE)
Finn Thainff50f9e2014-11-12 16:12:18 +11002204 scmd_printk(KERN_INFO, cmd,
2205 "rejecting unknown message %02x\n",
2206 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +02002207 else
Finn Thainff50f9e2014-11-12 16:12:18 +11002208 scmd_printk(KERN_INFO, cmd,
2209 "rejecting unknown extended message code %02x, length %d\n",
2210 extended_msg[1], extended_msg[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +02002211
2212 msgout = MESSAGE_REJECT;
2213 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2214 break;
2215 } /* switch (tmp) */
2216 break;
2217 case PHASE_MSGOUT:
2218 len = 1;
2219 data = &msgout;
2220 hostdata->last_message = msgout;
2221 NCR5380_transfer_pio(instance, &phase, &len, &data);
2222 if (msgout == ABORT) {
2223#ifdef SUPPORT_TAGS
2224 cmd_free_tag(cmd);
2225#else
2226 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2227#endif
2228 hostdata->connected = NULL;
2229 cmd->result = DID_ERROR << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002230 maybe_release_dma_irq(instance);
Finn Thaine3c3da62014-11-12 16:12:15 +11002231 cmd->scsi_done(cmd);
Finn Thaincd400822016-01-03 16:05:40 +11002232 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Roman Zippelc28bda22007-05-01 22:32:36 +02002233 return;
2234 }
2235 msgout = NOP;
2236 break;
2237 case PHASE_CMDOUT:
2238 len = cmd->cmd_len;
2239 data = cmd->cmnd;
2240 /*
2241 * XXX for performance reasons, on machines with a
2242 * PSEUDO-DMA architecture we should probably
2243 * use the dma transfer function.
2244 */
2245 NCR5380_transfer_pio(instance, &phase, &len, &data);
2246 break;
2247 case PHASE_STATIN:
2248 len = 1;
2249 data = &tmp;
2250 NCR5380_transfer_pio(instance, &phase, &len, &data);
2251 cmd->SCp.Status = tmp;
2252 break;
2253 default:
2254 printk("scsi%d: unknown phase\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11002255 NCR5380_dprint(NDEBUG_ANY, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002256 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002257 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002258 spin_unlock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002259 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11002260 spin_lock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002261 }
Finn Thain11d2f632016-01-03 16:05:51 +11002262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263}
2264
2265/*
2266 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2267 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002268 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002269 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 * nexus has been reestablished,
Roman Zippelc28bda22007-05-01 22:32:36 +02002271 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * Inputs : instance - this instance of the NCR5380.
2273 *
2274 */
2275
2276
Finn Thaine3f463b2014-11-12 16:12:16 +11002277/* it might eventually prove necessary to do a dma setup on
2278 reselection, but it doesn't seem to be needed now -- sam */
2279
Roman Zippelc28bda22007-05-01 22:32:36 +02002280static void NCR5380_reselect(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Finn Thaine8a60142016-01-03 16:05:54 +11002282 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002283 unsigned char target_mask;
Finn Thaine3f463b2014-11-12 16:12:16 +11002284 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002286 unsigned char tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002288 unsigned char msg[3];
Finn Thaine3f463b2014-11-12 16:12:16 +11002289 int __maybe_unused len;
2290 unsigned char __maybe_unused *data, __maybe_unused phase;
Finn Thain710ddd02014-11-12 16:12:02 +11002291 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Roman Zippelc28bda22007-05-01 22:32:36 +02002293 /*
2294 * Disable arbitration, etc. since the host adapter obviously
2295 * lost, and tell an interrupted NCR5380_select() to restart.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Roman Zippelc28bda22007-05-01 22:32:36 +02002298 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Roman Zippelc28bda22007-05-01 22:32:36 +02002300 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2301
Finn Thaind65e6342014-03-18 11:42:20 +11002302 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002303
2304 /*
2305 * At this point, we have detected that our SCSI ID is on the bus,
2306 * SEL is true and BSY was false for at least one bus settle delay
2307 * (400 ns).
2308 *
2309 * We must assert BSY ourselves, until the target drops the SEL
2310 * signal.
2311 */
2312
2313 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thain72064a72016-01-03 16:05:44 +11002314 if (NCR5380_poll_politely(instance,
2315 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
2316 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2317 return;
2318 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002319 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2320
2321 /*
2322 * Wait for target to go into MSGIN.
2323 */
2324
Finn Thain72064a72016-01-03 16:05:44 +11002325 if (NCR5380_poll_politely(instance,
2326 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
2327 do_abort(instance);
2328 return;
2329 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002330
Finn Thaine3f463b2014-11-12 16:12:16 +11002331#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2332 /* acknowledge toggle to MSGIN */
2333 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
2334
2335 /* peek at the byte without really hitting the bus */
2336 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2337#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002338 len = 1;
2339 data = msg;
2340 phase = PHASE_MSGIN;
2341 NCR5380_transfer_pio(instance, &phase, &len, &data);
2342
Finn Thain72064a72016-01-03 16:05:44 +11002343 if (len) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002344 do_abort(instance);
2345 return;
2346 }
Finn Thain72064a72016-01-03 16:05:44 +11002347#endif
2348
2349 if (!(msg[0] & 0x80)) {
2350 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
2351 spi_print_msg(msg);
2352 printk("\n");
2353 do_abort(instance);
2354 return;
2355 }
2356 lun = msg[0] & 0x07;
Roman Zippelc28bda22007-05-01 22:32:36 +02002357
Finn Thaine3f463b2014-11-12 16:12:16 +11002358#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +02002359 /* If the phase is still MSGIN, the target wants to send some more
2360 * messages. In case it supports tagged queuing, this is probably a
2361 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2362 */
2363 tag = TAG_NONE;
Finn Thainca513fc2014-11-12 16:12:19 +11002364 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002365 /* Accept previous IDENTIFY message by clearing ACK */
2366 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2367 len = 2;
2368 data = msg + 1;
2369 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2370 msg[1] == SIMPLE_QUEUE_TAG)
2371 tag = msg[2];
Finn Thaind65e6342014-03-18 11:42:20 +11002372 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
Roman Zippelc28bda22007-05-01 22:32:36 +02002373 "reselection\n", HOSTNO, target_mask, lun, tag);
2374 }
2375#endif
2376
2377 /*
2378 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2379 * just reestablished, and remove it from the disconnected queue.
2380 */
2381
Finn Thain710ddd02014-11-12 16:12:02 +11002382 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002383 tmp; prev = tmp, tmp = NEXT(tmp)) {
Finn Thain72064a72016-01-03 16:05:44 +11002384 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
Roman Zippelc28bda22007-05-01 22:32:36 +02002385#ifdef SUPPORT_TAGS
2386 && (tag == tmp->tag)
2387#endif
2388 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002389 if (prev) {
Roman Zippel3130d902007-05-01 22:32:37 +02002390 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02002391 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002392 hostdata->disconnected_queue = NEXT(tmp);
2393 }
Roman Zippel3130d902007-05-01 22:32:37 +02002394 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002395 break;
2396 }
2397 }
2398
Finn Thain0d3d9a42016-01-03 16:05:55 +11002399 if (tmp) {
2400 dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance,
2401 "reselect: removed %p from disconnected queue\n", tmp);
2402 } else {
2403
Roman Zippelc28bda22007-05-01 22:32:36 +02002404#ifdef SUPPORT_TAGS
Finn Thain72064a72016-01-03 16:05:44 +11002405 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d tag %d not in disconnected queue.\n",
2406 target_mask, lun, tag);
2407#else
2408 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2409 target_mask, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02002410#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002411 /*
2412 * Since we have an established nexus that we can't do anything
2413 * with, we must abort it.
2414 */
2415 do_abort(instance);
2416 return;
2417 }
2418
Finn Thaine3f463b2014-11-12 16:12:16 +11002419#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2420 /* engage dma setup for the command we just saw */
2421 {
2422 void *d;
2423 unsigned long count;
2424
2425 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2426 count = tmp->SCp.buffer->length;
2427 d = sg_virt(tmp->SCp.buffer);
2428 } else {
2429 count = tmp->SCp.this_residual;
2430 d = tmp->SCp.ptr;
2431 }
2432 /* setup this command for dma if not already */
2433 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != tmp)) {
2434 sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
2435 sun3_dma_setup_done = tmp;
2436 }
2437 }
2438
2439 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2440#endif
2441
Roman Zippelc28bda22007-05-01 22:32:36 +02002442 /* Accept message by clearing ACK */
2443 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2444
Finn Thaine3f463b2014-11-12 16:12:16 +11002445#if defined(SUPPORT_TAGS) && defined(CONFIG_SUN3)
2446 /* If the phase is still MSGIN, the target wants to send some more
2447 * messages. In case it supports tagged queuing, this is probably a
2448 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2449 */
2450 tag = TAG_NONE;
2451 if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
2452 /* Accept previous IDENTIFY message by clearing ACK */
2453 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2454 len = 2;
2455 data = msg + 1;
2456 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2457 msg[1] == SIMPLE_QUEUE_TAG)
2458 tag = msg[2];
2459 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at reselection\n"
2460 HOSTNO, target_mask, lun, tag);
2461 }
2462#endif
2463
Roman Zippelc28bda22007-05-01 22:32:36 +02002464 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002465 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002466 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467}
2468
2469
2470/*
Finn Thain710ddd02014-11-12 16:12:02 +11002471 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 *
2473 * Purpose : abort a command
2474 *
Finn Thain710ddd02014-11-12 16:12:02 +11002475 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Roman Zippelc28bda22007-05-01 22:32:36 +02002476 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 * used.
2478 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002479 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002481 * XXX - there is no way to abort the command that is currently
2482 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 * a problem, we could implement longjmp() / setjmp(), setjmp()
Roman Zippelc28bda22007-05-01 22:32:36 +02002484 * called where the loop started in NCR5380_main().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 */
2486
2487static
Finn Thain710ddd02014-11-12 16:12:02 +11002488int NCR5380_abort(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
Roman Zippelc28bda22007-05-01 22:32:36 +02002490 struct Scsi_Host *instance = cmd->device->host;
Finn Thaine8a60142016-01-03 16:05:54 +11002491 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain710ddd02014-11-12 16:12:02 +11002492 struct scsi_cmnd *tmp, **prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02002493 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002495 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Finn Thain11d2f632016-01-03 16:05:51 +11002497 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002499 NCR5380_dprint(NDEBUG_ANY, instance);
2500 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Finn Thaind65e6342014-03-18 11:42:20 +11002502 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002503 NCR5380_read(BUS_AND_STATUS_REG),
2504 NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506#if 1
Roman Zippelc28bda22007-05-01 22:32:36 +02002507 /*
2508 * Case 1 : If the command is the currently executing command,
2509 * we'll set the aborted flag and return control so that
2510 * information transfer routine can exit cleanly.
2511 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Roman Zippelc28bda22007-05-01 22:32:36 +02002513 if (hostdata->connected == cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Finn Thaind65e6342014-03-18 11:42:20 +11002515 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002516 /*
2517 * We should perform BSY checking, and make sure we haven't slipped
2518 * into BUS FREE.
2519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Roman Zippelc28bda22007-05-01 22:32:36 +02002521 /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
2522 /*
2523 * Since we can't change phases until we've completed the current
2524 * handshake, we have to source or sink a byte of data if the current
2525 * phase is not MSGOUT.
2526 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Roman Zippelc28bda22007-05-01 22:32:36 +02002528 /*
2529 * Return control to the executing NCR drive so we can clear the
2530 * aborted flag and get back into our main loop.
2531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Roman Zippelc28bda22007-05-01 22:32:36 +02002533 if (do_abort(instance) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002534 hostdata->connected = NULL;
2535 cmd->result = DID_ABORT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002537 cmd_free_tag(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002539 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002541 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002542 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002543 cmd->scsi_done(cmd);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002544 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002545 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002546 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002547 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002548 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002552
2553 /*
2554 * Case 2 : If the command hasn't been issued yet, we simply remove it
2555 * from the issue queue.
2556 */
Finn Thain710ddd02014-11-12 16:12:02 +11002557 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2558 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002559 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2560 if (cmd == tmp) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002561 (*prev) = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002562 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002563 tmp->result = DID_ABORT << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002564 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002565 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002566 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002567 HOSTNO);
2568 /* Tagged queuing note: no tag to free here, hasn't been assigned
2569 * yet... */
2570 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002571 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 }
2573 }
2574
Roman Zippelc28bda22007-05-01 22:32:36 +02002575 /*
2576 * Case 3 : If any commands are connected, we're going to fail the abort
2577 * and let the high level SCSI driver retry at a later time or
2578 * issue a reset.
2579 *
2580 * Timeouts, and therefore aborted commands, will be highly unlikely
2581 * and handling them cleanly in this situation would make the common
2582 * case of noresets less efficient, and would pollute our code. So,
2583 * we fail.
2584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Roman Zippelc28bda22007-05-01 22:32:36 +02002586 if (hostdata->connected) {
Finn Thain11d2f632016-01-03 16:05:51 +11002587 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002588 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002589 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Roman Zippelc28bda22007-05-01 22:32:36 +02002592 /*
2593 * Case 4: If the command is currently disconnected from the bus, and
2594 * there are no connected commands, we reconnect the I_T_L or
2595 * I_T_L_Q nexus associated with it, go into message out, and send
2596 * an abort message.
2597 *
2598 * This case is especially ugly. In order to reestablish the nexus, we
2599 * need to call NCR5380_select(). The easiest way to implement this
2600 * function was to abort if the bus was busy, and let the interrupt
2601 * handler triggered on the SEL for reselect take care of lost arbitrations
2602 * where necessary, meaning interrupts need to be enabled.
2603 *
2604 * When interrupts are enabled, the queues may change - so we
2605 * can't remove it from the disconnected queue before selecting it
2606 * because that could cause a failure in hashing the nexus if that
2607 * device reselected.
2608 *
2609 * Since the queues may change, we can't use the pointers from when we
2610 * first locate it.
2611 *
2612 * So, we must first locate the command, and if NCR5380_select()
2613 * succeeds, then issue the abort, relocate the command and remove
2614 * it from the disconnected queue.
2615 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Finn Thain710ddd02014-11-12 16:12:02 +11002617 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002618 tmp = NEXT(tmp)) {
2619 if (cmd == tmp) {
Finn Thaind65e6342014-03-18 11:42:20 +11002620 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002621
Finn Thain11d2f632016-01-03 16:05:51 +11002622 if (NCR5380_select(instance, cmd)) {
2623 spin_unlock_irq(&hostdata->lock);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002624 return FAILED;
Finn Thain11d2f632016-01-03 16:05:51 +11002625 }
Finn Thaind65e6342014-03-18 11:42:20 +11002626 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002627
2628 do_abort(instance);
2629
Finn Thain710ddd02014-11-12 16:12:02 +11002630 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2631 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002632 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2633 if (cmd == tmp) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002634 *prev = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002635 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002636 tmp->result = DID_ABORT << 16;
2637 /* We must unlock the tag/LUN immediately here, since the
2638 * target goes to BUS FREE and doesn't send us another
2639 * message (COMMAND_COMPLETE or the like)
2640 */
2641#ifdef SUPPORT_TAGS
2642 cmd_free_tag(tmp);
2643#else
2644 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2645#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002646 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002647 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002648 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002649 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002650 }
2651 }
2652 }
2653 }
2654
Finn Thaine3c3da62014-11-12 16:12:15 +11002655 /* Maybe it is sufficient just to release the ST-DMA lock... (if
2656 * possible at all) At least, we should check if the lock could be
2657 * released after the abort, in case it is kept due to some bug.
2658 */
2659 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002660 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaine3c3da62014-11-12 16:12:15 +11002661
Roman Zippelc28bda22007-05-01 22:32:36 +02002662 /*
2663 * Case 5 : If we reached this point, the command was not found in any of
2664 * the queues.
2665 *
2666 * We probably reached this point because of an unlikely race condition
2667 * between the command completing successfully and the abortion code,
2668 * so we won't panic, but we will notify the user in case something really
2669 * broke.
2670 */
2671
Joe Perchesad361c92009-07-06 13:05:40 -07002672 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002673
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002674 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
2677
Finn Thain3be1b3e2016-01-03 16:05:12 +11002678/**
2679 * NCR5380_bus_reset - reset the SCSI bus
2680 * @cmd: SCSI command undergoing EH
Roman Zippelc28bda22007-05-01 22:32:36 +02002681 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002682 * Returns SUCCESS
Roman Zippelc28bda22007-05-01 22:32:36 +02002683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Finn Thain710ddd02014-11-12 16:12:02 +11002685static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Finn Thaine3c3da62014-11-12 16:12:15 +11002687 struct Scsi_Host *instance = cmd->device->host;
2688 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002689 int i;
2690 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Finn Thain11d2f632016-01-03 16:05:51 +11002692 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Finn Thain3be1b3e2016-01-03 16:05:12 +11002694#if (NDEBUG & NDEBUG_ANY)
2695 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
Finn Thain3be1b3e2016-01-03 16:05:12 +11002696#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002697 NCR5380_dprint(NDEBUG_ANY, instance);
2698 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002699
2700 do_reset(instance);
2701
Roman Zippelc28bda22007-05-01 22:32:36 +02002702 /* reset NCR registers */
Roman Zippelc28bda22007-05-01 22:32:36 +02002703 NCR5380_write(MODE_REG, MR_BASE);
2704 NCR5380_write(TARGET_COMMAND_REG, 0);
2705 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Roman Zippelc28bda22007-05-01 22:32:36 +02002707 /* After the reset, there are no more connected or disconnected commands
2708 * and no busy units; so clear the low-level status here to avoid
2709 * conflicts when the mid-level code tries to wake up the affected
2710 * commands!
2711 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Roman Zippelc28bda22007-05-01 22:32:36 +02002713 if (hostdata->issue_queue)
Finn Thaindbb6b352016-01-03 16:05:53 +11002714 dsprintk(NDEBUG_ABORT, instance, "reset aborted issued command(s)\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02002715 if (hostdata->connected)
Finn Thaindbb6b352016-01-03 16:05:53 +11002716 dsprintk(NDEBUG_ABORT, instance, "reset aborted a connected command\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02002717 if (hostdata->disconnected_queue)
Finn Thaindbb6b352016-01-03 16:05:53 +11002718 dsprintk(NDEBUG_ABORT, instance, "reset aborted disconnected command(s)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Roman Zippelc28bda22007-05-01 22:32:36 +02002720 hostdata->issue_queue = NULL;
2721 hostdata->connected = NULL;
2722 hostdata->disconnected_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +11002724 free_all_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002726 for (i = 0; i < 8; ++i)
2727 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02002729 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002731
2732 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002733 spin_unlock_irqrestore(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002735 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736}