ncr5380: Remove command list debug code
[deliverable/linux.git] / drivers / scsi / atari_NCR5380.c
CommitLineData
c28bda25 1/*
1da177e4 2 * NCR 5380 generic driver routines. These should make it *trivial*
c28bda25 3 * to implement 5380 SCSI drivers under Linux with a non-trantor
1da177e4
LT
4 * architecture.
5 *
6 * Note that these routines also work with NR53c400 family chips.
7 *
8 * Copyright 1993, Drew Eckhardt
c28bda25 9 * Visionary Computing
1da177e4 10 * (Unix and Linux consulting and custom programming)
c28bda25 11 * drew@colorado.edu
1da177e4
LT
12 * +1 (303) 666-5836
13 *
c28bda25 14 * For more information, please consult
1da177e4
LT
15 *
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.
c28bda25 58 *
1da177e4
LT
59 * - 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
e3f463b0
FT
69/* Adapted for the sun3 by Sam Creasey. */
70
1da177e4 71#if (NDEBUG & NDEBUG_LISTS)
c28bda25
RZ
72#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)
1da177e4
LT
87#else
88#define LIST(x,y)
89#define REMOVE(w,x,y,z)
90#endif
91
1da177e4
LT
92/*
93 * Design
1da177e4 94 *
c28bda25 95 * This is a generic 5380 driver. To use it on a different platform,
1da177e4 96 * one simply writes appropriate system specific macros (ie, data
c28bda25 97 * transfer - some PC's will use the I/O bus, 68K's must use
1da177e4
LT
98 * memory mapped) and drops this file in their 'C' wrapper.
99 *
c28bda25 100 * As far as command queueing, two queues are maintained for
1da177e4 101 * each 5380 in the system - commands that haven't been issued yet,
c28bda25
RZ
102 * 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
1da177e4
LT
107 * while a command is already executing.
108 *
1da177e4 109 *
c28bda25 110 * Issues specific to the NCR5380 :
1da177e4 111 *
c28bda25
RZ
112 * 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
686f3990 116 * while doing long seek operations. [...] These
1da177e4
LT
117 * 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,
ff50f9ed
FT
123 * 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.
1da177e4
LT
127 *
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
ff50f9ed
FT
132 * queue, and NCR5380_main tries to find more work. If the target is
133 * idle for too long, the system will try to sleep.
1da177e4
LT
134 *
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 *
c28bda25 139 * On command termination, the done function will be called as
1da177e4
LT
140 * appropriate.
141 *
c28bda25 142 * SCSI pointers are maintained in the SCp field of SCSI command
1da177e4
LT
143 * 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
c28bda25 152 * of chips. To use it, you write an architecture specific functions
1da177e4
LT
153 * and macros and include this file in your driver.
154 *
c28bda25 155 * These macros control options :
1da177e4 156 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
c28bda25 157 * for commands that return with a CHECK CONDITION status.
1da177e4 158 *
ff50f9ed
FT
159 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
160 * transceivers.
161 *
1da177e4
LT
162 * 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 :
c28bda25 167 *
1da177e4
LT
168 * NCR5380_read(register) - read from the specified register
169 *
c28bda25 170 * NCR5380_write(register, value) - write to the specific register
1da177e4 171 *
ff50f9ed
FT
172 * NCR5380_implementation_fields - additional fields needed for this
173 * specific implementation of the NCR5380
174 *
1da177e4 175 * Either real DMA *or* pseudo DMA may be implemented
c28bda25 176 * REAL functions :
1da177e4 177 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
c28bda25 178 * Note that the DMA setup functions should return the number of bytes
1da177e4
LT
179 * that they were able to program the controller for.
180 *
c28bda25 181 * Also note that generic i386/PC versions of these macros are
1da177e4
LT
182 * 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 *
1da177e4 193 * The generic driver is initialized by calling NCR5380_init(instance),
c28bda25 194 * after setting the appropriate host specific fields and ID. If the
1da177e4 195 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
8c32513b 196 * possible) function may be used.
1da177e4
LT
197 */
198
1da177e4
LT
199/* 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
710ddd0d 205#define NEXT(cmd) ((struct scsi_cmnd *)(cmd)->host_scribble)
3130d905 206#define SET_NEXT(cmd,next) ((cmd)->host_scribble = (void *)(next))
710ddd0d 207#define NEXTADDR(cmd) ((struct scsi_cmnd **)&(cmd)->host_scribble)
1da177e4
LT
208
209#define HOSTNO instance->host_no
210#define H_NO(cmd) (cmd)->device->host->host_no
211
636b1ec8
FT
212static int do_abort(struct Scsi_Host *);
213static void do_reset(struct Scsi_Host *);
214
1da177e4
LT
215#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
e42d0151 232 * target.
1da177e4
LT
233 *
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
ca513fc9 250static void __init init_tags(struct NCR5380_hostdata *hostdata)
1da177e4 251{
c28bda25 252 int target, lun;
61d739a4 253 struct tag_alloc *ta;
c28bda25 254
ca513fc9 255 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
c28bda25
RZ
256 return;
257
258 for (target = 0; target < 8; ++target) {
259 for (lun = 0; lun < 8; ++lun) {
61d739a4 260 ta = &hostdata->TagAlloc[target][lun];
c28bda25
RZ
261 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 }
1da177e4 269 }
1da177e4
LT
270}
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.
c28bda25 278 */
1da177e4 279
710ddd0d 280static int is_lun_busy(struct scsi_cmnd *cmd, int should_be_tagged)
1da177e4 281{
9cb78c16 282 u8 lun = cmd->device->lun;
c28bda25
RZ
283 SETUP_HOSTDATA(cmd->device->host);
284
9cb78c16 285 if (hostdata->busy[cmd->device->id] & (1 << lun))
c28bda25
RZ
286 return 1;
287 if (!should_be_tagged ||
ca513fc9
FT
288 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
289 !cmd->device->tagged_supported)
c28bda25 290 return 0;
61d739a4
FT
291 if (hostdata->TagAlloc[scmd_id(cmd)][lun].nr_allocated >=
292 hostdata->TagAlloc[scmd_id(cmd)][lun].queue_size) {
d65e634a 293 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d: no free tags\n",
9cb78c16 294 H_NO(cmd), cmd->device->id, lun);
c28bda25
RZ
295 return 1;
296 }
297 return 0;
1da177e4
LT
298}
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
710ddd0d 306static void cmd_get_tag(struct scsi_cmnd *cmd, int should_be_tagged)
1da177e4 307{
9cb78c16 308 u8 lun = cmd->device->lun;
c28bda25
RZ
309 SETUP_HOSTDATA(cmd->device->host);
310
311 /* If we or the target don't support tagged queuing, allocate the LUN for
312 * an untagged command.
313 */
314 if (!should_be_tagged ||
ca513fc9
FT
315 !(hostdata->flags & FLAG_TAGGED_QUEUING) ||
316 !cmd->device->tagged_supported) {
c28bda25 317 cmd->tag = TAG_NONE;
9cb78c16 318 hostdata->busy[cmd->device->id] |= (1 << lun);
d65e634a 319 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d now allocated by untagged "
9cb78c16 320 "command\n", H_NO(cmd), cmd->device->id, lun);
c28bda25 321 } else {
61d739a4 322 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
c28bda25
RZ
323
324 cmd->tag = find_first_zero_bit(ta->allocated, MAX_TAGS);
325 set_bit(cmd->tag, ta->allocated);
326 ta->nr_allocated++;
d65e634a 327 dprintk(NDEBUG_TAGS, "scsi%d: using tag %d for target %d lun %d "
c28bda25
RZ
328 "(now %d tags in use)\n",
329 H_NO(cmd), cmd->tag, cmd->device->id,
9cb78c16 330 lun, ta->nr_allocated);
c28bda25 331 }
1da177e4
LT
332}
333
334
335/* Mark the tag of command 'cmd' as free, or in case of an untagged command,
336 * unlock the LUN.
337 */
338
710ddd0d 339static void cmd_free_tag(struct scsi_cmnd *cmd)
1da177e4 340{
9cb78c16 341 u8 lun = cmd->device->lun;
c28bda25
RZ
342 SETUP_HOSTDATA(cmd->device->host);
343
344 if (cmd->tag == TAG_NONE) {
9cb78c16 345 hostdata->busy[cmd->device->id] &= ~(1 << lun);
d65e634a 346 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %d untagged cmd finished\n",
9cb78c16 347 H_NO(cmd), cmd->device->id, lun);
c28bda25
RZ
348 } 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 {
61d739a4 352 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][lun];
c28bda25
RZ
353 clear_bit(cmd->tag, ta->allocated);
354 ta->nr_allocated--;
d65e634a 355 dprintk(NDEBUG_TAGS, "scsi%d: freed tag %d for target %d lun %d\n",
9cb78c16 356 H_NO(cmd), cmd->tag, cmd->device->id, lun);
c28bda25 357 }
1da177e4
LT
358}
359
360
ca513fc9 361static void free_all_tags(struct NCR5380_hostdata *hostdata)
1da177e4 362{
c28bda25 363 int target, lun;
61d739a4 364 struct tag_alloc *ta;
c28bda25 365
ca513fc9 366 if (!(hostdata->flags & FLAG_TAGGED_QUEUING))
c28bda25
RZ
367 return;
368
369 for (target = 0; target < 8; ++target) {
370 for (lun = 0; lun < 8; ++lun) {
61d739a4 371 ta = &hostdata->TagAlloc[target][lun];
c28bda25
RZ
372 bitmap_zero(ta->allocated, MAX_TAGS);
373 ta->nr_allocated = 0;
374 }
1da177e4 375 }
1da177e4
LT
376}
377
378#endif /* SUPPORT_TAGS */
379
380
381/*
710ddd0d 382 * Function: void merge_contiguous_buffers( struct scsi_cmnd *cmd )
1da177e4
LT
383 *
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 *
710ddd0d 388 * Parameters: struct scsi_cmnd *cmd
1da177e4 389 * The command to work on. The first scatter buffer's data are
25985edc 390 * assumed to be already transferred into ptr/this_residual.
1da177e4
LT
391 */
392
710ddd0d 393static void merge_contiguous_buffers(struct scsi_cmnd *cmd)
1da177e4 394{
e3f463b0 395#if !defined(CONFIG_SUN3)
c28bda25 396 unsigned long endaddr;
1da177e4 397#if (NDEBUG & NDEBUG_MERGING)
c28bda25
RZ
398 unsigned long oldlen = cmd->SCp.this_residual;
399 int cnt = 1;
1da177e4
LT
400#endif
401
c28bda25
RZ
402 for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
403 cmd->SCp.buffers_residual &&
5a1cb47f 404 virt_to_phys(sg_virt(&cmd->SCp.buffer[1])) == endaddr;) {
d65e634a 405 dprintk(NDEBUG_MERGING, "VTOP(%p) == %08lx -> merging\n",
5a1cb47f 406 page_address(sg_page(&cmd->SCp.buffer[1])), endaddr);
1da177e4 407#if (NDEBUG & NDEBUG_MERGING)
c28bda25 408 ++cnt;
1da177e4 409#endif
c28bda25
RZ
410 ++cmd->SCp.buffer;
411 --cmd->SCp.buffers_residual;
412 cmd->SCp.this_residual += cmd->SCp.buffer->length;
413 endaddr += cmd->SCp.buffer->length;
414 }
1da177e4 415#if (NDEBUG & NDEBUG_MERGING)
c28bda25 416 if (oldlen != cmd->SCp.this_residual)
d65e634a 417 dprintk(NDEBUG_MERGING, "merged %d buffers from %p, new length %08x\n",
c28bda25 418 cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
1da177e4 419#endif
e3f463b0 420#endif /* !defined(CONFIG_SUN3) */
1da177e4
LT
421}
422
ff50f9ed
FT
423/**
424 * initialize_SCp - init the scsi pointer field
425 * @cmd: command block to set up
1da177e4 426 *
ff50f9ed 427 * Set up the internal fields in the SCSI command.
1da177e4
LT
428 */
429
710ddd0d 430static inline void initialize_SCp(struct scsi_cmnd *cmd)
1da177e4 431{
c28bda25
RZ
432 /*
433 * Initialize the Scsi Pointer field so that all of the commands in the
434 * various queues are valid.
1da177e4 435 */
c28bda25 436
9e0fe44d
BH
437 if (scsi_bufflen(cmd)) {
438 cmd->SCp.buffer = scsi_sglist(cmd);
439 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
45711f1a 440 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
c28bda25
RZ
441 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;
9e0fe44d
BH
449 cmd->SCp.ptr = NULL;
450 cmd->SCp.this_residual = 0;
c28bda25 451 }
1da177e4
LT
452}
453
636b1ec8 454/**
b32ade12 455 * NCR5380_poll_politely2 - wait for two chip register values
636b1ec8 456 * @instance: controller to poll
b32ade12
FT
457 * @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
2f854b82 463 * @wait: Time-out in jiffies
636b1ec8 464 *
2f854b82
FT
465 * 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.
636b1ec8 469 *
b32ade12 470 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
636b1ec8
FT
471 */
472
b32ade12
FT
473static int NCR5380_poll_politely2(struct Scsi_Host *instance,
474 int reg1, int bit1, int val1,
475 int reg2, int bit2, int val2, int wait)
636b1ec8 476{
2f854b82
FT
477 struct NCR5380_hostdata *hostdata = shost_priv(instance);
478 unsigned long deadline = jiffies + wait;
479 unsigned long n;
480
481 /* Busy-wait for up to 10 ms */
482 n = min(10000U, jiffies_to_usecs(wait));
483 n *= hostdata->accesses_per_ms;
b32ade12 484 n /= 2000;
2f854b82 485 do {
b32ade12
FT
486 if ((NCR5380_read(reg1) & bit1) == val1)
487 return 0;
488 if ((NCR5380_read(reg2) & bit2) == val2)
636b1ec8
FT
489 return 0;
490 cpu_relax();
2f854b82
FT
491 } while (n--);
492
493 if (irqs_disabled() || in_interrupt())
494 return -ETIMEDOUT;
636b1ec8 495
2f854b82
FT
496 /* Repeatedly sleep for 1 ms until deadline */
497 while (time_is_after_jiffies(deadline)) {
498 schedule_timeout_uninterruptible(1);
b32ade12
FT
499 if ((NCR5380_read(reg1) & bit1) == val1)
500 return 0;
501 if ((NCR5380_read(reg2) & bit2) == val2)
636b1ec8 502 return 0;
636b1ec8 503 }
2f854b82 504
636b1ec8
FT
505 return -ETIMEDOUT;
506}
507
b32ade12
FT
508static 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
1da177e4
LT
515#if NDEBUG
516static struct {
c28bda25
RZ
517 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};
1da177e4 538
ff50f9ed
FT
539/**
540 * NCR5380_print - print scsi bus signals
541 * @instance: adapter state to dump
1da177e4 542 *
ff50f9ed 543 * Print the SCSI bus signals for debugging purposes
1da177e4
LT
544 */
545
c28bda25
RZ
546static void NCR5380_print(struct Scsi_Host *instance)
547{
548 unsigned char status, data, basr, mr, icr, i;
c28bda25 549
c28bda25
RZ
550 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);
11d2f63b 555
c28bda25
RZ
556 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");
1da177e4
LT
573}
574
575static struct {
c28bda25
RZ
576 unsigned char value;
577 const char *name;
1da177e4 578} phases[] = {
c28bda25
RZ
579 {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
580 {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
581 {PHASE_UNKNOWN, "UNKNOWN"}
582};
1da177e4 583
ff50f9ed
FT
584/**
585 * NCR5380_print_phase - show SCSI phase
586 * @instance: adapter to dump
1da177e4 587 *
ff50f9ed 588 * Print the current SCSI phase for debugging purposes
1da177e4 589 *
ff50f9ed 590 * Locks: none
1da177e4
LT
591 */
592
593static void NCR5380_print_phase(struct Scsi_Host *instance)
594{
c28bda25
RZ
595 unsigned char status;
596 int i;
597
598 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 }
1da177e4
LT
607}
608
1da177e4
LT
609#endif
610
8c32513b
FT
611/**
612 * NCR58380_info - report driver and host information
613 * @instance: relevant scsi host instance
1da177e4 614 *
8c32513b 615 * For use as the host template info() handler.
1da177e4 616 *
8c32513b 617 * Locks: none
1da177e4
LT
618 */
619
8c32513b 620static const char *NCR5380_info(struct Scsi_Host *instance)
1da177e4 621{
8c32513b
FT
622 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, "
9c3f0e2b 636 "flags { %s%s}, "
8c32513b
FT
637 "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,
ca513fc9 642 hostdata->flags & FLAG_TAGGED_QUEUING ? "TAGGED_QUEUING " : "",
9c3f0e2b 643 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
8c32513b
FT
644#ifdef DIFFERENTIAL
645 "DIFFERENTIAL "
646#endif
1da177e4 647#ifdef REAL_DMA
8c32513b 648 "REAL_DMA "
1da177e4
LT
649#endif
650#ifdef PARITY
8c32513b 651 "PARITY "
1da177e4
LT
652#endif
653#ifdef SUPPORT_TAGS
8c32513b 654 "SUPPORT_TAGS "
1da177e4 655#endif
8c32513b 656 "");
1da177e4
LT
657}
658
ff50f9ed
FT
659/**
660 * NCR5380_init - initialise an NCR5380
661 * @instance: adapter to configure
662 * @flags: control flags
1da177e4 663 *
ff50f9ed
FT
664 * Initializes *instance and corresponding 5380 chip,
665 * with flags OR'd into the initial flags value.
1da177e4
LT
666 *
667 * Notes : I assume that the host, hostno, and id bits have been
ff50f9ed 668 * set correctly. I don't care about the irq and other fields.
c28bda25 669 *
ff50f9ed 670 * Returns 0 for success
1da177e4
LT
671 */
672
95fde7a8 673static int __init NCR5380_init(struct Scsi_Host *instance, int flags)
1da177e4 674{
c28bda25
RZ
675 int i;
676 SETUP_HOSTDATA(instance);
2f854b82 677 unsigned long deadline;
c28bda25 678
a53a21e4 679 hostdata->host = instance;
c28bda25
RZ
680 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;
1da177e4 687#ifdef SUPPORT_TAGS
ca513fc9 688 init_tags(hostdata);
1da177e4
LT
689#endif
690#if defined (REAL_DMA)
c28bda25 691 hostdata->dma_len = 0;
1da177e4 692#endif
11d2f63b 693 spin_lock_init(&hostdata->lock);
c28bda25
RZ
694 hostdata->connected = NULL;
695 hostdata->issue_queue = NULL;
696 hostdata->disconnected_queue = NULL;
ef1081cb 697 hostdata->flags = flags;
c28bda25 698
a53a21e4 699 INIT_WORK(&hostdata->main_task, NCR5380_main);
0ad0eff9
FT
700 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;
1da177e4 705
8c32513b
FT
706 prepare_info(instance);
707
c28bda25
RZ
708 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);
1da177e4 712
2f854b82
FT
713 /* 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
c28bda25 727 return 0;
1da177e4
LT
728}
729
636b1ec8
FT
730/**
731 * 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{
9c3f0e2b 746 struct NCR5380_hostdata *hostdata = shost_priv(instance);
636b1ec8
FT
747 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);
9c3f0e2b
FT
765 /* 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);
636b1ec8
FT
773 break;
774 case 6:
775 shost_printk(KERN_ERR, instance, "bus locked solid\n");
776 return -ENXIO;
777 }
778 }
779 return 0;
780}
781
ff50f9ed
FT
782/**
783 * 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
6323e4fe
GU
789static void NCR5380_exit(struct Scsi_Host *instance)
790{
a53a21e4
FT
791 struct NCR5380_hostdata *hostdata = shost_priv(instance);
792
793 cancel_work_sync(&hostdata->main_task);
0ad0eff9 794 destroy_workqueue(hostdata->work_q);
6323e4fe
GU
795}
796
ff50f9ed
FT
797/**
798 * NCR5380_queue_command - queue a command
799 * @instance: the relevant SCSI adapter
800 * @cmd: SCSI command
1da177e4 801 *
1bb40589 802 * cmd is added to the per-instance issue queue, with minor
ff50f9ed
FT
803 * twiddling done to the host specific fields of cmd. If the
804 * main coroutine is not running, it is restarted.
1da177e4
LT
805 */
806
16b29e75
FT
807static int NCR5380_queue_command(struct Scsi_Host *instance,
808 struct scsi_cmnd *cmd)
1da177e4 809{
16b29e75 810 struct NCR5380_hostdata *hostdata = shost_priv(instance);
710ddd0d 811 struct scsi_cmnd *tmp;
c28bda25 812 unsigned long flags;
1da177e4
LT
813
814#if (NDEBUG & NDEBUG_NO_WRITE)
c28bda25
RZ
815 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);
16b29e75 821 cmd->scsi_done(cmd);
c28bda25
RZ
822 return 0;
823 }
1da177e4
LT
824#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
825
c28bda25
RZ
826 /*
827 * We use the host_scribble field as a pointer to the next command
828 * in a queue
829 */
830
3130d905 831 SET_NEXT(cmd, NULL);
c28bda25
RZ
832 cmd->result = 0;
833
834 /*
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 */
840
c28bda25
RZ
841 /* ++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 */
e3c3da67 853 if (!NCR5380_acquire_dma_irq(instance))
16b29e75
FT
854 return SCSI_MLQUEUE_HOST_BUSY;
855
11d2f63b 856 spin_lock_irqsave(&hostdata->lock, flags);
16b29e75 857
ff50f9ed
FT
858 /*
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
c28bda25
RZ
865 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
866 LIST(cmd, hostdata->issue_queue);
3130d905 867 SET_NEXT(cmd, hostdata->issue_queue);
c28bda25
RZ
868 hostdata->issue_queue = cmd;
869 } else {
710ddd0d 870 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue;
c28bda25
RZ
871 NEXT(tmp); tmp = NEXT(tmp))
872 ;
873 LIST(cmd, tmp);
3130d905 874 SET_NEXT(tmp, cmd);
c28bda25 875 }
11d2f63b 876 spin_unlock_irqrestore(&hostdata->lock, flags);
c28bda25 877
d65e634a 878 dprintk(NDEBUG_QUEUES, "scsi%d: command added to %s of queue\n", H_NO(cmd),
c28bda25
RZ
879 (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
880
010e89d1
FT
881 /* Kick off command processing */
882 queue_work(hostdata->work_q, &hostdata->main_task);
c28bda25 883 return 0;
1da177e4
LT
884}
885
e3c3da67
FT
886static 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
ff50f9ed
FT
898/**
899 * NCR5380_main - NCR state machines
1da177e4 900 *
ff50f9ed
FT
901 * 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.
c28bda25 905 *
ff50f9ed 906 * Locks: called as its own thread with no locks held.
c28bda25
RZ
907 */
908
b312b38c 909static void NCR5380_main(struct work_struct *work)
1da177e4 910{
a53a21e4
FT
911 struct NCR5380_hostdata *hostdata =
912 container_of(work, struct NCR5380_hostdata, main_task);
913 struct Scsi_Host *instance = hostdata->host;
710ddd0d 914 struct scsi_cmnd *tmp, *prev;
c28bda25 915 int done;
c28bda25
RZ
916
917 /*
c28bda25
RZ
918 * ++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 */
922
11d2f63b 923 spin_lock_irq(&hostdata->lock);
c28bda25 924 do {
c28bda25
RZ
925 done = 1;
926
927 if (!hostdata->connected) {
d65e634a 928 dprintk(NDEBUG_MAIN, "scsi%d: not connected\n", HOSTNO);
c28bda25
RZ
929 /*
930 * Search through the issue_queue for a command destined
931 * for a target that's not busy.
932 */
1da177e4 933#if (NDEBUG & NDEBUG_LISTS)
710ddd0d 934 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL;
c28bda25
RZ
935 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"); */
1da177e4 941#endif
710ddd0d 942 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue,
c28bda25 943 prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp)) {
9cb78c16 944 u8 lun = tmp->device->lun;
1da177e4 945
e3f463b0
FT
946 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);
c28bda25 950 /* When we find one, remove it from the issue queue. */
c28bda25 951 if (
1da177e4 952#ifdef SUPPORT_TAGS
c28bda25 953 !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
1da177e4 954#else
9cb78c16 955 !(hostdata->busy[tmp->device->id] & (1 << lun))
1da177e4 956#endif
c28bda25 957 ) {
c28bda25
RZ
958 if (prev) {
959 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
3130d905 960 SET_NEXT(prev, NEXT(tmp));
c28bda25
RZ
961 } else {
962 REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
963 hostdata->issue_queue = NEXT(tmp);
964 }
3130d905 965 SET_NEXT(tmp, NULL);
ef1081cb 966 hostdata->retain_dma_intr++;
c28bda25 967
c28bda25
RZ
968 /*
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 */
d65e634a 974 dprintk(NDEBUG_MAIN, "scsi%d: main(): command for target %d "
c28bda25 975 "lun %d removed from issue_queue\n",
9cb78c16 976 HOSTNO, tmp->device->id, lun);
c28bda25
RZ
977 /*
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
1da177e4 987#ifdef SUPPORT_TAGS
c28bda25 988 cmd_get_tag(tmp, tmp->cmnd[0] != REQUEST_SENSE);
1da177e4 989#endif
76f13b93 990 if (!NCR5380_select(instance, tmp)) {
1f1b0c74 991 /* OK or bad target */
ef1081cb 992 hostdata->retain_dma_intr--;
e3c3da67 993 maybe_release_dma_irq(instance);
c28bda25 994 } else {
1f1b0c74 995 /* Need to retry */
c28bda25 996 LIST(tmp, hostdata->issue_queue);
3130d905 997 SET_NEXT(tmp, hostdata->issue_queue);
c28bda25 998 hostdata->issue_queue = tmp;
1da177e4 999#ifdef SUPPORT_TAGS
c28bda25 1000 cmd_free_tag(tmp);
1da177e4 1001#endif
ef1081cb 1002 hostdata->retain_dma_intr--;
1d3db59d 1003 done = 0;
d65e634a 1004 dprintk(NDEBUG_MAIN, "scsi%d: main(): select() failed, "
c28bda25 1005 "returned to issue_queue\n", HOSTNO);
c28bda25 1006 }
1f1b0c74
FT
1007 if (hostdata->connected)
1008 break;
c28bda25
RZ
1009 } /* if target/lun/target queue is not busy */
1010 } /* for issue_queue */
1011 } /* if (!hostdata->connected) */
1012
1013 if (hostdata->connected
1da177e4 1014#ifdef REAL_DMA
c28bda25 1015 && !hostdata->dma_len
1da177e4 1016#endif
c28bda25 1017 ) {
d65e634a 1018 dprintk(NDEBUG_MAIN, "scsi%d: main: performing information transfer\n",
c28bda25
RZ
1019 HOSTNO);
1020 NCR5380_information_transfer(instance);
d65e634a 1021 dprintk(NDEBUG_MAIN, "scsi%d: main: done set false\n", HOSTNO);
c28bda25
RZ
1022 done = 0;
1023 }
1024 } while (!done);
11d2f63b 1025 spin_unlock_irq(&hostdata->lock);
1da177e4
LT
1026}
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
c28bda25 1034 * mismatch occurs (which would finish the DMA transfer).
1da177e4
LT
1035 *
1036 * Inputs : instance - this instance of the NCR5380.
1037 *
1038 */
1039
c28bda25 1040static void NCR5380_dma_complete(struct Scsi_Host *instance)
1da177e4 1041{
c28bda25 1042 SETUP_HOSTDATA(instance);
01bd9081 1043 int transferred;
e3f463b0 1044 unsigned char **data;
c28bda25 1045 volatile int *count;
e3f463b0
FT
1046 int saved_data = 0, overrun = 0;
1047 unsigned char p;
c28bda25 1048
ef1081cb 1049 if (hostdata->read_overruns) {
c28bda25
RZ
1050 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;
d65e634a 1058 dprintk(NDEBUG_DMA, "scsi%d: read overrun handled\n", HOSTNO);
c28bda25
RZ
1059 }
1060 }
1061 }
1062
e3f463b0
FT
1063#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
c28bda25
RZ
1081 NCR5380_write(MODE_REG, MR_BASE);
1082 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
cd400825 1083 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
c28bda25 1084
01bd9081 1085 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
c28bda25
RZ
1086 hostdata->dma_len = 0;
1087
1088 data = (unsigned char **)&hostdata->connected->SCp.ptr;
1089 count = &hostdata->connected->SCp.this_residual;
01bd9081
FT
1090 *data += transferred;
1091 *count -= transferred;
c28bda25 1092
ef1081cb 1093 if (hostdata->read_overruns) {
e3f463b0
FT
1094 int cnt, toPIO;
1095
c28bda25 1096 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
ef1081cb 1097 cnt = toPIO = hostdata->read_overruns;
c28bda25 1098 if (overrun) {
d65e634a 1099 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
c28bda25
RZ
1100 *(*data)++ = saved_data;
1101 (*count)--;
1102 cnt--;
1103 toPIO--;
1104 }
d65e634a 1105 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%08lx\n", cnt, (long)*data);
c28bda25
RZ
1106 NCR5380_transfer_pio(instance, &p, &cnt, data);
1107 *count -= toPIO - cnt;
1108 }
1da177e4 1109 }
1da177e4
LT
1110}
1111#endif /* REAL_DMA */
1112
1113
ff50f9ed
FT
1114/**
1115 * NCR5380_intr - generic NCR5380 irq handler
1116 * @irq: interrupt number
1117 * @dev_id: device info
1da177e4 1118 *
ff50f9ed
FT
1119 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1120 * from the disconnected queue, and restarting NCR5380_main()
1121 * as required.
cd400825
FT
1122 *
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.
1da177e4
LT
1146 */
1147
c28bda25 1148static irqreturn_t NCR5380_intr(int irq, void *dev_id)
1da177e4 1149{
a53a21e4 1150 struct Scsi_Host *instance = dev_id;
010e89d1 1151 struct NCR5380_hostdata *hostdata = shost_priv(instance);
cd400825 1152 int handled = 0;
c28bda25 1153 unsigned char basr;
11d2f63b
FT
1154 unsigned long flags;
1155
1156 spin_lock_irqsave(&hostdata->lock, flags);
c28bda25 1157
c28bda25 1158 basr = NCR5380_read(BUS_AND_STATUS_REG);
c28bda25 1159 if (basr & BASR_IRQ) {
cd400825
FT
1160 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);
1da177e4
LT
1165
1166#if defined(REAL_DMA)
cd400825
FT
1167 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.
c28bda25
RZ
1171 */
1172
cd400825 1173 dprintk(NDEBUG_INTR, "scsi%d: interrupt in DMA mode\n", HOSTNO);
c28bda25 1174
cd400825
FT
1175 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);
1181 }
1182 } else
1da177e4 1183#endif /* REAL_DMA */
cd400825
FT
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);
e3f463b0 1204#ifdef SUN3_SCSI_VME
cd400825 1205 dregs->csr |= CSR_DMA_ENABLE;
e3f463b0 1206#endif
cd400825 1207 }
c28bda25 1208 handled = 1;
cd400825
FT
1209 } else {
1210 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
e3f463b0
FT
1211#ifdef SUN3_SCSI_VME
1212 dregs->csr |= CSR_DMA_ENABLE;
1213#endif
c28bda25
RZ
1214 }
1215
11d2f63b
FT
1216 spin_unlock_irqrestore(&hostdata->lock, flags);
1217
c28bda25 1218 return IRQ_RETVAL(handled);
1da177e4
LT
1219}
1220
c28bda25 1221/*
710ddd0d
FT
1222 * Function : int NCR5380_select(struct Scsi_Host *instance,
1223 * struct scsi_cmnd *cmd)
1da177e4
LT
1224 *
1225 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
c28bda25
RZ
1226 * including ARBITRATION, SELECTION, and initial message out for
1227 * IDENTIFY and queue messages.
1da177e4 1228 *
c28bda25 1229 * Inputs : instance - instantiation of the 5380 driver on which this
76f13b93 1230 * target lives, cmd - SCSI command to execute.
c28bda25 1231 *
6323876f
FT
1232 * 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).
1da177e4 1235 *
c28bda25
RZ
1236 * Side effects :
1237 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1da177e4
LT
1238 * 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 *
c28bda25
RZ
1242 * 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.
1da177e4 1245 *
c28bda25 1246 * If failed (no target) : cmd->scsi_done() will be called, and the
1da177e4
LT
1247 * cmd->result host byte set to DID_BAD_TARGET.
1248 */
1249
710ddd0d 1250static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
1da177e4 1251{
c28bda25
RZ
1252 SETUP_HOSTDATA(instance);
1253 unsigned char tmp[3], phase;
1254 unsigned char *data;
1255 int len;
ae753a33 1256 int err;
c28bda25 1257
8ad3a593 1258 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
d65e634a 1259 dprintk(NDEBUG_ARBITRATION, "scsi%d: starting arbitration, id = %d\n", HOSTNO,
c28bda25
RZ
1260 instance->this_id);
1261
1262 /*
1263 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1264 * data bus during SELECTION.
1265 */
1266
c28bda25 1267 NCR5380_write(TARGET_COMMAND_REG, 0);
1da177e4 1268
c28bda25
RZ
1269 /*
1270 * Start arbitration.
1271 */
1da177e4 1272
c28bda25
RZ
1273 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1274 NCR5380_write(MODE_REG, MR_ARBITRATE);
1da177e4 1275
55500d9b
FT
1276 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1277 * Bus Free Delay, arbitration will begin.
1278 */
c28bda25 1279
11d2f63b 1280 spin_unlock_irq(&hostdata->lock);
b32ade12
FT
1281 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1282 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1283 ICR_ARBITRATION_PROGRESS, HZ);
11d2f63b 1284 spin_lock_irq(&hostdata->lock);
b32ade12
FT
1285 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;
c28bda25 1294 }
11d2f63b 1295 spin_unlock_irq(&hostdata->lock);
c28bda25 1296
55500d9b 1297 /* The SCSI-2 arbitration delay is 2.4 us */
c28bda25
RZ
1298 udelay(3);
1299
1300 /* 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) ||
11d2f63b 1303 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
c28bda25 1304 NCR5380_write(MODE_REG, MR_BASE);
d65e634a 1305 dprintk(NDEBUG_ARBITRATION, "scsi%d: lost arbitration, deasserting MR_ARBITRATE\n",
c28bda25 1306 HOSTNO);
11d2f63b 1307 spin_lock_irq(&hostdata->lock);
c28bda25
RZ
1308 return -1;
1309 }
1da177e4 1310
cf13b083
FT
1311 /* 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 */
c28bda25
RZ
1315 NCR5380_write(INITIATOR_COMMAND_REG,
1316 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
1317
c28bda25
RZ
1318 /*
1319 * Again, bus clear + bus settle time is 1.2us, however, this is
1320 * a minimum so we'll udelay ceil(1.2)
1321 */
1da177e4 1322
9c3f0e2b
FT
1323 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1324 udelay(15);
1325 else
1326 udelay(2);
c28bda25 1327
11d2f63b
FT
1328 spin_lock_irq(&hostdata->lock);
1329
72064a78
FT
1330 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1331 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
c28bda25 1332 return -1;
c28bda25 1333
d65e634a 1334 dprintk(NDEBUG_ARBITRATION, "scsi%d: won arbitration\n", HOSTNO);
c28bda25
RZ
1335
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 ));
1da177e4 1351 NCR5380_write(MODE_REG, MR_BASE);
1da177e4 1352
c28bda25
RZ
1353 /*
1354 * Reselect interrupts must be turned off prior to the dropping of BSY,
1355 * otherwise we will trigger an interrupt.
1356 */
c28bda25 1357 NCR5380_write(SELECT_ENABLE_REG, 0);
1da177e4 1358
11d2f63b
FT
1359 spin_unlock_irq(&hostdata->lock);
1360
c28bda25
RZ
1361 /*
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 */
1366
1367 /* Reset BSY */
1368 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA |
1369 ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1370
1371 /*
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 */
1da177e4 1387
c28bda25 1388 udelay(1);
1da177e4 1389
d65e634a 1390 dprintk(NDEBUG_SELECTION, "scsi%d: selecting target %d\n", HOSTNO, cmd->device->id);
1da177e4 1391
c28bda25
RZ
1392 /*
1393 * The SCSI specification calls for a 250 ms timeout for the actual
1394 * selection.
1395 */
1da177e4 1396
ae753a33
FT
1397 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1398 msecs_to_jiffies(250));
c28bda25
RZ
1399
1400 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
11d2f63b 1401 spin_lock_irq(&hostdata->lock);
c28bda25
RZ
1402 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1403 NCR5380_reselect(instance);
cd400825
FT
1404 if (!hostdata->connected)
1405 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
c28bda25
RZ
1406 printk(KERN_ERR "scsi%d: reselection after won arbitration?\n",
1407 HOSTNO);
c28bda25
RZ
1408 return -1;
1409 }
1da177e4 1410
ae753a33 1411 if (err < 0) {
11d2f63b 1412 spin_lock_irq(&hostdata->lock);
c28bda25 1413 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
c28bda25 1414 cmd->result = DID_BAD_TARGET << 16;
1da177e4 1415#ifdef SUPPORT_TAGS
c28bda25 1416 cmd_free_tag(cmd);
1da177e4 1417#endif
c28bda25
RZ
1418 cmd->scsi_done(cmd);
1419 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
d65e634a 1420 dprintk(NDEBUG_SELECTION, "scsi%d: target did not respond within 250ms\n", HOSTNO);
c28bda25
RZ
1421 return 0;
1422 }
1423
ae753a33
FT
1424 /*
1425 * 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
c28bda25
RZ
1434 /*
1435 * 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 */
55500d9b
FT
1450
1451 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
11d2f63b 1452 spin_lock_irq(&hostdata->lock);
55500d9b
FT
1453 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 }
c28bda25 1459
d65e634a 1460 dprintk(NDEBUG_SELECTION, "scsi%d: target %d selected, going into MESSAGE OUT phase.\n",
c28bda25
RZ
1461 HOSTNO, cmd->device->id);
1462 tmp[0] = IDENTIFY(1, cmd->device->lun);
1da177e4
LT
1463
1464#ifdef SUPPORT_TAGS
c28bda25
RZ
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;
1da177e4 1471#else
c28bda25
RZ
1472 len = 1;
1473 cmd->tag = 0;
1da177e4
LT
1474#endif /* SUPPORT_TAGS */
1475
c28bda25
RZ
1476 /* Send message(s) */
1477 data = tmp;
1478 phase = PHASE_MSGOUT;
1479 NCR5380_transfer_pio(instance, &phase, &len, &data);
d65e634a 1480 dprintk(NDEBUG_SELECTION, "scsi%d: nexus established.\n", HOSTNO);
c28bda25 1481 /* XXX need to handle errors here */
11d2f63b 1482
c28bda25 1483 hostdata->connected = cmd;
1da177e4 1484#ifndef SUPPORT_TAGS
c28bda25
RZ
1485 hostdata->busy[cmd->device->id] |= (1 << cmd->device->lun);
1486#endif
e3f463b0
FT
1487#ifdef SUN3_SCSI_VME
1488 dregs->csr |= CSR_INTR;
1489#endif
1da177e4 1490
c28bda25 1491 initialize_SCp(cmd);
1da177e4 1492
c28bda25 1493 return 0;
1da177e4
LT
1494}
1495
c28bda25
RZ
1496/*
1497 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
1da177e4
LT
1498 * unsigned char *phase, int *count, unsigned char **data)
1499 *
1500 * Purpose : transfers data in given phase using polled I/O
1501 *
c28bda25
RZ
1502 * Inputs : instance - instance of driver, *phase - pointer to
1503 * what phase is expected, *count - pointer to number of
1da177e4 1504 * bytes to transfer, **data - pointer to data pointer.
c28bda25 1505 *
1da177e4 1506 * Returns : -1 when different phase is entered without transferring
25985edc 1507 * maximum number of bytes, 0 if all bytes are transferred or exit
1da177e4
LT
1508 * is in same phase.
1509 *
c28bda25 1510 * Also, *phase, *count, *data are modified in place.
1da177e4
LT
1511 *
1512 * XXX Note : handling for bus free may be useful.
1513 */
1514
1515/*
c28bda25 1516 * Note : this code is not as quick as it could be, however it
1da177e4
LT
1517 * 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
c28bda25
RZ
1521static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1522 unsigned char *phase, int *count,
1523 unsigned char **data)
1da177e4 1524{
c28bda25
RZ
1525 register unsigned char p = *phase, tmp;
1526 register int c = *count;
1527 register unsigned char *d = *data;
1528
1529 /*
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
1da177e4 1533 */
1da177e4 1534
c28bda25 1535 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1da177e4 1536
c28bda25
RZ
1537 do {
1538 /*
1539 * Wait for assertion of REQ, after which the phase bits will be
1540 * valid
1541 */
686f3990
FT
1542
1543 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
1544 break;
1da177e4 1545
d65e634a 1546 dprintk(NDEBUG_HANDSHAKE, "scsi%d: REQ detected\n", HOSTNO);
1da177e4 1547
c28bda25 1548 /* Check for phase mismatch */
686f3990 1549 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
d65e634a 1550 dprintk(NDEBUG_PIO, "scsi%d: phase mismatch\n", HOSTNO);
8ad3a593 1551 NCR5380_dprint_phase(NDEBUG_PIO, instance);
c28bda25
RZ
1552 break;
1553 }
1da177e4 1554
c28bda25
RZ
1555 /* 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);
1da177e4 1560
c28bda25 1561 ++d;
1da177e4 1562
c28bda25
RZ
1563 /*
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 */
1da177e4 1569
c28bda25
RZ
1570 if (!(p & SR_IO)) {
1571 if (!((p & SR_MSG) && c > 1)) {
1572 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
8ad3a593 1573 NCR5380_dprint(NDEBUG_PIO, instance);
c28bda25
RZ
1574 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);
8ad3a593 1579 NCR5380_dprint(NDEBUG_PIO, instance);
c28bda25
RZ
1580 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1581 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1582 }
1583 } else {
8ad3a593 1584 NCR5380_dprint(NDEBUG_PIO, instance);
c28bda25
RZ
1585 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1586 }
1da177e4 1587
a2edc4a6
FT
1588 if (NCR5380_poll_politely(instance,
1589 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1590 break;
c28bda25 1591
d65e634a 1592 dprintk(NDEBUG_HANDSHAKE, "scsi%d: req false, handshake complete\n", HOSTNO);
c28bda25
RZ
1593
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
d65e634a 1613 dprintk(NDEBUG_PIO, "scsi%d: residual %d\n", HOSTNO, c);
c28bda25
RZ
1614
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)
a2edc4a6
FT
1619 * 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.
c28bda25 1621 */
a2edc4a6 1622 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
c28bda25
RZ
1623 *phase = tmp & PHASE_MASK;
1624 else
1625 *phase = PHASE_UNKNOWN;
1626
1627 if (!c || (*phase == p))
1628 return 0;
1629 else
1630 return -1;
1da177e4
LT
1631}
1632
636b1ec8
FT
1633/**
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
80d3eb6d
FT
1659/**
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
c28bda25 1663 *
80d3eb6d 1664 * Returns 0 on success, -1 on failure.
1da177e4
LT
1665 */
1666
a53a21e4 1667static int do_abort(struct Scsi_Host *instance)
1da177e4 1668{
c28bda25
RZ
1669 unsigned char tmp, *msgptr, phase;
1670 int len;
80d3eb6d 1671 int rc;
c28bda25
RZ
1672
1673 /* Request message out phase */
1da177e4 1674 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
c28bda25
RZ
1675
1676 /*
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 */
1685
80d3eb6d
FT
1686 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;
c28bda25
RZ
1691
1692 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1693
80d3eb6d
FT
1694 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;
c28bda25
RZ
1700 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;
a53a21e4 1707 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
c28bda25
RZ
1708
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;
80d3eb6d
FT
1715
1716timeout:
1717 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1718 return -1;
1da177e4
LT
1719}
1720
1721#if defined(REAL_DMA)
c28bda25
RZ
1722/*
1723 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
1da177e4
LT
1724 * unsigned char *phase, int *count, unsigned char **data)
1725 *
1726 * Purpose : transfers data in given phase using either real
1727 * or pseudo DMA.
1728 *
c28bda25
RZ
1729 * Inputs : instance - instance of driver, *phase - pointer to
1730 * what phase is expected, *count - pointer to number of
1da177e4 1731 * bytes to transfer, **data - pointer to data pointer.
c28bda25 1732 *
1da177e4 1733 * Returns : -1 when different phase is entered without transferring
25985edc 1734 * maximum number of bytes, 0 if all bytes or transferred or exit
1da177e4
LT
1735 * is in same phase.
1736 *
c28bda25 1737 * Also, *phase, *count, *data are modified in place.
1da177e4
LT
1738 *
1739 */
1740
1741
c28bda25
RZ
1742static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1743 unsigned char *phase, int *count,
1744 unsigned char **data)
1da177e4 1745{
c28bda25
RZ
1746 SETUP_HOSTDATA(instance);
1747 register int c = *count;
1748 register unsigned char p = *phase;
e3f463b0
FT
1749
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 */
e3f463b0
FT
1764
1765 /* send start chain */
1766 sun3scsi_dma_start(c, *data);
1767
cd400825
FT
1768 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);
e3f463b0 1771 if (p & SR_IO) {
e3f463b0 1772 NCR5380_write(INITIATOR_COMMAND_REG, 0);
e3f463b0
FT
1773 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1774 } else {
e3f463b0 1775 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_DATA);
e3f463b0
FT
1776 NCR5380_write(START_DMA_SEND_REG, 0);
1777 }
1778
1779#ifdef SUN3_SCSI_VME
1780 dregs->csr |= CSR_DMA_ENABLE;
1781#endif
1782
e3f463b0
FT
1783 sun3_dma_active = 1;
1784
1785#else /* !defined(CONFIG_SUN3) */
c28bda25
RZ
1786 register unsigned char *d = *data;
1787 unsigned char tmp;
c28bda25
RZ
1788
1789 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1790 *phase = tmp;
1791 return -1;
1792 }
1da177e4 1793
ef1081cb
FT
1794 if (hostdata->read_overruns && (p & SR_IO))
1795 c -= hostdata->read_overruns;
1da177e4 1796
d65e634a 1797 dprintk(NDEBUG_DMA, "scsi%d: initializing DMA for %s, %d bytes %s %p\n",
c28bda25
RZ
1798 HOSTNO, (p & SR_IO) ? "reading" : "writing",
1799 c, (p & SR_IO) ? "to" : "from", d);
1da177e4 1800
c28bda25 1801 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
cd400825
FT
1802 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1803 MR_ENABLE_EOP_INTR);
1da177e4 1804
ef1081cb 1805 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
c28bda25
RZ
1806 /* 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 */
c28bda25
RZ
1809 hostdata->dma_len = (p & SR_IO) ?
1810 NCR5380_dma_read_setup(instance, d, c) :
1811 NCR5380_dma_write_setup(instance, d, c);
c28bda25
RZ
1812 }
1813
1814 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
ef1081cb 1821 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
c28bda25
RZ
1822 /* On the Falcon, the DMA setup must be done after the last */
1823 /* NCR access, else the DMA setup gets trashed!
1824 */
c28bda25
RZ
1825 hostdata->dma_len = (p & SR_IO) ?
1826 NCR5380_dma_read_setup(instance, d, c) :
1827 NCR5380_dma_write_setup(instance, d, c);
c28bda25 1828 }
e3f463b0
FT
1829#endif /* !defined(CONFIG_SUN3) */
1830
c28bda25 1831 return 0;
1da177e4
LT
1832}
1833#endif /* defined(REAL_DMA) */
1834
1835/*
1836 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1837 *
c28bda25
RZ
1838 * Purpose : run through the various SCSI phases and do as the target
1839 * directs us to. Operates on the currently connected command,
1da177e4
LT
1840 * instance->connected.
1841 *
1842 * Inputs : instance, instance for which we are doing commands
1843 *
c28bda25 1844 * Side effects : SCSI things happen, the disconnected queue will be
1da177e4
LT
1845 * modified if a command disconnects, *instance->connected will
1846 * change.
1847 *
c28bda25
RZ
1848 * XXX Note : we need to watch for bus free or a reset condition here
1849 * to recover from an unexpected bus free condition.
1da177e4 1850 */
c28bda25
RZ
1851
1852static void NCR5380_information_transfer(struct Scsi_Host *instance)
1da177e4 1853{
c28bda25 1854 SETUP_HOSTDATA(instance);
c28bda25
RZ
1855 unsigned char msgout = NOP;
1856 int sink = 0;
1857 int len;
1da177e4 1858#if defined(REAL_DMA)
c28bda25 1859 int transfersize;
1da177e4 1860#endif
c28bda25
RZ
1861 unsigned char *data;
1862 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
11d2f63b 1863 struct scsi_cmnd *cmd;
c28bda25 1864
e3f463b0
FT
1865#ifdef SUN3_SCSI_VME
1866 dregs->csr |= CSR_INTR;
1867#endif
1868
11d2f63b 1869 while ((cmd = hostdata->connected)) {
c28bda25
RZ
1870 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;
8ad3a593 1876 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
c28bda25 1877 }
e3f463b0
FT
1878#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 */
1da177e4 1905
c28bda25
RZ
1906 if (sink && (phase != PHASE_MSGOUT)) {
1907 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1908
1909 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:
1da177e4 1921#if (NDEBUG & NDEBUG_NO_DATAOUT)
c28bda25
RZ
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;
cce99c69 1927 cmd->scsi_done(cmd);
c28bda25 1928 return;
1da177e4 1929#endif
c28bda25
RZ
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;
45711f1a 1940 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
c28bda25
RZ
1941 /* ++roman: Try to merge some scatter-buffers if
1942 * they are at contiguous physical addresses.
1943 */
1944 merge_contiguous_buffers(cmd);
d65e634a 1945 dprintk(NDEBUG_INFORMATION, "scsi%d: %d bytes and %d buffers left\n",
c28bda25
RZ
1946 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 */
1da177e4
LT
1964
1965#if defined(REAL_DMA)
e3f463b0 1966#if !defined(CONFIG_SUN3)
ff3d4578
FT
1967 transfersize = 0;
1968 if (!cmd->device->borken)
e3f463b0 1969#endif
ff3d4578
FT
1970 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
1971
1972 if (transfersize >= DMA_MIN_SIZE) {
c28bda25
RZ
1973 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. */
ff50f9ed
FT
1981 scmd_printk(KERN_INFO, cmd,
1982 "switching to slow handshake\n");
c28bda25 1983 cmd->device->borken = 1;
c28bda25
RZ
1984 sink = 1;
1985 do_abort(instance);
1986 cmd->result = DID_ERROR << 16;
cce99c69 1987 cmd->scsi_done(cmd);
c28bda25
RZ
1988 /* XXX - need to source or sink data here, as appropriate */
1989 } else {
1da177e4 1990#ifdef REAL_DMA
c28bda25
RZ
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;
1997#else
1998 cmd->SCp.this_residual -= transfersize - len;
1da177e4 1999#endif
c28bda25
RZ
2000 }
2001 } else
1da177e4 2002#endif /* defined(REAL_DMA) */
11d2f63b
FT
2003 {
2004 spin_unlock_irq(&hostdata->lock);
c28bda25
RZ
2005 NCR5380_transfer_pio(instance, &phase,
2006 (int *)&cmd->SCp.this_residual,
2007 (unsigned char **)&cmd->SCp.ptr);
11d2f63b
FT
2008 spin_lock_irq(&hostdata->lock);
2009 }
e3f463b0
FT
2010#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
c28bda25
RZ
2015 break;
2016 case PHASE_MSGIN:
2017 len = 1;
2018 data = &tmp;
c28bda25
RZ
2019 NCR5380_transfer_pio(instance, &phase, &len, &data);
2020 cmd->SCp.Message = tmp;
2021
2022 switch (tmp) {
c28bda25
RZ
2023 case ABORT:
2024 case COMMAND_COMPLETE:
2025 /* Accept message by clearing ACK */
2026 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
9cb78c16 2027 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d, lun %llu "
c28bda25 2028 "completed\n", HOSTNO, cmd->device->id, cmd->device->lun);
e3c3da67 2029
e3c3da67 2030 hostdata->connected = NULL;
1da177e4 2031#ifdef SUPPORT_TAGS
c28bda25
RZ
2032 cmd_free_tag(cmd);
2033 if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
61d739a4 2034 struct tag_alloc *ta = &hostdata->TagAlloc[scmd_id(cmd)][cmd->device->lun];
9cb78c16 2035 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu returned "
c28bda25
RZ
2036 "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)
e42d0151 2040 ta->queue_size = ta->nr_allocated;
c28bda25 2041 }
1da177e4 2042#else
c28bda25 2043 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
1da177e4 2044#endif
c28bda25
RZ
2045
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);
1da177e4 2066
28424d3a
BH
2067 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
c28bda25
RZ
2073 if ((cmd->cmnd[0] != REQUEST_SENSE) &&
2074 (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
28424d3a
BH
2075 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
2076
d65e634a 2077 dprintk(NDEBUG_AUTOSENSE, "scsi%d: performing request sense\n", HOSTNO);
c28bda25 2078
c28bda25 2079 LIST(cmd,hostdata->issue_queue);
3130d905 2080 SET_NEXT(cmd, hostdata->issue_queue);
710ddd0d 2081 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
d65e634a 2082 dprintk(NDEBUG_QUEUES, "scsi%d: REQUEST SENSE added to head of "
c28bda25 2083 "issue queue\n", H_NO(cmd));
997acab7 2084 } else {
c28bda25
RZ
2085 cmd->scsi_done(cmd);
2086 }
2087
c28bda25
RZ
2088 /*
2089 * Restore phase bits to 0 so an interrupted selection,
2090 * arbitration can resume.
2091 */
2092 NCR5380_write(TARGET_COMMAND_REG, 0);
2093
72064a78
FT
2094 /* Enable reselect interrupts */
2095 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2096
c28bda25
RZ
2097 /* ++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 */
e3c3da67 2101 maybe_release_dma_irq(instance);
c28bda25
RZ
2102 return;
2103 case MESSAGE_REJECT:
2104 /* Accept message by clearing ACK */
2105 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
c28bda25
RZ
2106 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;
9cb78c16 2119 dprintk(NDEBUG_TAGS, "scsi%d: target %d lun %llu rejected "
c28bda25
RZ
2120 "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);
c28bda25 2129 LIST(cmd,hostdata->disconnected_queue);
3130d905 2130 SET_NEXT(cmd, hostdata->disconnected_queue);
c28bda25
RZ
2131 hostdata->connected = NULL;
2132 hostdata->disconnected_queue = cmd;
9cb78c16 2133 dprintk(NDEBUG_QUEUES, "scsi%d: command for target %d lun %llu was "
c28bda25
RZ
2134 "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);
e3f463b0
FT
2145#ifdef SUN3_SCSI_VME
2146 dregs->csr |= CSR_DMA_ENABLE;
2147#endif
c28bda25
RZ
2148 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);
c28bda25
RZ
2163 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
11d2f63b
FT
2181 spin_unlock_irq(&hostdata->lock);
2182
d65e634a 2183 dprintk(NDEBUG_EXTENDED, "scsi%d: receiving extended message\n", HOSTNO);
c28bda25
RZ
2184
2185 len = 2;
2186 data = extended_msg + 1;
2187 phase = PHASE_MSGIN;
2188 NCR5380_transfer_pio(instance, &phase, &len, &data);
d65e634a 2189 dprintk(NDEBUG_EXTENDED, "scsi%d: length=%d, code=0x%02x\n", HOSTNO,
c28bda25
RZ
2190 (int)extended_msg[1], (int)extended_msg[2]);
2191
e0783ed3
FT
2192 if (!len && extended_msg[1] > 0 &&
2193 extended_msg[1] <= sizeof(extended_msg) - 2) {
c28bda25
RZ
2194 /* 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);
d65e634a 2201 dprintk(NDEBUG_EXTENDED, "scsi%d: message received, residual %d\n",
c28bda25
RZ
2202 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 }
11d2f63b
FT
2221
2222 spin_lock_irq(&hostdata->lock);
2223 if (!hostdata->connected)
2224 return;
2225
c28bda25
RZ
2226 /* 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) {
ff50f9ed
FT
2234 printk(KERN_INFO "scsi%d: rejecting message ",
2235 instance->host_no);
c28bda25
RZ
2236 spi_print_msg(extended_msg);
2237 printk("\n");
2238 } else if (tmp != EXTENDED_MESSAGE)
ff50f9ed
FT
2239 scmd_printk(KERN_INFO, cmd,
2240 "rejecting unknown message %02x\n",
2241 tmp);
c28bda25 2242 else
ff50f9ed
FT
2243 scmd_printk(KERN_INFO, cmd,
2244 "rejecting unknown extended message code %02x, length %d\n",
2245 extended_msg[1], extended_msg[0]);
c28bda25
RZ
2246
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) {
1da177e4 2258#ifdef SUPPORT_TAGS
c28bda25 2259 cmd_free_tag(cmd);
1da177e4 2260#else
c28bda25 2261 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
1da177e4 2262#endif
c28bda25
RZ
2263 hostdata->connected = NULL;
2264 cmd->result = DID_ERROR << 16;
e3c3da67 2265 maybe_release_dma_irq(instance);
e3c3da67 2266 cmd->scsi_done(cmd);
cd400825 2267 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
c28bda25
RZ
2268 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);
8ad3a593 2290 NCR5380_dprint(NDEBUG_ANY, instance);
c28bda25 2291 } /* switch(phase) */
686f3990 2292 } else {
11d2f63b 2293 spin_unlock_irq(&hostdata->lock);
686f3990 2294 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
11d2f63b 2295 spin_lock_irq(&hostdata->lock);
686f3990 2296 }
11d2f63b 2297 }
1da177e4
LT
2298}
2299
2300/*
2301 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2302 *
c28bda25 2303 * Purpose : does reselection, initializing the instance->connected
710ddd0d 2304 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
1da177e4 2305 * nexus has been reestablished,
c28bda25 2306 *
1da177e4
LT
2307 * Inputs : instance - this instance of the NCR5380.
2308 *
2309 */
2310
2311
e3f463b0
FT
2312/* it might eventually prove necessary to do a dma setup on
2313 reselection, but it doesn't seem to be needed now -- sam */
2314
c28bda25 2315static void NCR5380_reselect(struct Scsi_Host *instance)
1da177e4 2316{
c28bda25
RZ
2317 SETUP_HOSTDATA(instance);
2318 unsigned char target_mask;
e3f463b0 2319 unsigned char lun;
1da177e4 2320#ifdef SUPPORT_TAGS
c28bda25 2321 unsigned char tag;
1da177e4 2322#endif
c28bda25 2323 unsigned char msg[3];
e3f463b0
FT
2324 int __maybe_unused len;
2325 unsigned char __maybe_unused *data, __maybe_unused phase;
710ddd0d 2326 struct scsi_cmnd *tmp = NULL, *prev;
c28bda25
RZ
2327
2328 /*
2329 * Disable arbitration, etc. since the host adapter obviously
2330 * lost, and tell an interrupted NCR5380_select() to restart.
2331 */
2332
2333 NCR5380_write(MODE_REG, MR_BASE);
c28bda25
RZ
2334
2335 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
2336
d65e634a 2337 dprintk(NDEBUG_RESELECTION, "scsi%d: reselect\n", HOSTNO);
c28bda25
RZ
2338
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);
72064a78
FT
2349 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 }
c28bda25
RZ
2354 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2355
2356 /*
2357 * Wait for target to go into MSGIN.
2358 */
2359
72064a78
FT
2360 if (NCR5380_poll_politely(instance,
2361 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
2362 do_abort(instance);
2363 return;
2364 }
c28bda25 2365
e3f463b0
FT
2366#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
c28bda25
RZ
2373 len = 1;
2374 data = msg;
2375 phase = PHASE_MSGIN;
2376 NCR5380_transfer_pio(instance, &phase, &len, &data);
72064a78
FT
2377
2378 if (len) {
2379 do_abort(instance);
2380 return;
2381 }
e3f463b0 2382#endif
c28bda25
RZ
2383
2384 if (!(msg[0] & 0x80)) {
72064a78 2385 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
c28bda25 2386 spi_print_msg(msg);
72064a78 2387 printk("\n");
c28bda25
RZ
2388 do_abort(instance);
2389 return;
2390 }
72064a78 2391 lun = msg[0] & 0x07;
1da177e4 2392
e3f463b0 2393#if defined(SUPPORT_TAGS) && !defined(CONFIG_SUN3)
c28bda25
RZ
2394 /* 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;
ca513fc9 2399 if (phase == PHASE_MSGIN && (hostdata->flags & FLAG_TAGGED_QUEUING)) {
c28bda25
RZ
2400 /* 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];
d65e634a 2407 dprintk(NDEBUG_TAGS, "scsi%d: target mask %02x, lun %d sent tag %d at "
c28bda25
RZ
2408 "reselection\n", HOSTNO, target_mask, lun, tag);
2409 }
1da177e4 2410#endif
c28bda25
RZ
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
710ddd0d 2417 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL;
c28bda25 2418 tmp; prev = tmp, tmp = NEXT(tmp)) {
72064a78 2419 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
1da177e4 2420#ifdef SUPPORT_TAGS
c28bda25 2421 && (tag == tmp->tag)
1da177e4 2422#endif
c28bda25 2423 ) {
c28bda25
RZ
2424 if (prev) {
2425 REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
3130d905 2426 SET_NEXT(prev, NEXT(tmp));
c28bda25
RZ
2427 } else {
2428 REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
2429 hostdata->disconnected_queue = NEXT(tmp);
2430 }
3130d905 2431 SET_NEXT(tmp, NULL);
c28bda25
RZ
2432 break;
2433 }
1da177e4 2434 }
c28bda25
RZ
2435
2436 if (!tmp) {
1da177e4 2437#ifdef SUPPORT_TAGS
72064a78
FT
2438 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);
1da177e4 2443#endif
c28bda25
RZ
2444 /*
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 }
1da177e4 2451
e3f463b0
FT
2452#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
c28bda25
RZ
2475 /* Accept message by clearing ACK */
2476 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1da177e4 2477
e3f463b0
FT
2478#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
c28bda25 2497 hostdata->connected = tmp;
9cb78c16 2498 dprintk(NDEBUG_RESELECTION, "scsi%d: nexus established, target = %d, lun = %llu, tag = %d\n",
c28bda25 2499 HOSTNO, tmp->device->id, tmp->device->lun, tmp->tag);
1da177e4
LT
2500}
2501
2502
2503/*
710ddd0d 2504 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
1da177e4
LT
2505 *
2506 * Purpose : abort a command
2507 *
710ddd0d 2508 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
c28bda25 2509 * host byte of the result field to, if zero DID_ABORTED is
1da177e4
LT
2510 * used.
2511 *
b6c92b7e 2512 * Returns : SUCCESS - success, FAILED on failure.
1da177e4 2513 *
c28bda25
RZ
2514 * 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
1da177e4 2516 * a problem, we could implement longjmp() / setjmp(), setjmp()
c28bda25 2517 * called where the loop started in NCR5380_main().
1da177e4
LT
2518 */
2519
2520static
710ddd0d 2521int NCR5380_abort(struct scsi_cmnd *cmd)
1da177e4 2522{
c28bda25
RZ
2523 struct Scsi_Host *instance = cmd->device->host;
2524 SETUP_HOSTDATA(instance);
710ddd0d 2525 struct scsi_cmnd *tmp, **prev;
c28bda25 2526 unsigned long flags;
1da177e4 2527
1fa6b5fb 2528 scmd_printk(KERN_NOTICE, cmd, "aborting command\n");
1da177e4 2529
11d2f63b 2530 spin_lock_irqsave(&hostdata->lock, flags);
c28bda25 2531
e5c3fddf
FT
2532 NCR5380_dprint(NDEBUG_ANY, instance);
2533 NCR5380_dprint_phase(NDEBUG_ANY, instance);
1da177e4 2534
d65e634a 2535 dprintk(NDEBUG_ABORT, "scsi%d: abort called basr 0x%02x, sr 0x%02x\n", HOSTNO,
c28bda25
RZ
2536 NCR5380_read(BUS_AND_STATUS_REG),
2537 NCR5380_read(STATUS_REG));
1da177e4
LT
2538
2539#if 1
c28bda25
RZ
2540 /*
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 */
1da177e4 2545
c28bda25 2546 if (hostdata->connected == cmd) {
1da177e4 2547
d65e634a 2548 dprintk(NDEBUG_ABORT, "scsi%d: aborting connected command\n", HOSTNO);
c28bda25
RZ
2549 /*
2550 * We should perform BSY checking, and make sure we haven't slipped
2551 * into BUS FREE.
2552 */
1da177e4 2553
c28bda25
RZ
2554 /* 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 */
1da177e4 2560
c28bda25
RZ
2561 /*
2562 * Return control to the executing NCR drive so we can clear the
2563 * aborted flag and get back into our main loop.
2564 */
1da177e4 2565
c28bda25 2566 if (do_abort(instance) == 0) {
c28bda25
RZ
2567 hostdata->connected = NULL;
2568 cmd->result = DID_ABORT << 16;
1da177e4 2569#ifdef SUPPORT_TAGS
c28bda25 2570 cmd_free_tag(cmd);
1da177e4 2571#else
c28bda25 2572 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
1da177e4 2573#endif
e3c3da67 2574 maybe_release_dma_irq(instance);
11d2f63b 2575 spin_unlock_irqrestore(&hostdata->lock, flags);
c28bda25 2576 cmd->scsi_done(cmd);
2b0f834c 2577 return SUCCESS;
c28bda25 2578 } else {
11d2f63b 2579 spin_unlock_irqrestore(&hostdata->lock, flags);
c28bda25 2580 printk("scsi%d: abort of connected command failed!\n", HOSTNO);
2b0f834c 2581 return FAILED;
c28bda25
RZ
2582 }
2583 }
1da177e4
LT
2584#endif
2585
c28bda25
RZ
2586 /*
2587 * Case 2 : If the command hasn't been issued yet, we simply remove it
2588 * from the issue queue.
2589 */
710ddd0d
FT
2590 for (prev = (struct scsi_cmnd **)&(hostdata->issue_queue),
2591 tmp = (struct scsi_cmnd *)hostdata->issue_queue;
c28bda25
RZ
2592 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2593 if (cmd == tmp) {
2594 REMOVE(5, *prev, tmp, NEXT(tmp));
2595 (*prev) = NEXT(tmp);
3130d905 2596 SET_NEXT(tmp, NULL);
c28bda25 2597 tmp->result = DID_ABORT << 16;
e3c3da67 2598 maybe_release_dma_irq(instance);
11d2f63b 2599 spin_unlock_irqrestore(&hostdata->lock, flags);
d65e634a 2600 dprintk(NDEBUG_ABORT, "scsi%d: abort removed command from issue queue.\n",
c28bda25
RZ
2601 HOSTNO);
2602 /* Tagged queuing note: no tag to free here, hasn't been assigned
2603 * yet... */
2604 tmp->scsi_done(tmp);
2b0f834c 2605 return SUCCESS;
c28bda25 2606 }
1da177e4
LT
2607 }
2608
c28bda25
RZ
2609 /*
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 */
1da177e4 2619
c28bda25 2620 if (hostdata->connected) {
11d2f63b 2621 spin_unlock_irqrestore(&hostdata->lock, flags);
d65e634a 2622 dprintk(NDEBUG_ABORT, "scsi%d: abort failed, command connected.\n", HOSTNO);
2b0f834c 2623 return FAILED;
c28bda25 2624 }
1da177e4 2625
c28bda25
RZ
2626 /*
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 */
2650
710ddd0d 2651 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp;
c28bda25
RZ
2652 tmp = NEXT(tmp)) {
2653 if (cmd == tmp) {
d65e634a 2654 dprintk(NDEBUG_ABORT, "scsi%d: aborting disconnected command.\n", HOSTNO);
c28bda25 2655
11d2f63b
FT
2656 if (NCR5380_select(instance, cmd)) {
2657 spin_unlock_irq(&hostdata->lock);
2b0f834c 2658 return FAILED;
11d2f63b 2659 }
d65e634a 2660 dprintk(NDEBUG_ABORT, "scsi%d: nexus reestablished.\n", HOSTNO);
c28bda25
RZ
2661
2662 do_abort(instance);
2663
710ddd0d
FT
2664 for (prev = (struct scsi_cmnd **)&(hostdata->disconnected_queue),
2665 tmp = (struct scsi_cmnd *)hostdata->disconnected_queue;
c28bda25
RZ
2666 tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp)) {
2667 if (cmd == tmp) {
2668 REMOVE(5, *prev, tmp, NEXT(tmp));
2669 *prev = NEXT(tmp);
3130d905 2670 SET_NEXT(tmp, NULL);
c28bda25
RZ
2671 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 */
1da177e4 2676#ifdef SUPPORT_TAGS
c28bda25 2677 cmd_free_tag(tmp);
1da177e4 2678#else
c28bda25 2679 hostdata->busy[cmd->device->id] &= ~(1 << cmd->device->lun);
1da177e4 2680#endif
e3c3da67 2681 maybe_release_dma_irq(instance);
11d2f63b 2682 spin_unlock_irqrestore(&hostdata->lock, flags);
c28bda25 2683 tmp->scsi_done(tmp);
2b0f834c 2684 return SUCCESS;
c28bda25
RZ
2685 }
2686 }
1da177e4
LT
2687 }
2688 }
2689
e3c3da67
FT
2690 /* 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);
11d2f63b 2695 spin_unlock_irqrestore(&hostdata->lock, flags);
e3c3da67 2696
c28bda25
RZ
2697 /*
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 */
1da177e4 2706
ad361c98 2707 printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfully before abortion\n", HOSTNO);
1da177e4 2708
2b0f834c 2709 return FAILED;
1da177e4
LT
2710}
2711
2712
3be1b3ea
FT
2713/**
2714 * NCR5380_bus_reset - reset the SCSI bus
2715 * @cmd: SCSI command undergoing EH
1da177e4 2716 *
3be1b3ea 2717 * Returns SUCCESS
c28bda25 2718 */
1da177e4 2719
710ddd0d 2720static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
1da177e4 2721{
e3c3da67
FT
2722 struct Scsi_Host *instance = cmd->device->host;
2723 struct NCR5380_hostdata *hostdata = shost_priv(instance);
c28bda25
RZ
2724 int i;
2725 unsigned long flags;
1da177e4 2726
11d2f63b 2727 spin_lock_irqsave(&hostdata->lock, flags);
3be1b3ea
FT
2728
2729#if (NDEBUG & NDEBUG_ANY)
2730 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
3be1b3ea 2731#endif
e5c3fddf
FT
2732 NCR5380_dprint(NDEBUG_ANY, instance);
2733 NCR5380_dprint_phase(NDEBUG_ANY, instance);
3be1b3ea
FT
2734
2735 do_reset(instance);
c28bda25 2736
c28bda25 2737 /* reset NCR registers */
c28bda25
RZ
2738 NCR5380_write(MODE_REG, MR_BASE);
2739 NCR5380_write(TARGET_COMMAND_REG, 0);
2740 NCR5380_write(SELECT_ENABLE_REG, 0);
c28bda25 2741
c28bda25
RZ
2742 /* 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 */
2747
2748 if (hostdata->issue_queue)
d65e634a 2749 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted issued command(s)\n", H_NO(cmd));
c28bda25 2750 if (hostdata->connected)
d65e634a 2751 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted a connected command\n", H_NO(cmd));
c28bda25 2752 if (hostdata->disconnected_queue)
d65e634a 2753 dprintk(NDEBUG_ABORT, "scsi%d: reset aborted disconnected command(s)\n", H_NO(cmd));
c28bda25 2754
c28bda25
RZ
2755 hostdata->issue_queue = NULL;
2756 hostdata->connected = NULL;
2757 hostdata->disconnected_queue = NULL;
1da177e4 2758#ifdef SUPPORT_TAGS
ca513fc9 2759 free_all_tags(hostdata);
1da177e4 2760#endif
c28bda25
RZ
2761 for (i = 0; i < 8; ++i)
2762 hostdata->busy[i] = 0;
1da177e4 2763#ifdef REAL_DMA
c28bda25 2764 hostdata->dma_len = 0;
1da177e4 2765#endif
e3c3da67
FT
2766
2767 maybe_release_dma_irq(instance);
11d2f63b 2768 spin_unlock_irqrestore(&hostdata->lock, flags);
1da177e4 2769
2b0f834c 2770 return SUCCESS;
1da177e4 2771}
This page took 1.02988 seconds and 5 git commands to generate.