blob: 34cf4d9385890fa3b59098ab7ff3e26fa1f35138 [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
69/*
Roman Zippelc28bda22007-05-01 22:32:36 +020070 * Further development / testing that should be done :
71 * 1. Test linked command handling code after Eric is ready with
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * the high level code.
73 */
Finn Thaine3f463b2014-11-12 16:12:16 +110074
75/* Adapted for the sun3 by Sam Creasey. */
76
db9dff32005-04-03 14:53:59 -050077#include <scsi/scsi_dbg.h>
Matthew Wilcox1abfd372005-12-15 16:22:01 -050078#include <scsi/scsi_transport_spi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#if (NDEBUG & NDEBUG_LISTS)
Roman Zippelc28bda22007-05-01 22:32:36 +020081#define LIST(x, y) \
82 do { \
83 printk("LINE:%d Adding %p to %p\n", \
84 __LINE__, (void*)(x), (void*)(y)); \
85 if ((x) == (y)) \
86 udelay(5); \
87 } while (0)
88#define REMOVE(w, x, y, z) \
89 do { \
90 printk("LINE:%d Removing: %p->%p %p->%p \n", \
91 __LINE__, (void*)(w), (void*)(x), \
92 (void*)(y), (void*)(z)); \
93 if ((x) == (y)) \
94 udelay(5); \
95 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#else
97#define LIST(x,y)
98#define REMOVE(w,x,y,z)
99#endif
100
101#ifndef notyet
102#undef LINKED
103#endif
104
105/*
106 * Design
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200108 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * one simply writes appropriate system specific macros (ie, data
Roman Zippelc28bda22007-05-01 22:32:36 +0200110 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * memory mapped) and drops this file in their 'C' wrapper.
112 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200113 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * each 5380 in the system - commands that haven't been issued yet,
Roman Zippelc28bda22007-05-01 22:32:36 +0200115 * and commands that are currently executing. This means that an
116 * unlimited number of commands may be queued, letting
117 * more commands propagate from the higher driver levels giving higher
118 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
119 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * while a command is already executing.
121 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200123 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200125 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
126 * piece of hardware that requires you to sit in a loop polling for
127 * the REQ signal as long as you are connected. Some devices are
128 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * while doing long seek operations.
Roman Zippelc28bda22007-05-01 22:32:36 +0200130 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * The workaround for this is to keep track of devices that have
132 * disconnected. If the device hasn't disconnected, for commands that
Roman Zippelc28bda22007-05-01 22:32:36 +0200133 * should disconnect, we do something like
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
135 * while (!REQ is asserted) { sleep for N usecs; poll for M usecs }
Roman Zippelc28bda22007-05-01 22:32:36 +0200136 *
137 * Some tweaking of N and M needs to be done. An algorithm based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * on "time to data" would give the best results as long as short time
Roman Zippelc28bda22007-05-01 22:32:36 +0200139 * to datas (ie, on the same track) were considered, however these
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * broken devices are the exception rather than the rule and I'd rather
141 * spend my time optimizing for the normal case.
142 *
143 * Architecture :
144 *
145 * At the heart of the design is a coroutine, NCR5380_main,
Finn Thainff50f9e2014-11-12 16:12:18 +1100146 * which is started from a workqueue for each NCR5380 host in the
147 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
148 * removing the commands from the issue queue and calling
149 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 *
151 * Once a nexus is established, the NCR5380_information_transfer()
152 * phase goes through the various phases as instructed by the target.
153 * if the target goes into MSG IN and sends a DISCONNECT message,
154 * the command structure is placed into the per instance disconnected
Finn Thainff50f9e2014-11-12 16:12:18 +1100155 * queue, and NCR5380_main tries to find more work. If the target is
156 * idle for too long, the system will try to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 * If a command has disconnected, eventually an interrupt will trigger,
159 * calling NCR5380_intr() which will in turn call NCR5380_reselect
160 * to reestablish a nexus. This will run main if necessary.
161 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200162 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * appropriate.
164 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200165 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * structures, being initialized after the command is connected
167 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
168 * Note that in violation of the standard, an implicit SAVE POINTERS operation
169 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
170 */
171
172/*
173 * Using this file :
174 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Roman Zippelc28bda22007-05-01 22:32:36 +0200175 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * and macros and include this file in your driver.
177 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200178 * These macros control options :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Roman Zippelc28bda22007-05-01 22:32:36 +0200180 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100182 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
183 * transceivers.
184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * LINKED - if defined, linked commands are supported.
186 *
187 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
188 *
189 * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
190 *
191 * These macros MUST be defined :
Roman Zippelc28bda22007-05-01 22:32:36 +0200192 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * NCR5380_read(register) - read from the specified register
194 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200195 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100197 * NCR5380_implementation_fields - additional fields needed for this
198 * specific implementation of the NCR5380
199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * Either real DMA *or* pseudo DMA may be implemented
Roman Zippelc28bda22007-05-01 22:32:36 +0200201 * REAL functions :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
Roman Zippelc28bda22007-05-01 22:32:36 +0200203 * Note that the DMA setup functions should return the number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * that they were able to program the controller for.
205 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200206 * Also note that generic i386/PC versions of these macros are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * available as NCR5380_i386_dma_write_setup,
208 * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
209 *
210 * NCR5380_dma_write_setup(instance, src, count) - initialize
211 * NCR5380_dma_read_setup(instance, dst, count) - initialize
212 * NCR5380_dma_residual(instance); - residual count
213 *
214 * PSEUDO functions :
215 * NCR5380_pwrite(instance, src, count)
216 * NCR5380_pread(instance, dst, count);
217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * The generic driver is initialized by calling NCR5380_init(instance),
Roman Zippelc28bda22007-05-01 22:32:36 +0200219 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
Finn Thain8c325132014-11-12 16:11:58 +1100221 * possible) function may be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* Macros ease life... :-) */
225#define SETUP_HOSTDATA(in) \
226 struct NCR5380_hostdata *hostdata = \
227 (struct NCR5380_hostdata *)(in)->hostdata
228#define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)
229
Finn Thain710ddd02014-11-12 16:12:02 +1100230#define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
Roman Zippel3130d902007-05-01 22:32:37 +0200231#define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next))
Finn Thain710ddd02014-11-12 16:12:02 +1100232#define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234#define HOSTNO instance->host_no
235#define H_NO(cmd) (cmd)->device->host->host_no
236
Finn Thain636b1ec2016-01-03 16:05:10 +1100237static int do_abort(struct Scsi_Host *);
238static void do_reset(struct Scsi_Host *);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#ifdef SUPPORT_TAGS
241
242/*
243 * Functions for handling tagged queuing
244 * =====================================
245 *
246 * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
247 *
248 * Using consecutive numbers for the tags is no good idea in my eyes. There
249 * could be wrong re-usings if the counter (8 bit!) wraps and some early
250 * command has been preempted for a long time. My solution: a bitfield for
251 * remembering used tags.
252 *
253 * There's also the problem that each target has a certain queue size, but we
254 * cannot know it in advance :-( We just see a QUEUE_FULL status being
255 * returned. So, in this case, the driver internal queue size assumption is
256 * reduced to the number of active tags if QUEUE_FULL is returned by the
257 * target. The command is returned to the mid-level, but with status changed
258 * to BUSY, since --as I've seen-- the mid-level can't handle QUEUE_FULL
259 * correctly.
260 *
261 * We're also not allowed running tagged commands as long as an untagged
262 * command is active. And REQUEST SENSE commands after a contingent allegiance
263 * condition _must_ be untagged. To keep track whether an untagged command has
264 * been issued, the host->busy array is still employed, as it is without
265 * support for tagged queuing.
266 *
267 * One could suspect that there are possible race conditions between
268 * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
269 * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
270 * which already guaranteed to be running at most once. It is also the only
271 * place where tags/LUNs are allocated. So no other allocation can slip
272 * between that pair, there could only happen a reselection, which can free a
273 * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
274 * important: the tag bit must be cleared before 'nr_allocated' is decreased.
275 */
276
Finn Thainca513fc2014-11-12 16:12:19 +1100277static void __init init_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Roman Zippelc28bda22007-05-01 22:32:36 +0200279 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100280 struct tag_alloc *ta;
Roman Zippelc28bda22007-05-01 22:32:36 +0200281
Finn Thainca513fc2014-11-12 16:12:19 +1100282 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200283 return;
284
285 for (target = 0; target < 8; ++target) {
286 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100287 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200288 bitmap_zero(ta->allocated, MAX_TAGS);
289 ta->nr_allocated = 0;
290 /* At the beginning, assume the maximum queue size we could
291 * support (MAX_TAGS). This value will be decreased if the target
292 * returns QUEUE_FULL status.
293 */
294 ta->queue_size = MAX_TAGS;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299
300/* Check if we can issue a command to this LUN: First see if the LUN is marked
301 * busy by an untagged command. If the command should use tagged queuing, also
302 * check that there is a free tag and the target's queue won't overflow. This
303 * function should be called with interrupts disabled to avoid race
304 * conditions.
Roman Zippelc28bda22007-05-01 22:32:36 +0200305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Finn Thain710ddd02014-11-12 16:12:02 +1100307static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200309 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200310 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200312 if (hostdata->busy[cmd->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200313 return 1;
314 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100315 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
316 !cmd->device->tagged_supported)
Roman Zippelc28bda22007-05-01 22:32:36 +0200317 return 0;
Finn Thain61d739a2014-11-12 16:12:20 +1100318 if (hostdata->TagAlloc[scmd_id(cmd)][lun].nr_allocated >=
319 hostdata->TagAlloc[scmd_id(cmd)][lun].queue_size) {
Finn Thaind65e6342014-03-18 11:42:20 +1100320 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d: no free tags\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200321 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200322 return 1;
323 }
324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327
328/* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
329 * must be called before!), or reserve the LUN in 'busy' if the command is
330 * untagged.
331 */
332
Finn Thain710ddd02014-11-12 16:12:02 +1100333static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200335 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200336 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Roman Zippelc28bda22007-05-01 22:32:36 +0200338 /* If we or the target don't support tagged queuing, allocate the LUN for
339 * an untagged command.
340 */
341 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100342 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
343 !cmd->device->tagged_supported) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200344 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200345 hostdata->busy[cmd->device->id] |= (1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100346 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d now allocated by untagged "
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200347 "command\n", H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200348 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100349 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Roman Zippelc28bda22007-05-01 22:32:36 +0200351 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
352 set_bit(cmd->tag, ta->allocated);
353 ta->nr_allocated++;
Finn Thaind65e6342014-03-18 11:42:20 +1100354 dprintk(NDEBUG_TAGS, "scsi%d: using tag %d for target %d lun %d "
Roman Zippelc28bda22007-05-01 22:32:36 +0200355 "(now %d tags in use)\n",
356 H_NO(cmd), cmd->tag, cmd->device->id,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200357 lun, ta->nr_allocated);
Roman Zippelc28bda22007-05-01 22:32:36 +0200358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361
362/* Mark the tag of command 'cmd' as free, or in case of an untagged command,
363 * unlock the LUN.
364 */
365
Finn Thain710ddd02014-11-12 16:12:02 +1100366static void cmd_free_tag(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200368 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200369 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Roman Zippelc28bda22007-05-01 22:32:36 +0200371 if (cmd->tag == TAG_NONE) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200372 hostdata->busy[cmd->device->id] &= ~(1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100373 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d untagged cmd finished\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200374 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200375 } else if (cmd->tag >= MAX_TAGS) {
376 printk(KERN_NOTICE "scsi%d: trying to free bad tag %d!\n",
377 H_NO(cmd), cmd->tag);
378 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100379 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200380 clear_bit(cmd->tag, ta->allocated);
381 ta->nr_allocated--;
Finn Thaind65e6342014-03-18 11:42:20 +1100382 dprintk(NDEBUG_TAGS, "scsi%d: freed tag %d for target %d lun %d\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200383 H_NO(cmd), cmd->tag, cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387
Finn Thainca513fc2014-11-12 16:12:19 +1100388static void free_all_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Roman Zippelc28bda22007-05-01 22:32:36 +0200390 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100391 struct tag_alloc *ta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Finn Thainca513fc2014-11-12 16:12:19 +1100393 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200394 return;
395
396 for (target = 0; target < 8; ++target) {
397 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100398 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200399 bitmap_zero(ta->allocated, MAX_TAGS);
400 ta->nr_allocated = 0;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405#endif /* SUPPORT_TAGS */
406
407
408/*
Finn Thain710ddd02014-11-12 16:12:02 +1100409 * Function: void merge_contiguous_buffers( struct scsi_cmnd *cmd )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 *
411 * Purpose: Try to merge several scatter-gather requests into one DMA
412 * transfer. This is possible if the scatter buffers lie on
413 * physical contiguous addresses.
414 *
Finn Thain710ddd02014-11-12 16:12:02 +1100415 * Parameters: struct scsi_cmnd *cmd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * The command to work on. The first scatter buffer's data are
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300417 * assumed to be already transferred into ptr/this_residual.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 */
419
Finn Thain710ddd02014-11-12 16:12:02 +1100420static void merge_contiguous_buffers(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Finn Thaine3f463b2014-11-12 16:12:16 +1100422#if !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +0200423 unsigned long endaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200425 unsigned long oldlen = cmd->SCp.this_residual;
426 int cnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#endif
428
Roman Zippelc28bda22007-05-01 22:32:36 +0200429 for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
430 cmd->SCp.buffers_residual &&
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200431 virt_to_phys(sg_virt(&cmd->SCp.buffer[1])) == endaddr;) {
Finn Thaind65e6342014-03-18 11:42:20 +1100432 dprintk(NDEBUG_MERGING, "VTOP(%p) == %08lx -> merging\n",
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200433 page_address(sg_page(&cmd->SCp.buffer[1])), endaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200435 ++cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200437 ++cmd->SCp.buffer;
438 --cmd->SCp.buffers_residual;
439 cmd->SCp.this_residual += cmd->SCp.buffer->length;
440 endaddr += cmd->SCp.buffer->length;
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200443 if (oldlen != cmd->SCp.this_residual)
Finn Thaind65e6342014-03-18 11:42:20 +1100444 dprintk(NDEBUG_MERGING, "merged %d buffers from %p, new length %08x\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200445 cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#endif
Finn Thaine3f463b2014-11-12 16:12:16 +1100447#endif /* !defined(CONFIG_SUN3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Finn Thainff50f9e2014-11-12 16:12:18 +1100450/**
451 * initialize_SCp - init the scsi pointer field
452 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100454 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
456
Finn Thain710ddd02014-11-12 16:12:02 +1100457static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Roman Zippelc28bda22007-05-01 22:32:36 +0200459 /*
460 * Initialize the Scsi Pointer field so that all of the commands in the
461 * various queues are valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200463
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200464 if (scsi_bufflen(cmd)) {
465 cmd->SCp.buffer = scsi_sglist(cmd);
466 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200467 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +0200468 cmd->SCp.this_residual = cmd->SCp.buffer->length;
469 /* ++roman: Try to merge some scatter-buffers if they are at
470 * contiguous physical addresses.
471 */
472 merge_contiguous_buffers(cmd);
473 } else {
474 cmd->SCp.buffer = NULL;
475 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200476 cmd->SCp.ptr = NULL;
477 cmd->SCp.this_residual = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Finn Thain636b1ec2016-01-03 16:05:10 +1100481/**
Finn Thain2f854b82016-01-03 16:05:22 +1100482 * NCR5380_poll_politely - wait for chip register value
Finn Thain636b1ec2016-01-03 16:05:10 +1100483 * @instance: controller to poll
484 * @reg: 5380 register to poll
485 * @bit: Bitmask to check
486 * @val: Value required to exit
Finn Thain2f854b82016-01-03 16:05:22 +1100487 * @wait: Time-out in jiffies
Finn Thain636b1ec2016-01-03 16:05:10 +1100488 *
Finn Thain2f854b82016-01-03 16:05:22 +1100489 * Polls the chip in a reasonably efficient manner waiting for an
490 * event to occur. After a short quick poll we begin to yield the CPU
491 * (if possible). In irq contexts the time-out is arbitrarily limited.
492 * Callers may hold locks as long as they are held in irq mode.
Finn Thain636b1ec2016-01-03 16:05:10 +1100493 *
Finn Thain2f854b82016-01-03 16:05:22 +1100494 * Returns 0 if event occurred otherwise -ETIMEDOUT.
Finn Thain636b1ec2016-01-03 16:05:10 +1100495 */
496
497static int NCR5380_poll_politely(struct Scsi_Host *instance,
Finn Thain2f854b82016-01-03 16:05:22 +1100498 int reg, int bit, int val, int wait)
Finn Thain636b1ec2016-01-03 16:05:10 +1100499{
Finn Thain2f854b82016-01-03 16:05:22 +1100500 struct NCR5380_hostdata *hostdata = shost_priv(instance);
501 unsigned long deadline = jiffies + wait;
502 unsigned long n;
Finn Thain636b1ec2016-01-03 16:05:10 +1100503
Finn Thain2f854b82016-01-03 16:05:22 +1100504 /* Busy-wait for up to 10 ms */
505 n = min(10000U, jiffies_to_usecs(wait));
506 n *= hostdata->accesses_per_ms;
507 n /= 1000;
508 do {
509 if ((NCR5380_read(reg) & bit) == val)
Finn Thain636b1ec2016-01-03 16:05:10 +1100510 return 0;
511 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100512 } while (n--);
513
514 if (irqs_disabled() || in_interrupt())
515 return -ETIMEDOUT;
516
517 /* Repeatedly sleep for 1 ms until deadline */
518 while (time_is_after_jiffies(deadline)) {
519 schedule_timeout_uninterruptible(1);
520 if ((NCR5380_read(reg) & bit) == val)
521 return 0;
Finn Thain636b1ec2016-01-03 16:05:10 +1100522 }
523
Finn Thain636b1ec2016-01-03 16:05:10 +1100524 return -ETIMEDOUT;
525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527#include <linux/delay.h>
528
529#if NDEBUG
530static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200531 unsigned char mask;
532 const char *name;
533} signals[] = {
534 { SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" },
535 { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD, "CD" }, { SR_IO, "IO" },
536 { SR_SEL, "SEL" }, {0, NULL}
537}, basrs[] = {
538 {BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}
539}, icrs[] = {
540 {ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
541 {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"},
542 {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"},
543 {0, NULL}
544}, mrs[] = {
545 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"},
546 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR,
547 "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
548 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
549 {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"},
550 {0, NULL}
551};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Finn Thainff50f9e2014-11-12 16:12:18 +1100553/**
554 * NCR5380_print - print scsi bus signals
555 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100557 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
559
Roman Zippelc28bda22007-05-01 22:32:36 +0200560static void NCR5380_print(struct Scsi_Host *instance)
561{
562 unsigned char status, data, basr, mr, icr, i;
563 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Roman Zippelc28bda22007-05-01 22:32:36 +0200565 local_irq_save(flags);
566 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
567 status = NCR5380_read(STATUS_REG);
568 mr = NCR5380_read(MODE_REG);
569 icr = NCR5380_read(INITIATOR_COMMAND_REG);
570 basr = NCR5380_read(BUS_AND_STATUS_REG);
571 local_irq_restore(flags);
572 printk("STATUS_REG: %02x ", status);
573 for (i = 0; signals[i].mask; ++i)
574 if (status & signals[i].mask)
575 printk(",%s", signals[i].name);
576 printk("\nBASR: %02x ", basr);
577 for (i = 0; basrs[i].mask; ++i)
578 if (basr & basrs[i].mask)
579 printk(",%s", basrs[i].name);
580 printk("\nICR: %02x ", icr);
581 for (i = 0; icrs[i].mask; ++i)
582 if (icr & icrs[i].mask)
583 printk(",%s", icrs[i].name);
584 printk("\nMODE: %02x ", mr);
585 for (i = 0; mrs[i].mask; ++i)
586 if (mr & mrs[i].mask)
587 printk(",%s", mrs[i].name);
588 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200592 unsigned char value;
593 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594} phases[] = {
Roman Zippelc28bda22007-05-01 22:32:36 +0200595 {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
596 {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
597 {PHASE_UNKNOWN, "UNKNOWN"}
598};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Finn Thainff50f9e2014-11-12 16:12:18 +1100600/**
601 * NCR5380_print_phase - show SCSI phase
602 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100604 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100606 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
608
609static void NCR5380_print_phase(struct Scsi_Host *instance)
610{
Roman Zippelc28bda22007-05-01 22:32:36 +0200611 unsigned char status;
612 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Roman Zippelc28bda22007-05-01 22:32:36 +0200614 status = NCR5380_read(STATUS_REG);
615 if (!(status & SR_REQ))
616 printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
617 else {
618 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
619 (phases[i].value != (status & PHASE_MASK)); ++i)
620 ;
621 printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#endif
626
627/*
628 * ++roman: New scheme of calling NCR5380_main()
Roman Zippelc28bda22007-05-01 22:32:36 +0200629 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * If we're not in an interrupt, we can call our main directly, it cannot be
631 * already running. Else, we queue it on a task queue, if not 'main_running'
632 * tells us that a lower level is already executing it. This way,
633 * 'main_running' needs not be protected in a special way.
634 *
635 * queue_main() is a utility function for putting our main onto the task
636 * queue, if main_running is false. It should be called only from a
637 * interrupt or bottom half.
638 */
639
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900640#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#include <linux/workqueue.h>
642#include <linux/interrupt.h>
643
Finn Thaina53a21e2014-11-12 16:12:21 +1100644static inline void queue_main(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Finn Thaina53a21e2014-11-12 16:12:21 +1100646 if (!hostdata->main_running) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200647 /* If in interrupt and NCR5380_main() not already running,
648 queue it on the 'immediate' task queue, to be processed
649 immediately after the current interrupt processing has
650 finished. */
Finn Thain0ad0eff2016-01-03 16:05:21 +1100651 queue_work(hostdata->work_q, &hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +0200652 }
653 /* else: nothing to do: the running NCR5380_main() will pick up
654 any newly queued command. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Finn Thain8c325132014-11-12 16:11:58 +1100657/**
658 * NCR58380_info - report driver and host information
659 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 *
Finn Thain8c325132014-11-12 16:11:58 +1100661 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 *
Finn Thain8c325132014-11-12 16:11:58 +1100663 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665
Finn Thain8c325132014-11-12 16:11:58 +1100666static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Finn Thain8c325132014-11-12 16:11:58 +1100668 struct NCR5380_hostdata *hostdata = shost_priv(instance);
669
670 return hostdata->info;
671}
672
673static void prepare_info(struct Scsi_Host *instance)
674{
675 struct NCR5380_hostdata *hostdata = shost_priv(instance);
676
677 snprintf(hostdata->info, sizeof(hostdata->info),
678 "%s, io_port 0x%lx, n_io_port %d, "
679 "base 0x%lx, irq %d, "
680 "can_queue %d, cmd_per_lun %d, "
681 "sg_tablesize %d, this_id %d, "
Finn Thain9c3f0e22016-01-03 16:05:11 +1100682 "flags { %s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100683 "options { %s} ",
684 instance->hostt->name, instance->io_port, instance->n_io_port,
685 instance->base, instance->irq,
686 instance->can_queue, instance->cmd_per_lun,
687 instance->sg_tablesize, instance->this_id,
Finn Thainca513fc2014-11-12 16:12:19 +1100688 hostdata->flags & FLAG_TAGGED_QUEUING ? "TAGGED_QUEUING " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100689 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100690#ifdef DIFFERENTIAL
691 "DIFFERENTIAL "
692#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100694 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695#endif
696#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100697 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#endif
699#ifdef SUPPORT_TAGS
Finn Thain8c325132014-11-12 16:11:58 +1100700 "SUPPORT_TAGS "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#endif
Finn Thain8c325132014-11-12 16:11:58 +1100702 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Finn Thainff50f9e2014-11-12 16:12:18 +1100705/**
706 * NCR5380_print_status - dump controller info
707 * @instance: controller to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100709 * Print commands in the various queues, called from NCR5380_abort
710 * to aid debugging.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
712
Finn Thain710ddd02014-11-12 16:12:02 +1100713static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd)
Al Virod89537e2013-03-31 13:24:44 -0400714{
715 int i, s;
716 unsigned char *command;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200717 printk("scsi%d: destination target %d, lun %llu\n",
Al Virod89537e2013-03-31 13:24:44 -0400718 H_NO(cmd), cmd->device->id, cmd->device->lun);
719 printk(KERN_CONT " command = ");
720 command = cmd->cmnd;
721 printk(KERN_CONT "%2d (0x%02x)", command[0], command[0]);
722 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
723 printk(KERN_CONT " %02x", command[i]);
724 printk("\n");
725}
726
Finn Thain3be1b3e2016-01-03 16:05:12 +1100727static void __maybe_unused NCR5380_print_status(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Al Virod89537e2013-03-31 13:24:44 -0400729 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100730 struct scsi_cmnd *ptr;
Al Virod89537e2013-03-31 13:24:44 -0400731 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Finn Thain8ad3a592014-03-18 11:42:19 +1100733 NCR5380_dprint(NDEBUG_ANY, instance);
734 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Roman Zippelc28bda22007-05-01 22:32:36 +0200736 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Roman Zippelc28bda22007-05-01 22:32:36 +0200738 local_irq_save(flags);
Al Virod89537e2013-03-31 13:24:44 -0400739 printk("NCR5380: coroutine is%s running.\n",
Finn Thaina53a21e2014-11-12 16:12:21 +1100740 hostdata->main_running ? "" : "n't");
Roman Zippelc28bda22007-05-01 22:32:36 +0200741 if (!hostdata->connected)
Al Virod89537e2013-03-31 13:24:44 -0400742 printk("scsi%d: no currently connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +0200743 else
Finn Thain710ddd02014-11-12 16:12:02 +1100744 lprint_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected);
Al Virod89537e2013-03-31 13:24:44 -0400745 printk("scsi%d: issue_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100746 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr))
Al Virod89537e2013-03-31 13:24:44 -0400747 lprint_Scsi_Cmnd(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Al Virod89537e2013-03-31 13:24:44 -0400749 printk("scsi%d: disconnected_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100750 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr;
Al Virod89537e2013-03-31 13:24:44 -0400751 ptr = NEXT(ptr))
752 lprint_Scsi_Cmnd(ptr);
Roman Zippelc28bda22007-05-01 22:32:36 +0200753
754 local_irq_restore(flags);
Al Virod89537e2013-03-31 13:24:44 -0400755 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Finn Thain710ddd02014-11-12 16:12:02 +1100758static void show_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Roman Zippelc28bda22007-05-01 22:32:36 +0200760 int i, s;
761 unsigned char *command;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200762 seq_printf(m, "scsi%d: destination target %d, lun %llu\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200763 H_NO(cmd), cmd->device->id, cmd->device->lun);
Rasmus Villemoes91c40f22014-12-03 00:10:52 +0100764 seq_puts(m, " command = ");
Roman Zippelc28bda22007-05-01 22:32:36 +0200765 command = cmd->cmnd;
Al Virod89537e2013-03-31 13:24:44 -0400766 seq_printf(m, "%2d (0x%02x)", command[0], command[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +0200767 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
Al Virod89537e2013-03-31 13:24:44 -0400768 seq_printf(m, " %02x", command[i]);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +0100769 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Finn Thain4d3d2a52014-11-12 16:11:52 +1100772static int __maybe_unused NCR5380_show_info(struct seq_file *m,
773 struct Scsi_Host *instance)
Al Virod89537e2013-03-31 13:24:44 -0400774{
775 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100776 struct scsi_cmnd *ptr;
Al Virod89537e2013-03-31 13:24:44 -0400777 unsigned long flags;
778
779 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
780
Al Virod89537e2013-03-31 13:24:44 -0400781 local_irq_save(flags);
782 seq_printf(m, "NCR5380: coroutine is%s running.\n",
Finn Thaina53a21e2014-11-12 16:12:21 +1100783 hostdata->main_running ? "" : "n't");
Al Virod89537e2013-03-31 13:24:44 -0400784 if (!hostdata->connected)
785 seq_printf(m, "scsi%d: no currently connected command\n", HOSTNO);
786 else
Finn Thain710ddd02014-11-12 16:12:02 +1100787 show_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected, m);
Al Virod89537e2013-03-31 13:24:44 -0400788 seq_printf(m, "scsi%d: issue_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100789 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr))
Al Virod89537e2013-03-31 13:24:44 -0400790 show_Scsi_Cmnd(ptr, m);
791
792 seq_printf(m, "scsi%d: disconnected_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100793 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr;
Al Virod89537e2013-03-31 13:24:44 -0400794 ptr = NEXT(ptr))
795 show_Scsi_Cmnd(ptr, m);
796
797 local_irq_restore(flags);
798 return 0;
799}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Finn Thainff50f9e2014-11-12 16:12:18 +1100801/**
802 * NCR5380_init - initialise an NCR5380
803 * @instance: adapter to configure
804 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100806 * Initializes *instance and corresponding 5380 chip,
807 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 *
809 * Notes : I assume that the host, hostno, and id bits have been
Finn Thainff50f9e2014-11-12 16:12:18 +1100810 * set correctly. I don't care about the irq and other fields.
Roman Zippelc28bda22007-05-01 22:32:36 +0200811 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100812 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 */
814
Michael Schmitz95fde7a2009-01-18 03:22:15 +0100815static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Roman Zippelc28bda22007-05-01 22:32:36 +0200817 int i;
818 SETUP_HOSTDATA(instance);
Finn Thain2f854b82016-01-03 16:05:22 +1100819 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Finn Thaina53a21e2014-11-12 16:12:21 +1100821 hostdata->host = instance;
Roman Zippelc28bda22007-05-01 22:32:36 +0200822 hostdata->id_mask = 1 << instance->this_id;
823 hostdata->id_higher_mask = 0;
824 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
825 if (i > hostdata->id_mask)
826 hostdata->id_higher_mask |= i;
827 for (i = 0; i < 8; ++i)
828 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +1100830 init_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831#endif
832#if defined (REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +0200833 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200835 hostdata->connected = NULL;
836 hostdata->issue_queue = NULL;
837 hostdata->disconnected_queue = NULL;
Finn Thainef1081c2014-11-12 16:12:14 +1100838 hostdata->flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Finn Thaina53a21e2014-11-12 16:12:21 +1100840 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100841 hostdata->work_q = alloc_workqueue("ncr5380_%d",
842 WQ_UNBOUND | WQ_MEM_RECLAIM,
843 1, instance->host_no);
844 if (!hostdata->work_q)
845 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Finn Thain8c325132014-11-12 16:11:58 +1100847 prepare_info(instance);
848
Roman Zippelc28bda22007-05-01 22:32:36 +0200849 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
850 NCR5380_write(MODE_REG, MR_BASE);
851 NCR5380_write(TARGET_COMMAND_REG, 0);
852 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Finn Thain2f854b82016-01-03 16:05:22 +1100854 /* Calibrate register polling loop */
855 i = 0;
856 deadline = jiffies + 1;
857 do {
858 cpu_relax();
859 } while (time_is_after_jiffies(deadline));
860 deadline += msecs_to_jiffies(256);
861 do {
862 NCR5380_read(STATUS_REG);
863 ++i;
864 cpu_relax();
865 } while (time_is_after_jiffies(deadline));
866 hostdata->accesses_per_ms = i / 256;
867
Roman Zippelc28bda22007-05-01 22:32:36 +0200868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Finn Thainff50f9e2014-11-12 16:12:18 +1100871/**
Finn Thain636b1ec2016-01-03 16:05:10 +1100872 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
873 * @instance: adapter to check
874 *
875 * If the system crashed, it may have crashed with a connected target and
876 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
877 * currently established nexus, which we know nothing about. Failing that
878 * do a bus reset.
879 *
880 * Note that a bus reset will cause the chip to assert IRQ.
881 *
882 * Returns 0 if successful, otherwise -ENXIO.
883 */
884
885static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
886{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100887 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain636b1ec2016-01-03 16:05:10 +1100888 int pass;
889
890 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
891 switch (pass) {
892 case 1:
893 case 3:
894 case 5:
895 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
896 NCR5380_poll_politely(instance,
897 STATUS_REG, SR_BSY, 0, 5 * HZ);
898 break;
899 case 2:
900 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
901 do_abort(instance);
902 break;
903 case 4:
904 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
905 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100906 /* Wait after a reset; the SCSI standard calls for
907 * 250ms, we wait 500ms to be on the safe side.
908 * But some Toshiba CD-ROMs need ten times that.
909 */
910 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
911 msleep(2500);
912 else
913 msleep(500);
Finn Thain636b1ec2016-01-03 16:05:10 +1100914 break;
915 case 6:
916 shost_printk(KERN_ERR, instance, "bus locked solid\n");
917 return -ENXIO;
918 }
919 }
920 return 0;
921}
922
923/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100924 * NCR5380_exit - remove an NCR5380
925 * @instance: adapter to remove
926 *
927 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
928 */
929
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200930static void NCR5380_exit(struct Scsi_Host *instance)
931{
Finn Thaina53a21e2014-11-12 16:12:21 +1100932 struct NCR5380_hostdata *hostdata = shost_priv(instance);
933
934 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100935 destroy_workqueue(hostdata->work_q);
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200936}
937
Finn Thainff50f9e2014-11-12 16:12:18 +1100938/**
939 * NCR5380_queue_command - queue a command
940 * @instance: the relevant SCSI adapter
941 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100943 * cmd is added to the per instance issue_queue, with minor
944 * twiddling done to the host specific fields of cmd. If the
945 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
947
Finn Thain16b29e72014-11-12 16:12:08 +1100948static int NCR5380_queue_command(struct Scsi_Host *instance,
949 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Finn Thain16b29e72014-11-12 16:12:08 +1100951 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain710ddd02014-11-12 16:12:02 +1100952 struct scsi_cmnd *tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +0200953 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955#if (NDEBUG & NDEBUG_NO_WRITE)
Roman Zippelc28bda22007-05-01 22:32:36 +0200956 switch (cmd->cmnd[0]) {
957 case WRITE_6:
958 case WRITE_10:
959 printk(KERN_NOTICE "scsi%d: WRITE attempted with NO_WRITE debugging flag set\n",
960 H_NO(cmd));
961 cmd->result = (DID_ERROR << 16);
Finn Thain16b29e72014-11-12 16:12:08 +1100962 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200963 return 0;
964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
966
Roman Zippelc28bda22007-05-01 22:32:36 +0200967 /*
968 * We use the host_scribble field as a pointer to the next command
969 * in a queue
970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Roman Zippel3130d902007-05-01 22:32:37 +0200972 SET_NEXT(cmd, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +0200973 cmd->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Roman Zippelc28bda22007-05-01 22:32:36 +0200975 /*
976 * Insert the cmd into the issue queue. Note that REQUEST SENSE
977 * commands are added to the head of the queue since any command will
978 * clear the contingent allegiance condition that exists and the
979 * sense data is only guaranteed to be valid while the condition exists.
980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Roman Zippelc28bda22007-05-01 22:32:36 +0200982 /* ++guenther: now that the issue queue is being set up, we can lock ST-DMA.
983 * Otherwise a running NCR5380_main may steal the lock.
984 * Lock before actually inserting due to fairness reasons explained in
985 * atari_scsi.c. If we insert first, then it's impossible for this driver
986 * to release the lock.
987 * Stop timer for this command while waiting for the lock, or timeouts
988 * may happen (and they really do), and it's no good if the command doesn't
989 * appear in any of the queues.
990 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
991 * because also a timer int can trigger an abort or reset, which would
992 * alter queues and touch the lock.
993 */
Finn Thaine3c3da62014-11-12 16:12:15 +1100994 if (!NCR5380_acquire_dma_irq(instance))
Finn Thain16b29e72014-11-12 16:12:08 +1100995 return SCSI_MLQUEUE_HOST_BUSY;
996
997 local_irq_save(flags);
998
Finn Thainff50f9e2014-11-12 16:12:18 +1100999 /*
1000 * Insert the cmd into the issue queue. Note that REQUEST SENSE
1001 * commands are added to the head of the queue since any command will
1002 * clear the contingent allegiance condition that exists and the
1003 * sense data is only guaranteed to be valid while the condition exists.
1004 */
1005
Roman Zippelc28bda22007-05-01 22:32:36 +02001006 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
1007 LIST(cmd, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02001008 SET_NEXT(cmd, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02001009 hostdata->issue_queue = cmd;
1010 } else {
Finn Thain710ddd02014-11-12 16:12:02 +11001011 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02001012 NEXT(tmp); tmp = NEXT(tmp))
1013 ;
1014 LIST(cmd, tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02001015 SET_NEXT(tmp, cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001016 }
1017 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Finn Thaind65e6342014-03-18 11:42:20 +11001019 dprintk(NDEBUG_QUEUES, "scsi%d: command added to %s of queue\n", H_NO(cmd),
Roman Zippelc28bda22007-05-01 22:32:36 +02001020 (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Roman Zippelc28bda22007-05-01 22:32:36 +02001022 /* If queue_command() is called from an interrupt (real one or bottom
1023 * half), we let queue_main() do the job of taking care about main. If it
1024 * is already running, this is a no-op, else main will be queued.
1025 *
1026 * If we're not in an interrupt, we can call NCR5380_main()
1027 * unconditionally, because it cannot be already running.
1028 */
Finn Thain16b29e72014-11-12 16:12:08 +11001029 if (in_interrupt() || irqs_disabled())
Finn Thaina53a21e2014-11-12 16:12:21 +11001030 queue_main(hostdata);
Roman Zippelc28bda22007-05-01 22:32:36 +02001031 else
Finn Thaina53a21e2014-11-12 16:12:21 +11001032 NCR5380_main(&hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +02001033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Finn Thaine3c3da62014-11-12 16:12:15 +11001036static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
1037{
1038 struct NCR5380_hostdata *hostdata = shost_priv(instance);
1039
1040 /* Caller does the locking needed to set & test these data atomically */
1041 if (!hostdata->disconnected_queue &&
1042 !hostdata->issue_queue &&
1043 !hostdata->connected &&
1044 !hostdata->retain_dma_intr)
1045 NCR5380_release_dma_irq(instance);
1046}
1047
Finn Thainff50f9e2014-11-12 16:12:18 +11001048/**
1049 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001051 * NCR5380_main is a coroutine that runs as long as more work can
1052 * be done on the NCR5380 host adapters in a system. Both
1053 * NCR5380_queue_command() and NCR5380_intr() will try to start it
1054 * in case it is not running.
Roman Zippelc28bda22007-05-01 22:32:36 +02001055 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001056 * Locks: called as its own thread with no locks held.
Roman Zippelc28bda22007-05-01 22:32:36 +02001057 */
1058
Geert Uytterhoevenb312b382007-05-01 22:32:48 +02001059static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Finn Thaina53a21e2014-11-12 16:12:21 +11001061 struct NCR5380_hostdata *hostdata =
1062 container_of(work, struct NCR5380_hostdata, main_task);
1063 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +11001064 struct scsi_cmnd *tmp, *prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02001065 int done;
1066 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Roman Zippelc28bda22007-05-01 22:32:36 +02001068 /*
1069 * We run (with interrupts disabled) until we're sure that none of
1070 * the host adapters have anything that can be done, at which point
1071 * we set main_running to 0 and exit.
1072 *
1073 * Interrupts are enabled before doing various other internal
1074 * instructions, after we've decided that we need to run through
1075 * the loop again.
1076 *
1077 * this should prevent any race conditions.
1078 *
1079 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
1080 * because also a timer int can trigger an abort or reset, which can
1081 * alter queues and touch the Falcon lock.
1082 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Roman Zippelc28bda22007-05-01 22:32:36 +02001084 /* Tell int handlers main() is now already executing. Note that
1085 no races are possible here. If an int comes in before
1086 'main_running' is set here, and queues/executes main via the
1087 task queue, it doesn't do any harm, just this instance of main
1088 won't find any work left to do. */
Finn Thaina53a21e2014-11-12 16:12:21 +11001089 if (hostdata->main_running)
Roman Zippelc28bda22007-05-01 22:32:36 +02001090 return;
Finn Thaina53a21e2014-11-12 16:12:21 +11001091 hostdata->main_running = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001092
1093 local_save_flags(flags);
1094 do {
1095 local_irq_disable(); /* Freeze request queues */
1096 done = 1;
1097
1098 if (!hostdata->connected) {
Finn Thaind65e6342014-03-18 11:42:20 +11001099 dprintk(NDEBUG_MAIN, "scsi%d: not connected\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001100 /*
1101 * Search through the issue_queue for a command destined
1102 * for a target that's not busy.
1103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104#if (NDEBUG & NDEBUG_LISTS)
Finn Thain710ddd02014-11-12 16:12:02 +11001105 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02001106 tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
1107 ;
1108 /*printk("%p ", tmp);*/
1109 if ((tmp == prev) && tmp)
1110 printk(" LOOP\n");
1111 /* else printk("\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112#endif
Finn Thain710ddd02014-11-12 16:12:02 +11001113 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
Roman Zippelc28bda22007-05-01 22:32:36 +02001114 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001115 u8 lun = tmp->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Finn Thaine3f463b2014-11-12 16:12:16 +11001117 dprintk(NDEBUG_LISTS,
1118 "MAIN tmp=%p target=%d busy=%d lun=%d\n",
1119 tmp, scmd_id(tmp), hostdata->busy[scmd_id(tmp)],
1120 lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02001121 /* When we find one, remove it from the issue queue. */
1122 /* ++guenther: possible race with Falcon locking */
1123 if (
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001125 !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126#else
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001127 !(hostdata->busy[tmp->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +02001128#endif
1129 ) {
1130 /* ++guenther: just to be sure, this must be atomic */
1131 local_irq_disable();
1132 if (prev) {
1133 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02001134 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02001135 } else {
1136 REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
1137 hostdata->issue_queue = NEXT(tmp);
1138 }
Roman Zippel3130d902007-05-01 22:32:37 +02001139 SET_NEXT(tmp, NULL);
Finn Thainef1081c2014-11-12 16:12:14 +11001140 hostdata->retain_dma_intr++;
Roman Zippelc28bda22007-05-01 22:32:36 +02001141
1142 /* reenable interrupts after finding one */
1143 local_irq_restore(flags);
1144
1145 /*
1146 * Attempt to establish an I_T_L nexus here.
1147 * On success, instance->hostdata->connected is set.
1148 * On failure, we must add the command back to the
1149 * issue queue so we can keep trying.
1150 */
Finn Thaind65e6342014-03-18 11:42:20 +11001151 dprintk(NDEBUG_MAIN, "scsi%d: main(): command for target %d "
Roman Zippelc28bda22007-05-01 22:32:36 +02001152 "lun %d removed from issue_queue\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001153 HOSTNO, tmp->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02001154 /*
1155 * REQUEST SENSE commands are issued without tagged
1156 * queueing, even on SCSI-II devices because the
1157 * contingent allegiance condition exists for the
1158 * entire unit.
1159 */
1160 /* ++roman: ...and the standard also requires that
1161 * REQUEST SENSE command are untagged.
1162 */
1163
1164#ifdef SUPPORT_TAGS
1165 cmd_get_tag(tmp, tmp->cmnd[0] != REQUEST_SENSE);
1166#endif
Finn Thain76f13b92014-11-12 16:11:53 +11001167 if (!NCR5380_select(instance, tmp)) {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001168 /* OK or bad target */
Finn Thaine3c3da62014-11-12 16:12:15 +11001169 local_irq_disable();
Finn Thainef1081c2014-11-12 16:12:14 +11001170 hostdata->retain_dma_intr--;
Finn Thaine3c3da62014-11-12 16:12:15 +11001171 maybe_release_dma_irq(instance);
1172 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02001173 } else {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001174 /* Need to retry */
Roman Zippelc28bda22007-05-01 22:32:36 +02001175 local_irq_disable();
1176 LIST(tmp, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02001177 SET_NEXT(tmp, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02001178 hostdata->issue_queue = tmp;
1179#ifdef SUPPORT_TAGS
1180 cmd_free_tag(tmp);
1181#endif
Finn Thainef1081c2014-11-12 16:12:14 +11001182 hostdata->retain_dma_intr--;
Roman Zippelc28bda22007-05-01 22:32:36 +02001183 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11001184 dprintk(NDEBUG_MAIN, "scsi%d: main(): select() failed, "
Roman Zippelc28bda22007-05-01 22:32:36 +02001185 "returned to issue_queue\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001186 }
Finn Thain1f1b0c72016-01-03 16:05:17 +11001187 if (hostdata->connected)
1188 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001189 } /* if target/lun/target queue is not busy */
1190 } /* for issue_queue */
1191 } /* if (!hostdata->connected) */
1192
1193 if (hostdata->connected
1194#ifdef REAL_DMA
1195 && !hostdata->dma_len
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196#endif
1197 ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11001199 dprintk(NDEBUG_MAIN, "scsi%d: main: performing information transfer\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001200 HOSTNO);
1201 NCR5380_information_transfer(instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001202 dprintk(NDEBUG_MAIN, "scsi%d: main: done set false\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001203 done = 0;
1204 }
1205 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Roman Zippelc28bda22007-05-01 22:32:36 +02001207 /* Better allow ints _after_ 'main_running' has been cleared, else
1208 an interrupt could believe we'll pick up the work it left for
1209 us, but we won't see it anymore here... */
Finn Thaina53a21e2014-11-12 16:12:21 +11001210 hostdata->main_running = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001211 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214
1215#ifdef REAL_DMA
1216/*
1217 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
1218 *
1219 * Purpose : Called by interrupt handler when DMA finishes or a phase
Roman Zippelc28bda22007-05-01 22:32:36 +02001220 * mismatch occurs (which would finish the DMA transfer).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 *
1222 * Inputs : instance - this instance of the NCR5380.
1223 *
1224 */
1225
Roman Zippelc28bda22007-05-01 22:32:36 +02001226static void NCR5380_dma_complete(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Roman Zippelc28bda22007-05-01 22:32:36 +02001228 SETUP_HOSTDATA(instance);
Finn Thain01bd9082014-11-12 16:12:23 +11001229 int transferred;
Finn Thaine3f463b2014-11-12 16:12:16 +11001230 unsigned char **data;
Roman Zippelc28bda22007-05-01 22:32:36 +02001231 volatile int *count;
Finn Thaine3f463b2014-11-12 16:12:16 +11001232 int saved_data = 0, overrun = 0;
1233 unsigned char p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Roman Zippelc28bda22007-05-01 22:32:36 +02001235 if (!hostdata->connected) {
1236 printk(KERN_WARNING "scsi%d: received end of DMA interrupt with "
1237 "no connected cmd\n", HOSTNO);
1238 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Finn Thainef1081c2014-11-12 16:12:14 +11001241 if (hostdata->read_overruns) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001242 p = hostdata->connected->SCp.phase;
1243 if (p & SR_IO) {
1244 udelay(10);
1245 if ((NCR5380_read(BUS_AND_STATUS_REG) &
1246 (BASR_PHASE_MATCH|BASR_ACK)) ==
1247 (BASR_PHASE_MATCH|BASR_ACK)) {
1248 saved_data = NCR5380_read(INPUT_DATA_REG);
1249 overrun = 1;
Finn Thaind65e6342014-03-18 11:42:20 +11001250 dprintk(NDEBUG_DMA, "scsi%d: read overrun handled\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001251 }
1252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001254
Finn Thaind65e6342014-03-18 11:42:20 +11001255 dprintk(NDEBUG_DMA, "scsi%d: real DMA transfer complete, basr 0x%X, sr 0x%X\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001256 HOSTNO, NCR5380_read(BUS_AND_STATUS_REG),
1257 NCR5380_read(STATUS_REG));
1258
Finn Thaine3f463b2014-11-12 16:12:16 +11001259#if defined(CONFIG_SUN3)
1260 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
1261 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
1262 instance->host_no);
1263 BUG();
1264 }
1265
1266 /* make sure we're not stuck in a data phase */
1267 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
1268 (BASR_PHASE_MATCH | BASR_ACK)) {
1269 pr_err("scsi%d: BASR %02x\n", instance->host_no,
1270 NCR5380_read(BUS_AND_STATUS_REG));
1271 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
1272 instance->host_no);
1273 BUG();
1274 }
1275#endif
1276
Roman Zippelc28bda22007-05-01 22:32:36 +02001277 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1278 NCR5380_write(MODE_REG, MR_BASE);
1279 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1280
Finn Thain01bd9082014-11-12 16:12:23 +11001281 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001282 hostdata->dma_len = 0;
1283
1284 data = (unsigned char **)&hostdata->connected->SCp.ptr;
1285 count = &hostdata->connected->SCp.this_residual;
Finn Thain01bd9082014-11-12 16:12:23 +11001286 *data += transferred;
1287 *count -= transferred;
Roman Zippelc28bda22007-05-01 22:32:36 +02001288
Finn Thainef1081c2014-11-12 16:12:14 +11001289 if (hostdata->read_overruns) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001290 int cnt, toPIO;
1291
Roman Zippelc28bda22007-05-01 22:32:36 +02001292 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
Finn Thainef1081c2014-11-12 16:12:14 +11001293 cnt = toPIO = hostdata->read_overruns;
Roman Zippelc28bda22007-05-01 22:32:36 +02001294 if (overrun) {
Finn Thaind65e6342014-03-18 11:42:20 +11001295 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001296 *(*data)++ = saved_data;
1297 (*count)--;
1298 cnt--;
1299 toPIO--;
1300 }
Finn Thaind65e6342014-03-18 11:42:20 +11001301 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%08lx\n", cnt, (long)*data);
Roman Zippelc28bda22007-05-01 22:32:36 +02001302 NCR5380_transfer_pio(instance, &p, &cnt, data);
1303 *count -= toPIO - cnt;
1304 }
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307#endif /* REAL_DMA */
1308
1309
Finn Thainff50f9e2014-11-12 16:12:18 +11001310/**
1311 * NCR5380_intr - generic NCR5380 irq handler
1312 * @irq: interrupt number
1313 * @dev_id: device info
Roman Zippelc28bda22007-05-01 22:32:36 +02001314 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001315 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1316 * from the disconnected queue, and restarting NCR5380_main()
1317 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
1319
Roman Zippelc28bda22007-05-01 22:32:36 +02001320static irqreturn_t NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Finn Thaina53a21e2014-11-12 16:12:21 +11001322 struct Scsi_Host *instance = dev_id;
Roman Zippelc28bda22007-05-01 22:32:36 +02001323 int done = 1, handled = 0;
1324 unsigned char basr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Finn Thaind65e6342014-03-18 11:42:20 +11001326 dprintk(NDEBUG_INTR, "scsi%d: NCR5380 irq triggered\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Roman Zippelc28bda22007-05-01 22:32:36 +02001328 /* Look for pending interrupts */
1329 basr = NCR5380_read(BUS_AND_STATUS_REG);
Finn Thaind65e6342014-03-18 11:42:20 +11001330 dprintk(NDEBUG_INTR, "scsi%d: BASR=%02x\n", HOSTNO, basr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001331 /* dispatch to appropriate routine if found and done=0 */
1332 if (basr & BASR_IRQ) {
Finn Thain8ad3a592014-03-18 11:42:19 +11001333 NCR5380_dprint(NDEBUG_INTR, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001334 if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
1335 done = 0;
Finn Thaind65e6342014-03-18 11:42:20 +11001336 dprintk(NDEBUG_INTR, "scsi%d: SEL interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001337 NCR5380_reselect(instance);
1338 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1339 } else if (basr & BASR_PARITY_ERROR) {
Finn Thaind65e6342014-03-18 11:42:20 +11001340 dprintk(NDEBUG_INTR, "scsi%d: PARITY interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001341 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1342 } else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
Finn Thaind65e6342014-03-18 11:42:20 +11001343 dprintk(NDEBUG_INTR, "scsi%d: RESET interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001344 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1345 } else {
1346 /*
1347 * The rest of the interrupt conditions can occur only during a
1348 * DMA transfer
1349 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001352 /*
1353 * We should only get PHASE MISMATCH and EOP interrupts if we have
1354 * DMA enabled, so do a sanity check based on the current setting
1355 * of the MODE register.
1356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Roman Zippelc28bda22007-05-01 22:32:36 +02001358 if ((NCR5380_read(MODE_REG) & MR_DMA_MODE) &&
1359 ((basr & BASR_END_DMA_TRANSFER) ||
1360 !(basr & BASR_PHASE_MATCH))) {
1361
Finn Thaind65e6342014-03-18 11:42:20 +11001362 dprintk(NDEBUG_INTR, "scsi%d: PHASE MISM or EOP interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001363 NCR5380_dma_complete( instance );
1364 done = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001365 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366#endif /* REAL_DMA */
Roman Zippelc28bda22007-05-01 22:32:36 +02001367 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368/* MS: Ignore unknown phase mismatch interrupts (caused by EOP interrupt) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001369 if (basr & BASR_PHASE_MATCH)
Finn Thaine3f463b2014-11-12 16:12:16 +11001370 dprintk(NDEBUG_INTR, "scsi%d: unknown interrupt, "
Roman Zippelc28bda22007-05-01 22:32:36 +02001371 "BASR 0x%x, MR 0x%x, SR 0x%x\n",
1372 HOSTNO, basr, NCR5380_read(MODE_REG),
1373 NCR5380_read(STATUS_REG));
1374 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaine3f463b2014-11-12 16:12:16 +11001375#ifdef SUN3_SCSI_VME
1376 dregs->csr |= CSR_DMA_ENABLE;
1377#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001378 }
1379 } /* if !(SELECTION || PARITY) */
1380 handled = 1;
1381 } /* BASR & IRQ */ else {
1382 printk(KERN_NOTICE "scsi%d: interrupt without IRQ bit set in BASR, "
1383 "BASR 0x%X, MR 0x%X, SR 0x%x\n", HOSTNO, basr,
1384 NCR5380_read(MODE_REG), NCR5380_read(STATUS_REG));
1385 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaine3f463b2014-11-12 16:12:16 +11001386#ifdef SUN3_SCSI_VME
1387 dregs->csr |= CSR_DMA_ENABLE;
1388#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001389 }
1390
1391 if (!done) {
Finn Thaind65e6342014-03-18 11:42:20 +11001392 dprintk(NDEBUG_INTR, "scsi%d: in int routine, calling main\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001393 /* Put a call to NCR5380_main() on the queue... */
Finn Thaina53a21e2014-11-12 16:12:21 +11001394 queue_main(shost_priv(instance));
Roman Zippelc28bda22007-05-01 22:32:36 +02001395 }
1396 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
Roman Zippelc28bda22007-05-01 22:32:36 +02001399/*
Finn Thain710ddd02014-11-12 16:12:02 +11001400 * Function : int NCR5380_select(struct Scsi_Host *instance,
1401 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 *
1403 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Roman Zippelc28bda22007-05-01 22:32:36 +02001404 * including ARBITRATION, SELECTION, and initial message out for
1405 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001407 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001408 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 *
Finn Thain63238762016-01-03 16:05:15 +11001410 * Returns : -1 if selection failed but should be retried.
1411 * 0 if selection failed and should not be retried.
1412 * 0 if selection succeeded completely (hostdata->connected == cmd).
Roman Zippelc28bda22007-05-01 22:32:36 +02001413 *
1414 * Side effects :
1415 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * with registers as they should have been on entry - ie
1417 * SELECT_ENABLE will be set appropriately, the NCR5380
1418 * will cease to drive any SCSI bus signals.
1419 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001420 * If successful : I_T_L or I_T_L_Q nexus will be established,
1421 * instance->connected will be set to cmd.
1422 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001424 * If failed (no target) : cmd->scsi_done() will be called, and the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 * cmd->result host byte set to DID_BAD_TARGET.
1426 */
1427
Finn Thain710ddd02014-11-12 16:12:02 +11001428static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Roman Zippelc28bda22007-05-01 22:32:36 +02001430 SETUP_HOSTDATA(instance);
1431 unsigned char tmp[3], phase;
1432 unsigned char *data;
1433 int len;
Finn Thainae753a32016-01-03 16:05:23 +11001434 int err;
Roman Zippelc28bda22007-05-01 22:32:36 +02001435 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Finn Thain8ad3a592014-03-18 11:42:19 +11001437 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001438 dprintk(NDEBUG_ARBITRATION, "scsi%d: starting arbitration, id = %d\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02001439 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Roman Zippelc28bda22007-05-01 22:32:36 +02001441 /*
1442 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1443 * data bus during SELECTION.
1444 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Roman Zippelc28bda22007-05-01 22:32:36 +02001446 local_irq_save(flags);
1447 if (hostdata->connected) {
1448 local_irq_restore(flags);
1449 return -1;
1450 }
1451 NCR5380_write(TARGET_COMMAND_REG, 0);
1452
1453 /*
1454 * Start arbitration.
1455 */
1456
1457 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1458 NCR5380_write(MODE_REG, MR_ARBITRATE);
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Roman Zippelc28bda22007-05-01 22:32:36 +02001462 /* Wait for arbitration logic to complete */
Michael Schmitzfb810d12007-05-01 22:32:35 +02001463#if defined(NCR_TIMEOUT)
Roman Zippelc28bda22007-05-01 22:32:36 +02001464 {
1465 unsigned long timeout = jiffies + 2*NCR_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Roman Zippelc28bda22007-05-01 22:32:36 +02001467 while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS) &&
1468 time_before(jiffies, timeout) && !hostdata->connected)
1469 ;
1470 if (time_after_eq(jiffies, timeout)) {
1471 printk("scsi : arbitration timeout at %d\n", __LINE__);
1472 NCR5380_write(MODE_REG, MR_BASE);
1473 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1474 return -1;
1475 }
1476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477#else /* NCR_TIMEOUT */
Roman Zippelc28bda22007-05-01 22:32:36 +02001478 while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS) &&
1479 !hostdata->connected)
1480 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481#endif
1482
Finn Thaind65e6342014-03-18 11:42:20 +11001483 dprintk(NDEBUG_ARBITRATION, "scsi%d: arbitration complete\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Roman Zippelc28bda22007-05-01 22:32:36 +02001485 if (hostdata->connected) {
1486 NCR5380_write(MODE_REG, MR_BASE);
1487 return -1;
1488 }
1489 /*
1490 * The arbitration delay is 2.2us, but this is a minimum and there is
1491 * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
1492 * the integral nature of udelay().
1493 *
1494 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Roman Zippelc28bda22007-05-01 22:32:36 +02001496 udelay(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Roman Zippelc28bda22007-05-01 22:32:36 +02001498 /* Check for lost arbitration */
1499 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1500 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1501 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1502 hostdata->connected) {
1503 NCR5380_write(MODE_REG, MR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001504 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001505 HOSTNO);
1506 return -1;
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Finn Thaincf13b082016-01-03 16:05:18 +11001509 /* After/during arbitration, BSY should be asserted.
1510 * IBM DPES-31080 Version S31Q works now
1511 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1512 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001513 NCR5380_write(INITIATOR_COMMAND_REG,
1514 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Roman Zippelc28bda22007-05-01 22:32:36 +02001516 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1517 hostdata->connected) {
1518 NCR5380_write(MODE_REG, MR_BASE);
1519 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001520 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting ICR_ASSERT_SEL\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001521 HOSTNO);
1522 return -1;
1523 }
1524
1525 /*
1526 * Again, bus clear + bus settle time is 1.2us, however, this is
1527 * a minimum so we'll udelay ceil(1.2)
1528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Finn Thain9c3f0e22016-01-03 16:05:11 +11001530 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1531 udelay(15);
1532 else
1533 udelay(2);
Roman Zippelc28bda22007-05-01 22:32:36 +02001534
1535 if (hostdata->connected) {
1536 NCR5380_write(MODE_REG, MR_BASE);
1537 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1538 return -1;
1539 }
1540
Finn Thaind65e6342014-03-18 11:42:20 +11001541 dprintk(NDEBUG_ARBITRATION, "scsi%d: won arbitration\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001542
1543 /*
1544 * Now that we have won arbitration, start Selection process, asserting
1545 * the host and target ID's on the SCSI bus.
1546 */
1547
1548 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->device->id)));
1549
1550 /*
1551 * Raise ATN while SEL is true before BSY goes false from arbitration,
1552 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1553 * phase immediately after selection.
1554 */
1555
1556 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY |
1557 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Roman Zippelc28bda22007-05-01 22:32:36 +02001560 /*
1561 * Reselect interrupts must be turned off prior to the dropping of BSY,
1562 * otherwise we will trigger an interrupt.
1563 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Roman Zippelc28bda22007-05-01 22:32:36 +02001565 if (hostdata->connected) {
1566 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1567 return -1;
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Roman Zippelc28bda22007-05-01 22:32:36 +02001570 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Roman Zippelc28bda22007-05-01 22:32:36 +02001572 /*
1573 * The initiator shall then wait at least two deskew delays and release
1574 * the BSY signal.
1575 */
1576 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Roman Zippelc28bda22007-05-01 22:32:36 +02001578 /* Reset BSY */
1579 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
1580 ICR_ASSERT_ATN | ICR_ASSERT_SEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Roman Zippelc28bda22007-05-01 22:32:36 +02001582 /*
1583 * Something weird happens when we cease to drive BSY - looks
1584 * like the board/chip is letting us do another read before the
1585 * appropriate propagation delay has expired, and we're confusing
1586 * a BSY signal from ourselves as the target's response to SELECTION.
1587 *
1588 * A small delay (the 'C++' frontend breaks the pipeline with an
1589 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1590 * tighter 'C' code breaks and requires this) solves the problem -
1591 * the 1 us delay is arbitrary, and only used because this delay will
1592 * be the same on other platforms and since it works here, it should
1593 * work there.
1594 *
1595 * wingel suggests that this could be due to failing to wait
1596 * one deskew delay.
1597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Roman Zippelc28bda22007-05-01 22:32:36 +02001599 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Finn Thaind65e6342014-03-18 11:42:20 +11001601 dprintk(NDEBUG_SELECTION, "scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Roman Zippelc28bda22007-05-01 22:32:36 +02001603 /*
1604 * The SCSI specification calls for a 250 ms timeout for the actual
1605 * selection.
1606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Finn Thainae753a32016-01-03 16:05:23 +11001608 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1609 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Roman Zippelc28bda22007-05-01 22:32:36 +02001611 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1612 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1613 NCR5380_reselect(instance);
1614 printk(KERN_ERR "scsi%d: reselection after won arbitration?\n",
1615 HOSTNO);
1616 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1617 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001619
Finn Thainae753a32016-01-03 16:05:23 +11001620 if (err < 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001621 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02001622 cmd->result = DID_BAD_TARGET << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02001623#ifdef SUPPORT_TAGS
1624 cmd_free_tag(cmd);
1625#endif
1626 cmd->scsi_done(cmd);
1627 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaind65e6342014-03-18 11:42:20 +11001628 dprintk(NDEBUG_SELECTION, "scsi%d: target did not respond within 250ms\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001629 return 0;
1630 }
1631
Roman Zippelc28bda22007-05-01 22:32:36 +02001632 /*
Finn Thainae753a32016-01-03 16:05:23 +11001633 * No less than two deskew delays after the initiator detects the
1634 * BSY signal is true, it shall release the SEL signal and may
1635 * change the DATA BUS. -wingel
1636 */
1637
1638 udelay(1);
1639
1640 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1641
1642 /*
Roman Zippelc28bda22007-05-01 22:32:36 +02001643 * Since we followed the SCSI spec, and raised ATN while SEL
1644 * was true but before BSY was false during selection, the information
1645 * transfer phase should be a MESSAGE OUT phase so that we can send the
1646 * IDENTIFY message.
1647 *
1648 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1649 * message (2 bytes) with a tag ID that we increment with every command
1650 * until it wraps back to 0.
1651 *
1652 * XXX - it turns out that there are some broken SCSI-II devices,
1653 * which claim to support tagged queuing but fail when more than
1654 * some number of commands are issued at once.
1655 */
1656
1657 /* Wait for start of REQ/ACK handshake */
1658 while (!(NCR5380_read(STATUS_REG) & SR_REQ))
1659 ;
1660
Finn Thaind65e6342014-03-18 11:42:20 +11001661 dprintk(NDEBUG_SELECTION, "scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001662 HOSTNO, cmd->device->id);
1663 tmp[0] = IDENTIFY(1, cmd->device->lun);
1664
1665#ifdef SUPPORT_TAGS
1666 if (cmd->tag != TAG_NONE) {
1667 tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
1668 tmp[2] = cmd->tag;
1669 len = 3;
1670 } else
1671 len = 1;
1672#else
1673 len = 1;
1674 cmd->tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675#endif /* SUPPORT_TAGS */
1676
Roman Zippelc28bda22007-05-01 22:32:36 +02001677 /* Send message(s) */
1678 data = tmp;
1679 phase = PHASE_MSGOUT;
1680 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11001681 dprintk(NDEBUG_SELECTION, "scsi%d: nexus established.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001682 /* XXX need to handle errors here */
1683 hostdata->connected = cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684#ifndef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001685 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
1686#endif
Finn Thaine3f463b2014-11-12 16:12:16 +11001687#ifdef SUN3_SCSI_VME
1688 dregs->csr |= CSR_INTR;
1689#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Roman Zippelc28bda22007-05-01 22:32:36 +02001691 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Roman Zippelc28bda22007-05-01 22:32:36 +02001693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Roman Zippelc28bda22007-05-01 22:32:36 +02001696/*
1697 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * unsigned char *phase, int *count, unsigned char **data)
1699 *
1700 * Purpose : transfers data in given phase using polled I/O
1701 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001702 * Inputs : instance - instance of driver, *phase - pointer to
1703 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001705 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001707 * maximum number of bytes, 0 if all bytes are transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * is in same phase.
1709 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001710 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 *
1712 * XXX Note : handling for bus free may be useful.
1713 */
1714
1715/*
Roman Zippelc28bda22007-05-01 22:32:36 +02001716 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 * IS 100% reliable, and for the actual data transfer where speed
1718 * counts, we will always do a pseudo DMA or DMA transfer.
1719 */
1720
Roman Zippelc28bda22007-05-01 22:32:36 +02001721static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1722 unsigned char *phase, int *count,
1723 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Roman Zippelc28bda22007-05-01 22:32:36 +02001725 register unsigned char p = *phase, tmp;
1726 register int c = *count;
1727 register unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Roman Zippelc28bda22007-05-01 22:32:36 +02001729 /*
1730 * The NCR5380 chip will only drive the SCSI bus when the
1731 * phase specified in the appropriate bits of the TARGET COMMAND
1732 * REGISTER match the STATUS REGISTER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 */
1734
Roman Zippelc28bda22007-05-01 22:32:36 +02001735 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Roman Zippelc28bda22007-05-01 22:32:36 +02001737 do {
1738 /*
1739 * Wait for assertion of REQ, after which the phase bits will be
1740 * valid
1741 */
1742 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ))
1743 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Finn Thaind65e6342014-03-18 11:42:20 +11001745 dprintk(NDEBUG_HANDSHAKE, "scsi%d: REQ detected\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Roman Zippelc28bda22007-05-01 22:32:36 +02001747 /* Check for phase mismatch */
1748 if ((tmp & PHASE_MASK) != p) {
Finn Thaind65e6342014-03-18 11:42:20 +11001749 dprintk(NDEBUG_PIO, "scsi%d: phase mismatch\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11001750 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001751 break;
1752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Roman Zippelc28bda22007-05-01 22:32:36 +02001754 /* Do actual transfer from SCSI bus to / from memory */
1755 if (!(p & SR_IO))
1756 NCR5380_write(OUTPUT_DATA_REG, *d);
1757 else
1758 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Roman Zippelc28bda22007-05-01 22:32:36 +02001760 ++d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Roman Zippelc28bda22007-05-01 22:32:36 +02001762 /*
1763 * The SCSI standard suggests that in MSGOUT phase, the initiator
1764 * should drop ATN on the last byte of the message phase
1765 * after REQ has been asserted for the handshake but before
1766 * the initiator raises ACK.
1767 */
1768
1769 if (!(p & SR_IO)) {
1770 if (!((p & SR_MSG) && c > 1)) {
1771 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thain8ad3a592014-03-18 11:42:19 +11001772 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001773 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1774 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1775 } else {
1776 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1777 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Finn Thain8ad3a592014-03-18 11:42:19 +11001778 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001779 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1780 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1781 }
1782 } else {
Finn Thain8ad3a592014-03-18 11:42:19 +11001783 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001784 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1785 }
1786
1787 while (NCR5380_read(STATUS_REG) & SR_REQ)
1788 ;
1789
Finn Thaind65e6342014-03-18 11:42:20 +11001790 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001791
1792 /*
1793 * We have several special cases to consider during REQ/ACK handshaking :
1794 * 1. We were in MSGOUT phase, and we are on the last byte of the
1795 * message. ATN must be dropped as ACK is dropped.
1796 *
1797 * 2. We are in a MSGIN phase, and we are on the last byte of the
1798 * message. We must exit with ACK asserted, so that the calling
1799 * code may raise ATN before dropping ACK to reject the message.
1800 *
1801 * 3. ACK and ATN are clear and the target may proceed as normal.
1802 */
1803 if (!(p == PHASE_MSGIN && c == 1)) {
1804 if (p == PHASE_MSGOUT && c > 1)
1805 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1806 else
1807 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1808 }
1809 } while (--c);
1810
Finn Thaind65e6342014-03-18 11:42:20 +11001811 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001812
1813 *count = c;
1814 *data = d;
1815 tmp = NCR5380_read(STATUS_REG);
1816 /* The phase read from the bus is valid if either REQ is (already)
1817 * asserted or if ACK hasn't been released yet. The latter is the case if
1818 * we're in MSGIN and all wanted bytes have been received.
1819 */
1820 if ((tmp & SR_REQ) || (p == PHASE_MSGIN && c == 0))
1821 *phase = tmp & PHASE_MASK;
1822 else
1823 *phase = PHASE_UNKNOWN;
1824
1825 if (!c || (*phase == p))
1826 return 0;
1827 else
1828 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Finn Thain636b1ec2016-01-03 16:05:10 +11001831/**
1832 * do_reset - issue a reset command
1833 * @instance: adapter to reset
1834 *
1835 * Issue a reset sequence to the NCR5380 and try and get the bus
1836 * back into sane shape.
1837 *
1838 * This clears the reset interrupt flag because there may be no handler for
1839 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1840 * been installed. And when in EH we may have released the ST DMA interrupt.
1841 */
1842
1843static void do_reset(struct Scsi_Host *instance)
1844{
1845 unsigned long flags;
1846
1847 local_irq_save(flags);
1848 NCR5380_write(TARGET_COMMAND_REG,
1849 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1850 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1851 udelay(50);
1852 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1853 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1854 local_irq_restore(flags);
1855}
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857/*
1858 * Function : do_abort (Scsi_Host *host)
Roman Zippelc28bda22007-05-01 22:32:36 +02001859 *
1860 * Purpose : abort the currently established nexus. Should only be
1861 * called from a routine which can drop into a
1862 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * Returns : 0 on success, -1 on failure.
1864 */
1865
Finn Thaina53a21e2014-11-12 16:12:21 +11001866static int do_abort(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Roman Zippelc28bda22007-05-01 22:32:36 +02001868 unsigned char tmp, *msgptr, phase;
1869 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Roman Zippelc28bda22007-05-01 22:32:36 +02001871 /* Request message out phase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Roman Zippelc28bda22007-05-01 22:32:36 +02001874 /*
1875 * Wait for the target to indicate a valid phase by asserting
1876 * REQ. Once this happens, we'll have either a MSGOUT phase
1877 * and can immediately send the ABORT message, or we'll have some
1878 * other phase and will have to source/sink data.
1879 *
1880 * We really don't care what value was on the bus or what value
1881 * the target sees, so we just handshake.
1882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Roel Kluin3be38e72007-11-15 21:13:46 +01001884 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ))
Roman Zippelc28bda22007-05-01 22:32:36 +02001885 ;
1886
1887 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1888
1889 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1890 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1891 ICR_ASSERT_ACK);
1892 while (NCR5380_read(STATUS_REG) & SR_REQ)
1893 ;
1894 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1895 }
1896
1897 tmp = ABORT;
1898 msgptr = &tmp;
1899 len = 1;
1900 phase = PHASE_MSGOUT;
Finn Thaina53a21e2014-11-12 16:12:21 +11001901 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001902
1903 /*
1904 * If we got here, and the command completed successfully,
1905 * we're about to go into bus free state.
1906 */
1907
1908 return len ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
1911#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001912/*
1913 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 * unsigned char *phase, int *count, unsigned char **data)
1915 *
1916 * Purpose : transfers data in given phase using either real
1917 * or pseudo DMA.
1918 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001919 * Inputs : instance - instance of driver, *phase - pointer to
1920 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001922 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001924 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 * is in same phase.
1926 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001927 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 *
1929 */
1930
1931
Roman Zippelc28bda22007-05-01 22:32:36 +02001932static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1933 unsigned char *phase, int *count,
1934 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Roman Zippelc28bda22007-05-01 22:32:36 +02001936 SETUP_HOSTDATA(instance);
1937 register int c = *count;
1938 register unsigned char p = *phase;
Finn Thaine3f463b2014-11-12 16:12:16 +11001939 unsigned long flags;
1940
1941#if defined(CONFIG_SUN3)
1942 /* sanity check */
1943 if (!sun3_dma_setup_done) {
1944 pr_err("scsi%d: transfer_dma without setup!\n",
1945 instance->host_no);
1946 BUG();
1947 }
1948 hostdata->dma_len = c;
1949
1950 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
1951 instance->host_no, (p & SR_IO) ? "reading" : "writing",
1952 c, (p & SR_IO) ? "to" : "from", *data);
1953
1954 /* netbsd turns off ints here, why not be safe and do it too */
1955 local_irq_save(flags);
1956
1957 /* send start chain */
1958 sun3scsi_dma_start(c, *data);
1959
1960 if (p & SR_IO) {
1961 NCR5380_write(TARGET_COMMAND_REG, 1);
1962 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1963 NCR5380_write(INITIATOR_COMMAND_REG, 0);
1964 NCR5380_write(MODE_REG,
1965 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1966 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1967 } else {
1968 NCR5380_write(TARGET_COMMAND_REG, 0);
1969 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1970 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
1971 NCR5380_write(MODE_REG,
1972 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1973 NCR5380_write(START_DMA_SEND_REG, 0);
1974 }
1975
1976#ifdef SUN3_SCSI_VME
1977 dregs->csr |= CSR_DMA_ENABLE;
1978#endif
1979
1980 local_irq_restore(flags);
1981
1982 sun3_dma_active = 1;
1983
1984#else /* !defined(CONFIG_SUN3) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001985 register unsigned char *d = *data;
1986 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Roman Zippelc28bda22007-05-01 22:32:36 +02001988 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1989 *phase = tmp;
1990 return -1;
1991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Finn Thainef1081c2014-11-12 16:12:14 +11001993 if (hostdata->read_overruns && (p & SR_IO))
1994 c -= hostdata->read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Finn Thaind65e6342014-03-18 11:42:20 +11001996 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001997 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1998 c, (p & SR_IO) ? "to" : "from", d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Roman Zippelc28bda22007-05-01 22:32:36 +02002000 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02002003 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004#endif /* def REAL_DMA */
2005
Finn Thainef1081c2014-11-12 16:12:14 +11002006 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002007 /* On the Medusa, it is a must to initialize the DMA before
2008 * starting the NCR. This is also the cleaner way for the TT.
2009 */
2010 local_irq_save(flags);
2011 hostdata->dma_len = (p & SR_IO) ?
2012 NCR5380_dma_read_setup(instance, d, c) :
2013 NCR5380_dma_write_setup(instance, d, c);
2014 local_irq_restore(flags);
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Roman Zippelc28bda22007-05-01 22:32:36 +02002017 if (p & SR_IO)
2018 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
2019 else {
2020 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
2021 NCR5380_write(START_DMA_SEND_REG, 0);
2022 }
2023
Finn Thainef1081c2014-11-12 16:12:14 +11002024 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002025 /* On the Falcon, the DMA setup must be done after the last */
2026 /* NCR access, else the DMA setup gets trashed!
2027 */
2028 local_irq_save(flags);
2029 hostdata->dma_len = (p & SR_IO) ?
2030 NCR5380_dma_read_setup(instance, d, c) :
2031 NCR5380_dma_write_setup(instance, d, c);
2032 local_irq_restore(flags);
2033 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002034#endif /* !defined(CONFIG_SUN3) */
2035
Roman Zippelc28bda22007-05-01 22:32:36 +02002036 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038#endif /* defined(REAL_DMA) */
2039
2040/*
2041 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
2042 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002043 * Purpose : run through the various SCSI phases and do as the target
2044 * directs us to. Operates on the currently connected command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 * instance->connected.
2046 *
2047 * Inputs : instance, instance for which we are doing commands
2048 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002049 * Side effects : SCSI things happen, the disconnected queue will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 * modified if a command disconnects, *instance->connected will
2051 * change.
2052 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002053 * XXX Note : we need to watch for bus free or a reset condition here
2054 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 */
Roman Zippelc28bda22007-05-01 22:32:36 +02002056
2057static void NCR5380_information_transfer(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Roman Zippelc28bda22007-05-01 22:32:36 +02002059 SETUP_HOSTDATA(instance);
2060 unsigned long flags;
2061 unsigned char msgout = NOP;
2062 int sink = 0;
2063 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02002065 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002067 unsigned char *data;
2068 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain710ddd02014-11-12 16:12:02 +11002069 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Finn Thaine3f463b2014-11-12 16:12:16 +11002071#ifdef SUN3_SCSI_VME
2072 dregs->csr |= CSR_INTR;
2073#endif
2074
Roman Zippelc28bda22007-05-01 22:32:36 +02002075 while (1) {
2076 tmp = NCR5380_read(STATUS_REG);
2077 /* We only have a valid SCSI phase when REQ is asserted */
2078 if (tmp & SR_REQ) {
2079 phase = (tmp & PHASE_MASK);
2080 if (phase != old_phase) {
2081 old_phase = phase;
Finn Thain8ad3a592014-03-18 11:42:19 +11002082 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002084#if defined(CONFIG_SUN3)
2085 if (phase == PHASE_CMDOUT) {
2086#if defined(REAL_DMA)
2087 void *d;
2088 unsigned long count;
2089
2090 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2091 count = cmd->SCp.buffer->length;
2092 d = sg_virt(cmd->SCp.buffer);
2093 } else {
2094 count = cmd->SCp.this_residual;
2095 d = cmd->SCp.ptr;
2096 }
2097 /* this command setup for dma yet? */
2098 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != cmd)) {
2099 if (cmd->request->cmd_type == REQ_TYPE_FS) {
2100 sun3scsi_dma_setup(d, count,
2101 rq_data_dir(cmd->request));
2102 sun3_dma_setup_done = cmd;
2103 }
2104 }
2105#endif
2106#ifdef SUN3_SCSI_VME
2107 dregs->csr |= CSR_INTR;
2108#endif
2109 }
2110#endif /* CONFIG_SUN3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Roman Zippelc28bda22007-05-01 22:32:36 +02002112 if (sink && (phase != PHASE_MSGOUT)) {
2113 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Roman Zippelc28bda22007-05-01 22:32:36 +02002115 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
2116 ICR_ASSERT_ACK);
2117 while (NCR5380_read(STATUS_REG) & SR_REQ)
2118 ;
2119 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
2120 ICR_ASSERT_ATN);
2121 sink = 0;
2122 continue;
2123 }
2124
2125 switch (phase) {
2126 case PHASE_DATAOUT:
2127#if (NDEBUG & NDEBUG_NO_DATAOUT)
2128 printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
2129 "aborted\n", HOSTNO);
2130 sink = 1;
2131 do_abort(instance);
2132 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002133 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002134 return;
2135#endif
2136 case PHASE_DATAIN:
2137 /*
2138 * If there is no room left in the current buffer in the
2139 * scatter-gather list, move onto the next one.
2140 */
2141
2142 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2143 ++cmd->SCp.buffer;
2144 --cmd->SCp.buffers_residual;
2145 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02002146 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +02002147 /* ++roman: Try to merge some scatter-buffers if
2148 * they are at contiguous physical addresses.
2149 */
2150 merge_contiguous_buffers(cmd);
Finn Thaind65e6342014-03-18 11:42:20 +11002151 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002152 HOSTNO, cmd->SCp.this_residual,
2153 cmd->SCp.buffers_residual);
2154 }
2155
2156 /*
2157 * The preferred transfer method is going to be
2158 * PSEUDO-DMA for systems that are strictly PIO,
2159 * since we can let the hardware do the handshaking.
2160 *
2161 * For this to work, we need to know the transfersize
2162 * ahead of time, since the pseudo-DMA code will sit
2163 * in an unconditional loop.
2164 */
2165
2166 /* ++roman: I suggest, this should be
2167 * #if def(REAL_DMA)
2168 * instead of leaving REAL_DMA out.
2169 */
2170
2171#if defined(REAL_DMA)
Finn Thaine3f463b2014-11-12 16:12:16 +11002172 if (
2173#if !defined(CONFIG_SUN3)
2174 !cmd->device->borken &&
2175#endif
2176 (transfersize = NCR5380_dma_xfer_len(instance, cmd, phase)) >= DMA_MIN_SIZE) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002177 len = transfersize;
2178 cmd->SCp.phase = phase;
2179 if (NCR5380_transfer_dma(instance, &phase,
2180 &len, (unsigned char **)&cmd->SCp.ptr)) {
2181 /*
2182 * If the watchdog timer fires, all future
2183 * accesses to this device will use the
2184 * polled-IO. */
Finn Thainff50f9e2014-11-12 16:12:18 +11002185 scmd_printk(KERN_INFO, cmd,
2186 "switching to slow handshake\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02002187 cmd->device->borken = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02002188 sink = 1;
2189 do_abort(instance);
2190 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002191 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002192 /* XXX - need to source or sink data here, as appropriate */
2193 } else {
2194#ifdef REAL_DMA
2195 /* ++roman: When using real DMA,
2196 * information_transfer() should return after
2197 * starting DMA since it has nothing more to
2198 * do.
2199 */
2200 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002202 cmd->SCp.this_residual -= transfersize - len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002204 }
2205 } else
2206#endif /* defined(REAL_DMA) */
2207 NCR5380_transfer_pio(instance, &phase,
2208 (int *)&cmd->SCp.this_residual,
2209 (unsigned char **)&cmd->SCp.ptr);
Finn Thaine3f463b2014-11-12 16:12:16 +11002210#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2211 /* if we had intended to dma that command clear it */
2212 if (sun3_dma_setup_done == cmd)
2213 sun3_dma_setup_done = NULL;
2214#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002215 break;
2216 case PHASE_MSGIN:
2217 len = 1;
2218 data = &tmp;
2219 NCR5380_write(SELECT_ENABLE_REG, 0); /* disable reselects */
2220 NCR5380_transfer_pio(instance, &phase, &len, &data);
2221 cmd->SCp.Message = tmp;
2222
2223 switch (tmp) {
2224 /*
2225 * Linking lets us reduce the time required to get the
2226 * next command out to the device, hopefully this will
2227 * mean we don't waste another revolution due to the delays
2228 * required by ARBITRATION and another SELECTION.
2229 *
2230 * In the current implementation proposal, low level drivers
2231 * merely have to start the next command, pointed to by
2232 * next_link, done() is called as with unlinked commands.
2233 */
2234#ifdef LINKED
2235 case LINKED_CMD_COMPLETE:
2236 case LINKED_FLG_CMD_COMPLETE:
2237 /* Accept message by clearing ACK */
2238 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2239
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002240 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked command "
Roman Zippelc28bda22007-05-01 22:32:36 +02002241 "complete.\n", HOSTNO, cmd->device->id, cmd->device->lun);
2242
2243 /* Enable reselect interrupts */
2244 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2245 /*
2246 * Sanity check : A linked command should only terminate
2247 * with one of these messages if there are more linked
2248 * commands available.
2249 */
2250
2251 if (!cmd->next_link) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002252 printk(KERN_NOTICE "scsi%d: target %d lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002253 "linked command complete, no next_link\n",
2254 HOSTNO, cmd->device->id, cmd->device->lun);
2255 sink = 1;
2256 do_abort(instance);
2257 return;
2258 }
2259
2260 initialize_SCp(cmd->next_link);
2261 /* The next command is still part of this process; copy it
2262 * and don't free it! */
2263 cmd->next_link->tag = cmd->tag;
2264 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002265 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked request "
Roman Zippelc28bda22007-05-01 22:32:36 +02002266 "done, calling scsi_done().\n",
2267 HOSTNO, cmd->device->id, cmd->device->lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02002268 cmd->scsi_done(cmd);
2269 cmd = hostdata->connected;
2270 break;
2271#endif /* def LINKED */
2272 case ABORT:
2273 case COMMAND_COMPLETE:
2274 /* Accept message by clearing ACK */
2275 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002276 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d, lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002277 "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
Finn Thaine3c3da62014-11-12 16:12:15 +11002278
2279 local_irq_save(flags);
2280 hostdata->retain_dma_intr++;
2281 hostdata->connected = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002282#ifdef SUPPORT_TAGS
2283 cmd_free_tag(cmd);
2284 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
2285 /* Turn a QUEUE FULL status into BUSY, I think the
2286 * mid level cannot handle QUEUE FULL :-( (The
2287 * command is retried after BUSY). Also update our
2288 * queue size to the number of currently issued
2289 * commands now.
2290 */
2291 /* ++Andreas: the mid level code knows about
2292 QUEUE_FULL now. */
Finn Thain61d739a2014-11-12 16:12:20 +11002293 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002294 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
Roman Zippelc28bda22007-05-01 22:32:36 +02002295 "QUEUE_FULL after %d commands\n",
2296 HOSTNO, cmd->device->id, cmd->device->lun,
2297 ta->nr_allocated);
2298 if (ta->queue_size > ta->nr_allocated)
2299 ta->nr_allocated = ta->queue_size;
2300 }
2301#else
2302 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2303#endif
2304 /* Enable reselect interrupts */
2305 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2306
2307 /*
2308 * I'm not sure what the correct thing to do here is :
2309 *
2310 * If the command that just executed is NOT a request
2311 * sense, the obvious thing to do is to set the result
2312 * code to the values of the stored parameters.
2313 *
2314 * If it was a REQUEST SENSE command, we need some way to
2315 * differentiate between the failure code of the original
2316 * and the failure code of the REQUEST sense - the obvious
2317 * case is success, where we fall through and leave the
2318 * result code unchanged.
2319 *
2320 * The non-obvious place is where the REQUEST SENSE failed
2321 */
2322
2323 if (cmd->cmnd[0] != REQUEST_SENSE)
2324 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2325 else if (status_byte(cmd->SCp.Status) != GOOD)
2326 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2327
Boaz Harrosh28424d32007-09-10 22:37:45 +03002328 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2329 hostdata->ses.cmd_len) {
2330 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2331 hostdata->ses.cmd_len = 0 ;
2332 }
2333
Roman Zippelc28bda22007-05-01 22:32:36 +02002334 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2335 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
Boaz Harrosh28424d32007-09-10 22:37:45 +03002336 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
Roman Zippelc28bda22007-05-01 22:32:36 +02002337
Finn Thaind65e6342014-03-18 11:42:20 +11002338 dprintk(NDEBUG_AUTOSENSE, "scsi%d: performing request sense\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002339
Roman Zippelc28bda22007-05-01 22:32:36 +02002340 LIST(cmd,hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002341 SET_NEXT(cmd, hostdata->issue_queue);
Finn Thain710ddd02014-11-12 16:12:02 +11002342 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thaind65e6342014-03-18 11:42:20 +11002343 dprintk(NDEBUG_QUEUES, "scsi%d: REQUEST SENSE added to head of "
Roman Zippelc28bda22007-05-01 22:32:36 +02002344 "issue queue\n", H_NO(cmd));
Finn Thain997acab2014-11-12 16:11:54 +11002345 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002346 cmd->scsi_done(cmd);
2347 }
2348
Finn Thaine3c3da62014-11-12 16:12:15 +11002349 local_irq_restore(flags);
2350
Roman Zippelc28bda22007-05-01 22:32:36 +02002351 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2352 /*
2353 * Restore phase bits to 0 so an interrupted selection,
2354 * arbitration can resume.
2355 */
2356 NCR5380_write(TARGET_COMMAND_REG, 0);
2357
2358 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2359 barrier();
2360
Finn Thaine3c3da62014-11-12 16:12:15 +11002361 local_irq_save(flags);
Finn Thainef1081c2014-11-12 16:12:14 +11002362 hostdata->retain_dma_intr--;
Roman Zippelc28bda22007-05-01 22:32:36 +02002363 /* ++roman: For Falcon SCSI, release the lock on the
2364 * ST-DMA here if no other commands are waiting on the
2365 * disconnected queue.
2366 */
Finn Thaine3c3da62014-11-12 16:12:15 +11002367 maybe_release_dma_irq(instance);
2368 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002369 return;
2370 case MESSAGE_REJECT:
2371 /* Accept message by clearing ACK */
2372 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2373 /* Enable reselect interrupts */
2374 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2375 switch (hostdata->last_message) {
2376 case HEAD_OF_QUEUE_TAG:
2377 case ORDERED_QUEUE_TAG:
2378 case SIMPLE_QUEUE_TAG:
2379 /* The target obviously doesn't support tagged
2380 * queuing, even though it announced this ability in
2381 * its INQUIRY data ?!? (maybe only this LUN?) Ok,
2382 * clear 'tagged_supported' and lock the LUN, since
2383 * the command is treated as untagged further on.
2384 */
2385 cmd->device->tagged_supported = 0;
2386 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
2387 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002388 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
Roman Zippelc28bda22007-05-01 22:32:36 +02002389 "QUEUE_TAG message; tagged queuing "
2390 "disabled\n",
2391 HOSTNO, cmd->device->id, cmd->device->lun);
2392 break;
2393 }
2394 break;
2395 case DISCONNECT:
2396 /* Accept message by clearing ACK */
2397 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2398 local_irq_save(flags);
2399 cmd->device->disconnect = 1;
2400 LIST(cmd,hostdata->disconnected_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002401 SET_NEXT(cmd, hostdata->disconnected_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02002402 hostdata->connected = NULL;
2403 hostdata->disconnected_queue = cmd;
2404 local_irq_restore(flags);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002405 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d lun %llu was "
Roman Zippelc28bda22007-05-01 22:32:36 +02002406 "moved from connected to the "
2407 "disconnected_queue\n", HOSTNO,
2408 cmd->device->id, cmd->device->lun);
2409 /*
2410 * Restore phase bits to 0 so an interrupted selection,
2411 * arbitration can resume.
2412 */
2413 NCR5380_write(TARGET_COMMAND_REG, 0);
2414
2415 /* Enable reselect interrupts */
2416 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2417 /* Wait for bus free to avoid nasty timeouts */
2418 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2419 barrier();
Finn Thaine3f463b2014-11-12 16:12:16 +11002420#ifdef SUN3_SCSI_VME
2421 dregs->csr |= CSR_DMA_ENABLE;
2422#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002423 return;
2424 /*
2425 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2426 * operation, in violation of the SCSI spec so we can safely
2427 * ignore SAVE/RESTORE pointers calls.
2428 *
2429 * Unfortunately, some disks violate the SCSI spec and
2430 * don't issue the required SAVE_POINTERS message before
2431 * disconnecting, and we have to break spec to remain
2432 * compatible.
2433 */
2434 case SAVE_POINTERS:
2435 case RESTORE_POINTERS:
2436 /* Accept message by clearing ACK */
2437 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2438 /* Enable reselect interrupts */
2439 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2440 break;
2441 case EXTENDED_MESSAGE:
2442 /*
2443 * Extended messages are sent in the following format :
2444 * Byte
2445 * 0 EXTENDED_MESSAGE == 1
2446 * 1 length (includes one byte for code, doesn't
2447 * include first two bytes)
2448 * 2 code
2449 * 3..length+1 arguments
2450 *
2451 * Start the extended message buffer with the EXTENDED_MESSAGE
2452 * byte, since spi_print_msg() wants the whole thing.
2453 */
2454 extended_msg[0] = EXTENDED_MESSAGE;
2455 /* Accept first byte by clearing ACK */
2456 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2457
Finn Thaind65e6342014-03-18 11:42:20 +11002458 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002459
2460 len = 2;
2461 data = extended_msg + 1;
2462 phase = PHASE_MSGIN;
2463 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002464 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002465 (int)extended_msg[1], (int)extended_msg[2]);
2466
2467 if (!len && extended_msg[1] <=
2468 (sizeof(extended_msg) - 1)) {
2469 /* Accept third byte by clearing ACK */
2470 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2471 len = extended_msg[1] - 1;
2472 data = extended_msg + 3;
2473 phase = PHASE_MSGIN;
2474
2475 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002476 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002477 HOSTNO, len);
2478
2479 switch (extended_msg[2]) {
2480 case EXTENDED_SDTR:
2481 case EXTENDED_WDTR:
2482 case EXTENDED_MODIFY_DATA_POINTER:
2483 case EXTENDED_EXTENDED_IDENTIFY:
2484 tmp = 0;
2485 }
2486 } else if (len) {
2487 printk(KERN_NOTICE "scsi%d: error receiving "
2488 "extended message\n", HOSTNO);
2489 tmp = 0;
2490 } else {
2491 printk(KERN_NOTICE "scsi%d: extended message "
2492 "code %02x length %d is too long\n",
2493 HOSTNO, extended_msg[2], extended_msg[1]);
2494 tmp = 0;
2495 }
2496 /* Fall through to reject message */
2497
2498 /*
2499 * If we get something weird that we aren't expecting,
2500 * reject it.
2501 */
2502 default:
2503 if (!tmp) {
Finn Thainff50f9e2014-11-12 16:12:18 +11002504 printk(KERN_INFO "scsi%d: rejecting message ",
2505 instance->host_no);
Roman Zippelc28bda22007-05-01 22:32:36 +02002506 spi_print_msg(extended_msg);
2507 printk("\n");
2508 } else if (tmp != EXTENDED_MESSAGE)
Finn Thainff50f9e2014-11-12 16:12:18 +11002509 scmd_printk(KERN_INFO, cmd,
2510 "rejecting unknown message %02x\n",
2511 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +02002512 else
Finn Thainff50f9e2014-11-12 16:12:18 +11002513 scmd_printk(KERN_INFO, cmd,
2514 "rejecting unknown extended message code %02x, length %d\n",
2515 extended_msg[1], extended_msg[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +02002516
2517 msgout = MESSAGE_REJECT;
2518 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2519 break;
2520 } /* switch (tmp) */
2521 break;
2522 case PHASE_MSGOUT:
2523 len = 1;
2524 data = &msgout;
2525 hostdata->last_message = msgout;
2526 NCR5380_transfer_pio(instance, &phase, &len, &data);
2527 if (msgout == ABORT) {
Finn Thaine3c3da62014-11-12 16:12:15 +11002528 local_irq_save(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002529#ifdef SUPPORT_TAGS
2530 cmd_free_tag(cmd);
2531#else
2532 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2533#endif
2534 hostdata->connected = NULL;
2535 cmd->result = DID_ERROR << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02002536 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine3c3da62014-11-12 16:12:15 +11002537 maybe_release_dma_irq(instance);
2538 local_irq_restore(flags);
2539 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002540 return;
2541 }
2542 msgout = NOP;
2543 break;
2544 case PHASE_CMDOUT:
2545 len = cmd->cmd_len;
2546 data = cmd->cmnd;
2547 /*
2548 * XXX for performance reasons, on machines with a
2549 * PSEUDO-DMA architecture we should probably
2550 * use the dma transfer function.
2551 */
2552 NCR5380_transfer_pio(instance, &phase, &len, &data);
2553 break;
2554 case PHASE_STATIN:
2555 len = 1;
2556 data = &tmp;
2557 NCR5380_transfer_pio(instance, &phase, &len, &data);
2558 cmd->SCp.Status = tmp;
2559 break;
2560 default:
2561 printk("scsi%d: unknown phase\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11002562 NCR5380_dprint(NDEBUG_ANY, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002563 } /* switch(phase) */
2564 } /* if (tmp * SR_REQ) */
2565 } /* while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
2568/*
2569 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2570 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002571 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002572 * 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 -07002573 * nexus has been reestablished,
Roman Zippelc28bda22007-05-01 22:32:36 +02002574 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 * Inputs : instance - this instance of the NCR5380.
2576 *
2577 */
2578
2579
Finn Thaine3f463b2014-11-12 16:12:16 +11002580/* it might eventually prove necessary to do a dma setup on
2581 reselection, but it doesn't seem to be needed now -- sam */
2582
Roman Zippelc28bda22007-05-01 22:32:36 +02002583static void NCR5380_reselect(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Roman Zippelc28bda22007-05-01 22:32:36 +02002585 SETUP_HOSTDATA(instance);
2586 unsigned char target_mask;
Finn Thaine3f463b2014-11-12 16:12:16 +11002587 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002589 unsigned char tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002591 unsigned char msg[3];
Finn Thaine3f463b2014-11-12 16:12:16 +11002592 int __maybe_unused len;
2593 unsigned char __maybe_unused *data, __maybe_unused phase;
Finn Thain710ddd02014-11-12 16:12:02 +11002594 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Roman Zippelc28bda22007-05-01 22:32:36 +02002596 /*
2597 * Disable arbitration, etc. since the host adapter obviously
2598 * lost, and tell an interrupted NCR5380_select() to restart.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Roman Zippelc28bda22007-05-01 22:32:36 +02002601 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Roman Zippelc28bda22007-05-01 22:32:36 +02002603 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2604
Finn Thaind65e6342014-03-18 11:42:20 +11002605 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002606
2607 /*
2608 * At this point, we have detected that our SCSI ID is on the bus,
2609 * SEL is true and BSY was false for at least one bus settle delay
2610 * (400 ns).
2611 *
2612 * We must assert BSY ourselves, until the target drops the SEL
2613 * signal.
2614 */
2615
2616 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2617
2618 while (NCR5380_read(STATUS_REG) & SR_SEL)
2619 ;
2620 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2621
2622 /*
2623 * Wait for target to go into MSGIN.
2624 */
2625
2626 while (!(NCR5380_read(STATUS_REG) & SR_REQ))
2627 ;
2628
Finn Thaine3f463b2014-11-12 16:12:16 +11002629#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2630 /* acknowledge toggle to MSGIN */
2631 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
2632
2633 /* peek at the byte without really hitting the bus */
2634 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2635#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002636 len = 1;
2637 data = msg;
2638 phase = PHASE_MSGIN;
2639 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaine3f463b2014-11-12 16:12:16 +11002640#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002641
2642 if (!(msg[0] & 0x80)) {
2643 printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
2644 spi_print_msg(msg);
2645 do_abort(instance);
2646 return;
2647 }
2648 lun = (msg[0] & 0x07);
2649
Finn Thaine3f463b2014-11-12 16:12:16 +11002650#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +02002651 /* If the phase is still MSGIN, the target wants to send some more
2652 * messages. In case it supports tagged queuing, this is probably a
2653 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2654 */
2655 tag = TAG_NONE;
Finn Thainca513fc2014-11-12 16:12:19 +11002656 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002657 /* Accept previous IDENTIFY message by clearing ACK */
2658 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2659 len = 2;
2660 data = msg + 1;
2661 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2662 msg[1] == SIMPLE_QUEUE_TAG)
2663 tag = msg[2];
Finn Thaind65e6342014-03-18 11:42:20 +11002664 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
Roman Zippelc28bda22007-05-01 22:32:36 +02002665 "reselection\n", HOSTNO, target_mask, lun, tag);
2666 }
2667#endif
2668
2669 /*
2670 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2671 * just reestablished, and remove it from the disconnected queue.
2672 */
2673
Finn Thain710ddd02014-11-12 16:12:02 +11002674 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002675 tmp; prev = tmp, tmp = NEXT(tmp)) {
2676 if ((target_mask == (1 << tmp->device->id)) && (lun == tmp->device->lun)
2677#ifdef SUPPORT_TAGS
2678 && (tag == tmp->tag)
2679#endif
2680 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002681 if (prev) {
2682 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02002683 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02002684 } else {
2685 REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
2686 hostdata->disconnected_queue = NEXT(tmp);
2687 }
Roman Zippel3130d902007-05-01 22:32:37 +02002688 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002689 break;
2690 }
2691 }
2692
2693 if (!tmp) {
2694 printk(KERN_WARNING "scsi%d: warning: target bitmask %02x lun %d "
2695#ifdef SUPPORT_TAGS
2696 "tag %d "
2697#endif
2698 "not in disconnected_queue.\n",
2699 HOSTNO, target_mask, lun
2700#ifdef SUPPORT_TAGS
2701 , tag
2702#endif
2703 );
2704 /*
2705 * Since we have an established nexus that we can't do anything
2706 * with, we must abort it.
2707 */
2708 do_abort(instance);
2709 return;
2710 }
2711
Finn Thaine3f463b2014-11-12 16:12:16 +11002712#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2713 /* engage dma setup for the command we just saw */
2714 {
2715 void *d;
2716 unsigned long count;
2717
2718 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2719 count = tmp->SCp.buffer->length;
2720 d = sg_virt(tmp->SCp.buffer);
2721 } else {
2722 count = tmp->SCp.this_residual;
2723 d = tmp->SCp.ptr;
2724 }
2725 /* setup this command for dma if not already */
2726 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != tmp)) {
2727 sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
2728 sun3_dma_setup_done = tmp;
2729 }
2730 }
2731
2732 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2733#endif
2734
Roman Zippelc28bda22007-05-01 22:32:36 +02002735 /* Accept message by clearing ACK */
2736 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2737
Finn Thaine3f463b2014-11-12 16:12:16 +11002738#if defined(SUPPORT_TAGS) && defined(CONFIG_SUN3)
2739 /* If the phase is still MSGIN, the target wants to send some more
2740 * messages. In case it supports tagged queuing, this is probably a
2741 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2742 */
2743 tag = TAG_NONE;
2744 if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
2745 /* Accept previous IDENTIFY message by clearing ACK */
2746 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2747 len = 2;
2748 data = msg + 1;
2749 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2750 msg[1] == SIMPLE_QUEUE_TAG)
2751 tag = msg[2];
2752 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at reselection\n"
2753 HOSTNO, target_mask, lun, tag);
2754 }
2755#endif
2756
Roman Zippelc28bda22007-05-01 22:32:36 +02002757 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002758 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002759 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760}
2761
2762
2763/*
Finn Thain710ddd02014-11-12 16:12:02 +11002764 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 *
2766 * Purpose : abort a command
2767 *
Finn Thain710ddd02014-11-12 16:12:02 +11002768 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Roman Zippelc28bda22007-05-01 22:32:36 +02002769 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 * used.
2771 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002772 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002774 * XXX - there is no way to abort the command that is currently
2775 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 * a problem, we could implement longjmp() / setjmp(), setjmp()
Roman Zippelc28bda22007-05-01 22:32:36 +02002777 * called where the loop started in NCR5380_main().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 */
2779
2780static
Finn Thain710ddd02014-11-12 16:12:02 +11002781int NCR5380_abort(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Roman Zippelc28bda22007-05-01 22:32:36 +02002783 struct Scsi_Host *instance = cmd->device->host;
2784 SETUP_HOSTDATA(instance);
Finn Thain710ddd02014-11-12 16:12:02 +11002785 struct scsi_cmnd *tmp, **prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02002786 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002788 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Roman Zippelc28bda22007-05-01 22:32:36 +02002790 NCR5380_print_status(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Roman Zippelc28bda22007-05-01 22:32:36 +02002792 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Finn Thaind65e6342014-03-18 11:42:20 +11002794 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002795 NCR5380_read(BUS_AND_STATUS_REG),
2796 NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798#if 1
Roman Zippelc28bda22007-05-01 22:32:36 +02002799 /*
2800 * Case 1 : If the command is the currently executing command,
2801 * we'll set the aborted flag and return control so that
2802 * information transfer routine can exit cleanly.
2803 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Roman Zippelc28bda22007-05-01 22:32:36 +02002805 if (hostdata->connected == cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Finn Thaind65e6342014-03-18 11:42:20 +11002807 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002808 /*
2809 * We should perform BSY checking, and make sure we haven't slipped
2810 * into BUS FREE.
2811 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Roman Zippelc28bda22007-05-01 22:32:36 +02002813 /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
2814 /*
2815 * Since we can't change phases until we've completed the current
2816 * handshake, we have to source or sink a byte of data if the current
2817 * phase is not MSGOUT.
2818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Roman Zippelc28bda22007-05-01 22:32:36 +02002820 /*
2821 * Return control to the executing NCR drive so we can clear the
2822 * aborted flag and get back into our main loop.
2823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Roman Zippelc28bda22007-05-01 22:32:36 +02002825 if (do_abort(instance) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002826 hostdata->connected = NULL;
2827 cmd->result = DID_ABORT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002829 cmd_free_tag(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002831 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002833 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002834 local_irq_restore(flags);
2835 cmd->scsi_done(cmd);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002836 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002837 } else {
Finn Thaine3c3da62014-11-12 16:12:15 +11002838 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002839 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002840 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002844
2845 /*
2846 * Case 2 : If the command hasn't been issued yet, we simply remove it
2847 * from the issue queue.
2848 */
Finn Thain710ddd02014-11-12 16:12:02 +11002849 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2850 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002851 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2852 if (cmd == tmp) {
2853 REMOVE(5, *prev, tmp, NEXT(tmp));
2854 (*prev) = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002855 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002856 tmp->result = DID_ABORT << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002857 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002858 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002859 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002860 HOSTNO);
2861 /* Tagged queuing note: no tag to free here, hasn't been assigned
2862 * yet... */
2863 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002864 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
2866 }
2867
Roman Zippelc28bda22007-05-01 22:32:36 +02002868 /*
2869 * Case 3 : If any commands are connected, we're going to fail the abort
2870 * and let the high level SCSI driver retry at a later time or
2871 * issue a reset.
2872 *
2873 * Timeouts, and therefore aborted commands, will be highly unlikely
2874 * and handling them cleanly in this situation would make the common
2875 * case of noresets less efficient, and would pollute our code. So,
2876 * we fail.
2877 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Roman Zippelc28bda22007-05-01 22:32:36 +02002879 if (hostdata->connected) {
2880 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002881 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002882 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Roman Zippelc28bda22007-05-01 22:32:36 +02002885 /*
2886 * Case 4: If the command is currently disconnected from the bus, and
2887 * there are no connected commands, we reconnect the I_T_L or
2888 * I_T_L_Q nexus associated with it, go into message out, and send
2889 * an abort message.
2890 *
2891 * This case is especially ugly. In order to reestablish the nexus, we
2892 * need to call NCR5380_select(). The easiest way to implement this
2893 * function was to abort if the bus was busy, and let the interrupt
2894 * handler triggered on the SEL for reselect take care of lost arbitrations
2895 * where necessary, meaning interrupts need to be enabled.
2896 *
2897 * When interrupts are enabled, the queues may change - so we
2898 * can't remove it from the disconnected queue before selecting it
2899 * because that could cause a failure in hashing the nexus if that
2900 * device reselected.
2901 *
2902 * Since the queues may change, we can't use the pointers from when we
2903 * first locate it.
2904 *
2905 * So, we must first locate the command, and if NCR5380_select()
2906 * succeeds, then issue the abort, relocate the command and remove
2907 * it from the disconnected queue.
2908 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Finn Thain710ddd02014-11-12 16:12:02 +11002910 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002911 tmp = NEXT(tmp)) {
2912 if (cmd == tmp) {
2913 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002914 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002915
Finn Thain76f13b92014-11-12 16:11:53 +11002916 if (NCR5380_select(instance, cmd))
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002917 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002918
Finn Thaind65e6342014-03-18 11:42:20 +11002919 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002920
2921 do_abort(instance);
2922
2923 local_irq_save(flags);
Finn Thain710ddd02014-11-12 16:12:02 +11002924 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2925 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002926 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2927 if (cmd == tmp) {
2928 REMOVE(5, *prev, tmp, NEXT(tmp));
2929 *prev = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002930 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002931 tmp->result = DID_ABORT << 16;
2932 /* We must unlock the tag/LUN immediately here, since the
2933 * target goes to BUS FREE and doesn't send us another
2934 * message (COMMAND_COMPLETE or the like)
2935 */
2936#ifdef SUPPORT_TAGS
2937 cmd_free_tag(tmp);
2938#else
2939 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2940#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002941 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002942 local_irq_restore(flags);
2943 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002944 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002945 }
2946 }
2947 }
2948 }
2949
Finn Thaine3c3da62014-11-12 16:12:15 +11002950 /* Maybe it is sufficient just to release the ST-DMA lock... (if
2951 * possible at all) At least, we should check if the lock could be
2952 * released after the abort, in case it is kept due to some bug.
2953 */
2954 maybe_release_dma_irq(instance);
2955 local_irq_restore(flags);
2956
Roman Zippelc28bda22007-05-01 22:32:36 +02002957 /*
2958 * Case 5 : If we reached this point, the command was not found in any of
2959 * the queues.
2960 *
2961 * We probably reached this point because of an unlikely race condition
2962 * between the command completing successfully and the abortion code,
2963 * so we won't panic, but we will notify the user in case something really
2964 * broke.
2965 */
2966
Joe Perchesad361c92009-07-06 13:05:40 -07002967 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002968
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002969 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970}
2971
2972
Finn Thain3be1b3e2016-01-03 16:05:12 +11002973/**
2974 * NCR5380_bus_reset - reset the SCSI bus
2975 * @cmd: SCSI command undergoing EH
Roman Zippelc28bda22007-05-01 22:32:36 +02002976 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002977 * Returns SUCCESS
Roman Zippelc28bda22007-05-01 22:32:36 +02002978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Finn Thain710ddd02014-11-12 16:12:02 +11002980static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Finn Thaine3c3da62014-11-12 16:12:15 +11002982 struct Scsi_Host *instance = cmd->device->host;
2983 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002984 int i;
2985 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Finn Thain3be1b3e2016-01-03 16:05:12 +11002987 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Finn Thain3be1b3e2016-01-03 16:05:12 +11002989#if (NDEBUG & NDEBUG_ANY)
2990 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
2991 NCR5380_print_status(instance);
2992#endif
2993
2994 do_reset(instance);
2995
Roman Zippelc28bda22007-05-01 22:32:36 +02002996 /* reset NCR registers */
Roman Zippelc28bda22007-05-01 22:32:36 +02002997 NCR5380_write(MODE_REG, MR_BASE);
2998 NCR5380_write(TARGET_COMMAND_REG, 0);
2999 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Roman Zippelc28bda22007-05-01 22:32:36 +02003001 /* After the reset, there are no more connected or disconnected commands
3002 * and no busy units; so clear the low-level status here to avoid
3003 * conflicts when the mid-level code tries to wake up the affected
3004 * commands!
3005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Roman Zippelc28bda22007-05-01 22:32:36 +02003007 if (hostdata->issue_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003008 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003009 if (hostdata->connected)
Finn Thaind65e6342014-03-18 11:42:20 +11003010 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted a connected command\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003011 if (hostdata->disconnected_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003012 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Roman Zippelc28bda22007-05-01 22:32:36 +02003014 hostdata->issue_queue = NULL;
3015 hostdata->connected = NULL;
3016 hostdata->disconnected_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +11003018 free_all_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02003020 for (i = 0; i < 8; ++i)
3021 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02003023 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11003025
3026 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02003027 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
Michael Schmitz2b0f8342014-05-02 20:43:01 +12003029 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030}