blob: dc283f50e4ac2285392b8c0610180602c652a4ab [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 Thainff50f9e2014-11-12 16:12:18 +1100933 * cmd is added to the per instance issue_queue, with minor
934 * 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
1779 while (NCR5380_read(STATUS_REG) & SR_REQ)
1780 ;
1781
Finn Thaind65e6342014-03-18 11:42:20 +11001782 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001783
1784 /*
1785 * We have several special cases to consider during REQ/ACK handshaking :
1786 * 1. We were in MSGOUT phase, and we are on the last byte of the
1787 * message. ATN must be dropped as ACK is dropped.
1788 *
1789 * 2. We are in a MSGIN phase, and we are on the last byte of the
1790 * message. We must exit with ACK asserted, so that the calling
1791 * code may raise ATN before dropping ACK to reject the message.
1792 *
1793 * 3. ACK and ATN are clear and the target may proceed as normal.
1794 */
1795 if (!(p == PHASE_MSGIN && c == 1)) {
1796 if (p == PHASE_MSGOUT && c > 1)
1797 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1798 else
1799 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1800 }
1801 } while (--c);
1802
Finn Thaind65e6342014-03-18 11:42:20 +11001803 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001804
1805 *count = c;
1806 *data = d;
1807 tmp = NCR5380_read(STATUS_REG);
1808 /* The phase read from the bus is valid if either REQ is (already)
1809 * asserted or if ACK hasn't been released yet. The latter is the case if
1810 * we're in MSGIN and all wanted bytes have been received.
1811 */
1812 if ((tmp & SR_REQ) || (p == PHASE_MSGIN && c == 0))
1813 *phase = tmp & PHASE_MASK;
1814 else
1815 *phase = PHASE_UNKNOWN;
1816
1817 if (!c || (*phase == p))
1818 return 0;
1819 else
1820 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Finn Thain636b1ec2016-01-03 16:05:10 +11001823/**
1824 * do_reset - issue a reset command
1825 * @instance: adapter to reset
1826 *
1827 * Issue a reset sequence to the NCR5380 and try and get the bus
1828 * back into sane shape.
1829 *
1830 * This clears the reset interrupt flag because there may be no handler for
1831 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1832 * been installed. And when in EH we may have released the ST DMA interrupt.
1833 */
1834
1835static void do_reset(struct Scsi_Host *instance)
1836{
1837 unsigned long flags;
1838
1839 local_irq_save(flags);
1840 NCR5380_write(TARGET_COMMAND_REG,
1841 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1842 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1843 udelay(50);
1844 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1845 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1846 local_irq_restore(flags);
1847}
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/*
1850 * Function : do_abort (Scsi_Host *host)
Roman Zippelc28bda22007-05-01 22:32:36 +02001851 *
1852 * Purpose : abort the currently established nexus. Should only be
1853 * called from a routine which can drop into a
1854 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 * Returns : 0 on success, -1 on failure.
1856 */
1857
Finn Thaina53a21e2014-11-12 16:12:21 +11001858static int do_abort(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Roman Zippelc28bda22007-05-01 22:32:36 +02001860 unsigned char tmp, *msgptr, phase;
1861 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Roman Zippelc28bda22007-05-01 22:32:36 +02001863 /* Request message out phase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Roman Zippelc28bda22007-05-01 22:32:36 +02001866 /*
1867 * Wait for the target to indicate a valid phase by asserting
1868 * REQ. Once this happens, we'll have either a MSGOUT phase
1869 * and can immediately send the ABORT message, or we'll have some
1870 * other phase and will have to source/sink data.
1871 *
1872 * We really don't care what value was on the bus or what value
1873 * the target sees, so we just handshake.
1874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Roel Kluin3be38e72007-11-15 21:13:46 +01001876 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ))
Roman Zippelc28bda22007-05-01 22:32:36 +02001877 ;
1878
1879 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1880
1881 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1882 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1883 ICR_ASSERT_ACK);
1884 while (NCR5380_read(STATUS_REG) & SR_REQ)
1885 ;
1886 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1887 }
1888
1889 tmp = ABORT;
1890 msgptr = &tmp;
1891 len = 1;
1892 phase = PHASE_MSGOUT;
Finn Thaina53a21e2014-11-12 16:12:21 +11001893 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001894
1895 /*
1896 * If we got here, and the command completed successfully,
1897 * we're about to go into bus free state.
1898 */
1899
1900 return len ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901}
1902
1903#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001904/*
1905 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 * unsigned char *phase, int *count, unsigned char **data)
1907 *
1908 * Purpose : transfers data in given phase using either real
1909 * or pseudo DMA.
1910 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001911 * Inputs : instance - instance of driver, *phase - pointer to
1912 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001914 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001916 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 * is in same phase.
1918 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001919 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 *
1921 */
1922
1923
Roman Zippelc28bda22007-05-01 22:32:36 +02001924static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1925 unsigned char *phase, int *count,
1926 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Roman Zippelc28bda22007-05-01 22:32:36 +02001928 SETUP_HOSTDATA(instance);
1929 register int c = *count;
1930 register unsigned char p = *phase;
Finn Thaine3f463b2014-11-12 16:12:16 +11001931 unsigned long flags;
1932
1933#if defined(CONFIG_SUN3)
1934 /* sanity check */
1935 if (!sun3_dma_setup_done) {
1936 pr_err("scsi%d: transfer_dma without setup!\n",
1937 instance->host_no);
1938 BUG();
1939 }
1940 hostdata->dma_len = c;
1941
1942 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
1943 instance->host_no, (p & SR_IO) ? "reading" : "writing",
1944 c, (p & SR_IO) ? "to" : "from", *data);
1945
1946 /* netbsd turns off ints here, why not be safe and do it too */
1947 local_irq_save(flags);
1948
1949 /* send start chain */
1950 sun3scsi_dma_start(c, *data);
1951
1952 if (p & SR_IO) {
1953 NCR5380_write(TARGET_COMMAND_REG, 1);
1954 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1955 NCR5380_write(INITIATOR_COMMAND_REG, 0);
1956 NCR5380_write(MODE_REG,
1957 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1958 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1959 } else {
1960 NCR5380_write(TARGET_COMMAND_REG, 0);
1961 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1962 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
1963 NCR5380_write(MODE_REG,
1964 (NCR5380_read(MODE_REG) | MR_DMA_MODE | MR_ENABLE_EOP_INTR));
1965 NCR5380_write(START_DMA_SEND_REG, 0);
1966 }
1967
1968#ifdef SUN3_SCSI_VME
1969 dregs->csr |= CSR_DMA_ENABLE;
1970#endif
1971
1972 local_irq_restore(flags);
1973
1974 sun3_dma_active = 1;
1975
1976#else /* !defined(CONFIG_SUN3) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001977 register unsigned char *d = *data;
1978 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Roman Zippelc28bda22007-05-01 22:32:36 +02001980 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1981 *phase = tmp;
1982 return -1;
1983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Finn Thainef1081c2014-11-12 16:12:14 +11001985 if (hostdata->read_overruns && (p & SR_IO))
1986 c -= hostdata->read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Finn Thaind65e6342014-03-18 11:42:20 +11001988 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001989 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1990 c, (p & SR_IO) ? "to" : "from", d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Roman Zippelc28bda22007-05-01 22:32:36 +02001992 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02001995 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996#endif /* def REAL_DMA */
1997
Finn Thainef1081c2014-11-12 16:12:14 +11001998 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001999 /* On the Medusa, it is a must to initialize the DMA before
2000 * starting the NCR. This is also the cleaner way for the TT.
2001 */
2002 local_irq_save(flags);
2003 hostdata->dma_len = (p & SR_IO) ?
2004 NCR5380_dma_read_setup(instance, d, c) :
2005 NCR5380_dma_write_setup(instance, d, c);
2006 local_irq_restore(flags);
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Roman Zippelc28bda22007-05-01 22:32:36 +02002009 if (p & SR_IO)
2010 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
2011 else {
2012 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
2013 NCR5380_write(START_DMA_SEND_REG, 0);
2014 }
2015
Finn Thainef1081c2014-11-12 16:12:14 +11002016 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002017 /* On the Falcon, the DMA setup must be done after the last */
2018 /* NCR access, else the DMA setup gets trashed!
2019 */
2020 local_irq_save(flags);
2021 hostdata->dma_len = (p & SR_IO) ?
2022 NCR5380_dma_read_setup(instance, d, c) :
2023 NCR5380_dma_write_setup(instance, d, c);
2024 local_irq_restore(flags);
2025 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002026#endif /* !defined(CONFIG_SUN3) */
2027
Roman Zippelc28bda22007-05-01 22:32:36 +02002028 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030#endif /* defined(REAL_DMA) */
2031
2032/*
2033 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
2034 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002035 * Purpose : run through the various SCSI phases and do as the target
2036 * directs us to. Operates on the currently connected command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 * instance->connected.
2038 *
2039 * Inputs : instance, instance for which we are doing commands
2040 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002041 * Side effects : SCSI things happen, the disconnected queue will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 * modified if a command disconnects, *instance->connected will
2043 * change.
2044 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002045 * XXX Note : we need to watch for bus free or a reset condition here
2046 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 */
Roman Zippelc28bda22007-05-01 22:32:36 +02002048
2049static void NCR5380_information_transfer(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Roman Zippelc28bda22007-05-01 22:32:36 +02002051 SETUP_HOSTDATA(instance);
2052 unsigned long flags;
2053 unsigned char msgout = NOP;
2054 int sink = 0;
2055 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02002057 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002059 unsigned char *data;
2060 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain710ddd02014-11-12 16:12:02 +11002061 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Finn Thaine3f463b2014-11-12 16:12:16 +11002063#ifdef SUN3_SCSI_VME
2064 dregs->csr |= CSR_INTR;
2065#endif
2066
Roman Zippelc28bda22007-05-01 22:32:36 +02002067 while (1) {
2068 tmp = NCR5380_read(STATUS_REG);
2069 /* We only have a valid SCSI phase when REQ is asserted */
2070 if (tmp & SR_REQ) {
2071 phase = (tmp & PHASE_MASK);
2072 if (phase != old_phase) {
2073 old_phase = phase;
Finn Thain8ad3a592014-03-18 11:42:19 +11002074 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002076#if defined(CONFIG_SUN3)
2077 if (phase == PHASE_CMDOUT) {
2078#if defined(REAL_DMA)
2079 void *d;
2080 unsigned long count;
2081
2082 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2083 count = cmd->SCp.buffer->length;
2084 d = sg_virt(cmd->SCp.buffer);
2085 } else {
2086 count = cmd->SCp.this_residual;
2087 d = cmd->SCp.ptr;
2088 }
2089 /* this command setup for dma yet? */
2090 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != cmd)) {
2091 if (cmd->request->cmd_type == REQ_TYPE_FS) {
2092 sun3scsi_dma_setup(d, count,
2093 rq_data_dir(cmd->request));
2094 sun3_dma_setup_done = cmd;
2095 }
2096 }
2097#endif
2098#ifdef SUN3_SCSI_VME
2099 dregs->csr |= CSR_INTR;
2100#endif
2101 }
2102#endif /* CONFIG_SUN3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Roman Zippelc28bda22007-05-01 22:32:36 +02002104 if (sink && (phase != PHASE_MSGOUT)) {
2105 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Roman Zippelc28bda22007-05-01 22:32:36 +02002107 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
2108 ICR_ASSERT_ACK);
2109 while (NCR5380_read(STATUS_REG) & SR_REQ)
2110 ;
2111 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
2112 ICR_ASSERT_ATN);
2113 sink = 0;
2114 continue;
2115 }
2116
2117 switch (phase) {
2118 case PHASE_DATAOUT:
2119#if (NDEBUG & NDEBUG_NO_DATAOUT)
2120 printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
2121 "aborted\n", HOSTNO);
2122 sink = 1;
2123 do_abort(instance);
2124 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002125 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002126 return;
2127#endif
2128 case PHASE_DATAIN:
2129 /*
2130 * If there is no room left in the current buffer in the
2131 * scatter-gather list, move onto the next one.
2132 */
2133
2134 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2135 ++cmd->SCp.buffer;
2136 --cmd->SCp.buffers_residual;
2137 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02002138 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +02002139 /* ++roman: Try to merge some scatter-buffers if
2140 * they are at contiguous physical addresses.
2141 */
2142 merge_contiguous_buffers(cmd);
Finn Thaind65e6342014-03-18 11:42:20 +11002143 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002144 HOSTNO, cmd->SCp.this_residual,
2145 cmd->SCp.buffers_residual);
2146 }
2147
2148 /*
2149 * The preferred transfer method is going to be
2150 * PSEUDO-DMA for systems that are strictly PIO,
2151 * since we can let the hardware do the handshaking.
2152 *
2153 * For this to work, we need to know the transfersize
2154 * ahead of time, since the pseudo-DMA code will sit
2155 * in an unconditional loop.
2156 */
2157
2158 /* ++roman: I suggest, this should be
2159 * #if def(REAL_DMA)
2160 * instead of leaving REAL_DMA out.
2161 */
2162
2163#if defined(REAL_DMA)
Finn Thaine3f463b2014-11-12 16:12:16 +11002164#if !defined(CONFIG_SUN3)
Finn Thainff3d4572016-01-03 16:05:25 +11002165 transfersize = 0;
2166 if (!cmd->device->borken)
Finn Thaine3f463b2014-11-12 16:12:16 +11002167#endif
Finn Thainff3d4572016-01-03 16:05:25 +11002168 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
2169
2170 if (transfersize >= DMA_MIN_SIZE) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002171 len = transfersize;
2172 cmd->SCp.phase = phase;
2173 if (NCR5380_transfer_dma(instance, &phase,
2174 &len, (unsigned char **)&cmd->SCp.ptr)) {
2175 /*
2176 * If the watchdog timer fires, all future
2177 * accesses to this device will use the
2178 * polled-IO. */
Finn Thainff50f9e2014-11-12 16:12:18 +11002179 scmd_printk(KERN_INFO, cmd,
2180 "switching to slow handshake\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02002181 cmd->device->borken = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02002182 sink = 1;
2183 do_abort(instance);
2184 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002185 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002186 /* XXX - need to source or sink data here, as appropriate */
2187 } else {
2188#ifdef REAL_DMA
2189 /* ++roman: When using real DMA,
2190 * information_transfer() should return after
2191 * starting DMA since it has nothing more to
2192 * do.
2193 */
2194 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002196 cmd->SCp.this_residual -= transfersize - len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002198 }
2199 } else
2200#endif /* defined(REAL_DMA) */
2201 NCR5380_transfer_pio(instance, &phase,
2202 (int *)&cmd->SCp.this_residual,
2203 (unsigned char **)&cmd->SCp.ptr);
Finn Thaine3f463b2014-11-12 16:12:16 +11002204#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2205 /* if we had intended to dma that command clear it */
2206 if (sun3_dma_setup_done == cmd)
2207 sun3_dma_setup_done = NULL;
2208#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002209 break;
2210 case PHASE_MSGIN:
2211 len = 1;
2212 data = &tmp;
2213 NCR5380_write(SELECT_ENABLE_REG, 0); /* disable reselects */
2214 NCR5380_transfer_pio(instance, &phase, &len, &data);
2215 cmd->SCp.Message = tmp;
2216
2217 switch (tmp) {
2218 /*
2219 * Linking lets us reduce the time required to get the
2220 * next command out to the device, hopefully this will
2221 * mean we don't waste another revolution due to the delays
2222 * required by ARBITRATION and another SELECTION.
2223 *
2224 * In the current implementation proposal, low level drivers
2225 * merely have to start the next command, pointed to by
2226 * next_link, done() is called as with unlinked commands.
2227 */
2228#ifdef LINKED
2229 case LINKED_CMD_COMPLETE:
2230 case LINKED_FLG_CMD_COMPLETE:
2231 /* Accept message by clearing ACK */
2232 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2233
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002234 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked command "
Roman Zippelc28bda22007-05-01 22:32:36 +02002235 "complete.\n", HOSTNO, cmd->device->id, cmd->device->lun);
2236
2237 /* Enable reselect interrupts */
2238 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2239 /*
2240 * Sanity check : A linked command should only terminate
2241 * with one of these messages if there are more linked
2242 * commands available.
2243 */
2244
2245 if (!cmd->next_link) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002246 printk(KERN_NOTICE "scsi%d: target %d lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002247 "linked command complete, no next_link\n",
2248 HOSTNO, cmd->device->id, cmd->device->lun);
2249 sink = 1;
2250 do_abort(instance);
2251 return;
2252 }
2253
2254 initialize_SCp(cmd->next_link);
2255 /* The next command is still part of this process; copy it
2256 * and don't free it! */
2257 cmd->next_link->tag = cmd->tag;
2258 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002259 dprintk(NDEBUG_LINKED, "scsi%d: target %d lun %llu linked request "
Roman Zippelc28bda22007-05-01 22:32:36 +02002260 "done, calling scsi_done().\n",
2261 HOSTNO, cmd->device->id, cmd->device->lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02002262 cmd->scsi_done(cmd);
2263 cmd = hostdata->connected;
2264 break;
2265#endif /* def LINKED */
2266 case ABORT:
2267 case COMMAND_COMPLETE:
2268 /* Accept message by clearing ACK */
2269 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002270 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d, lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002271 "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
Finn Thaine3c3da62014-11-12 16:12:15 +11002272
2273 local_irq_save(flags);
2274 hostdata->retain_dma_intr++;
2275 hostdata->connected = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002276#ifdef SUPPORT_TAGS
2277 cmd_free_tag(cmd);
2278 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
2279 /* Turn a QUEUE FULL status into BUSY, I think the
2280 * mid level cannot handle QUEUE FULL :-( (The
2281 * command is retried after BUSY). Also update our
2282 * queue size to the number of currently issued
2283 * commands now.
2284 */
2285 /* ++Andreas: the mid level code knows about
2286 QUEUE_FULL now. */
Finn Thain61d739a2014-11-12 16:12:20 +11002287 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002288 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
Roman Zippelc28bda22007-05-01 22:32:36 +02002289 "QUEUE_FULL after %d commands\n",
2290 HOSTNO, cmd->device->id, cmd->device->lun,
2291 ta->nr_allocated);
2292 if (ta->queue_size > ta->nr_allocated)
2293 ta->nr_allocated = ta->queue_size;
2294 }
2295#else
2296 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2297#endif
2298 /* Enable reselect interrupts */
2299 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2300
2301 /*
2302 * I'm not sure what the correct thing to do here is :
2303 *
2304 * If the command that just executed is NOT a request
2305 * sense, the obvious thing to do is to set the result
2306 * code to the values of the stored parameters.
2307 *
2308 * If it was a REQUEST SENSE command, we need some way to
2309 * differentiate between the failure code of the original
2310 * and the failure code of the REQUEST sense - the obvious
2311 * case is success, where we fall through and leave the
2312 * result code unchanged.
2313 *
2314 * The non-obvious place is where the REQUEST SENSE failed
2315 */
2316
2317 if (cmd->cmnd[0] != REQUEST_SENSE)
2318 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2319 else if (status_byte(cmd->SCp.Status) != GOOD)
2320 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2321
Boaz Harrosh28424d32007-09-10 22:37:45 +03002322 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2323 hostdata->ses.cmd_len) {
2324 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2325 hostdata->ses.cmd_len = 0 ;
2326 }
2327
Roman Zippelc28bda22007-05-01 22:32:36 +02002328 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2329 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
Boaz Harrosh28424d32007-09-10 22:37:45 +03002330 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
Roman Zippelc28bda22007-05-01 22:32:36 +02002331
Finn Thaind65e6342014-03-18 11:42:20 +11002332 dprintk(NDEBUG_AUTOSENSE, "scsi%d: performing request sense\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002333
Roman Zippelc28bda22007-05-01 22:32:36 +02002334 LIST(cmd,hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002335 SET_NEXT(cmd, hostdata->issue_queue);
Finn Thain710ddd02014-11-12 16:12:02 +11002336 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thaind65e6342014-03-18 11:42:20 +11002337 dprintk(NDEBUG_QUEUES, "scsi%d: REQUEST SENSE added to head of "
Roman Zippelc28bda22007-05-01 22:32:36 +02002338 "issue queue\n", H_NO(cmd));
Finn Thain997acab2014-11-12 16:11:54 +11002339 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002340 cmd->scsi_done(cmd);
2341 }
2342
Finn Thaine3c3da62014-11-12 16:12:15 +11002343 local_irq_restore(flags);
2344
Roman Zippelc28bda22007-05-01 22:32:36 +02002345 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2346 /*
2347 * Restore phase bits to 0 so an interrupted selection,
2348 * arbitration can resume.
2349 */
2350 NCR5380_write(TARGET_COMMAND_REG, 0);
2351
2352 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2353 barrier();
2354
Finn Thaine3c3da62014-11-12 16:12:15 +11002355 local_irq_save(flags);
Finn Thainef1081c2014-11-12 16:12:14 +11002356 hostdata->retain_dma_intr--;
Roman Zippelc28bda22007-05-01 22:32:36 +02002357 /* ++roman: For Falcon SCSI, release the lock on the
2358 * ST-DMA here if no other commands are waiting on the
2359 * disconnected queue.
2360 */
Finn Thaine3c3da62014-11-12 16:12:15 +11002361 maybe_release_dma_irq(instance);
2362 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002363 return;
2364 case MESSAGE_REJECT:
2365 /* Accept message by clearing ACK */
2366 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2367 /* Enable reselect interrupts */
2368 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2369 switch (hostdata->last_message) {
2370 case HEAD_OF_QUEUE_TAG:
2371 case ORDERED_QUEUE_TAG:
2372 case SIMPLE_QUEUE_TAG:
2373 /* The target obviously doesn't support tagged
2374 * queuing, even though it announced this ability in
2375 * its INQUIRY data ?!? (maybe only this LUN?) Ok,
2376 * clear 'tagged_supported' and lock the LUN, since
2377 * the command is treated as untagged further on.
2378 */
2379 cmd->device->tagged_supported = 0;
2380 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
2381 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002382 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
Roman Zippelc28bda22007-05-01 22:32:36 +02002383 "QUEUE_TAG message; tagged queuing "
2384 "disabled\n",
2385 HOSTNO, cmd->device->id, cmd->device->lun);
2386 break;
2387 }
2388 break;
2389 case DISCONNECT:
2390 /* Accept message by clearing ACK */
2391 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2392 local_irq_save(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002393 LIST(cmd,hostdata->disconnected_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002394 SET_NEXT(cmd, hostdata->disconnected_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02002395 hostdata->connected = NULL;
2396 hostdata->disconnected_queue = cmd;
2397 local_irq_restore(flags);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002398 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d lun %llu was "
Roman Zippelc28bda22007-05-01 22:32:36 +02002399 "moved from connected to the "
2400 "disconnected_queue\n", HOSTNO,
2401 cmd->device->id, cmd->device->lun);
2402 /*
2403 * Restore phase bits to 0 so an interrupted selection,
2404 * arbitration can resume.
2405 */
2406 NCR5380_write(TARGET_COMMAND_REG, 0);
2407
2408 /* Enable reselect interrupts */
2409 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2410 /* Wait for bus free to avoid nasty timeouts */
2411 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2412 barrier();
Finn Thaine3f463b2014-11-12 16:12:16 +11002413#ifdef SUN3_SCSI_VME
2414 dregs->csr |= CSR_DMA_ENABLE;
2415#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002416 return;
2417 /*
2418 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2419 * operation, in violation of the SCSI spec so we can safely
2420 * ignore SAVE/RESTORE pointers calls.
2421 *
2422 * Unfortunately, some disks violate the SCSI spec and
2423 * don't issue the required SAVE_POINTERS message before
2424 * disconnecting, and we have to break spec to remain
2425 * compatible.
2426 */
2427 case SAVE_POINTERS:
2428 case RESTORE_POINTERS:
2429 /* Accept message by clearing ACK */
2430 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2431 /* Enable reselect interrupts */
2432 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2433 break;
2434 case EXTENDED_MESSAGE:
2435 /*
2436 * Extended messages are sent in the following format :
2437 * Byte
2438 * 0 EXTENDED_MESSAGE == 1
2439 * 1 length (includes one byte for code, doesn't
2440 * include first two bytes)
2441 * 2 code
2442 * 3..length+1 arguments
2443 *
2444 * Start the extended message buffer with the EXTENDED_MESSAGE
2445 * byte, since spi_print_msg() wants the whole thing.
2446 */
2447 extended_msg[0] = EXTENDED_MESSAGE;
2448 /* Accept first byte by clearing ACK */
2449 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2450
Finn Thaind65e6342014-03-18 11:42:20 +11002451 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002452
2453 len = 2;
2454 data = extended_msg + 1;
2455 phase = PHASE_MSGIN;
2456 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002457 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002458 (int)extended_msg[1], (int)extended_msg[2]);
2459
2460 if (!len && extended_msg[1] <=
2461 (sizeof(extended_msg) - 1)) {
2462 /* Accept third byte by clearing ACK */
2463 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2464 len = extended_msg[1] - 1;
2465 data = extended_msg + 3;
2466 phase = PHASE_MSGIN;
2467
2468 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002469 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002470 HOSTNO, len);
2471
2472 switch (extended_msg[2]) {
2473 case EXTENDED_SDTR:
2474 case EXTENDED_WDTR:
2475 case EXTENDED_MODIFY_DATA_POINTER:
2476 case EXTENDED_EXTENDED_IDENTIFY:
2477 tmp = 0;
2478 }
2479 } else if (len) {
2480 printk(KERN_NOTICE "scsi%d: error receiving "
2481 "extended message\n", HOSTNO);
2482 tmp = 0;
2483 } else {
2484 printk(KERN_NOTICE "scsi%d: extended message "
2485 "code %02x length %d is too long\n",
2486 HOSTNO, extended_msg[2], extended_msg[1]);
2487 tmp = 0;
2488 }
2489 /* Fall through to reject message */
2490
2491 /*
2492 * If we get something weird that we aren't expecting,
2493 * reject it.
2494 */
2495 default:
2496 if (!tmp) {
Finn Thainff50f9e2014-11-12 16:12:18 +11002497 printk(KERN_INFO "scsi%d: rejecting message ",
2498 instance->host_no);
Roman Zippelc28bda22007-05-01 22:32:36 +02002499 spi_print_msg(extended_msg);
2500 printk("\n");
2501 } else if (tmp != EXTENDED_MESSAGE)
Finn Thainff50f9e2014-11-12 16:12:18 +11002502 scmd_printk(KERN_INFO, cmd,
2503 "rejecting unknown message %02x\n",
2504 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +02002505 else
Finn Thainff50f9e2014-11-12 16:12:18 +11002506 scmd_printk(KERN_INFO, cmd,
2507 "rejecting unknown extended message code %02x, length %d\n",
2508 extended_msg[1], extended_msg[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +02002509
2510 msgout = MESSAGE_REJECT;
2511 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2512 break;
2513 } /* switch (tmp) */
2514 break;
2515 case PHASE_MSGOUT:
2516 len = 1;
2517 data = &msgout;
2518 hostdata->last_message = msgout;
2519 NCR5380_transfer_pio(instance, &phase, &len, &data);
2520 if (msgout == ABORT) {
Finn Thaine3c3da62014-11-12 16:12:15 +11002521 local_irq_save(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002522#ifdef SUPPORT_TAGS
2523 cmd_free_tag(cmd);
2524#else
2525 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2526#endif
2527 hostdata->connected = NULL;
2528 cmd->result = DID_ERROR << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02002529 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine3c3da62014-11-12 16:12:15 +11002530 maybe_release_dma_irq(instance);
2531 local_irq_restore(flags);
2532 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02002533 return;
2534 }
2535 msgout = NOP;
2536 break;
2537 case PHASE_CMDOUT:
2538 len = cmd->cmd_len;
2539 data = cmd->cmnd;
2540 /*
2541 * XXX for performance reasons, on machines with a
2542 * PSEUDO-DMA architecture we should probably
2543 * use the dma transfer function.
2544 */
2545 NCR5380_transfer_pio(instance, &phase, &len, &data);
2546 break;
2547 case PHASE_STATIN:
2548 len = 1;
2549 data = &tmp;
2550 NCR5380_transfer_pio(instance, &phase, &len, &data);
2551 cmd->SCp.Status = tmp;
2552 break;
2553 default:
2554 printk("scsi%d: unknown phase\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11002555 NCR5380_dprint(NDEBUG_ANY, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002556 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002557 } else {
2558 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
2559 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002560 } /* while (1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
2562
2563/*
2564 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2565 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002566 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002567 * 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 -07002568 * nexus has been reestablished,
Roman Zippelc28bda22007-05-01 22:32:36 +02002569 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 * Inputs : instance - this instance of the NCR5380.
2571 *
2572 */
2573
2574
Finn Thaine3f463b2014-11-12 16:12:16 +11002575/* it might eventually prove necessary to do a dma setup on
2576 reselection, but it doesn't seem to be needed now -- sam */
2577
Roman Zippelc28bda22007-05-01 22:32:36 +02002578static void NCR5380_reselect(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579{
Roman Zippelc28bda22007-05-01 22:32:36 +02002580 SETUP_HOSTDATA(instance);
2581 unsigned char target_mask;
Finn Thaine3f463b2014-11-12 16:12:16 +11002582 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002584 unsigned char tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002586 unsigned char msg[3];
Finn Thaine3f463b2014-11-12 16:12:16 +11002587 int __maybe_unused len;
2588 unsigned char __maybe_unused *data, __maybe_unused phase;
Finn Thain710ddd02014-11-12 16:12:02 +11002589 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Roman Zippelc28bda22007-05-01 22:32:36 +02002591 /*
2592 * Disable arbitration, etc. since the host adapter obviously
2593 * lost, and tell an interrupted NCR5380_select() to restart.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
Roman Zippelc28bda22007-05-01 22:32:36 +02002596 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Roman Zippelc28bda22007-05-01 22:32:36 +02002598 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2599
Finn Thaind65e6342014-03-18 11:42:20 +11002600 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002601
2602 /*
2603 * At this point, we have detected that our SCSI ID is on the bus,
2604 * SEL is true and BSY was false for at least one bus settle delay
2605 * (400 ns).
2606 *
2607 * We must assert BSY ourselves, until the target drops the SEL
2608 * signal.
2609 */
2610
2611 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2612
2613 while (NCR5380_read(STATUS_REG) & SR_SEL)
2614 ;
2615 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2616
2617 /*
2618 * Wait for target to go into MSGIN.
2619 */
2620
2621 while (!(NCR5380_read(STATUS_REG) & SR_REQ))
2622 ;
2623
Finn Thaine3f463b2014-11-12 16:12:16 +11002624#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2625 /* acknowledge toggle to MSGIN */
2626 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
2627
2628 /* peek at the byte without really hitting the bus */
2629 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2630#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002631 len = 1;
2632 data = msg;
2633 phase = PHASE_MSGIN;
2634 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaine3f463b2014-11-12 16:12:16 +11002635#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002636
2637 if (!(msg[0] & 0x80)) {
2638 printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
2639 spi_print_msg(msg);
2640 do_abort(instance);
2641 return;
2642 }
2643 lun = (msg[0] & 0x07);
2644
Finn Thaine3f463b2014-11-12 16:12:16 +11002645#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +02002646 /* If the phase is still MSGIN, the target wants to send some more
2647 * messages. In case it supports tagged queuing, this is probably a
2648 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2649 */
2650 tag = TAG_NONE;
Finn Thainca513fc2014-11-12 16:12:19 +11002651 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002652 /* Accept previous IDENTIFY message by clearing ACK */
2653 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2654 len = 2;
2655 data = msg + 1;
2656 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2657 msg[1] == SIMPLE_QUEUE_TAG)
2658 tag = msg[2];
Finn Thaind65e6342014-03-18 11:42:20 +11002659 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
Roman Zippelc28bda22007-05-01 22:32:36 +02002660 "reselection\n", HOSTNO, target_mask, lun, tag);
2661 }
2662#endif
2663
2664 /*
2665 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2666 * just reestablished, and remove it from the disconnected queue.
2667 */
2668
Finn Thain710ddd02014-11-12 16:12:02 +11002669 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002670 tmp; prev = tmp, tmp = NEXT(tmp)) {
2671 if ((target_mask == (1 << tmp->device->id)) && (lun == tmp->device->lun)
2672#ifdef SUPPORT_TAGS
2673 && (tag == tmp->tag)
2674#endif
2675 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002676 if (prev) {
2677 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02002678 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02002679 } else {
2680 REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
2681 hostdata->disconnected_queue = NEXT(tmp);
2682 }
Roman Zippel3130d902007-05-01 22:32:37 +02002683 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002684 break;
2685 }
2686 }
2687
2688 if (!tmp) {
2689 printk(KERN_WARNING "scsi%d: warning: target bitmask %02x lun %d "
2690#ifdef SUPPORT_TAGS
2691 "tag %d "
2692#endif
2693 "not in disconnected_queue.\n",
2694 HOSTNO, target_mask, lun
2695#ifdef SUPPORT_TAGS
2696 , tag
2697#endif
2698 );
2699 /*
2700 * Since we have an established nexus that we can't do anything
2701 * with, we must abort it.
2702 */
2703 do_abort(instance);
2704 return;
2705 }
2706
Finn Thaine3f463b2014-11-12 16:12:16 +11002707#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2708 /* engage dma setup for the command we just saw */
2709 {
2710 void *d;
2711 unsigned long count;
2712
2713 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2714 count = tmp->SCp.buffer->length;
2715 d = sg_virt(tmp->SCp.buffer);
2716 } else {
2717 count = tmp->SCp.this_residual;
2718 d = tmp->SCp.ptr;
2719 }
2720 /* setup this command for dma if not already */
2721 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != tmp)) {
2722 sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
2723 sun3_dma_setup_done = tmp;
2724 }
2725 }
2726
2727 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2728#endif
2729
Roman Zippelc28bda22007-05-01 22:32:36 +02002730 /* Accept message by clearing ACK */
2731 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2732
Finn Thaine3f463b2014-11-12 16:12:16 +11002733#if defined(SUPPORT_TAGS) && defined(CONFIG_SUN3)
2734 /* If the phase is still MSGIN, the target wants to send some more
2735 * messages. In case it supports tagged queuing, this is probably a
2736 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2737 */
2738 tag = TAG_NONE;
2739 if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
2740 /* Accept previous IDENTIFY message by clearing ACK */
2741 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2742 len = 2;
2743 data = msg + 1;
2744 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2745 msg[1] == SIMPLE_QUEUE_TAG)
2746 tag = msg[2];
2747 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at reselection\n"
2748 HOSTNO, target_mask, lun, tag);
2749 }
2750#endif
2751
Roman Zippelc28bda22007-05-01 22:32:36 +02002752 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002753 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002754 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
2756
2757
2758/*
Finn Thain710ddd02014-11-12 16:12:02 +11002759 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 *
2761 * Purpose : abort a command
2762 *
Finn Thain710ddd02014-11-12 16:12:02 +11002763 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Roman Zippelc28bda22007-05-01 22:32:36 +02002764 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 * used.
2766 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002767 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002769 * XXX - there is no way to abort the command that is currently
2770 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 * a problem, we could implement longjmp() / setjmp(), setjmp()
Roman Zippelc28bda22007-05-01 22:32:36 +02002772 * called where the loop started in NCR5380_main().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 */
2774
2775static
Finn Thain710ddd02014-11-12 16:12:02 +11002776int NCR5380_abort(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Roman Zippelc28bda22007-05-01 22:32:36 +02002778 struct Scsi_Host *instance = cmd->device->host;
2779 SETUP_HOSTDATA(instance);
Finn Thain710ddd02014-11-12 16:12:02 +11002780 struct scsi_cmnd *tmp, **prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02002781 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002783 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Roman Zippelc28bda22007-05-01 22:32:36 +02002785 NCR5380_print_status(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Roman Zippelc28bda22007-05-01 22:32:36 +02002787 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Finn Thaind65e6342014-03-18 11:42:20 +11002789 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002790 NCR5380_read(BUS_AND_STATUS_REG),
2791 NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
2793#if 1
Roman Zippelc28bda22007-05-01 22:32:36 +02002794 /*
2795 * Case 1 : If the command is the currently executing command,
2796 * we'll set the aborted flag and return control so that
2797 * information transfer routine can exit cleanly.
2798 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Roman Zippelc28bda22007-05-01 22:32:36 +02002800 if (hostdata->connected == cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
Finn Thaind65e6342014-03-18 11:42:20 +11002802 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002803 /*
2804 * We should perform BSY checking, and make sure we haven't slipped
2805 * into BUS FREE.
2806 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Roman Zippelc28bda22007-05-01 22:32:36 +02002808 /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
2809 /*
2810 * Since we can't change phases until we've completed the current
2811 * handshake, we have to source or sink a byte of data if the current
2812 * phase is not MSGOUT.
2813 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Roman Zippelc28bda22007-05-01 22:32:36 +02002815 /*
2816 * Return control to the executing NCR drive so we can clear the
2817 * aborted flag and get back into our main loop.
2818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Roman Zippelc28bda22007-05-01 22:32:36 +02002820 if (do_abort(instance) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002821 hostdata->connected = NULL;
2822 cmd->result = DID_ABORT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002824 cmd_free_tag(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002826 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002828 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002829 local_irq_restore(flags);
2830 cmd->scsi_done(cmd);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002831 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002832 } else {
Finn Thaine3c3da62014-11-12 16:12:15 +11002833 local_irq_restore(flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002834 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002835 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002839
2840 /*
2841 * Case 2 : If the command hasn't been issued yet, we simply remove it
2842 * from the issue queue.
2843 */
Finn Thain710ddd02014-11-12 16:12:02 +11002844 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2845 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002846 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2847 if (cmd == tmp) {
2848 REMOVE(5, *prev, tmp, NEXT(tmp));
2849 (*prev) = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002850 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002851 tmp->result = DID_ABORT << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002852 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002853 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002854 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002855 HOSTNO);
2856 /* Tagged queuing note: no tag to free here, hasn't been assigned
2857 * yet... */
2858 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002859 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
2861 }
2862
Roman Zippelc28bda22007-05-01 22:32:36 +02002863 /*
2864 * Case 3 : If any commands are connected, we're going to fail the abort
2865 * and let the high level SCSI driver retry at a later time or
2866 * issue a reset.
2867 *
2868 * Timeouts, and therefore aborted commands, will be highly unlikely
2869 * and handling them cleanly in this situation would make the common
2870 * case of noresets less efficient, and would pollute our code. So,
2871 * we fail.
2872 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Roman Zippelc28bda22007-05-01 22:32:36 +02002874 if (hostdata->connected) {
2875 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002876 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002877 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Roman Zippelc28bda22007-05-01 22:32:36 +02002880 /*
2881 * Case 4: If the command is currently disconnected from the bus, and
2882 * there are no connected commands, we reconnect the I_T_L or
2883 * I_T_L_Q nexus associated with it, go into message out, and send
2884 * an abort message.
2885 *
2886 * This case is especially ugly. In order to reestablish the nexus, we
2887 * need to call NCR5380_select(). The easiest way to implement this
2888 * function was to abort if the bus was busy, and let the interrupt
2889 * handler triggered on the SEL for reselect take care of lost arbitrations
2890 * where necessary, meaning interrupts need to be enabled.
2891 *
2892 * When interrupts are enabled, the queues may change - so we
2893 * can't remove it from the disconnected queue before selecting it
2894 * because that could cause a failure in hashing the nexus if that
2895 * device reselected.
2896 *
2897 * Since the queues may change, we can't use the pointers from when we
2898 * first locate it.
2899 *
2900 * So, we must first locate the command, and if NCR5380_select()
2901 * succeeds, then issue the abort, relocate the command and remove
2902 * it from the disconnected queue.
2903 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Finn Thain710ddd02014-11-12 16:12:02 +11002905 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002906 tmp = NEXT(tmp)) {
2907 if (cmd == tmp) {
2908 local_irq_restore(flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002909 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002910
Finn Thain76f13b92014-11-12 16:11:53 +11002911 if (NCR5380_select(instance, cmd))
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002912 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002913
Finn Thaind65e6342014-03-18 11:42:20 +11002914 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002915
2916 do_abort(instance);
2917
2918 local_irq_save(flags);
Finn Thain710ddd02014-11-12 16:12:02 +11002919 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2920 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002921 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2922 if (cmd == tmp) {
2923 REMOVE(5, *prev, tmp, NEXT(tmp));
2924 *prev = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002925 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002926 tmp->result = DID_ABORT << 16;
2927 /* We must unlock the tag/LUN immediately here, since the
2928 * target goes to BUS FREE and doesn't send us another
2929 * message (COMMAND_COMPLETE or the like)
2930 */
2931#ifdef SUPPORT_TAGS
2932 cmd_free_tag(tmp);
2933#else
2934 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2935#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002936 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002937 local_irq_restore(flags);
2938 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002939 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002940 }
2941 }
2942 }
2943 }
2944
Finn Thaine3c3da62014-11-12 16:12:15 +11002945 /* Maybe it is sufficient just to release the ST-DMA lock... (if
2946 * possible at all) At least, we should check if the lock could be
2947 * released after the abort, in case it is kept due to some bug.
2948 */
2949 maybe_release_dma_irq(instance);
2950 local_irq_restore(flags);
2951
Roman Zippelc28bda22007-05-01 22:32:36 +02002952 /*
2953 * Case 5 : If we reached this point, the command was not found in any of
2954 * the queues.
2955 *
2956 * We probably reached this point because of an unlikely race condition
2957 * between the command completing successfully and the abortion code,
2958 * so we won't panic, but we will notify the user in case something really
2959 * broke.
2960 */
2961
Joe Perchesad361c92009-07-06 13:05:40 -07002962 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002963
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002964 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
2966
2967
Finn Thain3be1b3e2016-01-03 16:05:12 +11002968/**
2969 * NCR5380_bus_reset - reset the SCSI bus
2970 * @cmd: SCSI command undergoing EH
Roman Zippelc28bda22007-05-01 22:32:36 +02002971 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002972 * Returns SUCCESS
Roman Zippelc28bda22007-05-01 22:32:36 +02002973 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Finn Thain710ddd02014-11-12 16:12:02 +11002975static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Finn Thaine3c3da62014-11-12 16:12:15 +11002977 struct Scsi_Host *instance = cmd->device->host;
2978 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002979 int i;
2980 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Finn Thain3be1b3e2016-01-03 16:05:12 +11002982 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Finn Thain3be1b3e2016-01-03 16:05:12 +11002984#if (NDEBUG & NDEBUG_ANY)
2985 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
2986 NCR5380_print_status(instance);
2987#endif
2988
2989 do_reset(instance);
2990
Roman Zippelc28bda22007-05-01 22:32:36 +02002991 /* reset NCR registers */
Roman Zippelc28bda22007-05-01 22:32:36 +02002992 NCR5380_write(MODE_REG, MR_BASE);
2993 NCR5380_write(TARGET_COMMAND_REG, 0);
2994 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Roman Zippelc28bda22007-05-01 22:32:36 +02002996 /* After the reset, there are no more connected or disconnected commands
2997 * and no busy units; so clear the low-level status here to avoid
2998 * conflicts when the mid-level code tries to wake up the affected
2999 * commands!
3000 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Roman Zippelc28bda22007-05-01 22:32:36 +02003002 if (hostdata->issue_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003003 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003004 if (hostdata->connected)
Finn Thaind65e6342014-03-18 11:42:20 +11003005 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted a connected command\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02003006 if (hostdata->disconnected_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11003007 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Roman Zippelc28bda22007-05-01 22:32:36 +02003009 hostdata->issue_queue = NULL;
3010 hostdata->connected = NULL;
3011 hostdata->disconnected_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +11003013 free_all_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02003015 for (i = 0; i < 8; ++i)
3016 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02003018 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11003020
3021 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02003022 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Michael Schmitz2b0f8342014-05-02 20:43:01 +12003024 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}