blob: f31a4d544e2ef673703e96419ff3058f8440306b [file] [log] [blame]
Roman Zippelc28bda22007-05-01 22:32:36 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * NCR 5380 generic driver routines. These should make it *trivial*
Roman Zippelc28bda22007-05-01 22:32:36 +02003 * to implement 5380 SCSI drivers under Linux with a non-trantor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * architecture.
5 *
6 * Note that these routines also work with NR53c400 family chips.
7 *
8 * Copyright 1993, Drew Eckhardt
Roman Zippelc28bda22007-05-01 22:32:36 +02009 * Visionary Computing
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * (Unix and Linux consulting and custom programming)
Roman Zippelc28bda22007-05-01 22:32:36 +020011 * drew@colorado.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * +1 (303) 666-5836
13 *
Roman Zippelc28bda22007-05-01 22:32:36 +020014 * For more information, please consult
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * NCR 5380 Family
17 * SCSI Protocol Controller
18 * Databook
19 *
20 * NCR Microelectronics
21 * 1635 Aeroplaza Drive
22 * Colorado Springs, CO 80916
23 * 1+ (719) 578-3400
24 * 1+ (800) 334-5454
25 */
26
27/*
28 * ++roman: To port the 5380 driver to the Atari, I had to do some changes in
29 * this file, too:
30 *
31 * - Some of the debug statements were incorrect (undefined variables and the
32 * like). I fixed that.
33 *
34 * - In information_transfer(), I think a #ifdef was wrong. Looking at the
35 * possible DMA transfer size should also happen for REAL_DMA. I added this
36 * in the #if statement.
37 *
38 * - When using real DMA, information_transfer() should return in a DATAOUT
39 * phase after starting the DMA. It has nothing more to do.
40 *
41 * - The interrupt service routine should run main after end of DMA, too (not
42 * only after RESELECTION interrupts). Additionally, it should _not_ test
43 * for more interrupts after running main, since a DMA process may have
44 * been started and interrupts are turned on now. The new int could happen
45 * inside the execution of NCR5380_intr(), leading to recursive
46 * calls.
47 *
48 * - I've added a function merge_contiguous_buffers() that tries to
49 * merge scatter-gather buffers that are located at contiguous
50 * physical addresses and can be processed with the same DMA setup.
51 * Since most scatter-gather operations work on a page (4K) of
52 * 4 buffers (1K), in more than 90% of all cases three interrupts and
53 * DMA setup actions are saved.
54 *
55 * - I've deleted all the stuff for AUTOPROBE_IRQ, REAL_DMA_POLL, PSEUDO_DMA
56 * and USLEEP, because these were messing up readability and will never be
57 * needed for Atari SCSI.
Roman Zippelc28bda22007-05-01 22:32:36 +020058 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * - I've revised the NCR5380_main() calling scheme (relax the 'main_running'
60 * stuff), and 'main' is executed in a bottom half if awoken by an
61 * interrupt.
62 *
63 * - The code was quite cluttered up by "#if (NDEBUG & NDEBUG_*) printk..."
64 * constructs. In my eyes, this made the source rather unreadable, so I
65 * finally replaced that by the *_PRINTK() macros.
66 *
67 */
68
Finn Thaine3f463b2014-11-12 16:12:16 +110069/* Adapted for the sun3 by Sam Creasey. */
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#if (NDEBUG & NDEBUG_LISTS)
Roman Zippelc28bda22007-05-01 22:32:36 +020072#define LIST(x, y) \
73 do { \
74 printk("LINE:%d Adding %p to %p\n", \
75 __LINE__, (void*)(x), (void*)(y)); \
76 if ((x) == (y)) \
77 udelay(5); \
78 } while (0)
79#define REMOVE(w, x, y, z) \
80 do { \
81 printk("LINE:%d Removing: %p->%p %p->%p \n", \
82 __LINE__, (void*)(w), (void*)(x), \
83 (void*)(y), (void*)(z)); \
84 if ((x) == (y)) \
85 udelay(5); \
86 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#else
88#define LIST(x,y)
89#define REMOVE(w,x,y,z)
90#endif
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * Design
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 *
Roman Zippelc28bda22007-05-01 22:32:36 +020095 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * one simply writes appropriate system specific macros (ie, data
Roman Zippelc28bda22007-05-01 22:32:36 +020097 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * memory mapped) and drops this file in their 'C' wrapper.
99 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200100 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 * each 5380 in the system - commands that haven't been issued yet,
Roman Zippelc28bda22007-05-01 22:32:36 +0200102 * and commands that are currently executing. This means that an
103 * unlimited number of commands may be queued, letting
104 * more commands propagate from the higher driver levels giving higher
105 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
106 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * while a command is already executing.
108 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200110 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200112 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
113 * piece of hardware that requires you to sit in a loop polling for
114 * the REQ signal as long as you are connected. Some devices are
115 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Finn Thain686f3992016-01-03 16:05:26 +1100116 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * broken devices are the exception rather than the rule and I'd rather
118 * spend my time optimizing for the normal case.
119 *
120 * Architecture :
121 *
122 * At the heart of the design is a coroutine, NCR5380_main,
Finn Thainff50f9e2014-11-12 16:12:18 +1100123 * which is started from a workqueue for each NCR5380 host in the
124 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
125 * removing the commands from the issue queue and calling
126 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
128 * Once a nexus is established, the NCR5380_information_transfer()
129 * phase goes through the various phases as instructed by the target.
130 * if the target goes into MSG IN and sends a DISCONNECT message,
131 * the command structure is placed into the per instance disconnected
Finn Thainff50f9e2014-11-12 16:12:18 +1100132 * queue, and NCR5380_main tries to find more work. If the target is
133 * idle for too long, the system will try to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
135 * If a command has disconnected, eventually an interrupt will trigger,
136 * calling NCR5380_intr() which will in turn call NCR5380_reselect
137 * to reestablish a nexus. This will run main if necessary.
138 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200139 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * appropriate.
141 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200142 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * structures, being initialized after the command is connected
144 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
145 * Note that in violation of the standard, an implicit SAVE POINTERS operation
146 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
147 */
148
149/*
150 * Using this file :
151 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Roman Zippelc28bda22007-05-01 22:32:36 +0200152 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * and macros and include this file in your driver.
154 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200155 * These macros control options :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Roman Zippelc28bda22007-05-01 22:32:36 +0200157 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100159 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
160 * transceivers.
161 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
163 *
164 * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
165 *
166 * These macros MUST be defined :
Roman Zippelc28bda22007-05-01 22:32:36 +0200167 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * NCR5380_read(register) - read from the specified register
169 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200170 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100172 * NCR5380_implementation_fields - additional fields needed for this
173 * specific implementation of the NCR5380
174 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * Either real DMA *or* pseudo DMA may be implemented
Roman Zippelc28bda22007-05-01 22:32:36 +0200176 * REAL functions :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
Roman Zippelc28bda22007-05-01 22:32:36 +0200178 * Note that the DMA setup functions should return the number of bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * that they were able to program the controller for.
180 *
Roman Zippelc28bda22007-05-01 22:32:36 +0200181 * Also note that generic i386/PC versions of these macros are
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * available as NCR5380_i386_dma_write_setup,
183 * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
184 *
185 * NCR5380_dma_write_setup(instance, src, count) - initialize
186 * NCR5380_dma_read_setup(instance, dst, count) - initialize
187 * NCR5380_dma_residual(instance); - residual count
188 *
189 * PSEUDO functions :
190 * NCR5380_pwrite(instance, src, count)
191 * NCR5380_pread(instance, dst, count);
192 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * The generic driver is initialized by calling NCR5380_init(instance),
Roman Zippelc28bda22007-05-01 22:32:36 +0200194 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
Finn Thain8c325132014-11-12 16:11:58 +1100196 * possible) function may be used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* Macros ease life... :-) */
200#define SETUP_HOSTDATA(in) \
201 struct NCR5380_hostdata *hostdata = \
202 (struct NCR5380_hostdata *)(in)->hostdata
203#define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)
204
Finn Thain710ddd02014-11-12 16:12:02 +1100205#define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
Roman Zippel3130d902007-05-01 22:32:37 +0200206#define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next))
Finn Thain710ddd02014-11-12 16:12:02 +1100207#define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#define HOSTNO instance->host_no
210#define H_NO(cmd) (cmd)->device->host->host_no
211
Finn Thain636b1ec2016-01-03 16:05:10 +1100212static int do_abort(struct Scsi_Host *);
213static void do_reset(struct Scsi_Host *);
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#ifdef SUPPORT_TAGS
216
217/*
218 * Functions for handling tagged queuing
219 * =====================================
220 *
221 * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
222 *
223 * Using consecutive numbers for the tags is no good idea in my eyes. There
224 * could be wrong re-usings if the counter (8 bit!) wraps and some early
225 * command has been preempted for a long time. My solution: a bitfield for
226 * remembering used tags.
227 *
228 * There's also the problem that each target has a certain queue size, but we
229 * cannot know it in advance :-( We just see a QUEUE_FULL status being
230 * returned. So, in this case, the driver internal queue size assumption is
231 * reduced to the number of active tags if QUEUE_FULL is returned by the
Finn Thaine42d0152016-01-03 16:05:49 +1100232 * target.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * We're also not allowed running tagged commands as long as an untagged
235 * command is active. And REQUEST SENSE commands after a contingent allegiance
236 * condition _must_ be untagged. To keep track whether an untagged command has
237 * been issued, the host->busy array is still employed, as it is without
238 * support for tagged queuing.
239 *
240 * One could suspect that there are possible race conditions between
241 * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
242 * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
243 * which already guaranteed to be running at most once. It is also the only
244 * place where tags/LUNs are allocated. So no other allocation can slip
245 * between that pair, there could only happen a reselection, which can free a
246 * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
247 * important: the tag bit must be cleared before 'nr_allocated' is decreased.
248 */
249
Finn Thainca513fc2014-11-12 16:12:19 +1100250static void __init init_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Roman Zippelc28bda22007-05-01 22:32:36 +0200252 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100253 struct tag_alloc *ta;
Roman Zippelc28bda22007-05-01 22:32:36 +0200254
Finn Thainca513fc2014-11-12 16:12:19 +1100255 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200256 return;
257
258 for (target = 0; target < 8; ++target) {
259 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100260 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200261 bitmap_zero(ta->allocated, MAX_TAGS);
262 ta->nr_allocated = 0;
263 /* At the beginning, assume the maximum queue size we could
264 * support (MAX_TAGS). This value will be decreased if the target
265 * returns QUEUE_FULL status.
266 */
267 ta->queue_size = MAX_TAGS;
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272
273/* Check if we can issue a command to this LUN: First see if the LUN is marked
274 * busy by an untagged command. If the command should use tagged queuing, also
275 * check that there is a free tag and the target's queue won't overflow. This
276 * function should be called with interrupts disabled to avoid race
277 * conditions.
Roman Zippelc28bda22007-05-01 22:32:36 +0200278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Finn Thain710ddd02014-11-12 16:12:02 +1100280static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200282 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200283 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200285 if (hostdata->busy[cmd->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200286 return 1;
287 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100288 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
289 !cmd->device->tagged_supported)
Roman Zippelc28bda22007-05-01 22:32:36 +0200290 return 0;
Finn Thain61d739a2014-11-12 16:12:20 +1100291 if (hostdata->TagAlloc[scmd_id(cmd)][lun].nr_allocated >=
292 hostdata->TagAlloc[scmd_id(cmd)][lun].queue_size) {
Finn Thaind65e6342014-03-18 11:42:20 +1100293 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d: no free tags\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200294 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200295 return 1;
296 }
297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300
301/* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
302 * must be called before!), or reserve the LUN in 'busy' if the command is
303 * untagged.
304 */
305
Finn Thain710ddd02014-11-12 16:12:02 +1100306static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200308 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200309 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Roman Zippelc28bda22007-05-01 22:32:36 +0200311 /* If we or the target don't support tagged queuing, allocate the LUN for
312 * an untagged command.
313 */
314 if (!should_be_tagged ||
Finn Thainca513fc2014-11-12 16:12:19 +1100315 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
316 !cmd->device->tagged_supported) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200317 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200318 hostdata->busy[cmd->device->id] |= (1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100319 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d now allocated by untagged "
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200320 "command\n", H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200321 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100322 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Roman Zippelc28bda22007-05-01 22:32:36 +0200324 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
325 set_bit(cmd->tag, ta->allocated);
326 ta->nr_allocated++;
Finn Thaind65e6342014-03-18 11:42:20 +1100327 dprintk(NDEBUG_TAGS, "scsi%d: using tag %d for target %d lun %d "
Roman Zippelc28bda22007-05-01 22:32:36 +0200328 "(now %d tags in use)\n",
329 H_NO(cmd), cmd->tag, cmd->device->id,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200330 lun, ta->nr_allocated);
Roman Zippelc28bda22007-05-01 22:32:36 +0200331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334
335/* Mark the tag of command 'cmd' as free, or in case of an untagged command,
336 * unlock the LUN.
337 */
338
Finn Thain710ddd02014-11-12 16:12:02 +1100339static void cmd_free_tag(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200341 u8 lun = cmd->device->lun;
Roman Zippelc28bda22007-05-01 22:32:36 +0200342 SETUP_HOSTDATA(cmd->device->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Roman Zippelc28bda22007-05-01 22:32:36 +0200344 if (cmd->tag == TAG_NONE) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200345 hostdata->busy[cmd->device->id] &= ~(1 << lun);
Finn Thaind65e6342014-03-18 11:42:20 +1100346 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d untagged cmd finished\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200347 H_NO(cmd), cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200348 } else if (cmd->tag >= MAX_TAGS) {
349 printk(KERN_NOTICE "scsi%d: trying to free bad tag %d!\n",
350 H_NO(cmd), cmd->tag);
351 } else {
Finn Thain61d739a2014-11-12 16:12:20 +1100352 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200353 clear_bit(cmd->tag, ta->allocated);
354 ta->nr_allocated--;
Finn Thaind65e6342014-03-18 11:42:20 +1100355 dprintk(NDEBUG_TAGS, "scsi%d: freed tag %d for target %d lun %d\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200356 H_NO(cmd), cmd->tag, cmd->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360
Finn Thainca513fc2014-11-12 16:12:19 +1100361static void free_all_tags(struct NCR5380_hostdata *hostdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Roman Zippelc28bda22007-05-01 22:32:36 +0200363 int target, lun;
Finn Thain61d739a2014-11-12 16:12:20 +1100364 struct tag_alloc *ta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Finn Thainca513fc2014-11-12 16:12:19 +1100366 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
Roman Zippelc28bda22007-05-01 22:32:36 +0200367 return;
368
369 for (target = 0; target < 8; ++target) {
370 for (lun = 0; lun < 8; ++lun) {
Finn Thain61d739a2014-11-12 16:12:20 +1100371 ta = &hostdata->TagAlloc[target][lun];
Roman Zippelc28bda22007-05-01 22:32:36 +0200372 bitmap_zero(ta->allocated, MAX_TAGS);
373 ta->nr_allocated = 0;
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378#endif /* SUPPORT_TAGS */
379
380
381/*
Finn Thain710ddd02014-11-12 16:12:02 +1100382 * Function: void merge_contiguous_buffers( struct scsi_cmnd *cmd )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *
384 * Purpose: Try to merge several scatter-gather requests into one DMA
385 * transfer. This is possible if the scatter buffers lie on
386 * physical contiguous addresses.
387 *
Finn Thain710ddd02014-11-12 16:12:02 +1100388 * Parameters: struct scsi_cmnd *cmd
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * The command to work on. The first scatter buffer's data are
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300390 * assumed to be already transferred into ptr/this_residual.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
392
Finn Thain710ddd02014-11-12 16:12:02 +1100393static void merge_contiguous_buffers(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Finn Thaine3f463b2014-11-12 16:12:16 +1100395#if !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +0200396 unsigned long endaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200398 unsigned long oldlen = cmd->SCp.this_residual;
399 int cnt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#endif
401
Roman Zippelc28bda22007-05-01 22:32:36 +0200402 for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
403 cmd->SCp.buffers_residual &&
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200404 virt_to_phys(sg_virt(&cmd->SCp.buffer[1])) == endaddr;) {
Finn Thaind65e6342014-03-18 11:42:20 +1100405 dprintk(NDEBUG_MERGING, "VTOP(%p) == %08lx -> merging\n",
Geert Uytterhoeven5a1cb472007-10-24 08:55:40 +0200406 page_address(sg_page(&cmd->SCp.buffer[1])), endaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200408 ++cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#endif
Roman Zippelc28bda22007-05-01 22:32:36 +0200410 ++cmd->SCp.buffer;
411 --cmd->SCp.buffers_residual;
412 cmd->SCp.this_residual += cmd->SCp.buffer->length;
413 endaddr += cmd->SCp.buffer->length;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#if (NDEBUG & NDEBUG_MERGING)
Roman Zippelc28bda22007-05-01 22:32:36 +0200416 if (oldlen != cmd->SCp.this_residual)
Finn Thaind65e6342014-03-18 11:42:20 +1100417 dprintk(NDEBUG_MERGING, "merged %d buffers from %p, new length %08x\n",
Roman Zippelc28bda22007-05-01 22:32:36 +0200418 cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#endif
Finn Thaine3f463b2014-11-12 16:12:16 +1100420#endif /* !defined(CONFIG_SUN3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Finn Thainff50f9e2014-11-12 16:12:18 +1100423/**
424 * initialize_SCp - init the scsi pointer field
425 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100427 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
429
Finn Thain710ddd02014-11-12 16:12:02 +1100430static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Roman Zippelc28bda22007-05-01 22:32:36 +0200432 /*
433 * Initialize the Scsi Pointer field so that all of the commands in the
434 * various queues are valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
Roman Zippelc28bda22007-05-01 22:32:36 +0200436
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200437 if (scsi_bufflen(cmd)) {
438 cmd->SCp.buffer = scsi_sglist(cmd);
439 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200440 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +0200441 cmd->SCp.this_residual = cmd->SCp.buffer->length;
442 /* ++roman: Try to merge some scatter-buffers if they are at
443 * contiguous physical addresses.
444 */
445 merge_contiguous_buffers(cmd);
446 } else {
447 cmd->SCp.buffer = NULL;
448 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200449 cmd->SCp.ptr = NULL;
450 cmd->SCp.this_residual = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +0200451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Finn Thain636b1ec2016-01-03 16:05:10 +1100454/**
Finn Thainb32ade12016-01-03 16:05:41 +1100455 * NCR5380_poll_politely2 - wait for two chip register values
Finn Thain636b1ec2016-01-03 16:05:10 +1100456 * @instance: controller to poll
Finn Thainb32ade12016-01-03 16:05:41 +1100457 * @reg1: 5380 register to poll
458 * @bit1: Bitmask to check
459 * @val1: Expected value
460 * @reg2: Second 5380 register to poll
461 * @bit2: Second bitmask to check
462 * @val2: Second expected value
Finn Thain2f854b82016-01-03 16:05:22 +1100463 * @wait: Time-out in jiffies
Finn Thain636b1ec2016-01-03 16:05:10 +1100464 *
Finn Thain2f854b82016-01-03 16:05:22 +1100465 * Polls the chip in a reasonably efficient manner waiting for an
466 * event to occur. After a short quick poll we begin to yield the CPU
467 * (if possible). In irq contexts the time-out is arbitrarily limited.
468 * Callers may hold locks as long as they are held in irq mode.
Finn Thain636b1ec2016-01-03 16:05:10 +1100469 *
Finn Thainb32ade12016-01-03 16:05:41 +1100470 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
Finn Thain636b1ec2016-01-03 16:05:10 +1100471 */
472
Finn Thainb32ade12016-01-03 16:05:41 +1100473static int NCR5380_poll_politely2(struct Scsi_Host *instance,
474 int reg1, int bit1, int val1,
475 int reg2, int bit2, int val2, int wait)
Finn Thain636b1ec2016-01-03 16:05:10 +1100476{
Finn Thain2f854b82016-01-03 16:05:22 +1100477 struct NCR5380_hostdata *hostdata = shost_priv(instance);
478 unsigned long deadline = jiffies + wait;
479 unsigned long n;
Finn Thain636b1ec2016-01-03 16:05:10 +1100480
Finn Thain2f854b82016-01-03 16:05:22 +1100481 /* Busy-wait for up to 10 ms */
482 n = min(10000U, jiffies_to_usecs(wait));
483 n *= hostdata->accesses_per_ms;
Finn Thainb32ade12016-01-03 16:05:41 +1100484 n /= 2000;
Finn Thain2f854b82016-01-03 16:05:22 +1100485 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100486 if ((NCR5380_read(reg1) & bit1) == val1)
487 return 0;
488 if ((NCR5380_read(reg2) & bit2) == val2)
Finn Thain636b1ec2016-01-03 16:05:10 +1100489 return 0;
490 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100491 } while (n--);
492
493 if (irqs_disabled() || in_interrupt())
494 return -ETIMEDOUT;
495
496 /* Repeatedly sleep for 1 ms until deadline */
497 while (time_is_after_jiffies(deadline)) {
498 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100499 if ((NCR5380_read(reg1) & bit1) == val1)
500 return 0;
501 if ((NCR5380_read(reg2) & bit2) == val2)
Finn Thain2f854b82016-01-03 16:05:22 +1100502 return 0;
Finn Thain636b1ec2016-01-03 16:05:10 +1100503 }
504
Finn Thain636b1ec2016-01-03 16:05:10 +1100505 return -ETIMEDOUT;
506}
507
Finn Thainb32ade12016-01-03 16:05:41 +1100508static inline int NCR5380_poll_politely(struct Scsi_Host *instance,
509 int reg, int bit, int val, int wait)
510{
511 return NCR5380_poll_politely2(instance, reg, bit, val,
512 reg, bit, val, wait);
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515#if NDEBUG
516static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200517 unsigned char mask;
518 const char *name;
519} signals[] = {
520 { SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" },
521 { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD, "CD" }, { SR_IO, "IO" },
522 { SR_SEL, "SEL" }, {0, NULL}
523}, basrs[] = {
524 {BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}
525}, icrs[] = {
526 {ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
527 {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"},
528 {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"},
529 {0, NULL}
530}, mrs[] = {
531 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"},
532 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR,
533 "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
534 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
535 {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"},
536 {0, NULL}
537};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Finn Thainff50f9e2014-11-12 16:12:18 +1100539/**
540 * NCR5380_print - print scsi bus signals
541 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100543 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 */
545
Roman Zippelc28bda22007-05-01 22:32:36 +0200546static void NCR5380_print(struct Scsi_Host *instance)
547{
548 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Roman Zippelc28bda22007-05-01 22:32:36 +0200550 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
551 status = NCR5380_read(STATUS_REG);
552 mr = NCR5380_read(MODE_REG);
553 icr = NCR5380_read(INITIATOR_COMMAND_REG);
554 basr = NCR5380_read(BUS_AND_STATUS_REG);
Finn Thain11d2f632016-01-03 16:05:51 +1100555
Roman Zippelc28bda22007-05-01 22:32:36 +0200556 printk("STATUS_REG: %02x ", status);
557 for (i = 0; signals[i].mask; ++i)
558 if (status & signals[i].mask)
559 printk(",%s", signals[i].name);
560 printk("\nBASR: %02x ", basr);
561 for (i = 0; basrs[i].mask; ++i)
562 if (basr & basrs[i].mask)
563 printk(",%s", basrs[i].name);
564 printk("\nICR: %02x ", icr);
565 for (i = 0; icrs[i].mask; ++i)
566 if (icr & icrs[i].mask)
567 printk(",%s", icrs[i].name);
568 printk("\nMODE: %02x ", mr);
569 for (i = 0; mrs[i].mask; ++i)
570 if (mr & mrs[i].mask)
571 printk(",%s", mrs[i].name);
572 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575static struct {
Roman Zippelc28bda22007-05-01 22:32:36 +0200576 unsigned char value;
577 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578} phases[] = {
Roman Zippelc28bda22007-05-01 22:32:36 +0200579 {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
580 {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
581 {PHASE_UNKNOWN, "UNKNOWN"}
582};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Finn Thainff50f9e2014-11-12 16:12:18 +1100584/**
585 * NCR5380_print_phase - show SCSI phase
586 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100588 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100590 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
592
593static void NCR5380_print_phase(struct Scsi_Host *instance)
594{
Roman Zippelc28bda22007-05-01 22:32:36 +0200595 unsigned char status;
596 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Roman Zippelc28bda22007-05-01 22:32:36 +0200598 status = NCR5380_read(STATUS_REG);
599 if (!(status & SR_REQ))
600 printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.\n", HOSTNO);
601 else {
602 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
603 (phases[i].value != (status & PHASE_MASK)); ++i)
604 ;
605 printk(KERN_DEBUG "scsi%d: phase %s\n", HOSTNO, phases[i].name);
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609#endif
610
Finn Thain8c325132014-11-12 16:11:58 +1100611/**
612 * NCR58380_info - report driver and host information
613 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 *
Finn Thain8c325132014-11-12 16:11:58 +1100615 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 *
Finn Thain8c325132014-11-12 16:11:58 +1100617 * Locks: none
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
619
Finn Thain8c325132014-11-12 16:11:58 +1100620static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Finn Thain8c325132014-11-12 16:11:58 +1100622 struct NCR5380_hostdata *hostdata = shost_priv(instance);
623
624 return hostdata->info;
625}
626
627static void prepare_info(struct Scsi_Host *instance)
628{
629 struct NCR5380_hostdata *hostdata = shost_priv(instance);
630
631 snprintf(hostdata->info, sizeof(hostdata->info),
632 "%s, io_port 0x%lx, n_io_port %d, "
633 "base 0x%lx, irq %d, "
634 "can_queue %d, cmd_per_lun %d, "
635 "sg_tablesize %d, this_id %d, "
Finn Thain9c3f0e22016-01-03 16:05:11 +1100636 "flags { %s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100637 "options { %s} ",
638 instance->hostt->name, instance->io_port, instance->n_io_port,
639 instance->base, instance->irq,
640 instance->can_queue, instance->cmd_per_lun,
641 instance->sg_tablesize, instance->this_id,
Finn Thainca513fc2014-11-12 16:12:19 +1100642 hostdata->flags & FLAG_TAGGED_QUEUING ? "TAGGED_QUEUING " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100643 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100644#ifdef DIFFERENTIAL
645 "DIFFERENTIAL "
646#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100648 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649#endif
650#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100651 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#endif
653#ifdef SUPPORT_TAGS
Finn Thain8c325132014-11-12 16:11:58 +1100654 "SUPPORT_TAGS "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#endif
Finn Thain8c325132014-11-12 16:11:58 +1100656 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Finn Thainff50f9e2014-11-12 16:12:18 +1100659/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100660 * NCR5380_init - initialise an NCR5380
661 * @instance: adapter to configure
662 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100664 * Initializes *instance and corresponding 5380 chip,
665 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 *
667 * Notes : I assume that the host, hostno, and id bits have been
Finn Thainff50f9e2014-11-12 16:12:18 +1100668 * set correctly. I don't care about the irq and other fields.
Roman Zippelc28bda22007-05-01 22:32:36 +0200669 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100670 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
672
Michael Schmitz95fde7a2009-01-18 03:22:15 +0100673static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Roman Zippelc28bda22007-05-01 22:32:36 +0200675 int i;
676 SETUP_HOSTDATA(instance);
Finn Thain2f854b82016-01-03 16:05:22 +1100677 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Finn Thaina53a21e2014-11-12 16:12:21 +1100679 hostdata->host = instance;
Roman Zippelc28bda22007-05-01 22:32:36 +0200680 hostdata->id_mask = 1 << instance->this_id;
681 hostdata->id_higher_mask = 0;
682 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
683 if (i > hostdata->id_mask)
684 hostdata->id_higher_mask |= i;
685 for (i = 0; i < 8; ++i)
686 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +1100688 init_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#endif
690#if defined (REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +0200691 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#endif
Finn Thain11d2f632016-01-03 16:05:51 +1100693 spin_lock_init(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +0200694 hostdata->connected = NULL;
695 hostdata->issue_queue = NULL;
696 hostdata->disconnected_queue = NULL;
Finn Thainef1081c2014-11-12 16:12:14 +1100697 hostdata->flags = flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Finn Thaina53a21e2014-11-12 16:12:21 +1100699 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100700 hostdata->work_q = alloc_workqueue("ncr5380_%d",
701 WQ_UNBOUND | WQ_MEM_RECLAIM,
702 1, instance->host_no);
703 if (!hostdata->work_q)
704 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Finn Thain8c325132014-11-12 16:11:58 +1100706 prepare_info(instance);
707
Roman Zippelc28bda22007-05-01 22:32:36 +0200708 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
709 NCR5380_write(MODE_REG, MR_BASE);
710 NCR5380_write(TARGET_COMMAND_REG, 0);
711 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Finn Thain2f854b82016-01-03 16:05:22 +1100713 /* Calibrate register polling loop */
714 i = 0;
715 deadline = jiffies + 1;
716 do {
717 cpu_relax();
718 } while (time_is_after_jiffies(deadline));
719 deadline += msecs_to_jiffies(256);
720 do {
721 NCR5380_read(STATUS_REG);
722 ++i;
723 cpu_relax();
724 } while (time_is_after_jiffies(deadline));
725 hostdata->accesses_per_ms = i / 256;
726
Roman Zippelc28bda22007-05-01 22:32:36 +0200727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Finn Thainff50f9e2014-11-12 16:12:18 +1100730/**
Finn Thain636b1ec2016-01-03 16:05:10 +1100731 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
732 * @instance: adapter to check
733 *
734 * If the system crashed, it may have crashed with a connected target and
735 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
736 * currently established nexus, which we know nothing about. Failing that
737 * do a bus reset.
738 *
739 * Note that a bus reset will cause the chip to assert IRQ.
740 *
741 * Returns 0 if successful, otherwise -ENXIO.
742 */
743
744static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
745{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100746 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain636b1ec2016-01-03 16:05:10 +1100747 int pass;
748
749 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
750 switch (pass) {
751 case 1:
752 case 3:
753 case 5:
754 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
755 NCR5380_poll_politely(instance,
756 STATUS_REG, SR_BSY, 0, 5 * HZ);
757 break;
758 case 2:
759 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
760 do_abort(instance);
761 break;
762 case 4:
763 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
764 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100765 /* Wait after a reset; the SCSI standard calls for
766 * 250ms, we wait 500ms to be on the safe side.
767 * But some Toshiba CD-ROMs need ten times that.
768 */
769 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
770 msleep(2500);
771 else
772 msleep(500);
Finn Thain636b1ec2016-01-03 16:05:10 +1100773 break;
774 case 6:
775 shost_printk(KERN_ERR, instance, "bus locked solid\n");
776 return -ENXIO;
777 }
778 }
779 return 0;
780}
781
782/**
Finn Thainff50f9e2014-11-12 16:12:18 +1100783 * NCR5380_exit - remove an NCR5380
784 * @instance: adapter to remove
785 *
786 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
787 */
788
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200789static void NCR5380_exit(struct Scsi_Host *instance)
790{
Finn Thaina53a21e2014-11-12 16:12:21 +1100791 struct NCR5380_hostdata *hostdata = shost_priv(instance);
792
793 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100794 destroy_workqueue(hostdata->work_q);
Geert Uytterhoeven6323e4f2011-06-13 20:39:15 +0200795}
796
Finn Thainff50f9e2014-11-12 16:12:18 +1100797/**
798 * NCR5380_queue_command - queue a command
799 * @instance: the relevant SCSI adapter
800 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *
Finn Thain1bb40582016-01-03 16:05:29 +1100802 * cmd is added to the per-instance issue queue, with minor
Finn Thainff50f9e2014-11-12 16:12:18 +1100803 * twiddling done to the host specific fields of cmd. If the
804 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
806
Finn Thain16b29e72014-11-12 16:12:08 +1100807static int NCR5380_queue_command(struct Scsi_Host *instance,
808 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Finn Thain16b29e72014-11-12 16:12:08 +1100810 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain710ddd02014-11-12 16:12:02 +1100811 struct scsi_cmnd *tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +0200812 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814#if (NDEBUG & NDEBUG_NO_WRITE)
Roman Zippelc28bda22007-05-01 22:32:36 +0200815 switch (cmd->cmnd[0]) {
816 case WRITE_6:
817 case WRITE_10:
818 printk(KERN_NOTICE "scsi%d: WRITE attempted with NO_WRITE debugging flag set\n",
819 H_NO(cmd));
820 cmd->result = (DID_ERROR << 16);
Finn Thain16b29e72014-11-12 16:12:08 +1100821 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200822 return 0;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
825
Roman Zippelc28bda22007-05-01 22:32:36 +0200826 /*
827 * We use the host_scribble field as a pointer to the next command
828 * in a queue
829 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Roman Zippel3130d902007-05-01 22:32:37 +0200831 SET_NEXT(cmd, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +0200832 cmd->result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Roman Zippelc28bda22007-05-01 22:32:36 +0200834 /*
835 * Insert the cmd into the issue queue. Note that REQUEST SENSE
836 * commands are added to the head of the queue since any command will
837 * clear the contingent allegiance condition that exists and the
838 * sense data is only guaranteed to be valid while the condition exists.
839 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Roman Zippelc28bda22007-05-01 22:32:36 +0200841 /* ++guenther: now that the issue queue is being set up, we can lock ST-DMA.
842 * Otherwise a running NCR5380_main may steal the lock.
843 * Lock before actually inserting due to fairness reasons explained in
844 * atari_scsi.c. If we insert first, then it's impossible for this driver
845 * to release the lock.
846 * Stop timer for this command while waiting for the lock, or timeouts
847 * may happen (and they really do), and it's no good if the command doesn't
848 * appear in any of the queues.
849 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
850 * because also a timer int can trigger an abort or reset, which would
851 * alter queues and touch the lock.
852 */
Finn Thaine3c3da62014-11-12 16:12:15 +1100853 if (!NCR5380_acquire_dma_irq(instance))
Finn Thain16b29e72014-11-12 16:12:08 +1100854 return SCSI_MLQUEUE_HOST_BUSY;
855
Finn Thain11d2f632016-01-03 16:05:51 +1100856 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain16b29e72014-11-12 16:12:08 +1100857
Finn Thainff50f9e2014-11-12 16:12:18 +1100858 /*
859 * Insert the cmd into the issue queue. Note that REQUEST SENSE
860 * commands are added to the head of the queue since any command will
861 * clear the contingent allegiance condition that exists and the
862 * sense data is only guaranteed to be valid while the condition exists.
863 */
864
Roman Zippelc28bda22007-05-01 22:32:36 +0200865 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
866 LIST(cmd, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +0200867 SET_NEXT(cmd, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +0200868 hostdata->issue_queue = cmd;
869 } else {
Finn Thain710ddd02014-11-12 16:12:02 +1100870 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +0200871 NEXT(tmp); tmp = NEXT(tmp))
872 ;
873 LIST(cmd, tmp);
Roman Zippel3130d902007-05-01 22:32:37 +0200874 SET_NEXT(tmp, cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +0200875 }
Finn Thain11d2f632016-01-03 16:05:51 +1100876 spin_unlock_irqrestore(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Finn Thaind65e6342014-03-18 11:42:20 +1100878 dprintk(NDEBUG_QUEUES, "scsi%d: command added to %s of queue\n", H_NO(cmd),
Roman Zippelc28bda22007-05-01 22:32:36 +0200879 (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Finn Thain010e89d2016-01-03 16:05:38 +1100881 /* Kick off command processing */
882 queue_work(hostdata->work_q, &hostdata->main_task);
Roman Zippelc28bda22007-05-01 22:32:36 +0200883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Finn Thaine3c3da62014-11-12 16:12:15 +1100886static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
887{
888 struct NCR5380_hostdata *hostdata = shost_priv(instance);
889
890 /* Caller does the locking needed to set & test these data atomically */
891 if (!hostdata->disconnected_queue &&
892 !hostdata->issue_queue &&
893 !hostdata->connected &&
894 !hostdata->retain_dma_intr)
895 NCR5380_release_dma_irq(instance);
896}
897
Finn Thainff50f9e2014-11-12 16:12:18 +1100898/**
899 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100901 * NCR5380_main is a coroutine that runs as long as more work can
902 * be done on the NCR5380 host adapters in a system. Both
903 * NCR5380_queue_command() and NCR5380_intr() will try to start it
904 * in case it is not running.
Roman Zippelc28bda22007-05-01 22:32:36 +0200905 *
Finn Thainff50f9e2014-11-12 16:12:18 +1100906 * Locks: called as its own thread with no locks held.
Roman Zippelc28bda22007-05-01 22:32:36 +0200907 */
908
Geert Uytterhoevenb312b382007-05-01 22:32:48 +0200909static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Finn Thaina53a21e2014-11-12 16:12:21 +1100911 struct NCR5380_hostdata *hostdata =
912 container_of(work, struct NCR5380_hostdata, main_task);
913 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +1100914 struct scsi_cmnd *tmp, *prev;
Roman Zippelc28bda22007-05-01 22:32:36 +0200915 int done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Roman Zippelc28bda22007-05-01 22:32:36 +0200917 /*
Roman Zippelc28bda22007-05-01 22:32:36 +0200918 * ++roman: Just disabling the NCR interrupt isn't sufficient here,
919 * because also a timer int can trigger an abort or reset, which can
920 * alter queues and touch the Falcon lock.
921 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Finn Thain11d2f632016-01-03 16:05:51 +1100923 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +0200924 do {
Roman Zippelc28bda22007-05-01 22:32:36 +0200925 done = 1;
926
927 if (!hostdata->connected) {
Finn Thaind65e6342014-03-18 11:42:20 +1100928 dprintk(NDEBUG_MAIN, "scsi%d: not connected\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +0200929 /*
930 * Search through the issue_queue for a command destined
931 * for a target that's not busy.
932 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933#if (NDEBUG & NDEBUG_LISTS)
Finn Thain710ddd02014-11-12 16:12:02 +1100934 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +0200935 tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
936 ;
937 /*printk("%p ", tmp);*/
938 if ((tmp == prev) && tmp)
939 printk(" LOOP\n");
940 /* else printk("\n"); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941#endif
Finn Thain710ddd02014-11-12 16:12:02 +1100942 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
Roman Zippelc28bda22007-05-01 22:32:36 +0200943 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200944 u8 lun = tmp->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Finn Thaine3f463b2014-11-12 16:12:16 +1100946 dprintk(NDEBUG_LISTS,
947 "MAIN tmp=%p target=%d busy=%d lun=%d\n",
948 tmp, scmd_id(tmp), hostdata->busy[scmd_id(tmp)],
949 lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200950 /* When we find one, remove it from the issue queue. */
Roman Zippelc28bda22007-05-01 22:32:36 +0200951 if (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +0200953 !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#else
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200955 !(hostdata->busy[tmp->device->id] & (1 << lun))
Roman Zippelc28bda22007-05-01 22:32:36 +0200956#endif
957 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +0200958 if (prev) {
959 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +0200960 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +0200961 } else {
962 REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
963 hostdata->issue_queue = NEXT(tmp);
964 }
Roman Zippel3130d902007-05-01 22:32:37 +0200965 SET_NEXT(tmp, NULL);
Finn Thainef1081c2014-11-12 16:12:14 +1100966 hostdata->retain_dma_intr++;
Roman Zippelc28bda22007-05-01 22:32:36 +0200967
Roman Zippelc28bda22007-05-01 22:32:36 +0200968 /*
969 * Attempt to establish an I_T_L nexus here.
970 * On success, instance->hostdata->connected is set.
971 * On failure, we must add the command back to the
972 * issue queue so we can keep trying.
973 */
Finn Thaind65e6342014-03-18 11:42:20 +1100974 dprintk(NDEBUG_MAIN, "scsi%d: main(): command for target %d "
Roman Zippelc28bda22007-05-01 22:32:36 +0200975 "lun %d removed from issue_queue\n",
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200976 HOSTNO, tmp->device->id, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +0200977 /*
978 * REQUEST SENSE commands are issued without tagged
979 * queueing, even on SCSI-II devices because the
980 * contingent allegiance condition exists for the
981 * entire unit.
982 */
983 /* ++roman: ...and the standard also requires that
984 * REQUEST SENSE command are untagged.
985 */
986
987#ifdef SUPPORT_TAGS
988 cmd_get_tag(tmp, tmp->cmnd[0] != REQUEST_SENSE);
989#endif
Finn Thain76f13b92014-11-12 16:11:53 +1100990 if (!NCR5380_select(instance, tmp)) {
Finn Thain1f1b0c72016-01-03 16:05:17 +1100991 /* OK or bad target */
Finn Thainef1081c2014-11-12 16:12:14 +1100992 hostdata->retain_dma_intr--;
Finn Thaine3c3da62014-11-12 16:12:15 +1100993 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +0200994 } else {
Finn Thain1f1b0c72016-01-03 16:05:17 +1100995 /* Need to retry */
Roman Zippelc28bda22007-05-01 22:32:36 +0200996 LIST(tmp, hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +0200997 SET_NEXT(tmp, hostdata->issue_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +0200998 hostdata->issue_queue = tmp;
999#ifdef SUPPORT_TAGS
1000 cmd_free_tag(tmp);
1001#endif
Finn Thainef1081c2014-11-12 16:12:14 +11001002 hostdata->retain_dma_intr--;
Finn Thain1d3db592016-01-03 16:05:24 +11001003 done = 0;
Finn Thaind65e6342014-03-18 11:42:20 +11001004 dprintk(NDEBUG_MAIN, "scsi%d: main(): select() failed, "
Roman Zippelc28bda22007-05-01 22:32:36 +02001005 "returned to issue_queue\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001006 }
Finn Thain1f1b0c72016-01-03 16:05:17 +11001007 if (hostdata->connected)
1008 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001009 } /* if target/lun/target queue is not busy */
1010 } /* for issue_queue */
1011 } /* if (!hostdata->connected) */
1012
1013 if (hostdata->connected
1014#ifdef REAL_DMA
1015 && !hostdata->dma_len
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016#endif
1017 ) {
Finn Thaind65e6342014-03-18 11:42:20 +11001018 dprintk(NDEBUG_MAIN, "scsi%d: main: performing information transfer\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001019 HOSTNO);
1020 NCR5380_information_transfer(instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001021 dprintk(NDEBUG_MAIN, "scsi%d: main: done set false\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001022 done = 0;
1023 }
1024 } while (!done);
Finn Thain11d2f632016-01-03 16:05:51 +11001025 spin_unlock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028
1029#ifdef REAL_DMA
1030/*
1031 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
1032 *
1033 * Purpose : Called by interrupt handler when DMA finishes or a phase
Roman Zippelc28bda22007-05-01 22:32:36 +02001034 * mismatch occurs (which would finish the DMA transfer).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 *
1036 * Inputs : instance - this instance of the NCR5380.
1037 *
1038 */
1039
Roman Zippelc28bda22007-05-01 22:32:36 +02001040static void NCR5380_dma_complete(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Roman Zippelc28bda22007-05-01 22:32:36 +02001042 SETUP_HOSTDATA(instance);
Finn Thain01bd9082014-11-12 16:12:23 +11001043 int transferred;
Finn Thaine3f463b2014-11-12 16:12:16 +11001044 unsigned char **data;
Roman Zippelc28bda22007-05-01 22:32:36 +02001045 volatile int *count;
Finn Thaine3f463b2014-11-12 16:12:16 +11001046 int saved_data = 0, overrun = 0;
1047 unsigned char p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Finn Thainef1081c2014-11-12 16:12:14 +11001049 if (hostdata->read_overruns) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001050 p = hostdata->connected->SCp.phase;
1051 if (p & SR_IO) {
1052 udelay(10);
1053 if ((NCR5380_read(BUS_AND_STATUS_REG) &
1054 (BASR_PHASE_MATCH|BASR_ACK)) ==
1055 (BASR_PHASE_MATCH|BASR_ACK)) {
1056 saved_data = NCR5380_read(INPUT_DATA_REG);
1057 overrun = 1;
Finn Thaind65e6342014-03-18 11:42:20 +11001058 dprintk(NDEBUG_DMA, "scsi%d: read overrun handled\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001059 }
1060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001062
Finn Thaine3f463b2014-11-12 16:12:16 +11001063#if defined(CONFIG_SUN3)
1064 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
1065 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
1066 instance->host_no);
1067 BUG();
1068 }
1069
1070 /* make sure we're not stuck in a data phase */
1071 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
1072 (BASR_PHASE_MATCH | BASR_ACK)) {
1073 pr_err("scsi%d: BASR %02x\n", instance->host_no,
1074 NCR5380_read(BUS_AND_STATUS_REG));
1075 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
1076 instance->host_no);
1077 BUG();
1078 }
1079#endif
1080
Roman Zippelc28bda22007-05-01 22:32:36 +02001081 NCR5380_write(MODE_REG, MR_BASE);
1082 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaincd400822016-01-03 16:05:40 +11001083 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001084
Finn Thain01bd9082014-11-12 16:12:23 +11001085 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001086 hostdata->dma_len = 0;
1087
1088 data = (unsigned char **)&hostdata->connected->SCp.ptr;
1089 count = &hostdata->connected->SCp.this_residual;
Finn Thain01bd9082014-11-12 16:12:23 +11001090 *data += transferred;
1091 *count -= transferred;
Roman Zippelc28bda22007-05-01 22:32:36 +02001092
Finn Thainef1081c2014-11-12 16:12:14 +11001093 if (hostdata->read_overruns) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001094 int cnt, toPIO;
1095
Roman Zippelc28bda22007-05-01 22:32:36 +02001096 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
Finn Thainef1081c2014-11-12 16:12:14 +11001097 cnt = toPIO = hostdata->read_overruns;
Roman Zippelc28bda22007-05-01 22:32:36 +02001098 if (overrun) {
Finn Thaind65e6342014-03-18 11:42:20 +11001099 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001100 *(*data)++ = saved_data;
1101 (*count)--;
1102 cnt--;
1103 toPIO--;
1104 }
Finn Thaind65e6342014-03-18 11:42:20 +11001105 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%08lx\n", cnt, (long)*data);
Roman Zippelc28bda22007-05-01 22:32:36 +02001106 NCR5380_transfer_pio(instance, &p, &cnt, data);
1107 *count -= toPIO - cnt;
1108 }
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111#endif /* REAL_DMA */
1112
1113
Finn Thainff50f9e2014-11-12 16:12:18 +11001114/**
1115 * NCR5380_intr - generic NCR5380 irq handler
1116 * @irq: interrupt number
1117 * @dev_id: device info
Roman Zippelc28bda22007-05-01 22:32:36 +02001118 *
Finn Thainff50f9e2014-11-12 16:12:18 +11001119 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1120 * from the disconnected queue, and restarting NCR5380_main()
1121 * as required.
Finn Thaincd400822016-01-03 16:05:40 +11001122 *
1123 * The chip can assert IRQ in any of six different conditions. The IRQ flag
1124 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
1125 * Three of these six conditions are latched in the Bus and Status Register:
1126 * - End of DMA (cleared by ending DMA Mode)
1127 * - Parity error (cleared by reading RPIR)
1128 * - Loss of BSY (cleared by reading RPIR)
1129 * Two conditions have flag bits that are not latched:
1130 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
1131 * - Bus reset (non-maskable)
1132 * The remaining condition has no flag bit at all:
1133 * - Selection/reselection
1134 *
1135 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
1136 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
1137 * claimed that "the design of the [DP8490] interrupt logic ensures
1138 * interrupts will not be lost (they can be on the DP5380)."
1139 * The L5380/53C80 datasheet from LOGIC Devices has more details.
1140 *
1141 * Checking for bus reset by reading RST is futile because of interrupt
1142 * latency, but a bus reset will reset chip logic. Checking for parity error
1143 * is unnecessary because that interrupt is never enabled. A Loss of BSY
1144 * condition will clear DMA Mode. We can tell when this occurs because the
1145 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 */
1147
Roman Zippelc28bda22007-05-01 22:32:36 +02001148static irqreturn_t NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Finn Thaina53a21e2014-11-12 16:12:21 +11001150 struct Scsi_Host *instance = dev_id;
Finn Thain010e89d2016-01-03 16:05:38 +11001151 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thaincd400822016-01-03 16:05:40 +11001152 int handled = 0;
Roman Zippelc28bda22007-05-01 22:32:36 +02001153 unsigned char basr;
Finn Thain11d2f632016-01-03 16:05:51 +11001154 unsigned long flags;
1155
1156 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Roman Zippelc28bda22007-05-01 22:32:36 +02001158 basr = NCR5380_read(BUS_AND_STATUS_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001159 if (basr & BASR_IRQ) {
Finn Thaincd400822016-01-03 16:05:40 +11001160 unsigned char mr = NCR5380_read(MODE_REG);
1161 unsigned char sr = NCR5380_read(STATUS_REG);
1162
1163 dprintk(NDEBUG_INTR, "scsi%d: IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
1164 HOSTNO, irq, basr, sr, mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166#if defined(REAL_DMA)
Finn Thaincd400822016-01-03 16:05:40 +11001167 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
1168 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
1169 * We ack IRQ after clearing Mode Register. Workarounds
1170 * for End of DMA errata need to happen in DMA Mode.
Roman Zippelc28bda22007-05-01 22:32:36 +02001171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Finn Thaincd400822016-01-03 16:05:40 +11001173 dprintk(NDEBUG_INTR, "scsi%d: interrupt in DMA mode\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001174
Finn Thaincd400822016-01-03 16:05:40 +11001175 if (hostdata->connected) {
1176 NCR5380_dma_complete(instance);
1177 queue_work(hostdata->work_q, &hostdata->main_task);
1178 } else {
1179 NCR5380_write(MODE_REG, MR_BASE);
1180 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
Roman Zippelc28bda22007-05-01 22:32:36 +02001181 }
Finn Thaincd400822016-01-03 16:05:40 +11001182 } else
1183#endif /* REAL_DMA */
1184 if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
1185 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
1186 /* Probably reselected */
1187 NCR5380_write(SELECT_ENABLE_REG, 0);
1188 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1189
1190 dprintk(NDEBUG_INTR, "scsi%d: interrupt with SEL and IO\n",
1191 HOSTNO);
1192
1193 if (!hostdata->connected) {
1194 NCR5380_reselect(instance);
1195 queue_work(hostdata->work_q, &hostdata->main_task);
1196 }
1197 if (!hostdata->connected)
1198 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1199 } else {
1200 /* Probably Bus Reset */
1201 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1202
1203 dprintk(NDEBUG_INTR, "scsi%d: unknown interrupt\n", HOSTNO);
1204#ifdef SUN3_SCSI_VME
1205 dregs->csr |= CSR_DMA_ENABLE;
1206#endif
1207 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001208 handled = 1;
Finn Thaincd400822016-01-03 16:05:40 +11001209 } else {
1210 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
Finn Thaine3f463b2014-11-12 16:12:16 +11001211#ifdef SUN3_SCSI_VME
1212 dregs->csr |= CSR_DMA_ENABLE;
1213#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001214 }
1215
Finn Thain11d2f632016-01-03 16:05:51 +11001216 spin_unlock_irqrestore(&hostdata->lock, flags);
1217
Roman Zippelc28bda22007-05-01 22:32:36 +02001218 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Roman Zippelc28bda22007-05-01 22:32:36 +02001221/*
Finn Thain710ddd02014-11-12 16:12:02 +11001222 * Function : int NCR5380_select(struct Scsi_Host *instance,
1223 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 *
1225 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Roman Zippelc28bda22007-05-01 22:32:36 +02001226 * including ARBITRATION, SELECTION, and initial message out for
1227 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001229 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001230 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 *
Finn Thain63238762016-01-03 16:05:15 +11001232 * Returns : -1 if selection failed but should be retried.
1233 * 0 if selection failed and should not be retried.
1234 * 0 if selection succeeded completely (hostdata->connected == cmd).
Roman Zippelc28bda22007-05-01 22:32:36 +02001235 *
1236 * Side effects :
1237 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * with registers as they should have been on entry - ie
1239 * SELECT_ENABLE will be set appropriately, the NCR5380
1240 * will cease to drive any SCSI bus signals.
1241 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001242 * If successful : I_T_L or I_T_L_Q nexus will be established,
1243 * instance->connected will be set to cmd.
1244 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001246 * If failed (no target) : cmd->scsi_done() will be called, and the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 * cmd->result host byte set to DID_BAD_TARGET.
1248 */
1249
Finn Thain710ddd02014-11-12 16:12:02 +11001250static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Roman Zippelc28bda22007-05-01 22:32:36 +02001252 SETUP_HOSTDATA(instance);
1253 unsigned char tmp[3], phase;
1254 unsigned char *data;
1255 int len;
Finn Thainae753a32016-01-03 16:05:23 +11001256 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Finn Thain8ad3a592014-03-18 11:42:19 +11001258 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thaind65e6342014-03-18 11:42:20 +11001259 dprintk(NDEBUG_ARBITRATION, "scsi%d: starting arbitration, id = %d\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02001260 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Roman Zippelc28bda22007-05-01 22:32:36 +02001262 /*
1263 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1264 * data bus during SELECTION.
1265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Roman Zippelc28bda22007-05-01 22:32:36 +02001267 NCR5380_write(TARGET_COMMAND_REG, 0);
1268
1269 /*
1270 * Start arbitration.
1271 */
1272
1273 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1274 NCR5380_write(MODE_REG, MR_ARBITRATE);
1275
Finn Thain55500d92016-01-03 16:05:35 +11001276 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1277 * Bus Free Delay, arbitration will begin.
Roman Zippelc28bda22007-05-01 22:32:36 +02001278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Finn Thain11d2f632016-01-03 16:05:51 +11001280 spin_unlock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001281 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1282 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1283 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001284 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001285 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
1286 /* Reselection interrupt */
1287 return -1;
1288 }
1289 if (err < 0) {
1290 NCR5380_write(MODE_REG, MR_BASE);
1291 shost_printk(KERN_ERR, instance,
1292 "select: arbitration timeout\n");
1293 return -1;
Finn Thain55500d92016-01-03 16:05:35 +11001294 }
Finn Thain11d2f632016-01-03 16:05:51 +11001295 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001296
1297 /* The SCSI-2 arbitration delay is 2.4 us */
Roman Zippelc28bda22007-05-01 22:32:36 +02001298 udelay(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Roman Zippelc28bda22007-05-01 22:32:36 +02001300 /* Check for lost arbitration */
1301 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1302 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
Finn Thain11d2f632016-01-03 16:05:51 +11001303 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001304 NCR5380_write(MODE_REG, MR_BASE);
Finn Thaind65e6342014-03-18 11:42:20 +11001305 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001306 HOSTNO);
Finn Thain11d2f632016-01-03 16:05:51 +11001307 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001308 return -1;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Finn Thaincf13b082016-01-03 16:05:18 +11001311 /* After/during arbitration, BSY should be asserted.
1312 * IBM DPES-31080 Version S31Q works now
1313 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1314 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001315 NCR5380_write(INITIATOR_COMMAND_REG,
1316 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Roman Zippelc28bda22007-05-01 22:32:36 +02001318 /*
1319 * Again, bus clear + bus settle time is 1.2us, however, this is
1320 * a minimum so we'll udelay ceil(1.2)
1321 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Finn Thain9c3f0e22016-01-03 16:05:11 +11001323 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1324 udelay(15);
1325 else
1326 udelay(2);
Roman Zippelc28bda22007-05-01 22:32:36 +02001327
Finn Thain11d2f632016-01-03 16:05:51 +11001328 spin_lock_irq(&hostdata->lock);
1329
Finn Thain72064a72016-01-03 16:05:44 +11001330 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1331 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Roman Zippelc28bda22007-05-01 22:32:36 +02001332 return -1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001333
Finn Thaind65e6342014-03-18 11:42:20 +11001334 dprintk(NDEBUG_ARBITRATION, "scsi%d: won arbitration\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001335
1336 /*
1337 * Now that we have won arbitration, start Selection process, asserting
1338 * the host and target ID's on the SCSI bus.
1339 */
1340
1341 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->device->id)));
1342
1343 /*
1344 * Raise ATN while SEL is true before BSY goes false from arbitration,
1345 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1346 * phase immediately after selection.
1347 */
1348
1349 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY |
1350 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Roman Zippelc28bda22007-05-01 22:32:36 +02001353 /*
1354 * Reselect interrupts must be turned off prior to the dropping of BSY,
1355 * otherwise we will trigger an interrupt.
1356 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001357 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Finn Thain11d2f632016-01-03 16:05:51 +11001359 spin_unlock_irq(&hostdata->lock);
1360
Roman Zippelc28bda22007-05-01 22:32:36 +02001361 /*
1362 * The initiator shall then wait at least two deskew delays and release
1363 * the BSY signal.
1364 */
1365 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Roman Zippelc28bda22007-05-01 22:32:36 +02001367 /* Reset BSY */
1368 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
1369 ICR_ASSERT_ATN | ICR_ASSERT_SEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Roman Zippelc28bda22007-05-01 22:32:36 +02001371 /*
1372 * Something weird happens when we cease to drive BSY - looks
1373 * like the board/chip is letting us do another read before the
1374 * appropriate propagation delay has expired, and we're confusing
1375 * a BSY signal from ourselves as the target's response to SELECTION.
1376 *
1377 * A small delay (the 'C++' frontend breaks the pipeline with an
1378 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1379 * tighter 'C' code breaks and requires this) solves the problem -
1380 * the 1 us delay is arbitrary, and only used because this delay will
1381 * be the same on other platforms and since it works here, it should
1382 * work there.
1383 *
1384 * wingel suggests that this could be due to failing to wait
1385 * one deskew delay.
1386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Roman Zippelc28bda22007-05-01 22:32:36 +02001388 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Finn Thaind65e6342014-03-18 11:42:20 +11001390 dprintk(NDEBUG_SELECTION, "scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Roman Zippelc28bda22007-05-01 22:32:36 +02001392 /*
1393 * The SCSI specification calls for a 250 ms timeout for the actual
1394 * selection.
1395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Finn Thainae753a32016-01-03 16:05:23 +11001397 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1398 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Roman Zippelc28bda22007-05-01 22:32:36 +02001400 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001401 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001402 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1403 NCR5380_reselect(instance);
Finn Thaincd400822016-01-03 16:05:40 +11001404 if (!hostdata->connected)
1405 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Roman Zippelc28bda22007-05-01 22:32:36 +02001406 printk(KERN_ERR "scsi%d: reselection after won arbitration?\n",
1407 HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001408 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001410
Finn Thainae753a32016-01-03 16:05:23 +11001411 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001412 spin_lock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02001413 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02001414 cmd->result = DID_BAD_TARGET << 16;
Roman Zippelc28bda22007-05-01 22:32:36 +02001415#ifdef SUPPORT_TAGS
1416 cmd_free_tag(cmd);
1417#endif
1418 cmd->scsi_done(cmd);
1419 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaind65e6342014-03-18 11:42:20 +11001420 dprintk(NDEBUG_SELECTION, "scsi%d: target did not respond within 250ms\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001421 return 0;
1422 }
1423
Roman Zippelc28bda22007-05-01 22:32:36 +02001424 /*
Finn Thainae753a32016-01-03 16:05:23 +11001425 * No less than two deskew delays after the initiator detects the
1426 * BSY signal is true, it shall release the SEL signal and may
1427 * change the DATA BUS. -wingel
1428 */
1429
1430 udelay(1);
1431
1432 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1433
1434 /*
Roman Zippelc28bda22007-05-01 22:32:36 +02001435 * Since we followed the SCSI spec, and raised ATN while SEL
1436 * was true but before BSY was false during selection, the information
1437 * transfer phase should be a MESSAGE OUT phase so that we can send the
1438 * IDENTIFY message.
1439 *
1440 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1441 * message (2 bytes) with a tag ID that we increment with every command
1442 * until it wraps back to 0.
1443 *
1444 * XXX - it turns out that there are some broken SCSI-II devices,
1445 * which claim to support tagged queuing but fail when more than
1446 * some number of commands are issued at once.
1447 */
1448
1449 /* Wait for start of REQ/ACK handshake */
Finn Thain55500d92016-01-03 16:05:35 +11001450
1451 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001452 spin_lock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001453 if (err < 0) {
1454 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1455 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1456 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1457 return -1;
1458 }
Roman Zippelc28bda22007-05-01 22:32:36 +02001459
Finn Thaind65e6342014-03-18 11:42:20 +11001460 dprintk(NDEBUG_SELECTION, "scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001461 HOSTNO, cmd->device->id);
1462 tmp[0] = IDENTIFY(1, cmd->device->lun);
1463
1464#ifdef SUPPORT_TAGS
1465 if (cmd->tag != TAG_NONE) {
1466 tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
1467 tmp[2] = cmd->tag;
1468 len = 3;
1469 } else
1470 len = 1;
1471#else
1472 len = 1;
1473 cmd->tag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474#endif /* SUPPORT_TAGS */
1475
Roman Zippelc28bda22007-05-01 22:32:36 +02001476 /* Send message(s) */
1477 data = tmp;
1478 phase = PHASE_MSGOUT;
1479 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11001480 dprintk(NDEBUG_SELECTION, "scsi%d: nexus established.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001481 /* XXX need to handle errors here */
Finn Thain11d2f632016-01-03 16:05:51 +11001482
Roman Zippelc28bda22007-05-01 22:32:36 +02001483 hostdata->connected = cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484#ifndef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02001485 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
1486#endif
Finn Thaine3f463b2014-11-12 16:12:16 +11001487#ifdef SUN3_SCSI_VME
1488 dregs->csr |= CSR_INTR;
1489#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Roman Zippelc28bda22007-05-01 22:32:36 +02001491 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Roman Zippelc28bda22007-05-01 22:32:36 +02001493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Roman Zippelc28bda22007-05-01 22:32:36 +02001496/*
1497 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * unsigned char *phase, int *count, unsigned char **data)
1499 *
1500 * Purpose : transfers data in given phase using polled I/O
1501 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001502 * Inputs : instance - instance of driver, *phase - pointer to
1503 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001505 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001507 * maximum number of bytes, 0 if all bytes are transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 * is in same phase.
1509 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001510 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 * XXX Note : handling for bus free may be useful.
1513 */
1514
1515/*
Roman Zippelc28bda22007-05-01 22:32:36 +02001516 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 * IS 100% reliable, and for the actual data transfer where speed
1518 * counts, we will always do a pseudo DMA or DMA transfer.
1519 */
1520
Roman Zippelc28bda22007-05-01 22:32:36 +02001521static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1522 unsigned char *phase, int *count,
1523 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Roman Zippelc28bda22007-05-01 22:32:36 +02001525 register unsigned char p = *phase, tmp;
1526 register int c = *count;
1527 register unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Roman Zippelc28bda22007-05-01 22:32:36 +02001529 /*
1530 * The NCR5380 chip will only drive the SCSI bus when the
1531 * phase specified in the appropriate bits of the TARGET COMMAND
1532 * REGISTER match the STATUS REGISTER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
1534
Roman Zippelc28bda22007-05-01 22:32:36 +02001535 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Roman Zippelc28bda22007-05-01 22:32:36 +02001537 do {
1538 /*
1539 * Wait for assertion of REQ, after which the phase bits will be
1540 * valid
1541 */
Finn Thain686f3992016-01-03 16:05:26 +11001542
1543 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
1544 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Finn Thaind65e6342014-03-18 11:42:20 +11001546 dprintk(NDEBUG_HANDSHAKE, "scsi%d: REQ detected\n", HOSTNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Roman Zippelc28bda22007-05-01 22:32:36 +02001548 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001549 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thaind65e6342014-03-18 11:42:20 +11001550 dprintk(NDEBUG_PIO, "scsi%d: phase mismatch\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11001551 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001552 break;
1553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Roman Zippelc28bda22007-05-01 22:32:36 +02001555 /* Do actual transfer from SCSI bus to / from memory */
1556 if (!(p & SR_IO))
1557 NCR5380_write(OUTPUT_DATA_REG, *d);
1558 else
1559 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Roman Zippelc28bda22007-05-01 22:32:36 +02001561 ++d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Roman Zippelc28bda22007-05-01 22:32:36 +02001563 /*
1564 * The SCSI standard suggests that in MSGOUT phase, the initiator
1565 * should drop ATN on the last byte of the message phase
1566 * after REQ has been asserted for the handshake but before
1567 * the initiator raises ACK.
1568 */
1569
1570 if (!(p & SR_IO)) {
1571 if (!((p & SR_MSG) && c > 1)) {
1572 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thain8ad3a592014-03-18 11:42:19 +11001573 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001574 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1575 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1576 } else {
1577 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1578 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Finn Thain8ad3a592014-03-18 11:42:19 +11001579 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001580 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1581 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1582 }
1583 } else {
Finn Thain8ad3a592014-03-18 11:42:19 +11001584 NCR5380_dprint(NDEBUG_PIO, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001585 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1586 }
1587
Finn Thaina2edc4a2016-01-03 16:05:27 +11001588 if (NCR5380_poll_politely(instance,
1589 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1590 break;
Roman Zippelc28bda22007-05-01 22:32:36 +02001591
Finn Thaind65e6342014-03-18 11:42:20 +11001592 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02001593
1594 /*
1595 * We have several special cases to consider during REQ/ACK handshaking :
1596 * 1. We were in MSGOUT phase, and we are on the last byte of the
1597 * message. ATN must be dropped as ACK is dropped.
1598 *
1599 * 2. We are in a MSGIN phase, and we are on the last byte of the
1600 * message. We must exit with ACK asserted, so that the calling
1601 * code may raise ATN before dropping ACK to reject the message.
1602 *
1603 * 3. ACK and ATN are clear and the target may proceed as normal.
1604 */
1605 if (!(p == PHASE_MSGIN && c == 1)) {
1606 if (p == PHASE_MSGOUT && c > 1)
1607 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1608 else
1609 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1610 }
1611 } while (--c);
1612
Finn Thaind65e6342014-03-18 11:42:20 +11001613 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001614
1615 *count = c;
1616 *data = d;
1617 tmp = NCR5380_read(STATUS_REG);
1618 /* The phase read from the bus is valid if either REQ is (already)
Finn Thaina2edc4a2016-01-03 16:05:27 +11001619 * asserted or if ACK hasn't been released yet. The latter applies if
1620 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
Roman Zippelc28bda22007-05-01 22:32:36 +02001621 */
Finn Thaina2edc4a2016-01-03 16:05:27 +11001622 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Roman Zippelc28bda22007-05-01 22:32:36 +02001623 *phase = tmp & PHASE_MASK;
1624 else
1625 *phase = PHASE_UNKNOWN;
1626
1627 if (!c || (*phase == p))
1628 return 0;
1629 else
1630 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
Finn Thain636b1ec2016-01-03 16:05:10 +11001633/**
1634 * do_reset - issue a reset command
1635 * @instance: adapter to reset
1636 *
1637 * Issue a reset sequence to the NCR5380 and try and get the bus
1638 * back into sane shape.
1639 *
1640 * This clears the reset interrupt flag because there may be no handler for
1641 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1642 * been installed. And when in EH we may have released the ST DMA interrupt.
1643 */
1644
1645static void do_reset(struct Scsi_Host *instance)
1646{
1647 unsigned long flags;
1648
1649 local_irq_save(flags);
1650 NCR5380_write(TARGET_COMMAND_REG,
1651 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1652 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1653 udelay(50);
1654 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1655 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1656 local_irq_restore(flags);
1657}
1658
Finn Thain80d3eb62016-01-03 16:05:34 +11001659/**
1660 * do_abort - abort the currently established nexus by going to
1661 * MESSAGE OUT phase and sending an ABORT message.
1662 * @instance: relevant scsi host instance
Roman Zippelc28bda22007-05-01 22:32:36 +02001663 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001664 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 */
1666
Finn Thaina53a21e2014-11-12 16:12:21 +11001667static int do_abort(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Roman Zippelc28bda22007-05-01 22:32:36 +02001669 unsigned char tmp, *msgptr, phase;
1670 int len;
Finn Thain80d3eb62016-01-03 16:05:34 +11001671 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Roman Zippelc28bda22007-05-01 22:32:36 +02001673 /* Request message out phase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Roman Zippelc28bda22007-05-01 22:32:36 +02001676 /*
1677 * Wait for the target to indicate a valid phase by asserting
1678 * REQ. Once this happens, we'll have either a MSGOUT phase
1679 * and can immediately send the ABORT message, or we'll have some
1680 * other phase and will have to source/sink data.
1681 *
1682 * We really don't care what value was on the bus or what value
1683 * the target sees, so we just handshake.
1684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Finn Thain80d3eb62016-01-03 16:05:34 +11001686 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
1687 if (rc < 0)
1688 goto timeout;
1689
1690 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Roman Zippelc28bda22007-05-01 22:32:36 +02001691
1692 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1693
Finn Thain80d3eb62016-01-03 16:05:34 +11001694 if (tmp != PHASE_MSGOUT) {
1695 NCR5380_write(INITIATOR_COMMAND_REG,
1696 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1697 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
1698 if (rc < 0)
1699 goto timeout;
Roman Zippelc28bda22007-05-01 22:32:36 +02001700 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1701 }
1702
1703 tmp = ABORT;
1704 msgptr = &tmp;
1705 len = 1;
1706 phase = PHASE_MSGOUT;
Finn Thaina53a21e2014-11-12 16:12:21 +11001707 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Roman Zippelc28bda22007-05-01 22:32:36 +02001708
1709 /*
1710 * If we got here, and the command completed successfully,
1711 * we're about to go into bus free state.
1712 */
1713
1714 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001715
1716timeout:
1717 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1718 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
1721#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001722/*
1723 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * unsigned char *phase, int *count, unsigned char **data)
1725 *
1726 * Purpose : transfers data in given phase using either real
1727 * or pseudo DMA.
1728 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001729 * Inputs : instance - instance of driver, *phase - pointer to
1730 * what phase is expected, *count - pointer to number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 * bytes to transfer, **data - pointer to data pointer.
Roman Zippelc28bda22007-05-01 22:32:36 +02001732 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001734 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * is in same phase.
1736 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001737 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 *
1739 */
1740
1741
Roman Zippelc28bda22007-05-01 22:32:36 +02001742static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1743 unsigned char *phase, int *count,
1744 unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Roman Zippelc28bda22007-05-01 22:32:36 +02001746 SETUP_HOSTDATA(instance);
1747 register int c = *count;
1748 register unsigned char p = *phase;
Finn Thaine3f463b2014-11-12 16:12:16 +11001749
1750#if defined(CONFIG_SUN3)
1751 /* sanity check */
1752 if (!sun3_dma_setup_done) {
1753 pr_err("scsi%d: transfer_dma without setup!\n",
1754 instance->host_no);
1755 BUG();
1756 }
1757 hostdata->dma_len = c;
1758
1759 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
1760 instance->host_no, (p & SR_IO) ? "reading" : "writing",
1761 c, (p & SR_IO) ? "to" : "from", *data);
1762
1763 /* netbsd turns off ints here, why not be safe and do it too */
Finn Thaine3f463b2014-11-12 16:12:16 +11001764
1765 /* send start chain */
1766 sun3scsi_dma_start(c, *data);
1767
Finn Thaincd400822016-01-03 16:05:40 +11001768 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1769 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1770 MR_ENABLE_EOP_INTR);
Finn Thaine3f463b2014-11-12 16:12:16 +11001771 if (p & SR_IO) {
Finn Thaine3f463b2014-11-12 16:12:16 +11001772 NCR5380_write(INITIATOR_COMMAND_REG, 0);
Finn Thaine3f463b2014-11-12 16:12:16 +11001773 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1774 } else {
Finn Thaine3f463b2014-11-12 16:12:16 +11001775 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
Finn Thaine3f463b2014-11-12 16:12:16 +11001776 NCR5380_write(START_DMA_SEND_REG, 0);
1777 }
1778
1779#ifdef SUN3_SCSI_VME
1780 dregs->csr |= CSR_DMA_ENABLE;
1781#endif
1782
Finn Thaine3f463b2014-11-12 16:12:16 +11001783 sun3_dma_active = 1;
1784
1785#else /* !defined(CONFIG_SUN3) */
Roman Zippelc28bda22007-05-01 22:32:36 +02001786 register unsigned char *d = *data;
1787 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Roman Zippelc28bda22007-05-01 22:32:36 +02001789 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1790 *phase = tmp;
1791 return -1;
1792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Finn Thainef1081c2014-11-12 16:12:14 +11001794 if (hostdata->read_overruns && (p & SR_IO))
1795 c -= hostdata->read_overruns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Finn Thaind65e6342014-03-18 11:42:20 +11001797 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001798 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1799 c, (p & SR_IO) ? "to" : "from", d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Roman Zippelc28bda22007-05-01 22:32:36 +02001801 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thaincd400822016-01-03 16:05:40 +11001802 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1803 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Finn Thainef1081c2014-11-12 16:12:14 +11001805 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001806 /* On the Medusa, it is a must to initialize the DMA before
1807 * starting the NCR. This is also the cleaner way for the TT.
1808 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001809 hostdata->dma_len = (p & SR_IO) ?
1810 NCR5380_dma_read_setup(instance, d, c) :
1811 NCR5380_dma_write_setup(instance, d, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Roman Zippelc28bda22007-05-01 22:32:36 +02001814 if (p & SR_IO)
1815 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1816 else {
1817 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1818 NCR5380_write(START_DMA_SEND_REG, 0);
1819 }
1820
Finn Thainef1081c2014-11-12 16:12:14 +11001821 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001822 /* On the Falcon, the DMA setup must be done after the last */
1823 /* NCR access, else the DMA setup gets trashed!
1824 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001825 hostdata->dma_len = (p & SR_IO) ?
1826 NCR5380_dma_read_setup(instance, d, c) :
1827 NCR5380_dma_write_setup(instance, d, c);
Roman Zippelc28bda22007-05-01 22:32:36 +02001828 }
Finn Thaine3f463b2014-11-12 16:12:16 +11001829#endif /* !defined(CONFIG_SUN3) */
1830
Roman Zippelc28bda22007-05-01 22:32:36 +02001831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833#endif /* defined(REAL_DMA) */
1834
1835/*
1836 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1837 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001838 * Purpose : run through the various SCSI phases and do as the target
1839 * directs us to. Operates on the currently connected command,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 * instance->connected.
1841 *
1842 * Inputs : instance, instance for which we are doing commands
1843 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001844 * Side effects : SCSI things happen, the disconnected queue will be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 * modified if a command disconnects, *instance->connected will
1846 * change.
1847 *
Roman Zippelc28bda22007-05-01 22:32:36 +02001848 * XXX Note : we need to watch for bus free or a reset condition here
1849 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 */
Roman Zippelc28bda22007-05-01 22:32:36 +02001851
1852static void NCR5380_information_transfer(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Roman Zippelc28bda22007-05-01 22:32:36 +02001854 SETUP_HOSTDATA(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02001855 unsigned char msgout = NOP;
1856 int sink = 0;
1857 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858#if defined(REAL_DMA)
Roman Zippelc28bda22007-05-01 22:32:36 +02001859 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02001861 unsigned char *data;
1862 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001863 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Finn Thaine3f463b2014-11-12 16:12:16 +11001865#ifdef SUN3_SCSI_VME
1866 dregs->csr |= CSR_INTR;
1867#endif
1868
Finn Thain11d2f632016-01-03 16:05:51 +11001869 while ((cmd = hostdata->connected)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001870 tmp = NCR5380_read(STATUS_REG);
1871 /* We only have a valid SCSI phase when REQ is asserted */
1872 if (tmp & SR_REQ) {
1873 phase = (tmp & PHASE_MASK);
1874 if (phase != old_phase) {
1875 old_phase = phase;
Finn Thain8ad3a592014-03-18 11:42:19 +11001876 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
Finn Thaine3f463b2014-11-12 16:12:16 +11001878#if defined(CONFIG_SUN3)
1879 if (phase == PHASE_CMDOUT) {
1880#if defined(REAL_DMA)
1881 void *d;
1882 unsigned long count;
1883
1884 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1885 count = cmd->SCp.buffer->length;
1886 d = sg_virt(cmd->SCp.buffer);
1887 } else {
1888 count = cmd->SCp.this_residual;
1889 d = cmd->SCp.ptr;
1890 }
1891 /* this command setup for dma yet? */
1892 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != cmd)) {
1893 if (cmd->request->cmd_type == REQ_TYPE_FS) {
1894 sun3scsi_dma_setup(d, count,
1895 rq_data_dir(cmd->request));
1896 sun3_dma_setup_done = cmd;
1897 }
1898 }
1899#endif
1900#ifdef SUN3_SCSI_VME
1901 dregs->csr |= CSR_INTR;
1902#endif
1903 }
1904#endif /* CONFIG_SUN3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Roman Zippelc28bda22007-05-01 22:32:36 +02001906 if (sink && (phase != PHASE_MSGOUT)) {
1907 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Roman Zippelc28bda22007-05-01 22:32:36 +02001909 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1910 ICR_ASSERT_ACK);
1911 while (NCR5380_read(STATUS_REG) & SR_REQ)
1912 ;
1913 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1914 ICR_ASSERT_ATN);
1915 sink = 0;
1916 continue;
1917 }
1918
1919 switch (phase) {
1920 case PHASE_DATAOUT:
1921#if (NDEBUG & NDEBUG_NO_DATAOUT)
1922 printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
1923 "aborted\n", HOSTNO);
1924 sink = 1;
1925 do_abort(instance);
1926 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04001927 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001928 return;
1929#endif
1930 case PHASE_DATAIN:
1931 /*
1932 * If there is no room left in the current buffer in the
1933 * scatter-gather list, move onto the next one.
1934 */
1935
1936 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1937 ++cmd->SCp.buffer;
1938 --cmd->SCp.buffers_residual;
1939 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001940 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Roman Zippelc28bda22007-05-01 22:32:36 +02001941 /* ++roman: Try to merge some scatter-buffers if
1942 * they are at contiguous physical addresses.
1943 */
1944 merge_contiguous_buffers(cmd);
Finn Thaind65e6342014-03-18 11:42:20 +11001945 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02001946 HOSTNO, cmd->SCp.this_residual,
1947 cmd->SCp.buffers_residual);
1948 }
1949
1950 /*
1951 * The preferred transfer method is going to be
1952 * PSEUDO-DMA for systems that are strictly PIO,
1953 * since we can let the hardware do the handshaking.
1954 *
1955 * For this to work, we need to know the transfersize
1956 * ahead of time, since the pseudo-DMA code will sit
1957 * in an unconditional loop.
1958 */
1959
1960 /* ++roman: I suggest, this should be
1961 * #if def(REAL_DMA)
1962 * instead of leaving REAL_DMA out.
1963 */
1964
1965#if defined(REAL_DMA)
Finn Thaine3f463b2014-11-12 16:12:16 +11001966#if !defined(CONFIG_SUN3)
Finn Thainff3d4572016-01-03 16:05:25 +11001967 transfersize = 0;
1968 if (!cmd->device->borken)
Finn Thaine3f463b2014-11-12 16:12:16 +11001969#endif
Finn Thainff3d4572016-01-03 16:05:25 +11001970 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
1971
1972 if (transfersize >= DMA_MIN_SIZE) {
Roman Zippelc28bda22007-05-01 22:32:36 +02001973 len = transfersize;
1974 cmd->SCp.phase = phase;
1975 if (NCR5380_transfer_dma(instance, &phase,
1976 &len, (unsigned char **)&cmd->SCp.ptr)) {
1977 /*
1978 * If the watchdog timer fires, all future
1979 * accesses to this device will use the
1980 * polled-IO. */
Finn Thainff50f9e2014-11-12 16:12:18 +11001981 scmd_printk(KERN_INFO, cmd,
1982 "switching to slow handshake\n");
Roman Zippelc28bda22007-05-01 22:32:36 +02001983 cmd->device->borken = 1;
Roman Zippelc28bda22007-05-01 22:32:36 +02001984 sink = 1;
1985 do_abort(instance);
1986 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04001987 cmd->scsi_done(cmd);
Roman Zippelc28bda22007-05-01 22:32:36 +02001988 /* XXX - need to source or sink data here, as appropriate */
1989 } else {
1990#ifdef REAL_DMA
1991 /* ++roman: When using real DMA,
1992 * information_transfer() should return after
1993 * starting DMA since it has nothing more to
1994 * do.
1995 */
1996 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997#else
Roman Zippelc28bda22007-05-01 22:32:36 +02001998 cmd->SCp.this_residual -= transfersize - len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002000 }
2001 } else
2002#endif /* defined(REAL_DMA) */
Finn Thain11d2f632016-01-03 16:05:51 +11002003 {
2004 spin_unlock_irq(&hostdata->lock);
Roman Zippelc28bda22007-05-01 22:32:36 +02002005 NCR5380_transfer_pio(instance, &phase,
2006 (int *)&cmd->SCp.this_residual,
2007 (unsigned char **)&cmd->SCp.ptr);
Finn Thain11d2f632016-01-03 16:05:51 +11002008 spin_lock_irq(&hostdata->lock);
2009 }
Finn Thaine3f463b2014-11-12 16:12:16 +11002010#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2011 /* if we had intended to dma that command clear it */
2012 if (sun3_dma_setup_done == cmd)
2013 sun3_dma_setup_done = NULL;
2014#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002015 break;
2016 case PHASE_MSGIN:
2017 len = 1;
2018 data = &tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002019 NCR5380_transfer_pio(instance, &phase, &len, &data);
2020 cmd->SCp.Message = tmp;
2021
2022 switch (tmp) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002023 case ABORT:
2024 case COMMAND_COMPLETE:
2025 /* Accept message by clearing ACK */
2026 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002027 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d, lun %llu "
Roman Zippelc28bda22007-05-01 22:32:36 +02002028 "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
Finn Thaine3c3da62014-11-12 16:12:15 +11002029
Finn Thaine3c3da62014-11-12 16:12:15 +11002030 hostdata->connected = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002031#ifdef SUPPORT_TAGS
2032 cmd_free_tag(cmd);
2033 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
Finn Thain61d739a2014-11-12 16:12:20 +11002034 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002035 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
Roman Zippelc28bda22007-05-01 22:32:36 +02002036 "QUEUE_FULL after %d commands\n",
2037 HOSTNO, cmd->device->id, cmd->device->lun,
2038 ta->nr_allocated);
2039 if (ta->queue_size > ta->nr_allocated)
Finn Thaine42d0152016-01-03 16:05:49 +11002040 ta->queue_size = ta->nr_allocated;
Roman Zippelc28bda22007-05-01 22:32:36 +02002041 }
2042#else
2043 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2044#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002045
2046 /*
2047 * I'm not sure what the correct thing to do here is :
2048 *
2049 * If the command that just executed is NOT a request
2050 * sense, the obvious thing to do is to set the result
2051 * code to the values of the stored parameters.
2052 *
2053 * If it was a REQUEST SENSE command, we need some way to
2054 * differentiate between the failure code of the original
2055 * and the failure code of the REQUEST sense - the obvious
2056 * case is success, where we fall through and leave the
2057 * result code unchanged.
2058 *
2059 * The non-obvious place is where the REQUEST SENSE failed
2060 */
2061
2062 if (cmd->cmnd[0] != REQUEST_SENSE)
2063 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2064 else if (status_byte(cmd->SCp.Status) != GOOD)
2065 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2066
Boaz Harrosh28424d32007-09-10 22:37:45 +03002067 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2068 hostdata->ses.cmd_len) {
2069 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2070 hostdata->ses.cmd_len = 0 ;
2071 }
2072
Roman Zippelc28bda22007-05-01 22:32:36 +02002073 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2074 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
Boaz Harrosh28424d32007-09-10 22:37:45 +03002075 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
Roman Zippelc28bda22007-05-01 22:32:36 +02002076
Finn Thaind65e6342014-03-18 11:42:20 +11002077 dprintk(NDEBUG_AUTOSENSE, "scsi%d: performing request sense\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002078
Roman Zippelc28bda22007-05-01 22:32:36 +02002079 LIST(cmd,hostdata->issue_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002080 SET_NEXT(cmd, hostdata->issue_queue);
Finn Thain710ddd02014-11-12 16:12:02 +11002081 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thaind65e6342014-03-18 11:42:20 +11002082 dprintk(NDEBUG_QUEUES, "scsi%d: REQUEST SENSE added to head of "
Roman Zippelc28bda22007-05-01 22:32:36 +02002083 "issue queue\n", H_NO(cmd));
Finn Thain997acab2014-11-12 16:11:54 +11002084 } else {
Roman Zippelc28bda22007-05-01 22:32:36 +02002085 cmd->scsi_done(cmd);
2086 }
2087
Roman Zippelc28bda22007-05-01 22:32:36 +02002088 /*
2089 * Restore phase bits to 0 so an interrupted selection,
2090 * arbitration can resume.
2091 */
2092 NCR5380_write(TARGET_COMMAND_REG, 0);
2093
Finn Thain72064a72016-01-03 16:05:44 +11002094 /* Enable reselect interrupts */
2095 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2096
Roman Zippelc28bda22007-05-01 22:32:36 +02002097 /* ++roman: For Falcon SCSI, release the lock on the
2098 * ST-DMA here if no other commands are waiting on the
2099 * disconnected queue.
2100 */
Finn Thaine3c3da62014-11-12 16:12:15 +11002101 maybe_release_dma_irq(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002102 return;
2103 case MESSAGE_REJECT:
2104 /* Accept message by clearing ACK */
2105 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02002106 switch (hostdata->last_message) {
2107 case HEAD_OF_QUEUE_TAG:
2108 case ORDERED_QUEUE_TAG:
2109 case SIMPLE_QUEUE_TAG:
2110 /* The target obviously doesn't support tagged
2111 * queuing, even though it announced this ability in
2112 * its INQUIRY data ?!? (maybe only this LUN?) Ok,
2113 * clear 'tagged_supported' and lock the LUN, since
2114 * the command is treated as untagged further on.
2115 */
2116 cmd->device->tagged_supported = 0;
2117 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
2118 cmd->tag = TAG_NONE;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002119 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
Roman Zippelc28bda22007-05-01 22:32:36 +02002120 "QUEUE_TAG message; tagged queuing "
2121 "disabled\n",
2122 HOSTNO, cmd->device->id, cmd->device->lun);
2123 break;
2124 }
2125 break;
2126 case DISCONNECT:
2127 /* Accept message by clearing ACK */
2128 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02002129 LIST(cmd,hostdata->disconnected_queue);
Roman Zippel3130d902007-05-01 22:32:37 +02002130 SET_NEXT(cmd, hostdata->disconnected_queue);
Roman Zippelc28bda22007-05-01 22:32:36 +02002131 hostdata->connected = NULL;
2132 hostdata->disconnected_queue = cmd;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002133 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d lun %llu was "
Roman Zippelc28bda22007-05-01 22:32:36 +02002134 "moved from connected to the "
2135 "disconnected_queue\n", HOSTNO,
2136 cmd->device->id, cmd->device->lun);
2137 /*
2138 * Restore phase bits to 0 so an interrupted selection,
2139 * arbitration can resume.
2140 */
2141 NCR5380_write(TARGET_COMMAND_REG, 0);
2142
2143 /* Enable reselect interrupts */
2144 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine3f463b2014-11-12 16:12:16 +11002145#ifdef SUN3_SCSI_VME
2146 dregs->csr |= CSR_DMA_ENABLE;
2147#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002148 return;
2149 /*
2150 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2151 * operation, in violation of the SCSI spec so we can safely
2152 * ignore SAVE/RESTORE pointers calls.
2153 *
2154 * Unfortunately, some disks violate the SCSI spec and
2155 * don't issue the required SAVE_POINTERS message before
2156 * disconnecting, and we have to break spec to remain
2157 * compatible.
2158 */
2159 case SAVE_POINTERS:
2160 case RESTORE_POINTERS:
2161 /* Accept message by clearing ACK */
2162 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Roman Zippelc28bda22007-05-01 22:32:36 +02002163 break;
2164 case EXTENDED_MESSAGE:
2165 /*
2166 * Extended messages are sent in the following format :
2167 * Byte
2168 * 0 EXTENDED_MESSAGE == 1
2169 * 1 length (includes one byte for code, doesn't
2170 * include first two bytes)
2171 * 2 code
2172 * 3..length+1 arguments
2173 *
2174 * Start the extended message buffer with the EXTENDED_MESSAGE
2175 * byte, since spi_print_msg() wants the whole thing.
2176 */
2177 extended_msg[0] = EXTENDED_MESSAGE;
2178 /* Accept first byte by clearing ACK */
2179 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2180
Finn Thain11d2f632016-01-03 16:05:51 +11002181 spin_unlock_irq(&hostdata->lock);
2182
Finn Thaind65e6342014-03-18 11:42:20 +11002183 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002184
2185 len = 2;
2186 data = extended_msg + 1;
2187 phase = PHASE_MSGIN;
2188 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002189 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002190 (int)extended_msg[1], (int)extended_msg[2]);
2191
Finn Thaine0783ed2016-01-03 16:05:45 +11002192 if (!len && extended_msg[1] > 0 &&
2193 extended_msg[1] <= sizeof(extended_msg) - 2) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002194 /* Accept third byte by clearing ACK */
2195 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2196 len = extended_msg[1] - 1;
2197 data = extended_msg + 3;
2198 phase = PHASE_MSGIN;
2199
2200 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thaind65e6342014-03-18 11:42:20 +11002201 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002202 HOSTNO, len);
2203
2204 switch (extended_msg[2]) {
2205 case EXTENDED_SDTR:
2206 case EXTENDED_WDTR:
2207 case EXTENDED_MODIFY_DATA_POINTER:
2208 case EXTENDED_EXTENDED_IDENTIFY:
2209 tmp = 0;
2210 }
2211 } else if (len) {
2212 printk(KERN_NOTICE "scsi%d: error receiving "
2213 "extended message\n", HOSTNO);
2214 tmp = 0;
2215 } else {
2216 printk(KERN_NOTICE "scsi%d: extended message "
2217 "code %02x length %d is too long\n",
2218 HOSTNO, extended_msg[2], extended_msg[1]);
2219 tmp = 0;
2220 }
Finn Thain11d2f632016-01-03 16:05:51 +11002221
2222 spin_lock_irq(&hostdata->lock);
2223 if (!hostdata->connected)
2224 return;
2225
Roman Zippelc28bda22007-05-01 22:32:36 +02002226 /* Fall through to reject message */
2227
2228 /*
2229 * If we get something weird that we aren't expecting,
2230 * reject it.
2231 */
2232 default:
2233 if (!tmp) {
Finn Thainff50f9e2014-11-12 16:12:18 +11002234 printk(KERN_INFO "scsi%d: rejecting message ",
2235 instance->host_no);
Roman Zippelc28bda22007-05-01 22:32:36 +02002236 spi_print_msg(extended_msg);
2237 printk("\n");
2238 } else if (tmp != EXTENDED_MESSAGE)
Finn Thainff50f9e2014-11-12 16:12:18 +11002239 scmd_printk(KERN_INFO, cmd,
2240 "rejecting unknown message %02x\n",
2241 tmp);
Roman Zippelc28bda22007-05-01 22:32:36 +02002242 else
Finn Thainff50f9e2014-11-12 16:12:18 +11002243 scmd_printk(KERN_INFO, cmd,
2244 "rejecting unknown extended message code %02x, length %d\n",
2245 extended_msg[1], extended_msg[0]);
Roman Zippelc28bda22007-05-01 22:32:36 +02002246
2247 msgout = MESSAGE_REJECT;
2248 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2249 break;
2250 } /* switch (tmp) */
2251 break;
2252 case PHASE_MSGOUT:
2253 len = 1;
2254 data = &msgout;
2255 hostdata->last_message = msgout;
2256 NCR5380_transfer_pio(instance, &phase, &len, &data);
2257 if (msgout == ABORT) {
2258#ifdef SUPPORT_TAGS
2259 cmd_free_tag(cmd);
2260#else
2261 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2262#endif
2263 hostdata->connected = NULL;
2264 cmd->result = DID_ERROR << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002265 maybe_release_dma_irq(instance);
Finn Thaine3c3da62014-11-12 16:12:15 +11002266 cmd->scsi_done(cmd);
Finn Thaincd400822016-01-03 16:05:40 +11002267 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Roman Zippelc28bda22007-05-01 22:32:36 +02002268 return;
2269 }
2270 msgout = NOP;
2271 break;
2272 case PHASE_CMDOUT:
2273 len = cmd->cmd_len;
2274 data = cmd->cmnd;
2275 /*
2276 * XXX for performance reasons, on machines with a
2277 * PSEUDO-DMA architecture we should probably
2278 * use the dma transfer function.
2279 */
2280 NCR5380_transfer_pio(instance, &phase, &len, &data);
2281 break;
2282 case PHASE_STATIN:
2283 len = 1;
2284 data = &tmp;
2285 NCR5380_transfer_pio(instance, &phase, &len, &data);
2286 cmd->SCp.Status = tmp;
2287 break;
2288 default:
2289 printk("scsi%d: unknown phase\n", HOSTNO);
Finn Thain8ad3a592014-03-18 11:42:19 +11002290 NCR5380_dprint(NDEBUG_ANY, instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002291 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002292 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002293 spin_unlock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002294 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11002295 spin_lock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002296 }
Finn Thain11d2f632016-01-03 16:05:51 +11002297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
2299
2300/*
2301 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2302 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002303 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002304 * 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 -07002305 * nexus has been reestablished,
Roman Zippelc28bda22007-05-01 22:32:36 +02002306 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 * Inputs : instance - this instance of the NCR5380.
2308 *
2309 */
2310
2311
Finn Thaine3f463b2014-11-12 16:12:16 +11002312/* it might eventually prove necessary to do a dma setup on
2313 reselection, but it doesn't seem to be needed now -- sam */
2314
Roman Zippelc28bda22007-05-01 22:32:36 +02002315static void NCR5380_reselect(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Roman Zippelc28bda22007-05-01 22:32:36 +02002317 SETUP_HOSTDATA(instance);
2318 unsigned char target_mask;
Finn Thaine3f463b2014-11-12 16:12:16 +11002319 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002321 unsigned char tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002323 unsigned char msg[3];
Finn Thaine3f463b2014-11-12 16:12:16 +11002324 int __maybe_unused len;
2325 unsigned char __maybe_unused *data, __maybe_unused phase;
Finn Thain710ddd02014-11-12 16:12:02 +11002326 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Roman Zippelc28bda22007-05-01 22:32:36 +02002328 /*
2329 * Disable arbitration, etc. since the host adapter obviously
2330 * lost, and tell an interrupted NCR5380_select() to restart.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Roman Zippelc28bda22007-05-01 22:32:36 +02002333 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Roman Zippelc28bda22007-05-01 22:32:36 +02002335 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2336
Finn Thaind65e6342014-03-18 11:42:20 +11002337 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002338
2339 /*
2340 * At this point, we have detected that our SCSI ID is on the bus,
2341 * SEL is true and BSY was false for at least one bus settle delay
2342 * (400 ns).
2343 *
2344 * We must assert BSY ourselves, until the target drops the SEL
2345 * signal.
2346 */
2347
2348 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thain72064a72016-01-03 16:05:44 +11002349 if (NCR5380_poll_politely(instance,
2350 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
2351 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2352 return;
2353 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002354 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2355
2356 /*
2357 * Wait for target to go into MSGIN.
2358 */
2359
Finn Thain72064a72016-01-03 16:05:44 +11002360 if (NCR5380_poll_politely(instance,
2361 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
2362 do_abort(instance);
2363 return;
2364 }
Roman Zippelc28bda22007-05-01 22:32:36 +02002365
Finn Thaine3f463b2014-11-12 16:12:16 +11002366#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2367 /* acknowledge toggle to MSGIN */
2368 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
2369
2370 /* peek at the byte without really hitting the bus */
2371 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2372#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002373 len = 1;
2374 data = msg;
2375 phase = PHASE_MSGIN;
2376 NCR5380_transfer_pio(instance, &phase, &len, &data);
2377
Finn Thain72064a72016-01-03 16:05:44 +11002378 if (len) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002379 do_abort(instance);
2380 return;
2381 }
Finn Thain72064a72016-01-03 16:05:44 +11002382#endif
2383
2384 if (!(msg[0] & 0x80)) {
2385 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
2386 spi_print_msg(msg);
2387 printk("\n");
2388 do_abort(instance);
2389 return;
2390 }
2391 lun = msg[0] & 0x07;
Roman Zippelc28bda22007-05-01 22:32:36 +02002392
Finn Thaine3f463b2014-11-12 16:12:16 +11002393#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
Roman Zippelc28bda22007-05-01 22:32:36 +02002394 /* If the phase is still MSGIN, the target wants to send some more
2395 * messages. In case it supports tagged queuing, this is probably a
2396 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2397 */
2398 tag = TAG_NONE;
Finn Thainca513fc2014-11-12 16:12:19 +11002399 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002400 /* Accept previous IDENTIFY message by clearing ACK */
2401 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2402 len = 2;
2403 data = msg + 1;
2404 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2405 msg[1] == SIMPLE_QUEUE_TAG)
2406 tag = msg[2];
Finn Thaind65e6342014-03-18 11:42:20 +11002407 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
Roman Zippelc28bda22007-05-01 22:32:36 +02002408 "reselection\n", HOSTNO, target_mask, lun, tag);
2409 }
2410#endif
2411
2412 /*
2413 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2414 * just reestablished, and remove it from the disconnected queue.
2415 */
2416
Finn Thain710ddd02014-11-12 16:12:02 +11002417 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
Roman Zippelc28bda22007-05-01 22:32:36 +02002418 tmp; prev = tmp, tmp = NEXT(tmp)) {
Finn Thain72064a72016-01-03 16:05:44 +11002419 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
Roman Zippelc28bda22007-05-01 22:32:36 +02002420#ifdef SUPPORT_TAGS
2421 && (tag == tmp->tag)
2422#endif
2423 ) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002424 if (prev) {
2425 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
Roman Zippel3130d902007-05-01 22:32:37 +02002426 SET_NEXT(prev, NEXT(tmp));
Roman Zippelc28bda22007-05-01 22:32:36 +02002427 } else {
2428 REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
2429 hostdata->disconnected_queue = NEXT(tmp);
2430 }
Roman Zippel3130d902007-05-01 22:32:37 +02002431 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002432 break;
2433 }
2434 }
2435
2436 if (!tmp) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002437#ifdef SUPPORT_TAGS
Finn Thain72064a72016-01-03 16:05:44 +11002438 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d tag %d not in disconnected queue.\n",
2439 target_mask, lun, tag);
2440#else
2441 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2442 target_mask, lun);
Roman Zippelc28bda22007-05-01 22:32:36 +02002443#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002444 /*
2445 * Since we have an established nexus that we can't do anything
2446 * with, we must abort it.
2447 */
2448 do_abort(instance);
2449 return;
2450 }
2451
Finn Thaine3f463b2014-11-12 16:12:16 +11002452#if defined(CONFIG_SUN3) && defined(REAL_DMA)
2453 /* engage dma setup for the command we just saw */
2454 {
2455 void *d;
2456 unsigned long count;
2457
2458 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2459 count = tmp->SCp.buffer->length;
2460 d = sg_virt(tmp->SCp.buffer);
2461 } else {
2462 count = tmp->SCp.this_residual;
2463 d = tmp->SCp.ptr;
2464 }
2465 /* setup this command for dma if not already */
2466 if ((count >= DMA_MIN_SIZE) && (sun3_dma_setup_done != tmp)) {
2467 sun3scsi_dma_setup(d, count, rq_data_dir(tmp->request));
2468 sun3_dma_setup_done = tmp;
2469 }
2470 }
2471
2472 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2473#endif
2474
Roman Zippelc28bda22007-05-01 22:32:36 +02002475 /* Accept message by clearing ACK */
2476 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2477
Finn Thaine3f463b2014-11-12 16:12:16 +11002478#if defined(SUPPORT_TAGS) && defined(CONFIG_SUN3)
2479 /* If the phase is still MSGIN, the target wants to send some more
2480 * messages. In case it supports tagged queuing, this is probably a
2481 * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
2482 */
2483 tag = TAG_NONE;
2484 if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
2485 /* Accept previous IDENTIFY message by clearing ACK */
2486 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2487 len = 2;
2488 data = msg + 1;
2489 if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
2490 msg[1] == SIMPLE_QUEUE_TAG)
2491 tag = msg[2];
2492 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at reselection\n"
2493 HOSTNO, target_mask, lun, tag);
2494 }
2495#endif
2496
Roman Zippelc28bda22007-05-01 22:32:36 +02002497 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002498 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002499 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
2502
2503/*
Finn Thain710ddd02014-11-12 16:12:02 +11002504 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 *
2506 * Purpose : abort a command
2507 *
Finn Thain710ddd02014-11-12 16:12:02 +11002508 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Roman Zippelc28bda22007-05-01 22:32:36 +02002509 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 * used.
2511 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002512 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 *
Roman Zippelc28bda22007-05-01 22:32:36 +02002514 * XXX - there is no way to abort the command that is currently
2515 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * a problem, we could implement longjmp() / setjmp(), setjmp()
Roman Zippelc28bda22007-05-01 22:32:36 +02002517 * called where the loop started in NCR5380_main().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 */
2519
2520static
Finn Thain710ddd02014-11-12 16:12:02 +11002521int NCR5380_abort(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
Roman Zippelc28bda22007-05-01 22:32:36 +02002523 struct Scsi_Host *instance = cmd->device->host;
2524 SETUP_HOSTDATA(instance);
Finn Thain710ddd02014-11-12 16:12:02 +11002525 struct scsi_cmnd *tmp, **prev;
Roman Zippelc28bda22007-05-01 22:32:36 +02002526 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002528 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Finn Thain11d2f632016-01-03 16:05:51 +11002530 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002532 NCR5380_dprint(NDEBUG_ANY, instance);
2533 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Finn Thaind65e6342014-03-18 11:42:20 +11002535 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
Roman Zippelc28bda22007-05-01 22:32:36 +02002536 NCR5380_read(BUS_AND_STATUS_REG),
2537 NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539#if 1
Roman Zippelc28bda22007-05-01 22:32:36 +02002540 /*
2541 * Case 1 : If the command is the currently executing command,
2542 * we'll set the aborted flag and return control so that
2543 * information transfer routine can exit cleanly.
2544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Roman Zippelc28bda22007-05-01 22:32:36 +02002546 if (hostdata->connected == cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Finn Thaind65e6342014-03-18 11:42:20 +11002548 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002549 /*
2550 * We should perform BSY checking, and make sure we haven't slipped
2551 * into BUS FREE.
2552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Roman Zippelc28bda22007-05-01 22:32:36 +02002554 /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
2555 /*
2556 * Since we can't change phases until we've completed the current
2557 * handshake, we have to source or sink a byte of data if the current
2558 * phase is not MSGOUT.
2559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Roman Zippelc28bda22007-05-01 22:32:36 +02002561 /*
2562 * Return control to the executing NCR drive so we can clear the
2563 * aborted flag and get back into our main loop.
2564 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Roman Zippelc28bda22007-05-01 22:32:36 +02002566 if (do_abort(instance) == 0) {
Roman Zippelc28bda22007-05-01 22:32:36 +02002567 hostdata->connected = NULL;
2568 cmd->result = DID_ABORT << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569#ifdef SUPPORT_TAGS
Roman Zippelc28bda22007-05-01 22:32:36 +02002570 cmd_free_tag(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571#else
Roman Zippelc28bda22007-05-01 22:32:36 +02002572 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002574 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002575 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002576 cmd->scsi_done(cmd);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002577 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002578 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002579 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002580 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002581 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002585
2586 /*
2587 * Case 2 : If the command hasn't been issued yet, we simply remove it
2588 * from the issue queue.
2589 */
Finn Thain710ddd02014-11-12 16:12:02 +11002590 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2591 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002592 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2593 if (cmd == tmp) {
2594 REMOVE(5, *prev, tmp, NEXT(tmp));
2595 (*prev) = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002596 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002597 tmp->result = DID_ABORT << 16;
Finn Thaine3c3da62014-11-12 16:12:15 +11002598 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002599 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002600 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
Roman Zippelc28bda22007-05-01 22:32:36 +02002601 HOSTNO);
2602 /* Tagged queuing note: no tag to free here, hasn't been assigned
2603 * yet... */
2604 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002605 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
2607 }
2608
Roman Zippelc28bda22007-05-01 22:32:36 +02002609 /*
2610 * Case 3 : If any commands are connected, we're going to fail the abort
2611 * and let the high level SCSI driver retry at a later time or
2612 * issue a reset.
2613 *
2614 * Timeouts, and therefore aborted commands, will be highly unlikely
2615 * and handling them cleanly in this situation would make the common
2616 * case of noresets less efficient, and would pollute our code. So,
2617 * we fail.
2618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Roman Zippelc28bda22007-05-01 22:32:36 +02002620 if (hostdata->connected) {
Finn Thain11d2f632016-01-03 16:05:51 +11002621 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaind65e6342014-03-18 11:42:20 +11002622 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002623 return FAILED;
Roman Zippelc28bda22007-05-01 22:32:36 +02002624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Roman Zippelc28bda22007-05-01 22:32:36 +02002626 /*
2627 * Case 4: If the command is currently disconnected from the bus, and
2628 * there are no connected commands, we reconnect the I_T_L or
2629 * I_T_L_Q nexus associated with it, go into message out, and send
2630 * an abort message.
2631 *
2632 * This case is especially ugly. In order to reestablish the nexus, we
2633 * need to call NCR5380_select(). The easiest way to implement this
2634 * function was to abort if the bus was busy, and let the interrupt
2635 * handler triggered on the SEL for reselect take care of lost arbitrations
2636 * where necessary, meaning interrupts need to be enabled.
2637 *
2638 * When interrupts are enabled, the queues may change - so we
2639 * can't remove it from the disconnected queue before selecting it
2640 * because that could cause a failure in hashing the nexus if that
2641 * device reselected.
2642 *
2643 * Since the queues may change, we can't use the pointers from when we
2644 * first locate it.
2645 *
2646 * So, we must first locate the command, and if NCR5380_select()
2647 * succeeds, then issue the abort, relocate the command and remove
2648 * it from the disconnected queue.
2649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Finn Thain710ddd02014-11-12 16:12:02 +11002651 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
Roman Zippelc28bda22007-05-01 22:32:36 +02002652 tmp = NEXT(tmp)) {
2653 if (cmd == tmp) {
Finn Thaind65e6342014-03-18 11:42:20 +11002654 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002655
Finn Thain11d2f632016-01-03 16:05:51 +11002656 if (NCR5380_select(instance, cmd)) {
2657 spin_unlock_irq(&hostdata->lock);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002658 return FAILED;
Finn Thain11d2f632016-01-03 16:05:51 +11002659 }
Finn Thaind65e6342014-03-18 11:42:20 +11002660 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002661
2662 do_abort(instance);
2663
Finn Thain710ddd02014-11-12 16:12:02 +11002664 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2665 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
Roman Zippelc28bda22007-05-01 22:32:36 +02002666 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2667 if (cmd == tmp) {
2668 REMOVE(5, *prev, tmp, NEXT(tmp));
2669 *prev = NEXT(tmp);
Roman Zippel3130d902007-05-01 22:32:37 +02002670 SET_NEXT(tmp, NULL);
Roman Zippelc28bda22007-05-01 22:32:36 +02002671 tmp->result = DID_ABORT << 16;
2672 /* We must unlock the tag/LUN immediately here, since the
2673 * target goes to BUS FREE and doesn't send us another
2674 * message (COMMAND_COMPLETE or the like)
2675 */
2676#ifdef SUPPORT_TAGS
2677 cmd_free_tag(tmp);
2678#else
2679 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
2680#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002681 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002682 spin_unlock_irqrestore(&hostdata->lock, flags);
Roman Zippelc28bda22007-05-01 22:32:36 +02002683 tmp->scsi_done(tmp);
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002684 return SUCCESS;
Roman Zippelc28bda22007-05-01 22:32:36 +02002685 }
2686 }
2687 }
2688 }
2689
Finn Thaine3c3da62014-11-12 16:12:15 +11002690 /* Maybe it is sufficient just to release the ST-DMA lock... (if
2691 * possible at all) At least, we should check if the lock could be
2692 * released after the abort, in case it is kept due to some bug.
2693 */
2694 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002695 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaine3c3da62014-11-12 16:12:15 +11002696
Roman Zippelc28bda22007-05-01 22:32:36 +02002697 /*
2698 * Case 5 : If we reached this point, the command was not found in any of
2699 * the queues.
2700 *
2701 * We probably reached this point because of an unlikely race condition
2702 * between the command completing successfully and the abortion code,
2703 * so we won't panic, but we will notify the user in case something really
2704 * broke.
2705 */
2706
Joe Perchesad361c92009-07-06 13:05:40 -07002707 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
Roman Zippelc28bda22007-05-01 22:32:36 +02002708
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002709 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
2712
Finn Thain3be1b3e2016-01-03 16:05:12 +11002713/**
2714 * NCR5380_bus_reset - reset the SCSI bus
2715 * @cmd: SCSI command undergoing EH
Roman Zippelc28bda22007-05-01 22:32:36 +02002716 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002717 * Returns SUCCESS
Roman Zippelc28bda22007-05-01 22:32:36 +02002718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Finn Thain710ddd02014-11-12 16:12:02 +11002720static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Finn Thaine3c3da62014-11-12 16:12:15 +11002722 struct Scsi_Host *instance = cmd->device->host;
2723 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Roman Zippelc28bda22007-05-01 22:32:36 +02002724 int i;
2725 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Finn Thain11d2f632016-01-03 16:05:51 +11002727 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Finn Thain3be1b3e2016-01-03 16:05:12 +11002729#if (NDEBUG & NDEBUG_ANY)
2730 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
Finn Thain3be1b3e2016-01-03 16:05:12 +11002731#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002732 NCR5380_dprint(NDEBUG_ANY, instance);
2733 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002734
2735 do_reset(instance);
2736
Roman Zippelc28bda22007-05-01 22:32:36 +02002737 /* reset NCR registers */
Roman Zippelc28bda22007-05-01 22:32:36 +02002738 NCR5380_write(MODE_REG, MR_BASE);
2739 NCR5380_write(TARGET_COMMAND_REG, 0);
2740 NCR5380_write(SELECT_ENABLE_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Roman Zippelc28bda22007-05-01 22:32:36 +02002742 /* After the reset, there are no more connected or disconnected commands
2743 * and no busy units; so clear the low-level status here to avoid
2744 * conflicts when the mid-level code tries to wake up the affected
2745 * commands!
2746 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Roman Zippelc28bda22007-05-01 22:32:36 +02002748 if (hostdata->issue_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11002749 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02002750 if (hostdata->connected)
Finn Thaind65e6342014-03-18 11:42:20 +11002751 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted a connected command\n", H_NO(cmd));
Roman Zippelc28bda22007-05-01 22:32:36 +02002752 if (hostdata->disconnected_queue)
Finn Thaind65e6342014-03-18 11:42:20 +11002753 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Roman Zippelc28bda22007-05-01 22:32:36 +02002755 hostdata->issue_queue = NULL;
2756 hostdata->connected = NULL;
2757 hostdata->disconnected_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758#ifdef SUPPORT_TAGS
Finn Thainca513fc2014-11-12 16:12:19 +11002759 free_all_tags(hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760#endif
Roman Zippelc28bda22007-05-01 22:32:36 +02002761 for (i = 0; i < 8; ++i)
2762 hostdata->busy[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763#ifdef REAL_DMA
Roman Zippelc28bda22007-05-01 22:32:36 +02002764 hostdata->dma_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765#endif
Finn Thaine3c3da62014-11-12 16:12:15 +11002766
2767 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002768 spin_unlock_irqrestore(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Michael Schmitz2b0f8342014-05-02 20:43:01 +12002770 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771}