]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/NCR5380.c
ncr5380: Split NCR5380_init() into two functions
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / NCR5380.c
CommitLineData
1da177e4
LT
1/*
2 * NCR 5380 generic driver routines. These should make it *trivial*
3 * to implement 5380 SCSI drivers under Linux with a non-trantor
4 * architecture.
5 *
6 * Note that these routines also work with NR53c400 family chips.
7 *
8 * Copyright 1993, Drew Eckhardt
9 * Visionary Computing
10 * (Unix and Linux consulting and custom programming)
11 * drew@colorado.edu
12 * +1 (303) 666-5836
13 *
1da177e4
LT
14 * For more information, please consult
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/*
1da177e4 28 * Revision 1.10 1998/9/2 Alan Cox
fa195afe 29 * (alan@lxorguk.ukuu.org.uk)
1da177e4
LT
30 * Fixed up the timer lockups reported so far. Things still suck. Looking
31 * forward to 2.3 and per device request queues. Then it'll be possible to
32 * SMP thread this beast and improve life no end.
33
34 * Revision 1.9 1997/7/27 Ronald van Cuijlenborg
35 * (ronald.van.cuijlenborg@tip.nl or nutty@dds.nl)
36 * (hopefully) fixed and enhanced USLEEP
37 * added support for DTC3181E card (for Mustek scanner)
38 *
39
40 * Revision 1.8 Ingmar Baumgart
41 * (ingmar@gonzo.schwaben.de)
42 * added support for NCR53C400a card
43 *
44
45 * Revision 1.7 1996/3/2 Ray Van Tassle (rayvt@comm.mot.com)
46 * added proc_info
47 * added support needed for DTC 3180/3280
48 * fixed a couple of bugs
49 *
50
51 * Revision 1.5 1994/01/19 09:14:57 drew
52 * Fixed udelay() hack that was being used on DATAOUT phases
53 * instead of a proper wait for the final handshake.
54 *
55 * Revision 1.4 1994/01/19 06:44:25 drew
56 * *** empty log message ***
57 *
58 * Revision 1.3 1994/01/19 05:24:40 drew
59 * Added support for TCR LAST_BYTE_SENT bit.
60 *
61 * Revision 1.2 1994/01/15 06:14:11 drew
62 * REAL DMA support, bug fixes.
63 *
64 * Revision 1.1 1994/01/15 06:00:54 drew
65 * Initial revision
66 *
67 */
68
69/*
70 * Further development / testing that should be done :
71 * 1. Cleanup the NCR5380_transfer_dma function and DMA operation complete
72 * code so that everything does the same thing that's done at the
73 * end of a pseudo-DMA read operation.
74 *
75 * 2. Fix REAL_DMA (interrupt driven, polled works fine) -
76 * basically, transfer size needs to be reduced by one
77 * and the last byte read as is done with PSEUDO_DMA.
78 *
79 * 4. Test SCSI-II tagged queueing (I have no devices which support
80 * tagged queueing)
81 *
82 * 5. Test linked command handling code after Eric is ready with
83 * the high level code.
84 */
db9dff36 85#include <scsi/scsi_dbg.h>
1abfd370 86#include <scsi/scsi_transport_spi.h>
1da177e4
LT
87
88#if (NDEBUG & NDEBUG_LISTS)
89#define LIST(x,y) {printk("LINE:%d Adding %p to %p\n", __LINE__, (void*)(x), (void*)(y)); if ((x)==(y)) udelay(5); }
90#define REMOVE(w,x,y,z) {printk("LINE:%d Removing: %p->%p %p->%p \n", __LINE__, (void*)(w), (void*)(x), (void*)(y), (void*)(z)); if ((x)==(y)) udelay(5); }
91#else
92#define LIST(x,y)
93#define REMOVE(w,x,y,z)
94#endif
95
96#ifndef notyet
97#undef LINKED
98#undef REAL_DMA
99#endif
100
101#ifdef REAL_DMA_POLL
102#undef READ_OVERRUNS
103#define READ_OVERRUNS
104#endif
105
106#ifdef BOARD_REQUIRES_NO_DELAY
107#define io_recovery_delay(x)
108#else
109#define io_recovery_delay(x) udelay(x)
110#endif
111
112/*
113 * Design
114 *
115 * This is a generic 5380 driver. To use it on a different platform,
116 * one simply writes appropriate system specific macros (ie, data
117 * transfer - some PC's will use the I/O bus, 68K's must use
118 * memory mapped) and drops this file in their 'C' wrapper.
119 *
120 * (Note from hch: unfortunately it was not enough for the different
121 * m68k folks and instead of improving this driver they copied it
122 * and hacked it up for their needs. As a consequence they lost
123 * most updates to this driver. Maybe someone will fix all these
124 * drivers to use a common core one day..)
125 *
126 * As far as command queueing, two queues are maintained for
127 * each 5380 in the system - commands that haven't been issued yet,
128 * and commands that are currently executing. This means that an
129 * unlimited number of commands may be queued, letting
130 * more commands propagate from the higher driver levels giving higher
131 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
132 * allowing multiple commands to propagate all the way to a SCSI-II device
133 * while a command is already executing.
134 *
135 *
136 * Issues specific to the NCR5380 :
137 *
138 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
139 * piece of hardware that requires you to sit in a loop polling for
140 * the REQ signal as long as you are connected. Some devices are
141 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
142 * while doing long seek operations.
143 *
144 * The workaround for this is to keep track of devices that have
145 * disconnected. If the device hasn't disconnected, for commands that
146 * should disconnect, we do something like
147 *
148 * while (!REQ is asserted) { sleep for N usecs; poll for M usecs }
149 *
150 * Some tweaking of N and M needs to be done. An algorithm based
151 * on "time to data" would give the best results as long as short time
152 * to datas (ie, on the same track) were considered, however these
153 * broken devices are the exception rather than the rule and I'd rather
154 * spend my time optimizing for the normal case.
155 *
156 * Architecture :
157 *
158 * At the heart of the design is a coroutine, NCR5380_main,
159 * which is started from a workqueue for each NCR5380 host in the
160 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
161 * removing the commands from the issue queue and calling
162 * NCR5380_select() if a nexus is not established.
163 *
164 * Once a nexus is established, the NCR5380_information_transfer()
165 * phase goes through the various phases as instructed by the target.
166 * if the target goes into MSG IN and sends a DISCONNECT message,
167 * the command structure is placed into the per instance disconnected
168 * queue, and NCR5380_main tries to find more work. If the target is
169 * idle for too long, the system will try to sleep.
170 *
171 * If a command has disconnected, eventually an interrupt will trigger,
172 * calling NCR5380_intr() which will in turn call NCR5380_reselect
173 * to reestablish a nexus. This will run main if necessary.
174 *
175 * On command termination, the done function will be called as
176 * appropriate.
177 *
178 * SCSI pointers are maintained in the SCp field of SCSI command
179 * structures, being initialized after the command is connected
180 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
181 * Note that in violation of the standard, an implicit SAVE POINTERS operation
182 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
183 */
184
185/*
186 * Using this file :
187 * This file a skeleton Linux SCSI driver for the NCR 5380 series
188 * of chips. To use it, you write an architecture specific functions
189 * and macros and include this file in your driver.
190 *
191 * These macros control options :
192 * AUTOPROBE_IRQ - if defined, the NCR5380_probe_irq() function will be
193 * defined.
194 *
195 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
196 * for commands that return with a CHECK CONDITION status.
197 *
198 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
199 * transceivers.
200 *
201 * DONT_USE_INTR - if defined, never use interrupts, even if we probe or
202 * override-configure an IRQ.
203 *
204 * LIMIT_TRANSFERSIZE - if defined, limit the pseudo-dma transfers to 512
205 * bytes at a time. Since interrupts are disabled by default during
206 * these transfers, we might need this to give reasonable interrupt
207 * service time if the transfer size gets too large.
208 *
209 * LINKED - if defined, linked commands are supported.
210 *
211 * PSEUDO_DMA - if defined, PSEUDO DMA is used during the data transfer phases.
212 *
213 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
214 *
215 * REAL_DMA_POLL - if defined, REAL DMA is used but the driver doesn't
216 * rely on phase mismatch and EOP interrupts to determine end
217 * of phase.
218 *
219 * UNSAFE - leave interrupts enabled during pseudo-DMA transfers. You
220 * only really want to use this if you're having a problem with
221 * dropped characters during high speed communications, and even
222 * then, you're going to be better off twiddling with transfersize
223 * in the high level code.
224 *
225 * Defaults for these will be provided although the user may want to adjust
226 * these to allocate CPU resources to the SCSI driver or "real" code.
227 *
228 * USLEEP_SLEEP - amount of time, in jiffies, to sleep
229 *
230 * USLEEP_POLL - amount of time, in jiffies, to poll
231 *
232 * These macros MUST be defined :
1da177e4
LT
233 *
234 * NCR5380_read(register) - read from the specified register
235 *
236 * NCR5380_write(register, value) - write to the specific register
237 *
238 * NCR5380_implementation_fields - additional fields needed for this
239 * specific implementation of the NCR5380
240 *
241 * Either real DMA *or* pseudo DMA may be implemented
242 * REAL functions :
243 * NCR5380_REAL_DMA should be defined if real DMA is to be used.
244 * Note that the DMA setup functions should return the number of bytes
245 * that they were able to program the controller for.
246 *
247 * Also note that generic i386/PC versions of these macros are
248 * available as NCR5380_i386_dma_write_setup,
249 * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
250 *
251 * NCR5380_dma_write_setup(instance, src, count) - initialize
252 * NCR5380_dma_read_setup(instance, dst, count) - initialize
253 * NCR5380_dma_residual(instance); - residual count
254 *
255 * PSEUDO functions :
256 * NCR5380_pwrite(instance, src, count)
257 * NCR5380_pread(instance, dst, count);
258 *
259 * The generic driver is initialized by calling NCR5380_init(instance),
260 * after setting the appropriate host specific fields and ID. If the
261 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
262 * possible) function may be used.
263 */
264
54d8fe44
FT
265static int do_abort(struct Scsi_Host *);
266static void do_reset(struct Scsi_Host *);
1da177e4
LT
267
268/*
269 * initialize_SCp - init the scsi pointer field
270 * @cmd: command block to set up
271 *
272 * Set up the internal fields in the SCSI command.
273 */
274
710ddd0d 275static inline void initialize_SCp(struct scsi_cmnd *cmd)
1da177e4
LT
276{
277 /*
278 * Initialize the Scsi Pointer field so that all of the commands in the
279 * various queues are valid.
280 */
281
9e0fe44d
BH
282 if (scsi_bufflen(cmd)) {
283 cmd->SCp.buffer = scsi_sglist(cmd);
284 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
45711f1a 285 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
1da177e4
LT
286 cmd->SCp.this_residual = cmd->SCp.buffer->length;
287 } else {
288 cmd->SCp.buffer = NULL;
289 cmd->SCp.buffers_residual = 0;
9e0fe44d
BH
290 cmd->SCp.ptr = NULL;
291 cmd->SCp.this_residual = 0;
1da177e4
LT
292 }
293}
294
295/**
296 * NCR5380_poll_politely - wait for NCR5380 status bits
297 * @instance: controller to poll
298 * @reg: 5380 register to poll
299 * @bit: Bitmask to check
300 * @val: Value required to exit
301 *
302 * Polls the NCR5380 in a reasonably efficient manner waiting for
303 * an event to occur, after a short quick poll we begin giving the
304 * CPU back in non IRQ contexts
305 *
306 * Returns the value of the register or a negative error code.
307 */
308
309static int NCR5380_poll_politely(struct Scsi_Host *instance, int reg, int bit, int val, int t)
310{
1da177e4
LT
311 int n = 500; /* At about 8uS a cycle for the cpu access */
312 unsigned long end = jiffies + t;
313 int r;
1da177e4
LT
314
315 while( n-- > 0)
316 {
317 r = NCR5380_read(reg);
318 if((r & bit) == val)
319 return 0;
320 cpu_relax();
321 }
322
323 /* t time yet ? */
324 while(time_before(jiffies, end))
325 {
326 r = NCR5380_read(reg);
327 if((r & bit) == val)
328 return 0;
329 if(!in_interrupt())
730a646d 330 cond_resched();
1da177e4
LT
331 else
332 cpu_relax();
333 }
334 return -ETIMEDOUT;
335}
336
337static struct {
338 unsigned char value;
339 const char *name;
702809ce 340} phases[] __maybe_unused = {
1da177e4
LT
341 {PHASE_DATAOUT, "DATAOUT"},
342 {PHASE_DATAIN, "DATAIN"},
343 {PHASE_CMDOUT, "CMDOUT"},
344 {PHASE_STATIN, "STATIN"},
345 {PHASE_MSGOUT, "MSGOUT"},
346 {PHASE_MSGIN, "MSGIN"},
347 {PHASE_UNKNOWN, "UNKNOWN"}
348};
349
185a7a1c 350#if NDEBUG
1da177e4
LT
351static struct {
352 unsigned char mask;
353 const char *name;
354} signals[] = {
355 {SR_DBP, "PARITY"},
356 {SR_RST, "RST"},
357 {SR_BSY, "BSY"},
358 {SR_REQ, "REQ"},
359 {SR_MSG, "MSG"},
360 {SR_CD, "CD"},
361 {SR_IO, "IO"},
362 {SR_SEL, "SEL"},
363 {0, NULL}
364},
365basrs[] = {
366 {BASR_ATN, "ATN"},
367 {BASR_ACK, "ACK"},
368 {0, NULL}
369},
370icrs[] = {
371 {ICR_ASSERT_RST, "ASSERT RST"},
372 {ICR_ASSERT_ACK, "ASSERT ACK"},
373 {ICR_ASSERT_BSY, "ASSERT BSY"},
374 {ICR_ASSERT_SEL, "ASSERT SEL"},
375 {ICR_ASSERT_ATN, "ASSERT ATN"},
376 {ICR_ASSERT_DATA, "ASSERT DATA"},
377 {0, NULL}
378},
379mrs[] = {
380 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"},
381 {MR_TARGET, "MODE TARGET"},
382 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"},
383 {MR_ENABLE_PAR_INTR, "MODE PARITY INTR"},
384 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
385 {MR_DMA_MODE, "MODE DMA"},
386 {MR_ARBITRATE, "MODE ARBITRATION"},
387 {0, NULL}
388};
389
390/**
391 * NCR5380_print - print scsi bus signals
392 * @instance: adapter state to dump
393 *
394 * Print the SCSI bus signals for debugging purposes
395 *
396 * Locks: caller holds hostdata lock (not essential)
397 */
398
399static void NCR5380_print(struct Scsi_Host *instance)
400{
1da177e4 401 unsigned char status, data, basr, mr, icr, i;
1da177e4
LT
402
403 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
404 status = NCR5380_read(STATUS_REG);
405 mr = NCR5380_read(MODE_REG);
406 icr = NCR5380_read(INITIATOR_COMMAND_REG);
407 basr = NCR5380_read(BUS_AND_STATUS_REG);
408
409 printk("STATUS_REG: %02x ", status);
410 for (i = 0; signals[i].mask; ++i)
411 if (status & signals[i].mask)
412 printk(",%s", signals[i].name);
413 printk("\nBASR: %02x ", basr);
414 for (i = 0; basrs[i].mask; ++i)
415 if (basr & basrs[i].mask)
416 printk(",%s", basrs[i].name);
417 printk("\nICR: %02x ", icr);
418 for (i = 0; icrs[i].mask; ++i)
419 if (icr & icrs[i].mask)
420 printk(",%s", icrs[i].name);
421 printk("\nMODE: %02x ", mr);
422 for (i = 0; mrs[i].mask; ++i)
423 if (mr & mrs[i].mask)
424 printk(",%s", mrs[i].name);
425 printk("\n");
426}
427
428
429/*
430 * NCR5380_print_phase - show SCSI phase
431 * @instance: adapter to dump
432 *
433 * Print the current SCSI phase for debugging purposes
434 *
435 * Locks: none
436 */
437
438static void NCR5380_print_phase(struct Scsi_Host *instance)
439{
1da177e4
LT
440 unsigned char status;
441 int i;
1da177e4
LT
442
443 status = NCR5380_read(STATUS_REG);
444 if (!(status & SR_REQ))
445 printk("scsi%d : REQ not asserted, phase unknown.\n", instance->host_no);
446 else {
447 for (i = 0; (phases[i].value != PHASE_UNKNOWN) && (phases[i].value != (status & PHASE_MASK)); ++i);
448 printk("scsi%d : phase %s\n", instance->host_no, phases[i].name);
449 }
450}
451#endif
452
453/*
454 * These need tweaking, and would probably work best as per-device
455 * flags initialized differently for disk, tape, cd, etc devices.
456 * People with broken devices are free to experiment as to what gives
457 * the best results for them.
458 *
459 * USLEEP_SLEEP should be a minimum seek time.
460 *
461 * USLEEP_POLL should be a maximum rotational latency.
462 */
463#ifndef USLEEP_SLEEP
464/* 20 ms (reasonable hard disk speed) */
4e5a800c 465#define USLEEP_SLEEP msecs_to_jiffies(20)
1da177e4
LT
466#endif
467/* 300 RPM (floppy speed) */
468#ifndef USLEEP_POLL
4e5a800c 469#define USLEEP_POLL msecs_to_jiffies(200)
1da177e4
LT
470#endif
471#ifndef USLEEP_WAITLONG
472/* RvC: (reasonable time to wait on select error) */
473#define USLEEP_WAITLONG USLEEP_SLEEP
474#endif
475
476/*
477 * Function : int should_disconnect (unsigned char cmd)
478 *
d6e05edc 479 * Purpose : decide whether a command would normally disconnect or
1da177e4
LT
480 * not, since if it won't disconnect we should go to sleep.
481 *
482 * Input : cmd - opcode of SCSI command
483 *
484 * Returns : DISCONNECT_LONG if we should disconnect for a really long
485 * time (ie always, sleep, look for REQ active, sleep),
486 * DISCONNECT_TIME_TO_DATA if we would only disconnect for a normal
487 * time-to-data delay, DISCONNECT_NONE if this command would return
488 * immediately.
489 *
490 * Future sleep algorithms based on time to data can exploit
491 * something like this so they can differentiate between "normal"
492 * (ie, read, write, seek) and unusual commands (ie, * format).
493 *
494 * Note : We don't deal with commands that handle an immediate disconnect,
495 *
496 */
497
498static int should_disconnect(unsigned char cmd)
499{
500 switch (cmd) {
501 case READ_6:
502 case WRITE_6:
503 case SEEK_6:
504 case READ_10:
505 case WRITE_10:
506 case SEEK_10:
507 return DISCONNECT_TIME_TO_DATA;
508 case FORMAT_UNIT:
509 case SEARCH_HIGH:
510 case SEARCH_LOW:
511 case SEARCH_EQUAL:
512 return DISCONNECT_LONG;
513 default:
514 return DISCONNECT_NONE;
515 }
516}
517
518static void NCR5380_set_timer(struct NCR5380_hostdata *hostdata, unsigned long timeout)
519{
520 hostdata->time_expires = jiffies + timeout;
521 schedule_delayed_work(&hostdata->coroutine, timeout);
522}
523
524
d5f7e65d 525static int probe_irq __initdata;
1da177e4
LT
526
527/**
528 * probe_intr - helper for IRQ autoprobe
529 * @irq: interrupt number
530 * @dev_id: unused
531 * @regs: unused
532 *
533 * Set a flag to indicate the IRQ in question was received. This is
534 * used by the IRQ probe code.
535 */
536
7d12e780 537static irqreturn_t __init probe_intr(int irq, void *dev_id)
1da177e4
LT
538{
539 probe_irq = irq;
540 return IRQ_HANDLED;
541}
542
543/**
544 * NCR5380_probe_irq - find the IRQ of an NCR5380
545 * @instance: NCR5380 controller
546 * @possible: bitmask of ISA IRQ lines
547 *
548 * Autoprobe for the IRQ line used by the NCR5380 by triggering an IRQ
549 * and then looking to see what interrupt actually turned up.
550 *
551 * Locks: none, irqs must be enabled on entry
552 */
553
702809ce
AM
554static int __init __maybe_unused NCR5380_probe_irq(struct Scsi_Host *instance,
555 int possible)
1da177e4 556{
1da177e4
LT
557 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
558 unsigned long timeout;
559 int trying_irqs, i, mask;
1da177e4 560
22f5f10d 561 for (trying_irqs = 0, i = 1, mask = 2; i < 16; ++i, mask <<= 1)
4909cc2b 562 if ((mask & possible) && (request_irq(i, &probe_intr, 0, "NCR-probe", NULL) == 0))
1da177e4
LT
563 trying_irqs |= mask;
564
4e5a800c 565 timeout = jiffies + msecs_to_jiffies(250);
22f5f10d 566 probe_irq = NO_IRQ;
1da177e4
LT
567
568 /*
569 * A interrupt is triggered whenever BSY = false, SEL = true
570 * and a bit set in the SELECT_ENABLE_REG is asserted on the
571 * SCSI bus.
572 *
573 * Note that the bus is only driven when the phase control signals
574 * (I/O, C/D, and MSG) match those in the TCR, so we must reset that
575 * to zero.
576 */
577
578 NCR5380_write(TARGET_COMMAND_REG, 0);
579 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
580 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
581 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL);
582
22f5f10d 583 while (probe_irq == NO_IRQ && time_before(jiffies, timeout))
a9a3047d 584 schedule_timeout_uninterruptible(1);
1da177e4
LT
585
586 NCR5380_write(SELECT_ENABLE_REG, 0);
587 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
588
22f5f10d 589 for (i = 1, mask = 2; i < 16; ++i, mask <<= 1)
1da177e4
LT
590 if (trying_irqs & mask)
591 free_irq(i, NULL);
592
593 return probe_irq;
594}
595
596/**
8c32513b
FT
597 * NCR58380_info - report driver and host information
598 * @instance: relevant scsi host instance
1da177e4 599 *
8c32513b 600 * For use as the host template info() handler.
1da177e4
LT
601 *
602 * Locks: none
603 */
604
8c32513b 605static const char *NCR5380_info(struct Scsi_Host *instance)
1da177e4 606{
8c32513b
FT
607 struct NCR5380_hostdata *hostdata = shost_priv(instance);
608
609 return hostdata->info;
610}
611
612static void prepare_info(struct Scsi_Host *instance)
613{
614 struct NCR5380_hostdata *hostdata = shost_priv(instance);
615
616 snprintf(hostdata->info, sizeof(hostdata->info),
617 "%s, io_port 0x%lx, n_io_port %d, "
618 "base 0x%lx, irq %d, "
619 "can_queue %d, cmd_per_lun %d, "
620 "sg_tablesize %d, this_id %d, "
621 "flags { %s%s%s}, "
622#if defined(USLEEP_POLL) && defined(USLEEP_WAITLONG)
4e5a800c 623 "USLEEP_POLL %lu, USLEEP_WAITLONG %lu, "
8c32513b
FT
624#endif
625 "options { %s} ",
626 instance->hostt->name, instance->io_port, instance->n_io_port,
627 instance->base, instance->irq,
628 instance->can_queue, instance->cmd_per_lun,
629 instance->sg_tablesize, instance->this_id,
630 hostdata->flags & FLAG_NCR53C400 ? "NCR53C400 " : "",
631 hostdata->flags & FLAG_DTC3181E ? "DTC3181E " : "",
632 hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "",
633#if defined(USLEEP_POLL) && defined(USLEEP_WAITLONG)
634 USLEEP_POLL, USLEEP_WAITLONG,
635#endif
1da177e4 636#ifdef AUTOPROBE_IRQ
8c32513b 637 "AUTOPROBE_IRQ "
1da177e4 638#endif
1da177e4 639#ifdef DIFFERENTIAL
8c32513b 640 "DIFFERENTIAL "
1da177e4
LT
641#endif
642#ifdef REAL_DMA
8c32513b 643 "REAL_DMA "
1da177e4
LT
644#endif
645#ifdef REAL_DMA_POLL
8c32513b 646 "REAL_DMA_POLL "
1da177e4
LT
647#endif
648#ifdef PARITY
8c32513b 649 "PARITY "
1da177e4
LT
650#endif
651#ifdef PSEUDO_DMA
8c32513b 652 "PSEUDO_DMA "
1da177e4
LT
653#endif
654#ifdef UNSAFE
8c32513b 655 "UNSAFE "
1da177e4 656#endif
8c32513b
FT
657#ifdef NCR53C400
658 "NCR53C400 "
659#endif
660 "");
1da177e4
LT
661}
662
663/**
664 * NCR5380_print_status - dump controller info
665 * @instance: controller to dump
666 *
667 * Print commands in the various queues, called from NCR5380_abort
668 * and NCR5380_debug to aid debugging.
669 *
670 * Locks: called functions disable irqs
671 */
672
673static void NCR5380_print_status(struct Scsi_Host *instance)
674{
675 NCR5380_dprint(NDEBUG_ANY, instance);
676 NCR5380_dprint_phase(NDEBUG_ANY, instance);
677}
678
a9c2dc43 679#ifdef PSEUDO_DMA
1da177e4
LT
680/******************************************/
681/*
682 * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
683 *
684 * *buffer: I/O buffer
685 * **start: if inout == FALSE pointer into buffer where user read should start
686 * offset: current offset
687 * length: length of buffer
688 * hostno: Scsi_Host host_no
689 * inout: TRUE - user is writing; FALSE - user is reading
690 *
691 * Return the number of bytes read from or written
692 */
693
dd7ab71b
AV
694static int __maybe_unused NCR5380_write_info(struct Scsi_Host *instance,
695 char *buffer, int length)
696{
a9c2dc43
FT
697 struct NCR5380_hostdata *hostdata = shost_priv(instance);
698
699 hostdata->spin_max_r = 0;
700 hostdata->spin_max_w = 0;
701 return 0;
dd7ab71b 702}
a9c2dc43 703#endif
dd7ab71b 704
1da177e4 705static
710ddd0d 706void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m);
1da177e4 707static
dd7ab71b 708void lprint_command(unsigned char *cmd, struct seq_file *m);
1da177e4 709static
dd7ab71b 710void lprint_opcode(int opcode, struct seq_file *m);
1da177e4 711
dd7ab71b
AV
712static int __maybe_unused NCR5380_show_info(struct seq_file *m,
713 struct Scsi_Host *instance)
1da177e4 714{
1da177e4 715 struct NCR5380_hostdata *hostdata;
710ddd0d 716 struct scsi_cmnd *ptr;
1da177e4
LT
717
718 hostdata = (struct NCR5380_hostdata *) instance->hostdata;
719
a9c2dc43 720#ifdef PSEUDO_DMA
0c3de38f 721 seq_printf(m, "Highwater I/O busy spin counts: write %d, read %d\n",
a9c2dc43 722 hostdata->spin_max_w, hostdata->spin_max_r);
1da177e4
LT
723#endif
724 spin_lock_irq(instance->host_lock);
725 if (!hostdata->connected)
0c3de38f 726 seq_printf(m, "scsi%d: no currently connected command\n", instance->host_no);
1da177e4 727 else
710ddd0d 728 lprint_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected, m);
0c3de38f 729 seq_printf(m, "scsi%d: issue_queue\n", instance->host_no);
710ddd0d 730 for (ptr = (struct scsi_cmnd *) hostdata->issue_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
dd7ab71b 731 lprint_Scsi_Cmnd(ptr, m);
1da177e4 732
0c3de38f 733 seq_printf(m, "scsi%d: disconnected_queue\n", instance->host_no);
710ddd0d 734 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
dd7ab71b 735 lprint_Scsi_Cmnd(ptr, m);
1da177e4 736 spin_unlock_irq(instance->host_lock);
dd7ab71b 737 return 0;
1da177e4
LT
738}
739
710ddd0d 740static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
1da177e4 741{
0c3de38f 742 seq_printf(m, "scsi%d : destination target %d, lun %llu\n", cmd->device->host->host_no, cmd->device->id, cmd->device->lun);
91c40f24 743 seq_puts(m, " command = ");
dd7ab71b 744 lprint_command(cmd->cmnd, m);
1da177e4
LT
745}
746
dd7ab71b 747static void lprint_command(unsigned char *command, struct seq_file *m)
1da177e4
LT
748{
749 int i, s;
dd7ab71b 750 lprint_opcode(command[0], m);
1da177e4 751 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
0c3de38f 752 seq_printf(m, "%02x ", command[i]);
f50332ff 753 seq_putc(m, '\n');
1da177e4
LT
754}
755
dd7ab71b 756static void lprint_opcode(int opcode, struct seq_file *m)
1da177e4 757{
0c3de38f 758 seq_printf(m, "%2d (0x%02x)", opcode, opcode);
1da177e4
LT
759}
760
761
762/**
763 * NCR5380_init - initialise an NCR5380
764 * @instance: adapter to configure
765 * @flags: control flags
766 *
767 * Initializes *instance and corresponding 5380 chip,
768 * with flags OR'd into the initial flags value.
769 *
770 * Notes : I assume that the host, hostno, and id bits have been
771 * set correctly. I don't care about the irq and other fields.
772 *
773 * Returns 0 for success
774 *
775 * Locks: interrupts must be enabled when we are called
776 */
777
6f039790 778static int NCR5380_init(struct Scsi_Host *instance, int flags)
1da177e4 779{
b6488f97 780 int i;
1da177e4
LT
781 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
782
783 if(in_interrupt())
784 printk(KERN_ERR "NCR5380_init called with interrupts off!\n");
785 /*
786 * On NCR53C400 boards, NCR5380 registers are mapped 8 past
787 * the base address.
788 */
789
790#ifdef NCR53C400
791 if (flags & FLAG_NCR53C400)
b01ec348 792 instance->io_port += NCR53C400_address_adjust;
1da177e4
LT
793#endif
794
1da177e4
LT
795 hostdata->aborted = 0;
796 hostdata->id_mask = 1 << instance->this_id;
797 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
798 if (i > hostdata->id_mask)
799 hostdata->id_higher_mask |= i;
800 for (i = 0; i < 8; ++i)
801 hostdata->busy[i] = 0;
802#ifdef REAL_DMA
803 hostdata->dmalen = 0;
804#endif
805 hostdata->targets_present = 0;
806 hostdata->connected = NULL;
807 hostdata->issue_queue = NULL;
808 hostdata->disconnected_queue = NULL;
809
c4028958 810 INIT_DELAYED_WORK(&hostdata->coroutine, NCR5380_main);
1da177e4 811
1da177e4
LT
812 /* The CHECK code seems to break the 53C400. Will check it later maybe */
813 if (flags & FLAG_NCR53C400)
814 hostdata->flags = FLAG_HAS_LAST_BYTE_SENT | flags;
815 else
816 hostdata->flags = FLAG_CHECK_LAST_BYTE_SENT | flags;
817
818 hostdata->host = instance;
819 hostdata->time_expires = 0;
820
8c32513b
FT
821 prepare_info(instance);
822
1da177e4
LT
823 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
824 NCR5380_write(MODE_REG, MR_BASE);
825 NCR5380_write(TARGET_COMMAND_REG, 0);
826 NCR5380_write(SELECT_ENABLE_REG, 0);
827
828#ifdef NCR53C400
829 if (hostdata->flags & FLAG_NCR53C400) {
830 NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
831 }
832#endif
b6488f97
FT
833 return 0;
834}
1da177e4 835
b6488f97
FT
836/**
837 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
838 * @instance: adapter to check
839 *
840 * If the system crashed, it may have crashed with a connected target and
841 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
842 * currently established nexus, which we know nothing about. Failing that
843 * do a bus reset.
844 *
845 * Note that a bus reset will cause the chip to assert IRQ.
846 *
847 * Returns 0 if successful, otherwise -ENXIO.
848 */
849
850static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
851{
852 int pass;
1da177e4
LT
853
854 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
855 switch (pass) {
856 case 1:
857 case 3:
858 case 5:
859 printk(KERN_INFO "scsi%d: SCSI bus busy, waiting up to five seconds\n", instance->host_no);
1da177e4
LT
860 NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, 0, 5*HZ);
861 break;
862 case 2:
863 printk(KERN_WARNING "scsi%d: bus busy, attempting abort\n", instance->host_no);
864 do_abort(instance);
865 break;
866 case 4:
867 printk(KERN_WARNING "scsi%d: bus busy, attempting reset\n", instance->host_no);
868 do_reset(instance);
869 break;
870 case 6:
871 printk(KERN_ERR "scsi%d: bus locked solid or invalid override\n", instance->host_no);
872 return -ENXIO;
873 }
874 }
875 return 0;
876}
877
878/**
879 * NCR5380_exit - remove an NCR5380
880 * @instance: adapter to remove
881 */
882
a43cf0f3 883static void NCR5380_exit(struct Scsi_Host *instance)
1da177e4
LT
884{
885 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
886
a684b8da 887 cancel_delayed_work_sync(&hostdata->coroutine);
1da177e4
LT
888}
889
890/**
891 * NCR5380_queue_command - queue a command
892 * @cmd: SCSI command
893 * @done: completion handler
894 *
895 * cmd is added to the per instance issue_queue, with minor
896 * twiddling done to the host specific fields of cmd. If the
897 * main coroutine is not running, it is restarted.
898 *
899 * Locks: host lock taken by caller
900 */
901
710ddd0d 902static int NCR5380_queue_command_lck(struct scsi_cmnd *cmd, void (*done) (struct scsi_cmnd *))
1da177e4
LT
903{
904 struct Scsi_Host *instance = cmd->device->host;
905 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
710ddd0d 906 struct scsi_cmnd *tmp;
1da177e4
LT
907
908#if (NDEBUG & NDEBUG_NO_WRITE)
909 switch (cmd->cmnd[0]) {
910 case WRITE_6:
911 case WRITE_10:
912 printk("scsi%d : WRITE attempted with NO_WRITE debugging flag set\n", instance->host_no);
913 cmd->result = (DID_ERROR << 16);
914 done(cmd);
915 return 0;
916 }
917#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
918
1da177e4
LT
919 /*
920 * We use the host_scribble field as a pointer to the next command
921 * in a queue
922 */
923
924 cmd->host_scribble = NULL;
925 cmd->scsi_done = done;
926 cmd->result = 0;
927
928 /*
929 * Insert the cmd into the issue queue. Note that REQUEST SENSE
930 * commands are added to the head of the queue since any command will
931 * clear the contingent allegiance condition that exists and the
932 * sense data is only guaranteed to be valid while the condition exists.
933 */
934
935 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
936 LIST(cmd, hostdata->issue_queue);
937 cmd->host_scribble = (unsigned char *) hostdata->issue_queue;
938 hostdata->issue_queue = cmd;
939 } else {
710ddd0d 940 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue; tmp->host_scribble; tmp = (struct scsi_cmnd *) tmp->host_scribble);
1da177e4
LT
941 LIST(cmd, tmp);
942 tmp->host_scribble = (unsigned char *) cmd;
943 }
52a6a1cb 944 dprintk(NDEBUG_QUEUES, "scsi%d : command added to %s of queue\n", instance->host_no, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
1da177e4
LT
945
946 /* Run the coroutine if it isn't already running. */
947 /* Kick off command processing */
c4028958 948 schedule_delayed_work(&hostdata->coroutine, 0);
1da177e4
LT
949 return 0;
950}
951
f281233d 952static DEF_SCSI_QCMD(NCR5380_queue_command)
1da177e4
LT
953
954/**
955 * NCR5380_main - NCR state machines
956 *
957 * NCR5380_main is a coroutine that runs as long as more work can
958 * be done on the NCR5380 host adapters in a system. Both
959 * NCR5380_queue_command() and NCR5380_intr() will try to start it
960 * in case it is not running.
961 *
962 * Locks: called as its own thread with no locks held. Takes the
963 * host lock and called routines may take the isa dma lock.
964 */
965
c4028958 966static void NCR5380_main(struct work_struct *work)
1da177e4 967{
c4028958
DH
968 struct NCR5380_hostdata *hostdata =
969 container_of(work, struct NCR5380_hostdata, coroutine.work);
1da177e4 970 struct Scsi_Host *instance = hostdata->host;
710ddd0d 971 struct scsi_cmnd *tmp, *prev;
1da177e4
LT
972 int done;
973
974 spin_lock_irq(instance->host_lock);
975 do {
976 /* Lock held here */
977 done = 1;
978 if (!hostdata->connected && !hostdata->selecting) {
52a6a1cb 979 dprintk(NDEBUG_MAIN, "scsi%d : not connected\n", instance->host_no);
1da177e4
LT
980 /*
981 * Search through the issue_queue for a command destined
982 * for a target that's not busy.
983 */
710ddd0d 984 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL; tmp; prev = tmp, tmp = (struct scsi_cmnd *) tmp->host_scribble)
1da177e4
LT
985 {
986 if (prev != tmp)
9cb78c16 987 dprintk(NDEBUG_LISTS, "MAIN tmp=%p target=%d busy=%d lun=%llu\n", tmp, tmp->device->id, hostdata->busy[tmp->device->id], tmp->device->lun);
1da177e4 988 /* When we find one, remove it from the issue queue. */
9cb78c16
HR
989 if (!(hostdata->busy[tmp->device->id] &
990 (1 << (u8)(tmp->device->lun & 0xff)))) {
1da177e4
LT
991 if (prev) {
992 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
993 prev->host_scribble = tmp->host_scribble;
994 } else {
995 REMOVE(-1, hostdata->issue_queue, tmp, tmp->host_scribble);
710ddd0d 996 hostdata->issue_queue = (struct scsi_cmnd *) tmp->host_scribble;
1da177e4
LT
997 }
998 tmp->host_scribble = NULL;
999
1000 /*
1001 * Attempt to establish an I_T_L nexus here.
1002 * On success, instance->hostdata->connected is set.
1003 * On failure, we must add the command back to the
1004 * issue queue so we can keep trying.
1005 */
9cb78c16 1006 dprintk(NDEBUG_MAIN|NDEBUG_QUEUES, "scsi%d : main() : command for target %d lun %llu removed from issue_queue\n", instance->host_no, tmp->device->id, tmp->device->lun);
1da177e4
LT
1007
1008 /*
1009 * A successful selection is defined as one that
1010 * leaves us with the command connected and
1011 * in hostdata->connected, OR has terminated the
1012 * command.
1013 *
1014 * With successful commands, we fall through
1015 * and see if we can do an information transfer,
1016 * with failures we will restart.
1017 */
1018 hostdata->selecting = NULL;
1019 /* RvC: have to preset this to indicate a new command is being performed */
1020
76f13b93
FT
1021 /*
1022 * REQUEST SENSE commands are issued without tagged
1023 * queueing, even on SCSI-II devices because the
1024 * contingent allegiance condition exists for the
1025 * entire unit.
1026 */
1027
1028 if (!NCR5380_select(instance, tmp)) {
1da177e4
LT
1029 break;
1030 } else {
1031 LIST(tmp, hostdata->issue_queue);
1032 tmp->host_scribble = (unsigned char *) hostdata->issue_queue;
1033 hostdata->issue_queue = tmp;
1034 done = 0;
52a6a1cb 1035 dprintk(NDEBUG_MAIN|NDEBUG_QUEUES, "scsi%d : main(): select() failed, returned to issue_queue\n", instance->host_no);
1da177e4
LT
1036 }
1037 /* lock held here still */
1038 } /* if target/lun is not busy */
1039 } /* for */
1040 /* exited locked */
1041 } /* if (!hostdata->connected) */
1042 if (hostdata->selecting) {
710ddd0d 1043 tmp = (struct scsi_cmnd *) hostdata->selecting;
1da177e4 1044 /* Selection will drop and retake the lock */
76f13b93 1045 if (!NCR5380_select(instance, tmp)) {
1da177e4
LT
1046 /* Ok ?? */
1047 } else {
1048 /* RvC: device failed, so we wait a long time
1049 this is needed for Mustek scanners, that
1050 do not respond to commands immediately
1051 after a scan */
1052 printk(KERN_DEBUG "scsi%d: device %d did not respond in time\n", instance->host_no, tmp->device->id);
1053 LIST(tmp, hostdata->issue_queue);
1054 tmp->host_scribble = (unsigned char *) hostdata->issue_queue;
1055 hostdata->issue_queue = tmp;
1056 NCR5380_set_timer(hostdata, USLEEP_WAITLONG);
1057 }
1058 } /* if hostdata->selecting */
1059 if (hostdata->connected
1060#ifdef REAL_DMA
1061 && !hostdata->dmalen
1062#endif
1063 && (!hostdata->time_expires || time_before_eq(hostdata->time_expires, jiffies))
1064 ) {
52a6a1cb 1065 dprintk(NDEBUG_MAIN, "scsi%d : main() : performing information transfer\n", instance->host_no);
1da177e4 1066 NCR5380_information_transfer(instance);
52a6a1cb 1067 dprintk(NDEBUG_MAIN, "scsi%d : main() : done set false\n", instance->host_no);
1da177e4
LT
1068 done = 0;
1069 } else
1070 break;
1071 } while (!done);
1072
1073 spin_unlock_irq(instance->host_lock);
1074}
1075
1076#ifndef DONT_USE_INTR
1077
1078/**
1079 * NCR5380_intr - generic NCR5380 irq handler
1080 * @irq: interrupt number
1081 * @dev_id: device info
1da177e4
LT
1082 *
1083 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1084 * from the disconnected queue, and restarting NCR5380_main()
1085 * as required.
1086 *
1087 * Locks: takes the needed instance locks
1088 */
1089
baa9aac6 1090static irqreturn_t NCR5380_intr(int dummy, void *dev_id)
1da177e4 1091{
baa9aac6 1092 struct Scsi_Host *instance = dev_id;
1da177e4
LT
1093 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1094 int done;
1095 unsigned char basr;
1096 unsigned long flags;
1097
52a6a1cb
FT
1098 dprintk(NDEBUG_INTR, "scsi : NCR5380 irq %d triggered\n",
1099 instance->irq);
1da177e4
LT
1100
1101 do {
1102 done = 1;
1103 spin_lock_irqsave(instance->host_lock, flags);
1104 /* Look for pending interrupts */
1da177e4
LT
1105 basr = NCR5380_read(BUS_AND_STATUS_REG);
1106 /* XXX dispatch to appropriate routine if found and done=0 */
1107 if (basr & BASR_IRQ) {
1108 NCR5380_dprint(NDEBUG_INTR, instance);
1109 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1110 done = 0;
52a6a1cb 1111 dprintk(NDEBUG_INTR, "scsi%d : SEL interrupt\n", instance->host_no);
1da177e4
LT
1112 NCR5380_reselect(instance);
1113 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1114 } else if (basr & BASR_PARITY_ERROR) {
52a6a1cb 1115 dprintk(NDEBUG_INTR, "scsi%d : PARITY interrupt\n", instance->host_no);
1da177e4
LT
1116 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1117 } else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
52a6a1cb 1118 dprintk(NDEBUG_INTR, "scsi%d : RESET interrupt\n", instance->host_no);
1da177e4
LT
1119 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1120 } else {
1121#if defined(REAL_DMA)
1122 /*
1123 * We should only get PHASE MISMATCH and EOP interrupts
1124 * if we have DMA enabled, so do a sanity check based on
1125 * the current setting of the MODE register.
1126 */
1127
1128 if ((NCR5380_read(MODE_REG) & MR_DMA) && ((basr & BASR_END_DMA_TRANSFER) || !(basr & BASR_PHASE_MATCH))) {
25985edc 1129 int transferred;
1da177e4
LT
1130
1131 if (!hostdata->connected)
1132 panic("scsi%d : received end of DMA interrupt with no connected cmd\n", instance->hostno);
1133
25985edc 1134 transferred = (hostdata->dmalen - NCR5380_dma_residual(instance));
1da177e4
LT
1135 hostdata->connected->SCp.this_residual -= transferred;
1136 hostdata->connected->SCp.ptr += transferred;
1137 hostdata->dmalen = 0;
1138
1139 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1140
1141 /* FIXME: we need to poll briefly then defer a workqueue task ! */
1142 NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, BASR_ACK, 0, 2*HZ);
1143
1144 NCR5380_write(MODE_REG, MR_BASE);
1145 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1146 }
1147#else
52a6a1cb 1148 dprintk(NDEBUG_INTR, "scsi : unknown interrupt, BASR 0x%X, MR 0x%X, SR 0x%x\n", basr, NCR5380_read(MODE_REG), NCR5380_read(STATUS_REG));
1da177e4
LT
1149 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1150#endif
1151 }
1152 } /* if BASR_IRQ */
1153 spin_unlock_irqrestore(instance->host_lock, flags);
1154 if(!done)
c4028958 1155 schedule_delayed_work(&hostdata->coroutine, 0);
1da177e4
LT
1156 } while (!done);
1157 return IRQ_HANDLED;
1158}
1159
1160#endif
1161
1da177e4 1162/*
710ddd0d
FT
1163 * Function : int NCR5380_select(struct Scsi_Host *instance,
1164 * struct scsi_cmnd *cmd)
1da177e4
LT
1165 *
1166 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
1167 * including ARBITRATION, SELECTION, and initial message out for
1168 * IDENTIFY and queue messages.
1169 *
1170 * Inputs : instance - instantiation of the 5380 driver on which this
76f13b93 1171 * target lives, cmd - SCSI command to execute.
1da177e4
LT
1172 *
1173 * Returns : -1 if selection could not execute for some reason,
1174 * 0 if selection succeeded or failed because the target
1175 * did not respond.
1176 *
1177 * Side effects :
1178 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1179 * with registers as they should have been on entry - ie
1180 * SELECT_ENABLE will be set appropriately, the NCR5380
1181 * will cease to drive any SCSI bus signals.
1182 *
1183 * If successful : I_T_L or I_T_L_Q nexus will be established,
1184 * instance->connected will be set to cmd.
1185 * SELECT interrupt will be disabled.
1186 *
1187 * If failed (no target) : cmd->scsi_done() will be called, and the
1188 * cmd->result host byte set to DID_BAD_TARGET.
1189 *
1190 * Locks: caller holds hostdata lock in IRQ mode
1191 */
1192
710ddd0d 1193static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
1da177e4 1194{
1da177e4
LT
1195 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1196 unsigned char tmp[3], phase;
1197 unsigned char *data;
1198 int len;
1199 unsigned long timeout;
1200 unsigned char value;
1201 int err;
1da177e4
LT
1202
1203 if (hostdata->selecting)
1204 goto part2;
1205
1206 hostdata->restart_select = 0;
1207
1208 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
52a6a1cb 1209 dprintk(NDEBUG_ARBITRATION, "scsi%d : starting arbitration, id = %d\n", instance->host_no, instance->this_id);
1da177e4
LT
1210
1211 /*
1212 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1213 * data bus during SELECTION.
1214 */
1215
1216 NCR5380_write(TARGET_COMMAND_REG, 0);
1217
1218 /*
1219 * Start arbitration.
1220 */
1221
1222 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1223 NCR5380_write(MODE_REG, MR_ARBITRATE);
1224
1225
1226 /* We can be relaxed here, interrupts are on, we are
1227 in workqueue context, the birds are singing in the trees */
1228 spin_unlock_irq(instance->host_lock);
1229 err = NCR5380_poll_politely(instance, INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS, ICR_ARBITRATION_PROGRESS, 5*HZ);
1230 spin_lock_irq(instance->host_lock);
1231 if (err < 0) {
1232 printk(KERN_DEBUG "scsi: arbitration timeout at %d\n", __LINE__);
1233 NCR5380_write(MODE_REG, MR_BASE);
1234 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1235 goto failed;
1236 }
1237
52a6a1cb 1238 dprintk(NDEBUG_ARBITRATION, "scsi%d : arbitration complete\n", instance->host_no);
1da177e4
LT
1239
1240 /*
1241 * The arbitration delay is 2.2us, but this is a minimum and there is
1242 * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
1243 * the integral nature of udelay().
1244 *
1245 */
1246
1247 udelay(3);
1248
1249 /* Check for lost arbitration */
1250 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) || (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) || (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
1251 NCR5380_write(MODE_REG, MR_BASE);
52a6a1cb 1252 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting MR_ARBITRATE\n", instance->host_no);
1da177e4
LT
1253 goto failed;
1254 }
1255 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_SEL);
1256
1257 if (!(hostdata->flags & FLAG_DTC3181E) &&
1258 /* RvC: DTC3181E has some trouble with this
1259 * so we simply removed it. Seems to work with
1260 * only Mustek scanner attached
1261 */
1262 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
1263 NCR5380_write(MODE_REG, MR_BASE);
1264 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
52a6a1cb 1265 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting ICR_ASSERT_SEL\n", instance->host_no);
1da177e4
LT
1266 goto failed;
1267 }
1268 /*
1269 * Again, bus clear + bus settle time is 1.2us, however, this is
1270 * a minimum so we'll udelay ceil(1.2)
1271 */
1272
1273 udelay(2);
1274
52a6a1cb 1275 dprintk(NDEBUG_ARBITRATION, "scsi%d : won arbitration\n", instance->host_no);
1da177e4
LT
1276
1277 /*
1278 * Now that we have won arbitration, start Selection process, asserting
1279 * the host and target ID's on the SCSI bus.
1280 */
1281
422c0d61 1282 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << scmd_id(cmd))));
1da177e4
LT
1283
1284 /*
1285 * Raise ATN while SEL is true before BSY goes false from arbitration,
1286 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1287 * phase immediately after selection.
1288 */
1289
1290 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1291 NCR5380_write(MODE_REG, MR_BASE);
1292
1293 /*
1294 * Reselect interrupts must be turned off prior to the dropping of BSY,
1295 * otherwise we will trigger an interrupt.
1296 */
1297 NCR5380_write(SELECT_ENABLE_REG, 0);
1298
1299 /*
1300 * The initiator shall then wait at least two deskew delays and release
1301 * the BSY signal.
1302 */
1303 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
1304
1305 /* Reset BSY */
1306 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1307
1308 /*
1309 * Something weird happens when we cease to drive BSY - looks
1310 * like the board/chip is letting us do another read before the
1311 * appropriate propagation delay has expired, and we're confusing
1312 * a BSY signal from ourselves as the target's response to SELECTION.
1313 *
1314 * A small delay (the 'C++' frontend breaks the pipeline with an
1315 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1316 * tighter 'C' code breaks and requires this) solves the problem -
1317 * the 1 us delay is arbitrary, and only used because this delay will
1318 * be the same on other platforms and since it works here, it should
1319 * work there.
1320 *
1321 * wingel suggests that this could be due to failing to wait
1322 * one deskew delay.
1323 */
1324
1325 udelay(1);
1326
52a6a1cb 1327 dprintk(NDEBUG_SELECTION, "scsi%d : selecting target %d\n", instance->host_no, scmd_id(cmd));
1da177e4
LT
1328
1329 /*
1330 * The SCSI specification calls for a 250 ms timeout for the actual
1331 * selection.
1332 */
1333
4e5a800c 1334 timeout = jiffies + msecs_to_jiffies(250);
1da177e4
LT
1335
1336 /*
1337 * XXX very interesting - we're seeing a bounce where the BSY we
1338 * asserted is being reflected / still asserted (propagation delay?)
1339 * and it's detecting as true. Sigh.
1340 */
1341
1342 hostdata->select_time = 0; /* we count the clock ticks at which we polled */
1343 hostdata->selecting = cmd;
1344
1345part2:
1346 /* RvC: here we enter after a sleeping period, or immediately after
1347 execution of part 1
1348 we poll only once ech clock tick */
1349 value = NCR5380_read(STATUS_REG) & (SR_BSY | SR_IO);
1350
1351 if (!value && (hostdata->select_time < HZ/4)) {
1352 /* RvC: we still must wait for a device response */
1353 hostdata->select_time++; /* after 25 ticks the device has failed */
1354 NCR5380_set_timer(hostdata, 1);
1355 return 0; /* RvC: we return here with hostdata->selecting set,
1356 to go to sleep */
1357 }
1358
1359 hostdata->selecting = NULL;/* clear this pointer, because we passed the
1360 waiting period */
1361 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1362 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1363 NCR5380_reselect(instance);
1364 printk("scsi%d : reselection after won arbitration?\n", instance->host_no);
1365 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1366 return -1;
1367 }
1368 /*
1369 * No less than two deskew delays after the initiator detects the
1370 * BSY signal is true, it shall release the SEL signal and may
1371 * change the DATA BUS. -wingel
1372 */
1373
1374 udelay(1);
1375
1376 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1377
1378 if (!(NCR5380_read(STATUS_REG) & SR_BSY)) {
1379 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
422c0d61 1380 if (hostdata->targets_present & (1 << scmd_id(cmd))) {
1da177e4
LT
1381 printk(KERN_DEBUG "scsi%d : weirdness\n", instance->host_no);
1382 if (hostdata->restart_select)
1383 printk(KERN_DEBUG "\trestart select\n");
1384 NCR5380_dprint(NDEBUG_SELECTION, instance);
1385 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1386 return -1;
1387 }
1388 cmd->result = DID_BAD_TARGET << 16;
1da177e4
LT
1389 cmd->scsi_done(cmd);
1390 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
52a6a1cb 1391 dprintk(NDEBUG_SELECTION, "scsi%d : target did not respond within 250ms\n", instance->host_no);
1da177e4
LT
1392 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1393 return 0;
1394 }
422c0d61 1395 hostdata->targets_present |= (1 << scmd_id(cmd));
1da177e4
LT
1396
1397 /*
1398 * Since we followed the SCSI spec, and raised ATN while SEL
1399 * was true but before BSY was false during selection, the information
1400 * transfer phase should be a MESSAGE OUT phase so that we can send the
1401 * IDENTIFY message.
1402 *
1403 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1404 * message (2 bytes) with a tag ID that we increment with every command
1405 * until it wraps back to 0.
1406 *
1407 * XXX - it turns out that there are some broken SCSI-II devices,
1408 * which claim to support tagged queuing but fail when more than
1409 * some number of commands are issued at once.
1410 */
1411
1412 /* Wait for start of REQ/ACK handshake */
1413
1414 spin_unlock_irq(instance->host_lock);
1415 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
1416 spin_lock_irq(instance->host_lock);
1417
1418 if(err) {
1419 printk(KERN_ERR "scsi%d: timeout at NCR5380.c:%d\n", instance->host_no, __LINE__);
1420 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1421 goto failed;
1422 }
1423
52a6a1cb 1424 dprintk(NDEBUG_SELECTION, "scsi%d : target %d selected, going into MESSAGE OUT phase.\n", instance->host_no, cmd->device->id);
22f5f10d 1425 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
1da177e4
LT
1426
1427 len = 1;
1428 cmd->tag = 0;
1429
1430 /* Send message(s) */
1431 data = tmp;
1432 phase = PHASE_MSGOUT;
1433 NCR5380_transfer_pio(instance, &phase, &len, &data);
52a6a1cb 1434 dprintk(NDEBUG_SELECTION, "scsi%d : nexus established.\n", instance->host_no);
1da177e4
LT
1435 /* XXX need to handle errors here */
1436 hostdata->connected = cmd;
9cb78c16 1437 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
1da177e4 1438
28424d3a 1439 initialize_SCp(cmd);
1da177e4
LT
1440
1441 return 0;
1442
1443 /* Selection failed */
1444failed:
1445 return -1;
1446
1447}
1448
1449/*
1450 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
1451 * unsigned char *phase, int *count, unsigned char **data)
1452 *
1453 * Purpose : transfers data in given phase using polled I/O
1454 *
1455 * Inputs : instance - instance of driver, *phase - pointer to
1456 * what phase is expected, *count - pointer to number of
1457 * bytes to transfer, **data - pointer to data pointer.
1458 *
1459 * Returns : -1 when different phase is entered without transferring
25985edc 1460 * maximum number of bytes, 0 if all bytes or transferred or exit
1da177e4
LT
1461 * is in same phase.
1462 *
1463 * Also, *phase, *count, *data are modified in place.
1464 *
1465 * XXX Note : handling for bus free may be useful.
1466 */
1467
1468/*
1469 * Note : this code is not as quick as it could be, however it
1470 * IS 100% reliable, and for the actual data transfer where speed
1471 * counts, we will always do a pseudo DMA or DMA transfer.
1472 */
1473
1474static int NCR5380_transfer_pio(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
1da177e4
LT
1475 unsigned char p = *phase, tmp;
1476 int c = *count;
1477 unsigned char *d = *data;
1478 /*
1479 * RvC: some administrative data to process polling time
1480 */
1481 int break_allowed = 0;
1482 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1da177e4
LT
1483
1484 if (!(p & SR_IO))
52a6a1cb 1485 dprintk(NDEBUG_PIO, "scsi%d : pio write %d bytes\n", instance->host_no, c);
1da177e4 1486 else
52a6a1cb 1487 dprintk(NDEBUG_PIO, "scsi%d : pio read %d bytes\n", instance->host_no, c);
1da177e4
LT
1488
1489 /*
1490 * The NCR5380 chip will only drive the SCSI bus when the
1491 * phase specified in the appropriate bits of the TARGET COMMAND
1492 * REGISTER match the STATUS REGISTER
1493 */
1494
1495 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1496
1497 /* RvC: don't know if this is necessary, but other SCSI I/O is short
1498 * so breaks are not necessary there
1499 */
1500 if ((p == PHASE_DATAIN) || (p == PHASE_DATAOUT)) {
1501 break_allowed = 1;
1502 }
1503 do {
1504 /*
1505 * Wait for assertion of REQ, after which the phase bits will be
1506 * valid
1507 */
1508
1509 /* RvC: we simply poll once, after that we stop temporarily
1510 * and let the device buffer fill up
1511 * if breaking is not allowed, we keep polling as long as needed
1512 */
1513
1514 /* FIXME */
1515 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ) && !break_allowed);
1516 if (!(tmp & SR_REQ)) {
1517 /* timeout condition */
1518 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
1519 break;
1520 }
1521
52a6a1cb 1522 dprintk(NDEBUG_HANDSHAKE, "scsi%d : REQ detected\n", instance->host_no);
1da177e4
LT
1523
1524 /* Check for phase mismatch */
1525 if ((tmp & PHASE_MASK) != p) {
52a6a1cb 1526 dprintk(NDEBUG_HANDSHAKE, "scsi%d : phase mismatch\n", instance->host_no);
1da177e4
LT
1527 NCR5380_dprint_phase(NDEBUG_HANDSHAKE, instance);
1528 break;
1529 }
1530 /* Do actual transfer from SCSI bus to / from memory */
1531 if (!(p & SR_IO))
1532 NCR5380_write(OUTPUT_DATA_REG, *d);
1533 else
1534 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1535
1536 ++d;
1537
1538 /*
1539 * The SCSI standard suggests that in MSGOUT phase, the initiator
1540 * should drop ATN on the last byte of the message phase
1541 * after REQ has been asserted for the handshake but before
1542 * the initiator raises ACK.
1543 */
1544
1545 if (!(p & SR_IO)) {
1546 if (!((p & SR_MSG) && c > 1)) {
1547 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1548 NCR5380_dprint(NDEBUG_PIO, instance);
1549 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1550 } else {
1551 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN);
1552 NCR5380_dprint(NDEBUG_PIO, instance);
1553 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1554 }
1555 } else {
1556 NCR5380_dprint(NDEBUG_PIO, instance);
1557 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1558 }
1559
1560 /* FIXME - if this fails bus reset ?? */
1561 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 5*HZ);
52a6a1cb 1562 dprintk(NDEBUG_HANDSHAKE, "scsi%d : req false, handshake complete\n", instance->host_no);
1da177e4
LT
1563
1564/*
1565 * We have several special cases to consider during REQ/ACK handshaking :
1566 * 1. We were in MSGOUT phase, and we are on the last byte of the
1567 * message. ATN must be dropped as ACK is dropped.
1568 *
1569 * 2. We are in a MSGIN phase, and we are on the last byte of the
1570 * message. We must exit with ACK asserted, so that the calling
1571 * code may raise ATN before dropping ACK to reject the message.
1572 *
1573 * 3. ACK and ATN are clear and the target may proceed as normal.
1574 */
1575 if (!(p == PHASE_MSGIN && c == 1)) {
1576 if (p == PHASE_MSGOUT && c > 1)
1577 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1578 else
1579 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1580 }
1581 } while (--c);
1582
52a6a1cb 1583 dprintk(NDEBUG_PIO, "scsi%d : residual %d\n", instance->host_no, c);
1da177e4
LT
1584
1585 *count = c;
1586 *data = d;
1587 tmp = NCR5380_read(STATUS_REG);
1588 if (tmp & SR_REQ)
1589 *phase = tmp & PHASE_MASK;
1590 else
1591 *phase = PHASE_UNKNOWN;
1592
1593 if (!c || (*phase == p))
1594 return 0;
1595 else
1596 return -1;
1597}
1598
1599/**
1600 * do_reset - issue a reset command
1601 * @host: adapter to reset
1602 *
1603 * Issue a reset sequence to the NCR5380 and try and get the bus
1604 * back into sane shape.
1605 *
1606 * Locks: caller holds queue lock
1607 */
1608
54d8fe44
FT
1609static void do_reset(struct Scsi_Host *instance)
1610{
1da177e4
LT
1611 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
1612 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
1613 udelay(25);
1614 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1615}
1616
1617/*
1618 * Function : do_abort (Scsi_Host *host)
1619 *
1620 * Purpose : abort the currently established nexus. Should only be
1621 * called from a routine which can drop into a
1622 *
1623 * Returns : 0 on success, -1 on failure.
1624 *
1625 * Locks: queue lock held by caller
1626 * FIXME: sort this out and get new_eh running
1627 */
1628
54d8fe44
FT
1629static int do_abort(struct Scsi_Host *instance)
1630{
1da177e4
LT
1631 unsigned char *msgptr, phase, tmp;
1632 int len;
1633 int rc;
1da177e4
LT
1634
1635 /* Request message out phase */
1636 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1637
1638 /*
1639 * Wait for the target to indicate a valid phase by asserting
1640 * REQ. Once this happens, we'll have either a MSGOUT phase
1641 * and can immediately send the ABORT message, or we'll have some
1642 * other phase and will have to source/sink data.
1643 *
1644 * We really don't care what value was on the bus or what value
1645 * the target sees, so we just handshake.
1646 */
1647
54d8fe44 1648 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 60 * HZ);
1da177e4
LT
1649
1650 if(rc < 0)
1651 return -1;
1652
1653 tmp = (unsigned char)rc;
1654
1655 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1656
1657 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1658 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
54d8fe44 1659 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
1da177e4
LT
1660 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1661 if(rc == -1)
1662 return -1;
1663 }
1664 tmp = ABORT;
1665 msgptr = &tmp;
1666 len = 1;
1667 phase = PHASE_MSGOUT;
54d8fe44 1668 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
1da177e4
LT
1669
1670 /*
1671 * If we got here, and the command completed successfully,
1672 * we're about to go into bus free state.
1673 */
1674
1675 return len ? -1 : 0;
1676}
1677
1678#if defined(REAL_DMA) || defined(PSEUDO_DMA) || defined (REAL_DMA_POLL)
1679/*
1680 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
1681 * unsigned char *phase, int *count, unsigned char **data)
1682 *
1683 * Purpose : transfers data in given phase using either real
1684 * or pseudo DMA.
1685 *
1686 * Inputs : instance - instance of driver, *phase - pointer to
1687 * what phase is expected, *count - pointer to number of
1688 * bytes to transfer, **data - pointer to data pointer.
1689 *
1690 * Returns : -1 when different phase is entered without transferring
25985edc 1691 * maximum number of bytes, 0 if all bytes or transferred or exit
1da177e4
LT
1692 * is in same phase.
1693 *
1694 * Also, *phase, *count, *data are modified in place.
1695 *
1696 * Locks: io_request lock held by caller
1697 */
1698
1699
1700static int NCR5380_transfer_dma(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
1da177e4
LT
1701 register int c = *count;
1702 register unsigned char p = *phase;
1703 register unsigned char *d = *data;
1704 unsigned char tmp;
1705 int foo;
1706#if defined(REAL_DMA_POLL)
1707 int cnt, toPIO;
1708 unsigned char saved_data = 0, overrun = 0, residue;
1709#endif
1710
1711 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1712
1da177e4
LT
1713 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1714 *phase = tmp;
1715 return -1;
1716 }
1717#if defined(REAL_DMA) || defined(REAL_DMA_POLL)
1718#ifdef READ_OVERRUNS
1719 if (p & SR_IO) {
1720 c -= 2;
1721 }
1722#endif
52a6a1cb 1723 dprintk(NDEBUG_DMA, "scsi%d : initializing DMA channel %d for %s, %d bytes %s %0x\n", instance->host_no, instance->dma_channel, (p & SR_IO) ? "reading" : "writing", c, (p & SR_IO) ? "to" : "from", (unsigned) d);
1da177e4
LT
1724 hostdata->dma_len = (p & SR_IO) ? NCR5380_dma_read_setup(instance, d, c) : NCR5380_dma_write_setup(instance, d, c);
1725#endif
1726
1727 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1728
1729#ifdef REAL_DMA
1730 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
1731#elif defined(REAL_DMA_POLL)
1732 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1733#else
1734 /*
1735 * Note : on my sample board, watch-dog timeouts occurred when interrupts
1736 * were not disabled for the duration of a single DMA transfer, from
1737 * before the setting of DMA mode to after transfer of the last byte.
1738 */
1739
1740#if defined(PSEUDO_DMA) && defined(UNSAFE)
1741 spin_unlock_irq(instance->host_lock);
1742#endif
1743 /* KLL May need eop and parity in 53c400 */
1744 if (hostdata->flags & FLAG_NCR53C400)
085267ac
RK
1745 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE |
1746 MR_ENABLE_PAR_CHECK | MR_ENABLE_PAR_INTR |
1747 MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
1da177e4
LT
1748 else
1749 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1750#endif /* def REAL_DMA */
1751
52a6a1cb 1752 dprintk(NDEBUG_DMA, "scsi%d : mode reg = 0x%X\n", instance->host_no, NCR5380_read(MODE_REG));
1da177e4
LT
1753
1754 /*
1755 * On the PAS16 at least I/O recovery delays are not needed here.
1756 * Everyone else seems to want them.
1757 */
1758
1759 if (p & SR_IO) {
1760 io_recovery_delay(1);
1761 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1762 } else {
1763 io_recovery_delay(1);
1764 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1765 io_recovery_delay(1);
1766 NCR5380_write(START_DMA_SEND_REG, 0);
1767 io_recovery_delay(1);
1768 }
1769
1770#if defined(REAL_DMA_POLL)
1771 do {
1772 tmp = NCR5380_read(BUS_AND_STATUS_REG);
1773 } while ((tmp & BASR_PHASE_MATCH) && !(tmp & (BASR_BUSY_ERROR | BASR_END_DMA_TRANSFER)));
1774
1775/*
1776 At this point, either we've completed DMA, or we have a phase mismatch,
1777 or we've unexpectedly lost BUSY (which is a real error).
1778
1779 For write DMAs, we want to wait until the last byte has been
1780 transferred out over the bus before we turn off DMA mode. Alas, there
1781 seems to be no terribly good way of doing this on a 5380 under all
1782 conditions. For non-scatter-gather operations, we can wait until REQ
1783 and ACK both go false, or until a phase mismatch occurs. Gather-writes
1784 are nastier, since the device will be expecting more data than we
1785 are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1786 could test LAST BIT SENT to assure transfer (I imagine this is precisely
1787 why this signal was added to the newer chips) but on the older 538[01]
1788 this signal does not exist. The workaround for this lack is a watchdog;
1789 we bail out of the wait-loop after a modest amount of wait-time if
1790 the usual exit conditions are not met. Not a terribly clean or
1791 correct solution :-%
1792
1793 Reads are equally tricky due to a nasty characteristic of the NCR5380.
1794 If the chip is in DMA mode for an READ, it will respond to a target's
1795 REQ by latching the SCSI data into the INPUT DATA register and asserting
1796 ACK, even if it has _already_ been notified by the DMA controller that
1797 the current DMA transfer has completed! If the NCR5380 is then taken
1798 out of DMA mode, this already-acknowledged byte is lost.
1799
1800 This is not a problem for "one DMA transfer per command" reads, because
1801 the situation will never arise... either all of the data is DMA'ed
1802 properly, or the target switches to MESSAGE IN phase to signal a
1803 disconnection (either operation bringing the DMA to a clean halt).
1804 However, in order to handle scatter-reads, we must work around the
1805 problem. The chosen fix is to DMA N-2 bytes, then check for the
1806 condition before taking the NCR5380 out of DMA mode. One or two extra
1807 bytes are transferred via PIO as necessary to fill out the original
1808 request.
1809 */
1810
1811 if (p & SR_IO) {
1812#ifdef READ_OVERRUNS
1813 udelay(10);
1814 if (((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) == (BASR_PHASE_MATCH | BASR_ACK))) {
1815 saved_data = NCR5380_read(INPUT_DATA_REGISTER);
1816 overrun = 1;
1817 }
1818#endif
1819 } else {
1820 int limit = 100;
1821 while (((tmp = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_ACK) || (NCR5380_read(STATUS_REG) & SR_REQ)) {
1822 if (!(tmp & BASR_PHASE_MATCH))
1823 break;
1824 if (--limit < 0)
1825 break;
1826 }
1827 }
1828
52a6a1cb 1829 dprintk(NDEBUG_DMA, "scsi%d : polled DMA transfer complete, basr 0x%X, sr 0x%X\n", instance->host_no, tmp, NCR5380_read(STATUS_REG));
1da177e4
LT
1830
1831 NCR5380_write(MODE_REG, MR_BASE);
1832 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1833
1834 residue = NCR5380_dma_residual(instance);
1835 c -= residue;
1836 *count -= c;
1837 *data += c;
1838 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1839
1840#ifdef READ_OVERRUNS
1841 if (*phase == p && (p & SR_IO) && residue == 0) {
1842 if (overrun) {
52a6a1cb 1843 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
1da177e4
LT
1844 **data = saved_data;
1845 *data += 1;
1846 *count -= 1;
1847 cnt = toPIO = 1;
1848 } else {
1849 printk("No overrun??\n");
1850 cnt = toPIO = 2;
1851 }
52a6a1cb 1852 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%X\n", cnt, *data);
1da177e4
LT
1853 NCR5380_transfer_pio(instance, phase, &cnt, data);
1854 *count -= toPIO - cnt;
1855 }
1856#endif
1857
52a6a1cb 1858 dprintk(NDEBUG_DMA, "Return with data ptr = 0x%X, count %d, last 0x%X, next 0x%X\n", *data, *count, *(*data + *count - 1), *(*data + *count));
1da177e4
LT
1859 return 0;
1860
1861#elif defined(REAL_DMA)
1862 return 0;
1863#else /* defined(REAL_DMA_POLL) */
1864 if (p & SR_IO) {
1865#ifdef DMA_WORKS_RIGHT
1866 foo = NCR5380_pread(instance, d, c);
1867#else
1868 int diff = 1;
1869 if (hostdata->flags & FLAG_NCR53C400) {
1870 diff = 0;
1871 }
1872 if (!(foo = NCR5380_pread(instance, d, c - diff))) {
1873 /*
1874 * We can't disable DMA mode after successfully transferring
1875 * what we plan to be the last byte, since that would open up
1876 * a race condition where if the target asserted REQ before
1877 * we got the DMA mode reset, the NCR5380 would have latched
1878 * an additional byte into the INPUT DATA register and we'd
1879 * have dropped it.
1880 *
1881 * The workaround was to transfer one fewer bytes than we
1882 * intended to with the pseudo-DMA read function, wait for
1883 * the chip to latch the last byte, read it, and then disable
1884 * pseudo-DMA mode.
1885 *
1886 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1887 * REQ is deasserted when ACK is asserted, and not reasserted
1888 * until ACK goes false. Since the NCR5380 won't lower ACK
1889 * until DACK is asserted, which won't happen unless we twiddle
1890 * the DMA port or we take the NCR5380 out of DMA mode, we
1891 * can guarantee that we won't handshake another extra
1892 * byte.
1893 */
1894
1895 if (!(hostdata->flags & FLAG_NCR53C400)) {
1896 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ));
1897 /* Wait for clean handshake */
1898 while (NCR5380_read(STATUS_REG) & SR_REQ);
1899 d[c - 1] = NCR5380_read(INPUT_DATA_REG);
1900 }
1901 }
1902#endif
1903 } else {
1904#ifdef DMA_WORKS_RIGHT
1905 foo = NCR5380_pwrite(instance, d, c);
1906#else
1907 int timeout;
52a6a1cb 1908 dprintk(NDEBUG_C400_PWRITE, "About to pwrite %d bytes\n", c);
1da177e4
LT
1909 if (!(foo = NCR5380_pwrite(instance, d, c))) {
1910 /*
1911 * Wait for the last byte to be sent. If REQ is being asserted for
1912 * the byte we're interested, we'll ACK it and it will go false.
1913 */
1914 if (!(hostdata->flags & FLAG_HAS_LAST_BYTE_SENT)) {
1915 timeout = 20000;
1916 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ) && (NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH));
1917
1918 if (!timeout)
52a6a1cb 1919 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : timed out on last byte\n", instance->host_no);
1da177e4
LT
1920
1921 if (hostdata->flags & FLAG_CHECK_LAST_BYTE_SENT) {
1922 hostdata->flags &= ~FLAG_CHECK_LAST_BYTE_SENT;
1923 if (NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT) {
1924 hostdata->flags |= FLAG_HAS_LAST_BYTE_SENT;
52a6a1cb 1925 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : last byte sent works\n", instance->host_no);
1da177e4
LT
1926 }
1927 }
1928 } else {
52a6a1cb 1929 dprintk(NDEBUG_C400_PWRITE, "Waiting for LASTBYTE\n");
1da177e4 1930 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT));
52a6a1cb 1931 dprintk(NDEBUG_C400_PWRITE, "Got LASTBYTE\n");
1da177e4
LT
1932 }
1933 }
1934#endif
1935 }
1936 NCR5380_write(MODE_REG, MR_BASE);
1937 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1938
1939 if ((!(p & SR_IO)) && (hostdata->flags & FLAG_NCR53C400)) {
52a6a1cb 1940 dprintk(NDEBUG_C400_PWRITE, "53C400w: Checking for IRQ\n");
1da177e4 1941 if (NCR5380_read(BUS_AND_STATUS_REG) & BASR_IRQ) {
52a6a1cb 1942 dprintk(NDEBUG_C400_PWRITE, "53C400w: got it, reading reset interrupt reg\n");
1da177e4
LT
1943 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1944 } else {
1945 printk("53C400w: IRQ NOT THERE!\n");
1946 }
1947 }
1948 *data = d + c;
1949 *count = 0;
1950 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1951#if defined(PSEUDO_DMA) && defined(UNSAFE)
1952 spin_lock_irq(instance->host_lock);
1953#endif /* defined(REAL_DMA_POLL) */
1954 return foo;
1955#endif /* def REAL_DMA */
1956}
1957#endif /* defined(REAL_DMA) | defined(PSEUDO_DMA) */
1958
1959/*
1960 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1961 *
1962 * Purpose : run through the various SCSI phases and do as the target
1963 * directs us to. Operates on the currently connected command,
1964 * instance->connected.
1965 *
1966 * Inputs : instance, instance for which we are doing commands
1967 *
1968 * Side effects : SCSI things happen, the disconnected queue will be
1969 * modified if a command disconnects, *instance->connected will
1970 * change.
1971 *
1972 * XXX Note : we need to watch for bus free or a reset condition here
1973 * to recover from an unexpected bus free condition.
1974 *
1975 * Locks: io_request_lock held by caller in IRQ mode
1976 */
1977
1978static void NCR5380_information_transfer(struct Scsi_Host *instance) {
1da177e4
LT
1979 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)instance->hostdata;
1980 unsigned char msgout = NOP;
1981 int sink = 0;
1982 int len;
1983#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
1984 int transfersize;
1985#endif
1986 unsigned char *data;
1987 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
710ddd0d 1988 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
1da177e4
LT
1989 /* RvC: we need to set the end of the polling time */
1990 unsigned long poll_time = jiffies + USLEEP_POLL;
1991
1da177e4
LT
1992 while (1) {
1993 tmp = NCR5380_read(STATUS_REG);
1994 /* We only have a valid SCSI phase when REQ is asserted */
1995 if (tmp & SR_REQ) {
1996 phase = (tmp & PHASE_MASK);
1997 if (phase != old_phase) {
1998 old_phase = phase;
1999 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
2000 }
2001 if (sink && (phase != PHASE_MSGOUT)) {
2002 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
2003
2004 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
2005 while (NCR5380_read(STATUS_REG) & SR_REQ);
2006 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2007 sink = 0;
2008 continue;
2009 }
2010 switch (phase) {
2011 case PHASE_DATAIN:
2012 case PHASE_DATAOUT:
2013#if (NDEBUG & NDEBUG_NO_DATAOUT)
2014 printk("scsi%d : NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n", instance->host_no);
2015 sink = 1;
2016 do_abort(instance);
2017 cmd->result = DID_ERROR << 16;
cce99c69 2018 cmd->scsi_done(cmd);
1da177e4
LT
2019 return;
2020#endif
2021 /*
2022 * If there is no room left in the current buffer in the
2023 * scatter-gather list, move onto the next one.
2024 */
2025
2026 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2027 ++cmd->SCp.buffer;
2028 --cmd->SCp.buffers_residual;
2029 cmd->SCp.this_residual = cmd->SCp.buffer->length;
45711f1a 2030 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
52a6a1cb 2031 dprintk(NDEBUG_INFORMATION, "scsi%d : %d bytes and %d buffers left\n", instance->host_no, cmd->SCp.this_residual, cmd->SCp.buffers_residual);
1da177e4
LT
2032 }
2033 /*
2034 * The preferred transfer method is going to be
2035 * PSEUDO-DMA for systems that are strictly PIO,
2036 * since we can let the hardware do the handshaking.
2037 *
2038 * For this to work, we need to know the transfersize
2039 * ahead of time, since the pseudo-DMA code will sit
2040 * in an unconditional loop.
2041 */
2042
2043#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
2044 /* KLL
2045 * PSEUDO_DMA is defined here. If this is the g_NCR5380
2046 * driver then it will always be defined, so the
2047 * FLAG_NO_PSEUDO_DMA is used to inhibit PDMA in the base
2048 * NCR5380 case. I think this is a fairly clean solution.
2049 * We supplement these 2 if's with the flag.
2050 */
2051#ifdef NCR5380_dma_xfer_len
2052 if (!cmd->device->borken && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && (transfersize = NCR5380_dma_xfer_len(instance, cmd)) != 0) {
2053#else
2054 transfersize = cmd->transfersize;
2055
2056#ifdef LIMIT_TRANSFERSIZE /* If we have problems with interrupt service */
2057 if (transfersize > 512)
2058 transfersize = 512;
2059#endif /* LIMIT_TRANSFERSIZE */
2060
2061 if (!cmd->device->borken && transfersize && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && cmd->SCp.this_residual && !(cmd->SCp.this_residual % transfersize)) {
2062 /* Limit transfers to 32K, for xx400 & xx406
2063 * pseudoDMA that transfers in 128 bytes blocks. */
2064 if (transfersize > 32 * 1024)
2065 transfersize = 32 * 1024;
2066#endif
2067 len = transfersize;
2068 if (NCR5380_transfer_dma(instance, &phase, &len, (unsigned char **) &cmd->SCp.ptr)) {
2069 /*
2070 * If the watchdog timer fires, all future accesses to this
2071 * device will use the polled-IO.
2072 */
017560fc
JG
2073 scmd_printk(KERN_INFO, cmd,
2074 "switching to slow handshake\n");
1da177e4
LT
2075 cmd->device->borken = 1;
2076 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2077 sink = 1;
2078 do_abort(instance);
2079 cmd->result = DID_ERROR << 16;
cce99c69 2080 cmd->scsi_done(cmd);
1da177e4
LT
2081 /* XXX - need to source or sink data here, as appropriate */
2082 } else
2083 cmd->SCp.this_residual -= transfersize - len;
2084 } else
2085#endif /* defined(PSEUDO_DMA) || defined(REAL_DMA_POLL) */
2086 NCR5380_transfer_pio(instance, &phase, (int *) &cmd->SCp.this_residual, (unsigned char **)
2087 &cmd->SCp.ptr);
2088 break;
2089 case PHASE_MSGIN:
2090 len = 1;
2091 data = &tmp;
2092 NCR5380_transfer_pio(instance, &phase, &len, &data);
2093 cmd->SCp.Message = tmp;
2094
2095 switch (tmp) {
2096 /*
2097 * Linking lets us reduce the time required to get the
2098 * next command out to the device, hopefully this will
2099 * mean we don't waste another revolution due to the delays
2100 * required by ARBITRATION and another SELECTION.
2101 *
2102 * In the current implementation proposal, low level drivers
2103 * merely have to start the next command, pointed to by
2104 * next_link, done() is called as with unlinked commands.
2105 */
2106#ifdef LINKED
2107 case LINKED_CMD_COMPLETE:
2108 case LINKED_FLG_CMD_COMPLETE:
2109 /* Accept message by clearing ACK */
2110 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
9cb78c16 2111 dprintk(NDEBUG_LINKED, "scsi%d : target %d lun %llu linked command complete.\n", instance->host_no, cmd->device->id, cmd->device->lun);
1da177e4
LT
2112 /*
2113 * Sanity check : A linked command should only terminate with
2114 * one of these messages if there are more linked commands
2115 * available.
2116 */
2117 if (!cmd->next_link) {
9cb78c16 2118 printk("scsi%d : target %d lun %llu linked command complete, no next_link\n" instance->host_no, cmd->device->id, cmd->device->lun);
1da177e4
LT
2119 sink = 1;
2120 do_abort(instance);
2121 return;
2122 }
2123 initialize_SCp(cmd->next_link);
2124 /* The next command is still part of this process */
2125 cmd->next_link->tag = cmd->tag;
2126 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
9cb78c16 2127 dprintk(NDEBUG_LINKED, "scsi%d : target %d lun %llu linked request done, calling scsi_done().\n", instance->host_no, cmd->device->id, cmd->device->lun);
1da177e4
LT
2128 cmd->scsi_done(cmd);
2129 cmd = hostdata->connected;
2130 break;
2131#endif /* def LINKED */
2132 case ABORT:
2133 case COMMAND_COMPLETE:
2134 /* Accept message by clearing ACK */
2135 sink = 1;
2136 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2137 hostdata->connected = NULL;
9cb78c16
HR
2138 dprintk(NDEBUG_QUEUES, "scsi%d : command for target %d, lun %llu completed\n", instance->host_no, cmd->device->id, cmd->device->lun);
2139 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
1da177e4
LT
2140
2141 /*
2142 * I'm not sure what the correct thing to do here is :
2143 *
2144 * If the command that just executed is NOT a request
2145 * sense, the obvious thing to do is to set the result
2146 * code to the values of the stored parameters.
2147 *
2148 * If it was a REQUEST SENSE command, we need some way
2149 * to differentiate between the failure code of the original
2150 * and the failure code of the REQUEST sense - the obvious
2151 * case is success, where we fall through and leave the result
2152 * code unchanged.
2153 *
2154 * The non-obvious place is where the REQUEST SENSE failed
2155 */
2156
2157 if (cmd->cmnd[0] != REQUEST_SENSE)
2158 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2159 else if (status_byte(cmd->SCp.Status) != GOOD)
2160 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2161
28424d3a
BH
2162 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2163 hostdata->ses.cmd_len) {
2164 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2165 hostdata->ses.cmd_len = 0 ;
2166 }
2167
1da177e4 2168 if ((cmd->cmnd[0] != REQUEST_SENSE) && (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
28424d3a
BH
2169 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
2170
52a6a1cb 2171 dprintk(NDEBUG_AUTOSENSE, "scsi%d : performing request sense\n", instance->host_no);
1da177e4
LT
2172
2173 LIST(cmd, hostdata->issue_queue);
2174 cmd->host_scribble = (unsigned char *)
2175 hostdata->issue_queue;
710ddd0d 2176 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
52a6a1cb 2177 dprintk(NDEBUG_QUEUES, "scsi%d : REQUEST SENSE added to head of issue queue\n", instance->host_no);
997acab7 2178 } else {
1da177e4
LT
2179 cmd->scsi_done(cmd);
2180 }
2181
2182 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2183 /*
2184 * Restore phase bits to 0 so an interrupted selection,
2185 * arbitration can resume.
2186 */
2187 NCR5380_write(TARGET_COMMAND_REG, 0);
2188
2189 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2190 barrier();
2191 return;
2192 case MESSAGE_REJECT:
2193 /* Accept message by clearing ACK */
2194 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2195 switch (hostdata->last_message) {
2196 case HEAD_OF_QUEUE_TAG:
2197 case ORDERED_QUEUE_TAG:
2198 case SIMPLE_QUEUE_TAG:
2199 cmd->device->simple_tags = 0;
9cb78c16 2200 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
1da177e4
LT
2201 break;
2202 default:
2203 break;
2204 }
2205 case DISCONNECT:{
2206 /* Accept message by clearing ACK */
2207 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2208 cmd->device->disconnect = 1;
2209 LIST(cmd, hostdata->disconnected_queue);
2210 cmd->host_scribble = (unsigned char *)
2211 hostdata->disconnected_queue;
2212 hostdata->connected = NULL;
2213 hostdata->disconnected_queue = cmd;
9cb78c16 2214 dprintk(NDEBUG_QUEUES, "scsi%d : command for target %d lun %llu was moved from connected to" " the disconnected_queue\n", instance->host_no, cmd->device->id, cmd->device->lun);
1da177e4
LT
2215 /*
2216 * Restore phase bits to 0 so an interrupted selection,
2217 * arbitration can resume.
2218 */
2219 NCR5380_write(TARGET_COMMAND_REG, 0);
2220
2221 /* Enable reselect interrupts */
2222 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2223 /* Wait for bus free to avoid nasty timeouts - FIXME timeout !*/
2224 /* NCR538_poll_politely(instance, STATUS_REG, SR_BSY, 0, 30 * HZ); */
2225 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2226 barrier();
2227 return;
2228 }
2229 /*
2230 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2231 * operation, in violation of the SCSI spec so we can safely
2232 * ignore SAVE/RESTORE pointers calls.
2233 *
2234 * Unfortunately, some disks violate the SCSI spec and
2235 * don't issue the required SAVE_POINTERS message before
2236 * disconnecting, and we have to break spec to remain
2237 * compatible.
2238 */
2239 case SAVE_POINTERS:
2240 case RESTORE_POINTERS:
2241 /* Accept message by clearing ACK */
2242 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2243 break;
2244 case EXTENDED_MESSAGE:
2245/*
2246 * Extended messages are sent in the following format :
2247 * Byte
2248 * 0 EXTENDED_MESSAGE == 1
2249 * 1 length (includes one byte for code, doesn't
2250 * include first two bytes)
2251 * 2 code
2252 * 3..length+1 arguments
2253 *
2254 * Start the extended message buffer with the EXTENDED_MESSAGE
1abfd370 2255 * byte, since spi_print_msg() wants the whole thing.
1da177e4
LT
2256 */
2257 extended_msg[0] = EXTENDED_MESSAGE;
2258 /* Accept first byte by clearing ACK */
2259 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
52a6a1cb 2260 dprintk(NDEBUG_EXTENDED, "scsi%d : receiving extended message\n", instance->host_no);
1da177e4
LT
2261
2262 len = 2;
2263 data = extended_msg + 1;
2264 phase = PHASE_MSGIN;
2265 NCR5380_transfer_pio(instance, &phase, &len, &data);
2266
52a6a1cb 2267 dprintk(NDEBUG_EXTENDED, "scsi%d : length=%d, code=0x%02x\n", instance->host_no, (int) extended_msg[1], (int) extended_msg[2]);
1da177e4
LT
2268
2269 if (!len && extended_msg[1] <= (sizeof(extended_msg) - 1)) {
2270 /* Accept third byte by clearing ACK */
2271 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2272 len = extended_msg[1] - 1;
2273 data = extended_msg + 3;
2274 phase = PHASE_MSGIN;
2275
2276 NCR5380_transfer_pio(instance, &phase, &len, &data);
52a6a1cb 2277 dprintk(NDEBUG_EXTENDED, "scsi%d : message received, residual %d\n", instance->host_no, len);
1da177e4
LT
2278
2279 switch (extended_msg[2]) {
2280 case EXTENDED_SDTR:
2281 case EXTENDED_WDTR:
2282 case EXTENDED_MODIFY_DATA_POINTER:
2283 case EXTENDED_EXTENDED_IDENTIFY:
2284 tmp = 0;
2285 }
2286 } else if (len) {
2287 printk("scsi%d: error receiving extended message\n", instance->host_no);
2288 tmp = 0;
2289 } else {
2290 printk("scsi%d: extended message code %02x length %d is too long\n", instance->host_no, extended_msg[2], extended_msg[1]);
2291 tmp = 0;
2292 }
2293 /* Fall through to reject message */
2294
2295 /*
2296 * If we get something weird that we aren't expecting,
2297 * reject it.
2298 */
2299 default:
2300 if (!tmp) {
2301 printk("scsi%d: rejecting message ", instance->host_no);
1abfd370 2302 spi_print_msg(extended_msg);
1da177e4
LT
2303 printk("\n");
2304 } else if (tmp != EXTENDED_MESSAGE)
017560fc
JG
2305 scmd_printk(KERN_INFO, cmd,
2306 "rejecting unknown message %02x\n",tmp);
1da177e4 2307 else
017560fc
JG
2308 scmd_printk(KERN_INFO, cmd,
2309 "rejecting unknown extended message code %02x, length %d\n", extended_msg[1], extended_msg[0]);
1da177e4
LT
2310
2311 msgout = MESSAGE_REJECT;
2312 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2313 break;
2314 } /* switch (tmp) */
2315 break;
2316 case PHASE_MSGOUT:
2317 len = 1;
2318 data = &msgout;
2319 hostdata->last_message = msgout;
2320 NCR5380_transfer_pio(instance, &phase, &len, &data);
2321 if (msgout == ABORT) {
9cb78c16 2322 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
1da177e4
LT
2323 hostdata->connected = NULL;
2324 cmd->result = DID_ERROR << 16;
1da177e4
LT
2325 cmd->scsi_done(cmd);
2326 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2327 return;
2328 }
2329 msgout = NOP;
2330 break;
2331 case PHASE_CMDOUT:
2332 len = cmd->cmd_len;
2333 data = cmd->cmnd;
2334 /*
2335 * XXX for performance reasons, on machines with a
2336 * PSEUDO-DMA architecture we should probably
2337 * use the dma transfer function.
2338 */
2339 NCR5380_transfer_pio(instance, &phase, &len, &data);
2340 if (!cmd->device->disconnect && should_disconnect(cmd->cmnd[0])) {
2341 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
52a6a1cb 2342 dprintk(NDEBUG_USLEEP, "scsi%d : issued command, sleeping until %lu\n", instance->host_no, hostdata->time_expires);
1da177e4
LT
2343 return;
2344 }
2345 break;
2346 case PHASE_STATIN:
2347 len = 1;
2348 data = &tmp;
2349 NCR5380_transfer_pio(instance, &phase, &len, &data);
2350 cmd->SCp.Status = tmp;
2351 break;
2352 default:
2353 printk("scsi%d : unknown phase\n", instance->host_no);
4dde8f7d 2354 NCR5380_dprint(NDEBUG_ANY, instance);
1da177e4
LT
2355 } /* switch(phase) */
2356 } /* if (tmp * SR_REQ) */
2357 else {
2358 /* RvC: go to sleep if polling time expired
2359 */
2360 if (!cmd->device->disconnect && time_after_eq(jiffies, poll_time)) {
2361 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
52a6a1cb 2362 dprintk(NDEBUG_USLEEP, "scsi%d : poll timed out, sleeping until %lu\n", instance->host_no, hostdata->time_expires);
1da177e4
LT
2363 return;
2364 }
2365 }
2366 } /* while (1) */
2367}
2368
2369/*
2370 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2371 *
2372 * Purpose : does reselection, initializing the instance->connected
710ddd0d 2373 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
1da177e4
LT
2374 * nexus has been reestablished,
2375 *
2376 * Inputs : instance - this instance of the NCR5380.
2377 *
2378 * Locks: io_request_lock held by caller if IRQ driven
2379 */
2380
2381static void NCR5380_reselect(struct Scsi_Host *instance) {
1da177e4
LT
2382 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)
2383 instance->hostdata;
2384 unsigned char target_mask;
2385 unsigned char lun, phase;
2386 int len;
2387 unsigned char msg[3];
2388 unsigned char *data;
710ddd0d 2389 struct scsi_cmnd *tmp = NULL, *prev;
1da177e4 2390 int abort = 0;
1da177e4
LT
2391
2392 /*
2393 * Disable arbitration, etc. since the host adapter obviously
2394 * lost, and tell an interrupted NCR5380_select() to restart.
2395 */
2396
2397 NCR5380_write(MODE_REG, MR_BASE);
2398 hostdata->restart_select = 1;
2399
2400 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
52a6a1cb 2401 dprintk(NDEBUG_SELECTION, "scsi%d : reselect\n", instance->host_no);
1da177e4
LT
2402
2403 /*
2404 * At this point, we have detected that our SCSI ID is on the bus,
2405 * SEL is true and BSY was false for at least one bus settle delay
2406 * (400 ns).
2407 *
2408 * We must assert BSY ourselves, until the target drops the SEL
2409 * signal.
2410 */
2411
2412 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2413
2414 /* FIXME: timeout too long, must fail to workqueue */
2415 if(NCR5380_poll_politely(instance, STATUS_REG, SR_SEL, 0, 2*HZ)<0)
2416 abort = 1;
2417
2418 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2419
2420 /*
2421 * Wait for target to go into MSGIN.
2422 * FIXME: timeout needed and fail to work queeu
2423 */
2424
2425 if(NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 2*HZ))
2426 abort = 1;
2427
2428 len = 1;
2429 data = msg;
2430 phase = PHASE_MSGIN;
2431 NCR5380_transfer_pio(instance, &phase, &len, &data);
2432
2433 if (!(msg[0] & 0x80)) {
2434 printk(KERN_ERR "scsi%d : expecting IDENTIFY message, got ", instance->host_no);
1abfd370 2435 spi_print_msg(msg);
1da177e4
LT
2436 abort = 1;
2437 } else {
2438 /* Accept message by clearing ACK */
2439 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2440 lun = (msg[0] & 0x07);
2441
2442 /*
2443 * We need to add code for SCSI-II to track which devices have
2444 * I_T_L_Q nexuses established, and which have simple I_T_L
2445 * nexuses so we can chose to do additional data transfer.
2446 */
2447
2448 /*
2449 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2450 * just reestablished, and remove it from the disconnected queue.
2451 */
2452
2453
710ddd0d 2454 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL; tmp; prev = tmp, tmp = (struct scsi_cmnd *) tmp->host_scribble)
9cb78c16 2455 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
1da177e4
LT
2456 ) {
2457 if (prev) {
2458 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
2459 prev->host_scribble = tmp->host_scribble;
2460 } else {
2461 REMOVE(-1, hostdata->disconnected_queue, tmp, tmp->host_scribble);
710ddd0d 2462 hostdata->disconnected_queue = (struct scsi_cmnd *) tmp->host_scribble;
1da177e4
LT
2463 }
2464 tmp->host_scribble = NULL;
2465 break;
2466 }
2467 if (!tmp) {
2468 printk(KERN_ERR "scsi%d : warning : target bitmask %02x lun %d not in disconnect_queue.\n", instance->host_no, target_mask, lun);
2469 /*
2470 * Since we have an established nexus that we can't do anything with,
2471 * we must abort it.
2472 */
2473 abort = 1;
2474 }
2475 }
2476
2477 if (abort) {
2478 do_abort(instance);
2479 } else {
2480 hostdata->connected = tmp;
9cb78c16 2481 dprintk(NDEBUG_RESELECTION, "scsi%d : nexus established, target = %d, lun = %llu, tag = %d\n", instance->host_no, tmp->device->id, tmp->device->lun, tmp->tag);
1da177e4
LT
2482 }
2483}
2484
2485/*
2486 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
2487 *
2488 * Purpose : called by interrupt handler when DMA finishes or a phase
2489 * mismatch occurs (which would finish the DMA transfer).
2490 *
2491 * Inputs : instance - this instance of the NCR5380.
2492 *
710ddd0d 2493 * Returns : pointer to the scsi_cmnd structure for which the I_T_L
1da177e4
LT
2494 * nexus has been reestablished, on failure NULL is returned.
2495 */
2496
2497#ifdef REAL_DMA
2498static void NCR5380_dma_complete(NCR5380_instance * instance) {
f8343685 2499 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1da177e4 2500 int transferred;
1da177e4
LT
2501
2502 /*
2503 * XXX this might not be right.
2504 *
2505 * Wait for final byte to transfer, ie wait for ACK to go false.
2506 *
2507 * We should use the Last Byte Sent bit, unfortunately this is
2508 * not available on the 5380/5381 (only the various CMOS chips)
2509 *
2510 * FIXME: timeout, and need to handle long timeout/irq case
2511 */
2512
2513 NCR5380_poll_politely(instance, BUS_AND_STATUS_REG, BASR_ACK, 0, 5*HZ);
2514
2515 NCR5380_write(MODE_REG, MR_BASE);
2516 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2517
2518 /*
2519 * The only places we should see a phase mismatch and have to send
2520 * data from the same set of pointers will be the data transfer
2521 * phases. So, residual, requested length are only important here.
2522 */
2523
2524 if (!(hostdata->connected->SCp.phase & SR_CD)) {
2525 transferred = instance->dmalen - NCR5380_dma_residual();
2526 hostdata->connected->SCp.this_residual -= transferred;
2527 hostdata->connected->SCp.ptr += transferred;
2528 }
2529}
2530#endif /* def REAL_DMA */
2531
2532/*
710ddd0d 2533 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
1da177e4
LT
2534 *
2535 * Purpose : abort a command
2536 *
710ddd0d 2537 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
b6c92b7e 2538 * host byte of the result field to, if zero DID_ABORTED is
1da177e4
LT
2539 * used.
2540 *
b6c92b7e 2541 * Returns : SUCCESS - success, FAILED on failure.
1da177e4 2542 *
b6c92b7e
HR
2543 * XXX - there is no way to abort the command that is currently
2544 * connected, you have to wait for it to complete. If this is
1da177e4
LT
2545 * a problem, we could implement longjmp() / setjmp(), setjmp()
2546 * called where the loop started in NCR5380_main().
2547 *
2548 * Locks: host lock taken by caller
2549 */
2550
710ddd0d
FT
2551static int NCR5380_abort(struct scsi_cmnd *cmd)
2552{
1da177e4
LT
2553 struct Scsi_Host *instance = cmd->device->host;
2554 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
710ddd0d 2555 struct scsi_cmnd *tmp, **prev;
1fa6b5fb
HR
2556
2557 scmd_printk(KERN_WARNING, cmd, "aborting command\n");
1da177e4
LT
2558
2559 NCR5380_print_status(instance);
2560
52a6a1cb
FT
2561 dprintk(NDEBUG_ABORT, "scsi%d : abort called\n", instance->host_no);
2562 dprintk(NDEBUG_ABORT, " basr 0x%X, sr 0x%X\n", NCR5380_read(BUS_AND_STATUS_REG), NCR5380_read(STATUS_REG));
1da177e4
LT
2563
2564#if 0
2565/*
2566 * Case 1 : If the command is the currently executing command,
2567 * we'll set the aborted flag and return control so that
2568 * information transfer routine can exit cleanly.
2569 */
2570
2571 if (hostdata->connected == cmd) {
52a6a1cb 2572 dprintk(NDEBUG_ABORT, "scsi%d : aborting connected command\n", instance->host_no);
1da177e4
LT
2573 hostdata->aborted = 1;
2574/*
2575 * We should perform BSY checking, and make sure we haven't slipped
2576 * into BUS FREE.
2577 */
2578
2579 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN);
2580/*
2581 * Since we can't change phases until we've completed the current
2582 * handshake, we have to source or sink a byte of data if the current
2583 * phase is not MSGOUT.
2584 */
2585
2586/*
2587 * Return control to the executing NCR drive so we can clear the
2588 * aborted flag and get back into our main loop.
2589 */
2590
b6c92b7e 2591 return SUCCESS;
1da177e4
LT
2592 }
2593#endif
2594
2595/*
2596 * Case 2 : If the command hasn't been issued yet, we simply remove it
2597 * from the issue queue.
2598 */
2599
52a6a1cb 2600 dprintk(NDEBUG_ABORT, "scsi%d : abort going into loop.\n", instance->host_no);
710ddd0d 2601 for (prev = (struct scsi_cmnd **) &(hostdata->issue_queue), tmp = (struct scsi_cmnd *) hostdata->issue_queue; tmp; prev = (struct scsi_cmnd **) &(tmp->host_scribble), tmp = (struct scsi_cmnd *) tmp->host_scribble)
1da177e4
LT
2602 if (cmd == tmp) {
2603 REMOVE(5, *prev, tmp, tmp->host_scribble);
710ddd0d 2604 (*prev) = (struct scsi_cmnd *) tmp->host_scribble;
1da177e4
LT
2605 tmp->host_scribble = NULL;
2606 tmp->result = DID_ABORT << 16;
52a6a1cb 2607 dprintk(NDEBUG_ABORT, "scsi%d : abort removed command from issue queue.\n", instance->host_no);
cce99c69 2608 tmp->scsi_done(tmp);
1da177e4
LT
2609 return SUCCESS;
2610 }
2611#if (NDEBUG & NDEBUG_ABORT)
2612 /* KLL */
2613 else if (prev == tmp)
2614 printk(KERN_ERR "scsi%d : LOOP\n", instance->host_no);
2615#endif
2616
2617/*
2618 * Case 3 : If any commands are connected, we're going to fail the abort
2619 * and let the high level SCSI driver retry at a later time or
2620 * issue a reset.
2621 *
2622 * Timeouts, and therefore aborted commands, will be highly unlikely
2623 * and handling them cleanly in this situation would make the common
2624 * case of noresets less efficient, and would pollute our code. So,
2625 * we fail.
2626 */
2627
2628 if (hostdata->connected) {
52a6a1cb 2629 dprintk(NDEBUG_ABORT, "scsi%d : abort failed, command connected.\n", instance->host_no);
1da177e4
LT
2630 return FAILED;
2631 }
2632/*
2633 * Case 4: If the command is currently disconnected from the bus, and
2634 * there are no connected commands, we reconnect the I_T_L or
2635 * I_T_L_Q nexus associated with it, go into message out, and send
2636 * an abort message.
2637 *
2638 * This case is especially ugly. In order to reestablish the nexus, we
2639 * need to call NCR5380_select(). The easiest way to implement this
2640 * function was to abort if the bus was busy, and let the interrupt
2641 * handler triggered on the SEL for reselect take care of lost arbitrations
2642 * where necessary, meaning interrupts need to be enabled.
2643 *
2644 * When interrupts are enabled, the queues may change - so we
2645 * can't remove it from the disconnected queue before selecting it
2646 * because that could cause a failure in hashing the nexus if that
2647 * device reselected.
2648 *
2649 * Since the queues may change, we can't use the pointers from when we
2650 * first locate it.
2651 *
2652 * So, we must first locate the command, and if NCR5380_select()
2653 * succeeds, then issue the abort, relocate the command and remove
2654 * it from the disconnected queue.
2655 */
2656
710ddd0d 2657 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp; tmp = (struct scsi_cmnd *) tmp->host_scribble)
1da177e4 2658 if (cmd == tmp) {
52a6a1cb 2659 dprintk(NDEBUG_ABORT, "scsi%d : aborting disconnected command.\n", instance->host_no);
1da177e4 2660
76f13b93 2661 if (NCR5380_select(instance, cmd))
1da177e4 2662 return FAILED;
52a6a1cb 2663 dprintk(NDEBUG_ABORT, "scsi%d : nexus reestablished.\n", instance->host_no);
1da177e4
LT
2664
2665 do_abort(instance);
2666
710ddd0d 2667 for (prev = (struct scsi_cmnd **) &(hostdata->disconnected_queue), tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp; prev = (struct scsi_cmnd **) &(tmp->host_scribble), tmp = (struct scsi_cmnd *) tmp->host_scribble)
1da177e4
LT
2668 if (cmd == tmp) {
2669 REMOVE(5, *prev, tmp, tmp->host_scribble);
710ddd0d 2670 *prev = (struct scsi_cmnd *) tmp->host_scribble;
1da177e4
LT
2671 tmp->host_scribble = NULL;
2672 tmp->result = DID_ABORT << 16;
cce99c69 2673 tmp->scsi_done(tmp);
1da177e4
LT
2674 return SUCCESS;
2675 }
2676 }
2677/*
2678 * Case 5 : If we reached this point, the command was not found in any of
2679 * the queues.
2680 *
2681 * We probably reached this point because of an unlikely race condition
2682 * between the command completing successfully and the abortion code,
2683 * so we won't panic, but we will notify the user in case something really
2684 * broke.
2685 */
2686 printk(KERN_WARNING "scsi%d : warning : SCSI command probably completed successfully\n"
2687 " before abortion\n", instance->host_no);
2688 return FAILED;
2689}
2690
2691
2692/*
710ddd0d 2693 * Function : int NCR5380_bus_reset (struct scsi_cmnd *cmd)
1da177e4
LT
2694 *
2695 * Purpose : reset the SCSI bus.
2696 *
2697 * Returns : SUCCESS
2698 *
2699 * Locks: host lock taken by caller
2700 */
2701
710ddd0d 2702static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
68b3aa7c
JG
2703{
2704 struct Scsi_Host *instance = cmd->device->host;
2705
68b3aa7c
JG
2706 NCR5380_print_status(instance);
2707
2708 spin_lock_irq(instance->host_lock);
2709 do_reset(instance);
2710 spin_unlock_irq(instance->host_lock);
1da177e4 2711
1da177e4
LT
2712 return SUCCESS;
2713}