blob: 6a030139b41f7e1c887a41e70bd92db6d9b501a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Revision 1.10 1998/9/2 Alan Cox
Alan Coxfa195af2008-10-27 15:16:36 +000029 * (alan@lxorguk.ukuu.org.uk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * 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 */
db9dff32005-04-03 14:53:59 -050085#include <scsi/scsi_dbg.h>
Matthew Wilcox1abfd372005-12-15 16:22:01 -050086#include <scsi/scsi_transport_spi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
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 :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
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
Finn Thain54d8fe42016-01-03 16:05:06 +1100265static int do_abort(struct Scsi_Host *);
266static void do_reset(struct Scsi_Host *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
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
Finn Thain710ddd02014-11-12 16:12:02 +1100275static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 /*
278 * Initialize the Scsi Pointer field so that all of the commands in the
279 * various queues are valid.
280 */
281
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200282 if (scsi_bufflen(cmd)) {
283 cmd->SCp.buffer = scsi_sglist(cmd);
284 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200285 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 cmd->SCp.this_residual = cmd->SCp.buffer->length;
287 } else {
288 cmd->SCp.buffer = NULL;
289 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200290 cmd->SCp.ptr = NULL;
291 cmd->SCp.this_residual = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293}
294
295/**
Finn Thain2f854b82016-01-03 16:05:22 +1100296 * NCR5380_poll_politely - wait for chip register value
297 * @instance: controller to poll
298 * @reg: 5380 register to poll
299 * @bit: Bitmask to check
300 * @val: Value required to exit
301 * @wait: Time-out in jiffies
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 *
Finn Thain2f854b82016-01-03 16:05:22 +1100303 * Polls the chip in a reasonably efficient manner waiting for an
304 * event to occur. After a short quick poll we begin to yield the CPU
305 * (if possible). In irq contexts the time-out is arbitrarily limited.
306 * Callers may hold locks as long as they are held in irq mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
Finn Thain2f854b82016-01-03 16:05:22 +1100308 * Returns 0 if event occurred otherwise -ETIMEDOUT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Finn Thain2f854b82016-01-03 16:05:22 +1100311static int NCR5380_poll_politely(struct Scsi_Host *instance,
312 int reg, int bit, int val, int wait)
313{
314 struct NCR5380_hostdata *hostdata = shost_priv(instance);
315 unsigned long deadline = jiffies + wait;
316 unsigned long n;
317
318 /* Busy-wait for up to 10 ms */
319 n = min(10000U, jiffies_to_usecs(wait));
320 n *= hostdata->accesses_per_ms;
321 n /= 1000;
322 do {
323 if ((NCR5380_read(reg) & bit) == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return 0;
325 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100326 } while (n--);
327
328 if (irqs_disabled() || in_interrupt())
329 return -ETIMEDOUT;
330
331 /* Repeatedly sleep for 1 ms until deadline */
332 while (time_is_after_jiffies(deadline)) {
333 schedule_timeout_uninterruptible(1);
334 if ((NCR5380_read(reg) & bit) == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Finn Thain2f854b82016-01-03 16:05:22 +1100337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return -ETIMEDOUT;
339}
340
341static struct {
342 unsigned char value;
343 const char *name;
Andrew Morton702809c2007-05-23 14:41:56 -0700344} phases[] __maybe_unused = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 {PHASE_DATAOUT, "DATAOUT"},
346 {PHASE_DATAIN, "DATAIN"},
347 {PHASE_CMDOUT, "CMDOUT"},
348 {PHASE_STATIN, "STATIN"},
349 {PHASE_MSGOUT, "MSGOUT"},
350 {PHASE_MSGIN, "MSGIN"},
351 {PHASE_UNKNOWN, "UNKNOWN"}
352};
353
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100354#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355static struct {
356 unsigned char mask;
357 const char *name;
358} signals[] = {
359 {SR_DBP, "PARITY"},
360 {SR_RST, "RST"},
361 {SR_BSY, "BSY"},
362 {SR_REQ, "REQ"},
363 {SR_MSG, "MSG"},
364 {SR_CD, "CD"},
365 {SR_IO, "IO"},
366 {SR_SEL, "SEL"},
367 {0, NULL}
368},
369basrs[] = {
370 {BASR_ATN, "ATN"},
371 {BASR_ACK, "ACK"},
372 {0, NULL}
373},
374icrs[] = {
375 {ICR_ASSERT_RST, "ASSERT RST"},
376 {ICR_ASSERT_ACK, "ASSERT ACK"},
377 {ICR_ASSERT_BSY, "ASSERT BSY"},
378 {ICR_ASSERT_SEL, "ASSERT SEL"},
379 {ICR_ASSERT_ATN, "ASSERT ATN"},
380 {ICR_ASSERT_DATA, "ASSERT DATA"},
381 {0, NULL}
382},
383mrs[] = {
384 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"},
385 {MR_TARGET, "MODE TARGET"},
386 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"},
387 {MR_ENABLE_PAR_INTR, "MODE PARITY INTR"},
388 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
389 {MR_DMA_MODE, "MODE DMA"},
390 {MR_ARBITRATE, "MODE ARBITRATION"},
391 {0, NULL}
392};
393
394/**
395 * NCR5380_print - print scsi bus signals
396 * @instance: adapter state to dump
397 *
398 * Print the SCSI bus signals for debugging purposes
399 *
400 * Locks: caller holds hostdata lock (not essential)
401 */
402
403static void NCR5380_print(struct Scsi_Host *instance)
404{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
408 status = NCR5380_read(STATUS_REG);
409 mr = NCR5380_read(MODE_REG);
410 icr = NCR5380_read(INITIATOR_COMMAND_REG);
411 basr = NCR5380_read(BUS_AND_STATUS_REG);
412
413 printk("STATUS_REG: %02x ", status);
414 for (i = 0; signals[i].mask; ++i)
415 if (status & signals[i].mask)
416 printk(",%s", signals[i].name);
417 printk("\nBASR: %02x ", basr);
418 for (i = 0; basrs[i].mask; ++i)
419 if (basr & basrs[i].mask)
420 printk(",%s", basrs[i].name);
421 printk("\nICR: %02x ", icr);
422 for (i = 0; icrs[i].mask; ++i)
423 if (icr & icrs[i].mask)
424 printk(",%s", icrs[i].name);
425 printk("\nMODE: %02x ", mr);
426 for (i = 0; mrs[i].mask; ++i)
427 if (mr & mrs[i].mask)
428 printk(",%s", mrs[i].name);
429 printk("\n");
430}
431
432
433/*
434 * NCR5380_print_phase - show SCSI phase
435 * @instance: adapter to dump
436 *
437 * Print the current SCSI phase for debugging purposes
438 *
439 * Locks: none
440 */
441
442static void NCR5380_print_phase(struct Scsi_Host *instance)
443{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned char status;
445 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 status = NCR5380_read(STATUS_REG);
448 if (!(status & SR_REQ))
449 printk("scsi%d : REQ not asserted, phase unknown.\n", instance->host_no);
450 else {
451 for (i = 0; (phases[i].value != PHASE_UNKNOWN) && (phases[i].value != (status & PHASE_MASK)); ++i);
452 printk("scsi%d : phase %s\n", instance->host_no, phases[i].name);
453 }
454}
455#endif
456
457/*
458 * These need tweaking, and would probably work best as per-device
459 * flags initialized differently for disk, tape, cd, etc devices.
460 * People with broken devices are free to experiment as to what gives
461 * the best results for them.
462 *
463 * USLEEP_SLEEP should be a minimum seek time.
464 *
465 * USLEEP_POLL should be a maximum rotational latency.
466 */
467#ifndef USLEEP_SLEEP
468/* 20 ms (reasonable hard disk speed) */
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500469#define USLEEP_SLEEP msecs_to_jiffies(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
471/* 300 RPM (floppy speed) */
472#ifndef USLEEP_POLL
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500473#define USLEEP_POLL msecs_to_jiffies(200)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/*
477 * Function : int should_disconnect (unsigned char cmd)
478 *
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200479 * Purpose : decide whether a command would normally disconnect or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * 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;
Finn Thain0ad0eff2016-01-03 16:05:21 +1100521 queue_delayed_work(hostdata->work_q, &hostdata->coroutine, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524
Finn Thaind5f7e652016-01-03 16:05:03 +1100525static int probe_irq __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
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
David Howells7d12e782006-10-05 14:55:46 +0100537static irqreturn_t __init probe_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
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
Andrew Morton702809c2007-05-23 14:41:56 -0700554static int __init __maybe_unused NCR5380_probe_irq(struct Scsi_Host *instance,
555 int possible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
558 unsigned long timeout;
559 int trying_irqs, i, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Finn Thain22f5f102014-11-12 16:11:56 +1100561 for (trying_irqs = 0, i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100562 if ((mask & possible) && (request_irq(i, &probe_intr, 0, "NCR-probe", NULL) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 trying_irqs |= mask;
564
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500565 timeout = jiffies + msecs_to_jiffies(250);
Finn Thain22f5f102014-11-12 16:11:56 +1100566 probe_irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
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
Finn Thain22f5f102014-11-12 16:11:56 +1100583 while (probe_irq == NO_IRQ && time_before(jiffies, timeout))
Nishanth Aravamudana9a30472005-11-07 01:01:20 -0800584 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 NCR5380_write(SELECT_ENABLE_REG, 0);
587 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
588
Finn Thain22f5f102014-11-12 16:11:56 +1100589 for (i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (trying_irqs & mask)
591 free_irq(i, NULL);
592
593 return probe_irq;
594}
595
596/**
Finn Thain8c325132014-11-12 16:11:58 +1100597 * NCR58380_info - report driver and host information
598 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 *
Finn Thain8c325132014-11-12 16:11:58 +1100600 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
602 * Locks: none
603 */
604
Finn Thain8c325132014-11-12 16:11:58 +1100605static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Finn Thain8c325132014-11-12 16:11:58 +1100607 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, "
Finn Thain9c3f0e22016-01-03 16:05:11 +1100621 "flags { %s%s%s%s}, "
Finn Thain4d029e92016-01-03 16:05:19 +1100622#if defined(USLEEP_POLL) && defined(USLEEP_SLEEP)
623 "USLEEP_POLL %lu, USLEEP_SLEEP %lu, "
Finn Thain8c325132014-11-12 16:11:58 +1100624#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 " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100633 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Finn Thain4d029e92016-01-03 16:05:19 +1100634#if defined(USLEEP_POLL) && defined(USLEEP_SLEEP)
635 USLEEP_POLL, USLEEP_SLEEP,
Finn Thain8c325132014-11-12 16:11:58 +1100636#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637#ifdef AUTOPROBE_IRQ
Finn Thain8c325132014-11-12 16:11:58 +1100638 "AUTOPROBE_IRQ "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640#ifdef DIFFERENTIAL
Finn Thain8c325132014-11-12 16:11:58 +1100641 "DIFFERENTIAL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642#endif
643#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100644 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645#endif
646#ifdef REAL_DMA_POLL
Finn Thain8c325132014-11-12 16:11:58 +1100647 "REAL_DMA_POLL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648#endif
649#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100650 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#endif
652#ifdef PSEUDO_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100653 "PSEUDO_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#endif
655#ifdef UNSAFE
Finn Thain8c325132014-11-12 16:11:58 +1100656 "UNSAFE "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#endif
Finn Thain8c325132014-11-12 16:11:58 +1100658 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/**
662 * NCR5380_print_status - dump controller info
663 * @instance: controller to dump
664 *
665 * Print commands in the various queues, called from NCR5380_abort
666 * and NCR5380_debug to aid debugging.
667 *
668 * Locks: called functions disable irqs
669 */
670
Finn Thain3be1b3e2016-01-03 16:05:12 +1100671static void __maybe_unused NCR5380_print_status(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 NCR5380_dprint(NDEBUG_ANY, instance);
674 NCR5380_dprint_phase(NDEBUG_ANY, instance);
675}
676
Finn Thaina9c2dc42014-11-12 16:11:59 +1100677#ifdef PSEUDO_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678/******************************************/
679/*
680 * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
681 *
682 * *buffer: I/O buffer
683 * **start: if inout == FALSE pointer into buffer where user read should start
684 * offset: current offset
685 * length: length of buffer
686 * hostno: Scsi_Host host_no
687 * inout: TRUE - user is writing; FALSE - user is reading
688 *
689 * Return the number of bytes read from or written
690 */
691
Al Virodd7ab712013-03-31 01:15:54 -0400692static int __maybe_unused NCR5380_write_info(struct Scsi_Host *instance,
693 char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Finn Thaina9c2dc42014-11-12 16:11:59 +1100695 struct NCR5380_hostdata *hostdata = shost_priv(instance);
696
697 hostdata->spin_max_r = 0;
698 hostdata->spin_max_w = 0;
699 return 0;
Al Virodd7ab712013-03-31 01:15:54 -0400700}
Finn Thaina9c2dc42014-11-12 16:11:59 +1100701#endif
Al Virodd7ab712013-03-31 01:15:54 -0400702
Al Virodd7ab712013-03-31 01:15:54 -0400703static
Finn Thain710ddd02014-11-12 16:12:02 +1100704void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m);
Al Virodd7ab712013-03-31 01:15:54 -0400705static
706void lprint_command(unsigned char *cmd, struct seq_file *m);
707static
708void lprint_opcode(int opcode, struct seq_file *m);
709
710static int __maybe_unused NCR5380_show_info(struct seq_file *m,
711 struct Scsi_Host *instance)
712{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100714 struct scsi_cmnd *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 hostdata = (struct NCR5380_hostdata *) instance->hostdata;
717
Finn Thaina9c2dc42014-11-12 16:11:59 +1100718#ifdef PSEUDO_DMA
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100719 seq_printf(m, "Highwater I/O busy spin counts: write %d, read %d\n",
Finn Thaina9c2dc42014-11-12 16:11:59 +1100720 hostdata->spin_max_w, hostdata->spin_max_r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif
722 spin_lock_irq(instance->host_lock);
723 if (!hostdata->connected)
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100724 seq_printf(m, "scsi%d: no currently connected command\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 else
Finn Thain710ddd02014-11-12 16:12:02 +1100726 lprint_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected, m);
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100727 seq_printf(m, "scsi%d: issue_queue\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +1100728 for (ptr = (struct scsi_cmnd *) hostdata->issue_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
Al Virodd7ab712013-03-31 01:15:54 -0400729 lprint_Scsi_Cmnd(ptr, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100731 seq_printf(m, "scsi%d: disconnected_queue\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +1100732 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
Al Virodd7ab712013-03-31 01:15:54 -0400733 lprint_Scsi_Cmnd(ptr, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 spin_unlock_irq(instance->host_lock);
Al Virodd7ab712013-03-31 01:15:54 -0400735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Finn Thain710ddd02014-11-12 16:12:02 +1100738static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100740 seq_printf(m, "scsi%d : destination target %d, lun %llu\n", cmd->device->host->host_no, cmd->device->id, cmd->device->lun);
Rasmus Villemoes91c40f22014-12-03 00:10:52 +0100741 seq_puts(m, " command = ");
Al Virodd7ab712013-03-31 01:15:54 -0400742 lprint_command(cmd->cmnd, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Al Virodd7ab712013-03-31 01:15:54 -0400745static void lprint_command(unsigned char *command, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
747 int i, s;
Al Virodd7ab712013-03-31 01:15:54 -0400748 lprint_opcode(command[0], m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100750 seq_printf(m, "%02x ", command[i]);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +0100751 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Al Virodd7ab712013-03-31 01:15:54 -0400754static void lprint_opcode(int opcode, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100756 seq_printf(m, "%2d (0x%02x)", opcode, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759
760/**
761 * NCR5380_init - initialise an NCR5380
762 * @instance: adapter to configure
763 * @flags: control flags
764 *
765 * Initializes *instance and corresponding 5380 chip,
766 * with flags OR'd into the initial flags value.
767 *
768 * Notes : I assume that the host, hostno, and id bits have been
769 * set correctly. I don't care about the irq and other fields.
770 *
771 * Returns 0 for success
772 *
773 * Locks: interrupts must be enabled when we are called
774 */
775
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800776static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Finn Thainb6488f92016-01-03 16:05:08 +1100778 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Finn Thain2f854b82016-01-03 16:05:22 +1100780 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if(in_interrupt())
783 printk(KERN_ERR "NCR5380_init called with interrupts off!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 hostdata->id_mask = 1 << instance->this_id;
786 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
787 if (i > hostdata->id_mask)
788 hostdata->id_higher_mask |= i;
789 for (i = 0; i < 8; ++i)
790 hostdata->busy[i] = 0;
791#ifdef REAL_DMA
792 hostdata->dmalen = 0;
793#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 hostdata->connected = NULL;
795 hostdata->issue_queue = NULL;
796 hostdata->disconnected_queue = NULL;
797
David Howellsc4028952006-11-22 14:57:56 +0000798 INIT_DELAYED_WORK(&hostdata->coroutine, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100799 hostdata->work_q = alloc_workqueue("ncr5380_%d",
800 WQ_UNBOUND | WQ_MEM_RECLAIM,
801 1, instance->host_no);
802 if (!hostdata->work_q)
803 return -ENOMEM;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* The CHECK code seems to break the 53C400. Will check it later maybe */
806 if (flags & FLAG_NCR53C400)
807 hostdata->flags = FLAG_HAS_LAST_BYTE_SENT | flags;
808 else
809 hostdata->flags = FLAG_CHECK_LAST_BYTE_SENT | flags;
810
811 hostdata->host = instance;
812 hostdata->time_expires = 0;
813
Finn Thain8c325132014-11-12 16:11:58 +1100814 prepare_info(instance);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
817 NCR5380_write(MODE_REG, MR_BASE);
818 NCR5380_write(TARGET_COMMAND_REG, 0);
819 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thain2f854b82016-01-03 16:05:22 +1100820
821 /* Calibrate register polling loop */
822 i = 0;
823 deadline = jiffies + 1;
824 do {
825 cpu_relax();
826 } while (time_is_after_jiffies(deadline));
827 deadline += msecs_to_jiffies(256);
828 do {
829 NCR5380_read(STATUS_REG);
830 ++i;
831 cpu_relax();
832 } while (time_is_after_jiffies(deadline));
833 hostdata->accesses_per_ms = i / 256;
834
Finn Thainb6488f92016-01-03 16:05:08 +1100835 return 0;
836}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Finn Thainb6488f92016-01-03 16:05:08 +1100838/**
839 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
840 * @instance: adapter to check
841 *
842 * If the system crashed, it may have crashed with a connected target and
843 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
844 * currently established nexus, which we know nothing about. Failing that
845 * do a bus reset.
846 *
847 * Note that a bus reset will cause the chip to assert IRQ.
848 *
849 * Returns 0 if successful, otherwise -ENXIO.
850 */
851
852static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
853{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100854 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100855 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
858 switch (pass) {
859 case 1:
860 case 3:
861 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100862 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
863 NCR5380_poll_politely(instance,
864 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 break;
866 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100867 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 do_abort(instance);
869 break;
870 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100871 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100873 /* Wait after a reset; the SCSI standard calls for
874 * 250ms, we wait 500ms to be on the safe side.
875 * But some Toshiba CD-ROMs need ten times that.
876 */
877 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
878 msleep(2500);
879 else
880 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 break;
882 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100883 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return -ENXIO;
885 }
886 }
887 return 0;
888}
889
890/**
891 * NCR5380_exit - remove an NCR5380
892 * @instance: adapter to remove
893 */
894
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800895static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
897 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
898
Tejun Heoa684b8d2011-01-24 14:57:28 +0100899 cancel_delayed_work_sync(&hostdata->coroutine);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100900 destroy_workqueue(hostdata->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903/**
904 * NCR5380_queue_command - queue a command
905 * @cmd: SCSI command
906 * @done: completion handler
907 *
908 * cmd is added to the per instance issue_queue, with minor
909 * twiddling done to the host specific fields of cmd. If the
910 * main coroutine is not running, it is restarted.
911 *
912 * Locks: host lock taken by caller
913 */
914
Finn Thain710ddd02014-11-12 16:12:02 +1100915static int NCR5380_queue_command_lck(struct scsi_cmnd *cmd, void (*done) (struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct Scsi_Host *instance = cmd->device->host;
918 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100919 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921#if (NDEBUG & NDEBUG_NO_WRITE)
922 switch (cmd->cmnd[0]) {
923 case WRITE_6:
924 case WRITE_10:
925 printk("scsi%d : WRITE attempted with NO_WRITE debugging flag set\n", instance->host_no);
926 cmd->result = (DID_ERROR << 16);
927 done(cmd);
928 return 0;
929 }
930#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /*
933 * We use the host_scribble field as a pointer to the next command
934 * in a queue
935 */
936
937 cmd->host_scribble = NULL;
938 cmd->scsi_done = done;
939 cmd->result = 0;
940
941 /*
942 * Insert the cmd into the issue queue. Note that REQUEST SENSE
943 * commands are added to the head of the queue since any command will
944 * clear the contingent allegiance condition that exists and the
945 * sense data is only guaranteed to be valid while the condition exists.
946 */
947
948 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
949 LIST(cmd, hostdata->issue_queue);
950 cmd->host_scribble = (unsigned char *) hostdata->issue_queue;
951 hostdata->issue_queue = cmd;
952 } else {
Finn Thain710ddd02014-11-12 16:12:02 +1100953 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue; tmp->host_scribble; tmp = (struct scsi_cmnd *) tmp->host_scribble);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 LIST(cmd, tmp);
955 tmp->host_scribble = (unsigned char *) cmd;
956 }
Finn Thain52a6a1c2014-03-18 11:42:18 +1100957 dprintk(NDEBUG_QUEUES, "scsi%d : command added to %s of queue\n", instance->host_no, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 /* Run the coroutine if it isn't already running. */
960 /* Kick off command processing */
Finn Thain0ad0eff2016-01-03 16:05:21 +1100961 queue_delayed_work(hostdata->work_q, &hostdata->coroutine, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return 0;
963}
964
Jeff Garzikf2812332010-11-16 02:10:29 -0500965static DEF_SCSI_QCMD(NCR5380_queue_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967/**
968 * NCR5380_main - NCR state machines
969 *
970 * NCR5380_main is a coroutine that runs as long as more work can
971 * be done on the NCR5380 host adapters in a system. Both
972 * NCR5380_queue_command() and NCR5380_intr() will try to start it
973 * in case it is not running.
974 *
975 * Locks: called as its own thread with no locks held. Takes the
976 * host lock and called routines may take the isa dma lock.
977 */
978
David Howellsc4028952006-11-22 14:57:56 +0000979static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
David Howellsc4028952006-11-22 14:57:56 +0000981 struct NCR5380_hostdata *hostdata =
982 container_of(work, struct NCR5380_hostdata, coroutine.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +1100984 struct scsi_cmnd *tmp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 int done;
986
987 spin_lock_irq(instance->host_lock);
988 do {
989 /* Lock held here */
990 done = 1;
Finn Thainae753a32016-01-03 16:05:23 +1100991 if (!hostdata->connected) {
Finn Thain52a6a1c2014-03-18 11:42:18 +1100992 dprintk(NDEBUG_MAIN, "scsi%d : not connected\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 /*
994 * Search through the issue_queue for a command destined
995 * for a target that's not busy.
996 */
Finn Thain710ddd02014-11-12 16:12:02 +1100997 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL; tmp; prev = tmp, tmp = (struct scsi_cmnd *) tmp->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 {
999 if (prev != tmp)
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001000 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* When we find one, remove it from the issue queue. */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001002 if (!(hostdata->busy[tmp->device->id] &
1003 (1 << (u8)(tmp->device->lun & 0xff)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (prev) {
1005 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
1006 prev->host_scribble = tmp->host_scribble;
1007 } else {
1008 REMOVE(-1, hostdata->issue_queue, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11001009 hostdata->issue_queue = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 tmp->host_scribble = NULL;
1012
1013 /*
1014 * Attempt to establish an I_T_L nexus here.
1015 * On success, instance->hostdata->connected is set.
1016 * On failure, we must add the command back to the
1017 * issue queue so we can keep trying.
1018 */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001019 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Finn Thain76f13b92014-11-12 16:11:53 +11001021 /*
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)) {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001029 /* OK or bad target */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 } else {
Finn Thain1f1b0c72016-01-03 16:05:17 +11001031 /* Need to retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 LIST(tmp, hostdata->issue_queue);
1033 tmp->host_scribble = (unsigned char *) hostdata->issue_queue;
1034 hostdata->issue_queue = tmp;
1035 done = 0;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001036 dprintk(NDEBUG_MAIN|NDEBUG_QUEUES, "scsi%d : main(): select() failed, returned to issue_queue\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Finn Thainae753a32016-01-03 16:05:23 +11001038 if (hostdata->connected)
Finn Thain1f1b0c72016-01-03 16:05:17 +11001039 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 /* lock held here still */
1041 } /* if target/lun is not busy */
1042 } /* for */
1043 /* exited locked */
1044 } /* if (!hostdata->connected) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (hostdata->connected
1046#ifdef REAL_DMA
1047 && !hostdata->dmalen
1048#endif
1049 && (!hostdata->time_expires || time_before_eq(hostdata->time_expires, jiffies))
1050 ) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001051 dprintk(NDEBUG_MAIN, "scsi%d : main() : performing information transfer\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 NCR5380_information_transfer(instance);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001053 dprintk(NDEBUG_MAIN, "scsi%d : main() : done set false\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 done = 0;
Finn Thain1d3db592016-01-03 16:05:24 +11001055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 } while (!done);
1057
1058 spin_unlock_irq(instance->host_lock);
1059}
1060
1061#ifndef DONT_USE_INTR
1062
1063/**
1064 * NCR5380_intr - generic NCR5380 irq handler
1065 * @irq: interrupt number
1066 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 *
1068 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1069 * from the disconnected queue, and restarting NCR5380_main()
1070 * as required.
1071 *
1072 * Locks: takes the needed instance locks
1073 */
1074
Jeff Garzikbaa9aac2007-12-13 16:14:14 -08001075static irqreturn_t NCR5380_intr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -08001077 struct Scsi_Host *instance = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1079 int done;
1080 unsigned char basr;
1081 unsigned long flags;
1082
Finn Thain52a6a1c2014-03-18 11:42:18 +11001083 dprintk(NDEBUG_INTR, "scsi : NCR5380 irq %d triggered\n",
1084 instance->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 do {
1087 done = 1;
1088 spin_lock_irqsave(instance->host_lock, flags);
1089 /* Look for pending interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 basr = NCR5380_read(BUS_AND_STATUS_REG);
1091 /* XXX dispatch to appropriate routine if found and done=0 */
1092 if (basr & BASR_IRQ) {
1093 NCR5380_dprint(NDEBUG_INTR, instance);
1094 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1095 done = 0;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001096 dprintk(NDEBUG_INTR, "scsi%d : SEL interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 NCR5380_reselect(instance);
1098 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1099 } else if (basr & BASR_PARITY_ERROR) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001100 dprintk(NDEBUG_INTR, "scsi%d : PARITY interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1102 } else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001103 dprintk(NDEBUG_INTR, "scsi%d : RESET interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1105 } else {
1106#if defined(REAL_DMA)
1107 /*
1108 * We should only get PHASE MISMATCH and EOP interrupts
1109 * if we have DMA enabled, so do a sanity check based on
1110 * the current setting of the MODE register.
1111 */
1112
1113 if ((NCR5380_read(MODE_REG) & MR_DMA) && ((basr & BASR_END_DMA_TRANSFER) || !(basr & BASR_PHASE_MATCH))) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001114 int transferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 if (!hostdata->connected)
1117 panic("scsi%d : received end of DMA interrupt with no connected cmd\n", instance->hostno);
1118
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001119 transferred = (hostdata->dmalen - NCR5380_dma_residual(instance));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 hostdata->connected->SCp.this_residual -= transferred;
1121 hostdata->connected->SCp.ptr += transferred;
1122 hostdata->dmalen = 0;
1123
1124 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1125
1126 /* FIXME: we need to poll briefly then defer a workqueue task ! */
1127 NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, BASR_ACK, 0, 2*HZ);
1128
1129 NCR5380_write(MODE_REG, MR_BASE);
1130 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1131 }
1132#else
Finn Thain52a6a1c2014-03-18 11:42:18 +11001133 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1135#endif
1136 }
1137 } /* if BASR_IRQ */
1138 spin_unlock_irqrestore(instance->host_lock, flags);
1139 if(!done)
Finn Thain0ad0eff2016-01-03 16:05:21 +11001140 queue_delayed_work(hostdata->work_q,
1141 &hostdata->coroutine, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 } while (!done);
1143 return IRQ_HANDLED;
1144}
1145
1146#endif
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/*
Finn Thain710ddd02014-11-12 16:12:02 +11001149 * Function : int NCR5380_select(struct Scsi_Host *instance,
1150 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 *
1152 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
1153 * including ARBITRATION, SELECTION, and initial message out for
1154 * IDENTIFY and queue messages.
1155 *
1156 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001157 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 *
Finn Thain63238762016-01-03 16:05:15 +11001159 * Returns : -1 if selection failed but should be retried.
1160 * 0 if selection failed and should not be retried.
1161 * 0 if selection succeeded completely (hostdata->connected == cmd).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 *
1163 * Side effects :
1164 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1165 * with registers as they should have been on entry - ie
1166 * SELECT_ENABLE will be set appropriately, the NCR5380
1167 * will cease to drive any SCSI bus signals.
1168 *
1169 * If successful : I_T_L or I_T_L_Q nexus will be established,
1170 * instance->connected will be set to cmd.
1171 * SELECT interrupt will be disabled.
1172 *
1173 * If failed (no target) : cmd->scsi_done() will be called, and the
1174 * cmd->result host byte set to DID_BAD_TARGET.
1175 *
1176 * Locks: caller holds hostdata lock in IRQ mode
1177 */
1178
Finn Thain710ddd02014-11-12 16:12:02 +11001179static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1182 unsigned char tmp[3], phase;
1183 unsigned char *data;
1184 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001188 dprintk(NDEBUG_ARBITRATION, "scsi%d : starting arbitration, id = %d\n", instance->host_no, instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /*
1191 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1192 * data bus during SELECTION.
1193 */
1194
1195 NCR5380_write(TARGET_COMMAND_REG, 0);
1196
1197 /*
1198 * Start arbitration.
1199 */
1200
1201 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1202 NCR5380_write(MODE_REG, MR_ARBITRATE);
1203
1204
1205 /* We can be relaxed here, interrupts are on, we are
1206 in workqueue context, the birds are singing in the trees */
1207 spin_unlock_irq(instance->host_lock);
1208 err = NCR5380_poll_politely(instance, INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS, ICR_ARBITRATION_PROGRESS, 5*HZ);
1209 spin_lock_irq(instance->host_lock);
1210 if (err < 0) {
1211 printk(KERN_DEBUG "scsi: arbitration timeout at %d\n", __LINE__);
1212 NCR5380_write(MODE_REG, MR_BASE);
1213 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain63238762016-01-03 16:05:15 +11001214 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
Finn Thain52a6a1c2014-03-18 11:42:18 +11001217 dprintk(NDEBUG_ARBITRATION, "scsi%d : arbitration complete\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 /*
1220 * The arbitration delay is 2.2us, but this is a minimum and there is
1221 * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
1222 * the integral nature of udelay().
1223 *
1224 */
1225
1226 udelay(3);
1227
1228 /* Check for lost arbitration */
1229 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)) {
1230 NCR5380_write(MODE_REG, MR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001231 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting MR_ARBITRATE\n", instance->host_no);
Finn Thain63238762016-01-03 16:05:15 +11001232 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Finn Thaincf13b082016-01-03 16:05:18 +11001234
1235 /* After/during arbitration, BSY should be asserted.
1236 * IBM DPES-31080 Version S31Q works now
1237 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1238 */
1239 NCR5380_write(INITIATOR_COMMAND_REG,
1240 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 if (!(hostdata->flags & FLAG_DTC3181E) &&
1243 /* RvC: DTC3181E has some trouble with this
1244 * so we simply removed it. Seems to work with
1245 * only Mustek scanner attached
1246 */
1247 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
1248 NCR5380_write(MODE_REG, MR_BASE);
1249 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001250 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting ICR_ASSERT_SEL\n", instance->host_no);
Finn Thain63238762016-01-03 16:05:15 +11001251 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 /*
1254 * Again, bus clear + bus settle time is 1.2us, however, this is
1255 * a minimum so we'll udelay ceil(1.2)
1256 */
1257
Finn Thain9c3f0e22016-01-03 16:05:11 +11001258 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1259 udelay(15);
1260 else
1261 udelay(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Finn Thain52a6a1c2014-03-18 11:42:18 +11001263 dprintk(NDEBUG_ARBITRATION, "scsi%d : won arbitration\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /*
1266 * Now that we have won arbitration, start Selection process, asserting
1267 * the host and target ID's on the SCSI bus.
1268 */
1269
Jeff Garzik422c0d62005-10-24 18:05:09 -04001270 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << scmd_id(cmd))));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 /*
1273 * Raise ATN while SEL is true before BSY goes false from arbitration,
1274 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1275 * phase immediately after selection.
1276 */
1277
1278 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1279 NCR5380_write(MODE_REG, MR_BASE);
1280
1281 /*
1282 * Reselect interrupts must be turned off prior to the dropping of BSY,
1283 * otherwise we will trigger an interrupt.
1284 */
1285 NCR5380_write(SELECT_ENABLE_REG, 0);
1286
1287 /*
1288 * The initiator shall then wait at least two deskew delays and release
1289 * the BSY signal.
1290 */
1291 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
1292
1293 /* Reset BSY */
1294 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1295
1296 /*
1297 * Something weird happens when we cease to drive BSY - looks
1298 * like the board/chip is letting us do another read before the
1299 * appropriate propagation delay has expired, and we're confusing
1300 * a BSY signal from ourselves as the target's response to SELECTION.
1301 *
1302 * A small delay (the 'C++' frontend breaks the pipeline with an
1303 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1304 * tighter 'C' code breaks and requires this) solves the problem -
1305 * the 1 us delay is arbitrary, and only used because this delay will
1306 * be the same on other platforms and since it works here, it should
1307 * work there.
1308 *
1309 * wingel suggests that this could be due to failing to wait
1310 * one deskew delay.
1311 */
1312
1313 udelay(1);
1314
Finn Thain52a6a1c2014-03-18 11:42:18 +11001315 dprintk(NDEBUG_SELECTION, "scsi%d : selecting target %d\n", instance->host_no, scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * The SCSI specification calls for a 250 ms timeout for the actual
1319 * selection.
1320 */
1321
Finn Thainae753a32016-01-03 16:05:23 +11001322 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1323 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1326 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1327 NCR5380_reselect(instance);
1328 printk("scsi%d : reselection after won arbitration?\n", instance->host_no);
1329 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1330 return -1;
1331 }
Finn Thainae753a32016-01-03 16:05:23 +11001332
1333 if (err < 0) {
1334 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1335 cmd->result = DID_BAD_TARGET << 16;
1336 cmd->scsi_done(cmd);
1337 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1338 dprintk(NDEBUG_SELECTION, "scsi%d : target did not respond within 250ms\n",
1339 instance->host_no);
1340 return 0;
1341 }
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 /*
1344 * No less than two deskew delays after the initiator detects the
1345 * BSY signal is true, it shall release the SEL signal and may
1346 * change the DATA BUS. -wingel
1347 */
1348
1349 udelay(1);
1350
1351 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /*
1354 * Since we followed the SCSI spec, and raised ATN while SEL
1355 * was true but before BSY was false during selection, the information
1356 * transfer phase should be a MESSAGE OUT phase so that we can send the
1357 * IDENTIFY message.
1358 *
1359 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1360 * message (2 bytes) with a tag ID that we increment with every command
1361 * until it wraps back to 0.
1362 *
1363 * XXX - it turns out that there are some broken SCSI-II devices,
1364 * which claim to support tagged queuing but fail when more than
1365 * some number of commands are issued at once.
1366 */
1367
1368 /* Wait for start of REQ/ACK handshake */
1369
1370 spin_unlock_irq(instance->host_lock);
1371 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
1372 spin_lock_irq(instance->host_lock);
1373
1374 if(err) {
1375 printk(KERN_ERR "scsi%d: timeout at NCR5380.c:%d\n", instance->host_no, __LINE__);
1376 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain63238762016-01-03 16:05:15 +11001377 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379
Finn Thain52a6a1c2014-03-18 11:42:18 +11001380 dprintk(NDEBUG_SELECTION, "scsi%d : target %d selected, going into MESSAGE OUT phase.\n", instance->host_no, cmd->device->id);
Finn Thain22f5f102014-11-12 16:11:56 +11001381 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 len = 1;
1384 cmd->tag = 0;
1385
1386 /* Send message(s) */
1387 data = tmp;
1388 phase = PHASE_MSGOUT;
1389 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001390 dprintk(NDEBUG_SELECTION, "scsi%d : nexus established.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /* XXX need to handle errors here */
1392 hostdata->connected = cmd;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001393 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Boaz Harrosh28424d32007-09-10 22:37:45 +03001395 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400/*
1401 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
1402 * unsigned char *phase, int *count, unsigned char **data)
1403 *
1404 * Purpose : transfers data in given phase using polled I/O
1405 *
1406 * Inputs : instance - instance of driver, *phase - pointer to
1407 * what phase is expected, *count - pointer to number of
1408 * bytes to transfer, **data - pointer to data pointer.
1409 *
1410 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001411 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 * is in same phase.
1413 *
1414 * Also, *phase, *count, *data are modified in place.
1415 *
1416 * XXX Note : handling for bus free may be useful.
1417 */
1418
1419/*
1420 * Note : this code is not as quick as it could be, however it
1421 * IS 100% reliable, and for the actual data transfer where speed
1422 * counts, we will always do a pseudo DMA or DMA transfer.
1423 */
1424
1425static int NCR5380_transfer_pio(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 unsigned char p = *phase, tmp;
1427 int c = *count;
1428 unsigned char *d = *data;
1429 /*
1430 * RvC: some administrative data to process polling time
1431 */
1432 int break_allowed = 0;
1433 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 if (!(p & SR_IO))
Finn Thain52a6a1c2014-03-18 11:42:18 +11001436 dprintk(NDEBUG_PIO, "scsi%d : pio write %d bytes\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 else
Finn Thain52a6a1c2014-03-18 11:42:18 +11001438 dprintk(NDEBUG_PIO, "scsi%d : pio read %d bytes\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 /*
1441 * The NCR5380 chip will only drive the SCSI bus when the
1442 * phase specified in the appropriate bits of the TARGET COMMAND
1443 * REGISTER match the STATUS REGISTER
1444 */
1445
1446 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1447
1448 /* RvC: don't know if this is necessary, but other SCSI I/O is short
1449 * so breaks are not necessary there
1450 */
1451 if ((p == PHASE_DATAIN) || (p == PHASE_DATAOUT)) {
1452 break_allowed = 1;
1453 }
1454 do {
1455 /*
1456 * Wait for assertion of REQ, after which the phase bits will be
1457 * valid
1458 */
1459
1460 /* RvC: we simply poll once, after that we stop temporarily
1461 * and let the device buffer fill up
1462 * if breaking is not allowed, we keep polling as long as needed
1463 */
1464
1465 /* FIXME */
1466 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ) && !break_allowed);
1467 if (!(tmp & SR_REQ)) {
1468 /* timeout condition */
1469 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
1470 break;
1471 }
1472
Finn Thain52a6a1c2014-03-18 11:42:18 +11001473 dprintk(NDEBUG_HANDSHAKE, "scsi%d : REQ detected\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* Check for phase mismatch */
1476 if ((tmp & PHASE_MASK) != p) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001477 dprintk(NDEBUG_HANDSHAKE, "scsi%d : phase mismatch\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 NCR5380_dprint_phase(NDEBUG_HANDSHAKE, instance);
1479 break;
1480 }
1481 /* Do actual transfer from SCSI bus to / from memory */
1482 if (!(p & SR_IO))
1483 NCR5380_write(OUTPUT_DATA_REG, *d);
1484 else
1485 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1486
1487 ++d;
1488
1489 /*
1490 * The SCSI standard suggests that in MSGOUT phase, the initiator
1491 * should drop ATN on the last byte of the message phase
1492 * after REQ has been asserted for the handshake but before
1493 * the initiator raises ACK.
1494 */
1495
1496 if (!(p & SR_IO)) {
1497 if (!((p & SR_MSG) && c > 1)) {
1498 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1499 NCR5380_dprint(NDEBUG_PIO, instance);
1500 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1501 } else {
1502 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN);
1503 NCR5380_dprint(NDEBUG_PIO, instance);
1504 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1505 }
1506 } else {
1507 NCR5380_dprint(NDEBUG_PIO, instance);
1508 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1509 }
1510
1511 /* FIXME - if this fails bus reset ?? */
1512 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 5*HZ);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001513 dprintk(NDEBUG_HANDSHAKE, "scsi%d : req false, handshake complete\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515/*
1516 * We have several special cases to consider during REQ/ACK handshaking :
1517 * 1. We were in MSGOUT phase, and we are on the last byte of the
1518 * message. ATN must be dropped as ACK is dropped.
1519 *
1520 * 2. We are in a MSGIN phase, and we are on the last byte of the
1521 * message. We must exit with ACK asserted, so that the calling
1522 * code may raise ATN before dropping ACK to reject the message.
1523 *
1524 * 3. ACK and ATN are clear and the target may proceed as normal.
1525 */
1526 if (!(p == PHASE_MSGIN && c == 1)) {
1527 if (p == PHASE_MSGOUT && c > 1)
1528 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1529 else
1530 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1531 }
1532 } while (--c);
1533
Finn Thain52a6a1c2014-03-18 11:42:18 +11001534 dprintk(NDEBUG_PIO, "scsi%d : residual %d\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 *count = c;
1537 *data = d;
1538 tmp = NCR5380_read(STATUS_REG);
1539 if (tmp & SR_REQ)
1540 *phase = tmp & PHASE_MASK;
1541 else
1542 *phase = PHASE_UNKNOWN;
1543
1544 if (!c || (*phase == p))
1545 return 0;
1546 else
1547 return -1;
1548}
1549
1550/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001551 * do_reset - issue a reset command
1552 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001554 * Issue a reset sequence to the NCR5380 and try and get the bus
1555 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001557 * This clears the reset interrupt flag because there may be no handler for
1558 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1559 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 */
1561
Finn Thain54d8fe42016-01-03 16:05:06 +11001562static void do_reset(struct Scsi_Host *instance)
1563{
Finn Thain636b1ec2016-01-03 16:05:10 +11001564 unsigned long flags;
1565
1566 local_irq_save(flags);
1567 NCR5380_write(TARGET_COMMAND_REG,
1568 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001570 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001572 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1573 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
1576/*
1577 * Function : do_abort (Scsi_Host *host)
1578 *
1579 * Purpose : abort the currently established nexus. Should only be
1580 * called from a routine which can drop into a
1581 *
1582 * Returns : 0 on success, -1 on failure.
1583 *
1584 * Locks: queue lock held by caller
1585 * FIXME: sort this out and get new_eh running
1586 */
1587
Finn Thain54d8fe42016-01-03 16:05:06 +11001588static int do_abort(struct Scsi_Host *instance)
1589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 unsigned char *msgptr, phase, tmp;
1591 int len;
1592 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 /* Request message out phase */
1595 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1596
1597 /*
1598 * Wait for the target to indicate a valid phase by asserting
1599 * REQ. Once this happens, we'll have either a MSGOUT phase
1600 * and can immediately send the ABORT message, or we'll have some
1601 * other phase and will have to source/sink data.
1602 *
1603 * We really don't care what value was on the bus or what value
1604 * the target sees, so we just handshake.
1605 */
1606
Finn Thain54d8fe42016-01-03 16:05:06 +11001607 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 60 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 if(rc < 0)
1610 return -1;
1611
1612 tmp = (unsigned char)rc;
1613
1614 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1615
1616 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1617 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thain54d8fe42016-01-03 16:05:06 +11001618 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1620 if(rc == -1)
1621 return -1;
1622 }
1623 tmp = ABORT;
1624 msgptr = &tmp;
1625 len = 1;
1626 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001627 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 /*
1630 * If we got here, and the command completed successfully,
1631 * we're about to go into bus free state.
1632 */
1633
1634 return len ? -1 : 0;
1635}
1636
1637#if defined(REAL_DMA) || defined(PSEUDO_DMA) || defined (REAL_DMA_POLL)
1638/*
1639 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
1640 * unsigned char *phase, int *count, unsigned char **data)
1641 *
1642 * Purpose : transfers data in given phase using either real
1643 * or pseudo DMA.
1644 *
1645 * Inputs : instance - instance of driver, *phase - pointer to
1646 * what phase is expected, *count - pointer to number of
1647 * bytes to transfer, **data - pointer to data pointer.
1648 *
1649 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001650 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 * is in same phase.
1652 *
1653 * Also, *phase, *count, *data are modified in place.
1654 *
1655 * Locks: io_request lock held by caller
1656 */
1657
1658
1659static int NCR5380_transfer_dma(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 register int c = *count;
1661 register unsigned char p = *phase;
1662 register unsigned char *d = *data;
1663 unsigned char tmp;
1664 int foo;
1665#if defined(REAL_DMA_POLL)
1666 int cnt, toPIO;
1667 unsigned char saved_data = 0, overrun = 0, residue;
1668#endif
1669
1670 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1673 *phase = tmp;
1674 return -1;
1675 }
1676#if defined(REAL_DMA) || defined(REAL_DMA_POLL)
1677#ifdef READ_OVERRUNS
1678 if (p & SR_IO) {
1679 c -= 2;
1680 }
1681#endif
Finn Thain52a6a1c2014-03-18 11:42:18 +11001682 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 hostdata->dma_len = (p & SR_IO) ? NCR5380_dma_read_setup(instance, d, c) : NCR5380_dma_write_setup(instance, d, c);
1684#endif
1685
1686 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1687
1688#ifdef REAL_DMA
1689 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
1690#elif defined(REAL_DMA_POLL)
1691 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1692#else
1693 /*
1694 * Note : on my sample board, watch-dog timeouts occurred when interrupts
1695 * were not disabled for the duration of a single DMA transfer, from
1696 * before the setting of DMA mode to after transfer of the last byte.
1697 */
1698
1699#if defined(PSEUDO_DMA) && defined(UNSAFE)
1700 spin_unlock_irq(instance->host_lock);
1701#endif
1702 /* KLL May need eop and parity in 53c400 */
1703 if (hostdata->flags & FLAG_NCR53C400)
Roel Kluin085267a2010-08-10 18:01:11 -07001704 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE |
1705 MR_ENABLE_PAR_CHECK | MR_ENABLE_PAR_INTR |
1706 MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 else
1708 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1709#endif /* def REAL_DMA */
1710
Finn Thain52a6a1c2014-03-18 11:42:18 +11001711 dprintk(NDEBUG_DMA, "scsi%d : mode reg = 0x%X\n", instance->host_no, NCR5380_read(MODE_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 /*
1714 * On the PAS16 at least I/O recovery delays are not needed here.
1715 * Everyone else seems to want them.
1716 */
1717
1718 if (p & SR_IO) {
1719 io_recovery_delay(1);
1720 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1721 } else {
1722 io_recovery_delay(1);
1723 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1724 io_recovery_delay(1);
1725 NCR5380_write(START_DMA_SEND_REG, 0);
1726 io_recovery_delay(1);
1727 }
1728
1729#if defined(REAL_DMA_POLL)
1730 do {
1731 tmp = NCR5380_read(BUS_AND_STATUS_REG);
1732 } while ((tmp & BASR_PHASE_MATCH) && !(tmp & (BASR_BUSY_ERROR | BASR_END_DMA_TRANSFER)));
1733
1734/*
1735 At this point, either we've completed DMA, or we have a phase mismatch,
1736 or we've unexpectedly lost BUSY (which is a real error).
1737
1738 For write DMAs, we want to wait until the last byte has been
1739 transferred out over the bus before we turn off DMA mode. Alas, there
1740 seems to be no terribly good way of doing this on a 5380 under all
1741 conditions. For non-scatter-gather operations, we can wait until REQ
1742 and ACK both go false, or until a phase mismatch occurs. Gather-writes
1743 are nastier, since the device will be expecting more data than we
1744 are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1745 could test LAST BIT SENT to assure transfer (I imagine this is precisely
1746 why this signal was added to the newer chips) but on the older 538[01]
1747 this signal does not exist. The workaround for this lack is a watchdog;
1748 we bail out of the wait-loop after a modest amount of wait-time if
1749 the usual exit conditions are not met. Not a terribly clean or
1750 correct solution :-%
1751
1752 Reads are equally tricky due to a nasty characteristic of the NCR5380.
1753 If the chip is in DMA mode for an READ, it will respond to a target's
1754 REQ by latching the SCSI data into the INPUT DATA register and asserting
1755 ACK, even if it has _already_ been notified by the DMA controller that
1756 the current DMA transfer has completed! If the NCR5380 is then taken
1757 out of DMA mode, this already-acknowledged byte is lost.
1758
1759 This is not a problem for "one DMA transfer per command" reads, because
1760 the situation will never arise... either all of the data is DMA'ed
1761 properly, or the target switches to MESSAGE IN phase to signal a
1762 disconnection (either operation bringing the DMA to a clean halt).
1763 However, in order to handle scatter-reads, we must work around the
1764 problem. The chosen fix is to DMA N-2 bytes, then check for the
1765 condition before taking the NCR5380 out of DMA mode. One or two extra
1766 bytes are transferred via PIO as necessary to fill out the original
1767 request.
1768 */
1769
1770 if (p & SR_IO) {
1771#ifdef READ_OVERRUNS
1772 udelay(10);
1773 if (((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) == (BASR_PHASE_MATCH | BASR_ACK))) {
1774 saved_data = NCR5380_read(INPUT_DATA_REGISTER);
1775 overrun = 1;
1776 }
1777#endif
1778 } else {
1779 int limit = 100;
1780 while (((tmp = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_ACK) || (NCR5380_read(STATUS_REG) & SR_REQ)) {
1781 if (!(tmp & BASR_PHASE_MATCH))
1782 break;
1783 if (--limit < 0)
1784 break;
1785 }
1786 }
1787
Finn Thain52a6a1c2014-03-18 11:42:18 +11001788 dprintk(NDEBUG_DMA, "scsi%d : polled DMA transfer complete, basr 0x%X, sr 0x%X\n", instance->host_no, tmp, NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 NCR5380_write(MODE_REG, MR_BASE);
1791 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1792
1793 residue = NCR5380_dma_residual(instance);
1794 c -= residue;
1795 *count -= c;
1796 *data += c;
1797 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1798
1799#ifdef READ_OVERRUNS
1800 if (*phase == p && (p & SR_IO) && residue == 0) {
1801 if (overrun) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001802 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 **data = saved_data;
1804 *data += 1;
1805 *count -= 1;
1806 cnt = toPIO = 1;
1807 } else {
1808 printk("No overrun??\n");
1809 cnt = toPIO = 2;
1810 }
Finn Thain52a6a1c2014-03-18 11:42:18 +11001811 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%X\n", cnt, *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 NCR5380_transfer_pio(instance, phase, &cnt, data);
1813 *count -= toPIO - cnt;
1814 }
1815#endif
1816
Finn Thain52a6a1c2014-03-18 11:42:18 +11001817 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return 0;
1819
1820#elif defined(REAL_DMA)
1821 return 0;
1822#else /* defined(REAL_DMA_POLL) */
1823 if (p & SR_IO) {
1824#ifdef DMA_WORKS_RIGHT
1825 foo = NCR5380_pread(instance, d, c);
1826#else
1827 int diff = 1;
1828 if (hostdata->flags & FLAG_NCR53C400) {
1829 diff = 0;
1830 }
1831 if (!(foo = NCR5380_pread(instance, d, c - diff))) {
1832 /*
1833 * We can't disable DMA mode after successfully transferring
1834 * what we plan to be the last byte, since that would open up
1835 * a race condition where if the target asserted REQ before
1836 * we got the DMA mode reset, the NCR5380 would have latched
1837 * an additional byte into the INPUT DATA register and we'd
1838 * have dropped it.
1839 *
1840 * The workaround was to transfer one fewer bytes than we
1841 * intended to with the pseudo-DMA read function, wait for
1842 * the chip to latch the last byte, read it, and then disable
1843 * pseudo-DMA mode.
1844 *
1845 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1846 * REQ is deasserted when ACK is asserted, and not reasserted
1847 * until ACK goes false. Since the NCR5380 won't lower ACK
1848 * until DACK is asserted, which won't happen unless we twiddle
1849 * the DMA port or we take the NCR5380 out of DMA mode, we
1850 * can guarantee that we won't handshake another extra
1851 * byte.
1852 */
1853
1854 if (!(hostdata->flags & FLAG_NCR53C400)) {
1855 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ));
1856 /* Wait for clean handshake */
1857 while (NCR5380_read(STATUS_REG) & SR_REQ);
1858 d[c - 1] = NCR5380_read(INPUT_DATA_REG);
1859 }
1860 }
1861#endif
1862 } else {
1863#ifdef DMA_WORKS_RIGHT
1864 foo = NCR5380_pwrite(instance, d, c);
1865#else
1866 int timeout;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001867 dprintk(NDEBUG_C400_PWRITE, "About to pwrite %d bytes\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (!(foo = NCR5380_pwrite(instance, d, c))) {
1869 /*
1870 * Wait for the last byte to be sent. If REQ is being asserted for
1871 * the byte we're interested, we'll ACK it and it will go false.
1872 */
1873 if (!(hostdata->flags & FLAG_HAS_LAST_BYTE_SENT)) {
1874 timeout = 20000;
1875 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ) && (NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH));
1876
1877 if (!timeout)
Finn Thain52a6a1c2014-03-18 11:42:18 +11001878 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : timed out on last byte\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 if (hostdata->flags & FLAG_CHECK_LAST_BYTE_SENT) {
1881 hostdata->flags &= ~FLAG_CHECK_LAST_BYTE_SENT;
1882 if (NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT) {
1883 hostdata->flags |= FLAG_HAS_LAST_BYTE_SENT;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001884 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : last byte sent works\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886 }
1887 } else {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001888 dprintk(NDEBUG_C400_PWRITE, "Waiting for LASTBYTE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT));
Finn Thain52a6a1c2014-03-18 11:42:18 +11001890 dprintk(NDEBUG_C400_PWRITE, "Got LASTBYTE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892 }
1893#endif
1894 }
1895 NCR5380_write(MODE_REG, MR_BASE);
1896 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1897
1898 if ((!(p & SR_IO)) && (hostdata->flags & FLAG_NCR53C400)) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001899 dprintk(NDEBUG_C400_PWRITE, "53C400w: Checking for IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (NCR5380_read(BUS_AND_STATUS_REG) & BASR_IRQ) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001901 dprintk(NDEBUG_C400_PWRITE, "53C400w: got it, reading reset interrupt reg\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1903 } else {
1904 printk("53C400w: IRQ NOT THERE!\n");
1905 }
1906 }
1907 *data = d + c;
1908 *count = 0;
1909 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1910#if defined(PSEUDO_DMA) && defined(UNSAFE)
1911 spin_lock_irq(instance->host_lock);
1912#endif /* defined(REAL_DMA_POLL) */
1913 return foo;
1914#endif /* def REAL_DMA */
1915}
1916#endif /* defined(REAL_DMA) | defined(PSEUDO_DMA) */
1917
1918/*
1919 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1920 *
1921 * Purpose : run through the various SCSI phases and do as the target
1922 * directs us to. Operates on the currently connected command,
1923 * instance->connected.
1924 *
1925 * Inputs : instance, instance for which we are doing commands
1926 *
1927 * Side effects : SCSI things happen, the disconnected queue will be
1928 * modified if a command disconnects, *instance->connected will
1929 * change.
1930 *
1931 * XXX Note : we need to watch for bus free or a reset condition here
1932 * to recover from an unexpected bus free condition.
1933 *
1934 * Locks: io_request_lock held by caller in IRQ mode
1935 */
1936
1937static void NCR5380_information_transfer(struct Scsi_Host *instance) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)instance->hostdata;
1939 unsigned char msgout = NOP;
1940 int sink = 0;
1941 int len;
1942#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
1943 int transfersize;
1944#endif
1945 unsigned char *data;
1946 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain710ddd02014-11-12 16:12:02 +11001947 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 /* RvC: we need to set the end of the polling time */
1949 unsigned long poll_time = jiffies + USLEEP_POLL;
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 while (1) {
1952 tmp = NCR5380_read(STATUS_REG);
1953 /* We only have a valid SCSI phase when REQ is asserted */
1954 if (tmp & SR_REQ) {
1955 phase = (tmp & PHASE_MASK);
1956 if (phase != old_phase) {
1957 old_phase = phase;
1958 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1959 }
1960 if (sink && (phase != PHASE_MSGOUT)) {
1961 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1962
1963 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1964 while (NCR5380_read(STATUS_REG) & SR_REQ);
1965 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1966 sink = 0;
1967 continue;
1968 }
1969 switch (phase) {
1970 case PHASE_DATAIN:
1971 case PHASE_DATAOUT:
1972#if (NDEBUG & NDEBUG_NO_DATAOUT)
1973 printk("scsi%d : NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n", instance->host_no);
1974 sink = 1;
1975 do_abort(instance);
1976 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04001977 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return;
1979#endif
1980 /*
1981 * If there is no room left in the current buffer in the
1982 * scatter-gather list, move onto the next one.
1983 */
1984
1985 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1986 ++cmd->SCp.buffer;
1987 --cmd->SCp.buffers_residual;
1988 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001989 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001990 dprintk(NDEBUG_INFORMATION, "scsi%d : %d bytes and %d buffers left\n", instance->host_no, cmd->SCp.this_residual, cmd->SCp.buffers_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992 /*
1993 * The preferred transfer method is going to be
1994 * PSEUDO-DMA for systems that are strictly PIO,
1995 * since we can let the hardware do the handshaking.
1996 *
1997 * For this to work, we need to know the transfersize
1998 * ahead of time, since the pseudo-DMA code will sit
1999 * in an unconditional loop.
2000 */
2001
2002#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
2003 /* KLL
2004 * PSEUDO_DMA is defined here. If this is the g_NCR5380
2005 * driver then it will always be defined, so the
2006 * FLAG_NO_PSEUDO_DMA is used to inhibit PDMA in the base
2007 * NCR5380 case. I think this is a fairly clean solution.
2008 * We supplement these 2 if's with the flag.
2009 */
2010#ifdef NCR5380_dma_xfer_len
2011 if (!cmd->device->borken && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && (transfersize = NCR5380_dma_xfer_len(instance, cmd)) != 0) {
2012#else
2013 transfersize = cmd->transfersize;
2014
2015#ifdef LIMIT_TRANSFERSIZE /* If we have problems with interrupt service */
2016 if (transfersize > 512)
2017 transfersize = 512;
2018#endif /* LIMIT_TRANSFERSIZE */
2019
2020 if (!cmd->device->borken && transfersize && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && cmd->SCp.this_residual && !(cmd->SCp.this_residual % transfersize)) {
2021 /* Limit transfers to 32K, for xx400 & xx406
2022 * pseudoDMA that transfers in 128 bytes blocks. */
2023 if (transfersize > 32 * 1024)
2024 transfersize = 32 * 1024;
2025#endif
2026 len = transfersize;
2027 if (NCR5380_transfer_dma(instance, &phase, &len, (unsigned char **) &cmd->SCp.ptr)) {
2028 /*
2029 * If the watchdog timer fires, all future accesses to this
2030 * device will use the polled-IO.
2031 */
Jeff Garzik017560f2005-10-24 18:04:36 -04002032 scmd_printk(KERN_INFO, cmd,
2033 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 cmd->device->borken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 sink = 1;
2036 do_abort(instance);
2037 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002038 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 /* XXX - need to source or sink data here, as appropriate */
2040 } else
2041 cmd->SCp.this_residual -= transfersize - len;
2042 } else
2043#endif /* defined(PSEUDO_DMA) || defined(REAL_DMA_POLL) */
2044 NCR5380_transfer_pio(instance, &phase, (int *) &cmd->SCp.this_residual, (unsigned char **)
2045 &cmd->SCp.ptr);
2046 break;
2047 case PHASE_MSGIN:
2048 len = 1;
2049 data = &tmp;
2050 NCR5380_transfer_pio(instance, &phase, &len, &data);
2051 cmd->SCp.Message = tmp;
2052
2053 switch (tmp) {
2054 /*
2055 * Linking lets us reduce the time required to get the
2056 * next command out to the device, hopefully this will
2057 * mean we don't waste another revolution due to the delays
2058 * required by ARBITRATION and another SELECTION.
2059 *
2060 * In the current implementation proposal, low level drivers
2061 * merely have to start the next command, pointed to by
2062 * next_link, done() is called as with unlinked commands.
2063 */
2064#ifdef LINKED
2065 case LINKED_CMD_COMPLETE:
2066 case LINKED_FLG_CMD_COMPLETE:
2067 /* Accept message by clearing ACK */
2068 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002069 dprintk(NDEBUG_LINKED, "scsi%d : target %d lun %llu linked command complete.\n", instance->host_no, cmd->device->id, cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Sanity check : A linked command should only terminate with
2072 * one of these messages if there are more linked commands
2073 * available.
2074 */
2075 if (!cmd->next_link) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002076 printk("scsi%d : target %d lun %llu linked command complete, no next_link\n" instance->host_no, cmd->device->id, cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 sink = 1;
2078 do_abort(instance);
2079 return;
2080 }
2081 initialize_SCp(cmd->next_link);
2082 /* The next command is still part of this process */
2083 cmd->next_link->tag = cmd->tag;
2084 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002085 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 cmd->scsi_done(cmd);
2087 cmd = hostdata->connected;
2088 break;
2089#endif /* def LINKED */
2090 case ABORT:
2091 case COMMAND_COMPLETE:
2092 /* Accept message by clearing ACK */
2093 sink = 1;
2094 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2095 hostdata->connected = NULL;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002096 dprintk(NDEBUG_QUEUES, "scsi%d : command for target %d, lun %llu completed\n", instance->host_no, cmd->device->id, cmd->device->lun);
2097 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 /*
2100 * I'm not sure what the correct thing to do here is :
2101 *
2102 * If the command that just executed is NOT a request
2103 * sense, the obvious thing to do is to set the result
2104 * code to the values of the stored parameters.
2105 *
2106 * If it was a REQUEST SENSE command, we need some way
2107 * to differentiate between the failure code of the original
2108 * and the failure code of the REQUEST sense - the obvious
2109 * case is success, where we fall through and leave the result
2110 * code unchanged.
2111 *
2112 * The non-obvious place is where the REQUEST SENSE failed
2113 */
2114
2115 if (cmd->cmnd[0] != REQUEST_SENSE)
2116 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2117 else if (status_byte(cmd->SCp.Status) != GOOD)
2118 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2119
Boaz Harrosh28424d32007-09-10 22:37:45 +03002120 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2121 hostdata->ses.cmd_len) {
2122 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2123 hostdata->ses.cmd_len = 0 ;
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Boaz Harrosh28424d32007-09-10 22:37:45 +03002126 if ((cmd->cmnd[0] != REQUEST_SENSE) && (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
2127 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
2128
Finn Thain52a6a1c2014-03-18 11:42:18 +11002129 dprintk(NDEBUG_AUTOSENSE, "scsi%d : performing request sense\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 LIST(cmd, hostdata->issue_queue);
2132 cmd->host_scribble = (unsigned char *)
2133 hostdata->issue_queue;
Finn Thain710ddd02014-11-12 16:12:02 +11002134 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002135 dprintk(NDEBUG_QUEUES, "scsi%d : REQUEST SENSE added to head of issue queue\n", instance->host_no);
Finn Thain997acab2014-11-12 16:11:54 +11002136 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 cmd->scsi_done(cmd);
2138 }
2139
2140 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2141 /*
2142 * Restore phase bits to 0 so an interrupted selection,
2143 * arbitration can resume.
2144 */
2145 NCR5380_write(TARGET_COMMAND_REG, 0);
2146
2147 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2148 barrier();
2149 return;
2150 case MESSAGE_REJECT:
2151 /* Accept message by clearing ACK */
2152 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2153 switch (hostdata->last_message) {
2154 case HEAD_OF_QUEUE_TAG:
2155 case ORDERED_QUEUE_TAG:
2156 case SIMPLE_QUEUE_TAG:
2157 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002158 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
2160 default:
2161 break;
2162 }
2163 case DISCONNECT:{
2164 /* Accept message by clearing ACK */
2165 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2166 cmd->device->disconnect = 1;
2167 LIST(cmd, hostdata->disconnected_queue);
2168 cmd->host_scribble = (unsigned char *)
2169 hostdata->disconnected_queue;
2170 hostdata->connected = NULL;
2171 hostdata->disconnected_queue = cmd;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002172 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /*
2174 * Restore phase bits to 0 so an interrupted selection,
2175 * arbitration can resume.
2176 */
2177 NCR5380_write(TARGET_COMMAND_REG, 0);
2178
2179 /* Enable reselect interrupts */
2180 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2181 /* Wait for bus free to avoid nasty timeouts - FIXME timeout !*/
2182 /* NCR538_poll_politely(instance, STATUS_REG, SR_BSY, 0, 30 * HZ); */
2183 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2184 barrier();
2185 return;
2186 }
2187 /*
2188 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2189 * operation, in violation of the SCSI spec so we can safely
2190 * ignore SAVE/RESTORE pointers calls.
2191 *
2192 * Unfortunately, some disks violate the SCSI spec and
2193 * don't issue the required SAVE_POINTERS message before
2194 * disconnecting, and we have to break spec to remain
2195 * compatible.
2196 */
2197 case SAVE_POINTERS:
2198 case RESTORE_POINTERS:
2199 /* Accept message by clearing ACK */
2200 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2201 break;
2202 case EXTENDED_MESSAGE:
2203/*
2204 * Extended messages are sent in the following format :
2205 * Byte
2206 * 0 EXTENDED_MESSAGE == 1
2207 * 1 length (includes one byte for code, doesn't
2208 * include first two bytes)
2209 * 2 code
2210 * 3..length+1 arguments
2211 *
2212 * Start the extended message buffer with the EXTENDED_MESSAGE
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002213 * byte, since spi_print_msg() wants the whole thing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 */
2215 extended_msg[0] = EXTENDED_MESSAGE;
2216 /* Accept first byte by clearing ACK */
2217 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002218 dprintk(NDEBUG_EXTENDED, "scsi%d : receiving extended message\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 len = 2;
2221 data = extended_msg + 1;
2222 phase = PHASE_MSGIN;
2223 NCR5380_transfer_pio(instance, &phase, &len, &data);
2224
Finn Thain52a6a1c2014-03-18 11:42:18 +11002225 dprintk(NDEBUG_EXTENDED, "scsi%d : length=%d, code=0x%02x\n", instance->host_no, (int) extended_msg[1], (int) extended_msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 if (!len && extended_msg[1] <= (sizeof(extended_msg) - 1)) {
2228 /* Accept third byte by clearing ACK */
2229 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2230 len = extended_msg[1] - 1;
2231 data = extended_msg + 3;
2232 phase = PHASE_MSGIN;
2233
2234 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002235 dprintk(NDEBUG_EXTENDED, "scsi%d : message received, residual %d\n", instance->host_no, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 switch (extended_msg[2]) {
2238 case EXTENDED_SDTR:
2239 case EXTENDED_WDTR:
2240 case EXTENDED_MODIFY_DATA_POINTER:
2241 case EXTENDED_EXTENDED_IDENTIFY:
2242 tmp = 0;
2243 }
2244 } else if (len) {
2245 printk("scsi%d: error receiving extended message\n", instance->host_no);
2246 tmp = 0;
2247 } else {
2248 printk("scsi%d: extended message code %02x length %d is too long\n", instance->host_no, extended_msg[2], extended_msg[1]);
2249 tmp = 0;
2250 }
2251 /* Fall through to reject message */
2252
2253 /*
2254 * If we get something weird that we aren't expecting,
2255 * reject it.
2256 */
2257 default:
2258 if (!tmp) {
2259 printk("scsi%d: rejecting message ", instance->host_no);
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002260 spi_print_msg(extended_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 printk("\n");
2262 } else if (tmp != EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04002263 scmd_printk(KERN_INFO, cmd,
2264 "rejecting unknown message %02x\n",tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 else
Jeff Garzik017560f2005-10-24 18:04:36 -04002266 scmd_printk(KERN_INFO, cmd,
2267 "rejecting unknown extended message code %02x, length %d\n", extended_msg[1], extended_msg[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
2269 msgout = MESSAGE_REJECT;
2270 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2271 break;
2272 } /* switch (tmp) */
2273 break;
2274 case PHASE_MSGOUT:
2275 len = 1;
2276 data = &msgout;
2277 hostdata->last_message = msgout;
2278 NCR5380_transfer_pio(instance, &phase, &len, &data);
2279 if (msgout == ABORT) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002280 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 hostdata->connected = NULL;
2282 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 cmd->scsi_done(cmd);
2284 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2285 return;
2286 }
2287 msgout = NOP;
2288 break;
2289 case PHASE_CMDOUT:
2290 len = cmd->cmd_len;
2291 data = cmd->cmnd;
2292 /*
2293 * XXX for performance reasons, on machines with a
2294 * PSEUDO-DMA architecture we should probably
2295 * use the dma transfer function.
2296 */
2297 NCR5380_transfer_pio(instance, &phase, &len, &data);
2298 if (!cmd->device->disconnect && should_disconnect(cmd->cmnd[0])) {
2299 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002300 dprintk(NDEBUG_USLEEP, "scsi%d : issued command, sleeping until %lu\n", instance->host_no, hostdata->time_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return;
2302 }
2303 break;
2304 case PHASE_STATIN:
2305 len = 1;
2306 data = &tmp;
2307 NCR5380_transfer_pio(instance, &phase, &len, &data);
2308 cmd->SCp.Status = tmp;
2309 break;
2310 default:
2311 printk("scsi%d : unknown phase\n", instance->host_no);
Finn Thain4dde8f72014-03-18 11:42:17 +11002312 NCR5380_dprint(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 } /* switch(phase) */
2314 } /* if (tmp * SR_REQ) */
2315 else {
2316 /* RvC: go to sleep if polling time expired
2317 */
2318 if (!cmd->device->disconnect && time_after_eq(jiffies, poll_time)) {
2319 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002320 dprintk(NDEBUG_USLEEP, "scsi%d : poll timed out, sleeping until %lu\n", instance->host_no, hostdata->time_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 return;
2322 }
2323 }
2324 } /* while (1) */
2325}
2326
2327/*
2328 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2329 *
2330 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002331 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 * nexus has been reestablished,
2333 *
2334 * Inputs : instance - this instance of the NCR5380.
2335 *
2336 * Locks: io_request_lock held by caller if IRQ driven
2337 */
2338
2339static void NCR5380_reselect(struct Scsi_Host *instance) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)
2341 instance->hostdata;
2342 unsigned char target_mask;
2343 unsigned char lun, phase;
2344 int len;
2345 unsigned char msg[3];
2346 unsigned char *data;
Finn Thain710ddd02014-11-12 16:12:02 +11002347 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 int abort = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 /*
2351 * Disable arbitration, etc. since the host adapter obviously
2352 * lost, and tell an interrupted NCR5380_select() to restart.
2353 */
2354
2355 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002358 dprintk(NDEBUG_SELECTION, "scsi%d : reselect\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 /*
2361 * At this point, we have detected that our SCSI ID is on the bus,
2362 * SEL is true and BSY was false for at least one bus settle delay
2363 * (400 ns).
2364 *
2365 * We must assert BSY ourselves, until the target drops the SEL
2366 * signal.
2367 */
2368
2369 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2370
2371 /* FIXME: timeout too long, must fail to workqueue */
2372 if(NCR5380_poll_politely(instance, STATUS_REG, SR_SEL, 0, 2*HZ)<0)
2373 abort = 1;
2374
2375 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2376
2377 /*
2378 * Wait for target to go into MSGIN.
2379 * FIXME: timeout needed and fail to work queeu
2380 */
2381
2382 if(NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 2*HZ))
2383 abort = 1;
2384
2385 len = 1;
2386 data = msg;
2387 phase = PHASE_MSGIN;
2388 NCR5380_transfer_pio(instance, &phase, &len, &data);
2389
2390 if (!(msg[0] & 0x80)) {
2391 printk(KERN_ERR "scsi%d : expecting IDENTIFY message, got ", instance->host_no);
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002392 spi_print_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 abort = 1;
2394 } else {
2395 /* Accept message by clearing ACK */
2396 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2397 lun = (msg[0] & 0x07);
2398
2399 /*
2400 * We need to add code for SCSI-II to track which devices have
2401 * I_T_L_Q nexuses established, and which have simple I_T_L
2402 * nexuses so we can chose to do additional data transfer.
2403 */
2404
2405 /*
2406 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2407 * just reestablished, and remove it from the disconnected queue.
2408 */
2409
2410
Finn Thain710ddd02014-11-12 16:12:02 +11002411 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue, prev = NULL; tmp; prev = tmp, tmp = (struct scsi_cmnd *) tmp->host_scribble)
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002412 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 ) {
2414 if (prev) {
2415 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
2416 prev->host_scribble = tmp->host_scribble;
2417 } else {
2418 REMOVE(-1, hostdata->disconnected_queue, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002419 hostdata->disconnected_queue = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 }
2421 tmp->host_scribble = NULL;
2422 break;
2423 }
2424 if (!tmp) {
2425 printk(KERN_ERR "scsi%d : warning : target bitmask %02x lun %d not in disconnect_queue.\n", instance->host_no, target_mask, lun);
2426 /*
2427 * Since we have an established nexus that we can't do anything with,
2428 * we must abort it.
2429 */
2430 abort = 1;
2431 }
2432 }
2433
2434 if (abort) {
2435 do_abort(instance);
2436 } else {
2437 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002438 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440}
2441
2442/*
2443 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
2444 *
2445 * Purpose : called by interrupt handler when DMA finishes or a phase
2446 * mismatch occurs (which would finish the DMA transfer).
2447 *
2448 * Inputs : instance - this instance of the NCR5380.
2449 *
Finn Thain710ddd02014-11-12 16:12:02 +11002450 * Returns : pointer to the scsi_cmnd structure for which the I_T_L
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 * nexus has been reestablished, on failure NULL is returned.
2452 */
2453
2454#ifdef REAL_DMA
2455static void NCR5380_dma_complete(NCR5380_instance * instance) {
Yoann Padioleauf8343682007-06-01 00:46:36 -07002456 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 int transferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 /*
2460 * XXX this might not be right.
2461 *
2462 * Wait for final byte to transfer, ie wait for ACK to go false.
2463 *
2464 * We should use the Last Byte Sent bit, unfortunately this is
2465 * not available on the 5380/5381 (only the various CMOS chips)
2466 *
2467 * FIXME: timeout, and need to handle long timeout/irq case
2468 */
2469
2470 NCR5380_poll_politely(instance, BUS_AND_STATUS_REG, BASR_ACK, 0, 5*HZ);
2471
2472 NCR5380_write(MODE_REG, MR_BASE);
2473 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2474
2475 /*
2476 * The only places we should see a phase mismatch and have to send
2477 * data from the same set of pointers will be the data transfer
2478 * phases. So, residual, requested length are only important here.
2479 */
2480
2481 if (!(hostdata->connected->SCp.phase & SR_CD)) {
2482 transferred = instance->dmalen - NCR5380_dma_residual();
2483 hostdata->connected->SCp.this_residual -= transferred;
2484 hostdata->connected->SCp.ptr += transferred;
2485 }
2486}
2487#endif /* def REAL_DMA */
2488
2489/*
Finn Thain710ddd02014-11-12 16:12:02 +11002490 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 *
2492 * Purpose : abort a command
2493 *
Finn Thain710ddd02014-11-12 16:12:02 +11002494 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002495 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 * used.
2497 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002498 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002500 * XXX - there is no way to abort the command that is currently
2501 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 * a problem, we could implement longjmp() / setjmp(), setjmp()
2503 * called where the loop started in NCR5380_main().
2504 *
2505 * Locks: host lock taken by caller
2506 */
2507
Finn Thain710ddd02014-11-12 16:12:02 +11002508static int NCR5380_abort(struct scsi_cmnd *cmd)
2509{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 struct Scsi_Host *instance = cmd->device->host;
2511 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +11002512 struct scsi_cmnd *tmp, **prev;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002513
2514 scmd_printk(KERN_WARNING, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 NCR5380_print_status(instance);
2517
Finn Thain52a6a1c2014-03-18 11:42:18 +11002518 dprintk(NDEBUG_ABORT, "scsi%d : abort called\n", instance->host_no);
2519 dprintk(NDEBUG_ABORT, " basr 0x%X, sr 0x%X\n", NCR5380_read(BUS_AND_STATUS_REG), NCR5380_read(STATUS_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521#if 0
2522/*
2523 * Case 1 : If the command is the currently executing command,
2524 * we'll set the aborted flag and return control so that
2525 * information transfer routine can exit cleanly.
2526 */
2527
2528 if (hostdata->connected == cmd) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002529 dprintk(NDEBUG_ABORT, "scsi%d : aborting connected command\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530/*
2531 * We should perform BSY checking, and make sure we haven't slipped
2532 * into BUS FREE.
2533 */
2534
2535 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN);
2536/*
2537 * Since we can't change phases until we've completed the current
2538 * handshake, we have to source or sink a byte of data if the current
2539 * phase is not MSGOUT.
2540 */
2541
2542/*
2543 * Return control to the executing NCR drive so we can clear the
2544 * aborted flag and get back into our main loop.
2545 */
2546
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002547 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
2549#endif
2550
2551/*
2552 * Case 2 : If the command hasn't been issued yet, we simply remove it
2553 * from the issue queue.
2554 */
2555
Finn Thain52a6a1c2014-03-18 11:42:18 +11002556 dprintk(NDEBUG_ABORT, "scsi%d : abort going into loop.\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +11002557 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 if (cmd == tmp) {
2559 REMOVE(5, *prev, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002560 (*prev) = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 tmp->host_scribble = NULL;
2562 tmp->result = DID_ABORT << 16;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002563 dprintk(NDEBUG_ABORT, "scsi%d : abort removed command from issue queue.\n", instance->host_no);
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002564 tmp->scsi_done(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return SUCCESS;
2566 }
2567#if (NDEBUG & NDEBUG_ABORT)
2568 /* KLL */
2569 else if (prev == tmp)
2570 printk(KERN_ERR "scsi%d : LOOP\n", instance->host_no);
2571#endif
2572
2573/*
2574 * Case 3 : If any commands are connected, we're going to fail the abort
2575 * and let the high level SCSI driver retry at a later time or
2576 * issue a reset.
2577 *
2578 * Timeouts, and therefore aborted commands, will be highly unlikely
2579 * and handling them cleanly in this situation would make the common
2580 * case of noresets less efficient, and would pollute our code. So,
2581 * we fail.
2582 */
2583
2584 if (hostdata->connected) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002585 dprintk(NDEBUG_ABORT, "scsi%d : abort failed, command connected.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return FAILED;
2587 }
2588/*
2589 * Case 4: If the command is currently disconnected from the bus, and
2590 * there are no connected commands, we reconnect the I_T_L or
2591 * I_T_L_Q nexus associated with it, go into message out, and send
2592 * an abort message.
2593 *
2594 * This case is especially ugly. In order to reestablish the nexus, we
2595 * need to call NCR5380_select(). The easiest way to implement this
2596 * function was to abort if the bus was busy, and let the interrupt
2597 * handler triggered on the SEL for reselect take care of lost arbitrations
2598 * where necessary, meaning interrupts need to be enabled.
2599 *
2600 * When interrupts are enabled, the queues may change - so we
2601 * can't remove it from the disconnected queue before selecting it
2602 * because that could cause a failure in hashing the nexus if that
2603 * device reselected.
2604 *
2605 * Since the queues may change, we can't use the pointers from when we
2606 * first locate it.
2607 *
2608 * So, we must first locate the command, and if NCR5380_select()
2609 * succeeds, then issue the abort, relocate the command and remove
2610 * it from the disconnected queue.
2611 */
2612
Finn Thain710ddd02014-11-12 16:12:02 +11002613 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp; tmp = (struct scsi_cmnd *) tmp->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (cmd == tmp) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002615 dprintk(NDEBUG_ABORT, "scsi%d : aborting disconnected command.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Finn Thain76f13b92014-11-12 16:11:53 +11002617 if (NCR5380_select(instance, cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 return FAILED;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002619 dprintk(NDEBUG_ABORT, "scsi%d : nexus reestablished.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 do_abort(instance);
2622
Finn Thain710ddd02014-11-12 16:12:02 +11002623 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (cmd == tmp) {
2625 REMOVE(5, *prev, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002626 *prev = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 tmp->host_scribble = NULL;
2628 tmp->result = DID_ABORT << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002629 tmp->scsi_done(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 return SUCCESS;
2631 }
2632 }
2633/*
2634 * Case 5 : If we reached this point, the command was not found in any of
2635 * the queues.
2636 *
2637 * We probably reached this point because of an unlikely race condition
2638 * between the command completing successfully and the abortion code,
2639 * so we won't panic, but we will notify the user in case something really
2640 * broke.
2641 */
2642 printk(KERN_WARNING "scsi%d : warning : SCSI command probably completed successfully\n"
2643 " before abortion\n", instance->host_no);
2644 return FAILED;
2645}
2646
2647
Finn Thain3be1b3e2016-01-03 16:05:12 +11002648/**
2649 * NCR5380_bus_reset - reset the SCSI bus
2650 * @cmd: SCSI command undergoing EH
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002652 * Returns SUCCESS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 */
2654
Finn Thain710ddd02014-11-12 16:12:02 +11002655static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002656{
2657 struct Scsi_Host *instance = cmd->device->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002659 spin_lock_irq(instance->host_lock);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002660
2661#if (NDEBUG & NDEBUG_ANY)
2662 scmd_printk(KERN_INFO, cmd, "performing bus reset\n");
2663 NCR5380_print_status(instance);
2664#endif
2665
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002666 do_reset(instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002667
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002668 spin_unlock_irq(instance->host_lock);
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 return SUCCESS;
2671}