blob: 391ee8db5de134d14931a3296557339eb72bd2cd [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/**
296 * NCR5380_poll_politely - wait for NCR5380 status bits
297 * @instance: controller to poll
298 * @reg: 5380 register to poll
299 * @bit: Bitmask to check
300 * @val: Value required to exit
301 *
302 * Polls the NCR5380 in a reasonably efficient manner waiting for
303 * an event to occur, after a short quick poll we begin giving the
304 * CPU back in non IRQ contexts
305 *
306 * Returns the value of the register or a negative error code.
307 */
308
309static int NCR5380_poll_politely(struct Scsi_Host *instance, int reg, int bit, int val, int t)
310{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int n = 500; /* At about 8uS a cycle for the cpu access */
312 unsigned long end = jiffies + t;
313 int r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 while( n-- > 0)
316 {
317 r = NCR5380_read(reg);
318 if((r & bit) == val)
319 return 0;
320 cpu_relax();
321 }
322
323 /* t time yet ? */
324 while(time_before(jiffies, end))
325 {
326 r = NCR5380_read(reg);
327 if((r & bit) == val)
328 return 0;
329 if(!in_interrupt())
Amol Lad730a6462007-05-23 14:41:37 -0700330 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 else
332 cpu_relax();
333 }
334 return -ETIMEDOUT;
335}
336
337static struct {
338 unsigned char value;
339 const char *name;
Andrew Morton702809c2007-05-23 14:41:56 -0700340} phases[] __maybe_unused = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 {PHASE_DATAOUT, "DATAOUT"},
342 {PHASE_DATAIN, "DATAIN"},
343 {PHASE_CMDOUT, "CMDOUT"},
344 {PHASE_STATIN, "STATIN"},
345 {PHASE_MSGOUT, "MSGOUT"},
346 {PHASE_MSGIN, "MSGIN"},
347 {PHASE_UNKNOWN, "UNKNOWN"}
348};
349
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100350#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static struct {
352 unsigned char mask;
353 const char *name;
354} signals[] = {
355 {SR_DBP, "PARITY"},
356 {SR_RST, "RST"},
357 {SR_BSY, "BSY"},
358 {SR_REQ, "REQ"},
359 {SR_MSG, "MSG"},
360 {SR_CD, "CD"},
361 {SR_IO, "IO"},
362 {SR_SEL, "SEL"},
363 {0, NULL}
364},
365basrs[] = {
366 {BASR_ATN, "ATN"},
367 {BASR_ACK, "ACK"},
368 {0, NULL}
369},
370icrs[] = {
371 {ICR_ASSERT_RST, "ASSERT RST"},
372 {ICR_ASSERT_ACK, "ASSERT ACK"},
373 {ICR_ASSERT_BSY, "ASSERT BSY"},
374 {ICR_ASSERT_SEL, "ASSERT SEL"},
375 {ICR_ASSERT_ATN, "ASSERT ATN"},
376 {ICR_ASSERT_DATA, "ASSERT DATA"},
377 {0, NULL}
378},
379mrs[] = {
380 {MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"},
381 {MR_TARGET, "MODE TARGET"},
382 {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"},
383 {MR_ENABLE_PAR_INTR, "MODE PARITY INTR"},
384 {MR_MONITOR_BSY, "MODE MONITOR BSY"},
385 {MR_DMA_MODE, "MODE DMA"},
386 {MR_ARBITRATE, "MODE ARBITRATION"},
387 {0, NULL}
388};
389
390/**
391 * NCR5380_print - print scsi bus signals
392 * @instance: adapter state to dump
393 *
394 * Print the SCSI bus signals for debugging purposes
395 *
396 * Locks: caller holds hostdata lock (not essential)
397 */
398
399static void NCR5380_print(struct Scsi_Host *instance)
400{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
404 status = NCR5380_read(STATUS_REG);
405 mr = NCR5380_read(MODE_REG);
406 icr = NCR5380_read(INITIATOR_COMMAND_REG);
407 basr = NCR5380_read(BUS_AND_STATUS_REG);
408
409 printk("STATUS_REG: %02x ", status);
410 for (i = 0; signals[i].mask; ++i)
411 if (status & signals[i].mask)
412 printk(",%s", signals[i].name);
413 printk("\nBASR: %02x ", basr);
414 for (i = 0; basrs[i].mask; ++i)
415 if (basr & basrs[i].mask)
416 printk(",%s", basrs[i].name);
417 printk("\nICR: %02x ", icr);
418 for (i = 0; icrs[i].mask; ++i)
419 if (icr & icrs[i].mask)
420 printk(",%s", icrs[i].name);
421 printk("\nMODE: %02x ", mr);
422 for (i = 0; mrs[i].mask; ++i)
423 if (mr & mrs[i].mask)
424 printk(",%s", mrs[i].name);
425 printk("\n");
426}
427
428
429/*
430 * NCR5380_print_phase - show SCSI phase
431 * @instance: adapter to dump
432 *
433 * Print the current SCSI phase for debugging purposes
434 *
435 * Locks: none
436 */
437
438static void NCR5380_print_phase(struct Scsi_Host *instance)
439{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 unsigned char status;
441 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 status = NCR5380_read(STATUS_REG);
444 if (!(status & SR_REQ))
445 printk("scsi%d : REQ not asserted, phase unknown.\n", instance->host_no);
446 else {
447 for (i = 0; (phases[i].value != PHASE_UNKNOWN) && (phases[i].value != (status & PHASE_MASK)); ++i);
448 printk("scsi%d : phase %s\n", instance->host_no, phases[i].name);
449 }
450}
451#endif
452
453/*
454 * These need tweaking, and would probably work best as per-device
455 * flags initialized differently for disk, tape, cd, etc devices.
456 * People with broken devices are free to experiment as to what gives
457 * the best results for them.
458 *
459 * USLEEP_SLEEP should be a minimum seek time.
460 *
461 * USLEEP_POLL should be a maximum rotational latency.
462 */
463#ifndef USLEEP_SLEEP
464/* 20 ms (reasonable hard disk speed) */
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500465#define USLEEP_SLEEP msecs_to_jiffies(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#endif
467/* 300 RPM (floppy speed) */
468#ifndef USLEEP_POLL
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500469#define USLEEP_POLL msecs_to_jiffies(200)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470#endif
471#ifndef USLEEP_WAITLONG
472/* RvC: (reasonable time to wait on select error) */
473#define USLEEP_WAITLONG USLEEP_SLEEP
474#endif
475
476/*
477 * Function : int should_disconnect (unsigned char cmd)
478 *
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;
521 schedule_delayed_work(&hostdata->coroutine, timeout);
522}
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, "
621 "flags { %s%s%s}, "
622#if defined(USLEEP_POLL) && defined(USLEEP_WAITLONG)
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500623 "USLEEP_POLL %lu, USLEEP_WAITLONG %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 " : "",
633#if defined(USLEEP_POLL) && defined(USLEEP_WAITLONG)
634 USLEEP_POLL, USLEEP_WAITLONG,
635#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#ifdef AUTOPROBE_IRQ
Finn Thain8c325132014-11-12 16:11:58 +1100637 "AUTOPROBE_IRQ "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639#ifdef DIFFERENTIAL
Finn Thain8c325132014-11-12 16:11:58 +1100640 "DIFFERENTIAL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#endif
642#ifdef REAL_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100643 "REAL_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644#endif
645#ifdef REAL_DMA_POLL
Finn Thain8c325132014-11-12 16:11:58 +1100646 "REAL_DMA_POLL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#endif
648#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100649 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#endif
651#ifdef PSEUDO_DMA
Finn Thain8c325132014-11-12 16:11:58 +1100652 "PSEUDO_DMA "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653#endif
654#ifdef UNSAFE
Finn Thain8c325132014-11-12 16:11:58 +1100655 "UNSAFE "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#endif
Finn Thain8c325132014-11-12 16:11:58 +1100657 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660/**
661 * NCR5380_print_status - dump controller info
662 * @instance: controller to dump
663 *
664 * Print commands in the various queues, called from NCR5380_abort
665 * and NCR5380_debug to aid debugging.
666 *
667 * Locks: called functions disable irqs
668 */
669
670static void NCR5380_print_status(struct Scsi_Host *instance)
671{
672 NCR5380_dprint(NDEBUG_ANY, instance);
673 NCR5380_dprint_phase(NDEBUG_ANY, instance);
674}
675
Finn Thaina9c2dc42014-11-12 16:11:59 +1100676#ifdef PSEUDO_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/******************************************/
678/*
679 * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
680 *
681 * *buffer: I/O buffer
682 * **start: if inout == FALSE pointer into buffer where user read should start
683 * offset: current offset
684 * length: length of buffer
685 * hostno: Scsi_Host host_no
686 * inout: TRUE - user is writing; FALSE - user is reading
687 *
688 * Return the number of bytes read from or written
689 */
690
Al Virodd7ab712013-03-31 01:15:54 -0400691static int __maybe_unused NCR5380_write_info(struct Scsi_Host *instance,
692 char *buffer, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Finn Thaina9c2dc42014-11-12 16:11:59 +1100694 struct NCR5380_hostdata *hostdata = shost_priv(instance);
695
696 hostdata->spin_max_r = 0;
697 hostdata->spin_max_w = 0;
698 return 0;
Al Virodd7ab712013-03-31 01:15:54 -0400699}
Finn Thaina9c2dc42014-11-12 16:11:59 +1100700#endif
Al Virodd7ab712013-03-31 01:15:54 -0400701
Al Virodd7ab712013-03-31 01:15:54 -0400702static
Finn Thain710ddd02014-11-12 16:12:02 +1100703void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m);
Al Virodd7ab712013-03-31 01:15:54 -0400704static
705void lprint_command(unsigned char *cmd, struct seq_file *m);
706static
707void lprint_opcode(int opcode, struct seq_file *m);
708
709static int __maybe_unused NCR5380_show_info(struct seq_file *m,
710 struct Scsi_Host *instance)
711{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct NCR5380_hostdata *hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100713 struct scsi_cmnd *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 hostdata = (struct NCR5380_hostdata *) instance->hostdata;
716
Finn Thaina9c2dc42014-11-12 16:11:59 +1100717#ifdef PSEUDO_DMA
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100718 seq_printf(m, "Highwater I/O busy spin counts: write %d, read %d\n",
Finn Thaina9c2dc42014-11-12 16:11:59 +1100719 hostdata->spin_max_w, hostdata->spin_max_r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#endif
721 spin_lock_irq(instance->host_lock);
722 if (!hostdata->connected)
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100723 seq_printf(m, "scsi%d: no currently connected command\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 else
Finn Thain710ddd02014-11-12 16:12:02 +1100725 lprint_Scsi_Cmnd((struct scsi_cmnd *) hostdata->connected, m);
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100726 seq_printf(m, "scsi%d: issue_queue\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +1100727 for (ptr = (struct scsi_cmnd *) hostdata->issue_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
Al Virodd7ab712013-03-31 01:15:54 -0400728 lprint_Scsi_Cmnd(ptr, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100730 seq_printf(m, "scsi%d: disconnected_queue\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +1100731 for (ptr = (struct scsi_cmnd *) hostdata->disconnected_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_scribble)
Al Virodd7ab712013-03-31 01:15:54 -0400732 lprint_Scsi_Cmnd(ptr, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 spin_unlock_irq(instance->host_lock);
Al Virodd7ab712013-03-31 01:15:54 -0400734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Finn Thain710ddd02014-11-12 16:12:02 +1100737static void lprint_Scsi_Cmnd(struct scsi_cmnd *cmd, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100739 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 +0100740 seq_puts(m, " command = ");
Al Virodd7ab712013-03-31 01:15:54 -0400741 lprint_command(cmd->cmnd, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Al Virodd7ab712013-03-31 01:15:54 -0400744static void lprint_command(unsigned char *command, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 int i, s;
Al Virodd7ab712013-03-31 01:15:54 -0400747 lprint_opcode(command[0], m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100749 seq_printf(m, "%02x ", command[i]);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +0100750 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Al Virodd7ab712013-03-31 01:15:54 -0400753static void lprint_opcode(int opcode, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Rasmus Villemoes0c3de382014-12-03 00:10:49 +0100755 seq_printf(m, "%2d (0x%02x)", opcode, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758
759/**
760 * NCR5380_init - initialise an NCR5380
761 * @instance: adapter to configure
762 * @flags: control flags
763 *
764 * Initializes *instance and corresponding 5380 chip,
765 * with flags OR'd into the initial flags value.
766 *
767 * Notes : I assume that the host, hostno, and id bits have been
768 * set correctly. I don't care about the irq and other fields.
769 *
770 * Returns 0 for success
771 *
772 * Locks: interrupts must be enabled when we are called
773 */
774
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800775static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Finn Thainb6488f92016-01-03 16:05:08 +1100777 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
779
780 if(in_interrupt())
781 printk(KERN_ERR "NCR5380_init called with interrupts off!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 hostdata->aborted = 0;
784 hostdata->id_mask = 1 << instance->this_id;
785 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
786 if (i > hostdata->id_mask)
787 hostdata->id_higher_mask |= i;
788 for (i = 0; i < 8; ++i)
789 hostdata->busy[i] = 0;
790#ifdef REAL_DMA
791 hostdata->dmalen = 0;
792#endif
793 hostdata->targets_present = 0;
794 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* The CHECK code seems to break the 53C400. Will check it later maybe */
801 if (flags & FLAG_NCR53C400)
802 hostdata->flags = FLAG_HAS_LAST_BYTE_SENT | flags;
803 else
804 hostdata->flags = FLAG_CHECK_LAST_BYTE_SENT | flags;
805
806 hostdata->host = instance;
807 hostdata->time_expires = 0;
808
Finn Thain8c325132014-11-12 16:11:58 +1100809 prepare_info(instance);
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
812 NCR5380_write(MODE_REG, MR_BASE);
813 NCR5380_write(TARGET_COMMAND_REG, 0);
814 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thainb6488f92016-01-03 16:05:08 +1100815 return 0;
816}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Finn Thainb6488f92016-01-03 16:05:08 +1100818/**
819 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
820 * @instance: adapter to check
821 *
822 * If the system crashed, it may have crashed with a connected target and
823 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
824 * currently established nexus, which we know nothing about. Failing that
825 * do a bus reset.
826 *
827 * Note that a bus reset will cause the chip to assert IRQ.
828 *
829 * Returns 0 if successful, otherwise -ENXIO.
830 */
831
832static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
833{
834 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
837 switch (pass) {
838 case 1:
839 case 3:
840 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100841 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
842 NCR5380_poll_politely(instance,
843 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 break;
845 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100846 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 do_abort(instance);
848 break;
849 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100850 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 do_reset(instance);
852 break;
853 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100854 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return -ENXIO;
856 }
857 }
858 return 0;
859}
860
861/**
862 * NCR5380_exit - remove an NCR5380
863 * @instance: adapter to remove
864 */
865
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800866static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
869
Tejun Heoa684b8d2011-01-24 14:57:28 +0100870 cancel_delayed_work_sync(&hostdata->coroutine);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
874 * NCR5380_queue_command - queue a command
875 * @cmd: SCSI command
876 * @done: completion handler
877 *
878 * cmd is added to the per instance issue_queue, with minor
879 * twiddling done to the host specific fields of cmd. If the
880 * main coroutine is not running, it is restarted.
881 *
882 * Locks: host lock taken by caller
883 */
884
Finn Thain710ddd02014-11-12 16:12:02 +1100885static int NCR5380_queue_command_lck(struct scsi_cmnd *cmd, void (*done) (struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 struct Scsi_Host *instance = cmd->device->host;
888 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +1100889 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891#if (NDEBUG & NDEBUG_NO_WRITE)
892 switch (cmd->cmnd[0]) {
893 case WRITE_6:
894 case WRITE_10:
895 printk("scsi%d : WRITE attempted with NO_WRITE debugging flag set\n", instance->host_no);
896 cmd->result = (DID_ERROR << 16);
897 done(cmd);
898 return 0;
899 }
900#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /*
903 * We use the host_scribble field as a pointer to the next command
904 * in a queue
905 */
906
907 cmd->host_scribble = NULL;
908 cmd->scsi_done = done;
909 cmd->result = 0;
910
911 /*
912 * Insert the cmd into the issue queue. Note that REQUEST SENSE
913 * commands are added to the head of the queue since any command will
914 * clear the contingent allegiance condition that exists and the
915 * sense data is only guaranteed to be valid while the condition exists.
916 */
917
918 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
919 LIST(cmd, hostdata->issue_queue);
920 cmd->host_scribble = (unsigned char *) hostdata->issue_queue;
921 hostdata->issue_queue = cmd;
922 } else {
Finn Thain710ddd02014-11-12 16:12:02 +1100923 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 -0700924 LIST(cmd, tmp);
925 tmp->host_scribble = (unsigned char *) cmd;
926 }
Finn Thain52a6a1c2014-03-18 11:42:18 +1100927 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 -0700928
929 /* Run the coroutine if it isn't already running. */
930 /* Kick off command processing */
David Howellsc4028952006-11-22 14:57:56 +0000931 schedule_delayed_work(&hostdata->coroutine, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return 0;
933}
934
Jeff Garzikf2812332010-11-16 02:10:29 -0500935static DEF_SCSI_QCMD(NCR5380_queue_command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/**
938 * NCR5380_main - NCR state machines
939 *
940 * NCR5380_main is a coroutine that runs as long as more work can
941 * be done on the NCR5380 host adapters in a system. Both
942 * NCR5380_queue_command() and NCR5380_intr() will try to start it
943 * in case it is not running.
944 *
945 * Locks: called as its own thread with no locks held. Takes the
946 * host lock and called routines may take the isa dma lock.
947 */
948
David Howellsc4028952006-11-22 14:57:56 +0000949static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
David Howellsc4028952006-11-22 14:57:56 +0000951 struct NCR5380_hostdata *hostdata =
952 container_of(work, struct NCR5380_hostdata, coroutine.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 struct Scsi_Host *instance = hostdata->host;
Finn Thain710ddd02014-11-12 16:12:02 +1100954 struct scsi_cmnd *tmp, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 int done;
956
957 spin_lock_irq(instance->host_lock);
958 do {
959 /* Lock held here */
960 done = 1;
961 if (!hostdata->connected && !hostdata->selecting) {
Finn Thain52a6a1c2014-03-18 11:42:18 +1100962 dprintk(NDEBUG_MAIN, "scsi%d : not connected\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /*
964 * Search through the issue_queue for a command destined
965 * for a target that's not busy.
966 */
Finn Thain710ddd02014-11-12 16:12:02 +1100967 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 -0700968 {
969 if (prev != tmp)
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200970 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 -0700971 /* When we find one, remove it from the issue queue. */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200972 if (!(hostdata->busy[tmp->device->id] &
973 (1 << (u8)(tmp->device->lun & 0xff)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (prev) {
975 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
976 prev->host_scribble = tmp->host_scribble;
977 } else {
978 REMOVE(-1, hostdata->issue_queue, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +1100979 hostdata->issue_queue = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
981 tmp->host_scribble = NULL;
982
983 /*
984 * Attempt to establish an I_T_L nexus here.
985 * On success, instance->hostdata->connected is set.
986 * On failure, we must add the command back to the
987 * issue queue so we can keep trying.
988 */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200989 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 -0700990
991 /*
992 * A successful selection is defined as one that
993 * leaves us with the command connected and
994 * in hostdata->connected, OR has terminated the
995 * command.
996 *
997 * With successful commands, we fall through
998 * and see if we can do an information transfer,
999 * with failures we will restart.
1000 */
1001 hostdata->selecting = NULL;
1002 /* RvC: have to preset this to indicate a new command is being performed */
1003
Finn Thain76f13b92014-11-12 16:11:53 +11001004 /*
1005 * REQUEST SENSE commands are issued without tagged
1006 * queueing, even on SCSI-II devices because the
1007 * contingent allegiance condition exists for the
1008 * entire unit.
1009 */
1010
1011 if (!NCR5380_select(instance, tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
1013 } else {
1014 LIST(tmp, hostdata->issue_queue);
1015 tmp->host_scribble = (unsigned char *) hostdata->issue_queue;
1016 hostdata->issue_queue = tmp;
1017 done = 0;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001018 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 -07001019 }
1020 /* lock held here still */
1021 } /* if target/lun is not busy */
1022 } /* for */
1023 /* exited locked */
1024 } /* if (!hostdata->connected) */
1025 if (hostdata->selecting) {
Finn Thain710ddd02014-11-12 16:12:02 +11001026 tmp = (struct scsi_cmnd *) hostdata->selecting;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /* Selection will drop and retake the lock */
Finn Thain76f13b92014-11-12 16:11:53 +11001028 if (!NCR5380_select(instance, tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* Ok ?? */
1030 } else {
1031 /* RvC: device failed, so we wait a long time
1032 this is needed for Mustek scanners, that
1033 do not respond to commands immediately
1034 after a scan */
1035 printk(KERN_DEBUG "scsi%d: device %d did not respond in time\n", instance->host_no, tmp->device->id);
1036 LIST(tmp, hostdata->issue_queue);
1037 tmp->host_scribble = (unsigned char *) hostdata->issue_queue;
1038 hostdata->issue_queue = tmp;
1039 NCR5380_set_timer(hostdata, USLEEP_WAITLONG);
1040 }
1041 } /* if hostdata->selecting */
1042 if (hostdata->connected
1043#ifdef REAL_DMA
1044 && !hostdata->dmalen
1045#endif
1046 && (!hostdata->time_expires || time_before_eq(hostdata->time_expires, jiffies))
1047 ) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001048 dprintk(NDEBUG_MAIN, "scsi%d : main() : performing information transfer\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 NCR5380_information_transfer(instance);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001050 dprintk(NDEBUG_MAIN, "scsi%d : main() : done set false\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 done = 0;
1052 } else
1053 break;
1054 } while (!done);
1055
1056 spin_unlock_irq(instance->host_lock);
1057}
1058
1059#ifndef DONT_USE_INTR
1060
1061/**
1062 * NCR5380_intr - generic NCR5380 irq handler
1063 * @irq: interrupt number
1064 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 *
1066 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
1067 * from the disconnected queue, and restarting NCR5380_main()
1068 * as required.
1069 *
1070 * Locks: takes the needed instance locks
1071 */
1072
Jeff Garzikbaa9aac2007-12-13 16:14:14 -08001073static irqreturn_t NCR5380_intr(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -08001075 struct Scsi_Host *instance = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1077 int done;
1078 unsigned char basr;
1079 unsigned long flags;
1080
Finn Thain52a6a1c2014-03-18 11:42:18 +11001081 dprintk(NDEBUG_INTR, "scsi : NCR5380 irq %d triggered\n",
1082 instance->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 do {
1085 done = 1;
1086 spin_lock_irqsave(instance->host_lock, flags);
1087 /* Look for pending interrupts */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 basr = NCR5380_read(BUS_AND_STATUS_REG);
1089 /* XXX dispatch to appropriate routine if found and done=0 */
1090 if (basr & BASR_IRQ) {
1091 NCR5380_dprint(NDEBUG_INTR, instance);
1092 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1093 done = 0;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001094 dprintk(NDEBUG_INTR, "scsi%d : SEL interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 NCR5380_reselect(instance);
1096 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1097 } else if (basr & BASR_PARITY_ERROR) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001098 dprintk(NDEBUG_INTR, "scsi%d : PARITY interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1100 } else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001101 dprintk(NDEBUG_INTR, "scsi%d : RESET interrupt\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1103 } else {
1104#if defined(REAL_DMA)
1105 /*
1106 * We should only get PHASE MISMATCH and EOP interrupts
1107 * if we have DMA enabled, so do a sanity check based on
1108 * the current setting of the MODE register.
1109 */
1110
1111 if ((NCR5380_read(MODE_REG) & MR_DMA) && ((basr & BASR_END_DMA_TRANSFER) || !(basr & BASR_PHASE_MATCH))) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001112 int transferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 if (!hostdata->connected)
1115 panic("scsi%d : received end of DMA interrupt with no connected cmd\n", instance->hostno);
1116
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001117 transferred = (hostdata->dmalen - NCR5380_dma_residual(instance));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 hostdata->connected->SCp.this_residual -= transferred;
1119 hostdata->connected->SCp.ptr += transferred;
1120 hostdata->dmalen = 0;
1121
1122 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1123
1124 /* FIXME: we need to poll briefly then defer a workqueue task ! */
1125 NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, BASR_ACK, 0, 2*HZ);
1126
1127 NCR5380_write(MODE_REG, MR_BASE);
1128 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1129 }
1130#else
Finn Thain52a6a1c2014-03-18 11:42:18 +11001131 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 -07001132 (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1133#endif
1134 }
1135 } /* if BASR_IRQ */
1136 spin_unlock_irqrestore(instance->host_lock, flags);
1137 if(!done)
David Howellsc4028952006-11-22 14:57:56 +00001138 schedule_delayed_work(&hostdata->coroutine, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 } while (!done);
1140 return IRQ_HANDLED;
1141}
1142
1143#endif
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145/*
Finn Thain710ddd02014-11-12 16:12:02 +11001146 * Function : int NCR5380_select(struct Scsi_Host *instance,
1147 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 *
1149 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
1150 * including ARBITRATION, SELECTION, and initial message out for
1151 * IDENTIFY and queue messages.
1152 *
1153 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain76f13b92014-11-12 16:11:53 +11001154 * target lives, cmd - SCSI command to execute.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 *
1156 * Returns : -1 if selection could not execute for some reason,
1157 * 0 if selection succeeded or failed because the target
1158 * did not respond.
1159 *
1160 * Side effects :
1161 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1162 * with registers as they should have been on entry - ie
1163 * SELECT_ENABLE will be set appropriately, the NCR5380
1164 * will cease to drive any SCSI bus signals.
1165 *
1166 * If successful : I_T_L or I_T_L_Q nexus will be established,
1167 * instance->connected will be set to cmd.
1168 * SELECT interrupt will be disabled.
1169 *
1170 * If failed (no target) : cmd->scsi_done() will be called, and the
1171 * cmd->result host byte set to DID_BAD_TARGET.
1172 *
1173 * Locks: caller holds hostdata lock in IRQ mode
1174 */
1175
Finn Thain710ddd02014-11-12 16:12:02 +11001176static int NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1179 unsigned char tmp[3], phase;
1180 unsigned char *data;
1181 int len;
1182 unsigned long timeout;
1183 unsigned char value;
1184 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (hostdata->selecting)
1187 goto part2;
1188
1189 hostdata->restart_select = 0;
1190
1191 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001192 dprintk(NDEBUG_ARBITRATION, "scsi%d : starting arbitration, id = %d\n", instance->host_no, instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /*
1195 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
1196 * data bus during SELECTION.
1197 */
1198
1199 NCR5380_write(TARGET_COMMAND_REG, 0);
1200
1201 /*
1202 * Start arbitration.
1203 */
1204
1205 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1206 NCR5380_write(MODE_REG, MR_ARBITRATE);
1207
1208
1209 /* We can be relaxed here, interrupts are on, we are
1210 in workqueue context, the birds are singing in the trees */
1211 spin_unlock_irq(instance->host_lock);
1212 err = NCR5380_poll_politely(instance, INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS, ICR_ARBITRATION_PROGRESS, 5*HZ);
1213 spin_lock_irq(instance->host_lock);
1214 if (err < 0) {
1215 printk(KERN_DEBUG "scsi: arbitration timeout at %d\n", __LINE__);
1216 NCR5380_write(MODE_REG, MR_BASE);
1217 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1218 goto failed;
1219 }
1220
Finn Thain52a6a1c2014-03-18 11:42:18 +11001221 dprintk(NDEBUG_ARBITRATION, "scsi%d : arbitration complete\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 /*
1224 * The arbitration delay is 2.2us, but this is a minimum and there is
1225 * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
1226 * the integral nature of udelay().
1227 *
1228 */
1229
1230 udelay(3);
1231
1232 /* Check for lost arbitration */
1233 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)) {
1234 NCR5380_write(MODE_REG, MR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001235 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting MR_ARBITRATE\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 goto failed;
1237 }
1238 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_SEL);
1239
1240 if (!(hostdata->flags & FLAG_DTC3181E) &&
1241 /* RvC: DTC3181E has some trouble with this
1242 * so we simply removed it. Seems to work with
1243 * only Mustek scanner attached
1244 */
1245 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
1246 NCR5380_write(MODE_REG, MR_BASE);
1247 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001248 dprintk(NDEBUG_ARBITRATION, "scsi%d : lost arbitration, deasserting ICR_ASSERT_SEL\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 goto failed;
1250 }
1251 /*
1252 * Again, bus clear + bus settle time is 1.2us, however, this is
1253 * a minimum so we'll udelay ceil(1.2)
1254 */
1255
1256 udelay(2);
1257
Finn Thain52a6a1c2014-03-18 11:42:18 +11001258 dprintk(NDEBUG_ARBITRATION, "scsi%d : won arbitration\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 /*
1261 * Now that we have won arbitration, start Selection process, asserting
1262 * the host and target ID's on the SCSI bus.
1263 */
1264
Jeff Garzik422c0d62005-10-24 18:05:09 -04001265 NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << scmd_id(cmd))));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /*
1268 * Raise ATN while SEL is true before BSY goes false from arbitration,
1269 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1270 * phase immediately after selection.
1271 */
1272
1273 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1274 NCR5380_write(MODE_REG, MR_BASE);
1275
1276 /*
1277 * Reselect interrupts must be turned off prior to the dropping of BSY,
1278 * otherwise we will trigger an interrupt.
1279 */
1280 NCR5380_write(SELECT_ENABLE_REG, 0);
1281
1282 /*
1283 * The initiator shall then wait at least two deskew delays and release
1284 * the BSY signal.
1285 */
1286 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
1287
1288 /* Reset BSY */
1289 NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL));
1290
1291 /*
1292 * Something weird happens when we cease to drive BSY - looks
1293 * like the board/chip is letting us do another read before the
1294 * appropriate propagation delay has expired, and we're confusing
1295 * a BSY signal from ourselves as the target's response to SELECTION.
1296 *
1297 * A small delay (the 'C++' frontend breaks the pipeline with an
1298 * unnecessary jump, making it work on my 386-33/Trantor T128, the
1299 * tighter 'C' code breaks and requires this) solves the problem -
1300 * the 1 us delay is arbitrary, and only used because this delay will
1301 * be the same on other platforms and since it works here, it should
1302 * work there.
1303 *
1304 * wingel suggests that this could be due to failing to wait
1305 * one deskew delay.
1306 */
1307
1308 udelay(1);
1309
Finn Thain52a6a1c2014-03-18 11:42:18 +11001310 dprintk(NDEBUG_SELECTION, "scsi%d : selecting target %d\n", instance->host_no, scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
1312 /*
1313 * The SCSI specification calls for a 250 ms timeout for the actual
1314 * selection.
1315 */
1316
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -05001317 timeout = jiffies + msecs_to_jiffies(250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 /*
1320 * XXX very interesting - we're seeing a bounce where the BSY we
1321 * asserted is being reflected / still asserted (propagation delay?)
1322 * and it's detecting as true. Sigh.
1323 */
1324
1325 hostdata->select_time = 0; /* we count the clock ticks at which we polled */
1326 hostdata->selecting = cmd;
1327
1328part2:
1329 /* RvC: here we enter after a sleeping period, or immediately after
1330 execution of part 1
1331 we poll only once ech clock tick */
1332 value = NCR5380_read(STATUS_REG) & (SR_BSY | SR_IO);
1333
1334 if (!value && (hostdata->select_time < HZ/4)) {
1335 /* RvC: we still must wait for a device response */
1336 hostdata->select_time++; /* after 25 ticks the device has failed */
1337 NCR5380_set_timer(hostdata, 1);
1338 return 0; /* RvC: we return here with hostdata->selecting set,
1339 to go to sleep */
1340 }
1341
1342 hostdata->selecting = NULL;/* clear this pointer, because we passed the
1343 waiting period */
1344 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
1345 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1346 NCR5380_reselect(instance);
1347 printk("scsi%d : reselection after won arbitration?\n", instance->host_no);
1348 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1349 return -1;
1350 }
1351 /*
1352 * No less than two deskew delays after the initiator detects the
1353 * BSY signal is true, it shall release the SEL signal and may
1354 * change the DATA BUS. -wingel
1355 */
1356
1357 udelay(1);
1358
1359 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1360
1361 if (!(NCR5380_read(STATUS_REG) & SR_BSY)) {
1362 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Jeff Garzik422c0d62005-10-24 18:05:09 -04001363 if (hostdata->targets_present & (1 << scmd_id(cmd))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 printk(KERN_DEBUG "scsi%d : weirdness\n", instance->host_no);
1365 if (hostdata->restart_select)
1366 printk(KERN_DEBUG "\trestart select\n");
1367 NCR5380_dprint(NDEBUG_SELECTION, instance);
1368 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1369 return -1;
1370 }
1371 cmd->result = DID_BAD_TARGET << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 cmd->scsi_done(cmd);
1373 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001374 dprintk(NDEBUG_SELECTION, "scsi%d : target did not respond within 250ms\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1376 return 0;
1377 }
Jeff Garzik422c0d62005-10-24 18:05:09 -04001378 hostdata->targets_present |= (1 << scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 /*
1381 * Since we followed the SCSI spec, and raised ATN while SEL
1382 * was true but before BSY was false during selection, the information
1383 * transfer phase should be a MESSAGE OUT phase so that we can send the
1384 * IDENTIFY message.
1385 *
1386 * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
1387 * message (2 bytes) with a tag ID that we increment with every command
1388 * until it wraps back to 0.
1389 *
1390 * XXX - it turns out that there are some broken SCSI-II devices,
1391 * which claim to support tagged queuing but fail when more than
1392 * some number of commands are issued at once.
1393 */
1394
1395 /* Wait for start of REQ/ACK handshake */
1396
1397 spin_unlock_irq(instance->host_lock);
1398 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
1399 spin_lock_irq(instance->host_lock);
1400
1401 if(err) {
1402 printk(KERN_ERR "scsi%d: timeout at NCR5380.c:%d\n", instance->host_no, __LINE__);
1403 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
1404 goto failed;
1405 }
1406
Finn Thain52a6a1c2014-03-18 11:42:18 +11001407 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 +11001408 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 len = 1;
1411 cmd->tag = 0;
1412
1413 /* Send message(s) */
1414 data = tmp;
1415 phase = PHASE_MSGOUT;
1416 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001417 dprintk(NDEBUG_SELECTION, "scsi%d : nexus established.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /* XXX need to handle errors here */
1419 hostdata->connected = cmd;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001420 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Boaz Harrosh28424d32007-09-10 22:37:45 +03001422 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 return 0;
1425
1426 /* Selection failed */
1427failed:
1428 return -1;
1429
1430}
1431
1432/*
1433 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
1434 * unsigned char *phase, int *count, unsigned char **data)
1435 *
1436 * Purpose : transfers data in given phase using polled I/O
1437 *
1438 * Inputs : instance - instance of driver, *phase - pointer to
1439 * what phase is expected, *count - pointer to number of
1440 * bytes to transfer, **data - pointer to data pointer.
1441 *
1442 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001443 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * is in same phase.
1445 *
1446 * Also, *phase, *count, *data are modified in place.
1447 *
1448 * XXX Note : handling for bus free may be useful.
1449 */
1450
1451/*
1452 * Note : this code is not as quick as it could be, however it
1453 * IS 100% reliable, and for the actual data transfer where speed
1454 * counts, we will always do a pseudo DMA or DMA transfer.
1455 */
1456
1457static int NCR5380_transfer_pio(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 unsigned char p = *phase, tmp;
1459 int c = *count;
1460 unsigned char *d = *data;
1461 /*
1462 * RvC: some administrative data to process polling time
1463 */
1464 int break_allowed = 0;
1465 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 if (!(p & SR_IO))
Finn Thain52a6a1c2014-03-18 11:42:18 +11001468 dprintk(NDEBUG_PIO, "scsi%d : pio write %d bytes\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 else
Finn Thain52a6a1c2014-03-18 11:42:18 +11001470 dprintk(NDEBUG_PIO, "scsi%d : pio read %d bytes\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 /*
1473 * The NCR5380 chip will only drive the SCSI bus when the
1474 * phase specified in the appropriate bits of the TARGET COMMAND
1475 * REGISTER match the STATUS REGISTER
1476 */
1477
1478 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1479
1480 /* RvC: don't know if this is necessary, but other SCSI I/O is short
1481 * so breaks are not necessary there
1482 */
1483 if ((p == PHASE_DATAIN) || (p == PHASE_DATAOUT)) {
1484 break_allowed = 1;
1485 }
1486 do {
1487 /*
1488 * Wait for assertion of REQ, after which the phase bits will be
1489 * valid
1490 */
1491
1492 /* RvC: we simply poll once, after that we stop temporarily
1493 * and let the device buffer fill up
1494 * if breaking is not allowed, we keep polling as long as needed
1495 */
1496
1497 /* FIXME */
1498 while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ) && !break_allowed);
1499 if (!(tmp & SR_REQ)) {
1500 /* timeout condition */
1501 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
1502 break;
1503 }
1504
Finn Thain52a6a1c2014-03-18 11:42:18 +11001505 dprintk(NDEBUG_HANDSHAKE, "scsi%d : REQ detected\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /* Check for phase mismatch */
1508 if ((tmp & PHASE_MASK) != p) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001509 dprintk(NDEBUG_HANDSHAKE, "scsi%d : phase mismatch\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 NCR5380_dprint_phase(NDEBUG_HANDSHAKE, instance);
1511 break;
1512 }
1513 /* Do actual transfer from SCSI bus to / from memory */
1514 if (!(p & SR_IO))
1515 NCR5380_write(OUTPUT_DATA_REG, *d);
1516 else
1517 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1518
1519 ++d;
1520
1521 /*
1522 * The SCSI standard suggests that in MSGOUT phase, the initiator
1523 * should drop ATN on the last byte of the message phase
1524 * after REQ has been asserted for the handshake but before
1525 * the initiator raises ACK.
1526 */
1527
1528 if (!(p & SR_IO)) {
1529 if (!((p & SR_MSG) && c > 1)) {
1530 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1531 NCR5380_dprint(NDEBUG_PIO, instance);
1532 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ACK);
1533 } else {
1534 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN);
1535 NCR5380_dprint(NDEBUG_PIO, instance);
1536 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1537 }
1538 } else {
1539 NCR5380_dprint(NDEBUG_PIO, instance);
1540 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1541 }
1542
1543 /* FIXME - if this fails bus reset ?? */
1544 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 5*HZ);
Finn Thain52a6a1c2014-03-18 11:42:18 +11001545 dprintk(NDEBUG_HANDSHAKE, "scsi%d : req false, handshake complete\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547/*
1548 * We have several special cases to consider during REQ/ACK handshaking :
1549 * 1. We were in MSGOUT phase, and we are on the last byte of the
1550 * message. ATN must be dropped as ACK is dropped.
1551 *
1552 * 2. We are in a MSGIN phase, and we are on the last byte of the
1553 * message. We must exit with ACK asserted, so that the calling
1554 * code may raise ATN before dropping ACK to reject the message.
1555 *
1556 * 3. ACK and ATN are clear and the target may proceed as normal.
1557 */
1558 if (!(p == PHASE_MSGIN && c == 1)) {
1559 if (p == PHASE_MSGOUT && c > 1)
1560 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1561 else
1562 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1563 }
1564 } while (--c);
1565
Finn Thain52a6a1c2014-03-18 11:42:18 +11001566 dprintk(NDEBUG_PIO, "scsi%d : residual %d\n", instance->host_no, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 *count = c;
1569 *data = d;
1570 tmp = NCR5380_read(STATUS_REG);
1571 if (tmp & SR_REQ)
1572 *phase = tmp & PHASE_MASK;
1573 else
1574 *phase = PHASE_UNKNOWN;
1575
1576 if (!c || (*phase == p))
1577 return 0;
1578 else
1579 return -1;
1580}
1581
1582/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001583 * do_reset - issue a reset command
1584 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001586 * Issue a reset sequence to the NCR5380 and try and get the bus
1587 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001589 * This clears the reset interrupt flag because there may be no handler for
1590 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1591 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 */
1593
Finn Thain54d8fe42016-01-03 16:05:06 +11001594static void do_reset(struct Scsi_Host *instance)
1595{
Finn Thain636b1ec2016-01-03 16:05:10 +11001596 unsigned long flags;
1597
1598 local_irq_save(flags);
1599 NCR5380_write(TARGET_COMMAND_REG,
1600 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001602 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001604 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1605 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
1608/*
1609 * Function : do_abort (Scsi_Host *host)
1610 *
1611 * Purpose : abort the currently established nexus. Should only be
1612 * called from a routine which can drop into a
1613 *
1614 * Returns : 0 on success, -1 on failure.
1615 *
1616 * Locks: queue lock held by caller
1617 * FIXME: sort this out and get new_eh running
1618 */
1619
Finn Thain54d8fe42016-01-03 16:05:06 +11001620static int do_abort(struct Scsi_Host *instance)
1621{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 unsigned char *msgptr, phase, tmp;
1623 int len;
1624 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /* Request message out phase */
1627 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1628
1629 /*
1630 * Wait for the target to indicate a valid phase by asserting
1631 * REQ. Once this happens, we'll have either a MSGOUT phase
1632 * and can immediately send the ABORT message, or we'll have some
1633 * other phase and will have to source/sink data.
1634 *
1635 * We really don't care what value was on the bus or what value
1636 * the target sees, so we just handshake.
1637 */
1638
Finn Thain54d8fe42016-01-03 16:05:06 +11001639 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 60 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 if(rc < 0)
1642 return -1;
1643
1644 tmp = (unsigned char)rc;
1645
1646 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1647
1648 if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
1649 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thain54d8fe42016-01-03 16:05:06 +11001650 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1652 if(rc == -1)
1653 return -1;
1654 }
1655 tmp = ABORT;
1656 msgptr = &tmp;
1657 len = 1;
1658 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001659 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 /*
1662 * If we got here, and the command completed successfully,
1663 * we're about to go into bus free state.
1664 */
1665
1666 return len ? -1 : 0;
1667}
1668
1669#if defined(REAL_DMA) || defined(PSEUDO_DMA) || defined (REAL_DMA_POLL)
1670/*
1671 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
1672 * unsigned char *phase, int *count, unsigned char **data)
1673 *
1674 * Purpose : transfers data in given phase using either real
1675 * or pseudo DMA.
1676 *
1677 * Inputs : instance - instance of driver, *phase - pointer to
1678 * what phase is expected, *count - pointer to number of
1679 * bytes to transfer, **data - pointer to data pointer.
1680 *
1681 * Returns : -1 when different phase is entered without transferring
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001682 * maximum number of bytes, 0 if all bytes or transferred or exit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * is in same phase.
1684 *
1685 * Also, *phase, *count, *data are modified in place.
1686 *
1687 * Locks: io_request lock held by caller
1688 */
1689
1690
1691static int NCR5380_transfer_dma(struct Scsi_Host *instance, unsigned char *phase, int *count, unsigned char **data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 register int c = *count;
1693 register unsigned char p = *phase;
1694 register unsigned char *d = *data;
1695 unsigned char tmp;
1696 int foo;
1697#if defined(REAL_DMA_POLL)
1698 int cnt, toPIO;
1699 unsigned char saved_data = 0, overrun = 0, residue;
1700#endif
1701
1702 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1705 *phase = tmp;
1706 return -1;
1707 }
1708#if defined(REAL_DMA) || defined(REAL_DMA_POLL)
1709#ifdef READ_OVERRUNS
1710 if (p & SR_IO) {
1711 c -= 2;
1712 }
1713#endif
Finn Thain52a6a1c2014-03-18 11:42:18 +11001714 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 -07001715 hostdata->dma_len = (p & SR_IO) ? NCR5380_dma_read_setup(instance, d, c) : NCR5380_dma_write_setup(instance, d, c);
1716#endif
1717
1718 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
1719
1720#ifdef REAL_DMA
1721 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
1722#elif defined(REAL_DMA_POLL)
1723 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1724#else
1725 /*
1726 * Note : on my sample board, watch-dog timeouts occurred when interrupts
1727 * were not disabled for the duration of a single DMA transfer, from
1728 * before the setting of DMA mode to after transfer of the last byte.
1729 */
1730
1731#if defined(PSEUDO_DMA) && defined(UNSAFE)
1732 spin_unlock_irq(instance->host_lock);
1733#endif
1734 /* KLL May need eop and parity in 53c400 */
1735 if (hostdata->flags & FLAG_NCR53C400)
Roel Kluin085267a2010-08-10 18:01:11 -07001736 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE |
1737 MR_ENABLE_PAR_CHECK | MR_ENABLE_PAR_INTR |
1738 MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 else
1740 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
1741#endif /* def REAL_DMA */
1742
Finn Thain52a6a1c2014-03-18 11:42:18 +11001743 dprintk(NDEBUG_DMA, "scsi%d : mode reg = 0x%X\n", instance->host_no, NCR5380_read(MODE_REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 /*
1746 * On the PAS16 at least I/O recovery delays are not needed here.
1747 * Everyone else seems to want them.
1748 */
1749
1750 if (p & SR_IO) {
1751 io_recovery_delay(1);
1752 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1753 } else {
1754 io_recovery_delay(1);
1755 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1756 io_recovery_delay(1);
1757 NCR5380_write(START_DMA_SEND_REG, 0);
1758 io_recovery_delay(1);
1759 }
1760
1761#if defined(REAL_DMA_POLL)
1762 do {
1763 tmp = NCR5380_read(BUS_AND_STATUS_REG);
1764 } while ((tmp & BASR_PHASE_MATCH) && !(tmp & (BASR_BUSY_ERROR | BASR_END_DMA_TRANSFER)));
1765
1766/*
1767 At this point, either we've completed DMA, or we have a phase mismatch,
1768 or we've unexpectedly lost BUSY (which is a real error).
1769
1770 For write DMAs, we want to wait until the last byte has been
1771 transferred out over the bus before we turn off DMA mode. Alas, there
1772 seems to be no terribly good way of doing this on a 5380 under all
1773 conditions. For non-scatter-gather operations, we can wait until REQ
1774 and ACK both go false, or until a phase mismatch occurs. Gather-writes
1775 are nastier, since the device will be expecting more data than we
1776 are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1777 could test LAST BIT SENT to assure transfer (I imagine this is precisely
1778 why this signal was added to the newer chips) but on the older 538[01]
1779 this signal does not exist. The workaround for this lack is a watchdog;
1780 we bail out of the wait-loop after a modest amount of wait-time if
1781 the usual exit conditions are not met. Not a terribly clean or
1782 correct solution :-%
1783
1784 Reads are equally tricky due to a nasty characteristic of the NCR5380.
1785 If the chip is in DMA mode for an READ, it will respond to a target's
1786 REQ by latching the SCSI data into the INPUT DATA register and asserting
1787 ACK, even if it has _already_ been notified by the DMA controller that
1788 the current DMA transfer has completed! If the NCR5380 is then taken
1789 out of DMA mode, this already-acknowledged byte is lost.
1790
1791 This is not a problem for "one DMA transfer per command" reads, because
1792 the situation will never arise... either all of the data is DMA'ed
1793 properly, or the target switches to MESSAGE IN phase to signal a
1794 disconnection (either operation bringing the DMA to a clean halt).
1795 However, in order to handle scatter-reads, we must work around the
1796 problem. The chosen fix is to DMA N-2 bytes, then check for the
1797 condition before taking the NCR5380 out of DMA mode. One or two extra
1798 bytes are transferred via PIO as necessary to fill out the original
1799 request.
1800 */
1801
1802 if (p & SR_IO) {
1803#ifdef READ_OVERRUNS
1804 udelay(10);
1805 if (((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) == (BASR_PHASE_MATCH | BASR_ACK))) {
1806 saved_data = NCR5380_read(INPUT_DATA_REGISTER);
1807 overrun = 1;
1808 }
1809#endif
1810 } else {
1811 int limit = 100;
1812 while (((tmp = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_ACK) || (NCR5380_read(STATUS_REG) & SR_REQ)) {
1813 if (!(tmp & BASR_PHASE_MATCH))
1814 break;
1815 if (--limit < 0)
1816 break;
1817 }
1818 }
1819
Finn Thain52a6a1c2014-03-18 11:42:18 +11001820 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 -07001821
1822 NCR5380_write(MODE_REG, MR_BASE);
1823 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1824
1825 residue = NCR5380_dma_residual(instance);
1826 c -= residue;
1827 *count -= c;
1828 *data += c;
1829 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1830
1831#ifdef READ_OVERRUNS
1832 if (*phase == p && (p & SR_IO) && residue == 0) {
1833 if (overrun) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001834 dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 **data = saved_data;
1836 *data += 1;
1837 *count -= 1;
1838 cnt = toPIO = 1;
1839 } else {
1840 printk("No overrun??\n");
1841 cnt = toPIO = 2;
1842 }
Finn Thain52a6a1c2014-03-18 11:42:18 +11001843 dprintk(NDEBUG_DMA, "Doing %d-byte PIO to 0x%X\n", cnt, *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 NCR5380_transfer_pio(instance, phase, &cnt, data);
1845 *count -= toPIO - cnt;
1846 }
1847#endif
1848
Finn Thain52a6a1c2014-03-18 11:42:18 +11001849 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 -07001850 return 0;
1851
1852#elif defined(REAL_DMA)
1853 return 0;
1854#else /* defined(REAL_DMA_POLL) */
1855 if (p & SR_IO) {
1856#ifdef DMA_WORKS_RIGHT
1857 foo = NCR5380_pread(instance, d, c);
1858#else
1859 int diff = 1;
1860 if (hostdata->flags & FLAG_NCR53C400) {
1861 diff = 0;
1862 }
1863 if (!(foo = NCR5380_pread(instance, d, c - diff))) {
1864 /*
1865 * We can't disable DMA mode after successfully transferring
1866 * what we plan to be the last byte, since that would open up
1867 * a race condition where if the target asserted REQ before
1868 * we got the DMA mode reset, the NCR5380 would have latched
1869 * an additional byte into the INPUT DATA register and we'd
1870 * have dropped it.
1871 *
1872 * The workaround was to transfer one fewer bytes than we
1873 * intended to with the pseudo-DMA read function, wait for
1874 * the chip to latch the last byte, read it, and then disable
1875 * pseudo-DMA mode.
1876 *
1877 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1878 * REQ is deasserted when ACK is asserted, and not reasserted
1879 * until ACK goes false. Since the NCR5380 won't lower ACK
1880 * until DACK is asserted, which won't happen unless we twiddle
1881 * the DMA port or we take the NCR5380 out of DMA mode, we
1882 * can guarantee that we won't handshake another extra
1883 * byte.
1884 */
1885
1886 if (!(hostdata->flags & FLAG_NCR53C400)) {
1887 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ));
1888 /* Wait for clean handshake */
1889 while (NCR5380_read(STATUS_REG) & SR_REQ);
1890 d[c - 1] = NCR5380_read(INPUT_DATA_REG);
1891 }
1892 }
1893#endif
1894 } else {
1895#ifdef DMA_WORKS_RIGHT
1896 foo = NCR5380_pwrite(instance, d, c);
1897#else
1898 int timeout;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001899 dprintk(NDEBUG_C400_PWRITE, "About to pwrite %d bytes\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (!(foo = NCR5380_pwrite(instance, d, c))) {
1901 /*
1902 * Wait for the last byte to be sent. If REQ is being asserted for
1903 * the byte we're interested, we'll ACK it and it will go false.
1904 */
1905 if (!(hostdata->flags & FLAG_HAS_LAST_BYTE_SENT)) {
1906 timeout = 20000;
1907 while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ) && (NCR5380_read(BUS_AND_STATUS_REG) & BASR_PHASE_MATCH));
1908
1909 if (!timeout)
Finn Thain52a6a1c2014-03-18 11:42:18 +11001910 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : timed out on last byte\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 if (hostdata->flags & FLAG_CHECK_LAST_BYTE_SENT) {
1913 hostdata->flags &= ~FLAG_CHECK_LAST_BYTE_SENT;
1914 if (NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT) {
1915 hostdata->flags |= FLAG_HAS_LAST_BYTE_SENT;
Finn Thain52a6a1c2014-03-18 11:42:18 +11001916 dprintk(NDEBUG_LAST_BYTE_SENT, "scsi%d : last byte sent works\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918 }
1919 } else {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001920 dprintk(NDEBUG_C400_PWRITE, "Waiting for LASTBYTE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT));
Finn Thain52a6a1c2014-03-18 11:42:18 +11001922 dprintk(NDEBUG_C400_PWRITE, "Got LASTBYTE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
1924 }
1925#endif
1926 }
1927 NCR5380_write(MODE_REG, MR_BASE);
1928 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1929
1930 if ((!(p & SR_IO)) && (hostdata->flags & FLAG_NCR53C400)) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001931 dprintk(NDEBUG_C400_PWRITE, "53C400w: Checking for IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (NCR5380_read(BUS_AND_STATUS_REG) & BASR_IRQ) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11001933 dprintk(NDEBUG_C400_PWRITE, "53C400w: got it, reading reset interrupt reg\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1935 } else {
1936 printk("53C400w: IRQ NOT THERE!\n");
1937 }
1938 }
1939 *data = d + c;
1940 *count = 0;
1941 *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
1942#if defined(PSEUDO_DMA) && defined(UNSAFE)
1943 spin_lock_irq(instance->host_lock);
1944#endif /* defined(REAL_DMA_POLL) */
1945 return foo;
1946#endif /* def REAL_DMA */
1947}
1948#endif /* defined(REAL_DMA) | defined(PSEUDO_DMA) */
1949
1950/*
1951 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1952 *
1953 * Purpose : run through the various SCSI phases and do as the target
1954 * directs us to. Operates on the currently connected command,
1955 * instance->connected.
1956 *
1957 * Inputs : instance, instance for which we are doing commands
1958 *
1959 * Side effects : SCSI things happen, the disconnected queue will be
1960 * modified if a command disconnects, *instance->connected will
1961 * change.
1962 *
1963 * XXX Note : we need to watch for bus free or a reset condition here
1964 * to recover from an unexpected bus free condition.
1965 *
1966 * Locks: io_request_lock held by caller in IRQ mode
1967 */
1968
1969static void NCR5380_information_transfer(struct Scsi_Host *instance) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)instance->hostdata;
1971 unsigned char msgout = NOP;
1972 int sink = 0;
1973 int len;
1974#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
1975 int transfersize;
1976#endif
1977 unsigned char *data;
1978 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain710ddd02014-11-12 16:12:02 +11001979 struct scsi_cmnd *cmd = (struct scsi_cmnd *) hostdata->connected;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /* RvC: we need to set the end of the polling time */
1981 unsigned long poll_time = jiffies + USLEEP_POLL;
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 while (1) {
1984 tmp = NCR5380_read(STATUS_REG);
1985 /* We only have a valid SCSI phase when REQ is asserted */
1986 if (tmp & SR_REQ) {
1987 phase = (tmp & PHASE_MASK);
1988 if (phase != old_phase) {
1989 old_phase = phase;
1990 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1991 }
1992 if (sink && (phase != PHASE_MSGOUT)) {
1993 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1994
1995 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
1996 while (NCR5380_read(STATUS_REG) & SR_REQ);
1997 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1998 sink = 0;
1999 continue;
2000 }
2001 switch (phase) {
2002 case PHASE_DATAIN:
2003 case PHASE_DATAOUT:
2004#if (NDEBUG & NDEBUG_NO_DATAOUT)
2005 printk("scsi%d : NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n", instance->host_no);
2006 sink = 1;
2007 do_abort(instance);
2008 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002009 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return;
2011#endif
2012 /*
2013 * If there is no room left in the current buffer in the
2014 * scatter-gather list, move onto the next one.
2015 */
2016
2017 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
2018 ++cmd->SCp.buffer;
2019 --cmd->SCp.buffers_residual;
2020 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02002021 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002022 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 -07002023 }
2024 /*
2025 * The preferred transfer method is going to be
2026 * PSEUDO-DMA for systems that are strictly PIO,
2027 * since we can let the hardware do the handshaking.
2028 *
2029 * For this to work, we need to know the transfersize
2030 * ahead of time, since the pseudo-DMA code will sit
2031 * in an unconditional loop.
2032 */
2033
2034#if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
2035 /* KLL
2036 * PSEUDO_DMA is defined here. If this is the g_NCR5380
2037 * driver then it will always be defined, so the
2038 * FLAG_NO_PSEUDO_DMA is used to inhibit PDMA in the base
2039 * NCR5380 case. I think this is a fairly clean solution.
2040 * We supplement these 2 if's with the flag.
2041 */
2042#ifdef NCR5380_dma_xfer_len
2043 if (!cmd->device->borken && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && (transfersize = NCR5380_dma_xfer_len(instance, cmd)) != 0) {
2044#else
2045 transfersize = cmd->transfersize;
2046
2047#ifdef LIMIT_TRANSFERSIZE /* If we have problems with interrupt service */
2048 if (transfersize > 512)
2049 transfersize = 512;
2050#endif /* LIMIT_TRANSFERSIZE */
2051
2052 if (!cmd->device->borken && transfersize && !(hostdata->flags & FLAG_NO_PSEUDO_DMA) && cmd->SCp.this_residual && !(cmd->SCp.this_residual % transfersize)) {
2053 /* Limit transfers to 32K, for xx400 & xx406
2054 * pseudoDMA that transfers in 128 bytes blocks. */
2055 if (transfersize > 32 * 1024)
2056 transfersize = 32 * 1024;
2057#endif
2058 len = transfersize;
2059 if (NCR5380_transfer_dma(instance, &phase, &len, (unsigned char **) &cmd->SCp.ptr)) {
2060 /*
2061 * If the watchdog timer fires, all future accesses to this
2062 * device will use the polled-IO.
2063 */
Jeff Garzik017560f2005-10-24 18:04:36 -04002064 scmd_printk(KERN_INFO, cmd,
2065 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 cmd->device->borken = 1;
2067 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2068 sink = 1;
2069 do_abort(instance);
2070 cmd->result = DID_ERROR << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002071 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 /* XXX - need to source or sink data here, as appropriate */
2073 } else
2074 cmd->SCp.this_residual -= transfersize - len;
2075 } else
2076#endif /* defined(PSEUDO_DMA) || defined(REAL_DMA_POLL) */
2077 NCR5380_transfer_pio(instance, &phase, (int *) &cmd->SCp.this_residual, (unsigned char **)
2078 &cmd->SCp.ptr);
2079 break;
2080 case PHASE_MSGIN:
2081 len = 1;
2082 data = &tmp;
2083 NCR5380_transfer_pio(instance, &phase, &len, &data);
2084 cmd->SCp.Message = tmp;
2085
2086 switch (tmp) {
2087 /*
2088 * Linking lets us reduce the time required to get the
2089 * next command out to the device, hopefully this will
2090 * mean we don't waste another revolution due to the delays
2091 * required by ARBITRATION and another SELECTION.
2092 *
2093 * In the current implementation proposal, low level drivers
2094 * merely have to start the next command, pointed to by
2095 * next_link, done() is called as with unlinked commands.
2096 */
2097#ifdef LINKED
2098 case LINKED_CMD_COMPLETE:
2099 case LINKED_FLG_CMD_COMPLETE:
2100 /* Accept message by clearing ACK */
2101 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002102 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 -07002103 /*
2104 * Sanity check : A linked command should only terminate with
2105 * one of these messages if there are more linked commands
2106 * available.
2107 */
2108 if (!cmd->next_link) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002109 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 -07002110 sink = 1;
2111 do_abort(instance);
2112 return;
2113 }
2114 initialize_SCp(cmd->next_link);
2115 /* The next command is still part of this process */
2116 cmd->next_link->tag = cmd->tag;
2117 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002118 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 -07002119 cmd->scsi_done(cmd);
2120 cmd = hostdata->connected;
2121 break;
2122#endif /* def LINKED */
2123 case ABORT:
2124 case COMMAND_COMPLETE:
2125 /* Accept message by clearing ACK */
2126 sink = 1;
2127 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2128 hostdata->connected = NULL;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002129 dprintk(NDEBUG_QUEUES, "scsi%d : command for target %d, lun %llu completed\n", instance->host_no, cmd->device->id, cmd->device->lun);
2130 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 /*
2133 * I'm not sure what the correct thing to do here is :
2134 *
2135 * If the command that just executed is NOT a request
2136 * sense, the obvious thing to do is to set the result
2137 * code to the values of the stored parameters.
2138 *
2139 * If it was a REQUEST SENSE command, we need some way
2140 * to differentiate between the failure code of the original
2141 * and the failure code of the REQUEST sense - the obvious
2142 * case is success, where we fall through and leave the result
2143 * code unchanged.
2144 *
2145 * The non-obvious place is where the REQUEST SENSE failed
2146 */
2147
2148 if (cmd->cmnd[0] != REQUEST_SENSE)
2149 cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8);
2150 else if (status_byte(cmd->SCp.Status) != GOOD)
2151 cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
2152
Boaz Harrosh28424d32007-09-10 22:37:45 +03002153 if ((cmd->cmnd[0] == REQUEST_SENSE) &&
2154 hostdata->ses.cmd_len) {
2155 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
2156 hostdata->ses.cmd_len = 0 ;
2157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Boaz Harrosh28424d32007-09-10 22:37:45 +03002159 if ((cmd->cmnd[0] != REQUEST_SENSE) && (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
2160 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
2161
Finn Thain52a6a1c2014-03-18 11:42:18 +11002162 dprintk(NDEBUG_AUTOSENSE, "scsi%d : performing request sense\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164 LIST(cmd, hostdata->issue_queue);
2165 cmd->host_scribble = (unsigned char *)
2166 hostdata->issue_queue;
Finn Thain710ddd02014-11-12 16:12:02 +11002167 hostdata->issue_queue = (struct scsi_cmnd *) cmd;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002168 dprintk(NDEBUG_QUEUES, "scsi%d : REQUEST SENSE added to head of issue queue\n", instance->host_no);
Finn Thain997acab2014-11-12 16:11:54 +11002169 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 cmd->scsi_done(cmd);
2171 }
2172
2173 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2174 /*
2175 * Restore phase bits to 0 so an interrupted selection,
2176 * arbitration can resume.
2177 */
2178 NCR5380_write(TARGET_COMMAND_REG, 0);
2179
2180 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2181 barrier();
2182 return;
2183 case MESSAGE_REJECT:
2184 /* Accept message by clearing ACK */
2185 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2186 switch (hostdata->last_message) {
2187 case HEAD_OF_QUEUE_TAG:
2188 case ORDERED_QUEUE_TAG:
2189 case SIMPLE_QUEUE_TAG:
2190 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002191 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 break;
2193 default:
2194 break;
2195 }
2196 case DISCONNECT:{
2197 /* Accept message by clearing ACK */
2198 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2199 cmd->device->disconnect = 1;
2200 LIST(cmd, hostdata->disconnected_queue);
2201 cmd->host_scribble = (unsigned char *)
2202 hostdata->disconnected_queue;
2203 hostdata->connected = NULL;
2204 hostdata->disconnected_queue = cmd;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002205 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 -07002206 /*
2207 * Restore phase bits to 0 so an interrupted selection,
2208 * arbitration can resume.
2209 */
2210 NCR5380_write(TARGET_COMMAND_REG, 0);
2211
2212 /* Enable reselect interrupts */
2213 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2214 /* Wait for bus free to avoid nasty timeouts - FIXME timeout !*/
2215 /* NCR538_poll_politely(instance, STATUS_REG, SR_BSY, 0, 30 * HZ); */
2216 while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
2217 barrier();
2218 return;
2219 }
2220 /*
2221 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
2222 * operation, in violation of the SCSI spec so we can safely
2223 * ignore SAVE/RESTORE pointers calls.
2224 *
2225 * Unfortunately, some disks violate the SCSI spec and
2226 * don't issue the required SAVE_POINTERS message before
2227 * disconnecting, and we have to break spec to remain
2228 * compatible.
2229 */
2230 case SAVE_POINTERS:
2231 case RESTORE_POINTERS:
2232 /* Accept message by clearing ACK */
2233 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2234 break;
2235 case EXTENDED_MESSAGE:
2236/*
2237 * Extended messages are sent in the following format :
2238 * Byte
2239 * 0 EXTENDED_MESSAGE == 1
2240 * 1 length (includes one byte for code, doesn't
2241 * include first two bytes)
2242 * 2 code
2243 * 3..length+1 arguments
2244 *
2245 * Start the extended message buffer with the EXTENDED_MESSAGE
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002246 * byte, since spi_print_msg() wants the whole thing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 */
2248 extended_msg[0] = EXTENDED_MESSAGE;
2249 /* Accept first byte by clearing ACK */
2250 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002251 dprintk(NDEBUG_EXTENDED, "scsi%d : receiving extended message\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 len = 2;
2254 data = extended_msg + 1;
2255 phase = PHASE_MSGIN;
2256 NCR5380_transfer_pio(instance, &phase, &len, &data);
2257
Finn Thain52a6a1c2014-03-18 11:42:18 +11002258 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 -07002259
2260 if (!len && extended_msg[1] <= (sizeof(extended_msg) - 1)) {
2261 /* Accept third byte by clearing ACK */
2262 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2263 len = extended_msg[1] - 1;
2264 data = extended_msg + 3;
2265 phase = PHASE_MSGIN;
2266
2267 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002268 dprintk(NDEBUG_EXTENDED, "scsi%d : message received, residual %d\n", instance->host_no, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 switch (extended_msg[2]) {
2271 case EXTENDED_SDTR:
2272 case EXTENDED_WDTR:
2273 case EXTENDED_MODIFY_DATA_POINTER:
2274 case EXTENDED_EXTENDED_IDENTIFY:
2275 tmp = 0;
2276 }
2277 } else if (len) {
2278 printk("scsi%d: error receiving extended message\n", instance->host_no);
2279 tmp = 0;
2280 } else {
2281 printk("scsi%d: extended message code %02x length %d is too long\n", instance->host_no, extended_msg[2], extended_msg[1]);
2282 tmp = 0;
2283 }
2284 /* Fall through to reject message */
2285
2286 /*
2287 * If we get something weird that we aren't expecting,
2288 * reject it.
2289 */
2290 default:
2291 if (!tmp) {
2292 printk("scsi%d: rejecting message ", instance->host_no);
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002293 spi_print_msg(extended_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 printk("\n");
2295 } else if (tmp != EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04002296 scmd_printk(KERN_INFO, cmd,
2297 "rejecting unknown message %02x\n",tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 else
Jeff Garzik017560f2005-10-24 18:04:36 -04002299 scmd_printk(KERN_INFO, cmd,
2300 "rejecting unknown extended message code %02x, length %d\n", extended_msg[1], extended_msg[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 msgout = MESSAGE_REJECT;
2303 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2304 break;
2305 } /* switch (tmp) */
2306 break;
2307 case PHASE_MSGOUT:
2308 len = 1;
2309 data = &msgout;
2310 hostdata->last_message = msgout;
2311 NCR5380_transfer_pio(instance, &phase, &len, &data);
2312 if (msgout == ABORT) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002313 hostdata->busy[cmd->device->id] &= ~(1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 hostdata->connected = NULL;
2315 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 cmd->scsi_done(cmd);
2317 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2318 return;
2319 }
2320 msgout = NOP;
2321 break;
2322 case PHASE_CMDOUT:
2323 len = cmd->cmd_len;
2324 data = cmd->cmnd;
2325 /*
2326 * XXX for performance reasons, on machines with a
2327 * PSEUDO-DMA architecture we should probably
2328 * use the dma transfer function.
2329 */
2330 NCR5380_transfer_pio(instance, &phase, &len, &data);
2331 if (!cmd->device->disconnect && should_disconnect(cmd->cmnd[0])) {
2332 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002333 dprintk(NDEBUG_USLEEP, "scsi%d : issued command, sleeping until %lu\n", instance->host_no, hostdata->time_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return;
2335 }
2336 break;
2337 case PHASE_STATIN:
2338 len = 1;
2339 data = &tmp;
2340 NCR5380_transfer_pio(instance, &phase, &len, &data);
2341 cmd->SCp.Status = tmp;
2342 break;
2343 default:
2344 printk("scsi%d : unknown phase\n", instance->host_no);
Finn Thain4dde8f72014-03-18 11:42:17 +11002345 NCR5380_dprint(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 } /* switch(phase) */
2347 } /* if (tmp * SR_REQ) */
2348 else {
2349 /* RvC: go to sleep if polling time expired
2350 */
2351 if (!cmd->device->disconnect && time_after_eq(jiffies, poll_time)) {
2352 NCR5380_set_timer(hostdata, USLEEP_SLEEP);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002353 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 -07002354 return;
2355 }
2356 }
2357 } /* while (1) */
2358}
2359
2360/*
2361 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2362 *
2363 * Purpose : does reselection, initializing the instance->connected
Finn Thain710ddd02014-11-12 16:12:02 +11002364 * 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 -07002365 * nexus has been reestablished,
2366 *
2367 * Inputs : instance - this instance of the NCR5380.
2368 *
2369 * Locks: io_request_lock held by caller if IRQ driven
2370 */
2371
2372static void NCR5380_reselect(struct Scsi_Host *instance) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *)
2374 instance->hostdata;
2375 unsigned char target_mask;
2376 unsigned char lun, phase;
2377 int len;
2378 unsigned char msg[3];
2379 unsigned char *data;
Finn Thain710ddd02014-11-12 16:12:02 +11002380 struct scsi_cmnd *tmp = NULL, *prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 int abort = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 /*
2384 * Disable arbitration, etc. since the host adapter obviously
2385 * lost, and tell an interrupted NCR5380_select() to restart.
2386 */
2387
2388 NCR5380_write(MODE_REG, MR_BASE);
2389 hostdata->restart_select = 1;
2390
2391 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thain52a6a1c2014-03-18 11:42:18 +11002392 dprintk(NDEBUG_SELECTION, "scsi%d : reselect\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
2394 /*
2395 * At this point, we have detected that our SCSI ID is on the bus,
2396 * SEL is true and BSY was false for at least one bus settle delay
2397 * (400 ns).
2398 *
2399 * We must assert BSY ourselves, until the target drops the SEL
2400 * signal.
2401 */
2402
2403 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
2404
2405 /* FIXME: timeout too long, must fail to workqueue */
2406 if(NCR5380_poll_politely(instance, STATUS_REG, SR_SEL, 0, 2*HZ)<0)
2407 abort = 1;
2408
2409 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2410
2411 /*
2412 * Wait for target to go into MSGIN.
2413 * FIXME: timeout needed and fail to work queeu
2414 */
2415
2416 if(NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 2*HZ))
2417 abort = 1;
2418
2419 len = 1;
2420 data = msg;
2421 phase = PHASE_MSGIN;
2422 NCR5380_transfer_pio(instance, &phase, &len, &data);
2423
2424 if (!(msg[0] & 0x80)) {
2425 printk(KERN_ERR "scsi%d : expecting IDENTIFY message, got ", instance->host_no);
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002426 spi_print_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 abort = 1;
2428 } else {
2429 /* Accept message by clearing ACK */
2430 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2431 lun = (msg[0] & 0x07);
2432
2433 /*
2434 * We need to add code for SCSI-II to track which devices have
2435 * I_T_L_Q nexuses established, and which have simple I_T_L
2436 * nexuses so we can chose to do additional data transfer.
2437 */
2438
2439 /*
2440 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2441 * just reestablished, and remove it from the disconnected queue.
2442 */
2443
2444
Finn Thain710ddd02014-11-12 16:12:02 +11002445 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 +02002446 if ((target_mask == (1 << tmp->device->id)) && (lun == (u8)tmp->device->lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 ) {
2448 if (prev) {
2449 REMOVE(prev, prev->host_scribble, tmp, tmp->host_scribble);
2450 prev->host_scribble = tmp->host_scribble;
2451 } else {
2452 REMOVE(-1, hostdata->disconnected_queue, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002453 hostdata->disconnected_queue = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 }
2455 tmp->host_scribble = NULL;
2456 break;
2457 }
2458 if (!tmp) {
2459 printk(KERN_ERR "scsi%d : warning : target bitmask %02x lun %d not in disconnect_queue.\n", instance->host_no, target_mask, lun);
2460 /*
2461 * Since we have an established nexus that we can't do anything with,
2462 * we must abort it.
2463 */
2464 abort = 1;
2465 }
2466 }
2467
2468 if (abort) {
2469 do_abort(instance);
2470 } else {
2471 hostdata->connected = tmp;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002472 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 -07002473 }
2474}
2475
2476/*
2477 * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
2478 *
2479 * Purpose : called by interrupt handler when DMA finishes or a phase
2480 * mismatch occurs (which would finish the DMA transfer).
2481 *
2482 * Inputs : instance - this instance of the NCR5380.
2483 *
Finn Thain710ddd02014-11-12 16:12:02 +11002484 * Returns : pointer to the scsi_cmnd structure for which the I_T_L
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 * nexus has been reestablished, on failure NULL is returned.
2486 */
2487
2488#ifdef REAL_DMA
2489static void NCR5380_dma_complete(NCR5380_instance * instance) {
Yoann Padioleauf8343682007-06-01 00:46:36 -07002490 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 int transferred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 /*
2494 * XXX this might not be right.
2495 *
2496 * Wait for final byte to transfer, ie wait for ACK to go false.
2497 *
2498 * We should use the Last Byte Sent bit, unfortunately this is
2499 * not available on the 5380/5381 (only the various CMOS chips)
2500 *
2501 * FIXME: timeout, and need to handle long timeout/irq case
2502 */
2503
2504 NCR5380_poll_politely(instance, BUS_AND_STATUS_REG, BASR_ACK, 0, 5*HZ);
2505
2506 NCR5380_write(MODE_REG, MR_BASE);
2507 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2508
2509 /*
2510 * The only places we should see a phase mismatch and have to send
2511 * data from the same set of pointers will be the data transfer
2512 * phases. So, residual, requested length are only important here.
2513 */
2514
2515 if (!(hostdata->connected->SCp.phase & SR_CD)) {
2516 transferred = instance->dmalen - NCR5380_dma_residual();
2517 hostdata->connected->SCp.this_residual -= transferred;
2518 hostdata->connected->SCp.ptr += transferred;
2519 }
2520}
2521#endif /* def REAL_DMA */
2522
2523/*
Finn Thain710ddd02014-11-12 16:12:02 +11002524 * Function : int NCR5380_abort (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 *
2526 * Purpose : abort a command
2527 *
Finn Thain710ddd02014-11-12 16:12:02 +11002528 * Inputs : cmd - the scsi_cmnd to abort, code - code to set the
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002529 * host byte of the result field to, if zero DID_ABORTED is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 * used.
2531 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002532 * Returns : SUCCESS - success, FAILED on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 *
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002534 * XXX - there is no way to abort the command that is currently
2535 * connected, you have to wait for it to complete. If this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 * a problem, we could implement longjmp() / setjmp(), setjmp()
2537 * called where the loop started in NCR5380_main().
2538 *
2539 * Locks: host lock taken by caller
2540 */
2541
Finn Thain710ddd02014-11-12 16:12:02 +11002542static int NCR5380_abort(struct scsi_cmnd *cmd)
2543{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 struct Scsi_Host *instance = cmd->device->host;
2545 struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
Finn Thain710ddd02014-11-12 16:12:02 +11002546 struct scsi_cmnd *tmp, **prev;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002547
2548 scmd_printk(KERN_WARNING, cmd, "aborting command\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 NCR5380_print_status(instance);
2551
Finn Thain52a6a1c2014-03-18 11:42:18 +11002552 dprintk(NDEBUG_ABORT, "scsi%d : abort called\n", instance->host_no);
2553 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 -07002554
2555#if 0
2556/*
2557 * Case 1 : If the command is the currently executing command,
2558 * we'll set the aborted flag and return control so that
2559 * information transfer routine can exit cleanly.
2560 */
2561
2562 if (hostdata->connected == cmd) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002563 dprintk(NDEBUG_ABORT, "scsi%d : aborting connected command\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 hostdata->aborted = 1;
2565/*
2566 * We should perform BSY checking, and make sure we haven't slipped
2567 * into BUS FREE.
2568 */
2569
2570 NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN);
2571/*
2572 * Since we can't change phases until we've completed the current
2573 * handshake, we have to source or sink a byte of data if the current
2574 * phase is not MSGOUT.
2575 */
2576
2577/*
2578 * Return control to the executing NCR drive so we can clear the
2579 * aborted flag and get back into our main loop.
2580 */
2581
Hannes Reineckeb6c92b72014-10-30 09:44:36 +01002582 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
2584#endif
2585
2586/*
2587 * Case 2 : If the command hasn't been issued yet, we simply remove it
2588 * from the issue queue.
2589 */
2590
Finn Thain52a6a1c2014-03-18 11:42:18 +11002591 dprintk(NDEBUG_ABORT, "scsi%d : abort going into loop.\n", instance->host_no);
Finn Thain710ddd02014-11-12 16:12:02 +11002592 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 -07002593 if (cmd == tmp) {
2594 REMOVE(5, *prev, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002595 (*prev) = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 tmp->host_scribble = NULL;
2597 tmp->result = DID_ABORT << 16;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002598 dprintk(NDEBUG_ABORT, "scsi%d : abort removed command from issue queue.\n", instance->host_no);
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002599 tmp->scsi_done(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return SUCCESS;
2601 }
2602#if (NDEBUG & NDEBUG_ABORT)
2603 /* KLL */
2604 else if (prev == tmp)
2605 printk(KERN_ERR "scsi%d : LOOP\n", instance->host_no);
2606#endif
2607
2608/*
2609 * Case 3 : If any commands are connected, we're going to fail the abort
2610 * and let the high level SCSI driver retry at a later time or
2611 * issue a reset.
2612 *
2613 * Timeouts, and therefore aborted commands, will be highly unlikely
2614 * and handling them cleanly in this situation would make the common
2615 * case of noresets less efficient, and would pollute our code. So,
2616 * we fail.
2617 */
2618
2619 if (hostdata->connected) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002620 dprintk(NDEBUG_ABORT, "scsi%d : abort failed, command connected.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 return FAILED;
2622 }
2623/*
2624 * Case 4: If the command is currently disconnected from the bus, and
2625 * there are no connected commands, we reconnect the I_T_L or
2626 * I_T_L_Q nexus associated with it, go into message out, and send
2627 * an abort message.
2628 *
2629 * This case is especially ugly. In order to reestablish the nexus, we
2630 * need to call NCR5380_select(). The easiest way to implement this
2631 * function was to abort if the bus was busy, and let the interrupt
2632 * handler triggered on the SEL for reselect take care of lost arbitrations
2633 * where necessary, meaning interrupts need to be enabled.
2634 *
2635 * When interrupts are enabled, the queues may change - so we
2636 * can't remove it from the disconnected queue before selecting it
2637 * because that could cause a failure in hashing the nexus if that
2638 * device reselected.
2639 *
2640 * Since the queues may change, we can't use the pointers from when we
2641 * first locate it.
2642 *
2643 * So, we must first locate the command, and if NCR5380_select()
2644 * succeeds, then issue the abort, relocate the command and remove
2645 * it from the disconnected queue.
2646 */
2647
Finn Thain710ddd02014-11-12 16:12:02 +11002648 for (tmp = (struct scsi_cmnd *) hostdata->disconnected_queue; tmp; tmp = (struct scsi_cmnd *) tmp->host_scribble)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (cmd == tmp) {
Finn Thain52a6a1c2014-03-18 11:42:18 +11002650 dprintk(NDEBUG_ABORT, "scsi%d : aborting disconnected command.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Finn Thain76f13b92014-11-12 16:11:53 +11002652 if (NCR5380_select(instance, cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return FAILED;
Finn Thain52a6a1c2014-03-18 11:42:18 +11002654 dprintk(NDEBUG_ABORT, "scsi%d : nexus reestablished.\n", instance->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 do_abort(instance);
2657
Finn Thain710ddd02014-11-12 16:12:02 +11002658 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 -07002659 if (cmd == tmp) {
2660 REMOVE(5, *prev, tmp, tmp->host_scribble);
Finn Thain710ddd02014-11-12 16:12:02 +11002661 *prev = (struct scsi_cmnd *) tmp->host_scribble;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 tmp->host_scribble = NULL;
2663 tmp->result = DID_ABORT << 16;
Matthew Wilcoxcce99c62007-09-25 12:42:01 -04002664 tmp->scsi_done(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 return SUCCESS;
2666 }
2667 }
2668/*
2669 * Case 5 : If we reached this point, the command was not found in any of
2670 * the queues.
2671 *
2672 * We probably reached this point because of an unlikely race condition
2673 * between the command completing successfully and the abortion code,
2674 * so we won't panic, but we will notify the user in case something really
2675 * broke.
2676 */
2677 printk(KERN_WARNING "scsi%d : warning : SCSI command probably completed successfully\n"
2678 " before abortion\n", instance->host_no);
2679 return FAILED;
2680}
2681
2682
2683/*
Finn Thain710ddd02014-11-12 16:12:02 +11002684 * Function : int NCR5380_bus_reset (struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 *
2686 * Purpose : reset the SCSI bus.
2687 *
2688 * Returns : SUCCESS
2689 *
2690 * Locks: host lock taken by caller
2691 */
2692
Finn Thain710ddd02014-11-12 16:12:02 +11002693static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002694{
2695 struct Scsi_Host *instance = cmd->device->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002697 NCR5380_print_status(instance);
2698
2699 spin_lock_irq(instance->host_lock);
2700 do_reset(instance);
2701 spin_unlock_irq(instance->host_lock);
2702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 return SUCCESS;
2704}