blob: bd832fb273bfd935bfd3064577af86c1ca4d179a [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
Finn Thain686f3992016-01-03 16:05:26 +1100129 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * broken devices are the exception rather than the rule and I'd rather
131 * spend my time optimizing for the normal case.
132 *
133 * Architecture :
134 *
135 * At the heart of the design is a coroutine, NCR5380_main,
Finn Thainff50f9e2014-11-12 16:12:18 +1100136 * which is started from a workqueue for each NCR5380 host in the
137 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
138 * removing the commands from the issue queue and calling
139 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 *
141 * Once a nexus is established, the NCR5380_information_transfer()
142 * phase goes through the various phases as instructed by the target.
143 * if the target goes into MSG IN and sends a DISCONNECT message,
144 * the command structure is placed into the per instance disconnected
Finn Thainff50f9e2014-11-12 16:12:18 +1100145 * queue, and NCR5380_main tries to find more work. If the target is
146 * idle for too long, the system will try to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 *
148 * If a command has disconnected, eventually an interrupt will trigger,
149 * calling NCR5380_intr() which will in turn call NCR5380_reselect
150 * to reestablish a nexus. This will run main if necessary.
151 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200152 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * appropriate.
154 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200155 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * structures, being initialized after the command is connected
157 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
158 * Note that in violation of the standard, an implicit SAVE POINTERS operation
159 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
160 */
161
162/*
163 * Using this file :
164 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Roman Zippelc28bda22007-05-01 22:32:36 +0200165 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * and macros and include this file in your driver.
167 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200168 * These macros control options :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Roman Zippelc28bda22007-05-01 22:32:36 +0200170 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100172 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
173 * transceivers.
174 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * LINKED - if defined, linked commands are supported.
176 *
177 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
178 *
179 * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
180 *
181 * These macros MUST be defined :
Roman Zippelc28bda22007-05-01 22:32:36 +0200182 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * NCR5380_read(register) - read from the specified register
184 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200185 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100187 * NCR5380_implementation_fields - additional fields needed for this
188 * specific implementation of the NCR5380
189 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * Either real DMA *or* pseudo DMA may be implemented
Roman Zippelc28bda22007-05-01 22:32:36 +0200191 * REAL functions :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
Roman Zippelc28bda22007-05-01 22:32:36 +0200193 * Note that the DMA setup functions should return the number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * that they were able to program the controller for.
195 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200196 * Also note that generic i386/PC versions of these macros are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * available as NCR5380_i386_dma_write_setup,
198 * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
199 *
200 * NCR5380_dma_write_setup(instance, src, count) - initialize
201 * NCR5380_dma_read_setup(instance, dst, count) - initialize
202 * NCR5380_dma_residual(instance); - residual count
203 *
204 * PSEUDO functions :
205 * NCR5380_pwrite(instance, src, count)
206 * NCR5380_pread(instance, dst, count);
207 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * The generic driver is initialized by calling NCR5380_init(instance),
Roman Zippelc28bda22007-05-01 22:32:36 +0200209 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
Finn Thain8c325132014-11-12 16:11:58 +1100211 * possible) function may be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/* Macros ease life... :-) */
215#define SETUP_HOSTDATA(in) \
216 struct NCR5380_hostdata *hostdata = \
217 (struct NCR5380_hostdata *)(in)->hostdata
218#define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)
219
Finn Thain710ddd02014-11-12 16:12:02 +1100220#define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
Roman Zippel3130d902007-05-01 22:32:37 +0200221#define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next))
Finn Thain710ddd02014-11-12 16:12:02 +1100222#define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224#define HOSTNO instance->host_no
225#define H_NO(cmd) (cmd)->device->host->host_no
226
Finn Thain636b1ec2016-01-03 16:05:10 +1100227static int do_abort(struct Scsi_Host *);
228static void do_reset(struct Scsi_Host *);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#ifdef SUPPORT_TAGS
231
232/*
233 * Functions for handling tagged queuing
234 * =====================================
235 *
236 * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
237 *
238 * Using consecutive numbers for the tags is no good idea in my eyes. There
239 * could be wrong re-usings if the counter (8 bit!) wraps and some early
240 * command has been preempted for a long time. My solution: a bitfield for
241 * remembering used tags.
242 *
243 * There's also the problem that each target has a certain queue size, but we
244 * cannot know it in advance :-( We just see a QUEUE_FULL status being
245 * returned. So, in this case, the driver internal queue size assumption is
246 * reduced to the number of active tags if QUEUE_FULL is returned by the
247 * target. The command is returned to the mid-level, but with status changed
248 * to BUSY, since --as I've seen-- the mid-level can't handle QUEUE_FULL
249 * correctly.
250 *
251 * We're also not allowed running tagged commands as long as an untagged
252 * command is active. And REQUEST SENSE commands after a contingent allegiance
253 * condition _must_ be untagged. To keep track whether an untagged command has
254 * been issued, the host->busy array is still employed, as it is without
255 * support for tagged queuing.
256 *
257 * One could suspect that there are possible race conditions between
258 * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
259 * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
260 * which already guaranteed to be running at most once. It is also the only
261 * place where tags/LUNs are allocated. So no other allocation can slip
262 * between that pair, there could only happen a reselection, which can free a
263 * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
264 * important: the tag bit must be cleared before 'nr_allocated' is decreased.
265 */
266
Finn Thainca513fc2014-11-12 16:12:19 +1100267static void __init init_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Roman Zippelc28bda22007-05-01 22:32:36 +0200269 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100270 struct tag_alloc *ta;
Roman Zippelc28bda22007-05-01 22:32:36 +0200271
Finn Thainca513fc2014-11-12 16:12:19 +1100272 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200273 return;
274
275 for (target = 0; target < 8; ++target) {
276 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100277 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200278 bitmap_zero(ta->allocated, MAX_TAGS);
279 ta->nr_allocated = 0;
280 /* At the beginning, assume the maximum queue size we could
281 * support (MAX_TAGS). This value will be decreased if the target
282 * returns QUEUE_FULL status.
283 */
284 ta->queue_size = MAX_TAGS;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289
290/* Check if we can issue a command to this LUN: First see if the LUN is marked
291 * busy by an untagged command. If the command should use tagged queuing, also
292 * check that there is a free tag and the target's queue won't overflow. This
293 * function should be called with interrupts disabled to avoid race
294 * conditions.
Roman Zippelc28bda22007-05-01 22:32:36 +0200295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Finn Thain710ddd02014-11-12 16:12:02 +1100297static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200299 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200300 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200302 if (hostdata->busy[cmd->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200303 return 1;
304 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100305 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
306 !cmd->device->tagged_supported)
Roman Zippelc28bda22007-05-01 22:32:36 +0200307 return 0;
Finn Thain61d739a2014-11-12 16:12:20 +1100308 if (hostdata->TagAlloc[scmd_id(cmd)][lun].nr_allocated >=
309 hostdata->TagAlloc[scmd_id(cmd)][lun].queue_size) {
Finn Thaind65e6342014-03-18 11:42:20 +1100310 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d: no free tags\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200311 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200312 return 1;
313 }
314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317
318/* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
319 * must be called before!), or reserve the LUN in 'busy' if the command is
320 * untagged.
321 */
322
Finn Thain710ddd02014-11-12 16:12:02 +1100323static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200325 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200326 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Roman Zippelc28bda22007-05-01 22:32:36 +0200328 /* If we or the target don't support tagged queuing, allocate the LUN for
329 * an untagged command.
330 */
331 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100332 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
333 !cmd->device->tagged_supported) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200334 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200335 hostdata->busy[cmd->device->id] |= (1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100336 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d now allocated by untagged "
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200337 "command\n", H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200338 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100339 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Roman Zippelc28bda22007-05-01 22:32:36 +0200341 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
342 set_bit(cmd->tag, ta->allocated);
343 ta->nr_allocated++;
Finn Thaind65e6342014-03-18 11:42:20 +1100344 dprintk(NDEBUG_TAGS, "scsi%d: using tag %d for target %d lun %d "
Roman Zippelc28bda22007-05-01 22:32:36 +0200345 "(now %d tags in use)\n",
346 H_NO(cmd), cmd->tag, cmd->device->id,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200347 lun, ta->nr_allocated);
Roman Zippelc28bda22007-05-01 22:32:36 +0200348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351
352/* Mark the tag of command 'cmd' as free, or in case of an untagged command,
353 * unlock the LUN.
354 */
355
Finn Thain710ddd02014-11-12 16:12:02 +1100356static void cmd_free_tag(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200358 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200359 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Roman Zippelc28bda22007-05-01 22:32:36 +0200361 if (cmd->tag == TAG_NONE) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200362 hostdata->busy[cmd->device->id] &= ~(1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100363 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d untagged cmd finished\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200364 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200365 } else if (cmd->tag >= MAX_TAGS) {
366 printk(KERN_NOTICE "scsi%d: trying to free bad tag %d!\n",
367 H_NO(cmd), cmd->tag);
368 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100369 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200370 clear_bit(cmd->tag, ta->allocated);
371 ta->nr_allocated--;
Finn Thaind65e6342014-03-18 11:42:20 +1100372 dprintk(NDEBUG_TAGS, "scsi%d: freed tag %d for target %d lun %d\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200373 H_NO(cmd), cmd->tag, cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377
Finn Thainca513fc2014-11-12 16:12:19 +1100378static void free_all_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Roman Zippelc28bda22007-05-01 22:32:36 +0200380 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100381 struct tag_alloc *ta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Finn Thainca513fc2014-11-12 16:12:19 +1100383 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200384 return;
385
386 for (target = 0; target < 8; ++target) {
387 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100388 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200389 bitmap_zero(ta->allocated, MAX_TAGS);
390 ta->nr_allocated = 0;
391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395#endif /* SUPPORT_TAGS */
396
397
398/*
Finn Thain710ddd02014-11-12 16:12:02 +1100399 * Function: void merge_contiguous_buffers( struct scsi_cmnd *cmd )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 *
401 * Purpose: Try to merge several scatter-gather requests into one DMA
402 * transfer. This is possible if the scatter buffers lie on
403 * physical contiguous addresses.
404 *
Finn Thain710ddd02014-11-12 16:12:02 +1100405 * Parameters: struct scsi_cmnd *cmd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * The command to work on. The first scatter buffer's data are
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300407 * assumed to be already transferred into ptr/this_residual.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
409
Finn Thain710ddd02014-11-12 16:12:02 +1100410static void merge_contiguous_buffers(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Finn Thaine3f463b2014-11-12 16:12:16 +1100412#if !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +0200413 unsigned long endaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200415 unsigned long oldlen = cmd->SCp.this_residual;
416 int cnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
418
Roman Zippelc28bda22007-05-01 22:32:36 +0200419 for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
420 cmd->SCp.buffers_residual &&
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200421 virt_to_phys(sg_virt(&cmd->SCp.buffer[1])) == endaddr;) {
Finn Thaind65e6342014-03-18 11:42:20 +1100422 dprintk(NDEBUG_MERGING, "VTOP(%p) == %08lx -> merging\n",
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200423 page_address(sg_page(&cmd->SCp.buffer[1])), endaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200425 ++cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200427 ++cmd->SCp.buffer;
428 --cmd->SCp.buffers_residual;
429 cmd->SCp.this_residual += cmd->SCp.buffer->length;
430 endaddr += cmd->SCp.buffer->length;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200433 if (oldlen != cmd->SCp.this_residual)
Finn Thaind65e6342014-03-18 11:42:20 +1100434 dprintk(NDEBUG_MERGING, "merged %d buffers from %p, new length %08x\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200435 cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#endif
Finn Thaine3f463b2014-11-12 16:12:16 +1100437#endif /* !defined(CONFIG_SUN3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Finn Thainff50f9e2014-11-12 16:12:18 +1100440/**
441 * initialize_SCp - init the scsi pointer field
442 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100444 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
446
Finn Thain710ddd02014-11-12 16:12:02 +1100447static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Roman Zippelc28bda22007-05-01 22:32:36 +0200449 /*
450 * Initialize the Scsi Pointer field so that all of the commands in the
451 * various queues are valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200453
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200454 if (scsi_bufflen(cmd)) {
455 cmd->SCp.buffer = scsi_sglist(cmd);
456 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200457 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +0200458 cmd->SCp.this_residual = cmd->SCp.buffer->length;
459 /* ++roman: Try to merge some scatter-buffers if they are at
460 * contiguous physical addresses.
461 */
462 merge_contiguous_buffers(cmd);
463 } else {
464 cmd->SCp.buffer = NULL;
465 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200466 cmd->SCp.ptr = NULL;
467 cmd->SCp.this_residual = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Finn Thain636b1ec2016-01-03 16:05:10 +1100471/**
Finn Thain2f854b82016-01-03 16:05:22 +1100472 * NCR5380_poll_politely - wait for chip register value
Finn Thain636b1ec2016-01-03 16:05:10 +1100473 * @instance: controller to poll
474 * @reg: 5380 register to poll
475 * @bit: Bitmask to check
476 * @val: Value required to exit
Finn Thain2f854b82016-01-03 16:05:22 +1100477 * @wait: Time-out in jiffies
Finn Thain636b1ec2016-01-03 16:05:10 +1100478 *
Finn Thain2f854b82016-01-03 16:05:22 +1100479 * Polls the chip in a reasonably efficient manner waiting for an
480 * event to occur. After a short quick poll we begin to yield the CPU
481 * (if possible). In irq contexts the time-out is arbitrarily limited.
482 * Callers may hold locks as long as they are held in irq mode.
Finn Thain636b1ec2016-01-03 16:05:10 +1100483 *
Finn Thain2f854b82016-01-03 16:05:22 +1100484 * Returns 0 if event occurred otherwise -ETIMEDOUT.
Finn Thain636b1ec2016-01-03 16:05:10 +1100485 */
486
487static int NCR5380_poll_politely(struct Scsi_Host *instance,
Finn Thain2f854b82016-01-03 16:05:22 +1100488 int reg, int bit, int val, int wait)
Finn Thain636b1ec2016-01-03 16:05:10 +1100489{
Finn Thain2f854b82016-01-03 16:05:22 +1100490 struct NCR5380_hostdata *hostdata = shost_priv(instance);
491 unsigned long deadline = jiffies + wait;
492 unsigned long n;
Finn Thain636b1ec2016-01-03 16:05:10 +1100493
Finn Thain2f854b82016-01-03 16:05:22 +1100494 /* Busy-wait for up to 10 ms */
495 n = min(10000U, jiffies_to_usecs(wait));
496 n *= hostdata->accesses_per_ms;
497 n /= 1000;
498 do {
499 if ((NCR5380_read(reg) & bit) == val)
Finn Thain636b1ec2016-01-03 16:05:10 +1100500 return 0;
501 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100502 } while (n--);
503
504 if (irqs_disabled() || in_interrupt())
505 return -ETIMEDOUT;
506
507 /* Repeatedly sleep for 1 ms until deadline */
508 while (time_is_after_jiffies(deadline)) {
509 schedule_timeout_uninterruptible(1);
510 if ((NCR5380_read(reg) & bit) == val)
511 return 0;
Finn Thain636b1ec2016-01-03 16:05:10 +1100512 }
513
Finn Thain636b1ec2016-01-03 16:05:10 +1100514 return -ETIMEDOUT;
515}
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#include <linux/delay.h>
518
519#if NDEBUG
520static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200521 unsigned char mask;
522 const char *name;
523} signals[] = {
524 { SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" },
525 { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD, "CD" }, { SR_IO, "IO" },
526 { SR_SEL, "SEL" }, {0, NULL}
527}, basrs[] = {
528 {BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}
529}, icrs[] = {
530 {ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
531 {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"},
532 {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"},
533 {0, NULL}
534}, mrs[] = {
535 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"},
536 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR,
537 "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
538 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
539 {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"},
540 {0, NULL}
541};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Finn Thainff50f9e2014-11-12 16:12:18 +1100543/**
544 * NCR5380_print - print scsi bus signals
545 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100547 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
549
Roman Zippelc28bda22007-05-01 22:32:36 +0200550static void NCR5380_print(struct Scsi_Host *instance)
551{
552 unsigned char status, data, basr, mr, icr, i;
553 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Roman Zippelc28bda22007-05-01 22:32:36 +0200555 local_irq_save(flags);
556 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
557 status = NCR5380_read(STATUS_REG);
558 mr = NCR5380_read(MODE_REG);
559 icr = NCR5380_read(INITIATOR_COMMAND_REG);
560 basr = NCR5380_read(BUS_AND_STATUS_REG);
561 local_irq_restore(flags);
562 printk("STATUS_REG: %02x ", status);
563 for (i = 0; signals[i].mask; ++i)
564 if (status & signals[i].mask)
565 printk(",%s", signals[i].name);
566 printk("\nBASR: %02x ", basr);
567 for (i = 0; basrs[i].mask; ++i)
568 if (basr & basrs[i].mask)
569 printk(",%s", basrs[i].name);
570 printk("\nICR: %02x ", icr);
571 for (i = 0; icrs[i].mask; ++i)
572 if (icr & icrs[i].mask)
573 printk(",%s", icrs[i].name);
574 printk("\nMODE: %02x ", mr);
575 for (i = 0; mrs[i].mask; ++i)
576 if (mr & mrs[i].mask)
577 printk(",%s", mrs[i].name);
578 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
581static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200582 unsigned char value;
583 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584} phases[] = {
Roman Zippelc28bda22007-05-01 22:32:36 +0200585 {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
586 {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
587 {PHASE_UNKNOWN, "UNKNOWN"}
588};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Finn Thainff50f9e2014-11-12 16:12:18 +1100590/**
591 * NCR5380_print_phase - show SCSI phase
592 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100594 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100596 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 */
598
599static void NCR5380_print_phase(struct Scsi_Host *instance)
600{
Roman Zippelc28bda22007-05-01 22:32:36 +0200601 unsigned char status;
602 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Roman Zippelc28bda22007-05-01 22:32:36 +0200604 status = NCR5380_read(STATUS_REG);
605 if (!(status & SR_REQ))
606 printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
607 else {
608 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
609 (phases[i].value != (status & PHASE_MASK)); ++i)
610 ;
611 printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#endif
616
617/*
618 * ++roman: New scheme of calling NCR5380_main()
Roman Zippelc28bda22007-05-01 22:32:36 +0200619 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 * If we're not in an interrupt, we can call our main directly, it cannot be
621 * already running. Else, we queue it on a task queue, if not 'main_running'
622 * tells us that a lower level is already executing it. This way,
623 * 'main_running' needs not be protected in a special way.
624 *
625 * queue_main() is a utility function for putting our main onto the task
626 * queue, if main_running is false. It should be called only from a
627 * interrupt or bottom half.
628 */
629
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900630#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631#include <linux/workqueue.h>
632#include <linux/interrupt.h>
633
Finn Thaina53a21e2014-11-12 16:12:21 +1100634static inline void queue_main(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Finn Thaina53a21e2014-11-12 16:12:21 +1100636 if (!hostdata->main_running) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200637 /* If in interrupt and NCR5380_main() not already running,
638 queue it on the 'immediate' task queue, to be processed
639 immediately after the current interrupt processing has
640 finished. */
Finn Thain0ad0eff2016-01-03 16:05:21 +1100641 queue_work(hostdata->work_q, &hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +0200642 }
643 /* else: nothing to do: the running NCR5380_main() will pick up
644 any newly queued command. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Finn Thain8c325132014-11-12 16:11:58 +1100647/**
648 * NCR58380_info - report driver and host information
649 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 *
Finn Thain8c325132014-11-12 16:11:58 +1100651 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 *
Finn Thain8c325132014-11-12 16:11:58 +1100653 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655
Finn Thain8c325132014-11-12 16:11:58 +1100656static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Finn Thain8c325132014-11-12 16:11:58 +1100658 struct NCR5380_hostdata *hostdata = shost_priv(instance);
659
660 return hostdata->info;
661}
662
663static void prepare_info(struct Scsi_Host *instance)
664{
665 struct NCR5380_hostdata *hostdata = shost_priv(instance);
666
667 snprintf(hostdata->info, sizeof(hostdata->info),
668 "%s, io_port 0x%lx, n_io_port %d, "
669 "base 0x%lx, irq %d, "
670 "can_queue %d, cmd_per_lun %d, "
671 "sg_tablesize %d, this_id %d, "
Finn Thain9c3f0e22016-01-03 16:05:11 +1100672 "flags { %s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100673 "options { %s} ",
674 instance->hostt->name, instance->io_port, instance->n_io_port,
675 instance->base, instance->irq,
676 instance->can_queue, instance->cmd_per_lun,
677 instance->sg_tablesize, instance->this_id,
Finn Thainca513fc2014-11-12 16:12:19 +1100678 hostdata->flags & FLAG_TAGGED_QUEUING ? "TAGGED_QUEUING " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100679 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100680#ifdef DIFFERENTIAL
681 "DIFFERENTIAL "
682#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100684 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#endif
686#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100687 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif
689#ifdef SUPPORT_TAGS
Finn Thain8c325132014-11-12 16:11:58 +1100690 "SUPPORT_TAGS "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#endif
Finn Thain8c325132014-11-12 16:11:58 +1100692 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Finn Thainff50f9e2014-11-12 16:12:18 +1100695/**
696 * NCR5380_print_status - dump controller info
697 * @instance: controller to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100699 * Print commands in the various queues, called from NCR5380_abort
700 * to aid debugging.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 */
702
Finn Thain710ddd02014-11-12 16:12:02 +1100703static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd)
Al Virod89537e2013-03-31 13:24:44 -0400704{
705 int i, s;
706 unsigned char *command;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200707 printk("scsi%d: destination target %d, lun %llu\n",
Al Virod89537e2013-03-31 13:24:44 -0400708 H_NO(cmd), cmd->device->id, cmd->device->lun);
709 printk(KERN_CONT " command = ");
710 command = cmd->cmnd;
711 printk(KERN_CONT "%2d (0x%02x)", command[0], command[0]);
712 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
713 printk(KERN_CONT " %02x", command[i]);
714 printk("\n");
715}
716
Finn Thain3be1b3e2016-01-03 16:05:12 +1100717static void __maybe_unused NCR5380_print_status(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Al Virod89537e2013-03-31 13:24:44 -0400719 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100720 struct scsi_cmnd *ptr;
Al Virod89537e2013-03-31 13:24:44 -0400721 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Finn Thain8ad3a592014-03-18 11:42:19 +1100723 NCR5380_dprint(NDEBUG_ANY, instance);
724 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Roman Zippelc28bda22007-05-01 22:32:36 +0200726 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Roman Zippelc28bda22007-05-01 22:32:36 +0200728 local_irq_save(flags);
Al Virod89537e2013-03-31 13:24:44 -0400729 printk("NCR5380: coroutine is%s running.\n",
Finn Thaina53a21e2014-11-12 16:12:21 +1100730 hostdata->main_running ? "" : "n't");
Roman Zippelc28bda22007-05-01 22:32:36 +0200731 if (!hostdata->connected)
Al Virod89537e2013-03-31 13:24:44 -0400732 printk("scsi%d: no currently connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +0200733 else
Finn Thain710ddd02014-11-12 16:12:02 +1100734 lprint_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected);
Al Virod89537e2013-03-31 13:24:44 -0400735 printk("scsi%d: issue_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100736 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr))
Al Virod89537e2013-03-31 13:24:44 -0400737 lprint_Scsi_Cmnd(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Al Virod89537e2013-03-31 13:24:44 -0400739 printk("scsi%d: disconnected_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100740 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr;
Al Virod89537e2013-03-31 13:24:44 -0400741 ptr = NEXT(ptr))
742 lprint_Scsi_Cmnd(ptr);
Roman Zippelc28bda22007-05-01 22:32:36 +0200743
744 local_irq_restore(flags);
Al Virod89537e2013-03-31 13:24:44 -0400745 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Finn Thain710ddd02014-11-12 16:12:02 +1100748static void show_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Roman Zippelc28bda22007-05-01 22:32:36 +0200750 int i, s;
751 unsigned char *command;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200752 seq_printf(m, "scsi%d: destination target %d, lun %llu\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200753 H_NO(cmd), cmd->device->id, cmd->device->lun);
Rasmus Villemoes91c40f22014-12-03 00:10:52 +0100754 seq_puts(m, " command = ");
Roman Zippelc28bda22007-05-01 22:32:36 +0200755 command = cmd->cmnd;
Al Virod89537e2013-03-31 13:24:44 -0400756 seq_printf(m, "%2d (0x%02x)", command[0], command[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +0200757 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
Al Virod89537e2013-03-31 13:24:44 -0400758 seq_printf(m, " %02x", command[i]);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +0100759 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Finn Thain4d3d2a52014-11-12 16:11:52 +1100762static int __maybe_unused NCR5380_show_info(struct seq_file *m,
763 struct Scsi_Host *instance)
Al Virod89537e2013-03-31 13:24:44 -0400764{
765 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100766 struct scsi_cmnd *ptr;
Al Virod89537e2013-03-31 13:24:44 -0400767 unsigned long flags;
768
769 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
770
Al Virod89537e2013-03-31 13:24:44 -0400771 local_irq_save(flags);
772 seq_printf(m, "NCR5380: coroutine is%s running.\n",
Finn Thaina53a21e2014-11-12 16:12:21 +1100773 hostdata->main_running ? "" : "n't");
Al Virod89537e2013-03-31 13:24:44 -0400774 if (!hostdata->connected)
775 seq_printf(m, "scsi%d: no currently connected command\n", HOSTNO);
776 else
Finn Thain710ddd02014-11-12 16:12:02 +1100777 show_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected, m);
Al Virod89537e2013-03-31 13:24:44 -0400778 seq_printf(m, "scsi%d: issue_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100779 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr))
Al Virod89537e2013-03-31 13:24:44 -0400780 show_Scsi_Cmnd(ptr, m);
781
782 seq_printf(m, "scsi%d: disconnected_queue\n", HOSTNO);
Finn Thain710ddd02014-11-12 16:12:02 +1100783 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr;
Al Virod89537e2013-03-31 13:24:44 -0400784 ptr = NEXT(ptr))
785 show_Scsi_Cmnd(ptr, m);
786
787 local_irq_restore(flags);
788 return 0;
789}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Finn Thainff50f9e2014-11-12 16:12:18 +1100791/**
792 * NCR5380_init - initialise an NCR5380
793 * @instance: adapter to configure
794 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100796 * Initializes *instance and corresponding 5380 chip,
797 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 *
799 * Notes : I assume that the host, hostno, and id bits have been
Finn Thainff50f9e2014-11-12 16:12:18 +1100800 * set correctly. I don't care about the irq and other fields.
Roman Zippelc28bda22007-05-01 22:32:36 +0200801 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100802 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
804
Michael Schmitz95fde7a2009-01-18 03:22:15 +0100805static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Roman Zippelc28bda22007-05-01 22:32:36 +0200807 int i;
808 SETUP_HOSTDATA(instance);
Finn Thain2f854b82016-01-03 16:05:22 +1100809 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Finn Thaina53a21e2014-11-12 16:12:21 +1100811 hostdata->host = instance;
Roman Zippelc28bda22007-05-01 22:32:36 +0200812 hostdata->id_mask = 1 << instance->this_id;
813 hostdata->id_higher_mask = 0;
814 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
815 if (i > hostdata->id_mask)
816 hostdata->id_higher_mask |= i;
817 for (i = 0; i < 8; ++i)
818 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +1100820 init_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821#endif
822#if defined (REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +0200823 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200825 hostdata->connected = NULL;
826 hostdata->issue_queue = NULL;
827 hostdata->disconnected_queue = NULL;
Finn Thainef1081c2014-11-12 16:12:14 +1100828 hostdata->flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Finn Thaina53a21e2014-11-12 16:12:21 +1100830 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100831 hostdata->work_q = alloc_workqueue("ncr5380_%d",
832 WQ_UNBOUND | WQ_MEM_RECLAIM,
833 1, instance->host_no);
834 if (!hostdata->work_q)
835 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Finn Thain8c325132014-11-12 16:11:58 +1100837 prepare_info(instance);
838
Roman Zippelc28bda22007-05-01 22:32:36 +0200839 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
840 NCR5380_write(MODE_REG, MR_BASE);
841 NCR5380_write(TARGET_COMMAND_REG, 0);
842 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Finn Thain2f854b82016-01-03 16:05:22 +1100844 /* Calibrate register polling loop */
845 i = 0;
846 deadline = jiffies + 1;
847 do {
848 cpu_relax();
849 } while (time_is_after_jiffies(deadline));
850 deadline += msecs_to_jiffies(256);
851 do {
852 NCR5380_read(STATUS_REG);
853 ++i;
854 cpu_relax();
855 } while (time_is_after_jiffies(deadline));
856 hostdata->accesses_per_ms = i / 256;
857
Roman Zippelc28bda22007-05-01 22:32:36 +0200858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Finn Thainff50f9e2014-11-12 16:12:18 +1100861/**
Finn Thain636b1ec2016-01-03 16:05:10 +1100862 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
863 * @instance: adapter to check
864 *
865 * If the system crashed, it may have crashed with a connected target and
866 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
867 * currently established nexus, which we know nothing about. Failing that
868 * do a bus reset.
869 *
870 * Note that a bus reset will cause the chip to assert IRQ.
871 *
872 * Returns 0 if successful, otherwise -ENXIO.
873 */
874
875static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
876{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100877 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain636b1ec2016-01-03 16:05:10 +1100878 int pass;
879
880 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
881 switch (pass) {
882 case 1:
883 case 3:
884 case 5:
885 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
886 NCR5380_poll_politely(instance,
887 STATUS_REG, SR_BSY, 0, 5 * HZ);
888 break;
889 case 2:
890 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
891 do_abort(instance);
892 break;
893 case 4:
894 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
895 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100896 /* Wait after a reset; the SCSI standard calls for
897 * 250ms, we wait 500ms to be on the safe side.
898 * But some Toshiba CD-ROMs need ten times that.
899 */
900 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
901 msleep(2500);
902 else
903 msleep(500);
Finn Thain636b1ec2016-01-03 16:05:10 +1100904 break;
905 case 6:
906 shost_printk(KERN_ERR, instance, "bus locked solid\n");
907 return -ENXIO;
908 }
909 }
910 return 0;
911}
912
913/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100914 * NCR5380_exit - remove an NCR5380
915 * @instance: adapter to remove
916 *
917 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
918 */
919
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200920static void NCR5380_exit(struct Scsi_Host *instance)
921{
Finn Thaina53a21e2014-11-12 16:12:21 +1100922 struct NCR5380_hostdata *hostdata = shost_priv(instance);
923
924 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100925 destroy_workqueue(hostdata->work_q);
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200926}
927
Finn Thainff50f9e2014-11-12 16:12:18 +1100928/**
929 * NCR5380_queue_command - queue a command
930 * @instance: the relevant SCSI adapter
931 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 *
Finn Thain1bb40582016-01-03 16:05:29 +1100933 * cmd is added to the per-instance issue queue, with minor
Finn Thainff50f9e2014-11-12 16:12:18 +1100934 * twiddling done to the host specific fields of cmd. If the
935 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
937
Finn Thain16b29e72014-11-12 16:12:08 +1100938static int NCR5380_queue_command(struct Scsi_Host *instance,
939 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Finn Thain16b29e72014-11-12 16:12:08 +1100941 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain710ddd02014-11-12 16:12:02 +1100942 struct scsi_cmnd *tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +0200943 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945#if (NDEBUG & NDEBUG_NO_WRITE)
Roman Zippelc28bda22007-05-01 22:32:36 +0200946 switch (cmd->cmnd[0]) {
947 case WRITE_6:
948 case WRITE_10:
949 printk(KERN_NOTICE "scsi%d: WRITE attempted with NO_WRITE debugging flag set\n",
950 H_NO(cmd));
951 cmd->result = (DID_ERROR << 16);
Finn Thain16b29e72014-11-12 16:12:08 +1100952 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200953 return 0;
954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
956
Roman Zippelc28bda22007-05-01 22:32:36 +0200957 /*
958 * We use the host_scribble field as a pointer to the next command
959 * in a queue
960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Roman Zippel3130d902007-05-01 22:32:37 +0200962 SET_NEXT(cmd, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +0200963 cmd->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Roman Zippelc28bda22007-05-01 22:32:36 +0200965 /*
966 * Insert the cmd into the issue queue. Note that REQUEST SENSE
967 * commands are added to the head of the queue since any command will
968 * clear the contingent allegiance condition that exists and the
969 * sense data is only guaranteed to be valid while the condition exists.
970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Roman Zippelc28bda22007-05-01 22:32:36 +0200972 /* ++guenther: now that the issue queue is being set up, we can lock ST-DMA.
973 * Otherwise a running NCR5380_main may steal the lock.
974 * Lock before actually inserting due to fairness reasons explained in
975 * atari_scsi.c. If we insert first, then it's impossible for this driver
976 * to release the lock.
977 * Stop timer for this command while waiting for the lock, or timeouts
978 * may happen (and they really do), and it's no good if the command doesn't
979 * appear in any of the queues.
980 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
981 * because also a timer int can trigger an abort or reset, which would
982 * alter queues and touch the lock.
983 */
Finn Thaine3c3da62014-11-12 16:12:15 +1100984 if (!NCR5380_acquire_dma_irq(instance))
Finn Thain16b29e72014-11-12 16:12:08 +1100985 return SCSI_MLQUEUE_HOST_BUSY;
986
987 local_irq_save(flags);
988
Finn Thainff50f9e2014-11-12 16:12:18 +1100989 /*
990 * Insert the cmd into the issue queue. Note that REQUEST SENSE
991 * commands are added to the head of the queue since any command will
992 * clear the contingent allegiance condition that exists and the
993 * sense data is only guaranteed to be valid while the condition exists.
994 */
995
Roman Zippelc28bda22007-05-01 22:32:36 +0200996 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
997 LIST(cmd, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +0200998 SET_NEXT(cmd, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +0200999 hostdata->issue_queue = cmd;
1000 } else {
Finn Thain710ddd02014-11-12 16:12:02 +11001001 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02001002 NEXT(tmp); tmp = NEXT(tmp))
1003 ;
1004 LIST(cmd, tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02001005 SET_NEXT(tmp, cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001006 }
1007 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Finn Thaind65e6342014-03-18 11:42:20 +11001009 dprintk(NDEBUG_QUEUES, "scsi%d: command added to %s of queue\n", H_NO(cmd),
Roman Zippelc28bda22007-05-01 22:32:36 +02001010 (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Roman Zippelc28bda22007-05-01 22:32:36 +02001012 /* If queue_command() is called from an interrupt (real one or bottom
1013 * half), we let queue_main() do the job of taking care about main. If it
1014 * is already running, this is a no-op, else main will be queued.
1015 *
1016 * If we're not in an interrupt, we can call NCR5380_main()
1017 * unconditionally, because it cannot be already running.
1018 */
Finn Thain16b29e72014-11-12 16:12:08 +11001019 if (in_interrupt() || irqs_disabled())
Finn Thaina53a21e2014-11-12 16:12:21 +11001020 queue_main(hostdata);
Roman Zippelc28bda22007-05-01 22:32:36 +02001021 else
Finn Thaina53a21e2014-11-12 16:12:21 +11001022 NCR5380_main(&hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +02001023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
1025
Finn Thaine3c3da62014-11-12 16:12:15 +11001026static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
1027{
1028 struct NCR5380_hostdata *hostdata = shost_priv(instance);
1029
1030 /* Caller does the locking needed to set & test these data atomically */
1031 if (!hostdata->disconnected_queue &&
1032 !hostdata->issue_queue &&
1033 !hostdata->connected &&
1034 !hostdata->retain_dma_intr)
1035 NCR5380_release_dma_irq(instance);
1036}
1037
Finn Thainff50f9e2014-11-12 16:12:18 +11001038/**
1039 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001041 * NCR5380_main is a coroutine that runs as long as more work can
1042 * be done on the NCR5380 host adapters in a system. Both
1043 * NCR5380_queue_command() and NCR5380_intr() will try to start it
1044 * in case it is not running.
Roman Zippelc28bda22007-05-01 22:32:36 +02001045 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001046 * Locks: called as its own thread with no locks held.
Roman Zippelc28bda22007-05-01 22:32:36 +02001047 */
1048
Geert Uytterhoevenb312b382007-05-01 22:32:48 +02001049static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Finn Thaina53a21e2014-11-12 16:12:21 +11001051 struct NCR5380_hostdata *hostdata =
1052 container_of(work, struct NCR5380_hostdata, main_task);
1053 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +11001054 struct scsi_cmnd *tmp, *prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02001055 int done;
1056 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Roman Zippelc28bda22007-05-01 22:32:36 +02001058 /*
1059 * We run (with interrupts disabled) until we're sure that none of
1060 * the host adapters have anything that can be done, at which point
1061 * we set main_running to 0 and exit.
1062 *
1063 * Interrupts are enabled before doing various other internal
1064 * instructions, after we've decided that we need to run through
1065 * the loop again.
1066 *
1067 * this should prevent any race conditions.
1068 *
1069 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
1070 * because also a timer int can trigger an abort or reset, which can
1071 * alter queues and touch the Falcon lock.
1072 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Roman Zippelc28bda22007-05-01 22:32:36 +02001074 /* Tell int handlers main() is now already executing. Note that
1075 no races are possible here. If an int comes in before
1076 'main_running' is set here, and queues/executes main via the
1077 task queue, it doesn't do any harm, just this instance of main
1078 won't find any work left to do. */
Finn Thaina53a21e2014-11-12 16:12:21 +11001079 if (hostdata->main_running)
Roman Zippelc28bda22007-05-01 22:32:36 +02001080 return;
Finn Thaina53a21e2014-11-12 16:12:21 +11001081 hostdata->main_running = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001082
1083 local_save_flags(flags);
1084 do {
1085 local_irq_disable(); /* Freeze request queues */
1086 done = 1;
1087
1088 if (!hostdata->connected) {
Finn Thaind65e6342014-03-18 11:42:20 +11001089 dprintk(NDEBUG_MAIN, "scsi%d: not connected\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001090 /*
1091 * Search through the issue_queue for a command destined
1092 * for a target that's not busy.
1093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094#if (NDEBUG & NDEBUG_LISTS)
Finn Thain710ddd02014-11-12 16:12:02 +11001095 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02001096 tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
1097 ;
1098 /*printk("%p ", tmp);*/
1099 if ((tmp == prev) && tmp)
1100 printk(" LOOP\n");
1101 /* else printk("\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#endif
Finn Thain710ddd02014-11-12 16:12:02 +11001103 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
Roman Zippelc28bda22007-05-01 22:32:36 +02001104 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001105 u8 lun = tmp->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Finn Thaine3f463b2014-11-12 16:12:16 +11001107 dprintk(NDEBUG_LISTS,
1108 "MAIN tmp=%p target=%d busy=%d lun=%d\n",
1109 tmp, scmd_id(tmp), hostdata->busy[scmd_id(tmp)],
1110 lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02001111 /* When we find one, remove it from the issue queue. */
1112 /* ++guenther: possible race with Falcon locking */
1113 if (
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001115 !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116#else
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001117 !(hostdata->busy[tmp->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +02001118#endif
1119 ) {
1120 /* ++guenther: just to be sure, this must be atomic */
1121 local_irq_disable();
1122 if (prev) {
1123 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02001124 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02001125 } else {
1126 REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
1127 hostdata->issue_queue = NEXT(tmp);
1128 }
Roman Zippel3130d902007-05-01 22:32:37 +02001129 SET_NEXT(tmp, NULL);
Finn Thainef1081c2014-11-12 16:12:14 +11001130 hostdata->retain_dma_intr++;
Roman Zippelc28bda22007-05-01 22:32:36 +02001131
1132 /* reenable interrupts after finding one */
1133 local_irq_restore(flags);
1134
1135 /*
1136 * Attempt to establish an I_T_L nexus here.
1137 * On success, instance->hostdata->connected is set.
1138 * On failure, we must add the command back to the
1139 * issue queue so we can keep trying.
1140 */
Finn Thaind65e6342014-03-18 11:42:20 +11001141 dprintk(NDEBUG_MAIN, "scsi%d: main(): command for target %d "
Roman Zippelc28bda22007-05-01 22:32:36 +02001142 "lun %d removed from issue_queue\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001143 HOSTNO, tmp->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02001144 /*
1145 * REQUEST SENSE commands are issued without tagged
1146 * queueing, even on SCSI-II devices because the
1147 * contingent allegiance condition exists for the
1148 * entire unit.
1149 */
1150 /* ++roman: ...and the standard also requires that
1151 * REQUEST SENSE command are untagged.
1152 */
1153
1154#ifdef SUPPORT_TAGS
1155 cmd_get_tag(tmp, tmp->cmnd[0] != REQUEST_SENSE);
1156#endif
Finn Thain76f13b92014-11-12 16:11:53 +11001157 if (!NCR5380_select(instance, tmp)) {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001158 /* OK or bad target */
Finn Thaine3c3da62014-11-12 16:12:15 +11001159 local_irq_disable();
Finn Thainef1081c2014-11-12 16:12:14 +11001160 hostdata->retain_dma_intr--;
Finn Thaine3c3da62014-11-12 16:12:15 +11001161 maybe_release_dma_irq(instance);
1162 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02001163 } else {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001164 /* Need to retry */
Roman Zippelc28bda22007-05-01 22:32:36 +02001165 local_irq_disable();
1166 LIST(tmp, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02001167 SET_NEXT(tmp, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02001168 hostdata->issue_queue = tmp;
1169#ifdef SUPPORT_TAGS
1170 cmd_free_tag(tmp);
1171#endif
Finn Thainef1081c2014-11-12 16:12:14 +11001172 hostdata->retain_dma_intr--;
Roman Zippelc28bda22007-05-01 22:32:36 +02001173 local_irq_restore(flags);
Finn Thain1d3db592016-01-03 16:05:24 +11001174 done = 0;
Finn Thaind65e6342014-03-18 11:42:20 +11001175 dprintk(NDEBUG_MAIN, "scsi%d: main(): select() failed, "
Roman Zippelc28bda22007-05-01 22:32:36 +02001176 "returned to issue_queue\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001177 }
Finn Thain1f1b0c72016-01-03 16:05:17 +11001178 if (hostdata->connected)
1179 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001180 } /* if target/lun/target queue is not busy */
1181 } /* for issue_queue */
1182 } /* if (!hostdata->connected) */
1183
1184 if (hostdata->connected
1185#ifdef REAL_DMA
1186 && !hostdata->dma_len
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187#endif
1188 ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11001190 dprintk(NDEBUG_MAIN, "scsi%d: main: performing information transfer\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001191 HOSTNO);
1192 NCR5380_information_transfer(instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001193 dprintk(NDEBUG_MAIN, "scsi%d: main: done set false\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001194 done = 0;
1195 }
1196 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Roman Zippelc28bda22007-05-01 22:32:36 +02001198 /* Better allow ints _after_ 'main_running' has been cleared, else
1199 an interrupt could believe we'll pick up the work it left for
1200 us, but we won't see it anymore here... */
Finn Thaina53a21e2014-11-12 16:12:21 +11001201 hostdata->main_running = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001202 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205
1206#ifdef REAL_DMA
1207/*
1208 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
1209 *
1210 * Purpose : Called by interrupt handler when DMA finishes or a phase
Roman Zippelc28bda22007-05-01 22:32:36 +02001211 * mismatch occurs (which would finish the DMA transfer).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *
1213 * Inputs : instance - this instance of the NCR5380.
1214 *
1215 */
1216
Roman Zippelc28bda22007-05-01 22:32:36 +02001217static void NCR5380_dma_complete(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Roman Zippelc28bda22007-05-01 22:32:36 +02001219 SETUP_HOSTDATA(instance);
Finn Thain01bd9082014-11-12 16:12:23 +11001220 int transferred;
Finn Thaine3f463b2014-11-12 16:12:16 +11001221 unsigned char **data;
Roman Zippelc28bda22007-05-01 22:32:36 +02001222 volatile int *count;
Finn Thaine3f463b2014-11-12 16:12:16 +11001223 int saved_data = 0, overrun = 0;
1224 unsigned char p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Roman Zippelc28bda22007-05-01 22:32:36 +02001226 if (!hostdata->connected) {
1227 printk(KERN_WARNING "scsi%d: received end of DMA interrupt with "
1228 "no connected cmd\n", HOSTNO);
1229 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Finn Thainef1081c2014-11-12 16:12:14 +11001232 if (hostdata->read_overruns) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001233 p = hostdata->connected->SCp.phase;
1234 if (p & SR_IO) {
1235 udelay(10);
1236 if ((NCR5380_read(BUS_AND_STATUS_REG) &
1237 (BASR_PHASE_MATCH|BASR_ACK)) ==
1238 (BASR_PHASE_MATCH|BASR_ACK)) {
1239 saved_data = NCR5380_read(INPUT_DATA_REG);
1240 overrun = 1;
Finn Thaind65e6342014-03-18 11:42:20 +11001241 dprintk(NDEBUG_DMA, "scsi%d: read overrun handled\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001242 }
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001245
Finn Thaind65e6342014-03-18 11:42:20 +11001246 dprintk(NDEBUG_DMA, "scsi%d: real DMA transfer complete, basr 0x%X, sr 0x%X\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001247 HOSTNO, NCR5380_read(BUS_AND_STATUS_REG),
1248 NCR5380_read(STATUS_REG));
1249
Finn Thaine3f463b2014-11-12 16:12:16 +11001250#if defined(CONFIG_SUN3)
1251 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
1252 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
1253 instance->host_no);
1254 BUG();
1255 }
1256
1257 /* make sure we're not stuck in a data phase */
1258 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
1259 (BASR_PHASE_MATCH | BASR_ACK)) {
1260 pr_err("scsi%d: BASR %02x\n", instance->host_no,
1261 NCR5380_read(BUS_AND_STATUS_REG));
1262 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
1263 instance->host_no);
1264 BUG();
1265 }
1266#endif
1267
Roman Zippelc28bda22007-05-01 22:32:36 +02001268 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1269 NCR5380_write(MODE_REG, MR_BASE);
1270 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1271
Finn Thain01bd9082014-11-12 16:12:23 +11001272 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001273 hostdata->dma_len = 0;
1274
1275 data = (unsigned char **)&hostdata->connected->SCp.ptr;
1276 count = &hostdata->connected->SCp.this_residual;
Finn Thain01bd9082014-11-12 16:12:23 +11001277 *data += transferred;
1278 *count -= transferred;
Roman Zippelc28bda22007-05-01 22:32:36 +02001279
Finn Thainef1081c2014-11-12 16:12:14 +11001280 if (hostdata->read_overruns) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001281 int cnt, toPIO;
1282
Roman Zippelc28bda22007-05-01 22:32:36 +02001283 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
Finn Thainef1081c2014-11-12 16:12:14 +11001284 cnt = toPIO = hostdata->read_overruns;
Roman Zippelc28bda22007-05-01 22:32:36 +02001285 if (overrun) {
Finn Thaind65e6342014-03-18 11:42:20 +11001286 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001287 *(*data)++ = saved_data;
1288 (*count)--;
1289 cnt--;
1290 toPIO--;
1291 }
Finn Thaind65e6342014-03-18 11:42:20 +11001292 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%08lx\n", cnt, (long)*data);
Roman Zippelc28bda22007-05-01 22:32:36 +02001293 NCR5380_transfer_pio(instance, &p, &cnt, data);
1294 *count -= toPIO - cnt;
1295 }
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298#endif /* REAL_DMA */
1299
1300
Finn Thainff50f9e2014-11-12 16:12:18 +11001301/**
1302 * NCR5380_intr - generic NCR5380 irq handler
1303 * @irq: interrupt number
1304 * @dev_id: device info
Roman Zippelc28bda22007-05-01 22:32:36 +02001305 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001306 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1307 * from the disconnected queue, and restarting NCR5380_main()
1308 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 */
1310
Roman Zippelc28bda22007-05-01 22:32:36 +02001311static irqreturn_t NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Finn Thaina53a21e2014-11-12 16:12:21 +11001313 struct Scsi_Host *instance = dev_id;
Roman Zippelc28bda22007-05-01 22:32:36 +02001314 int done = 1, handled = 0;
1315 unsigned char basr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Finn Thaind65e6342014-03-18 11:42:20 +11001317 dprintk(NDEBUG_INTR, "scsi%d: NCR5380 irq triggered\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Roman Zippelc28bda22007-05-01 22:32:36 +02001319 /* Look for pending interrupts */
1320 basr = NCR5380_read(BUS_AND_STATUS_REG);
Finn Thaind65e6342014-03-18 11:42:20 +11001321 dprintk(NDEBUG_INTR, "scsi%d: BASR=%02x\n", HOSTNO, basr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001322 /* dispatch to appropriate routine if found and done=0 */
1323 if (basr & BASR_IRQ) {
Finn Thain8ad3a592014-03-18 11:42:19 +11001324 NCR5380_dprint(NDEBUG_INTR, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001325 if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
1326 done = 0;
Finn Thaind65e6342014-03-18 11:42:20 +11001327 dprintk(NDEBUG_INTR, "scsi%d: SEL interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001328 NCR5380_reselect(instance);
1329 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1330 } else if (basr & BASR_PARITY_ERROR) {
Finn Thaind65e6342014-03-18 11:42:20 +11001331 dprintk(NDEBUG_INTR, "scsi%d: PARITY interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001332 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1333 } else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
Finn Thaind65e6342014-03-18 11:42:20 +11001334 dprintk(NDEBUG_INTR, "scsi%d: RESET interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001335 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1336 } else {
1337 /*
1338 * The rest of the interrupt conditions can occur only during a
1339 * DMA transfer
1340 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001343 /*
1344 * We should only get PHASE MISMATCH and EOP interrupts if we have
1345 * DMA enabled, so do a sanity check based on the current setting
1346 * of the MODE register.
1347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Roman Zippelc28bda22007-05-01 22:32:36 +02001349 if ((NCR5380_read(MODE_REG) & MR_DMA_MODE) &&
1350 ((basr & BASR_END_DMA_TRANSFER) ||
1351 !(basr & BASR_PHASE_MATCH))) {
1352
Finn Thaind65e6342014-03-18 11:42:20 +11001353 dprintk(NDEBUG_INTR, "scsi%d: PHASE MISM or EOP interrupt\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001354 NCR5380_dma_complete( instance );
1355 done = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001356 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357#endif /* REAL_DMA */
Roman Zippelc28bda22007-05-01 22:32:36 +02001358 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359/* MS: Ignore unknown phase mismatch interrupts (caused by EOP interrupt) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001360 if (basr & BASR_PHASE_MATCH)
Finn Thaine3f463b2014-11-12 16:12:16 +11001361 dprintk(NDEBUG_INTR, "scsi%d: unknown interrupt, "
Roman Zippelc28bda22007-05-01 22:32:36 +02001362 "BASR 0x%x, MR 0x%x, SR 0x%x\n",
1363 HOSTNO, basr, NCR5380_read(MODE_REG),
1364 NCR5380_read(STATUS_REG));
1365 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaine3f463b2014-11-12 16:12:16 +11001366#ifdef SUN3_SCSI_VME
1367 dregs->csr |= CSR_DMA_ENABLE;
1368#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001369 }
1370 } /* if !(SELECTION || PARITY) */
1371 handled = 1;
1372 } /* BASR & IRQ */ else {
1373 printk(KERN_NOTICE "scsi%d: interrupt without IRQ bit set in BASR, "
1374 "BASR 0x%X, MR 0x%X, SR 0x%x\n", HOSTNO, basr,
1375 NCR5380_read(MODE_REG), NCR5380_read(STATUS_REG));
1376 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Finn Thaine3f463b2014-11-12 16:12:16 +11001377#ifdef SUN3_SCSI_VME
1378 dregs->csr |= CSR_DMA_ENABLE;
1379#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001380 }
1381
1382 if (!done) {
Finn Thaind65e6342014-03-18 11:42:20 +11001383 dprintk(NDEBUG_INTR, "scsi%d: in int routine, calling main\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001384 /* Put a call to NCR5380_main() on the queue... */
Finn Thaina53a21e2014-11-12 16:12:21 +11001385 queue_main(shost_priv(instance));
Roman Zippelc28bda22007-05-01 22:32:36 +02001386 }
1387 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Roman Zippelc28bda22007-05-01 22:32:36 +02001390/*
Finn Thain710ddd02014-11-12 16:12:02 +11001391 * Function : int NCR5380_select(struct Scsi_Host *instance,
1392 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 *
1394 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Roman Zippelc28bda22007-05-01 22:32:36 +02001395 * including ARBITRATION, SELECTION, and initial message out for
1396 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001398 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001399 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 *
Finn Thain63238762016-01-03 16:05:15 +11001401 * Returns : -1 if selection failed but should be retried.
1402 * 0 if selection failed and should not be retried.
1403 * 0 if selection succeeded completely (hostdata->connected == cmd).
Roman Zippelc28bda22007-05-01 22:32:36 +02001404 *
1405 * Side effects :
1406 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * with registers as they should have been on entry - ie
1408 * SELECT_ENABLE will be set appropriately, the NCR5380
1409 * will cease to drive any SCSI bus signals.
1410 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001411 * If successful : I_T_L or I_T_L_Q nexus will be established,
1412 * instance->connected will be set to cmd.
1413 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001415 * If failed (no target) : cmd->scsi_done() will be called, and the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * cmd->result host byte set to DID_BAD_TARGET.
1417 */
1418
Finn Thain710ddd02014-11-12 16:12:02 +11001419static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Roman Zippelc28bda22007-05-01 22:32:36 +02001421 SETUP_HOSTDATA(instance);
1422 unsigned char tmp[3], phase;
1423 unsigned char *data;
1424 int len;
Finn Thainae753a32016-01-03 16:05:23 +11001425 int err;
Roman Zippelc28bda22007-05-01 22:32:36 +02001426 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Finn Thain8ad3a592014-03-18 11:42:19 +11001428 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001429 dprintk(NDEBUG_ARBITRATION, "scsi%d: starting arbitration, id = %d\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02001430 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Roman Zippelc28bda22007-05-01 22:32:36 +02001432 /*
1433 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1434 * data bus during SELECTION.
1435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Roman Zippelc28bda22007-05-01 22:32:36 +02001437 local_irq_save(flags);
1438 if (hostdata->connected) {
1439 local_irq_restore(flags);
1440 return -1;
1441 }
1442 NCR5380_write(TARGET_COMMAND_REG, 0);
1443
1444 /*
1445 * Start arbitration.
1446 */
1447
1448 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1449 NCR5380_write(MODE_REG, MR_ARBITRATE);
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Roman Zippelc28bda22007-05-01 22:32:36 +02001453 /* Wait for arbitration logic to complete */
Michael Schmitzfb810d12007-05-01 22:32:35 +02001454#if defined(NCR_TIMEOUT)
Roman Zippelc28bda22007-05-01 22:32:36 +02001455 {
1456 unsigned long timeout = jiffies + 2*NCR_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Roman Zippelc28bda22007-05-01 22:32:36 +02001458 while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS) &&
1459 time_before(jiffies, timeout) && !hostdata->connected)
1460 ;
1461 if (time_after_eq(jiffies, timeout)) {
1462 printk("scsi : arbitration timeout at %d\n", __LINE__);
1463 NCR5380_write(MODE_REG, MR_BASE);
1464 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1465 return -1;
1466 }
1467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468#else /* NCR_TIMEOUT */
Roman Zippelc28bda22007-05-01 22:32:36 +02001469 while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS) &&
1470 !hostdata->connected)
1471 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472#endif
1473
Finn Thaind65e6342014-03-18 11:42:20 +11001474 dprintk(NDEBUG_ARBITRATION, "scsi%d: arbitration complete\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Roman Zippelc28bda22007-05-01 22:32:36 +02001476 if (hostdata->connected) {
1477 NCR5380_write(MODE_REG, MR_BASE);
1478 return -1;
1479 }
1480 /*
1481 * The arbitration delay is 2.2us, but this is a minimum and there is
1482 * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
1483 * the integral nature of udelay().
1484 *
1485 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Roman Zippelc28bda22007-05-01 22:32:36 +02001487 udelay(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Roman Zippelc28bda22007-05-01 22:32:36 +02001489 /* Check for lost arbitration */
1490 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1491 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1492 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1493 hostdata->connected) {
1494 NCR5380_write(MODE_REG, MR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001495 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001496 HOSTNO);
1497 return -1;
1498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Finn Thaincf13b082016-01-03 16:05:18 +11001500 /* After/during arbitration, BSY should be asserted.
1501 * IBM DPES-31080 Version S31Q works now
1502 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1503 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001504 NCR5380_write(INITIATOR_COMMAND_REG,
1505 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Roman Zippelc28bda22007-05-01 22:32:36 +02001507 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1508 hostdata->connected) {
1509 NCR5380_write(MODE_REG, MR_BASE);
1510 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001511 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting ICR_ASSERT_SEL\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001512 HOSTNO);
1513 return -1;
1514 }
1515
1516 /*
1517 * Again, bus clear + bus settle time is 1.2us, however, this is
1518 * a minimum so we'll udelay ceil(1.2)
1519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Finn Thain9c3f0e22016-01-03 16:05:11 +11001521 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1522 udelay(15);
1523 else
1524 udelay(2);
Roman Zippelc28bda22007-05-01 22:32:36 +02001525
1526 if (hostdata->connected) {
1527 NCR5380_write(MODE_REG, MR_BASE);
1528 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1529 return -1;
1530 }
1531
Finn Thaind65e6342014-03-18 11:42:20 +11001532 dprintk(NDEBUG_ARBITRATION, "scsi%d: won arbitration\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001533
1534 /*
1535 * Now that we have won arbitration, start Selection process, asserting
1536 * the host and target ID's on the SCSI bus.
1537 */
1538
1539 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->device->id)));
1540
1541 /*
1542 * Raise ATN while SEL is true before BSY goes false from arbitration,
1543 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1544 * phase immediately after selection.
1545 */
1546
1547 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY |
1548 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Roman Zippelc28bda22007-05-01 22:32:36 +02001551 /*
1552 * Reselect interrupts must be turned off prior to the dropping of BSY,
1553 * otherwise we will trigger an interrupt.
1554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Roman Zippelc28bda22007-05-01 22:32:36 +02001556 if (hostdata->connected) {
1557 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1558 return -1;
1559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Roman Zippelc28bda22007-05-01 22:32:36 +02001561 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Roman Zippelc28bda22007-05-01 22:32:36 +02001563 /*
1564 * The initiator shall then wait at least two deskew delays and release
1565 * the BSY signal.
1566 */
1567 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Roman Zippelc28bda22007-05-01 22:32:36 +02001569 /* Reset BSY */
1570 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
1571 ICR_ASSERT_ATN | ICR_ASSERT_SEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Roman Zippelc28bda22007-05-01 22:32:36 +02001573 /*
1574 * Something weird happens when we cease to drive BSY - looks
1575 * like the board/chip is letting us do another read before the
1576 * appropriate propagation delay has expired, and we're confusing
1577 * a BSY signal from ourselves as the target's response to SELECTION.
1578 *
1579 * A small delay (the 'C++' frontend breaks the pipeline with an
1580 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1581 * tighter 'C' code breaks and requires this) solves the problem -
1582 * the 1 us delay is arbitrary, and only used because this delay will
1583 * be the same on other platforms and since it works here, it should
1584 * work there.
1585 *
1586 * wingel suggests that this could be due to failing to wait
1587 * one deskew delay.
1588 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Roman Zippelc28bda22007-05-01 22:32:36 +02001590 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Finn Thaind65e6342014-03-18 11:42:20 +11001592 dprintk(NDEBUG_SELECTION, "scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Roman Zippelc28bda22007-05-01 22:32:36 +02001594 /*
1595 * The SCSI specification calls for a 250 ms timeout for the actual
1596 * selection.
1597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Finn Thainae753a32016-01-03 16:05:23 +11001599 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1600 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Roman Zippelc28bda22007-05-01 22:32:36 +02001602 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1603 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1604 NCR5380_reselect(instance);
1605 printk(KERN_ERR "scsi%d: reselection after won arbitration?\n",
1606 HOSTNO);
1607 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1608 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001610
Finn Thainae753a32016-01-03 16:05:23 +11001611 if (err < 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001612 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02001613 cmd->result = DID_BAD_TARGET << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02001614#ifdef SUPPORT_TAGS
1615 cmd_free_tag(cmd);
1616#endif
1617 cmd->scsi_done(cmd);
1618 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaind65e6342014-03-18 11:42:20 +11001619 dprintk(NDEBUG_SELECTION, "scsi%d: target did not respond within 250ms\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001620 return 0;
1621 }
1622
Roman Zippelc28bda22007-05-01 22:32:36 +02001623 /*
Finn Thainae753a32016-01-03 16:05:23 +11001624 * No less than two deskew delays after the initiator detects the
1625 * BSY signal is true, it shall release the SEL signal and may
1626 * change the DATA BUS. -wingel
1627 */
1628
1629 udelay(1);
1630
1631 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1632
1633 /*
Roman Zippelc28bda22007-05-01 22:32:36 +02001634 * Since we followed the SCSI spec, and raised ATN while SEL
1635 * was true but before BSY was false during selection, the information
1636 * transfer phase should be a MESSAGE OUT phase so that we can send the
1637 * IDENTIFY message.
1638 *
1639 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1640 * message (2 bytes) with a tag ID that we increment with every command
1641 * until it wraps back to 0.
1642 *
1643 * XXX - it turns out that there are some broken SCSI-II devices,
1644 * which claim to support tagged queuing but fail when more than
1645 * some number of commands are issued at once.
1646 */
1647
1648 /* Wait for start of REQ/ACK handshake */
1649 while (!(NCR5380_read(STATUS_REG) & SR_REQ))
1650 ;
1651
Finn Thaind65e6342014-03-18 11:42:20 +11001652 dprintk(NDEBUG_SELECTION, "scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001653 HOSTNO, cmd->device->id);
1654 tmp[0] = IDENTIFY(1, cmd->device->lun);
1655
1656#ifdef SUPPORT_TAGS
1657 if (cmd->tag != TAG_NONE) {
1658 tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
1659 tmp[2] = cmd->tag;
1660 len = 3;
1661 } else
1662 len = 1;
1663#else
1664 len = 1;
1665 cmd->tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666#endif /* SUPPORT_TAGS */
1667
Roman Zippelc28bda22007-05-01 22:32:36 +02001668 /* Send message(s) */
1669 data = tmp;
1670 phase = PHASE_MSGOUT;
1671 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11001672 dprintk(NDEBUG_SELECTION, "scsi%d: nexus established.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001673 /* XXX need to handle errors here */
1674 hostdata->connected = cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675#ifndef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001676 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
1677#endif
Finn Thaine3f463b2014-11-12 16:12:16 +11001678#ifdef SUN3_SCSI_VME
1679 dregs->csr |= CSR_INTR;
1680#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Roman Zippelc28bda22007-05-01 22:32:36 +02001682 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Roman Zippelc28bda22007-05-01 22:32:36 +02001684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
Roman Zippelc28bda22007-05-01 22:32:36 +02001687/*
1688 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 * unsigned char *phase, int *count, unsigned char **data)
1690 *
1691 * Purpose : transfers data in given phase using polled I/O
1692 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001693 * Inputs : instance - instance of driver, *phase - pointer to
1694 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001696 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001698 * maximum number of bytes, 0 if all bytes are transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 * is in same phase.
1700 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001701 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 *
1703 * XXX Note : handling for bus free may be useful.
1704 */
1705
1706/*
Roman Zippelc28bda22007-05-01 22:32:36 +02001707 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 * IS 100% reliable, and for the actual data transfer where speed
1709 * counts, we will always do a pseudo DMA or DMA transfer.
1710 */
1711
Roman Zippelc28bda22007-05-01 22:32:36 +02001712static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1713 unsigned char *phase, int *count,
1714 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Roman Zippelc28bda22007-05-01 22:32:36 +02001716 register unsigned char p = *phase, tmp;
1717 register int c = *count;
1718 register unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Roman Zippelc28bda22007-05-01 22:32:36 +02001720 /*
1721 * The NCR5380 chip will only drive the SCSI bus when the
1722 * phase specified in the appropriate bits of the TARGET COMMAND
1723 * REGISTER match the STATUS REGISTER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 */
1725
Roman Zippelc28bda22007-05-01 22:32:36 +02001726 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Roman Zippelc28bda22007-05-01 22:32:36 +02001728 do {
1729 /*
1730 * Wait for assertion of REQ, after which the phase bits will be
1731 * valid
1732 */
Finn Thain686f3992016-01-03 16:05:26 +11001733
1734 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
1735 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Finn Thaind65e6342014-03-18 11:42:20 +11001737 dprintk(NDEBUG_HANDSHAKE, "scsi%d: REQ detected\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Roman Zippelc28bda22007-05-01 22:32:36 +02001739 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001740 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thaind65e6342014-03-18 11:42:20 +11001741 dprintk(NDEBUG_PIO, "scsi%d: phase mismatch\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11001742 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001743 break;
1744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Roman Zippelc28bda22007-05-01 22:32:36 +02001746 /* Do actual transfer from SCSI bus to / from memory */
1747 if (!(p & SR_IO))
1748 NCR5380_write(OUTPUT_DATA_REG, *d);
1749 else
1750 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Roman Zippelc28bda22007-05-01 22:32:36 +02001752 ++d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Roman Zippelc28bda22007-05-01 22:32:36 +02001754 /*
1755 * The SCSI standard suggests that in MSGOUT phase, the initiator
1756 * should drop ATN on the last byte of the message phase
1757 * after REQ has been asserted for the handshake but before
1758 * the initiator raises ACK.
1759 */
1760
1761 if (!(p & SR_IO)) {
1762 if (!((p & SR_MSG) && c > 1)) {
1763 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thain8ad3a592014-03-18 11:42:19 +11001764 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001765 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1766 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1767 } else {
1768 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1769 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Finn Thain8ad3a592014-03-18 11:42:19 +11001770 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001771 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1772 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1773 }
1774 } else {
Finn Thain8ad3a592014-03-18 11:42:19 +11001775 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001776 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1777 }
1778
Finn Thaina2edc4a2016-01-03 16:05:27 +11001779 if (NCR5380_poll_politely(instance,
1780 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1781 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001782
Finn Thaind65e6342014-03-18 11:42:20 +11001783 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001784
1785 /*
1786 * We have several special cases to consider during REQ/ACK handshaking :
1787 * 1. We were in MSGOUT phase, and we are on the last byte of the
1788 * message. ATN must be dropped as ACK is dropped.
1789 *
1790 * 2. We are in a MSGIN phase, and we are on the last byte of the
1791 * message. We must exit with ACK asserted, so that the calling
1792 * code may raise ATN before dropping ACK to reject the message.
1793 *
1794 * 3. ACK and ATN are clear and the target may proceed as normal.
1795 */
1796 if (!(p == PHASE_MSGIN && c == 1)) {
1797 if (p == PHASE_MSGOUT && c > 1)
1798 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1799 else
1800 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1801 }
1802 } while (--c);
1803
Finn Thaind65e6342014-03-18 11:42:20 +11001804 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001805
1806 *count = c;
1807 *data = d;
1808 tmp = NCR5380_read(STATUS_REG);
1809 /* The phase read from the bus is valid if either REQ is (already)
Finn Thaina2edc4a2016-01-03 16:05:27 +11001810 * asserted or if ACK hasn't been released yet. The latter applies if
1811 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
Roman Zippelc28bda22007-05-01 22:32:36 +02001812 */
Finn Thaina2edc4a2016-01-03 16:05:27 +11001813 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Roman Zippelc28bda22007-05-01 22:32:36 +02001814 *phase = tmp & PHASE_MASK;
1815 else
1816 *phase = PHASE_UNKNOWN;
1817
1818 if (!c || (*phase == p))
1819 return 0;
1820 else
1821 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822}
1823
Finn Thain636b1ec2016-01-03 16:05:10 +11001824/**
1825 * do_reset - issue a reset command
1826 * @instance: adapter to reset
1827 *
1828 * Issue a reset sequence to the NCR5380 and try and get the bus
1829 * back into sane shape.
1830 *
1831 * This clears the reset interrupt flag because there may be no handler for
1832 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1833 * been installed. And when in EH we may have released the ST DMA interrupt.
1834 */
1835
1836static void do_reset(struct Scsi_Host *instance)
1837{
1838 unsigned long flags;
1839
1840 local_irq_save(flags);
1841 NCR5380_write(TARGET_COMMAND_REG,
1842 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1843 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1844 udelay(50);
1845 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1846 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1847 local_irq_restore(flags);
1848}
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850/*
1851 * Function : do_abort (Scsi_Host *host)
Roman Zippelc28bda22007-05-01 22:32:36 +02001852 *
1853 * Purpose : abort the currently established nexus. Should only be
1854 * called from a routine which can drop into a
1855 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 * Returns : 0 on success, -1 on failure.
1857 */
1858
Finn Thaina53a21e2014-11-12 16:12:21 +11001859static int do_abort(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Roman Zippelc28bda22007-05-01 22:32:36 +02001861 unsigned char tmp, *msgptr, phase;
1862 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Roman Zippelc28bda22007-05-01 22:32:36 +02001864 /* Request message out phase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Roman Zippelc28bda22007-05-01 22:32:36 +02001867 /*
1868 * Wait for the target to indicate a valid phase by asserting
1869 * REQ. Once this happens, we'll have either a MSGOUT phase
1870 * and can immediately send the ABORT message, or we'll have some
1871 * other phase and will have to source/sink data.
1872 *
1873 * We really don't care what value was on the bus or what value
1874 * the target sees, so we just handshake.
1875 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Roel Kluin3be38e72007-11-15 21:13:46 +01001877 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ))
Roman Zippelc28bda22007-05-01 22:32:36 +02001878 ;
1879
1880 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1881
1882 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1883 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1884 ICR_ASSERT_ACK);
1885 while (NCR5380_read(STATUS_REG) & SR_REQ)
1886 ;
1887 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1888 }
1889
1890 tmp = ABORT;
1891 msgptr = &tmp;
1892 len = 1;
1893 phase = PHASE_MSGOUT;
Finn Thaina53a21e2014-11-12 16:12:21 +11001894 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001895
1896 /*
1897 * If we got here, and the command completed successfully,
1898 * we're about to go into bus free state.
1899 */
1900
1901 return len ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
1903
1904#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001905/*
1906 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 * unsigned char *phase, int *count, unsigned char **data)
1908 *
1909 * Purpose : transfers data in given phase using either real
1910 * or pseudo DMA.
1911 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001912 * Inputs : instance - instance of driver, *phase - pointer to
1913 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001915 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001917 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 * is in same phase.
1919 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001920 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 *
1922 */
1923
1924
Roman Zippelc28bda22007-05-01 22:32:36 +02001925static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1926 unsigned char *phase, int *count,
1927 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Roman Zippelc28bda22007-05-01 22:32:36 +02001929 SETUP_HOSTDATA(instance);
1930 register int c = *count;
1931 register unsigned char p = *phase;
Finn Thaine3f463b2014-11-12 16:12:16 +11001932 unsigned long flags;
1933
1934#if defined(CONFIG_SUN3)
1935 /* sanity check */
1936 if (!sun3_dma_setup_done) {
1937 pr_err("scsi%d: transfer_dma without setup!\n",
1938 instance->host_no);
1939 BUG();
1940 }
1941 hostdata->dma_len = c;
1942
1943 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
1944 instance->host_no, (p & SR_IO) ? "reading" : "writing",
1945 c, (p & SR_IO) ? "to" : "from", *data);
1946
1947 /* netbsd turns off ints here, why not be safe and do it too */
1948 local_irq_save(flags);
1949
1950 /* send start chain */
1951 sun3scsi_dma_start(c, *data);
1952
1953 if (p & SR_IO) {
1954 NCR5380_write(TARGET_COMMAND_REG, 1);
1955 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1956 NCR5380_write(INITIATOR_COMMAND_REG, 0);
1957 NCR5380_write(MODE_REG,
1958 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1959 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1960 } else {
1961 NCR5380_write(TARGET_COMMAND_REG, 0);
1962 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1963 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
1964 NCR5380_write(MODE_REG,
1965 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1966 NCR5380_write(START_DMA_SEND_REG, 0);
1967 }
1968
1969#ifdef SUN3_SCSI_VME
1970 dregs->csr |= CSR_DMA_ENABLE;
1971#endif
1972
1973 local_irq_restore(flags);
1974
1975 sun3_dma_active = 1;
1976
1977#else /* !defined(CONFIG_SUN3) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001978 register unsigned char *d = *data;
1979 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Roman Zippelc28bda22007-05-01 22:32:36 +02001981 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1982 *phase = tmp;
1983 return -1;
1984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Finn Thainef1081c2014-11-12 16:12:14 +11001986 if (hostdata->read_overruns && (p & SR_IO))
1987 c -= hostdata->read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Finn Thaind65e6342014-03-18 11:42:20 +11001989 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001990 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1991 c, (p & SR_IO) ? "to" : "from", d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Roman Zippelc28bda22007-05-01 22:32:36 +02001993 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02001996 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997#endif /* def REAL_DMA */
1998
Finn Thainef1081c2014-11-12 16:12:14 +11001999 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002000 /* On the Medusa, it is a must to initialize the DMA before
2001 * starting the NCR. This is also the cleaner way for the TT.
2002 */
2003 local_irq_save(flags);
2004 hostdata->dma_len = (p & SR_IO) ?
2005 NCR5380_dma_read_setup(instance, d, c) :
2006 NCR5380_dma_write_setup(instance, d, c);
2007 local_irq_restore(flags);
2008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Roman Zippelc28bda22007-05-01 22:32:36 +02002010 if (p & SR_IO)
2011 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
2012 else {
2013 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
2014 NCR5380_write(START_DMA_SEND_REG, 0);
2015 }
2016
Finn Thainef1081c2014-11-12 16:12:14 +11002017 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002018 /* On the Falcon, the DMA setup must be done after the last */
2019 /* NCR access, else the DMA setup gets trashed!
2020 */
2021 local_irq_save(flags);
2022 hostdata->dma_len = (p & SR_IO) ?
2023 NCR5380_dma_read_setup(instance, d, c) :
2024 NCR5380_dma_write_setup(instance, d, c);
2025 local_irq_restore(flags);
2026 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002027#endif /* !defined(CONFIG_SUN3) */
2028
Roman Zippelc28bda22007-05-01 22:32:36 +02002029 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031#endif /* defined(REAL_DMA) */
2032
2033/*
2034 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
2035 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002036 * Purpose : run through the various SCSI phases and do as the target
2037 * directs us to. Operates on the currently connected command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 * instance->connected.
2039 *
2040 * Inputs : instance, instance for which we are doing commands
2041 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002042 * Side effects : SCSI things happen, the disconnected queue will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 * modified if a command disconnects, *instance->connected will
2044 * change.
2045 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002046 * XXX Note : we need to watch for bus free or a reset condition here
2047 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 */
Roman Zippelc28bda22007-05-01 22:32:36 +02002049
2050static void NCR5380_information_transfer(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
Roman Zippelc28bda22007-05-01 22:32:36 +02002052 SETUP_HOSTDATA(instance);
2053 unsigned long flags;
2054 unsigned char msgout = NOP;
2055 int sink = 0;
2056 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02002058 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002060 unsigned char *data;
2061 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain710ddd02014-11-12 16:12:02 +11002062 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Finn Thaine3f463b2014-11-12 16:12:16 +11002064#ifdef SUN3_SCSI_VME
2065 dregs->csr |= CSR_INTR;
2066#endif
2067
Roman Zippelc28bda22007-05-01 22:32:36 +02002068 while (1) {
2069 tmp = NCR5380_read(STATUS_REG);
2070 /* We only have a valid SCSI phase when REQ is asserted */
2071 if (tmp & SR_REQ) {
2072 phase = (tmp & PHASE_MASK);
2073 if (phase != old_phase) {
2074 old_phase = phase;
Finn Thain8ad3a592014-03-18 11:42:19 +11002075 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002077#if defined(CONFIG_SUN3)
2078 if (phase == PHASE_CMDOUT) {
2079#if defined(REAL_DMA)
2080 void *d;
2081 unsigned long count;
2082
2083 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2084 count = cmd->SCp.buffer->length;
2085 d = sg_virt(cmd->SCp.buffer);
2086 } else {
2087 count = cmd->SCp.this_residual;
2088 d = cmd->SCp.ptr;
2089 }
2090 /* this command setup for dma yet? */
2091 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != cmd)) {
2092 if (cmd->request->cmd_type == REQ_TYPE_FS) {
2093 sun3scsi_dma_setup(d, count,
2094 rq_data_dir(cmd->request));
2095 sun3_dma_setup_done = cmd;
2096 }
2097 }
2098#endif
2099#ifdef SUN3_SCSI_VME
2100 dregs->csr |= CSR_INTR;
2101#endif
2102 }
2103#endif /* CONFIG_SUN3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Roman Zippelc28bda22007-05-01 22:32:36 +02002105 if (sink && (phase != PHASE_MSGOUT)) {
2106 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Roman Zippelc28bda22007-05-01 22:32:36 +02002108 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
2109 ICR_ASSERT_ACK);
2110 while (NCR5380_read(STATUS_REG) & SR_REQ)
2111 ;
2112 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
2113 ICR_ASSERT_ATN);
2114 sink = 0;
2115 continue;
2116 }
2117
2118 switch (phase) {
2119 case PHASE_DATAOUT:
2120#if (NDEBUG & NDEBUG_NO_DATAOUT)
2121 printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
2122 "aborted\n", HOSTNO);
2123 sink = 1;
2124 do_abort(instance);
2125 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002126 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002127 return;
2128#endif
2129 case PHASE_DATAIN:
2130 /*
2131 * If there is no room left in the current buffer in the
2132 * scatter-gather list, move onto the next one.
2133 */
2134
2135 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2136 ++cmd->SCp.buffer;
2137 --cmd->SCp.buffers_residual;
2138 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02002139 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +02002140 /* ++roman: Try to merge some scatter-buffers if
2141 * they are at contiguous physical addresses.
2142 */
2143 merge_contiguous_buffers(cmd);
Finn Thaind65e6342014-03-18 11:42:20 +11002144 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002145 HOSTNO, cmd->SCp.this_residual,
2146 cmd->SCp.buffers_residual);
2147 }
2148
2149 /*
2150 * The preferred transfer method is going to be
2151 * PSEUDO-DMA for systems that are strictly PIO,
2152 * since we can let the hardware do the handshaking.
2153 *
2154 * For this to work, we need to know the transfersize
2155 * ahead of time, since the pseudo-DMA code will sit
2156 * in an unconditional loop.
2157 */
2158
2159 /* ++roman: I suggest, this should be
2160 * #if def(REAL_DMA)
2161 * instead of leaving REAL_DMA out.
2162 */
2163
2164#if defined(REAL_DMA)
Finn Thaine3f463b2014-11-12 16:12:16 +11002165#if !defined(CONFIG_SUN3)
Finn Thainff3d4572016-01-03 16:05:25 +11002166 transfersize = 0;
2167 if (!cmd->device->borken)
Finn Thaine3f463b2014-11-12 16:12:16 +11002168#endif
Finn Thainff3d4572016-01-03 16:05:25 +11002169 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
2170
2171 if (transfersize >= DMA_MIN_SIZE) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002172 len = transfersize;
2173 cmd->SCp.phase = phase;
2174 if (NCR5380_transfer_dma(instance, &phase,
2175 &len, (unsigned char **)&cmd->SCp.ptr)) {
2176 /*
2177 * If the watchdog timer fires, all future
2178 * accesses to this device will use the
2179 * polled-IO. */
Finn Thainff50f9e2014-11-12 16:12:18 +11002180 scmd_printk(KERN_INFO, cmd,
2181 "switching to slow handshake\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02002182 cmd->device->borken = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02002183 sink = 1;
2184 do_abort(instance);
2185 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002186 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002187 /* XXX - need to source or sink data here, as appropriate */
2188 } else {
2189#ifdef REAL_DMA
2190 /* ++roman: When using real DMA,
2191 * information_transfer() should return after
2192 * starting DMA since it has nothing more to
2193 * do.
2194 */
2195 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002197 cmd->SCp.this_residual -= transfersize - len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002199 }
2200 } else
2201#endif /* defined(REAL_DMA) */
2202 NCR5380_transfer_pio(instance, &phase,
2203 (int *)&cmd->SCp.this_residual,
2204 (unsigned char **)&cmd->SCp.ptr);
Finn Thaine3f463b2014-11-12 16:12:16 +11002205#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2206 /* if we had intended to dma that command clear it */
2207 if (sun3_dma_setup_done == cmd)
2208 sun3_dma_setup_done = NULL;
2209#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002210 break;
2211 case PHASE_MSGIN:
2212 len = 1;
2213 data = &tmp;
2214 NCR5380_write(SELECT_ENABLE_REG, 0); /* disable reselects */
2215 NCR5380_transfer_pio(instance, &phase, &len, &data);
2216 cmd->SCp.Message = tmp;
2217
2218 switch (tmp) {
2219 /*
2220 * Linking lets us reduce the time required to get the
2221 * next command out to the device, hopefully this will
2222 * mean we don't waste another revolution due to the delays
2223 * required by ARBITRATION and another SELECTION.
2224 *
2225 * In the current implementation proposal, low level drivers
2226 * merely have to start the next command, pointed to by
2227 * next_link, done() is called as with unlinked commands.
2228 */
2229#ifdef LINKED
2230 case LINKED_CMD_COMPLETE:
2231 case LINKED_FLG_CMD_COMPLETE:
2232 /* Accept message by clearing ACK */
2233 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2234
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002235 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked command "
Roman Zippelc28bda22007-05-01 22:32:36 +02002236 "complete.\n", HOSTNO, cmd->device->id, cmd->device->lun);
2237
2238 /* Enable reselect interrupts */
2239 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2240 /*
2241 * Sanity check : A linked command should only terminate
2242 * with one of these messages if there are more linked
2243 * commands available.
2244 */
2245
2246 if (!cmd->next_link) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002247 printk(KERN_NOTICE "scsi%d: target %d lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002248 "linked command complete, no next_link\n",
2249 HOSTNO, cmd->device->id, cmd->device->lun);
2250 sink = 1;
2251 do_abort(instance);
2252 return;
2253 }
2254
2255 initialize_SCp(cmd->next_link);
2256 /* The next command is still part of this process; copy it
2257 * and don't free it! */
2258 cmd->next_link->tag = cmd->tag;
2259 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002260 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked request "
Roman Zippelc28bda22007-05-01 22:32:36 +02002261 "done, calling scsi_done().\n",
2262 HOSTNO, cmd->device->id, cmd->device->lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02002263 cmd->scsi_done(cmd);
2264 cmd = hostdata->connected;
2265 break;
2266#endif /* def LINKED */
2267 case ABORT:
2268 case COMMAND_COMPLETE:
2269 /* Accept message by clearing ACK */
2270 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002271 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d, lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002272 "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
Finn Thaine3c3da62014-11-12 16:12:15 +11002273
2274 local_irq_save(flags);
2275 hostdata->retain_dma_intr++;
2276 hostdata->connected = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002277#ifdef SUPPORT_TAGS
2278 cmd_free_tag(cmd);
2279 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
2280 /* Turn a QUEUE FULL status into BUSY, I think the
2281 * mid level cannot handle QUEUE FULL :-( (The
2282 * command is retried after BUSY). Also update our
2283 * queue size to the number of currently issued
2284 * commands now.
2285 */
2286 /* ++Andreas: the mid level code knows about
2287 QUEUE_FULL now. */
Finn Thain61d739a2014-11-12 16:12:20 +11002288 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002289 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
Roman Zippelc28bda22007-05-01 22:32:36 +02002290 "QUEUE_FULL after %d commands\n",
2291 HOSTNO, cmd->device->id, cmd->device->lun,
2292 ta->nr_allocated);
2293 if (ta->queue_size > ta->nr_allocated)
2294 ta->nr_allocated = ta->queue_size;
2295 }
2296#else
2297 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2298#endif
2299 /* Enable reselect interrupts */
2300 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2301
2302 /*
2303 * I'm not sure what the correct thing to do here is :
2304 *
2305 * If the command that just executed is NOT a request
2306 * sense, the obvious thing to do is to set the result
2307 * code to the values of the stored parameters.
2308 *
2309 * If it was a REQUEST SENSE command, we need some way to
2310 * differentiate between the failure code of the original
2311 * and the failure code of the REQUEST sense - the obvious
2312 * case is success, where we fall through and leave the
2313 * result code unchanged.
2314 *
2315 * The non-obvious place is where the REQUEST SENSE failed
2316 */
2317
2318 if (cmd->cmnd[0] != REQUEST_SENSE)
2319 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2320 else if (status_byte(cmd->SCp.Status) != GOOD)
2321 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2322
Boaz Harrosh28424d32007-09-10 22:37:45 +03002323 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2324 hostdata->ses.cmd_len) {
2325 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2326 hostdata->ses.cmd_len = 0 ;
2327 }
2328
Roman Zippelc28bda22007-05-01 22:32:36 +02002329 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2330 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
Boaz Harrosh28424d32007-09-10 22:37:45 +03002331 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
Roman Zippelc28bda22007-05-01 22:32:36 +02002332
Finn Thaind65e6342014-03-18 11:42:20 +11002333 dprintk(NDEBUG_AUTOSENSE, "scsi%d: performing request sense\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002334
Roman Zippelc28bda22007-05-01 22:32:36 +02002335 LIST(cmd,hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002336 SET_NEXT(cmd, hostdata->issue_queue);
Finn Thain710ddd02014-11-12 16:12:02 +11002337 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thaind65e6342014-03-18 11:42:20 +11002338 dprintk(NDEBUG_QUEUES, "scsi%d: REQUEST SENSE added to head of "
Roman Zippelc28bda22007-05-01 22:32:36 +02002339 "issue queue\n", H_NO(cmd));
Finn Thain997acab2014-11-12 16:11:54 +11002340 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002341 cmd->scsi_done(cmd);
2342 }
2343
Finn Thaine3c3da62014-11-12 16:12:15 +11002344 local_irq_restore(flags);
2345
Roman Zippelc28bda22007-05-01 22:32:36 +02002346 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2347 /*
2348 * Restore phase bits to 0 so an interrupted selection,
2349 * arbitration can resume.
2350 */
2351 NCR5380_write(TARGET_COMMAND_REG, 0);
2352
2353 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2354 barrier();
2355
Finn Thaine3c3da62014-11-12 16:12:15 +11002356 local_irq_save(flags);
Finn Thainef1081c2014-11-12 16:12:14 +11002357 hostdata->retain_dma_intr--;
Roman Zippelc28bda22007-05-01 22:32:36 +02002358 /* ++roman: For Falcon SCSI, release the lock on the
2359 * ST-DMA here if no other commands are waiting on the
2360 * disconnected queue.
2361 */
Finn Thaine3c3da62014-11-12 16:12:15 +11002362 maybe_release_dma_irq(instance);
2363 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002364 return;
2365 case MESSAGE_REJECT:
2366 /* Accept message by clearing ACK */
2367 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2368 /* Enable reselect interrupts */
2369 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2370 switch (hostdata->last_message) {
2371 case HEAD_OF_QUEUE_TAG:
2372 case ORDERED_QUEUE_TAG:
2373 case SIMPLE_QUEUE_TAG:
2374 /* The target obviously doesn't support tagged
2375 * queuing, even though it announced this ability in
2376 * its INQUIRY data ?!? (maybe only this LUN?) Ok,
2377 * clear 'tagged_supported' and lock the LUN, since
2378 * the command is treated as untagged further on.
2379 */
2380 cmd->device->tagged_supported = 0;
2381 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
2382 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002383 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
Roman Zippelc28bda22007-05-01 22:32:36 +02002384 "QUEUE_TAG message; tagged queuing "
2385 "disabled\n",
2386 HOSTNO, cmd->device->id, cmd->device->lun);
2387 break;
2388 }
2389 break;
2390 case DISCONNECT:
2391 /* Accept message by clearing ACK */
2392 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2393 local_irq_save(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002394 LIST(cmd,hostdata->disconnected_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002395 SET_NEXT(cmd, hostdata->disconnected_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02002396 hostdata->connected = NULL;
2397 hostdata->disconnected_queue = cmd;
2398 local_irq_restore(flags);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002399 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d lun %llu was "
Roman Zippelc28bda22007-05-01 22:32:36 +02002400 "moved from connected to the "
2401 "disconnected_queue\n", HOSTNO,
2402 cmd->device->id, cmd->device->lun);
2403 /*
2404 * Restore phase bits to 0 so an interrupted selection,
2405 * arbitration can resume.
2406 */
2407 NCR5380_write(TARGET_COMMAND_REG, 0);
2408
2409 /* Enable reselect interrupts */
2410 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2411 /* Wait for bus free to avoid nasty timeouts */
2412 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2413 barrier();
Finn Thaine3f463b2014-11-12 16:12:16 +11002414#ifdef SUN3_SCSI_VME
2415 dregs->csr |= CSR_DMA_ENABLE;
2416#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002417 return;
2418 /*
2419 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2420 * operation, in violation of the SCSI spec so we can safely
2421 * ignore SAVE/RESTORE pointers calls.
2422 *
2423 * Unfortunately, some disks violate the SCSI spec and
2424 * don't issue the required SAVE_POINTERS message before
2425 * disconnecting, and we have to break spec to remain
2426 * compatible.
2427 */
2428 case SAVE_POINTERS:
2429 case RESTORE_POINTERS:
2430 /* Accept message by clearing ACK */
2431 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2432 /* Enable reselect interrupts */
2433 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2434 break;
2435 case EXTENDED_MESSAGE:
2436 /*
2437 * Extended messages are sent in the following format :
2438 * Byte
2439 * 0 EXTENDED_MESSAGE == 1
2440 * 1 length (includes one byte for code, doesn't
2441 * include first two bytes)
2442 * 2 code
2443 * 3..length+1 arguments
2444 *
2445 * Start the extended message buffer with the EXTENDED_MESSAGE
2446 * byte, since spi_print_msg() wants the whole thing.
2447 */
2448 extended_msg[0] = EXTENDED_MESSAGE;
2449 /* Accept first byte by clearing ACK */
2450 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2451
Finn Thaind65e6342014-03-18 11:42:20 +11002452 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002453
2454 len = 2;
2455 data = extended_msg + 1;
2456 phase = PHASE_MSGIN;
2457 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002458 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002459 (int)extended_msg[1], (int)extended_msg[2]);
2460
2461 if (!len && extended_msg[1] <=
2462 (sizeof(extended_msg) - 1)) {
2463 /* Accept third byte by clearing ACK */
2464 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2465 len = extended_msg[1] - 1;
2466 data = extended_msg + 3;
2467 phase = PHASE_MSGIN;
2468
2469 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002470 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002471 HOSTNO, len);
2472
2473 switch (extended_msg[2]) {
2474 case EXTENDED_SDTR:
2475 case EXTENDED_WDTR:
2476 case EXTENDED_MODIFY_DATA_POINTER:
2477 case EXTENDED_EXTENDED_IDENTIFY:
2478 tmp = 0;
2479 }
2480 } else if (len) {
2481 printk(KERN_NOTICE "scsi%d: error receiving "
2482 "extended message\n", HOSTNO);
2483 tmp = 0;
2484 } else {
2485 printk(KERN_NOTICE "scsi%d: extended message "
2486 "code %02x length %d is too long\n",
2487 HOSTNO, extended_msg[2], extended_msg[1]);
2488 tmp = 0;
2489 }
2490 /* Fall through to reject message */
2491
2492 /*
2493 * If we get something weird that we aren't expecting,
2494 * reject it.
2495 */
2496 default:
2497 if (!tmp) {
Finn Thainff50f9e2014-11-12 16:12:18 +11002498 printk(KERN_INFO "scsi%d: rejecting message ",
2499 instance->host_no);
Roman Zippelc28bda22007-05-01 22:32:36 +02002500 spi_print_msg(extended_msg);
2501 printk("\n");
2502 } else if (tmp != EXTENDED_MESSAGE)
Finn Thainff50f9e2014-11-12 16:12:18 +11002503 scmd_printk(KERN_INFO, cmd,
2504 "rejecting unknown message %02x\n",
2505 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +02002506 else
Finn Thainff50f9e2014-11-12 16:12:18 +11002507 scmd_printk(KERN_INFO, cmd,
2508 "rejecting unknown extended message code %02x, length %d\n",
2509 extended_msg[1], extended_msg[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +02002510
2511 msgout = MESSAGE_REJECT;
2512 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2513 break;
2514 } /* switch (tmp) */
2515 break;
2516 case PHASE_MSGOUT:
2517 len = 1;
2518 data = &msgout;
2519 hostdata->last_message = msgout;
2520 NCR5380_transfer_pio(instance, &phase, &len, &data);
2521 if (msgout == ABORT) {
Finn Thaine3c3da62014-11-12 16:12:15 +11002522 local_irq_save(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002523#ifdef SUPPORT_TAGS
2524 cmd_free_tag(cmd);
2525#else
2526 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2527#endif
2528 hostdata->connected = NULL;
2529 cmd->result = DID_ERROR << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02002530 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine3c3da62014-11-12 16:12:15 +11002531 maybe_release_dma_irq(instance);
2532 local_irq_restore(flags);
2533 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002534 return;
2535 }
2536 msgout = NOP;
2537 break;
2538 case PHASE_CMDOUT:
2539 len = cmd->cmd_len;
2540 data = cmd->cmnd;
2541 /*
2542 * XXX for performance reasons, on machines with a
2543 * PSEUDO-DMA architecture we should probably
2544 * use the dma transfer function.
2545 */
2546 NCR5380_transfer_pio(instance, &phase, &len, &data);
2547 break;
2548 case PHASE_STATIN:
2549 len = 1;
2550 data = &tmp;
2551 NCR5380_transfer_pio(instance, &phase, &len, &data);
2552 cmd->SCp.Status = tmp;
2553 break;
2554 default:
2555 printk("scsi%d: unknown phase\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11002556 NCR5380_dprint(NDEBUG_ANY, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002557 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002558 } else {
2559 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
2560 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002561 } /* while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
2564/*
2565 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2566 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002567 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002568 * 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 -07002569 * nexus has been reestablished,
Roman Zippelc28bda22007-05-01 22:32:36 +02002570 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 * Inputs : instance - this instance of the NCR5380.
2572 *
2573 */
2574
2575
Finn Thaine3f463b2014-11-12 16:12:16 +11002576/* it might eventually prove necessary to do a dma setup on
2577 reselection, but it doesn't seem to be needed now -- sam */
2578
Roman Zippelc28bda22007-05-01 22:32:36 +02002579static void NCR5380_reselect(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
Roman Zippelc28bda22007-05-01 22:32:36 +02002581 SETUP_HOSTDATA(instance);
2582 unsigned char target_mask;
Finn Thaine3f463b2014-11-12 16:12:16 +11002583 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002585 unsigned char tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002587 unsigned char msg[3];
Finn Thaine3f463b2014-11-12 16:12:16 +11002588 int __maybe_unused len;
2589 unsigned char __maybe_unused *data, __maybe_unused phase;
Finn Thain710ddd02014-11-12 16:12:02 +11002590 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Roman Zippelc28bda22007-05-01 22:32:36 +02002592 /*
2593 * Disable arbitration, etc. since the host adapter obviously
2594 * lost, and tell an interrupted NCR5380_select() to restart.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
Roman Zippelc28bda22007-05-01 22:32:36 +02002597 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Roman Zippelc28bda22007-05-01 22:32:36 +02002599 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2600
Finn Thaind65e6342014-03-18 11:42:20 +11002601 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002602
2603 /*
2604 * At this point, we have detected that our SCSI ID is on the bus,
2605 * SEL is true and BSY was false for at least one bus settle delay
2606 * (400 ns).
2607 *
2608 * We must assert BSY ourselves, until the target drops the SEL
2609 * signal.
2610 */
2611
2612 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2613
2614 while (NCR5380_read(STATUS_REG) & SR_SEL)
2615 ;
2616 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2617
2618 /*
2619 * Wait for target to go into MSGIN.
2620 */
2621
2622 while (!(NCR5380_read(STATUS_REG) & SR_REQ))
2623 ;
2624
Finn Thaine3f463b2014-11-12 16:12:16 +11002625#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2626 /* acknowledge toggle to MSGIN */
2627 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
2628
2629 /* peek at the byte without really hitting the bus */
2630 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2631#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002632 len = 1;
2633 data = msg;
2634 phase = PHASE_MSGIN;
2635 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaine3f463b2014-11-12 16:12:16 +11002636#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002637
2638 if (!(msg[0] & 0x80)) {
2639 printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
2640 spi_print_msg(msg);
2641 do_abort(instance);
2642 return;
2643 }
2644 lun = (msg[0] & 0x07);
2645
Finn Thaine3f463b2014-11-12 16:12:16 +11002646#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +02002647 /* If the phase is still MSGIN, the target wants to send some more
2648 * messages. In case it supports tagged queuing, this is probably a
2649 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2650 */
2651 tag = TAG_NONE;
Finn Thainca513fc2014-11-12 16:12:19 +11002652 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002653 /* Accept previous IDENTIFY message by clearing ACK */
2654 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2655 len = 2;
2656 data = msg + 1;
2657 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2658 msg[1] == SIMPLE_QUEUE_TAG)
2659 tag = msg[2];
Finn Thaind65e6342014-03-18 11:42:20 +11002660 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
Roman Zippelc28bda22007-05-01 22:32:36 +02002661 "reselection\n", HOSTNO, target_mask, lun, tag);
2662 }
2663#endif
2664
2665 /*
2666 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2667 * just reestablished, and remove it from the disconnected queue.
2668 */
2669
Finn Thain710ddd02014-11-12 16:12:02 +11002670 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002671 tmp; prev = tmp, tmp = NEXT(tmp)) {
2672 if ((target_mask == (1 << tmp->device->id)) && (lun == tmp->device->lun)
2673#ifdef SUPPORT_TAGS
2674 && (tag == tmp->tag)
2675#endif
2676 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002677 if (prev) {
2678 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02002679 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02002680 } else {
2681 REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
2682 hostdata->disconnected_queue = NEXT(tmp);
2683 }
Roman Zippel3130d902007-05-01 22:32:37 +02002684 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002685 break;
2686 }
2687 }
2688
2689 if (!tmp) {
2690 printk(KERN_WARNING "scsi%d: warning: target bitmask %02x lun %d "
2691#ifdef SUPPORT_TAGS
2692 "tag %d "
2693#endif
2694 "not in disconnected_queue.\n",
2695 HOSTNO, target_mask, lun
2696#ifdef SUPPORT_TAGS
2697 , tag
2698#endif
2699 );
2700 /*
2701 * Since we have an established nexus that we can't do anything
2702 * with, we must abort it.
2703 */
2704 do_abort(instance);
2705 return;
2706 }
2707
Finn Thaine3f463b2014-11-12 16:12:16 +11002708#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2709 /* engage dma setup for the command we just saw */
2710 {
2711 void *d;
2712 unsigned long count;
2713
2714 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2715 count = tmp->SCp.buffer->length;
2716 d = sg_virt(tmp->SCp.buffer);
2717 } else {
2718 count = tmp->SCp.this_residual;
2719 d = tmp->SCp.ptr;
2720 }
2721 /* setup this command for dma if not already */
2722 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != tmp)) {
2723 sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
2724 sun3_dma_setup_done = tmp;
2725 }
2726 }
2727
2728 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2729#endif
2730
Roman Zippelc28bda22007-05-01 22:32:36 +02002731 /* Accept message by clearing ACK */
2732 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2733
Finn Thaine3f463b2014-11-12 16:12:16 +11002734#if defined(SUPPORT_TAGS) && defined(CONFIG_SUN3)
2735 /* If the phase is still MSGIN, the target wants to send some more
2736 * messages. In case it supports tagged queuing, this is probably a
2737 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2738 */
2739 tag = TAG_NONE;
2740 if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
2741 /* Accept previous IDENTIFY message by clearing ACK */
2742 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2743 len = 2;
2744 data = msg + 1;
2745 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2746 msg[1] == SIMPLE_QUEUE_TAG)
2747 tag = msg[2];
2748 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at reselection\n"
2749 HOSTNO, target_mask, lun, tag);
2750 }
2751#endif
2752
Roman Zippelc28bda22007-05-01 22:32:36 +02002753 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002754 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002755 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
2758
2759/*
Finn Thain710ddd02014-11-12 16:12:02 +11002760 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 *
2762 * Purpose : abort a command
2763 *
Finn Thain710ddd02014-11-12 16:12:02 +11002764 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Roman Zippelc28bda22007-05-01 22:32:36 +02002765 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 * used.
2767 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002768 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002770 * XXX - there is no way to abort the command that is currently
2771 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 * a problem, we could implement longjmp() / setjmp(), setjmp()
Roman Zippelc28bda22007-05-01 22:32:36 +02002773 * called where the loop started in NCR5380_main().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 */
2775
2776static
Finn Thain710ddd02014-11-12 16:12:02 +11002777int NCR5380_abort(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Roman Zippelc28bda22007-05-01 22:32:36 +02002779 struct Scsi_Host *instance = cmd->device->host;
2780 SETUP_HOSTDATA(instance);
Finn Thain710ddd02014-11-12 16:12:02 +11002781 struct scsi_cmnd *tmp, **prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02002782 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002784 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Roman Zippelc28bda22007-05-01 22:32:36 +02002786 NCR5380_print_status(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
Roman Zippelc28bda22007-05-01 22:32:36 +02002788 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Finn Thaind65e6342014-03-18 11:42:20 +11002790 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002791 NCR5380_read(BUS_AND_STATUS_REG),
2792 NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794#if 1
Roman Zippelc28bda22007-05-01 22:32:36 +02002795 /*
2796 * Case 1 : If the command is the currently executing command,
2797 * we'll set the aborted flag and return control so that
2798 * information transfer routine can exit cleanly.
2799 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Roman Zippelc28bda22007-05-01 22:32:36 +02002801 if (hostdata->connected == cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Finn Thaind65e6342014-03-18 11:42:20 +11002803 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002804 /*
2805 * We should perform BSY checking, and make sure we haven't slipped
2806 * into BUS FREE.
2807 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Roman Zippelc28bda22007-05-01 22:32:36 +02002809 /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
2810 /*
2811 * Since we can't change phases until we've completed the current
2812 * handshake, we have to source or sink a byte of data if the current
2813 * phase is not MSGOUT.
2814 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Roman Zippelc28bda22007-05-01 22:32:36 +02002816 /*
2817 * Return control to the executing NCR drive so we can clear the
2818 * aborted flag and get back into our main loop.
2819 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Roman Zippelc28bda22007-05-01 22:32:36 +02002821 if (do_abort(instance) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002822 hostdata->connected = NULL;
2823 cmd->result = DID_ABORT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002825 cmd_free_tag(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002827 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002829 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002830 local_irq_restore(flags);
2831 cmd->scsi_done(cmd);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002832 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002833 } else {
Finn Thaine3c3da62014-11-12 16:12:15 +11002834 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002835 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002836 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002840
2841 /*
2842 * Case 2 : If the command hasn't been issued yet, we simply remove it
2843 * from the issue queue.
2844 */
Finn Thain710ddd02014-11-12 16:12:02 +11002845 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2846 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002847 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2848 if (cmd == tmp) {
2849 REMOVE(5, *prev, tmp, NEXT(tmp));
2850 (*prev) = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002851 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002852 tmp->result = DID_ABORT << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002853 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002854 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002855 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002856 HOSTNO);
2857 /* Tagged queuing note: no tag to free here, hasn't been assigned
2858 * yet... */
2859 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002860 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 }
2862 }
2863
Roman Zippelc28bda22007-05-01 22:32:36 +02002864 /*
2865 * Case 3 : If any commands are connected, we're going to fail the abort
2866 * and let the high level SCSI driver retry at a later time or
2867 * issue a reset.
2868 *
2869 * Timeouts, and therefore aborted commands, will be highly unlikely
2870 * and handling them cleanly in this situation would make the common
2871 * case of noresets less efficient, and would pollute our code. So,
2872 * we fail.
2873 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Roman Zippelc28bda22007-05-01 22:32:36 +02002875 if (hostdata->connected) {
2876 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002877 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002878 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Roman Zippelc28bda22007-05-01 22:32:36 +02002881 /*
2882 * Case 4: If the command is currently disconnected from the bus, and
2883 * there are no connected commands, we reconnect the I_T_L or
2884 * I_T_L_Q nexus associated with it, go into message out, and send
2885 * an abort message.
2886 *
2887 * This case is especially ugly. In order to reestablish the nexus, we
2888 * need to call NCR5380_select(). The easiest way to implement this
2889 * function was to abort if the bus was busy, and let the interrupt
2890 * handler triggered on the SEL for reselect take care of lost arbitrations
2891 * where necessary, meaning interrupts need to be enabled.
2892 *
2893 * When interrupts are enabled, the queues may change - so we
2894 * can't remove it from the disconnected queue before selecting it
2895 * because that could cause a failure in hashing the nexus if that
2896 * device reselected.
2897 *
2898 * Since the queues may change, we can't use the pointers from when we
2899 * first locate it.
2900 *
2901 * So, we must first locate the command, and if NCR5380_select()
2902 * succeeds, then issue the abort, relocate the command and remove
2903 * it from the disconnected queue.
2904 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Finn Thain710ddd02014-11-12 16:12:02 +11002906 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002907 tmp = NEXT(tmp)) {
2908 if (cmd == tmp) {
2909 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002910 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002911
Finn Thain76f13b92014-11-12 16:11:53 +11002912 if (NCR5380_select(instance, cmd))
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002913 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002914
Finn Thaind65e6342014-03-18 11:42:20 +11002915 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002916
2917 do_abort(instance);
2918
2919 local_irq_save(flags);
Finn Thain710ddd02014-11-12 16:12:02 +11002920 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2921 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002922 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2923 if (cmd == tmp) {
2924 REMOVE(5, *prev, tmp, NEXT(tmp));
2925 *prev = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002926 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002927 tmp->result = DID_ABORT << 16;
2928 /* We must unlock the tag/LUN immediately here, since the
2929 * target goes to BUS FREE and doesn't send us another
2930 * message (COMMAND_COMPLETE or the like)
2931 */
2932#ifdef SUPPORT_TAGS
2933 cmd_free_tag(tmp);
2934#else
2935 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2936#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002937 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002938 local_irq_restore(flags);
2939 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002940 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002941 }
2942 }
2943 }
2944 }
2945
Finn Thaine3c3da62014-11-12 16:12:15 +11002946 /* Maybe it is sufficient just to release the ST-DMA lock... (if
2947 * possible at all) At least, we should check if the lock could be
2948 * released after the abort, in case it is kept due to some bug.
2949 */
2950 maybe_release_dma_irq(instance);
2951 local_irq_restore(flags);
2952
Roman Zippelc28bda22007-05-01 22:32:36 +02002953 /*
2954 * Case 5 : If we reached this point, the command was not found in any of
2955 * the queues.
2956 *
2957 * We probably reached this point because of an unlikely race condition
2958 * between the command completing successfully and the abortion code,
2959 * so we won't panic, but we will notify the user in case something really
2960 * broke.
2961 */
2962
Joe Perchesad361c92009-07-06 13:05:40 -07002963 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002964
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002965 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966}
2967
2968
Finn Thain3be1b3e2016-01-03 16:05:12 +11002969/**
2970 * NCR5380_bus_reset - reset the SCSI bus
2971 * @cmd: SCSI command undergoing EH
Roman Zippelc28bda22007-05-01 22:32:36 +02002972 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002973 * Returns SUCCESS
Roman Zippelc28bda22007-05-01 22:32:36 +02002974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Finn Thain710ddd02014-11-12 16:12:02 +11002976static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
Finn Thaine3c3da62014-11-12 16:12:15 +11002978 struct Scsi_Host *instance = cmd->device->host;
2979 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002980 int i;
2981 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Finn Thain3be1b3e2016-01-03 16:05:12 +11002983 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Finn Thain3be1b3e2016-01-03 16:05:12 +11002985#if (NDEBUG & NDEBUG_ANY)
2986 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
2987 NCR5380_print_status(instance);
2988#endif
2989
2990 do_reset(instance);
2991
Roman Zippelc28bda22007-05-01 22:32:36 +02002992 /* reset NCR registers */
Roman Zippelc28bda22007-05-01 22:32:36 +02002993 NCR5380_write(MODE_REG, MR_BASE);
2994 NCR5380_write(TARGET_COMMAND_REG, 0);
2995 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Roman Zippelc28bda22007-05-01 22:32:36 +02002997 /* After the reset, there are no more connected or disconnected commands
2998 * and no busy units; so clear the low-level status here to avoid
2999 * conflicts when the mid-level code tries to wake up the affected
3000 * commands!
3001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Roman Zippelc28bda22007-05-01 22:32:36 +02003003 if (hostdata->issue_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003004 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003005 if (hostdata->connected)
Finn Thaind65e6342014-03-18 11:42:20 +11003006 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted a connected command\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003007 if (hostdata->disconnected_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003008 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
Roman Zippelc28bda22007-05-01 22:32:36 +02003010 hostdata->issue_queue = NULL;
3011 hostdata->connected = NULL;
3012 hostdata->disconnected_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +11003014 free_all_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02003016 for (i = 0; i < 8; ++i)
3017 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02003019 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11003021
3022 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02003023 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Michael Schmitz2b0f8342014-05-02 20:43:01 +12003025 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}