blob: 08e3ea8159b3934ee1f7f33511b04f62ce44d69b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Finn Thainaff0cf92016-01-03 16:06:09 +11002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * NCR 5380 generic driver routines. These should make it *trivial*
Finn Thain594d4ba2016-01-03 16:06:10 +11004 * to implement 5380 SCSI drivers under Linux with a non-trantor
5 * architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Finn Thain594d4ba2016-01-03 16:06:10 +11007 * Note that these routines also work with NR53c400 family chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Copyright 1993, Drew Eckhardt
Finn Thain594d4ba2016-01-03 16:06:10 +110010 * Visionary Computing
11 * (Unix and Linux consulting and custom programming)
12 * drew@colorado.edu
13 * +1 (303) 666-5836
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Finn Thainaff0cf92016-01-03 16:06:09 +110015 * For more information, please consult
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * NCR 5380 Family
18 * SCSI Protocol Controller
19 * Databook
20 *
21 * NCR Microelectronics
22 * 1635 Aeroplaza Drive
23 * Colorado Springs, CO 80916
24 * 1+ (719) 578-3400
25 * 1+ (800) 334-5454
26 */
27
28/*
Finn Thainc16df322016-01-03 16:06:08 +110029 * With contributions from Ray Van Tassle, Ingmar Baumgart,
30 * Ronald van Cuijlenborg, Alan Cox and others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32
Finn Thain52d3e562016-03-23 21:10:20 +110033/* Ported to Atari by Roman Hodek and others. */
34
Finn Thaine9db3192016-03-23 21:10:21 +110035/* Adapted for the Sun 3 by Sam Creasey. */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * Design
39 *
Finn Thainaff0cf92016-01-03 16:06:09 +110040 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * one simply writes appropriate system specific macros (ie, data
Finn Thainaff0cf92016-01-03 16:06:09 +110042 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * memory mapped) and drops this file in their 'C' wrapper.
44 *
Finn Thainaff0cf92016-01-03 16:06:09 +110045 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * each 5380 in the system - commands that haven't been issued yet,
Finn Thainaff0cf92016-01-03 16:06:09 +110047 * and commands that are currently executing. This means that an
48 * unlimited number of commands may be queued, letting
49 * more commands propagate from the higher driver levels giving higher
50 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
51 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * while a command is already executing.
53 *
54 *
Finn Thainaff0cf92016-01-03 16:06:09 +110055 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
Finn Thainaff0cf92016-01-03 16:06:09 +110057 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
58 * piece of hardware that requires you to sit in a loop polling for
59 * the REQ signal as long as you are connected. Some devices are
60 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Finn Thain686f3992016-01-03 16:05:26 +110061 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * broken devices are the exception rather than the rule and I'd rather
63 * spend my time optimizing for the normal case.
64 *
65 * Architecture :
66 *
67 * At the heart of the design is a coroutine, NCR5380_main,
68 * which is started from a workqueue for each NCR5380 host in the
69 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
70 * removing the commands from the issue queue and calling
Finn Thainaff0cf92016-01-03 16:06:09 +110071 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 *
73 * Once a nexus is established, the NCR5380_information_transfer()
74 * phase goes through the various phases as instructed by the target.
75 * if the target goes into MSG IN and sends a DISCONNECT message,
76 * the command structure is placed into the per instance disconnected
Finn Thainaff0cf92016-01-03 16:06:09 +110077 * queue, and NCR5380_main tries to find more work. If the target is
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * idle for too long, the system will try to sleep.
79 *
80 * If a command has disconnected, eventually an interrupt will trigger,
81 * calling NCR5380_intr() which will in turn call NCR5380_reselect
82 * to reestablish a nexus. This will run main if necessary.
83 *
Finn Thainaff0cf92016-01-03 16:06:09 +110084 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * appropriate.
86 *
Finn Thainaff0cf92016-01-03 16:06:09 +110087 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * structures, being initialized after the command is connected
89 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
90 * Note that in violation of the standard, an implicit SAVE POINTERS operation
91 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
92 */
93
94/*
95 * Using this file :
96 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Finn Thainaff0cf92016-01-03 16:06:09 +110097 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * and macros and include this file in your driver.
99 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * These macros MUST be defined :
Finn Thainaff0cf92016-01-03 16:06:09 +1100101 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * NCR5380_read(register) - read from the specified register
103 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100104 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100106 * NCR5380_implementation_fields - additional fields needed for this
Finn Thain594d4ba2016-01-03 16:06:10 +1100107 * specific implementation of the NCR5380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
109 * Either real DMA *or* pseudo DMA may be implemented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 *
Finn Thain4a98f892016-10-10 00:46:53 -0400111 * NCR5380_dma_xfer_len - determine size of DMA/PDMA transfer
112 * NCR5380_dma_send_setup - execute DMA/PDMA from memory to 5380
113 * NCR5380_dma_recv_setup - execute DMA/PDMA from 5380 to memory
114 * NCR5380_dma_residual - residual byte count
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * The generic driver is initialized by calling NCR5380_init(instance),
Ondrej Zary906e4a3c2016-12-05 01:07:20 -0500117 * after setting the appropriate host specific fields and ID.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
119
Finn Thaine5d55d12016-03-23 21:10:16 +1100120#ifndef NCR5380_io_delay
121#define NCR5380_io_delay(x)
122#endif
123
Finn Thain52d3e562016-03-23 21:10:20 +1100124#ifndef NCR5380_acquire_dma_irq
125#define NCR5380_acquire_dma_irq(x) (1)
126#endif
127
128#ifndef NCR5380_release_dma_irq
129#define NCR5380_release_dma_irq(x)
130#endif
131
Finn Thain54d8fe42016-01-03 16:05:06 +1100132static int do_abort(struct Scsi_Host *);
133static void do_reset(struct Scsi_Host *);
Finn Thain6b0e87a2018-09-27 11:17:11 +1000134static void bus_reset_cleanup(struct Scsi_Host *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Finn Thainc16df322016-01-03 16:06:08 +1100136/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100137 * initialize_SCp - init the scsi pointer field
Finn Thain594d4ba2016-01-03 16:06:10 +1100138 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100140 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142
Finn Thain710ddd02014-11-12 16:12:02 +1100143static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Finn Thainaff0cf92016-01-03 16:06:09 +1100145 /*
146 * Initialize the Scsi Pointer field so that all of the commands in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 * various queues are valid.
148 */
149
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200150 if (scsi_bufflen(cmd)) {
151 cmd->SCp.buffer = scsi_sglist(cmd);
152 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200153 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 cmd->SCp.this_residual = cmd->SCp.buffer->length;
155 } else {
156 cmd->SCp.buffer = NULL;
157 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200158 cmd->SCp.ptr = NULL;
159 cmd->SCp.this_residual = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100161
162 cmd->SCp.Status = 0;
163 cmd->SCp.Message = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166/**
Finn Thainb32ade12016-01-03 16:05:41 +1100167 * NCR5380_poll_politely2 - wait for two chip register values
Finn Thaind5d37a02016-10-10 00:46:53 -0400168 * @hostdata: host private data
Finn Thainb32ade12016-01-03 16:05:41 +1100169 * @reg1: 5380 register to poll
170 * @bit1: Bitmask to check
171 * @val1: Expected value
172 * @reg2: Second 5380 register to poll
173 * @bit2: Second bitmask to check
174 * @val2: Second expected value
Finn Thain2f854b82016-01-03 16:05:22 +1100175 * @wait: Time-out in jiffies
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
Finn Thain2f854b82016-01-03 16:05:22 +1100177 * Polls the chip in a reasonably efficient manner waiting for an
178 * event to occur. After a short quick poll we begin to yield the CPU
179 * (if possible). In irq contexts the time-out is arbitrarily limited.
180 * Callers may hold locks as long as they are held in irq mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *
Finn Thainb32ade12016-01-03 16:05:41 +1100182 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Finn Thaind5d37a02016-10-10 00:46:53 -0400185static int NCR5380_poll_politely2(struct NCR5380_hostdata *hostdata,
Finn Thain61e1ce52016-10-10 00:46:53 -0400186 unsigned int reg1, u8 bit1, u8 val1,
187 unsigned int reg2, u8 bit2, u8 val2,
188 unsigned long wait)
Finn Thain2f854b82016-01-03 16:05:22 +1100189{
Finn Thaind4408dd2016-10-10 00:46:52 -0400190 unsigned long n = hostdata->poll_loops;
Finn Thain2f854b82016-01-03 16:05:22 +1100191 unsigned long deadline = jiffies + wait;
Finn Thain2f854b82016-01-03 16:05:22 +1100192
Finn Thain2f854b82016-01-03 16:05:22 +1100193 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100194 if ((NCR5380_read(reg1) & bit1) == val1)
195 return 0;
196 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return 0;
198 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100199 } while (n--);
200
201 if (irqs_disabled() || in_interrupt())
202 return -ETIMEDOUT;
203
204 /* Repeatedly sleep for 1 ms until deadline */
205 while (time_is_after_jiffies(deadline)) {
206 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100207 if ((NCR5380_read(reg1) & bit1) == val1)
208 return 0;
209 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
Finn Thain2f854b82016-01-03 16:05:22 +1100212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -ETIMEDOUT;
214}
215
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100216#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static struct {
218 unsigned char mask;
219 const char *name;
Finn Thainaff0cf92016-01-03 16:06:09 +1100220} signals[] = {
221 {SR_DBP, "PARITY"},
222 {SR_RST, "RST"},
223 {SR_BSY, "BSY"},
224 {SR_REQ, "REQ"},
225 {SR_MSG, "MSG"},
226 {SR_CD, "CD"},
227 {SR_IO, "IO"},
228 {SR_SEL, "SEL"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100230},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231basrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100232 {BASR_END_DMA_TRANSFER, "END OF DMA"},
233 {BASR_DRQ, "DRQ"},
234 {BASR_PARITY_ERROR, "PARITY ERROR"},
235 {BASR_IRQ, "IRQ"},
236 {BASR_PHASE_MATCH, "PHASE MATCH"},
237 {BASR_BUSY_ERROR, "BUSY ERROR"},
Finn Thainaff0cf92016-01-03 16:06:09 +1100238 {BASR_ATN, "ATN"},
239 {BASR_ACK, "ACK"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100241},
242icrs[] = {
243 {ICR_ASSERT_RST, "ASSERT RST"},
Finn Thain12866b92016-03-23 21:10:25 +1100244 {ICR_ARBITRATION_PROGRESS, "ARB. IN PROGRESS"},
245 {ICR_ARBITRATION_LOST, "LOST ARB."},
Finn Thainaff0cf92016-01-03 16:06:09 +1100246 {ICR_ASSERT_ACK, "ASSERT ACK"},
247 {ICR_ASSERT_BSY, "ASSERT BSY"},
248 {ICR_ASSERT_SEL, "ASSERT SEL"},
249 {ICR_ASSERT_ATN, "ASSERT ATN"},
250 {ICR_ASSERT_DATA, "ASSERT DATA"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100252},
253mrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100254 {MR_BLOCK_DMA_MODE, "BLOCK DMA MODE"},
255 {MR_TARGET, "TARGET"},
256 {MR_ENABLE_PAR_CHECK, "PARITY CHECK"},
257 {MR_ENABLE_PAR_INTR, "PARITY INTR"},
258 {MR_ENABLE_EOP_INTR, "EOP INTR"},
259 {MR_MONITOR_BSY, "MONITOR BSY"},
260 {MR_DMA_MODE, "DMA MODE"},
261 {MR_ARBITRATE, "ARBITRATE"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 {0, NULL}
263};
264
265/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100266 * NCR5380_print - print scsi bus signals
267 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100269 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
271
272static void NCR5380_print(struct Scsi_Host *instance)
273{
Finn Thain61e1ce52016-10-10 00:46:53 -0400274 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain8cee3e12019-03-08 08:49:02 +1100275 unsigned char status, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 status = NCR5380_read(STATUS_REG);
278 mr = NCR5380_read(MODE_REG);
279 icr = NCR5380_read(INITIATOR_COMMAND_REG);
280 basr = NCR5380_read(BUS_AND_STATUS_REG);
281
Finn Thain12866b92016-03-23 21:10:25 +1100282 printk(KERN_DEBUG "SR = 0x%02x : ", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 for (i = 0; signals[i].mask; ++i)
284 if (status & signals[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100285 printk(KERN_CONT "%s, ", signals[i].name);
286 printk(KERN_CONT "\nBASR = 0x%02x : ", basr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 for (i = 0; basrs[i].mask; ++i)
288 if (basr & basrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100289 printk(KERN_CONT "%s, ", basrs[i].name);
290 printk(KERN_CONT "\nICR = 0x%02x : ", icr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 for (i = 0; icrs[i].mask; ++i)
292 if (icr & icrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100293 printk(KERN_CONT "%s, ", icrs[i].name);
294 printk(KERN_CONT "\nMR = 0x%02x : ", mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 for (i = 0; mrs[i].mask; ++i)
296 if (mr & mrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100297 printk(KERN_CONT "%s, ", mrs[i].name);
298 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Finn Thain0d2cf862016-01-03 16:06:11 +1100301static struct {
302 unsigned char value;
303 const char *name;
304} phases[] = {
305 {PHASE_DATAOUT, "DATAOUT"},
306 {PHASE_DATAIN, "DATAIN"},
307 {PHASE_CMDOUT, "CMDOUT"},
308 {PHASE_STATIN, "STATIN"},
309 {PHASE_MSGOUT, "MSGOUT"},
310 {PHASE_MSGIN, "MSGIN"},
311 {PHASE_UNKNOWN, "UNKNOWN"}
312};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Finn Thainc16df322016-01-03 16:06:08 +1100314/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100315 * NCR5380_print_phase - show SCSI phase
Finn Thain594d4ba2016-01-03 16:06:10 +1100316 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100318 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
320
321static void NCR5380_print_phase(struct Scsi_Host *instance)
322{
Finn Thain61e1ce52016-10-10 00:46:53 -0400323 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned char status;
325 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 status = NCR5380_read(STATUS_REG);
328 if (!(status & SR_REQ))
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100329 shost_printk(KERN_DEBUG, instance, "REQ not asserted, phase unknown.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 else {
Finn Thain0d2cf862016-01-03 16:06:11 +1100331 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
332 (phases[i].value != (status & PHASE_MASK)); ++i)
333 ;
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100334 shost_printk(KERN_DEBUG, instance, "phase %s\n", phases[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336}
337#endif
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/**
Finn Thain09028462017-01-15 18:50:57 -0500340 * NCR5380_info - report driver and host information
Finn Thain594d4ba2016-01-03 16:06:10 +1100341 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100343 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
345
Finn Thain8c325132014-11-12 16:11:58 +1100346static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Finn Thain8c325132014-11-12 16:11:58 +1100348 struct NCR5380_hostdata *hostdata = shost_priv(instance);
349
350 return hostdata->info;
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100354 * NCR5380_init - initialise an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100355 * @instance: adapter to configure
356 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100358 * Initializes *instance and corresponding 5380 chip,
359 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100361 * Notes : I assume that the host, hostno, and id bits have been
Finn Thain0d2cf862016-01-03 16:06:11 +1100362 * set correctly. I don't care about the irq and other fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100364 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 */
366
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800367static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Finn Thaine8a60142016-01-03 16:05:54 +1100369 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100370 int i;
Finn Thain2f854b82016-01-03 16:05:22 +1100371 unsigned long deadline;
Finn Thaind4408dd2016-10-10 00:46:52 -0400372 unsigned long accesses_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Finn Thainae5e33a2016-03-23 21:10:23 +1100374 instance->max_lun = 7;
375
Finn Thain0d2cf862016-01-03 16:06:11 +1100376 hostdata->host = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 hostdata->id_mask = 1 << instance->this_id;
Finn Thain0d2cf862016-01-03 16:06:11 +1100378 hostdata->id_higher_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
380 if (i > hostdata->id_mask)
381 hostdata->id_higher_mask |= i;
382 for (i = 0; i < 8; ++i)
383 hostdata->busy[i] = 0;
Finn Thaine4dec682016-03-23 21:10:12 +1100384 hostdata->dma_len = 0;
385
Finn Thain11d2f632016-01-03 16:05:51 +1100386 spin_lock_init(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 hostdata->connected = NULL;
Finn Thainf27db8e2016-01-03 16:06:00 +1100388 hostdata->sensing = NULL;
389 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain32b26a12016-01-03 16:05:58 +1100390 INIT_LIST_HEAD(&hostdata->unissued);
391 INIT_LIST_HEAD(&hostdata->disconnected);
392
Finn Thain55181be2016-01-03 16:05:42 +1100393 hostdata->flags = flags;
Finn Thainaff0cf92016-01-03 16:06:09 +1100394
Finn Thain8d8601a2016-01-03 16:05:37 +1100395 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100396 hostdata->work_q = alloc_workqueue("ncr5380_%d",
397 WQ_UNBOUND | WQ_MEM_RECLAIM,
398 1, instance->host_no);
399 if (!hostdata->work_q)
400 return -ENOMEM;
401
Finn Thain09028462017-01-15 18:50:57 -0500402 snprintf(hostdata->info, sizeof(hostdata->info),
403 "%s, irq %d, io_port 0x%lx, base 0x%lx, can_queue %d, cmd_per_lun %d, sg_tablesize %d, this_id %d, flags { %s%s%s}",
404 instance->hostt->name, instance->irq, hostdata->io_port,
405 hostdata->base, instance->can_queue, instance->cmd_per_lun,
406 instance->sg_tablesize, instance->this_id,
407 hostdata->flags & FLAG_DMA_FIXUP ? "DMA_FIXUP " : "",
408 hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "",
409 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "");
Finn Thain8c325132014-11-12 16:11:58 +1100410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
412 NCR5380_write(MODE_REG, MR_BASE);
413 NCR5380_write(TARGET_COMMAND_REG, 0);
414 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thain2f854b82016-01-03 16:05:22 +1100415
416 /* Calibrate register polling loop */
417 i = 0;
418 deadline = jiffies + 1;
419 do {
420 cpu_relax();
421 } while (time_is_after_jiffies(deadline));
422 deadline += msecs_to_jiffies(256);
423 do {
424 NCR5380_read(STATUS_REG);
425 ++i;
426 cpu_relax();
427 } while (time_is_after_jiffies(deadline));
Finn Thaind4408dd2016-10-10 00:46:52 -0400428 accesses_per_ms = i / 256;
429 hostdata->poll_loops = NCR5380_REG_POLL_TIME * accesses_per_ms / 2;
Finn Thain2f854b82016-01-03 16:05:22 +1100430
Finn Thainb6488f92016-01-03 16:05:08 +1100431 return 0;
432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Finn Thainb6488f92016-01-03 16:05:08 +1100434/**
435 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
436 * @instance: adapter to check
437 *
438 * If the system crashed, it may have crashed with a connected target and
439 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
440 * currently established nexus, which we know nothing about. Failing that
441 * do a bus reset.
442 *
443 * Note that a bus reset will cause the chip to assert IRQ.
444 *
445 * Returns 0 if successful, otherwise -ENXIO.
446 */
447
448static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
449{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100450 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100451 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
454 switch (pass) {
455 case 1:
456 case 3:
457 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100458 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
Finn Thaind5d37a02016-10-10 00:46:53 -0400459 NCR5380_poll_politely(hostdata,
Finn Thain636b1ec2016-01-03 16:05:10 +1100460 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 break;
462 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100463 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 do_abort(instance);
465 break;
466 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100467 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100469 /* Wait after a reset; the SCSI standard calls for
470 * 250ms, we wait 500ms to be on the safe side.
471 * But some Toshiba CD-ROMs need ten times that.
472 */
473 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
474 msleep(2500);
475 else
476 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 break;
478 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100479 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return -ENXIO;
481 }
482 }
483 return 0;
484}
485
486/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100487 * NCR5380_exit - remove an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100488 * @instance: adapter to remove
Finn Thain0d2cf862016-01-03 16:06:11 +1100489 *
490 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
492
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800493static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Finn Thaine8a60142016-01-03 16:05:54 +1100495 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Finn Thain8d8601a2016-01-03 16:05:37 +1100497 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100498 destroy_workqueue(hostdata->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501/**
Finn Thain677e0192016-01-03 16:05:59 +1100502 * complete_cmd - finish processing a command and return it to the SCSI ML
503 * @instance: the host instance
504 * @cmd: command to complete
505 */
506
507static void complete_cmd(struct Scsi_Host *instance,
508 struct scsi_cmnd *cmd)
509{
510 struct NCR5380_hostdata *hostdata = shost_priv(instance);
511
512 dsprintk(NDEBUG_QUEUES, instance, "complete_cmd: cmd %p\n", cmd);
513
Finn Thainf27db8e2016-01-03 16:06:00 +1100514 if (hostdata->sensing == cmd) {
515 /* Autosense processing ends here */
Finn Thain07035652018-09-27 11:17:11 +1000516 if (status_byte(cmd->result) != GOOD) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100517 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thain07035652018-09-27 11:17:11 +1000518 } else {
Finn Thainf27db8e2016-01-03 16:06:00 +1100519 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thain07035652018-09-27 11:17:11 +1000520 set_driver_byte(cmd, DRIVER_SENSE);
521 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100522 hostdata->sensing = NULL;
523 }
524
Finn Thain677e0192016-01-03 16:05:59 +1100525 cmd->scsi_done(cmd);
526}
527
528/**
Finn Thain1bb40582016-01-03 16:05:29 +1100529 * NCR5380_queue_command - queue a command
530 * @instance: the relevant SCSI adapter
531 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *
Finn Thain1bb40582016-01-03 16:05:29 +1100533 * cmd is added to the per-instance issue queue, with minor
534 * twiddling done to the host specific fields of cmd. If the
535 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 */
537
Finn Thain1bb40582016-01-03 16:05:29 +1100538static int NCR5380_queue_command(struct Scsi_Host *instance,
539 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Finn Thain1bb40582016-01-03 16:05:29 +1100541 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain32b26a12016-01-03 16:05:58 +1100542 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
Finn Thain1bb40582016-01-03 16:05:29 +1100543 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545#if (NDEBUG & NDEBUG_NO_WRITE)
546 switch (cmd->cmnd[0]) {
547 case WRITE_6:
548 case WRITE_10:
Finn Thaindbb6b352016-01-03 16:05:53 +1100549 shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 cmd->result = (DID_ERROR << 16);
Finn Thain1bb40582016-01-03 16:05:29 +1100551 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 0;
553 }
Finn Thain0d2cf862016-01-03 16:06:11 +1100554#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 cmd->result = 0;
557
Finn Thain52d3e562016-03-23 21:10:20 +1100558 if (!NCR5380_acquire_dma_irq(instance))
559 return SCSI_MLQUEUE_HOST_BUSY;
560
Finn Thain11d2f632016-01-03 16:05:51 +1100561 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100562
Finn Thainaff0cf92016-01-03 16:06:09 +1100563 /*
564 * Insert the cmd into the issue queue. Note that REQUEST SENSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * commands are added to the head of the queue since any command will
Finn Thainaff0cf92016-01-03 16:06:09 +1100566 * clear the contingent allegiance condition that exists and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * sense data is only guaranteed to be valid while the condition exists.
568 */
569
Finn Thain32b26a12016-01-03 16:05:58 +1100570 if (cmd->cmnd[0] == REQUEST_SENSE)
571 list_add(&ncmd->list, &hostdata->unissued);
572 else
573 list_add_tail(&ncmd->list, &hostdata->unissued);
574
Finn Thain11d2f632016-01-03 16:05:51 +1100575 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100576
Finn Thaindbb6b352016-01-03 16:05:53 +1100577 dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n",
578 cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* Kick off command processing */
Finn Thain8d8601a2016-01-03 16:05:37 +1100581 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return 0;
583}
584
Finn Thain52d3e562016-03-23 21:10:20 +1100585static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
586{
587 struct NCR5380_hostdata *hostdata = shost_priv(instance);
588
589 /* Caller does the locking needed to set & test these data atomically */
590 if (list_empty(&hostdata->disconnected) &&
591 list_empty(&hostdata->unissued) &&
592 list_empty(&hostdata->autosense) &&
593 !hostdata->connected &&
Finn Thain4ab2a782017-01-15 18:50:57 -0500594 !hostdata->selecting) {
Finn Thain52d3e562016-03-23 21:10:20 +1100595 NCR5380_release_dma_irq(instance);
Finn Thain4ab2a782017-01-15 18:50:57 -0500596 }
Finn Thain52d3e562016-03-23 21:10:20 +1100597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/**
Finn Thainf27db8e2016-01-03 16:06:00 +1100600 * dequeue_next_cmd - dequeue a command for processing
601 * @instance: the scsi host instance
602 *
603 * Priority is given to commands on the autosense queue. These commands
604 * need autosense because of a CHECK CONDITION result.
605 *
606 * Returns a command pointer if a command is found for a target that is
607 * not already busy. Otherwise returns NULL.
608 */
609
610static struct scsi_cmnd *dequeue_next_cmd(struct Scsi_Host *instance)
611{
612 struct NCR5380_hostdata *hostdata = shost_priv(instance);
613 struct NCR5380_cmd *ncmd;
614 struct scsi_cmnd *cmd;
615
Finn Thain8d5dbec2016-02-23 10:07:09 +1100616 if (hostdata->sensing || list_empty(&hostdata->autosense)) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100617 list_for_each_entry(ncmd, &hostdata->unissued, list) {
618 cmd = NCR5380_to_scmd(ncmd);
619 dsprintk(NDEBUG_QUEUES, instance, "dequeue: cmd=%p target=%d busy=0x%02x lun=%llu\n",
620 cmd, scmd_id(cmd), hostdata->busy[scmd_id(cmd)], cmd->device->lun);
621
622 if (!(hostdata->busy[scmd_id(cmd)] & (1 << cmd->device->lun))) {
623 list_del(&ncmd->list);
624 dsprintk(NDEBUG_QUEUES, instance,
625 "dequeue: removed %p from issue queue\n", cmd);
626 return cmd;
627 }
628 }
629 } else {
630 /* Autosense processing begins here */
631 ncmd = list_first_entry(&hostdata->autosense,
632 struct NCR5380_cmd, list);
633 list_del(&ncmd->list);
634 cmd = NCR5380_to_scmd(ncmd);
635 dsprintk(NDEBUG_QUEUES, instance,
636 "dequeue: removed %p from autosense queue\n", cmd);
637 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
638 hostdata->sensing = cmd;
639 return cmd;
640 }
641 return NULL;
642}
643
644static void requeue_cmd(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
645{
646 struct NCR5380_hostdata *hostdata = shost_priv(instance);
647 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
648
Finn Thain8d5dbec2016-02-23 10:07:09 +1100649 if (hostdata->sensing == cmd) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100650 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
651 list_add(&ncmd->list, &hostdata->autosense);
652 hostdata->sensing = NULL;
653 } else
654 list_add(&ncmd->list, &hostdata->unissued);
655}
656
657/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100658 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100660 * NCR5380_main is a coroutine that runs as long as more work can
661 * be done on the NCR5380 host adapters in a system. Both
662 * NCR5380_queue_command() and NCR5380_intr() will try to start it
663 * in case it is not running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665
David Howellsc4028952006-11-22 14:57:56 +0000666static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
David Howellsc4028952006-11-22 14:57:56 +0000668 struct NCR5380_hostdata *hostdata =
Finn Thain8d8601a2016-01-03 16:05:37 +1100669 container_of(work, struct NCR5380_hostdata, main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct Scsi_Host *instance = hostdata->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 int done;
Finn Thainaff0cf92016-01-03 16:06:09 +1100672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 done = 1;
Finn Thain11d2f632016-01-03 16:05:51 +1100675
Finn Thain0a4e3612016-01-03 16:06:07 +1100676 spin_lock_irq(&hostdata->lock);
Finn Thainccf6efd2016-02-23 10:07:08 +1100677 while (!hostdata->connected && !hostdata->selecting) {
678 struct scsi_cmnd *cmd = dequeue_next_cmd(instance);
679
680 if (!cmd)
681 break;
Finn Thainf27db8e2016-01-03 16:06:00 +1100682
683 dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd);
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
Finn Thainf27db8e2016-01-03 16:06:00 +1100686 * Attempt to establish an I_T_L nexus here.
687 * On success, instance->hostdata->connected is set.
688 * On failure, we must add the command back to the
689 * issue queue so we can keep trying.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Finn Thainf27db8e2016-01-03 16:06:00 +1100691 /*
692 * REQUEST SENSE commands are issued without tagged
693 * queueing, even on SCSI-II devices because the
694 * contingent allegiance condition exists for the
695 * entire unit.
696 */
Finn Thain32b26a12016-01-03 16:05:58 +1100697
Finn Thainccf6efd2016-02-23 10:07:08 +1100698 if (!NCR5380_select(instance, cmd)) {
Finn Thain707d62b2016-01-03 16:06:02 +1100699 dsprintk(NDEBUG_MAIN, instance, "main: select complete\n");
Finn Thain52d3e562016-03-23 21:10:20 +1100700 maybe_release_dma_irq(instance);
Finn Thainf27db8e2016-01-03 16:06:00 +1100701 } else {
702 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance,
703 "main: select failed, returning %p to queue\n", cmd);
704 requeue_cmd(instance, cmd);
705 }
706 }
Finn Thaine4dec682016-03-23 21:10:12 +1100707 if (hostdata->connected && !hostdata->dma_len) {
Finn Thainb7465452016-01-03 16:06:05 +1100708 dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 NCR5380_information_transfer(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 done = 0;
Finn Thain1d3db592016-01-03 16:05:24 +1100711 }
Finn Thain57f31322019-06-09 11:19:11 +1000712 if (!hostdata->connected)
713 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain0a4e3612016-01-03 16:06:07 +1100714 spin_unlock_irq(&hostdata->lock);
715 if (!done)
716 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Finn Thain8053b0e2016-03-23 21:10:19 +1100720/*
721 * NCR5380_dma_complete - finish DMA transfer
722 * @instance: the scsi host instance
723 *
724 * Called by the interrupt handler when DMA finishes or a phase
725 * mismatch occurs (which would end the DMA transfer).
726 */
727
728static void NCR5380_dma_complete(struct Scsi_Host *instance)
729{
730 struct NCR5380_hostdata *hostdata = shost_priv(instance);
731 int transferred;
732 unsigned char **data;
733 int *count;
734 int saved_data = 0, overrun = 0;
735 unsigned char p;
736
737 if (hostdata->read_overruns) {
738 p = hostdata->connected->SCp.phase;
739 if (p & SR_IO) {
740 udelay(10);
741 if ((NCR5380_read(BUS_AND_STATUS_REG) &
742 (BASR_PHASE_MATCH | BASR_ACK)) ==
743 (BASR_PHASE_MATCH | BASR_ACK)) {
744 saved_data = NCR5380_read(INPUT_DATA_REG);
745 overrun = 1;
746 dsprintk(NDEBUG_DMA, instance, "read overrun handled\n");
747 }
748 }
749 }
750
Finn Thaine9db3192016-03-23 21:10:21 +1100751#ifdef CONFIG_SUN3
752 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
753 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
754 instance->host_no);
755 BUG();
756 }
757
758 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
759 (BASR_PHASE_MATCH | BASR_ACK)) {
760 pr_err("scsi%d: BASR %02x\n", instance->host_no,
761 NCR5380_read(BUS_AND_STATUS_REG));
762 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
763 instance->host_no);
764 BUG();
765 }
766#endif
767
Finn Thain8053b0e2016-03-23 21:10:19 +1100768 NCR5380_write(MODE_REG, MR_BASE);
769 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
770 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
771
Finn Thain4a98f892016-10-10 00:46:53 -0400772 transferred = hostdata->dma_len - NCR5380_dma_residual(hostdata);
Finn Thain8053b0e2016-03-23 21:10:19 +1100773 hostdata->dma_len = 0;
774
775 data = (unsigned char **)&hostdata->connected->SCp.ptr;
776 count = &hostdata->connected->SCp.this_residual;
777 *data += transferred;
778 *count -= transferred;
779
780 if (hostdata->read_overruns) {
781 int cnt, toPIO;
782
783 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
784 cnt = toPIO = hostdata->read_overruns;
785 if (overrun) {
786 dsprintk(NDEBUG_DMA, instance,
787 "Got an input overrun, using saved byte\n");
788 *(*data)++ = saved_data;
789 (*count)--;
790 cnt--;
791 toPIO--;
792 }
793 if (toPIO > 0) {
794 dsprintk(NDEBUG_DMA, instance,
795 "Doing %d byte PIO to 0x%p\n", cnt, *data);
796 NCR5380_transfer_pio(instance, &p, &cnt, data);
797 *count -= toPIO - cnt;
798 }
799 }
800 }
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/**
Finn Thaincd400822016-01-03 16:05:40 +1100804 * NCR5380_intr - generic NCR5380 irq handler
805 * @irq: interrupt number
806 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 *
Finn Thaincd400822016-01-03 16:05:40 +1100808 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
809 * from the disconnected queue, and restarting NCR5380_main()
810 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 *
Finn Thaincd400822016-01-03 16:05:40 +1100812 * The chip can assert IRQ in any of six different conditions. The IRQ flag
813 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
814 * Three of these six conditions are latched in the Bus and Status Register:
815 * - End of DMA (cleared by ending DMA Mode)
816 * - Parity error (cleared by reading RPIR)
817 * - Loss of BSY (cleared by reading RPIR)
818 * Two conditions have flag bits that are not latched:
819 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
820 * - Bus reset (non-maskable)
821 * The remaining condition has no flag bit at all:
822 * - Selection/reselection
823 *
824 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
825 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
826 * claimed that "the design of the [DP8490] interrupt logic ensures
827 * interrupts will not be lost (they can be on the DP5380)."
828 * The L5380/53C80 datasheet from LOGIC Devices has more details.
829 *
830 * Checking for bus reset by reading RST is futile because of interrupt
831 * latency, but a bus reset will reset chip logic. Checking for parity error
832 * is unnecessary because that interrupt is never enabled. A Loss of BSY
833 * condition will clear DMA Mode. We can tell when this occurs because the
834 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
836
Finn Thaina46865d2016-03-23 21:10:27 +1100837static irqreturn_t __maybe_unused NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -0800839 struct Scsi_Host *instance = dev_id;
Finn Thaincd400822016-01-03 16:05:40 +1100840 struct NCR5380_hostdata *hostdata = shost_priv(instance);
841 int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 unsigned char basr;
843 unsigned long flags;
844
Finn Thain11d2f632016-01-03 16:05:51 +1100845 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Finn Thaincd400822016-01-03 16:05:40 +1100847 basr = NCR5380_read(BUS_AND_STATUS_REG);
848 if (basr & BASR_IRQ) {
849 unsigned char mr = NCR5380_read(MODE_REG);
850 unsigned char sr = NCR5380_read(STATUS_REG);
851
Finn Thainb7465452016-01-03 16:06:05 +1100852 dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
853 irq, basr, sr, mr);
Finn Thaincd400822016-01-03 16:05:40 +1100854
Finn Thain8053b0e2016-03-23 21:10:19 +1100855 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
856 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
857 * We ack IRQ after clearing Mode Register. Workarounds
858 * for End of DMA errata need to happen in DMA Mode.
859 */
860
861 dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n");
862
863 if (hostdata->connected) {
864 NCR5380_dma_complete(instance);
865 queue_work(hostdata->work_q, &hostdata->main_task);
866 } else {
867 NCR5380_write(MODE_REG, MR_BASE);
868 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
869 }
870 } else if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
Finn Thaincd400822016-01-03 16:05:40 +1100871 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
872 /* Probably reselected */
873 NCR5380_write(SELECT_ENABLE_REG, 0);
874 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
875
Finn Thainb7465452016-01-03 16:06:05 +1100876 dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n");
Finn Thaincd400822016-01-03 16:05:40 +1100877
878 if (!hostdata->connected) {
879 NCR5380_reselect(instance);
880 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Finn Thaincd400822016-01-03 16:05:40 +1100882 if (!hostdata->connected)
883 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
884 } else {
885 /* Probably Bus Reset */
886 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
887
Finn Thain6b0e87a2018-09-27 11:17:11 +1000888 if (sr & SR_RST) {
889 /* Certainly Bus Reset */
890 shost_printk(KERN_WARNING, instance,
891 "bus reset interrupt\n");
892 bus_reset_cleanup(instance);
893 } else {
894 dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n");
895 }
Finn Thaine9db3192016-03-23 21:10:21 +1100896#ifdef SUN3_SCSI_VME
897 dregs->csr |= CSR_DMA_ENABLE;
898#endif
Finn Thaincd400822016-01-03 16:05:40 +1100899 }
900 handled = 1;
901 } else {
Finn Thain9af9fec2016-10-10 00:46:53 -0400902 dsprintk(NDEBUG_INTR, instance, "interrupt without IRQ bit\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100903#ifdef SUN3_SCSI_VME
904 dregs->csr |= CSR_DMA_ENABLE;
905#endif
Finn Thaincd400822016-01-03 16:05:40 +1100906 }
907
Finn Thain11d2f632016-01-03 16:05:51 +1100908 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaincd400822016-01-03 16:05:40 +1100909
910 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
Finn Thaindad82612018-09-27 11:17:11 +1000913/**
914 * NCR5380_select - attempt arbitration and selection for a given command
915 * @instance: the Scsi_Host instance
916 * @cmd: the scsi_cmnd to execute
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 *
Finn Thaindad82612018-09-27 11:17:11 +1000918 * This routine establishes an I_T_L nexus for a SCSI command. This involves
919 * ARBITRATION, SELECTION and MESSAGE OUT phases and an IDENTIFY message.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 *
Finn Thaindad82612018-09-27 11:17:11 +1000921 * Returns true if the operation should be retried.
922 * Returns false if it should not be retried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100924 * Side effects :
Finn Thain594d4ba2016-01-03 16:06:10 +1100925 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
926 * with registers as they should have been on entry - ie
927 * SELECT_ENABLE will be set appropriately, the NCR5380
928 * will cease to drive any SCSI bus signals.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 *
Finn Thaindad82612018-09-27 11:17:11 +1000930 * If successful : the I_T_L nexus will be established, and
931 * hostdata->connected will be set to cmd.
Finn Thain594d4ba2016-01-03 16:06:10 +1100932 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100934 * If failed (no target) : cmd->scsi_done() will be called, and the
935 * cmd->result host byte set to DID_BAD_TARGET.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
Finn Thainaff0cf92016-01-03 16:06:09 +1100937
Finn Thaindad82612018-09-27 11:17:11 +1000938static bool NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
Finn Thain4ab2a782017-01-15 18:50:57 -0500939 __releases(&hostdata->lock) __acquires(&hostdata->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Finn Thaine8a60142016-01-03 16:05:54 +1100941 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 unsigned char tmp[3], phase;
943 unsigned char *data;
944 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 int err;
Finn Thaindad82612018-09-27 11:17:11 +1000946 bool ret = true;
Finn Thain7c8ed782018-09-27 11:17:11 +1000947 bool can_disconnect = instance->irq != NO_IRQ &&
948 cmd->cmnd[0] != REQUEST_SENSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thainb7465452016-01-03 16:06:05 +1100951 dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n",
952 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Finn Thain707d62b2016-01-03 16:06:02 +1100954 /*
955 * Arbitration and selection phases are slow and involve dropping the
956 * lock, so we have to watch out for EH. An exception handler may
Finn Thaindad82612018-09-27 11:17:11 +1000957 * change 'selecting' to NULL. This function will then return false
Finn Thain707d62b2016-01-03 16:06:02 +1100958 * so that the caller will forget about 'cmd'. (During information
959 * transfer phases, EH may change 'connected' to NULL.)
960 */
961 hostdata->selecting = cmd;
962
Finn Thainaff0cf92016-01-03 16:06:09 +1100963 /*
964 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * data bus during SELECTION.
966 */
967
968 NCR5380_write(TARGET_COMMAND_REG, 0);
969
Finn Thainaff0cf92016-01-03 16:06:09 +1100970 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * Start arbitration.
972 */
973
974 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
975 NCR5380_write(MODE_REG, MR_ARBITRATE);
976
Finn Thain55500d92016-01-03 16:05:35 +1100977 /* The chip now waits for BUS FREE phase. Then after the 800 ns
978 * Bus Free Delay, arbitration will begin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 */
980
Finn Thain11d2f632016-01-03 16:05:51 +1100981 spin_unlock_irq(&hostdata->lock);
Finn Thaind5d37a02016-10-10 00:46:53 -0400982 err = NCR5380_poll_politely2(hostdata, MODE_REG, MR_ARBITRATE, 0,
Finn Thainb32ade12016-01-03 16:05:41 +1100983 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
984 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +1100985 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +1100986 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
987 /* Reselection interrupt */
Finn Thain707d62b2016-01-03 16:06:02 +1100988 goto out;
Finn Thainb32ade12016-01-03 16:05:41 +1100989 }
Finn Thainccf6efd2016-02-23 10:07:08 +1100990 if (!hostdata->selecting) {
991 /* Command was aborted */
992 NCR5380_write(MODE_REG, MR_BASE);
Finn Thaindad82612018-09-27 11:17:11 +1000993 return false;
Finn Thainccf6efd2016-02-23 10:07:08 +1100994 }
Finn Thainb32ade12016-01-03 16:05:41 +1100995 if (err < 0) {
996 NCR5380_write(MODE_REG, MR_BASE);
997 shost_printk(KERN_ERR, instance,
998 "select: arbitration timeout\n");
Finn Thain707d62b2016-01-03 16:06:02 +1100999 goto out;
Finn Thain55500d92016-01-03 16:05:35 +11001000 }
Finn Thain11d2f632016-01-03 16:05:51 +11001001 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001002
1003 /* The SCSI-2 arbitration delay is 2.4 us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 udelay(3);
1005
1006 /* Check for lost arbitration */
Finn Thain0d2cf862016-01-03 16:06:11 +11001007 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1008 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1009 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 NCR5380_write(MODE_REG, MR_BASE);
Finn Thainb7465452016-01-03 16:06:05 +11001011 dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n");
Finn Thain11d2f632016-01-03 16:05:51 +11001012 spin_lock_irq(&hostdata->lock);
Finn Thain707d62b2016-01-03 16:06:02 +11001013 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Finn Thaincf13b082016-01-03 16:05:18 +11001015
1016 /* After/during arbitration, BSY should be asserted.
1017 * IBM DPES-31080 Version S31Q works now
1018 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1019 */
1020 NCR5380_write(INITIATOR_COMMAND_REG,
1021 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Finn Thainaff0cf92016-01-03 16:06:09 +11001023 /*
1024 * Again, bus clear + bus settle time is 1.2us, however, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 * a minimum so we'll udelay ceil(1.2)
1026 */
1027
Finn Thain9c3f0e22016-01-03 16:05:11 +11001028 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1029 udelay(15);
1030 else
1031 udelay(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Finn Thain11d2f632016-01-03 16:05:51 +11001033 spin_lock_irq(&hostdata->lock);
1034
Finn Thain72064a72016-01-03 16:05:44 +11001035 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1036 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Finn Thain707d62b2016-01-03 16:06:02 +11001037 goto out;
1038
1039 if (!hostdata->selecting) {
1040 NCR5380_write(MODE_REG, MR_BASE);
1041 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaindad82612018-09-27 11:17:11 +10001042 return false;
Finn Thain707d62b2016-01-03 16:06:02 +11001043 }
Finn Thain72064a72016-01-03 16:05:44 +11001044
Finn Thainb7465452016-01-03 16:06:05 +11001045 dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Finn Thainaff0cf92016-01-03 16:06:09 +11001047 /*
1048 * Now that we have won arbitration, start Selection process, asserting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * the host and target ID's on the SCSI bus.
1050 */
1051
Finn Thain3d07d222016-01-03 16:06:13 +11001052 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Finn Thainaff0cf92016-01-03 16:06:09 +11001054 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 * Raise ATN while SEL is true before BSY goes false from arbitration,
1056 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1057 * phase immediately after selection.
1058 */
1059
Finn Thain3d07d222016-01-03 16:06:13 +11001060 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY |
1061 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 NCR5380_write(MODE_REG, MR_BASE);
1063
Finn Thainaff0cf92016-01-03 16:06:09 +11001064 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 * Reselect interrupts must be turned off prior to the dropping of BSY,
1066 * otherwise we will trigger an interrupt.
1067 */
1068 NCR5380_write(SELECT_ENABLE_REG, 0);
1069
Finn Thain11d2f632016-01-03 16:05:51 +11001070 spin_unlock_irq(&hostdata->lock);
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001073 * The initiator shall then wait at least two deskew delays and release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 * the BSY signal.
1075 */
Finn Thain0d2cf862016-01-03 16:06:11 +11001076 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 /* Reset BSY */
Finn Thain3d07d222016-01-03 16:06:13 +11001079 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA |
1080 ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Finn Thainaff0cf92016-01-03 16:06:09 +11001082 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 * Something weird happens when we cease to drive BSY - looks
Finn Thainaff0cf92016-01-03 16:06:09 +11001084 * like the board/chip is letting us do another read before the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 * appropriate propagation delay has expired, and we're confusing
1086 * a BSY signal from ourselves as the target's response to SELECTION.
1087 *
1088 * A small delay (the 'C++' frontend breaks the pipeline with an
1089 * unnecessary jump, making it work on my 386-33/Trantor T128, the
Finn Thainaff0cf92016-01-03 16:06:09 +11001090 * tighter 'C' code breaks and requires this) solves the problem -
1091 * the 1 us delay is arbitrary, and only used because this delay will
1092 * be the same on other platforms and since it works here, it should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 * work there.
1094 *
1095 * wingel suggests that this could be due to failing to wait
1096 * one deskew delay.
1097 */
1098
1099 udelay(1);
1100
Finn Thainb7465452016-01-03 16:06:05 +11001101 dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Finn Thainaff0cf92016-01-03 16:06:09 +11001103 /*
1104 * The SCSI specification calls for a 250 ms timeout for the actual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 * selection.
1106 */
1107
Finn Thaind5d37a02016-10-10 00:46:53 -04001108 err = NCR5380_poll_politely(hostdata, STATUS_REG, SR_BSY, SR_BSY,
Finn Thainae753a32016-01-03 16:05:23 +11001109 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001112 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1114 NCR5380_reselect(instance);
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001115 shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Finn Thainae753a32016-01-03 16:05:23 +11001118
1119 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001120 spin_lock_irq(&hostdata->lock);
Finn Thainae753a32016-01-03 16:05:23 +11001121 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain6a162832018-09-27 11:17:11 +10001122
Finn Thain707d62b2016-01-03 16:06:02 +11001123 /* Can't touch cmd if it has been reclaimed by the scsi ML */
Finn Thain6a162832018-09-27 11:17:11 +10001124 if (!hostdata->selecting)
Finn Thaindad82612018-09-27 11:17:11 +10001125 return false;
Finn Thain6a162832018-09-27 11:17:11 +10001126
1127 cmd->result = DID_BAD_TARGET << 16;
1128 complete_cmd(instance, cmd);
1129 dsprintk(NDEBUG_SELECTION, instance,
1130 "target did not respond within 250ms\n");
Finn Thaindad82612018-09-27 11:17:11 +10001131 ret = false;
Finn Thain707d62b2016-01-03 16:06:02 +11001132 goto out;
Finn Thainae753a32016-01-03 16:05:23 +11001133 }
1134
Finn Thainaff0cf92016-01-03 16:06:09 +11001135 /*
1136 * No less than two deskew delays after the initiator detects the
1137 * BSY signal is true, it shall release the SEL signal and may
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * change the DATA BUS. -wingel
1139 */
1140
1141 udelay(1);
1142
1143 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001146 * Since we followed the SCSI spec, and raised ATN while SEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 * was true but before BSY was false during selection, the information
1148 * transfer phase should be a MESSAGE OUT phase so that we can send the
1149 * IDENTIFY message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 */
1151
1152 /* Wait for start of REQ/ACK handshake */
1153
Finn Thaind5d37a02016-10-10 00:46:53 -04001154 err = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001155 spin_lock_irq(&hostdata->lock);
Finn Thain1cc160e2016-01-03 16:05:32 +11001156 if (err < 0) {
Finn Thain55500d92016-01-03 16:05:35 +11001157 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1158 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain707d62b2016-01-03 16:06:02 +11001159 goto out;
1160 }
1161 if (!hostdata->selecting) {
1162 do_abort(instance);
Finn Thaindad82612018-09-27 11:17:11 +10001163 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
1165
Finn Thainb7465452016-01-03 16:06:05 +11001166 dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n",
1167 scmd_id(cmd));
Finn Thain7c8ed782018-09-27 11:17:11 +10001168 tmp[0] = IDENTIFY(can_disconnect, cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 len = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 data = tmp;
1172 phase = PHASE_MSGOUT;
1173 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb15e7912017-01-15 18:50:57 -05001174 if (len) {
1175 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1176 cmd->result = DID_ERROR << 16;
1177 complete_cmd(instance, cmd);
1178 dsprintk(NDEBUG_SELECTION, instance, "IDENTIFY message transfer failed\n");
Finn Thaindad82612018-09-27 11:17:11 +10001179 ret = false;
Finn Thainb15e7912017-01-15 18:50:57 -05001180 goto out;
1181 }
1182
Finn Thainb7465452016-01-03 16:06:05 +11001183 dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n");
Finn Thain11d2f632016-01-03 16:05:51 +11001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 hostdata->connected = cmd;
Finn Thain3d07d222016-01-03 16:06:13 +11001186 hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Finn Thaine9db3192016-03-23 21:10:21 +11001188#ifdef SUN3_SCSI_VME
1189 dregs->csr |= CSR_INTR;
1190#endif
1191
Boaz Harrosh28424d32007-09-10 22:37:45 +03001192 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Finn Thaindad82612018-09-27 11:17:11 +10001194 ret = false;
Finn Thain707d62b2016-01-03 16:06:02 +11001195
1196out:
1197 if (!hostdata->selecting)
Finn Thain96edebd2018-10-24 18:45:33 +11001198 return false;
Finn Thain707d62b2016-01-03 16:06:02 +11001199 hostdata->selecting = NULL;
Finn Thaindad82612018-09-27 11:17:11 +10001200 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Finn Thainaff0cf92016-01-03 16:06:09 +11001203/*
1204 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001205 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 *
1207 * Purpose : transfers data in given phase using polled I/O
1208 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001209 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001210 * what phase is expected, *count - pointer to number of
1211 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001212 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 * Returns : -1 when different phase is entered without transferring
Finn Thain0d2cf862016-01-03 16:06:11 +11001214 * maximum number of bytes, 0 if all bytes are transferred or exit
Finn Thain594d4ba2016-01-03 16:06:10 +11001215 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001217 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *
1219 * XXX Note : handling for bus free may be useful.
1220 */
1221
1222/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001223 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * IS 100% reliable, and for the actual data transfer where speed
1225 * counts, we will always do a pseudo DMA or DMA transfer.
1226 */
1227
Finn Thain0d2cf862016-01-03 16:06:11 +11001228static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1229 unsigned char *phase, int *count,
1230 unsigned char **data)
1231{
Finn Thain61e1ce52016-10-10 00:46:53 -04001232 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 unsigned char p = *phase, tmp;
1234 int c = *count;
1235 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Finn Thainaff0cf92016-01-03 16:06:09 +11001237 /*
1238 * The NCR5380 chip will only drive the SCSI bus when the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * phase specified in the appropriate bits of the TARGET COMMAND
1240 * REGISTER match the STATUS REGISTER
1241 */
1242
Finn Thain0d2cf862016-01-03 16:06:11 +11001243 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 do {
Finn Thainaff0cf92016-01-03 16:06:09 +11001246 /*
1247 * Wait for assertion of REQ, after which the phase bits will be
1248 * valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 */
1250
Finn Thaind5d37a02016-10-10 00:46:53 -04001251 if (NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Finn Thainb7465452016-01-03 16:06:05 +11001254 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001257 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thainb7465452016-01-03 16:06:05 +11001258 dsprintk(NDEBUG_PIO, instance, "phase mismatch\n");
1259 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 break;
1261 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /* Do actual transfer from SCSI bus to / from memory */
1264 if (!(p & SR_IO))
1265 NCR5380_write(OUTPUT_DATA_REG, *d);
1266 else
1267 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1268
1269 ++d;
1270
Finn Thainaff0cf92016-01-03 16:06:09 +11001271 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * The SCSI standard suggests that in MSGOUT phase, the initiator
1273 * should drop ATN on the last byte of the message phase
1274 * after REQ has been asserted for the handshake but before
1275 * the initiator raises ACK.
1276 */
1277
1278 if (!(p & SR_IO)) {
1279 if (!((p & SR_MSG) && c > 1)) {
1280 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1281 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001282 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1283 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 } else {
Finn Thain3d07d222016-01-03 16:06:13 +11001285 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1286 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001288 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1289 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291 } else {
1292 NCR5380_dprint(NDEBUG_PIO, instance);
1293 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1294 }
1295
Finn Thaind5d37a02016-10-10 00:46:53 -04001296 if (NCR5380_poll_politely(hostdata,
Finn Thaina2edc4a2016-01-03 16:05:27 +11001297 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1298 break;
1299
Finn Thainb7465452016-01-03 16:06:05 +11001300 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001303 * We have several special cases to consider during REQ/ACK handshaking :
1304 * 1. We were in MSGOUT phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001305 * message. ATN must be dropped as ACK is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001307 * 2. We are in a MSGIN phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001308 * message. We must exit with ACK asserted, so that the calling
1309 * code may raise ATN before dropping ACK to reject the message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 *
1311 * 3. ACK and ATN are clear and the target may proceed as normal.
1312 */
1313 if (!(p == PHASE_MSGIN && c == 1)) {
1314 if (p == PHASE_MSGOUT && c > 1)
1315 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1316 else
1317 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1318 }
1319 } while (--c);
1320
Finn Thainb7465452016-01-03 16:06:05 +11001321 dsprintk(NDEBUG_PIO, instance, "residual %d\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 *count = c;
1324 *data = d;
1325 tmp = NCR5380_read(STATUS_REG);
Finn Thaina2edc4a2016-01-03 16:05:27 +11001326 /* The phase read from the bus is valid if either REQ is (already)
1327 * asserted or if ACK hasn't been released yet. The latter applies if
1328 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
1329 */
1330 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 *phase = tmp & PHASE_MASK;
1332 else
1333 *phase = PHASE_UNKNOWN;
1334
1335 if (!c || (*phase == p))
1336 return 0;
1337 else
1338 return -1;
1339}
1340
1341/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001342 * do_reset - issue a reset command
1343 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001345 * Issue a reset sequence to the NCR5380 and try and get the bus
1346 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001348 * This clears the reset interrupt flag because there may be no handler for
1349 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1350 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001352
Finn Thain54d8fe42016-01-03 16:05:06 +11001353static void do_reset(struct Scsi_Host *instance)
1354{
Finn Thain61e1ce52016-10-10 00:46:53 -04001355 struct NCR5380_hostdata __maybe_unused *hostdata = shost_priv(instance);
Finn Thain636b1ec2016-01-03 16:05:10 +11001356 unsigned long flags;
1357
1358 local_irq_save(flags);
1359 NCR5380_write(TARGET_COMMAND_REG,
1360 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001362 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001364 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1365 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Finn Thain80d3eb62016-01-03 16:05:34 +11001368/**
1369 * do_abort - abort the currently established nexus by going to
1370 * MESSAGE OUT phase and sending an ABORT message.
1371 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001373 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 */
1375
Finn Thain54d8fe42016-01-03 16:05:06 +11001376static int do_abort(struct Scsi_Host *instance)
1377{
Finn Thain61e1ce52016-10-10 00:46:53 -04001378 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 unsigned char *msgptr, phase, tmp;
1380 int len;
1381 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /* Request message out phase */
1384 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1385
Finn Thainaff0cf92016-01-03 16:06:09 +11001386 /*
1387 * Wait for the target to indicate a valid phase by asserting
1388 * REQ. Once this happens, we'll have either a MSGOUT phase
1389 * and can immediately send the ABORT message, or we'll have some
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 * other phase and will have to source/sink data.
Finn Thainaff0cf92016-01-03 16:06:09 +11001391 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 * We really don't care what value was on the bus or what value
1393 * the target sees, so we just handshake.
1394 */
1395
Finn Thaind5d37a02016-10-10 00:46:53 -04001396 rc = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001397 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001398 goto timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Finn Thainf35d3472016-01-03 16:05:33 +11001400 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Finn Thainaff0cf92016-01-03 16:06:09 +11001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1403
Finn Thainf35d3472016-01-03 16:05:33 +11001404 if (tmp != PHASE_MSGOUT) {
Finn Thain0d2cf862016-01-03 16:06:11 +11001405 NCR5380_write(INITIATOR_COMMAND_REG,
1406 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thaind5d37a02016-10-10 00:46:53 -04001407 rc = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, 0, 3 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001408 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001409 goto timeout;
1410 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 tmp = ABORT;
1414 msgptr = &tmp;
1415 len = 1;
1416 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001417 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 /*
1420 * If we got here, and the command completed successfully,
1421 * we're about to go into bus free state.
1422 */
1423
1424 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001425
1426timeout:
1427 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1428 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Finn Thainaff0cf92016-01-03 16:06:09 +11001431/*
1432 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001433 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 *
1435 * Purpose : transfers data in given phase using either real
Finn Thain594d4ba2016-01-03 16:06:10 +11001436 * or pseudo DMA.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001438 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001439 * what phase is expected, *count - pointer to number of
1440 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001441 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 * Returns : -1 when different phase is entered without transferring
Finn Thain594d4ba2016-01-03 16:06:10 +11001443 * maximum number of bytes, 0 if all bytes or transferred or exit
1444 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001446 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
1448
1449
Finn Thain0d2cf862016-01-03 16:06:11 +11001450static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1451 unsigned char *phase, int *count,
1452 unsigned char **data)
1453{
1454 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainf0ea73a2016-03-23 21:10:26 +11001455 int c = *count;
1456 unsigned char p = *phase;
1457 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 unsigned char tmp;
Finn Thain8053b0e2016-03-23 21:10:19 +11001459 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1462 *phase = tmp;
1463 return -1;
1464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Finn Thain8053b0e2016-03-23 21:10:19 +11001466 hostdata->connected->SCp.phase = p;
1467
1468 if (p & SR_IO) {
1469 if (hostdata->read_overruns)
1470 c -= hostdata->read_overruns;
1471 else if (hostdata->flags & FLAG_DMA_FIXUP)
1472 --c;
1473 }
1474
1475 dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n",
1476 (p & SR_IO) ? "receive" : "send", c, d);
1477
Finn Thaine9db3192016-03-23 21:10:21 +11001478#ifdef CONFIG_SUN3
1479 /* send start chain */
1480 sun3scsi_dma_start(c, *data);
1481#endif
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thain8053b0e2016-03-23 21:10:19 +11001484 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1485 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Finn Thain8053b0e2016-03-23 21:10:19 +11001487 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
1488 /* On the Medusa, it is a must to initialize the DMA before
1489 * starting the NCR. This is also the cleaner way for the TT.
1490 */
1491 if (p & SR_IO)
Finn Thain4a98f892016-10-10 00:46:53 -04001492 result = NCR5380_dma_recv_setup(hostdata, d, c);
Finn Thain8053b0e2016-03-23 21:10:19 +11001493 else
Finn Thain4a98f892016-10-10 00:46:53 -04001494 result = NCR5380_dma_send_setup(hostdata, d, c);
Finn Thain8053b0e2016-03-23 21:10:19 +11001495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Finn Thainaff0cf92016-01-03 16:06:09 +11001497 /*
Finn Thain594d4ba2016-01-03 16:06:10 +11001498 * On the PAS16 at least I/O recovery delays are not needed here.
1499 * Everyone else seems to want them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 */
1501
1502 if (p & SR_IO) {
Finn Thaine9db3192016-03-23 21:10:21 +11001503 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaine5d55d12016-03-23 21:10:16 +11001504 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1506 } else {
Finn Thaine5d55d12016-03-23 21:10:16 +11001507 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thaine5d55d12016-03-23 21:10:16 +11001509 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 NCR5380_write(START_DMA_SEND_REG, 0);
Finn Thaine5d55d12016-03-23 21:10:16 +11001511 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513
Finn Thaine9db3192016-03-23 21:10:21 +11001514#ifdef CONFIG_SUN3
1515#ifdef SUN3_SCSI_VME
1516 dregs->csr |= CSR_DMA_ENABLE;
1517#endif
1518 sun3_dma_active = 1;
1519#endif
1520
Finn Thain8053b0e2016-03-23 21:10:19 +11001521 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
1522 /* On the Falcon, the DMA setup must be done after the last
1523 * NCR access, else the DMA setup gets trashed!
1524 */
1525 if (p & SR_IO)
Finn Thain4a98f892016-10-10 00:46:53 -04001526 result = NCR5380_dma_recv_setup(hostdata, d, c);
Finn Thain8053b0e2016-03-23 21:10:19 +11001527 else
Finn Thain4a98f892016-10-10 00:46:53 -04001528 result = NCR5380_dma_send_setup(hostdata, d, c);
Finn Thain8053b0e2016-03-23 21:10:19 +11001529 }
1530
1531 /* On failure, NCR5380_dma_xxxx_setup() returns a negative int. */
1532 if (result < 0)
1533 return result;
1534
1535 /* For real DMA, result is the byte count. DMA interrupt is expected. */
1536 if (result > 0) {
1537 hostdata->dma_len = result;
1538 return 0;
1539 }
1540
1541 /* The result is zero iff pseudo DMA send/receive was completed. */
1542 hostdata->dma_len = c;
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544/*
Finn Thaine4dec682016-03-23 21:10:12 +11001545 * A note regarding the DMA errata workarounds for early NMOS silicon.
Finn Thainc16df322016-01-03 16:06:08 +11001546 *
1547 * For DMA sends, we want to wait until the last byte has been
1548 * transferred out over the bus before we turn off DMA mode. Alas, there
1549 * seems to be no terribly good way of doing this on a 5380 under all
1550 * conditions. For non-scatter-gather operations, we can wait until REQ
1551 * and ACK both go false, or until a phase mismatch occurs. Gather-sends
1552 * are nastier, since the device will be expecting more data than we
1553 * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1554 * could test Last Byte Sent to assure transfer (I imagine this is precisely
1555 * why this signal was added to the newer chips) but on the older 538[01]
1556 * this signal does not exist. The workaround for this lack is a watchdog;
1557 * we bail out of the wait-loop after a modest amount of wait-time if
1558 * the usual exit conditions are not met. Not a terribly clean or
1559 * correct solution :-%
1560 *
1561 * DMA receive is equally tricky due to a nasty characteristic of the NCR5380.
1562 * If the chip is in DMA receive mode, it will respond to a target's
1563 * REQ by latching the SCSI data into the INPUT DATA register and asserting
1564 * ACK, even if it has _already_ been notified by the DMA controller that
1565 * the current DMA transfer has completed! If the NCR5380 is then taken
1566 * out of DMA mode, this already-acknowledged byte is lost. This is
1567 * not a problem for "one DMA transfer per READ command", because
1568 * the situation will never arise... either all of the data is DMA'ed
1569 * properly, or the target switches to MESSAGE IN phase to signal a
1570 * disconnection (either operation bringing the DMA to a clean halt).
1571 * However, in order to handle scatter-receive, we must work around the
Finn Thaine4dec682016-03-23 21:10:12 +11001572 * problem. The chosen fix is to DMA fewer bytes, then check for the
Finn Thainc16df322016-01-03 16:06:08 +11001573 * condition before taking the NCR5380 out of DMA mode. One or two extra
1574 * bytes are transferred via PIO as necessary to fill out the original
1575 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 */
1577
Finn Thain8053b0e2016-03-23 21:10:19 +11001578 if (hostdata->flags & FLAG_DMA_FIXUP) {
1579 if (p & SR_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /*
Finn Thaine4dec682016-03-23 21:10:12 +11001581 * The workaround was to transfer fewer bytes than we
Finn Thainaff0cf92016-01-03 16:06:09 +11001582 * intended to with the pseudo-DMA read function, wait for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 * the chip to latch the last byte, read it, and then disable
1584 * pseudo-DMA mode.
Finn Thainaff0cf92016-01-03 16:06:09 +11001585 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1587 * REQ is deasserted when ACK is asserted, and not reasserted
1588 * until ACK goes false. Since the NCR5380 won't lower ACK
1589 * until DACK is asserted, which won't happen unless we twiddle
Finn Thainaff0cf92016-01-03 16:06:09 +11001590 * the DMA port or we take the NCR5380 out of DMA mode, we
1591 * can guarantee that we won't handshake another extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 * byte.
1593 */
1594
Finn Thaind5d37a02016-10-10 00:46:53 -04001595 if (NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG,
Finn Thain55181be2016-01-03 16:05:42 +11001596 BASR_DRQ, BASR_DRQ, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001597 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001598 shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
Finn Thaind5d37a02016-10-10 00:46:53 -04001600 if (NCR5380_poll_politely(hostdata, STATUS_REG,
Finn Thain55181be2016-01-03 16:05:42 +11001601 SR_REQ, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001602 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001603 shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n");
1604 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001605 d[*count - 1] = NCR5380_read(INPUT_DATA_REG);
1606 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001608 * Wait for the last byte to be sent. If REQ is being asserted for
1609 * the byte we're interested, we'll ACK it and it will go false.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
Finn Thaind5d37a02016-10-10 00:46:53 -04001611 if (NCR5380_poll_politely2(hostdata,
Finn Thain55181be2016-01-03 16:05:42 +11001612 BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ,
1613 BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001614 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001615 shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001619
1620 NCR5380_dma_complete(instance);
Finn Thain438af512016-03-23 21:10:18 +11001621 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624/*
1625 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1626 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001627 * Purpose : run through the various SCSI phases and do as the target
Finn Thain594d4ba2016-01-03 16:06:10 +11001628 * directs us to. Operates on the currently connected command,
1629 * instance->connected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 *
1631 * Inputs : instance, instance for which we are doing commands
1632 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001633 * Side effects : SCSI things happen, the disconnected queue will be
Finn Thain594d4ba2016-01-03 16:06:10 +11001634 * modified if a command disconnects, *instance->connected will
1635 * change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001637 * XXX Note : we need to watch for bus free or a reset condition here
Finn Thain594d4ba2016-01-03 16:06:10 +11001638 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
1640
Finn Thain0d2cf862016-01-03 16:06:11 +11001641static void NCR5380_information_transfer(struct Scsi_Host *instance)
Finn Thain4ab2a782017-01-15 18:50:57 -05001642 __releases(&hostdata->lock) __acquires(&hostdata->lock)
Finn Thain0d2cf862016-01-03 16:06:11 +11001643{
Finn Thaine8a60142016-01-03 16:05:54 +11001644 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 unsigned char msgout = NOP;
1646 int sink = 0;
1647 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 unsigned char *data;
1650 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001651 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Finn Thaine9db3192016-03-23 21:10:21 +11001653#ifdef SUN3_SCSI_VME
1654 dregs->csr |= CSR_INTR;
1655#endif
1656
Finn Thain11d2f632016-01-03 16:05:51 +11001657 while ((cmd = hostdata->connected)) {
Finn Thain32b26a12016-01-03 16:05:58 +11001658 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 tmp = NCR5380_read(STATUS_REG);
1661 /* We only have a valid SCSI phase when REQ is asserted */
1662 if (tmp & SR_REQ) {
1663 phase = (tmp & PHASE_MASK);
1664 if (phase != old_phase) {
1665 old_phase = phase;
1666 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1667 }
Finn Thaine9db3192016-03-23 21:10:21 +11001668#ifdef CONFIG_SUN3
Finn Thain4a98f892016-10-10 00:46:53 -04001669 if (phase == PHASE_CMDOUT &&
1670 sun3_dma_setup_done != cmd) {
1671 int count;
Finn Thaine9db3192016-03-23 21:10:21 +11001672
1673 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
Finn Thain4a98f892016-10-10 00:46:53 -04001674 ++cmd->SCp.buffer;
1675 --cmd->SCp.buffers_residual;
1676 cmd->SCp.this_residual = cmd->SCp.buffer->length;
1677 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thaine9db3192016-03-23 21:10:21 +11001678 }
1679
Finn Thain4a98f892016-10-10 00:46:53 -04001680 count = sun3scsi_dma_xfer_len(hostdata, cmd);
1681
1682 if (count > 0) {
1683 if (rq_data_dir(cmd->request))
1684 sun3scsi_dma_send_setup(hostdata,
1685 cmd->SCp.ptr, count);
1686 else
1687 sun3scsi_dma_recv_setup(hostdata,
1688 cmd->SCp.ptr, count);
Finn Thaine9db3192016-03-23 21:10:21 +11001689 sun3_dma_setup_done = cmd;
1690 }
1691#ifdef SUN3_SCSI_VME
1692 dregs->csr |= CSR_INTR;
1693#endif
1694 }
1695#endif /* CONFIG_SUN3 */
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (sink && (phase != PHASE_MSGOUT)) {
1698 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1699
Finn Thain3d07d222016-01-03 16:06:13 +11001700 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1701 ICR_ASSERT_ACK);
Finn Thain0d2cf862016-01-03 16:06:11 +11001702 while (NCR5380_read(STATUS_REG) & SR_REQ)
1703 ;
Finn Thain3d07d222016-01-03 16:06:13 +11001704 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1705 ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 sink = 0;
1707 continue;
1708 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 switch (phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 case PHASE_DATAOUT:
1712#if (NDEBUG & NDEBUG_NO_DATAOUT)
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001713 shost_printk(KERN_DEBUG, instance, "NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 sink = 1;
1715 do_abort(instance);
1716 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11001717 complete_cmd(instance, cmd);
Finn Thaindc183962016-02-23 10:07:07 +11001718 hostdata->connected = NULL;
Finn Thain45ddc1b2018-09-27 11:17:11 +10001719 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 return;
1721#endif
Finn Thainbf1a0c6f2016-01-03 16:05:47 +11001722 case PHASE_DATAIN:
Finn Thainaff0cf92016-01-03 16:06:09 +11001723 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * If there is no room left in the current buffer in the
1725 * scatter-gather list, move onto the next one.
1726 */
1727
1728 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1729 ++cmd->SCp.buffer;
1730 --cmd->SCp.buffers_residual;
1731 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001732 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thainb7465452016-01-03 16:06:05 +11001733 dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n",
1734 cmd->SCp.this_residual,
1735 cmd->SCp.buffers_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001739 * The preferred transfer method is going to be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 * PSEUDO-DMA for systems that are strictly PIO,
1741 * since we can let the hardware do the handshaking.
1742 *
1743 * For this to work, we need to know the transfersize
1744 * ahead of time, since the pseudo-DMA code will sit
1745 * in an unconditional loop.
1746 */
1747
Finn Thainff3d4572016-01-03 16:05:25 +11001748 transfersize = 0;
Finn Thain7e9ec8d2016-03-23 21:10:11 +11001749 if (!cmd->device->borken)
Finn Thain4a98f892016-10-10 00:46:53 -04001750 transfersize = NCR5380_dma_xfer_len(hostdata, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Finn Thain438af512016-03-23 21:10:18 +11001752 if (transfersize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 len = transfersize;
Finn Thain0d2cf862016-01-03 16:06:11 +11001754 if (NCR5380_transfer_dma(instance, &phase,
1755 &len, (unsigned char **)&cmd->SCp.ptr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11001757 * If the watchdog timer fires, all future
1758 * accesses to this device will use the
1759 * polled-IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 */
Jeff Garzik017560f2005-10-24 18:04:36 -04001761 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11001762 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 cmd->device->borken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 sink = 1;
1765 do_abort(instance);
1766 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /* XXX - need to source or sink data here, as appropriate */
Finn Thain8053b0e2016-03-23 21:10:19 +11001768 }
Finn Thainf825e402016-03-23 21:10:15 +11001769 } else {
Finn Thain08348b12016-08-31 14:44:56 +10001770 /* Transfer a small chunk so that the
1771 * irq mode lock is not held too long.
Finn Thain16788472016-02-23 10:07:05 +11001772 */
Finn Thain08348b12016-08-31 14:44:56 +10001773 transfersize = min(cmd->SCp.this_residual,
1774 NCR5380_PIO_CHUNK_SIZE);
Finn Thain16788472016-02-23 10:07:05 +11001775 len = transfersize;
1776 NCR5380_transfer_pio(instance, &phase, &len,
Finn Thain3d07d222016-01-03 16:06:13 +11001777 (unsigned char **)&cmd->SCp.ptr);
Finn Thain16788472016-02-23 10:07:05 +11001778 cmd->SCp.this_residual -= transfersize - len;
Finn Thain11d2f632016-01-03 16:05:51 +11001779 }
Finn Thaine9db3192016-03-23 21:10:21 +11001780#ifdef CONFIG_SUN3
1781 if (sun3_dma_setup_done == cmd)
1782 sun3_dma_setup_done = NULL;
1783#endif
Finn Thain16788472016-02-23 10:07:05 +11001784 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 case PHASE_MSGIN:
1786 len = 1;
1787 data = &tmp;
1788 NCR5380_transfer_pio(instance, &phase, &len, &data);
1789 cmd->SCp.Message = tmp;
1790
1791 switch (tmp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 case ABORT:
1793 case COMMAND_COMPLETE:
1794 /* Accept message by clearing ACK */
1795 sink = 1;
1796 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001797 dsprintk(NDEBUG_QUEUES, instance,
1798 "COMMAND COMPLETE %p target %d lun %llu\n",
1799 cmd, scmd_id(cmd), cmd->device->lun);
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 hostdata->connected = NULL;
Finn Thain45ddc1b2018-09-27 11:17:11 +10001802 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Finn Thainf27db8e2016-01-03 16:06:00 +11001804 cmd->result &= ~0xffff;
1805 cmd->result |= cmd->SCp.Status;
1806 cmd->result |= cmd->SCp.Message << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Finn Thainf27db8e2016-01-03 16:06:00 +11001808 if (cmd->cmnd[0] == REQUEST_SENSE)
Finn Thain677e0192016-01-03 16:05:59 +11001809 complete_cmd(instance, cmd);
Finn Thainf27db8e2016-01-03 16:06:00 +11001810 else {
1811 if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION ||
1812 cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) {
1813 dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n",
1814 cmd);
1815 list_add_tail(&ncmd->list,
1816 &hostdata->autosense);
1817 } else
1818 complete_cmd(instance, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820
Finn Thainaff0cf92016-01-03 16:06:09 +11001821 /*
1822 * Restore phase bits to 0 so an interrupted selection,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 * arbitration can resume.
1824 */
1825 NCR5380_write(TARGET_COMMAND_REG, 0);
Finn Thain72064a72016-01-03 16:05:44 +11001826
Finn Thain52d3e562016-03-23 21:10:20 +11001827 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return;
1829 case MESSAGE_REJECT:
1830 /* Accept message by clearing ACK */
1831 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1832 switch (hostdata->last_message) {
1833 case HEAD_OF_QUEUE_TAG:
1834 case ORDERED_QUEUE_TAG:
1835 case SIMPLE_QUEUE_TAG:
1836 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001837 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 break;
1839 default:
1840 break;
1841 }
Finn Thain340b9612016-01-03 16:05:31 +11001842 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11001843 case DISCONNECT:
1844 /* Accept message by clearing ACK */
1845 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1846 hostdata->connected = NULL;
1847 list_add(&ncmd->list, &hostdata->disconnected);
1848 dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES,
1849 instance, "connected command %p for target %d lun %llu moved to disconnected queue\n",
1850 cmd, scmd_id(cmd), cmd->device->lun);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001851
Finn Thain0d2cf862016-01-03 16:06:11 +11001852 /*
1853 * Restore phase bits to 0 so an interrupted selection,
1854 * arbitration can resume.
1855 */
1856 NCR5380_write(TARGET_COMMAND_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Finn Thaine9db3192016-03-23 21:10:21 +11001858#ifdef SUN3_SCSI_VME
1859 dregs->csr |= CSR_DMA_ENABLE;
1860#endif
Finn Thain0d2cf862016-01-03 16:06:11 +11001861 return;
Finn Thainaff0cf92016-01-03 16:06:09 +11001862 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
Finn Thainaff0cf92016-01-03 16:06:09 +11001864 * operation, in violation of the SCSI spec so we can safely
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 * ignore SAVE/RESTORE pointers calls.
1866 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001867 * Unfortunately, some disks violate the SCSI spec and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 * don't issue the required SAVE_POINTERS message before
Finn Thainaff0cf92016-01-03 16:06:09 +11001869 * disconnecting, and we have to break spec to remain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 * compatible.
1871 */
1872 case SAVE_POINTERS:
1873 case RESTORE_POINTERS:
1874 /* Accept message by clearing ACK */
1875 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1876 break;
1877 case EXTENDED_MESSAGE:
Finn Thainc16df322016-01-03 16:06:08 +11001878 /*
1879 * Start the message buffer with the EXTENDED_MESSAGE
1880 * byte, since spi_print_msg() wants the whole thing.
1881 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 extended_msg[0] = EXTENDED_MESSAGE;
1883 /* Accept first byte by clearing ACK */
1884 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain11d2f632016-01-03 16:05:51 +11001885
1886 spin_unlock_irq(&hostdata->lock);
1887
Finn Thainb7465452016-01-03 16:06:05 +11001888 dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 len = 2;
1891 data = extended_msg + 1;
1892 phase = PHASE_MSGIN;
1893 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001894 dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n",
1895 (int)extended_msg[1],
1896 (int)extended_msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Finn Thaine0783ed2016-01-03 16:05:45 +11001898 if (!len && extended_msg[1] > 0 &&
1899 extended_msg[1] <= sizeof(extended_msg) - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 /* Accept third byte by clearing ACK */
1901 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1902 len = extended_msg[1] - 1;
1903 data = extended_msg + 3;
1904 phase = PHASE_MSGIN;
1905
1906 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001907 dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n",
1908 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910 switch (extended_msg[2]) {
1911 case EXTENDED_SDTR:
1912 case EXTENDED_WDTR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 tmp = 0;
1914 }
1915 } else if (len) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001916 shost_printk(KERN_ERR, instance, "error receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 tmp = 0;
1918 } else {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001919 shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n",
1920 extended_msg[2], extended_msg[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 tmp = 0;
1922 }
Finn Thain11d2f632016-01-03 16:05:51 +11001923
1924 spin_lock_irq(&hostdata->lock);
1925 if (!hostdata->connected)
1926 return;
1927
Finn Thaindf135e32019-03-08 08:49:02 +11001928 /* Reject message */
1929 /* Fall through */
1930 default:
Finn Thainaff0cf92016-01-03 16:06:09 +11001931 /*
1932 * If we get something weird that we aren't expecting,
Finn Thaindf135e32019-03-08 08:49:02 +11001933 * log it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 */
Finn Thain39bef872017-10-26 16:51:50 +11001935 if (tmp == EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04001936 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11001937 "rejecting unknown extended message code %02x, length %d\n",
Finn Thain39bef872017-10-26 16:51:50 +11001938 extended_msg[2], extended_msg[1]);
1939 else if (tmp)
1940 scmd_printk(KERN_INFO, cmd,
1941 "rejecting unknown message code %02x\n",
1942 tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 msgout = MESSAGE_REJECT;
1945 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1946 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11001947 } /* switch (tmp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 break;
1949 case PHASE_MSGOUT:
1950 len = 1;
1951 data = &msgout;
1952 hostdata->last_message = msgout;
1953 NCR5380_transfer_pio(instance, &phase, &len, &data);
1954 if (msgout == ABORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 hostdata->connected = NULL;
Finn Thain45ddc1b2018-09-27 11:17:11 +10001956 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11001958 complete_cmd(instance, cmd);
Finn Thain52d3e562016-03-23 21:10:20 +11001959 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return;
1961 }
1962 msgout = NOP;
1963 break;
1964 case PHASE_CMDOUT:
1965 len = cmd->cmd_len;
1966 data = cmd->cmnd;
Finn Thainaff0cf92016-01-03 16:06:09 +11001967 /*
1968 * XXX for performance reasons, on machines with a
1969 * PSEUDO-DMA architecture we should probably
1970 * use the dma transfer function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 */
1972 NCR5380_transfer_pio(instance, &phase, &len, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 break;
1974 case PHASE_STATIN:
1975 len = 1;
1976 data = &tmp;
1977 NCR5380_transfer_pio(instance, &phase, &len, &data);
1978 cmd->SCp.Status = tmp;
1979 break;
1980 default:
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001981 shost_printk(KERN_ERR, instance, "unknown phase\n");
Finn Thain4dde8f72014-03-18 11:42:17 +11001982 NCR5380_dprint(NDEBUG_ANY, instance);
Finn Thain0d2cf862016-01-03 16:06:11 +11001983 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11001984 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11001985 spin_unlock_irq(&hostdata->lock);
Finn Thaind5d37a02016-10-10 00:46:53 -04001986 NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001987 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
Finn Thain11d2f632016-01-03 16:05:51 +11001989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990}
1991
1992/*
1993 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
1994 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001995 * Purpose : does reselection, initializing the instance->connected
Finn Thain594d4ba2016-01-03 16:06:10 +11001996 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
1997 * nexus has been reestablished,
Finn Thainaff0cf92016-01-03 16:06:09 +11001998 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 * Inputs : instance - this instance of the NCR5380.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 */
2001
Finn Thain0d2cf862016-01-03 16:06:11 +11002002static void NCR5380_reselect(struct Scsi_Host *instance)
2003{
Finn Thaine8a60142016-01-03 16:05:54 +11002004 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 unsigned char target_mask;
Finn Thaine9db3192016-03-23 21:10:21 +11002006 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 unsigned char msg[3];
Finn Thain32b26a12016-01-03 16:05:58 +11002008 struct NCR5380_cmd *ncmd;
2009 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /*
2012 * Disable arbitration, etc. since the host adapter obviously
2013 * lost, and tell an interrupted NCR5380_select() to restart.
2014 */
2015
2016 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thain7ef55f62018-09-27 11:17:11 +10002019 if (!target_mask || target_mask & (target_mask - 1)) {
2020 shost_printk(KERN_WARNING, instance,
2021 "reselect: bad target_mask 0x%02x\n", target_mask);
2022 return;
2023 }
Finn Thainb7465452016-01-03 16:06:05 +11002024
Finn Thainaff0cf92016-01-03 16:06:09 +11002025 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 * At this point, we have detected that our SCSI ID is on the bus,
2027 * SEL is true and BSY was false for at least one bus settle delay
2028 * (400 ns).
2029 *
2030 * We must assert BSY ourselves, until the target drops the SEL
2031 * signal.
2032 */
2033
2034 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thaind5d37a02016-10-10 00:46:53 -04002035 if (NCR5380_poll_politely(hostdata,
Finn Thain72064a72016-01-03 16:05:44 +11002036 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
Finn Thain08267212018-09-27 11:17:11 +10002037 shost_printk(KERN_ERR, instance, "reselect: !SEL timeout\n");
Finn Thain72064a72016-01-03 16:05:44 +11002038 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2039 return;
2040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2042
2043 /*
2044 * Wait for target to go into MSGIN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 */
2046
Finn Thaind5d37a02016-10-10 00:46:53 -04002047 if (NCR5380_poll_politely(hostdata,
Finn Thain72064a72016-01-03 16:05:44 +11002048 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
Finn Thainca694af2018-09-27 11:17:11 +10002049 if ((NCR5380_read(STATUS_REG) & (SR_BSY | SR_SEL)) == 0)
2050 /* BUS FREE phase */
2051 return;
Finn Thain08267212018-09-27 11:17:11 +10002052 shost_printk(KERN_ERR, instance, "reselect: REQ timeout\n");
Finn Thain72064a72016-01-03 16:05:44 +11002053 do_abort(instance);
2054 return;
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Finn Thaine9db3192016-03-23 21:10:21 +11002057#ifdef CONFIG_SUN3
2058 /* acknowledge toggle to MSGIN */
2059 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Finn Thaine9db3192016-03-23 21:10:21 +11002061 /* peek at the byte without really hitting the bus */
2062 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2063#else
2064 {
2065 int len = 1;
2066 unsigned char *data = msg;
2067 unsigned char phase = PHASE_MSGIN;
2068
2069 NCR5380_transfer_pio(instance, &phase, &len, &data);
2070
2071 if (len) {
2072 do_abort(instance);
2073 return;
2074 }
Finn Thain72064a72016-01-03 16:05:44 +11002075 }
Finn Thaine9db3192016-03-23 21:10:21 +11002076#endif /* CONFIG_SUN3 */
Finn Thain72064a72016-01-03 16:05:44 +11002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (!(msg[0] & 0x80)) {
Finn Thain72064a72016-01-03 16:05:44 +11002079 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002080 spi_print_msg(msg);
Finn Thain72064a72016-01-03 16:05:44 +11002081 printk("\n");
2082 do_abort(instance);
2083 return;
2084 }
2085 lun = msg[0] & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Finn Thain72064a72016-01-03 16:05:44 +11002087 /*
2088 * We need to add code for SCSI-II to track which devices have
2089 * I_T_L_Q nexuses established, and which have simple I_T_L
2090 * nexuses so we can chose to do additional data transfer.
2091 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Finn Thain72064a72016-01-03 16:05:44 +11002093 /*
2094 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2095 * just reestablished, and remove it from the disconnected queue.
2096 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Finn Thain32b26a12016-01-03 16:05:58 +11002098 tmp = NULL;
2099 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2100 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2101
2102 if (target_mask == (1 << scmd_id(cmd)) &&
2103 lun == (u8)cmd->device->lun) {
2104 list_del(&ncmd->list);
2105 tmp = cmd;
Finn Thain72064a72016-01-03 16:05:44 +11002106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108 }
Finn Thain0d3d9a42016-01-03 16:05:55 +11002109
2110 if (tmp) {
2111 dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance,
2112 "reselect: removed %p from disconnected queue\n", tmp);
2113 } else {
Finn Thain45ddc1b2018-09-27 11:17:11 +10002114 int target = ffs(target_mask) - 1;
2115
Finn Thain72064a72016-01-03 16:05:44 +11002116 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2117 target_mask, lun);
2118 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11002119 * Since we have an established nexus that we can't do anything
2120 * with, we must abort it.
Finn Thain72064a72016-01-03 16:05:44 +11002121 */
Finn Thain45ddc1b2018-09-27 11:17:11 +10002122 if (do_abort(instance) == 0)
2123 hostdata->busy[target] &= ~(1 << lun);
Finn Thain72064a72016-01-03 16:05:44 +11002124 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 }
Finn Thain72064a72016-01-03 16:05:44 +11002126
Finn Thaine9db3192016-03-23 21:10:21 +11002127#ifdef CONFIG_SUN3
Finn Thain4a98f892016-10-10 00:46:53 -04002128 if (sun3_dma_setup_done != tmp) {
2129 int count;
Finn Thaine9db3192016-03-23 21:10:21 +11002130
2131 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
Finn Thain4a98f892016-10-10 00:46:53 -04002132 ++tmp->SCp.buffer;
2133 --tmp->SCp.buffers_residual;
2134 tmp->SCp.this_residual = tmp->SCp.buffer->length;
2135 tmp->SCp.ptr = sg_virt(tmp->SCp.buffer);
Finn Thaine9db3192016-03-23 21:10:21 +11002136 }
2137
Finn Thain4a98f892016-10-10 00:46:53 -04002138 count = sun3scsi_dma_xfer_len(hostdata, tmp);
2139
2140 if (count > 0) {
2141 if (rq_data_dir(tmp->request))
2142 sun3scsi_dma_send_setup(hostdata,
2143 tmp->SCp.ptr, count);
2144 else
2145 sun3scsi_dma_recv_setup(hostdata,
2146 tmp->SCp.ptr, count);
Finn Thaine9db3192016-03-23 21:10:21 +11002147 sun3_dma_setup_done = tmp;
2148 }
2149 }
2150
2151 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2152#endif /* CONFIG_SUN3 */
2153
Finn Thain72064a72016-01-03 16:05:44 +11002154 /* Accept message by clearing ACK */
2155 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2156
2157 hostdata->connected = tmp;
Finn Thainc4ec6f92016-03-23 21:10:22 +11002158 dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu\n",
2159 scmd_id(tmp), tmp->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
Finn Thain8b00c3d2016-01-03 16:06:01 +11002162/**
2163 * list_find_cmd - test for presence of a command in a linked list
2164 * @haystack: list of commands
2165 * @needle: command to search for
2166 */
2167
2168static bool list_find_cmd(struct list_head *haystack,
2169 struct scsi_cmnd *needle)
2170{
2171 struct NCR5380_cmd *ncmd;
2172
2173 list_for_each_entry(ncmd, haystack, list)
2174 if (NCR5380_to_scmd(ncmd) == needle)
2175 return true;
2176 return false;
2177}
2178
2179/**
2180 * list_remove_cmd - remove a command from linked list
2181 * @haystack: list of commands
2182 * @needle: command to remove
2183 */
2184
2185static bool list_del_cmd(struct list_head *haystack,
2186 struct scsi_cmnd *needle)
2187{
2188 if (list_find_cmd(haystack, needle)) {
2189 struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle);
2190
2191 list_del(&ncmd->list);
2192 return true;
2193 }
2194 return false;
2195}
2196
2197/**
2198 * NCR5380_abort - scsi host eh_abort_handler() method
2199 * @cmd: the command to be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002201 * Try to abort a given command by removing it from queues and/or sending
2202 * the target an abort message. This may not succeed in causing a target
2203 * to abort the command. Nonetheless, the low-level driver must forget about
2204 * the command because the mid-layer reclaims it and it may be re-issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002206 * The normal path taken by a command is as follows. For EH we trace this
2207 * same path to locate and abort the command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002209 * unissued -> selecting -> [unissued -> selecting ->]... connected ->
2210 * [disconnected -> connected ->]...
2211 * [autosense -> connected ->] done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002213 * If cmd was not found at all then presumably it has already been completed,
2214 * in which case return SUCCESS to try to avoid further EH measures.
Finn Thaindc183962016-02-23 10:07:07 +11002215 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002216 * If the command has not completed yet, we must not fail to find it.
Finn Thaindc183962016-02-23 10:07:07 +11002217 * We have no option but to forget the aborted command (even if it still
2218 * lacks sense data). The mid-layer may re-issue a command that is in error
2219 * recovery (see scsi_send_eh_cmnd), but the logic and data structures in
2220 * this driver are such that a command can appear on one queue only.
Finn Thain71a00592016-02-23 10:07:06 +11002221 *
2222 * The lock protects driver data structures, but EH handlers also use it
2223 * to serialize their own execution and prevent their own re-entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 */
2225
Finn Thain710ddd02014-11-12 16:12:02 +11002226static int NCR5380_abort(struct scsi_cmnd *cmd)
2227{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 struct Scsi_Host *instance = cmd->device->host;
Finn Thaine8a60142016-01-03 16:05:54 +11002229 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002230 unsigned long flags;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002231 int result = SUCCESS;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002232
Finn Thain11d2f632016-01-03 16:05:51 +11002233 spin_lock_irqsave(&hostdata->lock, flags);
2234
Finn Thain32b26a12016-01-03 16:05:58 +11002235#if (NDEBUG & NDEBUG_ANY)
Finn Thain8b00c3d2016-01-03 16:06:01 +11002236 scmd_printk(KERN_INFO, cmd, __func__);
Finn Thain32b26a12016-01-03 16:05:58 +11002237#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002238 NCR5380_dprint(NDEBUG_ANY, instance);
2239 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Finn Thain8b00c3d2016-01-03 16:06:01 +11002241 if (list_del_cmd(&hostdata->unissued, cmd)) {
2242 dsprintk(NDEBUG_ABORT, instance,
2243 "abort: removed %p from issue queue\n", cmd);
2244 cmd->result = DID_ABORT << 16;
2245 cmd->scsi_done(cmd); /* No tag or busy flag to worry about */
Finn Thaindc183962016-02-23 10:07:07 +11002246 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002247 }
2248
Finn Thain707d62b2016-01-03 16:06:02 +11002249 if (hostdata->selecting == cmd) {
2250 dsprintk(NDEBUG_ABORT, instance,
2251 "abort: cmd %p == selecting\n", cmd);
2252 hostdata->selecting = NULL;
2253 cmd->result = DID_ABORT << 16;
2254 complete_cmd(instance, cmd);
2255 goto out;
2256 }
2257
Finn Thain8b00c3d2016-01-03 16:06:01 +11002258 if (list_del_cmd(&hostdata->disconnected, cmd)) {
2259 dsprintk(NDEBUG_ABORT, instance,
2260 "abort: removed %p from disconnected list\n", cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002261 /* Can't call NCR5380_select() and send ABORT because that
2262 * means releasing the lock. Need a bus reset.
2263 */
Finn Thaindc183962016-02-23 10:07:07 +11002264 set_host_byte(cmd, DID_ERROR);
2265 complete_cmd(instance, cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002266 result = FAILED;
2267 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002268 }
2269
2270 if (hostdata->connected == cmd) {
2271 dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd);
2272 hostdata->connected = NULL;
Finn Thaindc183962016-02-23 10:07:07 +11002273 hostdata->dma_len = 0;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002274 if (do_abort(instance)) {
2275 set_host_byte(cmd, DID_ERROR);
2276 complete_cmd(instance, cmd);
2277 result = FAILED;
2278 goto out;
2279 }
2280 set_host_byte(cmd, DID_ABORT);
Finn Thaindc183962016-02-23 10:07:07 +11002281 complete_cmd(instance, cmd);
2282 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002283 }
2284
Finn Thaindc183962016-02-23 10:07:07 +11002285 if (list_del_cmd(&hostdata->autosense, cmd)) {
Finn Thain8b00c3d2016-01-03 16:06:01 +11002286 dsprintk(NDEBUG_ABORT, instance,
Finn Thaindc183962016-02-23 10:07:07 +11002287 "abort: removed %p from sense queue\n", cmd);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002288 complete_cmd(instance, cmd);
2289 }
2290
2291out:
2292 if (result == FAILED)
2293 dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd);
Finn Thain45ddc1b2018-09-27 11:17:11 +10002294 else {
2295 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002296 dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd);
Finn Thain45ddc1b2018-09-27 11:17:11 +10002297 }
Finn Thain8b00c3d2016-01-03 16:06:01 +11002298
2299 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002300 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002301 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain32b26a12016-01-03 16:05:58 +11002302
Finn Thain8b00c3d2016-01-03 16:06:01 +11002303 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
2306
Finn Thain6b0e87a2018-09-27 11:17:11 +10002307static void bus_reset_cleanup(struct Scsi_Host *instance)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002308{
Finn Thain11d2f632016-01-03 16:05:51 +11002309 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain62717f52016-01-03 16:06:03 +11002310 int i;
Finn Thain62717f52016-01-03 16:06:03 +11002311 struct NCR5380_cmd *ncmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Finn Thain62717f52016-01-03 16:06:03 +11002313 /* reset NCR registers */
2314 NCR5380_write(MODE_REG, MR_BASE);
2315 NCR5380_write(TARGET_COMMAND_REG, 0);
2316 NCR5380_write(SELECT_ENABLE_REG, 0);
2317
2318 /* After the reset, there are no more connected or disconnected commands
2319 * and no busy units; so clear the low-level status here to avoid
2320 * conflicts when the mid-level code tries to wake up the affected
2321 * commands!
2322 */
2323
Finn Thain1884c282016-02-23 10:07:04 +11002324 if (hostdata->selecting) {
2325 hostdata->selecting->result = DID_RESET << 16;
2326 complete_cmd(instance, hostdata->selecting);
2327 hostdata->selecting = NULL;
2328 }
Finn Thain62717f52016-01-03 16:06:03 +11002329
2330 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2331 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2332
2333 set_host_byte(cmd, DID_RESET);
Finn Thain216fad92016-03-23 21:10:32 +11002334 complete_cmd(instance, cmd);
Finn Thain62717f52016-01-03 16:06:03 +11002335 }
Finn Thain1884c282016-02-23 10:07:04 +11002336 INIT_LIST_HEAD(&hostdata->disconnected);
Finn Thain62717f52016-01-03 16:06:03 +11002337
2338 list_for_each_entry(ncmd, &hostdata->autosense, list) {
2339 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2340
Finn Thain62717f52016-01-03 16:06:03 +11002341 cmd->scsi_done(cmd);
2342 }
Finn Thain1884c282016-02-23 10:07:04 +11002343 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain62717f52016-01-03 16:06:03 +11002344
2345 if (hostdata->connected) {
2346 set_host_byte(hostdata->connected, DID_RESET);
2347 complete_cmd(instance, hostdata->connected);
2348 hostdata->connected = NULL;
2349 }
2350
Finn Thain62717f52016-01-03 16:06:03 +11002351 for (i = 0; i < 8; ++i)
2352 hostdata->busy[i] = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002353 hostdata->dma_len = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002354
2355 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002356 maybe_release_dma_irq(instance);
Finn Thain6b0e87a2018-09-27 11:17:11 +10002357}
2358
2359/**
2360 * NCR5380_host_reset - reset the SCSI host
2361 * @cmd: SCSI command undergoing EH
2362 *
2363 * Returns SUCCESS
2364 */
2365
2366static int NCR5380_host_reset(struct scsi_cmnd *cmd)
2367{
2368 struct Scsi_Host *instance = cmd->device->host;
2369 struct NCR5380_hostdata *hostdata = shost_priv(instance);
2370 unsigned long flags;
2371 struct NCR5380_cmd *ncmd;
2372
2373 spin_lock_irqsave(&hostdata->lock, flags);
2374
2375#if (NDEBUG & NDEBUG_ANY)
2376 shost_printk(KERN_INFO, instance, __func__);
2377#endif
2378 NCR5380_dprint(NDEBUG_ANY, instance);
2379 NCR5380_dprint_phase(NDEBUG_ANY, instance);
2380
2381 list_for_each_entry(ncmd, &hostdata->unissued, list) {
2382 struct scsi_cmnd *scmd = NCR5380_to_scmd(ncmd);
2383
2384 scmd->result = DID_RESET << 16;
2385 scmd->scsi_done(scmd);
2386 }
2387 INIT_LIST_HEAD(&hostdata->unissued);
2388
2389 do_reset(instance);
2390 bus_reset_cleanup(instance);
2391
Finn Thain11d2f632016-01-03 16:05:51 +11002392 spin_unlock_irqrestore(&hostdata->lock, flags);
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return SUCCESS;
2395}