blob: 35419ba32c467dd721628230cebd58a754d62531 [file] [log] [blame]
Finn Thainaff0cf92016-01-03 16:06:09 +11001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * NCR 5380 generic driver routines. These should make it *trivial*
Finn Thain594d4ba2016-01-03 16:06:10 +11003 * to implement 5380 SCSI drivers under Linux with a non-trantor
4 * architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Finn Thain594d4ba2016-01-03 16:06:10 +11006 * Note that these routines also work with NR53c400 family chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Copyright 1993, Drew Eckhardt
Finn Thain594d4ba2016-01-03 16:06:10 +11009 * Visionary Computing
10 * (Unix and Linux consulting and custom programming)
11 * drew@colorado.edu
12 * +1 (303) 666-5836
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Finn Thainaff0cf92016-01-03 16:06:09 +110014 * For more information, please consult
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * NCR 5380 Family
17 * SCSI Protocol Controller
18 * Databook
19 *
20 * NCR Microelectronics
21 * 1635 Aeroplaza Drive
22 * Colorado Springs, CO 80916
23 * 1+ (719) 578-3400
24 * 1+ (800) 334-5454
25 */
26
27/*
Finn Thainc16df322016-01-03 16:06:08 +110028 * With contributions from Ray Van Tassle, Ingmar Baumgart,
29 * Ronald van Cuijlenborg, Alan Cox and others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Finn Thain52d3e562016-03-23 21:10:20 +110032/* Ported to Atari by Roman Hodek and others. */
33
Finn Thaine9db3192016-03-23 21:10:21 +110034/* Adapted for the Sun 3 by Sam Creasey. */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Design
38 *
Finn Thainaff0cf92016-01-03 16:06:09 +110039 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * one simply writes appropriate system specific macros (ie, data
Finn Thainaff0cf92016-01-03 16:06:09 +110041 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * memory mapped) and drops this file in their 'C' wrapper.
43 *
Finn Thainaff0cf92016-01-03 16:06:09 +110044 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * each 5380 in the system - commands that haven't been issued yet,
Finn Thainaff0cf92016-01-03 16:06:09 +110046 * and commands that are currently executing. This means that an
47 * unlimited number of commands may be queued, letting
48 * more commands propagate from the higher driver levels giving higher
49 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
50 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * while a command is already executing.
52 *
53 *
Finn Thainaff0cf92016-01-03 16:06:09 +110054 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *
Finn Thainaff0cf92016-01-03 16:06:09 +110056 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
57 * piece of hardware that requires you to sit in a loop polling for
58 * the REQ signal as long as you are connected. Some devices are
59 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Finn Thain686f3992016-01-03 16:05:26 +110060 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * broken devices are the exception rather than the rule and I'd rather
62 * spend my time optimizing for the normal case.
63 *
64 * Architecture :
65 *
66 * At the heart of the design is a coroutine, NCR5380_main,
67 * which is started from a workqueue for each NCR5380 host in the
68 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
69 * removing the commands from the issue queue and calling
Finn Thainaff0cf92016-01-03 16:06:09 +110070 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *
72 * Once a nexus is established, the NCR5380_information_transfer()
73 * phase goes through the various phases as instructed by the target.
74 * if the target goes into MSG IN and sends a DISCONNECT message,
75 * the command structure is placed into the per instance disconnected
Finn Thainaff0cf92016-01-03 16:06:09 +110076 * queue, and NCR5380_main tries to find more work. If the target is
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * idle for too long, the system will try to sleep.
78 *
79 * If a command has disconnected, eventually an interrupt will trigger,
80 * calling NCR5380_intr() which will in turn call NCR5380_reselect
81 * to reestablish a nexus. This will run main if necessary.
82 *
Finn Thainaff0cf92016-01-03 16:06:09 +110083 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * appropriate.
85 *
Finn Thainaff0cf92016-01-03 16:06:09 +110086 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * structures, being initialized after the command is connected
88 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
89 * Note that in violation of the standard, an implicit SAVE POINTERS operation
90 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
91 */
92
93/*
94 * Using this file :
95 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Finn Thainaff0cf92016-01-03 16:06:09 +110096 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * and macros and include this file in your driver.
98 *
Finn Thainaff0cf92016-01-03 16:06:09 +110099 * These macros control options :
100 * AUTOPROBE_IRQ - if defined, the NCR5380_probe_irq() function will be
Finn Thain594d4ba2016-01-03 16:06:10 +1100101 * defined.
Finn Thainaff0cf92016-01-03 16:06:09 +1100102 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Finn Thain594d4ba2016-01-03 16:06:10 +1100104 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
106 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
Finn Thain594d4ba2016-01-03 16:06:10 +1100107 * transceivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * PSEUDO_DMA - if defined, PSEUDO DMA is used during the data transfer phases.
110 *
Finn Thain8053b0e2016-03-23 21:10:19 +1100111 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
112 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * These macros MUST be defined :
Finn Thainaff0cf92016-01-03 16:06:09 +1100114 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * NCR5380_read(register) - read from the specified register
116 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100117 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100119 * NCR5380_implementation_fields - additional fields needed for this
Finn Thain594d4ba2016-01-03 16:06:10 +1100120 * specific implementation of the NCR5380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * Either real DMA *or* pseudo DMA may be implemented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * NCR5380_dma_write_setup(instance, src, count) - initialize
125 * NCR5380_dma_read_setup(instance, dst, count) - initialize
126 * NCR5380_dma_residual(instance); - residual count
127 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * The generic driver is initialized by calling NCR5380_init(instance),
Finn Thainaff0cf92016-01-03 16:06:09 +1100129 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
131 * possible) function may be used.
132 */
133
Finn Thaine5d55d12016-03-23 21:10:16 +1100134#ifndef NCR5380_io_delay
135#define NCR5380_io_delay(x)
136#endif
137
Finn Thain52d3e562016-03-23 21:10:20 +1100138#ifndef NCR5380_acquire_dma_irq
139#define NCR5380_acquire_dma_irq(x) (1)
140#endif
141
142#ifndef NCR5380_release_dma_irq
143#define NCR5380_release_dma_irq(x)
144#endif
145
Finn Thain54d8fe42016-01-03 16:05:06 +1100146static int do_abort(struct Scsi_Host *);
147static void do_reset(struct Scsi_Host *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Finn Thainc16df322016-01-03 16:06:08 +1100149/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100150 * initialize_SCp - init the scsi pointer field
Finn Thain594d4ba2016-01-03 16:06:10 +1100151 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100153 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
155
Finn Thain710ddd02014-11-12 16:12:02 +1100156static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Finn Thainaff0cf92016-01-03 16:06:09 +1100158 /*
159 * Initialize the Scsi Pointer field so that all of the commands in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * various queues are valid.
161 */
162
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200163 if (scsi_bufflen(cmd)) {
164 cmd->SCp.buffer = scsi_sglist(cmd);
165 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200166 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 cmd->SCp.this_residual = cmd->SCp.buffer->length;
168 } else {
169 cmd->SCp.buffer = NULL;
170 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200171 cmd->SCp.ptr = NULL;
172 cmd->SCp.this_residual = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100174
175 cmd->SCp.Status = 0;
176 cmd->SCp.Message = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/**
Finn Thainb32ade12016-01-03 16:05:41 +1100180 * NCR5380_poll_politely2 - wait for two chip register values
Finn Thain2f854b82016-01-03 16:05:22 +1100181 * @instance: controller to poll
Finn Thainb32ade12016-01-03 16:05:41 +1100182 * @reg1: 5380 register to poll
183 * @bit1: Bitmask to check
184 * @val1: Expected value
185 * @reg2: Second 5380 register to poll
186 * @bit2: Second bitmask to check
187 * @val2: Second expected value
Finn Thain2f854b82016-01-03 16:05:22 +1100188 * @wait: Time-out in jiffies
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
Finn Thain2f854b82016-01-03 16:05:22 +1100190 * Polls the chip in a reasonably efficient manner waiting for an
191 * event to occur. After a short quick poll we begin to yield the CPU
192 * (if possible). In irq contexts the time-out is arbitrarily limited.
193 * Callers may hold locks as long as they are held in irq mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Finn Thainb32ade12016-01-03 16:05:41 +1100195 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Finn Thainb32ade12016-01-03 16:05:41 +1100198static int NCR5380_poll_politely2(struct Scsi_Host *instance,
199 int reg1, int bit1, int val1,
200 int reg2, int bit2, int val2, int wait)
Finn Thain2f854b82016-01-03 16:05:22 +1100201{
202 struct NCR5380_hostdata *hostdata = shost_priv(instance);
203 unsigned long deadline = jiffies + wait;
204 unsigned long n;
205
206 /* Busy-wait for up to 10 ms */
207 n = min(10000U, jiffies_to_usecs(wait));
208 n *= hostdata->accesses_per_ms;
Finn Thainb32ade12016-01-03 16:05:41 +1100209 n /= 2000;
Finn Thain2f854b82016-01-03 16:05:22 +1100210 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100211 if ((NCR5380_read(reg1) & bit1) == val1)
212 return 0;
213 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100216 } while (n--);
217
218 if (irqs_disabled() || in_interrupt())
219 return -ETIMEDOUT;
220
221 /* Repeatedly sleep for 1 ms until deadline */
222 while (time_is_after_jiffies(deadline)) {
223 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100224 if ((NCR5380_read(reg1) & bit1) == val1)
225 return 0;
226 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Finn Thain2f854b82016-01-03 16:05:22 +1100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -ETIMEDOUT;
231}
232
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100233#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static struct {
235 unsigned char mask;
236 const char *name;
Finn Thainaff0cf92016-01-03 16:06:09 +1100237} signals[] = {
238 {SR_DBP, "PARITY"},
239 {SR_RST, "RST"},
240 {SR_BSY, "BSY"},
241 {SR_REQ, "REQ"},
242 {SR_MSG, "MSG"},
243 {SR_CD, "CD"},
244 {SR_IO, "IO"},
245 {SR_SEL, "SEL"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100247},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248basrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100249 {BASR_END_DMA_TRANSFER, "END OF DMA"},
250 {BASR_DRQ, "DRQ"},
251 {BASR_PARITY_ERROR, "PARITY ERROR"},
252 {BASR_IRQ, "IRQ"},
253 {BASR_PHASE_MATCH, "PHASE MATCH"},
254 {BASR_BUSY_ERROR, "BUSY ERROR"},
Finn Thainaff0cf92016-01-03 16:06:09 +1100255 {BASR_ATN, "ATN"},
256 {BASR_ACK, "ACK"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100258},
259icrs[] = {
260 {ICR_ASSERT_RST, "ASSERT RST"},
Finn Thain12866b92016-03-23 21:10:25 +1100261 {ICR_ARBITRATION_PROGRESS, "ARB. IN PROGRESS"},
262 {ICR_ARBITRATION_LOST, "LOST ARB."},
Finn Thainaff0cf92016-01-03 16:06:09 +1100263 {ICR_ASSERT_ACK, "ASSERT ACK"},
264 {ICR_ASSERT_BSY, "ASSERT BSY"},
265 {ICR_ASSERT_SEL, "ASSERT SEL"},
266 {ICR_ASSERT_ATN, "ASSERT ATN"},
267 {ICR_ASSERT_DATA, "ASSERT DATA"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100269},
270mrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100271 {MR_BLOCK_DMA_MODE, "BLOCK DMA MODE"},
272 {MR_TARGET, "TARGET"},
273 {MR_ENABLE_PAR_CHECK, "PARITY CHECK"},
274 {MR_ENABLE_PAR_INTR, "PARITY INTR"},
275 {MR_ENABLE_EOP_INTR, "EOP INTR"},
276 {MR_MONITOR_BSY, "MONITOR BSY"},
277 {MR_DMA_MODE, "DMA MODE"},
278 {MR_ARBITRATE, "ARBITRATE"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 {0, NULL}
280};
281
282/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100283 * NCR5380_print - print scsi bus signals
284 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100286 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
288
289static void NCR5380_print(struct Scsi_Host *instance)
290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
294 status = NCR5380_read(STATUS_REG);
295 mr = NCR5380_read(MODE_REG);
296 icr = NCR5380_read(INITIATOR_COMMAND_REG);
297 basr = NCR5380_read(BUS_AND_STATUS_REG);
298
Finn Thain12866b92016-03-23 21:10:25 +1100299 printk(KERN_DEBUG "SR = 0x%02x : ", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 for (i = 0; signals[i].mask; ++i)
301 if (status & signals[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100302 printk(KERN_CONT "%s, ", signals[i].name);
303 printk(KERN_CONT "\nBASR = 0x%02x : ", basr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 for (i = 0; basrs[i].mask; ++i)
305 if (basr & basrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100306 printk(KERN_CONT "%s, ", basrs[i].name);
307 printk(KERN_CONT "\nICR = 0x%02x : ", icr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 for (i = 0; icrs[i].mask; ++i)
309 if (icr & icrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100310 printk(KERN_CONT "%s, ", icrs[i].name);
311 printk(KERN_CONT "\nMR = 0x%02x : ", mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 for (i = 0; mrs[i].mask; ++i)
313 if (mr & mrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100314 printk(KERN_CONT "%s, ", mrs[i].name);
315 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Finn Thain0d2cf862016-01-03 16:06:11 +1100318static struct {
319 unsigned char value;
320 const char *name;
321} phases[] = {
322 {PHASE_DATAOUT, "DATAOUT"},
323 {PHASE_DATAIN, "DATAIN"},
324 {PHASE_CMDOUT, "CMDOUT"},
325 {PHASE_STATIN, "STATIN"},
326 {PHASE_MSGOUT, "MSGOUT"},
327 {PHASE_MSGIN, "MSGIN"},
328 {PHASE_UNKNOWN, "UNKNOWN"}
329};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Finn Thainc16df322016-01-03 16:06:08 +1100331/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100332 * NCR5380_print_phase - show SCSI phase
Finn Thain594d4ba2016-01-03 16:06:10 +1100333 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100335 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
338static void NCR5380_print_phase(struct Scsi_Host *instance)
339{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 unsigned char status;
341 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 status = NCR5380_read(STATUS_REG);
344 if (!(status & SR_REQ))
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100345 shost_printk(KERN_DEBUG, instance, "REQ not asserted, phase unknown.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 else {
Finn Thain0d2cf862016-01-03 16:06:11 +1100347 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
348 (phases[i].value != (status & PHASE_MASK)); ++i)
349 ;
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100350 shost_printk(KERN_DEBUG, instance, "phase %s\n", phases[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352}
353#endif
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200356static int probe_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100359 * probe_intr - helper for IRQ autoprobe
360 * @irq: interrupt number
361 * @dev_id: unused
362 * @regs: unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100364 * Set a flag to indicate the IRQ in question was received. This is
365 * used by the IRQ probe code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Finn Thainaff0cf92016-01-03 16:06:09 +1100367
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200368static irqreturn_t probe_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 probe_irq = irq;
371 return IRQ_HANDLED;
372}
373
374/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100375 * NCR5380_probe_irq - find the IRQ of an NCR5380
376 * @instance: NCR5380 controller
377 * @possible: bitmask of ISA IRQ lines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100379 * Autoprobe for the IRQ line used by the NCR5380 by triggering an IRQ
380 * and then looking to see what interrupt actually turned up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
382
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200383static int __maybe_unused NCR5380_probe_irq(struct Scsi_Host *instance,
Andrew Morton702809c2007-05-23 14:41:56 -0700384 int possible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Finn Thaine8a60142016-01-03 16:05:54 +1100386 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 unsigned long timeout;
388 int trying_irqs, i, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Finn Thain22f5f102014-11-12 16:11:56 +1100390 for (trying_irqs = 0, i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100391 if ((mask & possible) && (request_irq(i, &probe_intr, 0, "NCR-probe", NULL) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 trying_irqs |= mask;
393
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500394 timeout = jiffies + msecs_to_jiffies(250);
Finn Thain22f5f102014-11-12 16:11:56 +1100395 probe_irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * A interrupt is triggered whenever BSY = false, SEL = true
Finn Thainaff0cf92016-01-03 16:06:09 +1100399 * and a bit set in the SELECT_ENABLE_REG is asserted on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * SCSI bus.
401 *
402 * Note that the bus is only driven when the phase control signals
403 * (I/O, C/D, and MSG) match those in the TCR, so we must reset that
404 * to zero.
405 */
406
407 NCR5380_write(TARGET_COMMAND_REG, 0);
408 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
409 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
410 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL);
411
Finn Thain22f5f102014-11-12 16:11:56 +1100412 while (probe_irq == NO_IRQ && time_before(jiffies, timeout))
Nishanth Aravamudana9a30472005-11-07 01:01:20 -0800413 schedule_timeout_uninterruptible(1);
Finn Thainaff0cf92016-01-03 16:06:09 +1100414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 NCR5380_write(SELECT_ENABLE_REG, 0);
416 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
417
Finn Thain22f5f102014-11-12 16:11:56 +1100418 for (i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (trying_irqs & mask)
420 free_irq(i, NULL);
421
422 return probe_irq;
423}
424
425/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100426 * NCR58380_info - report driver and host information
427 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100429 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
431
Finn Thain8c325132014-11-12 16:11:58 +1100432static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Finn Thain8c325132014-11-12 16:11:58 +1100434 struct NCR5380_hostdata *hostdata = shost_priv(instance);
435
436 return hostdata->info;
437}
438
439static void prepare_info(struct Scsi_Host *instance)
440{
441 struct NCR5380_hostdata *hostdata = shost_priv(instance);
442
443 snprintf(hostdata->info, sizeof(hostdata->info),
444 "%s, io_port 0x%lx, n_io_port %d, "
445 "base 0x%lx, irq %d, "
446 "can_queue %d, cmd_per_lun %d, "
447 "sg_tablesize %d, this_id %d, "
Finn Thainbe3f4122016-01-03 16:05:50 +1100448 "flags { %s%s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100449 "options { %s} ",
450 instance->hostt->name, instance->io_port, instance->n_io_port,
451 instance->base, instance->irq,
452 instance->can_queue, instance->cmd_per_lun,
453 instance->sg_tablesize, instance->this_id,
Finn Thain1bb46002016-03-23 21:10:14 +1100454 hostdata->flags & FLAG_DMA_FIXUP ? "DMA_FIXUP " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100455 hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100456 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#ifdef DIFFERENTIAL
Finn Thain8c325132014-11-12 16:11:58 +1100458 "DIFFERENTIAL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100461 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
Finn Thain8c325132014-11-12 16:11:58 +1100463 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100467 * NCR5380_init - initialise an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100468 * @instance: adapter to configure
469 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100471 * Initializes *instance and corresponding 5380 chip,
472 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100474 * Notes : I assume that the host, hostno, and id bits have been
Finn Thain0d2cf862016-01-03 16:06:11 +1100475 * set correctly. I don't care about the irq and other fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100477 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800480static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Finn Thaine8a60142016-01-03 16:05:54 +1100482 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100483 int i;
Finn Thain2f854b82016-01-03 16:05:22 +1100484 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Finn Thainae5e33a2016-03-23 21:10:23 +1100486 instance->max_lun = 7;
487
Finn Thain0d2cf862016-01-03 16:06:11 +1100488 hostdata->host = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 hostdata->id_mask = 1 << instance->this_id;
Finn Thain0d2cf862016-01-03 16:06:11 +1100490 hostdata->id_higher_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
492 if (i > hostdata->id_mask)
493 hostdata->id_higher_mask |= i;
494 for (i = 0; i < 8; ++i)
495 hostdata->busy[i] = 0;
Finn Thaine4dec682016-03-23 21:10:12 +1100496 hostdata->dma_len = 0;
497
Finn Thain11d2f632016-01-03 16:05:51 +1100498 spin_lock_init(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 hostdata->connected = NULL;
Finn Thainf27db8e2016-01-03 16:06:00 +1100500 hostdata->sensing = NULL;
501 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain32b26a12016-01-03 16:05:58 +1100502 INIT_LIST_HEAD(&hostdata->unissued);
503 INIT_LIST_HEAD(&hostdata->disconnected);
504
Finn Thain55181be2016-01-03 16:05:42 +1100505 hostdata->flags = flags;
Finn Thainaff0cf92016-01-03 16:06:09 +1100506
Finn Thain8d8601a2016-01-03 16:05:37 +1100507 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100508 hostdata->work_q = alloc_workqueue("ncr5380_%d",
509 WQ_UNBOUND | WQ_MEM_RECLAIM,
510 1, instance->host_no);
511 if (!hostdata->work_q)
512 return -ENOMEM;
513
Finn Thain8c325132014-11-12 16:11:58 +1100514 prepare_info(instance);
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
517 NCR5380_write(MODE_REG, MR_BASE);
518 NCR5380_write(TARGET_COMMAND_REG, 0);
519 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thain2f854b82016-01-03 16:05:22 +1100520
521 /* Calibrate register polling loop */
522 i = 0;
523 deadline = jiffies + 1;
524 do {
525 cpu_relax();
526 } while (time_is_after_jiffies(deadline));
527 deadline += msecs_to_jiffies(256);
528 do {
529 NCR5380_read(STATUS_REG);
530 ++i;
531 cpu_relax();
532 } while (time_is_after_jiffies(deadline));
533 hostdata->accesses_per_ms = i / 256;
534
Finn Thainb6488f92016-01-03 16:05:08 +1100535 return 0;
536}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Finn Thainb6488f92016-01-03 16:05:08 +1100538/**
539 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
540 * @instance: adapter to check
541 *
542 * If the system crashed, it may have crashed with a connected target and
543 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
544 * currently established nexus, which we know nothing about. Failing that
545 * do a bus reset.
546 *
547 * Note that a bus reset will cause the chip to assert IRQ.
548 *
549 * Returns 0 if successful, otherwise -ENXIO.
550 */
551
552static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
553{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100554 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100555 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
558 switch (pass) {
559 case 1:
560 case 3:
561 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100562 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
563 NCR5380_poll_politely(instance,
564 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100567 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 do_abort(instance);
569 break;
570 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100571 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100573 /* Wait after a reset; the SCSI standard calls for
574 * 250ms, we wait 500ms to be on the safe side.
575 * But some Toshiba CD-ROMs need ten times that.
576 */
577 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
578 msleep(2500);
579 else
580 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100583 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -ENXIO;
585 }
586 }
587 return 0;
588}
589
590/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100591 * NCR5380_exit - remove an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100592 * @instance: adapter to remove
Finn Thain0d2cf862016-01-03 16:06:11 +1100593 *
594 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
596
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800597static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Finn Thaine8a60142016-01-03 16:05:54 +1100599 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Finn Thain8d8601a2016-01-03 16:05:37 +1100601 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100602 destroy_workqueue(hostdata->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605/**
Finn Thain677e0192016-01-03 16:05:59 +1100606 * complete_cmd - finish processing a command and return it to the SCSI ML
607 * @instance: the host instance
608 * @cmd: command to complete
609 */
610
611static void complete_cmd(struct Scsi_Host *instance,
612 struct scsi_cmnd *cmd)
613{
614 struct NCR5380_hostdata *hostdata = shost_priv(instance);
615
616 dsprintk(NDEBUG_QUEUES, instance, "complete_cmd: cmd %p\n", cmd);
617
Finn Thainf27db8e2016-01-03 16:06:00 +1100618 if (hostdata->sensing == cmd) {
619 /* Autosense processing ends here */
Finn Thainacef2f02018-09-27 11:17:11 +1000620 if (status_byte(cmd->result) != GOOD) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100621 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thainacef2f02018-09-27 11:17:11 +1000622 } else {
Finn Thainf27db8e2016-01-03 16:06:00 +1100623 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thainacef2f02018-09-27 11:17:11 +1000624 set_driver_byte(cmd, DRIVER_SENSE);
625 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100626 hostdata->sensing = NULL;
627 }
628
Finn Thain677e0192016-01-03 16:05:59 +1100629 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
630
631 cmd->scsi_done(cmd);
632}
633
634/**
Finn Thain1bb40582016-01-03 16:05:29 +1100635 * NCR5380_queue_command - queue a command
636 * @instance: the relevant SCSI adapter
637 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 *
Finn Thain1bb40582016-01-03 16:05:29 +1100639 * cmd is added to the per-instance issue queue, with minor
640 * twiddling done to the host specific fields of cmd. If the
641 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
643
Finn Thain1bb40582016-01-03 16:05:29 +1100644static int NCR5380_queue_command(struct Scsi_Host *instance,
645 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Finn Thain1bb40582016-01-03 16:05:29 +1100647 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain32b26a12016-01-03 16:05:58 +1100648 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
Finn Thain1bb40582016-01-03 16:05:29 +1100649 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#if (NDEBUG & NDEBUG_NO_WRITE)
652 switch (cmd->cmnd[0]) {
653 case WRITE_6:
654 case WRITE_10:
Finn Thaindbb6b352016-01-03 16:05:53 +1100655 shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 cmd->result = (DID_ERROR << 16);
Finn Thain1bb40582016-01-03 16:05:29 +1100657 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return 0;
659 }
Finn Thain0d2cf862016-01-03 16:06:11 +1100660#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 cmd->result = 0;
663
Finn Thain52d3e562016-03-23 21:10:20 +1100664 if (!NCR5380_acquire_dma_irq(instance))
665 return SCSI_MLQUEUE_HOST_BUSY;
666
Finn Thain11d2f632016-01-03 16:05:51 +1100667 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100668
Finn Thainaff0cf92016-01-03 16:06:09 +1100669 /*
670 * Insert the cmd into the issue queue. Note that REQUEST SENSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 * commands are added to the head of the queue since any command will
Finn Thainaff0cf92016-01-03 16:06:09 +1100672 * clear the contingent allegiance condition that exists and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * sense data is only guaranteed to be valid while the condition exists.
674 */
675
Finn Thain32b26a12016-01-03 16:05:58 +1100676 if (cmd->cmnd[0] == REQUEST_SENSE)
677 list_add(&ncmd->list, &hostdata->unissued);
678 else
679 list_add_tail(&ncmd->list, &hostdata->unissued);
680
Finn Thain11d2f632016-01-03 16:05:51 +1100681 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100682
Finn Thaindbb6b352016-01-03 16:05:53 +1100683 dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n",
684 cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Kick off command processing */
Finn Thain8d8601a2016-01-03 16:05:37 +1100687 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689}
690
Finn Thain52d3e562016-03-23 21:10:20 +1100691static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
692{
693 struct NCR5380_hostdata *hostdata = shost_priv(instance);
694
695 /* Caller does the locking needed to set & test these data atomically */
696 if (list_empty(&hostdata->disconnected) &&
697 list_empty(&hostdata->unissued) &&
698 list_empty(&hostdata->autosense) &&
699 !hostdata->connected &&
700 !hostdata->selecting)
701 NCR5380_release_dma_irq(instance);
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/**
Finn Thainf27db8e2016-01-03 16:06:00 +1100705 * dequeue_next_cmd - dequeue a command for processing
706 * @instance: the scsi host instance
707 *
708 * Priority is given to commands on the autosense queue. These commands
709 * need autosense because of a CHECK CONDITION result.
710 *
711 * Returns a command pointer if a command is found for a target that is
712 * not already busy. Otherwise returns NULL.
713 */
714
715static struct scsi_cmnd *dequeue_next_cmd(struct Scsi_Host *instance)
716{
717 struct NCR5380_hostdata *hostdata = shost_priv(instance);
718 struct NCR5380_cmd *ncmd;
719 struct scsi_cmnd *cmd;
720
Finn Thain8d5dbec2016-02-23 10:07:09 +1100721 if (hostdata->sensing || list_empty(&hostdata->autosense)) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100722 list_for_each_entry(ncmd, &hostdata->unissued, list) {
723 cmd = NCR5380_to_scmd(ncmd);
724 dsprintk(NDEBUG_QUEUES, instance, "dequeue: cmd=%p target=%d busy=0x%02x lun=%llu\n",
725 cmd, scmd_id(cmd), hostdata->busy[scmd_id(cmd)], cmd->device->lun);
726
727 if (!(hostdata->busy[scmd_id(cmd)] & (1 << cmd->device->lun))) {
728 list_del(&ncmd->list);
729 dsprintk(NDEBUG_QUEUES, instance,
730 "dequeue: removed %p from issue queue\n", cmd);
731 return cmd;
732 }
733 }
734 } else {
735 /* Autosense processing begins here */
736 ncmd = list_first_entry(&hostdata->autosense,
737 struct NCR5380_cmd, list);
738 list_del(&ncmd->list);
739 cmd = NCR5380_to_scmd(ncmd);
740 dsprintk(NDEBUG_QUEUES, instance,
741 "dequeue: removed %p from autosense queue\n", cmd);
742 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
743 hostdata->sensing = cmd;
744 return cmd;
745 }
746 return NULL;
747}
748
749static void requeue_cmd(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
750{
751 struct NCR5380_hostdata *hostdata = shost_priv(instance);
752 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
753
Finn Thain8d5dbec2016-02-23 10:07:09 +1100754 if (hostdata->sensing == cmd) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100755 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
756 list_add(&ncmd->list, &hostdata->autosense);
757 hostdata->sensing = NULL;
758 } else
759 list_add(&ncmd->list, &hostdata->unissued);
760}
761
762/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100763 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100765 * NCR5380_main is a coroutine that runs as long as more work can
766 * be done on the NCR5380 host adapters in a system. Both
767 * NCR5380_queue_command() and NCR5380_intr() will try to start it
768 * in case it is not running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
770
David Howellsc4028952006-11-22 14:57:56 +0000771static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
David Howellsc4028952006-11-22 14:57:56 +0000773 struct NCR5380_hostdata *hostdata =
Finn Thain8d8601a2016-01-03 16:05:37 +1100774 container_of(work, struct NCR5380_hostdata, main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct Scsi_Host *instance = hostdata->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 int done;
Finn Thainaff0cf92016-01-03 16:06:09 +1100777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 done = 1;
Finn Thain11d2f632016-01-03 16:05:51 +1100780
Finn Thain0a4e3612016-01-03 16:06:07 +1100781 spin_lock_irq(&hostdata->lock);
Finn Thainccf6efd2016-02-23 10:07:08 +1100782 while (!hostdata->connected && !hostdata->selecting) {
783 struct scsi_cmnd *cmd = dequeue_next_cmd(instance);
784
785 if (!cmd)
786 break;
Finn Thainf27db8e2016-01-03 16:06:00 +1100787
788 dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd);
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
Finn Thainf27db8e2016-01-03 16:06:00 +1100791 * Attempt to establish an I_T_L nexus here.
792 * On success, instance->hostdata->connected is set.
793 * On failure, we must add the command back to the
794 * issue queue so we can keep trying.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 */
Finn Thainf27db8e2016-01-03 16:06:00 +1100796 /*
797 * REQUEST SENSE commands are issued without tagged
798 * queueing, even on SCSI-II devices because the
799 * contingent allegiance condition exists for the
800 * entire unit.
801 */
Finn Thain32b26a12016-01-03 16:05:58 +1100802
Finn Thainccf6efd2016-02-23 10:07:08 +1100803 if (!NCR5380_select(instance, cmd)) {
Finn Thain707d62b2016-01-03 16:06:02 +1100804 dsprintk(NDEBUG_MAIN, instance, "main: select complete\n");
Finn Thain52d3e562016-03-23 21:10:20 +1100805 maybe_release_dma_irq(instance);
Finn Thainf27db8e2016-01-03 16:06:00 +1100806 } else {
807 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance,
808 "main: select failed, returning %p to queue\n", cmd);
809 requeue_cmd(instance, cmd);
810 }
811 }
Finn Thaine4dec682016-03-23 21:10:12 +1100812 if (hostdata->connected && !hostdata->dma_len) {
Finn Thainb7465452016-01-03 16:06:05 +1100813 dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 NCR5380_information_transfer(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 done = 0;
Finn Thain1d3db592016-01-03 16:05:24 +1100816 }
Finn Thain8e21afa2019-06-09 11:19:11 +1000817 if (!hostdata->connected)
818 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain0a4e3612016-01-03 16:06:07 +1100819 spin_unlock_irq(&hostdata->lock);
820 if (!done)
821 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
Finn Thain8053b0e2016-03-23 21:10:19 +1100825/*
826 * NCR5380_dma_complete - finish DMA transfer
827 * @instance: the scsi host instance
828 *
829 * Called by the interrupt handler when DMA finishes or a phase
830 * mismatch occurs (which would end the DMA transfer).
831 */
832
833static void NCR5380_dma_complete(struct Scsi_Host *instance)
834{
835 struct NCR5380_hostdata *hostdata = shost_priv(instance);
836 int transferred;
837 unsigned char **data;
838 int *count;
839 int saved_data = 0, overrun = 0;
840 unsigned char p;
841
842 if (hostdata->read_overruns) {
843 p = hostdata->connected->SCp.phase;
844 if (p & SR_IO) {
845 udelay(10);
846 if ((NCR5380_read(BUS_AND_STATUS_REG) &
847 (BASR_PHASE_MATCH | BASR_ACK)) ==
848 (BASR_PHASE_MATCH | BASR_ACK)) {
849 saved_data = NCR5380_read(INPUT_DATA_REG);
850 overrun = 1;
851 dsprintk(NDEBUG_DMA, instance, "read overrun handled\n");
852 }
853 }
854 }
855
Finn Thaine9db3192016-03-23 21:10:21 +1100856#ifdef CONFIG_SUN3
857 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
858 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
859 instance->host_no);
860 BUG();
861 }
862
863 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
864 (BASR_PHASE_MATCH | BASR_ACK)) {
865 pr_err("scsi%d: BASR %02x\n", instance->host_no,
866 NCR5380_read(BUS_AND_STATUS_REG));
867 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
868 instance->host_no);
869 BUG();
870 }
871#endif
872
Finn Thain8053b0e2016-03-23 21:10:19 +1100873 NCR5380_write(MODE_REG, MR_BASE);
874 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
875 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
876
877 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
878 hostdata->dma_len = 0;
879
880 data = (unsigned char **)&hostdata->connected->SCp.ptr;
881 count = &hostdata->connected->SCp.this_residual;
882 *data += transferred;
883 *count -= transferred;
884
885 if (hostdata->read_overruns) {
886 int cnt, toPIO;
887
888 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
889 cnt = toPIO = hostdata->read_overruns;
890 if (overrun) {
891 dsprintk(NDEBUG_DMA, instance,
892 "Got an input overrun, using saved byte\n");
893 *(*data)++ = saved_data;
894 (*count)--;
895 cnt--;
896 toPIO--;
897 }
898 if (toPIO > 0) {
899 dsprintk(NDEBUG_DMA, instance,
900 "Doing %d byte PIO to 0x%p\n", cnt, *data);
901 NCR5380_transfer_pio(instance, &p, &cnt, data);
902 *count -= toPIO - cnt;
903 }
904 }
905 }
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/**
Finn Thaincd400822016-01-03 16:05:40 +1100909 * NCR5380_intr - generic NCR5380 irq handler
910 * @irq: interrupt number
911 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 *
Finn Thaincd400822016-01-03 16:05:40 +1100913 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
914 * from the disconnected queue, and restarting NCR5380_main()
915 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 *
Finn Thaincd400822016-01-03 16:05:40 +1100917 * The chip can assert IRQ in any of six different conditions. The IRQ flag
918 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
919 * Three of these six conditions are latched in the Bus and Status Register:
920 * - End of DMA (cleared by ending DMA Mode)
921 * - Parity error (cleared by reading RPIR)
922 * - Loss of BSY (cleared by reading RPIR)
923 * Two conditions have flag bits that are not latched:
924 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
925 * - Bus reset (non-maskable)
926 * The remaining condition has no flag bit at all:
927 * - Selection/reselection
928 *
929 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
930 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
931 * claimed that "the design of the [DP8490] interrupt logic ensures
932 * interrupts will not be lost (they can be on the DP5380)."
933 * The L5380/53C80 datasheet from LOGIC Devices has more details.
934 *
935 * Checking for bus reset by reading RST is futile because of interrupt
936 * latency, but a bus reset will reset chip logic. Checking for parity error
937 * is unnecessary because that interrupt is never enabled. A Loss of BSY
938 * condition will clear DMA Mode. We can tell when this occurs because the
939 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941
Finn Thaina46865d2016-03-23 21:10:27 +1100942static irqreturn_t __maybe_unused NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -0800944 struct Scsi_Host *instance = dev_id;
Finn Thaincd400822016-01-03 16:05:40 +1100945 struct NCR5380_hostdata *hostdata = shost_priv(instance);
946 int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 unsigned char basr;
948 unsigned long flags;
949
Finn Thain11d2f632016-01-03 16:05:51 +1100950 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Finn Thaincd400822016-01-03 16:05:40 +1100952 basr = NCR5380_read(BUS_AND_STATUS_REG);
953 if (basr & BASR_IRQ) {
954 unsigned char mr = NCR5380_read(MODE_REG);
955 unsigned char sr = NCR5380_read(STATUS_REG);
956
Finn Thainb7465452016-01-03 16:06:05 +1100957 dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
958 irq, basr, sr, mr);
Finn Thaincd400822016-01-03 16:05:40 +1100959
Finn Thain8053b0e2016-03-23 21:10:19 +1100960 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
961 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
962 * We ack IRQ after clearing Mode Register. Workarounds
963 * for End of DMA errata need to happen in DMA Mode.
964 */
965
966 dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n");
967
968 if (hostdata->connected) {
969 NCR5380_dma_complete(instance);
970 queue_work(hostdata->work_q, &hostdata->main_task);
971 } else {
972 NCR5380_write(MODE_REG, MR_BASE);
973 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
974 }
975 } else if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
Finn Thaincd400822016-01-03 16:05:40 +1100976 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
977 /* Probably reselected */
978 NCR5380_write(SELECT_ENABLE_REG, 0);
979 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
980
Finn Thainb7465452016-01-03 16:06:05 +1100981 dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n");
Finn Thaincd400822016-01-03 16:05:40 +1100982
983 if (!hostdata->connected) {
984 NCR5380_reselect(instance);
985 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
Finn Thaincd400822016-01-03 16:05:40 +1100987 if (!hostdata->connected)
988 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
989 } else {
990 /* Probably Bus Reset */
991 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
992
Finn Thainb7465452016-01-03 16:06:05 +1100993 dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100994#ifdef SUN3_SCSI_VME
995 dregs->csr |= CSR_DMA_ENABLE;
996#endif
Finn Thaincd400822016-01-03 16:05:40 +1100997 }
998 handled = 1;
999 } else {
1000 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
Finn Thaine9db3192016-03-23 21:10:21 +11001001#ifdef SUN3_SCSI_VME
1002 dregs->csr |= CSR_DMA_ENABLE;
1003#endif
Finn Thaincd400822016-01-03 16:05:40 +11001004 }
1005
Finn Thain11d2f632016-01-03 16:05:51 +11001006 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaincd400822016-01-03 16:05:40 +11001007
1008 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Finn Thainaff0cf92016-01-03 16:06:09 +11001011/*
Finn Thain710ddd02014-11-12 16:12:02 +11001012 * Function : int NCR5380_select(struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001013 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 *
1015 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Finn Thain594d4ba2016-01-03 16:06:10 +11001016 * including ARBITRATION, SELECTION, and initial message out for
1017 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001019 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain594d4ba2016-01-03 16:06:10 +11001020 * target lives, cmd - SCSI command to execute.
Finn Thainaff0cf92016-01-03 16:06:09 +11001021 *
Finn Thain707d62b2016-01-03 16:06:02 +11001022 * Returns cmd if selection failed but should be retried,
1023 * NULL if selection failed and should not be retried, or
1024 * NULL if selection succeeded (hostdata->connected == cmd).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001026 * Side effects :
Finn Thain594d4ba2016-01-03 16:06:10 +11001027 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1028 * with registers as they should have been on entry - ie
1029 * SELECT_ENABLE will be set appropriately, the NCR5380
1030 * will cease to drive any SCSI bus signals.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001032 * If successful : I_T_L or I_T_L_Q nexus will be established,
1033 * instance->connected will be set to cmd.
1034 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001036 * If failed (no target) : cmd->scsi_done() will be called, and the
1037 * cmd->result host byte set to DID_BAD_TARGET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001039
Finn Thain707d62b2016-01-03 16:06:02 +11001040static struct scsi_cmnd *NCR5380_select(struct Scsi_Host *instance,
1041 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Finn Thaine8a60142016-01-03 16:05:54 +11001043 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 unsigned char tmp[3], phase;
1045 unsigned char *data;
1046 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thainb7465452016-01-03 16:06:05 +11001050 dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n",
1051 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Finn Thain707d62b2016-01-03 16:06:02 +11001053 /*
1054 * Arbitration and selection phases are slow and involve dropping the
1055 * lock, so we have to watch out for EH. An exception handler may
1056 * change 'selecting' to NULL. This function will then return NULL
1057 * so that the caller will forget about 'cmd'. (During information
1058 * transfer phases, EH may change 'connected' to NULL.)
1059 */
1060 hostdata->selecting = cmd;
1061
Finn Thainaff0cf92016-01-03 16:06:09 +11001062 /*
1063 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * data bus during SELECTION.
1065 */
1066
1067 NCR5380_write(TARGET_COMMAND_REG, 0);
1068
Finn Thainaff0cf92016-01-03 16:06:09 +11001069 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * Start arbitration.
1071 */
1072
1073 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1074 NCR5380_write(MODE_REG, MR_ARBITRATE);
1075
Finn Thain55500d92016-01-03 16:05:35 +11001076 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1077 * Bus Free Delay, arbitration will begin.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 */
1079
Finn Thain11d2f632016-01-03 16:05:51 +11001080 spin_unlock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001081 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1082 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1083 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001084 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001085 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
1086 /* Reselection interrupt */
Finn Thain707d62b2016-01-03 16:06:02 +11001087 goto out;
Finn Thainb32ade12016-01-03 16:05:41 +11001088 }
Finn Thainccf6efd2016-02-23 10:07:08 +11001089 if (!hostdata->selecting) {
1090 /* Command was aborted */
1091 NCR5380_write(MODE_REG, MR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001092 return NULL;
Finn Thainccf6efd2016-02-23 10:07:08 +11001093 }
Finn Thainb32ade12016-01-03 16:05:41 +11001094 if (err < 0) {
1095 NCR5380_write(MODE_REG, MR_BASE);
1096 shost_printk(KERN_ERR, instance,
1097 "select: arbitration timeout\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001098 goto out;
Finn Thain55500d92016-01-03 16:05:35 +11001099 }
Finn Thain11d2f632016-01-03 16:05:51 +11001100 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001101
1102 /* The SCSI-2 arbitration delay is 2.4 us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 udelay(3);
1104
1105 /* Check for lost arbitration */
Finn Thain0d2cf862016-01-03 16:06:11 +11001106 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1107 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1108 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 NCR5380_write(MODE_REG, MR_BASE);
Finn Thainb7465452016-01-03 16:06:05 +11001110 dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n");
Finn Thain11d2f632016-01-03 16:05:51 +11001111 spin_lock_irq(&hostdata->lock);
Finn Thain707d62b2016-01-03 16:06:02 +11001112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Finn Thaincf13b082016-01-03 16:05:18 +11001114
1115 /* After/during arbitration, BSY should be asserted.
1116 * IBM DPES-31080 Version S31Q works now
1117 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1118 */
1119 NCR5380_write(INITIATOR_COMMAND_REG,
1120 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Finn Thainaff0cf92016-01-03 16:06:09 +11001122 /*
1123 * Again, bus clear + bus settle time is 1.2us, however, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 * a minimum so we'll udelay ceil(1.2)
1125 */
1126
Finn Thain9c3f0e22016-01-03 16:05:11 +11001127 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1128 udelay(15);
1129 else
1130 udelay(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Finn Thain11d2f632016-01-03 16:05:51 +11001132 spin_lock_irq(&hostdata->lock);
1133
Finn Thain72064a72016-01-03 16:05:44 +11001134 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1135 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Finn Thain707d62b2016-01-03 16:06:02 +11001136 goto out;
1137
1138 if (!hostdata->selecting) {
1139 NCR5380_write(MODE_REG, MR_BASE);
1140 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001141 return NULL;
Finn Thain707d62b2016-01-03 16:06:02 +11001142 }
Finn Thain72064a72016-01-03 16:05:44 +11001143
Finn Thainb7465452016-01-03 16:06:05 +11001144 dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Finn Thainaff0cf92016-01-03 16:06:09 +11001146 /*
1147 * Now that we have won arbitration, start Selection process, asserting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 * the host and target ID's on the SCSI bus.
1149 */
1150
Finn Thain3d07d222016-01-03 16:06:13 +11001151 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Finn Thainaff0cf92016-01-03 16:06:09 +11001153 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 * Raise ATN while SEL is true before BSY goes false from arbitration,
1155 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1156 * phase immediately after selection.
1157 */
1158
Finn Thain3d07d222016-01-03 16:06:13 +11001159 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY |
1160 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 NCR5380_write(MODE_REG, MR_BASE);
1162
Finn Thainaff0cf92016-01-03 16:06:09 +11001163 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * Reselect interrupts must be turned off prior to the dropping of BSY,
1165 * otherwise we will trigger an interrupt.
1166 */
1167 NCR5380_write(SELECT_ENABLE_REG, 0);
1168
Finn Thain11d2f632016-01-03 16:05:51 +11001169 spin_unlock_irq(&hostdata->lock);
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001172 * The initiator shall then wait at least two deskew delays and release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 * the BSY signal.
1174 */
Finn Thain0d2cf862016-01-03 16:06:11 +11001175 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 /* Reset BSY */
Finn Thain3d07d222016-01-03 16:06:13 +11001178 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA |
1179 ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Finn Thainaff0cf92016-01-03 16:06:09 +11001181 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * Something weird happens when we cease to drive BSY - looks
Finn Thainaff0cf92016-01-03 16:06:09 +11001183 * like the board/chip is letting us do another read before the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 * appropriate propagation delay has expired, and we're confusing
1185 * a BSY signal from ourselves as the target's response to SELECTION.
1186 *
1187 * A small delay (the 'C++' frontend breaks the pipeline with an
1188 * unnecessary jump, making it work on my 386-33/Trantor T128, the
Finn Thainaff0cf92016-01-03 16:06:09 +11001189 * tighter 'C' code breaks and requires this) solves the problem -
1190 * the 1 us delay is arbitrary, and only used because this delay will
1191 * be the same on other platforms and since it works here, it should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * work there.
1193 *
1194 * wingel suggests that this could be due to failing to wait
1195 * one deskew delay.
1196 */
1197
1198 udelay(1);
1199
Finn Thainb7465452016-01-03 16:06:05 +11001200 dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Finn Thainaff0cf92016-01-03 16:06:09 +11001202 /*
1203 * The SCSI specification calls for a 250 ms timeout for the actual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * selection.
1205 */
1206
Finn Thainae753a32016-01-03 16:05:23 +11001207 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1208 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001211 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1213 NCR5380_reselect(instance);
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001214 shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001215 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Finn Thainae753a32016-01-03 16:05:23 +11001217
1218 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001219 spin_lock_irq(&hostdata->lock);
Finn Thainae753a32016-01-03 16:05:23 +11001220 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001221
Finn Thain707d62b2016-01-03 16:06:02 +11001222 /* Can't touch cmd if it has been reclaimed by the scsi ML */
Finn Thain24dcf8c2018-09-27 11:17:11 +10001223 if (!hostdata->selecting)
1224 return NULL;
1225
1226 cmd->result = DID_BAD_TARGET << 16;
1227 complete_cmd(instance, cmd);
1228 dsprintk(NDEBUG_SELECTION, instance,
1229 "target did not respond within 250ms\n");
1230 cmd = NULL;
Finn Thain707d62b2016-01-03 16:06:02 +11001231 goto out;
Finn Thainae753a32016-01-03 16:05:23 +11001232 }
1233
Finn Thainaff0cf92016-01-03 16:06:09 +11001234 /*
1235 * No less than two deskew delays after the initiator detects the
1236 * BSY signal is true, it shall release the SEL signal and may
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 * change the DATA BUS. -wingel
1238 */
1239
1240 udelay(1);
1241
1242 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001245 * Since we followed the SCSI spec, and raised ATN while SEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * was true but before BSY was false during selection, the information
1247 * transfer phase should be a MESSAGE OUT phase so that we can send the
1248 * IDENTIFY message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
1250
1251 /* Wait for start of REQ/ACK handshake */
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001254 spin_lock_irq(&hostdata->lock);
Finn Thain1cc160e2016-01-03 16:05:32 +11001255 if (err < 0) {
Finn Thain55500d92016-01-03 16:05:35 +11001256 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1257 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain707d62b2016-01-03 16:06:02 +11001258 goto out;
1259 }
1260 if (!hostdata->selecting) {
1261 do_abort(instance);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001262 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264
Finn Thainb7465452016-01-03 16:06:05 +11001265 dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n",
1266 scmd_id(cmd));
Finn Thain22f5f102014-11-12 16:11:56 +11001267 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 len = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 data = tmp;
1271 phase = PHASE_MSGOUT;
1272 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001273 dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 /* XXX need to handle errors here */
Finn Thain11d2f632016-01-03 16:05:51 +11001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 hostdata->connected = cmd;
Finn Thain3d07d222016-01-03 16:06:13 +11001277 hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Finn Thaine9db3192016-03-23 21:10:21 +11001279#ifdef SUN3_SCSI_VME
1280 dregs->csr |= CSR_INTR;
1281#endif
1282
Boaz Harrosh28424d32007-09-10 22:37:45 +03001283 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Finn Thain707d62b2016-01-03 16:06:02 +11001285 cmd = NULL;
1286
1287out:
1288 if (!hostdata->selecting)
1289 return NULL;
1290 hostdata->selecting = NULL;
1291 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Finn Thainaff0cf92016-01-03 16:06:09 +11001294/*
1295 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001296 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 *
1298 * Purpose : transfers data in given phase using polled I/O
1299 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001300 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001301 * what phase is expected, *count - pointer to number of
1302 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001303 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 * Returns : -1 when different phase is entered without transferring
Finn Thain0d2cf862016-01-03 16:06:11 +11001305 * maximum number of bytes, 0 if all bytes are transferred or exit
Finn Thain594d4ba2016-01-03 16:06:10 +11001306 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001308 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 *
1310 * XXX Note : handling for bus free may be useful.
1311 */
1312
1313/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001314 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 * IS 100% reliable, and for the actual data transfer where speed
1316 * counts, we will always do a pseudo DMA or DMA transfer.
1317 */
1318
Finn Thain0d2cf862016-01-03 16:06:11 +11001319static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1320 unsigned char *phase, int *count,
1321 unsigned char **data)
1322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 unsigned char p = *phase, tmp;
1324 int c = *count;
1325 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Finn Thainaff0cf92016-01-03 16:06:09 +11001327 /*
1328 * The NCR5380 chip will only drive the SCSI bus when the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 * phase specified in the appropriate bits of the TARGET COMMAND
1330 * REGISTER match the STATUS REGISTER
1331 */
1332
Finn Thain0d2cf862016-01-03 16:06:11 +11001333 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 do {
Finn Thainaff0cf92016-01-03 16:06:09 +11001336 /*
1337 * Wait for assertion of REQ, after which the phase bits will be
1338 * valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 */
1340
Finn Thain686f3992016-01-03 16:05:26 +11001341 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Finn Thainb7465452016-01-03 16:06:05 +11001344 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001347 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thainb7465452016-01-03 16:06:05 +11001348 dsprintk(NDEBUG_PIO, instance, "phase mismatch\n");
1349 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 break;
1351 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 /* Do actual transfer from SCSI bus to / from memory */
1354 if (!(p & SR_IO))
1355 NCR5380_write(OUTPUT_DATA_REG, *d);
1356 else
1357 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1358
1359 ++d;
1360
Finn Thainaff0cf92016-01-03 16:06:09 +11001361 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 * The SCSI standard suggests that in MSGOUT phase, the initiator
1363 * should drop ATN on the last byte of the message phase
1364 * after REQ has been asserted for the handshake but before
1365 * the initiator raises ACK.
1366 */
1367
1368 if (!(p & SR_IO)) {
1369 if (!((p & SR_MSG) && c > 1)) {
1370 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1371 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001372 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1373 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 } else {
Finn Thain3d07d222016-01-03 16:06:13 +11001375 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1376 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001378 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1379 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381 } else {
1382 NCR5380_dprint(NDEBUG_PIO, instance);
1383 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1384 }
1385
Finn Thaina2edc4a2016-01-03 16:05:27 +11001386 if (NCR5380_poll_politely(instance,
1387 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1388 break;
1389
Finn Thainb7465452016-01-03 16:06:05 +11001390 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001393 * We have several special cases to consider during REQ/ACK handshaking :
1394 * 1. We were in MSGOUT phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001395 * message. ATN must be dropped as ACK is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001397 * 2. We are in a MSGIN phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001398 * message. We must exit with ACK asserted, so that the calling
1399 * code may raise ATN before dropping ACK to reject the message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 *
1401 * 3. ACK and ATN are clear and the target may proceed as normal.
1402 */
1403 if (!(p == PHASE_MSGIN && c == 1)) {
1404 if (p == PHASE_MSGOUT && c > 1)
1405 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1406 else
1407 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1408 }
1409 } while (--c);
1410
Finn Thainb7465452016-01-03 16:06:05 +11001411 dsprintk(NDEBUG_PIO, instance, "residual %d\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 *count = c;
1414 *data = d;
1415 tmp = NCR5380_read(STATUS_REG);
Finn Thaina2edc4a2016-01-03 16:05:27 +11001416 /* The phase read from the bus is valid if either REQ is (already)
1417 * asserted or if ACK hasn't been released yet. The latter applies if
1418 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
1419 */
1420 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 *phase = tmp & PHASE_MASK;
1422 else
1423 *phase = PHASE_UNKNOWN;
1424
1425 if (!c || (*phase == p))
1426 return 0;
1427 else
1428 return -1;
1429}
1430
1431/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001432 * do_reset - issue a reset command
1433 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001435 * Issue a reset sequence to the NCR5380 and try and get the bus
1436 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001438 * This clears the reset interrupt flag because there may be no handler for
1439 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1440 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001442
Finn Thain54d8fe42016-01-03 16:05:06 +11001443static void do_reset(struct Scsi_Host *instance)
1444{
Finn Thain636b1ec2016-01-03 16:05:10 +11001445 unsigned long flags;
1446
1447 local_irq_save(flags);
1448 NCR5380_write(TARGET_COMMAND_REG,
1449 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001451 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001453 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1454 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Finn Thain80d3eb62016-01-03 16:05:34 +11001457/**
1458 * do_abort - abort the currently established nexus by going to
1459 * MESSAGE OUT phase and sending an ABORT message.
1460 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001462 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 */
1464
Finn Thain54d8fe42016-01-03 16:05:06 +11001465static int do_abort(struct Scsi_Host *instance)
1466{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 unsigned char *msgptr, phase, tmp;
1468 int len;
1469 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 /* Request message out phase */
1472 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1473
Finn Thainaff0cf92016-01-03 16:06:09 +11001474 /*
1475 * Wait for the target to indicate a valid phase by asserting
1476 * REQ. Once this happens, we'll have either a MSGOUT phase
1477 * and can immediately send the ABORT message, or we'll have some
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 * other phase and will have to source/sink data.
Finn Thainaff0cf92016-01-03 16:06:09 +11001479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 * We really don't care what value was on the bus or what value
1481 * the target sees, so we just handshake.
1482 */
1483
Finn Thain80d3eb62016-01-03 16:05:34 +11001484 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001485 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001486 goto timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Finn Thainf35d3472016-01-03 16:05:33 +11001488 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Finn Thainaff0cf92016-01-03 16:06:09 +11001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1491
Finn Thainf35d3472016-01-03 16:05:33 +11001492 if (tmp != PHASE_MSGOUT) {
Finn Thain0d2cf862016-01-03 16:06:11 +11001493 NCR5380_write(INITIATOR_COMMAND_REG,
1494 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thain54d8fe42016-01-03 16:05:06 +11001495 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001496 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001497 goto timeout;
1498 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 tmp = ABORT;
1502 msgptr = &tmp;
1503 len = 1;
1504 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001505 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /*
1508 * If we got here, and the command completed successfully,
1509 * we're about to go into bus free state.
1510 */
1511
1512 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001513
1514timeout:
1515 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1516 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
Finn Thainaff0cf92016-01-03 16:06:09 +11001519/*
1520 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001521 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 *
1523 * Purpose : transfers data in given phase using either real
Finn Thain594d4ba2016-01-03 16:06:10 +11001524 * or pseudo DMA.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001526 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001527 * what phase is expected, *count - pointer to number of
1528 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001529 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * Returns : -1 when different phase is entered without transferring
Finn Thain594d4ba2016-01-03 16:06:10 +11001531 * maximum number of bytes, 0 if all bytes or transferred or exit
1532 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001534 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
1536
1537
Finn Thain0d2cf862016-01-03 16:06:11 +11001538static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1539 unsigned char *phase, int *count,
1540 unsigned char **data)
1541{
1542 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainf0ea73a2016-03-23 21:10:26 +11001543 int c = *count;
1544 unsigned char p = *phase;
1545 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 unsigned char tmp;
Finn Thain8053b0e2016-03-23 21:10:19 +11001547 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1550 *phase = tmp;
1551 return -1;
1552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Finn Thain8053b0e2016-03-23 21:10:19 +11001554 hostdata->connected->SCp.phase = p;
1555
1556 if (p & SR_IO) {
1557 if (hostdata->read_overruns)
1558 c -= hostdata->read_overruns;
1559 else if (hostdata->flags & FLAG_DMA_FIXUP)
1560 --c;
1561 }
1562
1563 dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n",
1564 (p & SR_IO) ? "receive" : "send", c, d);
1565
Finn Thaine9db3192016-03-23 21:10:21 +11001566#ifdef CONFIG_SUN3
1567 /* send start chain */
1568 sun3scsi_dma_start(c, *data);
1569#endif
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thain8053b0e2016-03-23 21:10:19 +11001572 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1573 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Finn Thain8053b0e2016-03-23 21:10:19 +11001575 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
1576 /* On the Medusa, it is a must to initialize the DMA before
1577 * starting the NCR. This is also the cleaner way for the TT.
1578 */
1579 if (p & SR_IO)
1580 result = NCR5380_dma_recv_setup(instance, d, c);
1581 else
1582 result = NCR5380_dma_send_setup(instance, d, c);
1583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Finn Thainaff0cf92016-01-03 16:06:09 +11001585 /*
Finn Thain594d4ba2016-01-03 16:06:10 +11001586 * On the PAS16 at least I/O recovery delays are not needed here.
1587 * Everyone else seems to want them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
1589
1590 if (p & SR_IO) {
Finn Thaine9db3192016-03-23 21:10:21 +11001591 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaine5d55d12016-03-23 21:10:16 +11001592 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1594 } else {
Finn Thaine5d55d12016-03-23 21:10:16 +11001595 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thaine5d55d12016-03-23 21:10:16 +11001597 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 NCR5380_write(START_DMA_SEND_REG, 0);
Finn Thaine5d55d12016-03-23 21:10:16 +11001599 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 }
1601
Finn Thaine9db3192016-03-23 21:10:21 +11001602#ifdef CONFIG_SUN3
1603#ifdef SUN3_SCSI_VME
1604 dregs->csr |= CSR_DMA_ENABLE;
1605#endif
1606 sun3_dma_active = 1;
1607#endif
1608
Finn Thain8053b0e2016-03-23 21:10:19 +11001609 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
1610 /* On the Falcon, the DMA setup must be done after the last
1611 * NCR access, else the DMA setup gets trashed!
1612 */
1613 if (p & SR_IO)
1614 result = NCR5380_dma_recv_setup(instance, d, c);
1615 else
1616 result = NCR5380_dma_send_setup(instance, d, c);
1617 }
1618
1619 /* On failure, NCR5380_dma_xxxx_setup() returns a negative int. */
1620 if (result < 0)
1621 return result;
1622
1623 /* For real DMA, result is the byte count. DMA interrupt is expected. */
1624 if (result > 0) {
1625 hostdata->dma_len = result;
1626 return 0;
1627 }
1628
1629 /* The result is zero iff pseudo DMA send/receive was completed. */
1630 hostdata->dma_len = c;
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632/*
Finn Thaine4dec682016-03-23 21:10:12 +11001633 * A note regarding the DMA errata workarounds for early NMOS silicon.
Finn Thainc16df322016-01-03 16:06:08 +11001634 *
1635 * For DMA sends, we want to wait until the last byte has been
1636 * transferred out over the bus before we turn off DMA mode. Alas, there
1637 * seems to be no terribly good way of doing this on a 5380 under all
1638 * conditions. For non-scatter-gather operations, we can wait until REQ
1639 * and ACK both go false, or until a phase mismatch occurs. Gather-sends
1640 * are nastier, since the device will be expecting more data than we
1641 * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1642 * could test Last Byte Sent to assure transfer (I imagine this is precisely
1643 * why this signal was added to the newer chips) but on the older 538[01]
1644 * this signal does not exist. The workaround for this lack is a watchdog;
1645 * we bail out of the wait-loop after a modest amount of wait-time if
1646 * the usual exit conditions are not met. Not a terribly clean or
1647 * correct solution :-%
1648 *
1649 * DMA receive is equally tricky due to a nasty characteristic of the NCR5380.
1650 * If the chip is in DMA receive mode, it will respond to a target's
1651 * REQ by latching the SCSI data into the INPUT DATA register and asserting
1652 * ACK, even if it has _already_ been notified by the DMA controller that
1653 * the current DMA transfer has completed! If the NCR5380 is then taken
1654 * out of DMA mode, this already-acknowledged byte is lost. This is
1655 * not a problem for "one DMA transfer per READ command", because
1656 * the situation will never arise... either all of the data is DMA'ed
1657 * properly, or the target switches to MESSAGE IN phase to signal a
1658 * disconnection (either operation bringing the DMA to a clean halt).
1659 * However, in order to handle scatter-receive, we must work around the
Finn Thaine4dec682016-03-23 21:10:12 +11001660 * problem. The chosen fix is to DMA fewer bytes, then check for the
Finn Thainc16df322016-01-03 16:06:08 +11001661 * condition before taking the NCR5380 out of DMA mode. One or two extra
1662 * bytes are transferred via PIO as necessary to fill out the original
1663 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
1665
Finn Thain8053b0e2016-03-23 21:10:19 +11001666 if (hostdata->flags & FLAG_DMA_FIXUP) {
1667 if (p & SR_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /*
Finn Thaine4dec682016-03-23 21:10:12 +11001669 * The workaround was to transfer fewer bytes than we
Finn Thainaff0cf92016-01-03 16:06:09 +11001670 * intended to with the pseudo-DMA read function, wait for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 * the chip to latch the last byte, read it, and then disable
1672 * pseudo-DMA mode.
Finn Thainaff0cf92016-01-03 16:06:09 +11001673 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1675 * REQ is deasserted when ACK is asserted, and not reasserted
1676 * until ACK goes false. Since the NCR5380 won't lower ACK
1677 * until DACK is asserted, which won't happen unless we twiddle
Finn Thainaff0cf92016-01-03 16:06:09 +11001678 * the DMA port or we take the NCR5380 out of DMA mode, we
1679 * can guarantee that we won't handshake another extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 * byte.
1681 */
1682
Finn Thain55181be2016-01-03 16:05:42 +11001683 if (NCR5380_poll_politely(instance, BUS_AND_STATUS_REG,
1684 BASR_DRQ, BASR_DRQ, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001685 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001686 shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Finn Thain55181be2016-01-03 16:05:42 +11001688 if (NCR5380_poll_politely(instance, STATUS_REG,
1689 SR_REQ, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001690 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001691 shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n");
1692 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001693 d[*count - 1] = NCR5380_read(INPUT_DATA_REG);
1694 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001696 * Wait for the last byte to be sent. If REQ is being asserted for
1697 * the byte we're interested, we'll ACK it and it will go false.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 */
Finn Thain55181be2016-01-03 16:05:42 +11001699 if (NCR5380_poll_politely2(instance,
1700 BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ,
1701 BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001702 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001703 shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
1705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001707
1708 NCR5380_dma_complete(instance);
Finn Thain438af512016-03-23 21:10:18 +11001709 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712/*
1713 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1714 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001715 * Purpose : run through the various SCSI phases and do as the target
Finn Thain594d4ba2016-01-03 16:06:10 +11001716 * directs us to. Operates on the currently connected command,
1717 * instance->connected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 *
1719 * Inputs : instance, instance for which we are doing commands
1720 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001721 * Side effects : SCSI things happen, the disconnected queue will be
Finn Thain594d4ba2016-01-03 16:06:10 +11001722 * modified if a command disconnects, *instance->connected will
1723 * change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001725 * XXX Note : we need to watch for bus free or a reset condition here
Finn Thain594d4ba2016-01-03 16:06:10 +11001726 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 */
1728
Finn Thain0d2cf862016-01-03 16:06:11 +11001729static void NCR5380_information_transfer(struct Scsi_Host *instance)
1730{
Finn Thaine8a60142016-01-03 16:05:54 +11001731 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 unsigned char msgout = NOP;
1733 int sink = 0;
1734 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 unsigned char *data;
1737 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001738 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Finn Thaine9db3192016-03-23 21:10:21 +11001740#ifdef SUN3_SCSI_VME
1741 dregs->csr |= CSR_INTR;
1742#endif
1743
Finn Thain11d2f632016-01-03 16:05:51 +11001744 while ((cmd = hostdata->connected)) {
Finn Thain32b26a12016-01-03 16:05:58 +11001745 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 tmp = NCR5380_read(STATUS_REG);
1748 /* We only have a valid SCSI phase when REQ is asserted */
1749 if (tmp & SR_REQ) {
1750 phase = (tmp & PHASE_MASK);
1751 if (phase != old_phase) {
1752 old_phase = phase;
1753 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1754 }
Finn Thaine9db3192016-03-23 21:10:21 +11001755#ifdef CONFIG_SUN3
1756 if (phase == PHASE_CMDOUT) {
1757 void *d;
1758 unsigned long count;
1759
1760 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1761 count = cmd->SCp.buffer->length;
1762 d = sg_virt(cmd->SCp.buffer);
1763 } else {
1764 count = cmd->SCp.this_residual;
1765 d = cmd->SCp.ptr;
1766 }
1767
1768 if (sun3_dma_setup_done != cmd &&
1769 sun3scsi_dma_xfer_len(count, cmd) > 0) {
1770 sun3scsi_dma_setup(instance, d, count,
1771 rq_data_dir(cmd->request));
1772 sun3_dma_setup_done = cmd;
1773 }
1774#ifdef SUN3_SCSI_VME
1775 dregs->csr |= CSR_INTR;
1776#endif
1777 }
1778#endif /* CONFIG_SUN3 */
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (sink && (phase != PHASE_MSGOUT)) {
1781 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1782
Finn Thain3d07d222016-01-03 16:06:13 +11001783 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1784 ICR_ASSERT_ACK);
Finn Thain0d2cf862016-01-03 16:06:11 +11001785 while (NCR5380_read(STATUS_REG) & SR_REQ)
1786 ;
Finn Thain3d07d222016-01-03 16:06:13 +11001787 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1788 ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 sink = 0;
1790 continue;
1791 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 switch (phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 case PHASE_DATAOUT:
1795#if (NDEBUG & NDEBUG_NO_DATAOUT)
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001796 shost_printk(KERN_DEBUG, instance, "NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 sink = 1;
1798 do_abort(instance);
1799 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11001800 complete_cmd(instance, cmd);
Finn Thaindc183962016-02-23 10:07:07 +11001801 hostdata->connected = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return;
1803#endif
Finn Thainbf1a0c62016-01-03 16:05:47 +11001804 case PHASE_DATAIN:
Finn Thainaff0cf92016-01-03 16:06:09 +11001805 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 * If there is no room left in the current buffer in the
1807 * scatter-gather list, move onto the next one.
1808 */
1809
1810 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1811 ++cmd->SCp.buffer;
1812 --cmd->SCp.buffers_residual;
1813 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001814 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thainb7465452016-01-03 16:06:05 +11001815 dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n",
1816 cmd->SCp.this_residual,
1817 cmd->SCp.buffers_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001821 * The preferred transfer method is going to be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 * PSEUDO-DMA for systems that are strictly PIO,
1823 * since we can let the hardware do the handshaking.
1824 *
1825 * For this to work, we need to know the transfersize
1826 * ahead of time, since the pseudo-DMA code will sit
1827 * in an unconditional loop.
1828 */
1829
Finn Thainff3d4572016-01-03 16:05:25 +11001830 transfersize = 0;
Finn Thain7e9ec8d2016-03-23 21:10:11 +11001831 if (!cmd->device->borken)
Finn Thainff3d4572016-01-03 16:05:25 +11001832 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Finn Thain438af512016-03-23 21:10:18 +11001834 if (transfersize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 len = transfersize;
Finn Thain0d2cf862016-01-03 16:06:11 +11001836 if (NCR5380_transfer_dma(instance, &phase,
1837 &len, (unsigned char **)&cmd->SCp.ptr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11001839 * If the watchdog timer fires, all future
1840 * accesses to this device will use the
1841 * polled-IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 */
Jeff Garzik017560f2005-10-24 18:04:36 -04001843 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11001844 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 cmd->device->borken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 sink = 1;
1847 do_abort(instance);
1848 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 /* XXX - need to source or sink data here, as appropriate */
Finn Thain8053b0e2016-03-23 21:10:19 +11001850 }
Finn Thainf825e402016-03-23 21:10:15 +11001851 } else {
Finn Thain08348b12016-08-31 14:44:56 +10001852 /* Transfer a small chunk so that the
1853 * irq mode lock is not held too long.
Finn Thain16788472016-02-23 10:07:05 +11001854 */
Finn Thain08348b12016-08-31 14:44:56 +10001855 transfersize = min(cmd->SCp.this_residual,
1856 NCR5380_PIO_CHUNK_SIZE);
Finn Thain16788472016-02-23 10:07:05 +11001857 len = transfersize;
1858 NCR5380_transfer_pio(instance, &phase, &len,
Finn Thain3d07d222016-01-03 16:06:13 +11001859 (unsigned char **)&cmd->SCp.ptr);
Finn Thain16788472016-02-23 10:07:05 +11001860 cmd->SCp.this_residual -= transfersize - len;
Finn Thain11d2f632016-01-03 16:05:51 +11001861 }
Finn Thaine9db3192016-03-23 21:10:21 +11001862#ifdef CONFIG_SUN3
1863 if (sun3_dma_setup_done == cmd)
1864 sun3_dma_setup_done = NULL;
1865#endif
Finn Thain16788472016-02-23 10:07:05 +11001866 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 case PHASE_MSGIN:
1868 len = 1;
1869 data = &tmp;
1870 NCR5380_transfer_pio(instance, &phase, &len, &data);
1871 cmd->SCp.Message = tmp;
1872
1873 switch (tmp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 case ABORT:
1875 case COMMAND_COMPLETE:
1876 /* Accept message by clearing ACK */
1877 sink = 1;
1878 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001879 dsprintk(NDEBUG_QUEUES, instance,
1880 "COMMAND COMPLETE %p target %d lun %llu\n",
1881 cmd, scmd_id(cmd), cmd->device->lun);
1882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 hostdata->connected = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Finn Thainf27db8e2016-01-03 16:06:00 +11001885 cmd->result &= ~0xffff;
1886 cmd->result |= cmd->SCp.Status;
1887 cmd->result |= cmd->SCp.Message << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Finn Thainf27db8e2016-01-03 16:06:00 +11001889 if (cmd->cmnd[0] == REQUEST_SENSE)
Finn Thain677e0192016-01-03 16:05:59 +11001890 complete_cmd(instance, cmd);
Finn Thainf27db8e2016-01-03 16:06:00 +11001891 else {
1892 if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION ||
1893 cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) {
1894 dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n",
1895 cmd);
1896 list_add_tail(&ncmd->list,
1897 &hostdata->autosense);
1898 } else
1899 complete_cmd(instance, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
Finn Thainaff0cf92016-01-03 16:06:09 +11001902 /*
1903 * Restore phase bits to 0 so an interrupted selection,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * arbitration can resume.
1905 */
1906 NCR5380_write(TARGET_COMMAND_REG, 0);
Finn Thain72064a72016-01-03 16:05:44 +11001907
Finn Thain52d3e562016-03-23 21:10:20 +11001908 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return;
1910 case MESSAGE_REJECT:
1911 /* Accept message by clearing ACK */
1912 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1913 switch (hostdata->last_message) {
1914 case HEAD_OF_QUEUE_TAG:
1915 case ORDERED_QUEUE_TAG:
1916 case SIMPLE_QUEUE_TAG:
1917 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001918 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 break;
1920 default:
1921 break;
1922 }
Finn Thain340b9612016-01-03 16:05:31 +11001923 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11001924 case DISCONNECT:
1925 /* Accept message by clearing ACK */
1926 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1927 hostdata->connected = NULL;
1928 list_add(&ncmd->list, &hostdata->disconnected);
1929 dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES,
1930 instance, "connected command %p for target %d lun %llu moved to disconnected queue\n",
1931 cmd, scmd_id(cmd), cmd->device->lun);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001932
Finn Thain0d2cf862016-01-03 16:06:11 +11001933 /*
1934 * Restore phase bits to 0 so an interrupted selection,
1935 * arbitration can resume.
1936 */
1937 NCR5380_write(TARGET_COMMAND_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Finn Thaine9db3192016-03-23 21:10:21 +11001939#ifdef SUN3_SCSI_VME
1940 dregs->csr |= CSR_DMA_ENABLE;
1941#endif
Finn Thain0d2cf862016-01-03 16:06:11 +11001942 return;
Finn Thainaff0cf92016-01-03 16:06:09 +11001943 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
Finn Thainaff0cf92016-01-03 16:06:09 +11001945 * operation, in violation of the SCSI spec so we can safely
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 * ignore SAVE/RESTORE pointers calls.
1947 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001948 * Unfortunately, some disks violate the SCSI spec and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 * don't issue the required SAVE_POINTERS message before
Finn Thainaff0cf92016-01-03 16:06:09 +11001950 * disconnecting, and we have to break spec to remain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * compatible.
1952 */
1953 case SAVE_POINTERS:
1954 case RESTORE_POINTERS:
1955 /* Accept message by clearing ACK */
1956 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1957 break;
1958 case EXTENDED_MESSAGE:
Finn Thainc16df322016-01-03 16:06:08 +11001959 /*
1960 * Start the message buffer with the EXTENDED_MESSAGE
1961 * byte, since spi_print_msg() wants the whole thing.
1962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 extended_msg[0] = EXTENDED_MESSAGE;
1964 /* Accept first byte by clearing ACK */
1965 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain11d2f632016-01-03 16:05:51 +11001966
1967 spin_unlock_irq(&hostdata->lock);
1968
Finn Thainb7465452016-01-03 16:06:05 +11001969 dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 len = 2;
1972 data = extended_msg + 1;
1973 phase = PHASE_MSGIN;
1974 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001975 dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n",
1976 (int)extended_msg[1],
1977 (int)extended_msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Finn Thaine0783ed2016-01-03 16:05:45 +11001979 if (!len && extended_msg[1] > 0 &&
1980 extended_msg[1] <= sizeof(extended_msg) - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /* Accept third byte by clearing ACK */
1982 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1983 len = extended_msg[1] - 1;
1984 data = extended_msg + 3;
1985 phase = PHASE_MSGIN;
1986
1987 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001988 dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n",
1989 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 switch (extended_msg[2]) {
1992 case EXTENDED_SDTR:
1993 case EXTENDED_WDTR:
1994 case EXTENDED_MODIFY_DATA_POINTER:
1995 case EXTENDED_EXTENDED_IDENTIFY:
1996 tmp = 0;
1997 }
1998 } else if (len) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001999 shost_printk(KERN_ERR, instance, "error receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 tmp = 0;
2001 } else {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002002 shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n",
2003 extended_msg[2], extended_msg[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 tmp = 0;
2005 }
Finn Thain11d2f632016-01-03 16:05:51 +11002006
2007 spin_lock_irq(&hostdata->lock);
2008 if (!hostdata->connected)
2009 return;
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 /* Fall through to reject message */
2012
Finn Thainaff0cf92016-01-03 16:06:09 +11002013 /*
2014 * If we get something weird that we aren't expecting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 * reject it.
2016 */
2017 default:
2018 if (!tmp) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002019 shost_printk(KERN_ERR, instance, "rejecting message ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002020 spi_print_msg(extended_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 printk("\n");
2022 } else if (tmp != EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04002023 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002024 "rejecting unknown message %02x\n",
2025 tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 else
Jeff Garzik017560f2005-10-24 18:04:36 -04002027 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002028 "rejecting unknown extended message code %02x, length %d\n",
2029 extended_msg[1], extended_msg[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 msgout = MESSAGE_REJECT;
2032 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2033 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11002034 } /* switch (tmp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 break;
2036 case PHASE_MSGOUT:
2037 len = 1;
2038 data = &msgout;
2039 hostdata->last_message = msgout;
2040 NCR5380_transfer_pio(instance, &phase, &len, &data);
2041 if (msgout == ABORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 hostdata->connected = NULL;
2043 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11002044 complete_cmd(instance, cmd);
Finn Thain52d3e562016-03-23 21:10:20 +11002045 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return;
2047 }
2048 msgout = NOP;
2049 break;
2050 case PHASE_CMDOUT:
2051 len = cmd->cmd_len;
2052 data = cmd->cmnd;
Finn Thainaff0cf92016-01-03 16:06:09 +11002053 /*
2054 * XXX for performance reasons, on machines with a
2055 * PSEUDO-DMA architecture we should probably
2056 * use the dma transfer function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
2058 NCR5380_transfer_pio(instance, &phase, &len, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 break;
2060 case PHASE_STATIN:
2061 len = 1;
2062 data = &tmp;
2063 NCR5380_transfer_pio(instance, &phase, &len, &data);
2064 cmd->SCp.Status = tmp;
2065 break;
2066 default:
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002067 shost_printk(KERN_ERR, instance, "unknown phase\n");
Finn Thain4dde8f72014-03-18 11:42:17 +11002068 NCR5380_dprint(NDEBUG_ANY, instance);
Finn Thain0d2cf862016-01-03 16:06:11 +11002069 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002070 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002071 spin_unlock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002072 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11002073 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
Finn Thain11d2f632016-01-03 16:05:51 +11002075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
2078/*
2079 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2080 *
Finn Thainaff0cf92016-01-03 16:06:09 +11002081 * Purpose : does reselection, initializing the instance->connected
Finn Thain594d4ba2016-01-03 16:06:10 +11002082 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
2083 * nexus has been reestablished,
Finn Thainaff0cf92016-01-03 16:06:09 +11002084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * Inputs : instance - this instance of the NCR5380.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 */
2087
Finn Thain0d2cf862016-01-03 16:06:11 +11002088static void NCR5380_reselect(struct Scsi_Host *instance)
2089{
Finn Thaine8a60142016-01-03 16:05:54 +11002090 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 unsigned char target_mask;
Finn Thaine9db3192016-03-23 21:10:21 +11002092 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 unsigned char msg[3];
Finn Thain32b26a12016-01-03 16:05:58 +11002094 struct NCR5380_cmd *ncmd;
2095 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 /*
2098 * Disable arbitration, etc. since the host adapter obviously
2099 * lost, and tell an interrupted NCR5380_select() to restart.
2100 */
2101
2102 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thainb7465452016-01-03 16:06:05 +11002105
2106 dsprintk(NDEBUG_RESELECTION, instance, "reselect\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Finn Thainaff0cf92016-01-03 16:06:09 +11002108 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 * At this point, we have detected that our SCSI ID is on the bus,
2110 * SEL is true and BSY was false for at least one bus settle delay
2111 * (400 ns).
2112 *
2113 * We must assert BSY ourselves, until the target drops the SEL
2114 * signal.
2115 */
2116
2117 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thain72064a72016-01-03 16:05:44 +11002118 if (NCR5380_poll_politely(instance,
2119 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
2120 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2121 return;
2122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2124
2125 /*
2126 * Wait for target to go into MSGIN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 */
2128
Finn Thain1cc160e2016-01-03 16:05:32 +11002129 if (NCR5380_poll_politely(instance,
Finn Thain72064a72016-01-03 16:05:44 +11002130 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
2131 do_abort(instance);
2132 return;
2133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Finn Thaine9db3192016-03-23 21:10:21 +11002135#ifdef CONFIG_SUN3
2136 /* acknowledge toggle to MSGIN */
2137 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Finn Thaine9db3192016-03-23 21:10:21 +11002139 /* peek at the byte without really hitting the bus */
2140 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2141#else
2142 {
2143 int len = 1;
2144 unsigned char *data = msg;
2145 unsigned char phase = PHASE_MSGIN;
2146
2147 NCR5380_transfer_pio(instance, &phase, &len, &data);
2148
2149 if (len) {
2150 do_abort(instance);
2151 return;
2152 }
Finn Thain72064a72016-01-03 16:05:44 +11002153 }
Finn Thaine9db3192016-03-23 21:10:21 +11002154#endif /* CONFIG_SUN3 */
Finn Thain72064a72016-01-03 16:05:44 +11002155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (!(msg[0] & 0x80)) {
Finn Thain72064a72016-01-03 16:05:44 +11002157 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002158 spi_print_msg(msg);
Finn Thain72064a72016-01-03 16:05:44 +11002159 printk("\n");
2160 do_abort(instance);
2161 return;
2162 }
2163 lun = msg[0] & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
Finn Thain72064a72016-01-03 16:05:44 +11002165 /*
2166 * We need to add code for SCSI-II to track which devices have
2167 * I_T_L_Q nexuses established, and which have simple I_T_L
2168 * nexuses so we can chose to do additional data transfer.
2169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Finn Thain72064a72016-01-03 16:05:44 +11002171 /*
2172 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2173 * just reestablished, and remove it from the disconnected queue.
2174 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Finn Thain32b26a12016-01-03 16:05:58 +11002176 tmp = NULL;
2177 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2178 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2179
2180 if (target_mask == (1 << scmd_id(cmd)) &&
2181 lun == (u8)cmd->device->lun) {
2182 list_del(&ncmd->list);
2183 tmp = cmd;
Finn Thain72064a72016-01-03 16:05:44 +11002184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186 }
Finn Thain0d3d9a42016-01-03 16:05:55 +11002187
2188 if (tmp) {
2189 dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance,
2190 "reselect: removed %p from disconnected queue\n", tmp);
2191 } else {
Finn Thain72064a72016-01-03 16:05:44 +11002192 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2193 target_mask, lun);
2194 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11002195 * Since we have an established nexus that we can't do anything
2196 * with, we must abort it.
Finn Thain72064a72016-01-03 16:05:44 +11002197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 do_abort(instance);
Finn Thain72064a72016-01-03 16:05:44 +11002199 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
Finn Thain72064a72016-01-03 16:05:44 +11002201
Finn Thaine9db3192016-03-23 21:10:21 +11002202#ifdef CONFIG_SUN3
2203 {
2204 void *d;
2205 unsigned long count;
2206
2207 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2208 count = tmp->SCp.buffer->length;
2209 d = sg_virt(tmp->SCp.buffer);
2210 } else {
2211 count = tmp->SCp.this_residual;
2212 d = tmp->SCp.ptr;
2213 }
2214
2215 if (sun3_dma_setup_done != tmp &&
2216 sun3scsi_dma_xfer_len(count, tmp) > 0) {
2217 sun3scsi_dma_setup(instance, d, count,
2218 rq_data_dir(tmp->request));
2219 sun3_dma_setup_done = tmp;
2220 }
2221 }
2222
2223 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2224#endif /* CONFIG_SUN3 */
2225
Finn Thain72064a72016-01-03 16:05:44 +11002226 /* Accept message by clearing ACK */
2227 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2228
2229 hostdata->connected = tmp;
Finn Thainc4ec6f92016-03-23 21:10:22 +11002230 dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu\n",
2231 scmd_id(tmp), tmp->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
Finn Thain8b00c3d2016-01-03 16:06:01 +11002234/**
2235 * list_find_cmd - test for presence of a command in a linked list
2236 * @haystack: list of commands
2237 * @needle: command to search for
2238 */
2239
2240static bool list_find_cmd(struct list_head *haystack,
2241 struct scsi_cmnd *needle)
2242{
2243 struct NCR5380_cmd *ncmd;
2244
2245 list_for_each_entry(ncmd, haystack, list)
2246 if (NCR5380_to_scmd(ncmd) == needle)
2247 return true;
2248 return false;
2249}
2250
2251/**
2252 * list_remove_cmd - remove a command from linked list
2253 * @haystack: list of commands
2254 * @needle: command to remove
2255 */
2256
2257static bool list_del_cmd(struct list_head *haystack,
2258 struct scsi_cmnd *needle)
2259{
2260 if (list_find_cmd(haystack, needle)) {
2261 struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle);
2262
2263 list_del(&ncmd->list);
2264 return true;
2265 }
2266 return false;
2267}
2268
2269/**
2270 * NCR5380_abort - scsi host eh_abort_handler() method
2271 * @cmd: the command to be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002273 * Try to abort a given command by removing it from queues and/or sending
2274 * the target an abort message. This may not succeed in causing a target
2275 * to abort the command. Nonetheless, the low-level driver must forget about
2276 * the command because the mid-layer reclaims it and it may be re-issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002278 * The normal path taken by a command is as follows. For EH we trace this
2279 * same path to locate and abort the command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002281 * unissued -> selecting -> [unissued -> selecting ->]... connected ->
2282 * [disconnected -> connected ->]...
2283 * [autosense -> connected ->] done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002285 * If cmd was not found at all then presumably it has already been completed,
2286 * in which case return SUCCESS to try to avoid further EH measures.
Finn Thaindc183962016-02-23 10:07:07 +11002287 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002288 * If the command has not completed yet, we must not fail to find it.
Finn Thaindc183962016-02-23 10:07:07 +11002289 * We have no option but to forget the aborted command (even if it still
2290 * lacks sense data). The mid-layer may re-issue a command that is in error
2291 * recovery (see scsi_send_eh_cmnd), but the logic and data structures in
2292 * this driver are such that a command can appear on one queue only.
Finn Thain71a00592016-02-23 10:07:06 +11002293 *
2294 * The lock protects driver data structures, but EH handlers also use it
2295 * to serialize their own execution and prevent their own re-entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 */
2297
Finn Thain710ddd02014-11-12 16:12:02 +11002298static int NCR5380_abort(struct scsi_cmnd *cmd)
2299{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct Scsi_Host *instance = cmd->device->host;
Finn Thaine8a60142016-01-03 16:05:54 +11002301 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002302 unsigned long flags;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002303 int result = SUCCESS;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002304
Finn Thain11d2f632016-01-03 16:05:51 +11002305 spin_lock_irqsave(&hostdata->lock, flags);
2306
Finn Thain32b26a12016-01-03 16:05:58 +11002307#if (NDEBUG & NDEBUG_ANY)
Finn Thain8b00c3d2016-01-03 16:06:01 +11002308 scmd_printk(KERN_INFO, cmd, __func__);
Finn Thain32b26a12016-01-03 16:05:58 +11002309#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002310 NCR5380_dprint(NDEBUG_ANY, instance);
2311 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Finn Thain8b00c3d2016-01-03 16:06:01 +11002313 if (list_del_cmd(&hostdata->unissued, cmd)) {
2314 dsprintk(NDEBUG_ABORT, instance,
2315 "abort: removed %p from issue queue\n", cmd);
2316 cmd->result = DID_ABORT << 16;
2317 cmd->scsi_done(cmd); /* No tag or busy flag to worry about */
Finn Thaindc183962016-02-23 10:07:07 +11002318 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002319 }
2320
Finn Thain707d62b2016-01-03 16:06:02 +11002321 if (hostdata->selecting == cmd) {
2322 dsprintk(NDEBUG_ABORT, instance,
2323 "abort: cmd %p == selecting\n", cmd);
2324 hostdata->selecting = NULL;
2325 cmd->result = DID_ABORT << 16;
2326 complete_cmd(instance, cmd);
2327 goto out;
2328 }
2329
Finn Thain8b00c3d2016-01-03 16:06:01 +11002330 if (list_del_cmd(&hostdata->disconnected, cmd)) {
2331 dsprintk(NDEBUG_ABORT, instance,
2332 "abort: removed %p from disconnected list\n", cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002333 /* Can't call NCR5380_select() and send ABORT because that
2334 * means releasing the lock. Need a bus reset.
2335 */
Finn Thaindc183962016-02-23 10:07:07 +11002336 set_host_byte(cmd, DID_ERROR);
2337 complete_cmd(instance, cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002338 result = FAILED;
2339 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002340 }
2341
2342 if (hostdata->connected == cmd) {
2343 dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd);
2344 hostdata->connected = NULL;
Finn Thaindc183962016-02-23 10:07:07 +11002345 hostdata->dma_len = 0;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002346 if (do_abort(instance)) {
2347 set_host_byte(cmd, DID_ERROR);
2348 complete_cmd(instance, cmd);
2349 result = FAILED;
2350 goto out;
2351 }
2352 set_host_byte(cmd, DID_ABORT);
Finn Thaindc183962016-02-23 10:07:07 +11002353 complete_cmd(instance, cmd);
2354 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002355 }
2356
Finn Thaindc183962016-02-23 10:07:07 +11002357 if (list_del_cmd(&hostdata->autosense, cmd)) {
Finn Thain8b00c3d2016-01-03 16:06:01 +11002358 dsprintk(NDEBUG_ABORT, instance,
Finn Thaindc183962016-02-23 10:07:07 +11002359 "abort: removed %p from sense queue\n", cmd);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002360 complete_cmd(instance, cmd);
2361 }
2362
2363out:
2364 if (result == FAILED)
2365 dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd);
2366 else
2367 dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd);
2368
2369 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002370 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002371 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain32b26a12016-01-03 16:05:58 +11002372
Finn Thain8b00c3d2016-01-03 16:06:01 +11002373 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
2376
Finn Thain3be1b3e2016-01-03 16:05:12 +11002377/**
2378 * NCR5380_bus_reset - reset the SCSI bus
2379 * @cmd: SCSI command undergoing EH
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002381 * Returns SUCCESS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 */
2383
Finn Thain710ddd02014-11-12 16:12:02 +11002384static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002385{
2386 struct Scsi_Host *instance = cmd->device->host;
Finn Thain11d2f632016-01-03 16:05:51 +11002387 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain62717f52016-01-03 16:06:03 +11002388 int i;
Finn Thain11d2f632016-01-03 16:05:51 +11002389 unsigned long flags;
Finn Thain62717f52016-01-03 16:06:03 +11002390 struct NCR5380_cmd *ncmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Finn Thain11d2f632016-01-03 16:05:51 +11002392 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002393
2394#if (NDEBUG & NDEBUG_ANY)
Hannes Reinecke64684e02018-09-27 11:17:11 +10002395 shost_printk(KERN_INFO, instance, __func__);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002396#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002397 NCR5380_dprint(NDEBUG_ANY, instance);
2398 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002399
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002400 do_reset(instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002401
Finn Thain62717f52016-01-03 16:06:03 +11002402 /* reset NCR registers */
2403 NCR5380_write(MODE_REG, MR_BASE);
2404 NCR5380_write(TARGET_COMMAND_REG, 0);
2405 NCR5380_write(SELECT_ENABLE_REG, 0);
2406
2407 /* After the reset, there are no more connected or disconnected commands
2408 * and no busy units; so clear the low-level status here to avoid
2409 * conflicts when the mid-level code tries to wake up the affected
2410 * commands!
2411 */
2412
Hannes Reinecke64684e02018-09-27 11:17:11 +10002413 list_for_each_entry(ncmd, &hostdata->unissued, list) {
2414 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2415
Finn Thain1884c282016-02-23 10:07:04 +11002416 cmd->result = DID_RESET << 16;
2417 cmd->scsi_done(cmd);
2418 }
Hannes Reinecke64684e02018-09-27 11:17:11 +10002419 INIT_LIST_HEAD(&hostdata->unissued);
Finn Thain1884c282016-02-23 10:07:04 +11002420
2421 if (hostdata->selecting) {
2422 hostdata->selecting->result = DID_RESET << 16;
2423 complete_cmd(instance, hostdata->selecting);
2424 hostdata->selecting = NULL;
2425 }
Finn Thain62717f52016-01-03 16:06:03 +11002426
2427 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2428 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2429
2430 set_host_byte(cmd, DID_RESET);
Finn Thain216fad92016-03-23 21:10:32 +11002431 complete_cmd(instance, cmd);
Finn Thain62717f52016-01-03 16:06:03 +11002432 }
Finn Thain1884c282016-02-23 10:07:04 +11002433 INIT_LIST_HEAD(&hostdata->disconnected);
Finn Thain62717f52016-01-03 16:06:03 +11002434
2435 list_for_each_entry(ncmd, &hostdata->autosense, list) {
2436 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2437
Finn Thain62717f52016-01-03 16:06:03 +11002438 cmd->scsi_done(cmd);
2439 }
Finn Thain1884c282016-02-23 10:07:04 +11002440 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain62717f52016-01-03 16:06:03 +11002441
2442 if (hostdata->connected) {
2443 set_host_byte(hostdata->connected, DID_RESET);
2444 complete_cmd(instance, hostdata->connected);
2445 hostdata->connected = NULL;
2446 }
2447
Finn Thain62717f52016-01-03 16:06:03 +11002448 for (i = 0; i < 8; ++i)
2449 hostdata->busy[i] = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002450 hostdata->dma_len = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002451
2452 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002453 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002454 spin_unlock_irqrestore(&hostdata->lock, flags);
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return SUCCESS;
2457}