blob: 27270631c70c23c3dab0afae7f2a10703b1c4ad6 [file] [log] [blame]
Finn Thainaff0cf92016-01-03 16:06:09 +11001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * NCR 5380 generic driver routines. These should make it *trivial*
Finn Thain594d4ba2016-01-03 16:06:10 +11003 * to implement 5380 SCSI drivers under Linux with a non-trantor
4 * architecture.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Finn Thain594d4ba2016-01-03 16:06:10 +11006 * Note that these routines also work with NR53c400 family chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Copyright 1993, Drew Eckhardt
Finn Thain594d4ba2016-01-03 16:06:10 +11009 * Visionary Computing
10 * (Unix and Linux consulting and custom programming)
11 * drew@colorado.edu
12 * +1 (303) 666-5836
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Finn Thainaff0cf92016-01-03 16:06:09 +110014 * For more information, please consult
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * NCR 5380 Family
17 * SCSI Protocol Controller
18 * Databook
19 *
20 * NCR Microelectronics
21 * 1635 Aeroplaza Drive
22 * Colorado Springs, CO 80916
23 * 1+ (719) 578-3400
24 * 1+ (800) 334-5454
25 */
26
27/*
Finn Thainc16df322016-01-03 16:06:08 +110028 * With contributions from Ray Van Tassle, Ingmar Baumgart,
29 * Ronald van Cuijlenborg, Alan Cox and others.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31
Finn Thain52d3e562016-03-23 21:10:20 +110032/* Ported to Atari by Roman Hodek and others. */
33
Finn Thaine9db3192016-03-23 21:10:21 +110034/* Adapted for the Sun 3 by Sam Creasey. */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Design
38 *
Finn Thainaff0cf92016-01-03 16:06:09 +110039 * This is a generic 5380 driver. To use it on a different platform,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * one simply writes appropriate system specific macros (ie, data
Finn Thainaff0cf92016-01-03 16:06:09 +110041 * transfer - some PC's will use the I/O bus, 68K's must use
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * memory mapped) and drops this file in their 'C' wrapper.
43 *
Finn Thainaff0cf92016-01-03 16:06:09 +110044 * As far as command queueing, two queues are maintained for
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * each 5380 in the system - commands that haven't been issued yet,
Finn Thainaff0cf92016-01-03 16:06:09 +110046 * and commands that are currently executing. This means that an
47 * unlimited number of commands may be queued, letting
48 * more commands propagate from the higher driver levels giving higher
49 * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported,
50 * allowing multiple commands to propagate all the way to a SCSI-II device
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * while a command is already executing.
52 *
53 *
Finn Thainaff0cf92016-01-03 16:06:09 +110054 * Issues specific to the NCR5380 :
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 *
Finn Thainaff0cf92016-01-03 16:06:09 +110056 * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead
57 * piece of hardware that requires you to sit in a loop polling for
58 * the REQ signal as long as you are connected. Some devices are
59 * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect
Finn Thain686f3992016-01-03 16:05:26 +110060 * while doing long seek operations. [...] These
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * broken devices are the exception rather than the rule and I'd rather
62 * spend my time optimizing for the normal case.
63 *
64 * Architecture :
65 *
66 * At the heart of the design is a coroutine, NCR5380_main,
67 * which is started from a workqueue for each NCR5380 host in the
68 * system. It attempts to establish I_T_L or I_T_L_Q nexuses by
69 * removing the commands from the issue queue and calling
Finn Thainaff0cf92016-01-03 16:06:09 +110070 * NCR5380_select() if a nexus is not established.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *
72 * Once a nexus is established, the NCR5380_information_transfer()
73 * phase goes through the various phases as instructed by the target.
74 * if the target goes into MSG IN and sends a DISCONNECT message,
75 * the command structure is placed into the per instance disconnected
Finn Thainaff0cf92016-01-03 16:06:09 +110076 * queue, and NCR5380_main tries to find more work. If the target is
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * idle for too long, the system will try to sleep.
78 *
79 * If a command has disconnected, eventually an interrupt will trigger,
80 * calling NCR5380_intr() which will in turn call NCR5380_reselect
81 * to reestablish a nexus. This will run main if necessary.
82 *
Finn Thainaff0cf92016-01-03 16:06:09 +110083 * On command termination, the done function will be called as
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * appropriate.
85 *
Finn Thainaff0cf92016-01-03 16:06:09 +110086 * SCSI pointers are maintained in the SCp field of SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * structures, being initialized after the command is connected
88 * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
89 * Note that in violation of the standard, an implicit SAVE POINTERS operation
90 * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
91 */
92
93/*
94 * Using this file :
95 * This file a skeleton Linux SCSI driver for the NCR 5380 series
Finn Thainaff0cf92016-01-03 16:06:09 +110096 * of chips. To use it, you write an architecture specific functions
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * and macros and include this file in your driver.
98 *
Finn Thainaff0cf92016-01-03 16:06:09 +110099 * These macros control options :
100 * AUTOPROBE_IRQ - if defined, the NCR5380_probe_irq() function will be
Finn Thain594d4ba2016-01-03 16:06:10 +1100101 * defined.
Finn Thainaff0cf92016-01-03 16:06:09 +1100102 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
Finn Thain594d4ba2016-01-03 16:06:10 +1100104 * for commands that return with a CHECK CONDITION status.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 *
106 * DIFFERENTIAL - if defined, NCR53c81 chips will use external differential
Finn Thain594d4ba2016-01-03 16:06:10 +1100107 * transceivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * PSEUDO_DMA - if defined, PSEUDO DMA is used during the data transfer phases.
110 *
Finn Thain8053b0e2016-03-23 21:10:19 +1100111 * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
112 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * These macros MUST be defined :
Finn Thainaff0cf92016-01-03 16:06:09 +1100114 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * NCR5380_read(register) - read from the specified register
116 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100117 * NCR5380_write(register, value) - write to the specific register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *
Finn Thainaff0cf92016-01-03 16:06:09 +1100119 * NCR5380_implementation_fields - additional fields needed for this
Finn Thain594d4ba2016-01-03 16:06:10 +1100120 * specific implementation of the NCR5380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * Either real DMA *or* pseudo DMA may be implemented
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * NCR5380_dma_write_setup(instance, src, count) - initialize
125 * NCR5380_dma_read_setup(instance, dst, count) - initialize
126 * NCR5380_dma_residual(instance); - residual count
127 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * The generic driver is initialized by calling NCR5380_init(instance),
Finn Thainaff0cf92016-01-03 16:06:09 +1100129 * after setting the appropriate host specific fields and ID. If the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
131 * possible) function may be used.
132 */
133
Finn Thaine5d55d12016-03-23 21:10:16 +1100134#ifndef NCR5380_io_delay
135#define NCR5380_io_delay(x)
136#endif
137
Finn Thain52d3e562016-03-23 21:10:20 +1100138#ifndef NCR5380_acquire_dma_irq
139#define NCR5380_acquire_dma_irq(x) (1)
140#endif
141
142#ifndef NCR5380_release_dma_irq
143#define NCR5380_release_dma_irq(x)
144#endif
145
Finn Thain54d8fe42016-01-03 16:05:06 +1100146static int do_abort(struct Scsi_Host *);
147static void do_reset(struct Scsi_Host *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Finn Thainc16df322016-01-03 16:06:08 +1100149/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100150 * initialize_SCp - init the scsi pointer field
Finn Thain594d4ba2016-01-03 16:06:10 +1100151 * @cmd: command block to set up
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100153 * Set up the internal fields in the SCSI command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
155
Finn Thain710ddd02014-11-12 16:12:02 +1100156static inline void initialize_SCp(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Finn Thainaff0cf92016-01-03 16:06:09 +1100158 /*
159 * Initialize the Scsi Pointer field so that all of the commands in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 * various queues are valid.
161 */
162
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200163 if (scsi_bufflen(cmd)) {
164 cmd->SCp.buffer = scsi_sglist(cmd);
165 cmd->SCp.buffers_residual = scsi_sg_count(cmd) - 1;
Jens Axboe45711f12007-10-22 21:19:53 +0200166 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 cmd->SCp.this_residual = cmd->SCp.buffer->length;
168 } else {
169 cmd->SCp.buffer = NULL;
170 cmd->SCp.buffers_residual = 0;
Boaz Harrosh9e0fe442007-11-05 11:23:35 +0200171 cmd->SCp.ptr = NULL;
172 cmd->SCp.this_residual = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100174
175 cmd->SCp.Status = 0;
176 cmd->SCp.Message = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/**
Finn Thainb32ade12016-01-03 16:05:41 +1100180 * NCR5380_poll_politely2 - wait for two chip register values
Finn Thain2f854b82016-01-03 16:05:22 +1100181 * @instance: controller to poll
Finn Thainb32ade12016-01-03 16:05:41 +1100182 * @reg1: 5380 register to poll
183 * @bit1: Bitmask to check
184 * @val1: Expected value
185 * @reg2: Second 5380 register to poll
186 * @bit2: Second bitmask to check
187 * @val2: Second expected value
Finn Thain2f854b82016-01-03 16:05:22 +1100188 * @wait: Time-out in jiffies
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
Finn Thain2f854b82016-01-03 16:05:22 +1100190 * Polls the chip in a reasonably efficient manner waiting for an
191 * event to occur. After a short quick poll we begin to yield the CPU
192 * (if possible). In irq contexts the time-out is arbitrarily limited.
193 * Callers may hold locks as long as they are held in irq mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
Finn Thainb32ade12016-01-03 16:05:41 +1100195 * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Finn Thainb32ade12016-01-03 16:05:41 +1100198static int NCR5380_poll_politely2(struct Scsi_Host *instance,
199 int reg1, int bit1, int val1,
200 int reg2, int bit2, int val2, int wait)
Finn Thain2f854b82016-01-03 16:05:22 +1100201{
202 struct NCR5380_hostdata *hostdata = shost_priv(instance);
203 unsigned long deadline = jiffies + wait;
204 unsigned long n;
205
206 /* Busy-wait for up to 10 ms */
207 n = min(10000U, jiffies_to_usecs(wait));
208 n *= hostdata->accesses_per_ms;
Finn Thainb32ade12016-01-03 16:05:41 +1100209 n /= 2000;
Finn Thain2f854b82016-01-03 16:05:22 +1100210 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100211 if ((NCR5380_read(reg1) & bit1) == val1)
212 return 0;
213 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100216 } while (n--);
217
218 if (irqs_disabled() || in_interrupt())
219 return -ETIMEDOUT;
220
221 /* Repeatedly sleep for 1 ms until deadline */
222 while (time_is_after_jiffies(deadline)) {
223 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100224 if ((NCR5380_read(reg1) & bit1) == val1)
225 return 0;
226 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Finn Thain2f854b82016-01-03 16:05:22 +1100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -ETIMEDOUT;
231}
232
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100233#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static struct {
235 unsigned char mask;
236 const char *name;
Finn Thainaff0cf92016-01-03 16:06:09 +1100237} signals[] = {
238 {SR_DBP, "PARITY"},
239 {SR_RST, "RST"},
240 {SR_BSY, "BSY"},
241 {SR_REQ, "REQ"},
242 {SR_MSG, "MSG"},
243 {SR_CD, "CD"},
244 {SR_IO, "IO"},
245 {SR_SEL, "SEL"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100247},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248basrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100249 {BASR_END_DMA_TRANSFER, "END OF DMA"},
250 {BASR_DRQ, "DRQ"},
251 {BASR_PARITY_ERROR, "PARITY ERROR"},
252 {BASR_IRQ, "IRQ"},
253 {BASR_PHASE_MATCH, "PHASE MATCH"},
254 {BASR_BUSY_ERROR, "BUSY ERROR"},
Finn Thainaff0cf92016-01-03 16:06:09 +1100255 {BASR_ATN, "ATN"},
256 {BASR_ACK, "ACK"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100258},
259icrs[] = {
260 {ICR_ASSERT_RST, "ASSERT RST"},
Finn Thain12866b92016-03-23 21:10:25 +1100261 {ICR_ARBITRATION_PROGRESS, "ARB. IN PROGRESS"},
262 {ICR_ARBITRATION_LOST, "LOST ARB."},
Finn Thainaff0cf92016-01-03 16:06:09 +1100263 {ICR_ASSERT_ACK, "ASSERT ACK"},
264 {ICR_ASSERT_BSY, "ASSERT BSY"},
265 {ICR_ASSERT_SEL, "ASSERT SEL"},
266 {ICR_ASSERT_ATN, "ASSERT ATN"},
267 {ICR_ASSERT_DATA, "ASSERT DATA"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100269},
270mrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100271 {MR_BLOCK_DMA_MODE, "BLOCK DMA MODE"},
272 {MR_TARGET, "TARGET"},
273 {MR_ENABLE_PAR_CHECK, "PARITY CHECK"},
274 {MR_ENABLE_PAR_INTR, "PARITY INTR"},
275 {MR_ENABLE_EOP_INTR, "EOP INTR"},
276 {MR_MONITOR_BSY, "MONITOR BSY"},
277 {MR_DMA_MODE, "DMA MODE"},
278 {MR_ARBITRATE, "ARBITRATE"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 {0, NULL}
280};
281
282/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100283 * NCR5380_print - print scsi bus signals
284 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100286 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 */
288
289static void NCR5380_print(struct Scsi_Host *instance)
290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
294 status = NCR5380_read(STATUS_REG);
295 mr = NCR5380_read(MODE_REG);
296 icr = NCR5380_read(INITIATOR_COMMAND_REG);
297 basr = NCR5380_read(BUS_AND_STATUS_REG);
298
Finn Thain12866b92016-03-23 21:10:25 +1100299 printk(KERN_DEBUG "SR = 0x%02x : ", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 for (i = 0; signals[i].mask; ++i)
301 if (status & signals[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100302 printk(KERN_CONT "%s, ", signals[i].name);
303 printk(KERN_CONT "\nBASR = 0x%02x : ", basr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 for (i = 0; basrs[i].mask; ++i)
305 if (basr & basrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100306 printk(KERN_CONT "%s, ", basrs[i].name);
307 printk(KERN_CONT "\nICR = 0x%02x : ", icr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 for (i = 0; icrs[i].mask; ++i)
309 if (icr & icrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100310 printk(KERN_CONT "%s, ", icrs[i].name);
311 printk(KERN_CONT "\nMR = 0x%02x : ", mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 for (i = 0; mrs[i].mask; ++i)
313 if (mr & mrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100314 printk(KERN_CONT "%s, ", mrs[i].name);
315 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Finn Thain0d2cf862016-01-03 16:06:11 +1100318static struct {
319 unsigned char value;
320 const char *name;
321} phases[] = {
322 {PHASE_DATAOUT, "DATAOUT"},
323 {PHASE_DATAIN, "DATAIN"},
324 {PHASE_CMDOUT, "CMDOUT"},
325 {PHASE_STATIN, "STATIN"},
326 {PHASE_MSGOUT, "MSGOUT"},
327 {PHASE_MSGIN, "MSGIN"},
328 {PHASE_UNKNOWN, "UNKNOWN"}
329};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Finn Thainc16df322016-01-03 16:06:08 +1100331/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100332 * NCR5380_print_phase - show SCSI phase
Finn Thain594d4ba2016-01-03 16:06:10 +1100333 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100335 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
338static void NCR5380_print_phase(struct Scsi_Host *instance)
339{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 unsigned char status;
341 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 status = NCR5380_read(STATUS_REG);
344 if (!(status & SR_REQ))
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100345 shost_printk(KERN_DEBUG, instance, "REQ not asserted, phase unknown.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 else {
Finn Thain0d2cf862016-01-03 16:06:11 +1100347 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
348 (phases[i].value != (status & PHASE_MASK)); ++i)
349 ;
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100350 shost_printk(KERN_DEBUG, instance, "phase %s\n", phases[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352}
353#endif
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200356static int probe_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100359 * probe_intr - helper for IRQ autoprobe
360 * @irq: interrupt number
361 * @dev_id: unused
362 * @regs: unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100364 * Set a flag to indicate the IRQ in question was received. This is
365 * used by the IRQ probe code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Finn Thainaff0cf92016-01-03 16:06:09 +1100367
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200368static irqreturn_t probe_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 probe_irq = irq;
371 return IRQ_HANDLED;
372}
373
374/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100375 * NCR5380_probe_irq - find the IRQ of an NCR5380
376 * @instance: NCR5380 controller
377 * @possible: bitmask of ISA IRQ lines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100379 * Autoprobe for the IRQ line used by the NCR5380 by triggering an IRQ
380 * and then looking to see what interrupt actually turned up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
382
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200383static int __maybe_unused NCR5380_probe_irq(struct Scsi_Host *instance,
Andrew Morton702809c2007-05-23 14:41:56 -0700384 int possible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Finn Thaine8a60142016-01-03 16:05:54 +1100386 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 unsigned long timeout;
388 int trying_irqs, i, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Finn Thain22f5f102014-11-12 16:11:56 +1100390 for (trying_irqs = 0, i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100391 if ((mask & possible) && (request_irq(i, &probe_intr, 0, "NCR-probe", NULL) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 trying_irqs |= mask;
393
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500394 timeout = jiffies + msecs_to_jiffies(250);
Finn Thain22f5f102014-11-12 16:11:56 +1100395 probe_irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * A interrupt is triggered whenever BSY = false, SEL = true
Finn Thainaff0cf92016-01-03 16:06:09 +1100399 * and a bit set in the SELECT_ENABLE_REG is asserted on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * SCSI bus.
401 *
402 * Note that the bus is only driven when the phase control signals
403 * (I/O, C/D, and MSG) match those in the TCR, so we must reset that
404 * to zero.
405 */
406
407 NCR5380_write(TARGET_COMMAND_REG, 0);
408 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
409 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
410 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL);
411
Finn Thain22f5f102014-11-12 16:11:56 +1100412 while (probe_irq == NO_IRQ && time_before(jiffies, timeout))
Nishanth Aravamudana9a30472005-11-07 01:01:20 -0800413 schedule_timeout_uninterruptible(1);
Finn Thainaff0cf92016-01-03 16:06:09 +1100414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 NCR5380_write(SELECT_ENABLE_REG, 0);
416 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
417
Finn Thain22f5f102014-11-12 16:11:56 +1100418 for (i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (trying_irqs & mask)
420 free_irq(i, NULL);
421
422 return probe_irq;
423}
424
425/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100426 * NCR58380_info - report driver and host information
427 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100429 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
431
Finn Thain8c325132014-11-12 16:11:58 +1100432static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Finn Thain8c325132014-11-12 16:11:58 +1100434 struct NCR5380_hostdata *hostdata = shost_priv(instance);
435
436 return hostdata->info;
437}
438
439static void prepare_info(struct Scsi_Host *instance)
440{
441 struct NCR5380_hostdata *hostdata = shost_priv(instance);
442
443 snprintf(hostdata->info, sizeof(hostdata->info),
444 "%s, io_port 0x%lx, n_io_port %d, "
445 "base 0x%lx, irq %d, "
446 "can_queue %d, cmd_per_lun %d, "
447 "sg_tablesize %d, this_id %d, "
Finn Thainbe3f4122016-01-03 16:05:50 +1100448 "flags { %s%s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100449 "options { %s} ",
450 instance->hostt->name, instance->io_port, instance->n_io_port,
451 instance->base, instance->irq,
452 instance->can_queue, instance->cmd_per_lun,
453 instance->sg_tablesize, instance->this_id,
Finn Thain1bb46002016-03-23 21:10:14 +1100454 hostdata->flags & FLAG_DMA_FIXUP ? "DMA_FIXUP " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100455 hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100456 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#ifdef DIFFERENTIAL
Finn Thain8c325132014-11-12 16:11:58 +1100458 "DIFFERENTIAL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100461 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
Finn Thain8c325132014-11-12 16:11:58 +1100463 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100467 * NCR5380_init - initialise an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100468 * @instance: adapter to configure
469 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100471 * Initializes *instance and corresponding 5380 chip,
472 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100474 * Notes : I assume that the host, hostno, and id bits have been
Finn Thain0d2cf862016-01-03 16:06:11 +1100475 * set correctly. I don't care about the irq and other fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100477 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800480static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Finn Thaine8a60142016-01-03 16:05:54 +1100482 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100483 int i;
Finn Thain2f854b82016-01-03 16:05:22 +1100484 unsigned long deadline;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Finn Thainae5e33a2016-03-23 21:10:23 +1100486 instance->max_lun = 7;
487
Finn Thain0d2cf862016-01-03 16:06:11 +1100488 hostdata->host = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 hostdata->id_mask = 1 << instance->this_id;
Finn Thain0d2cf862016-01-03 16:06:11 +1100490 hostdata->id_higher_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
492 if (i > hostdata->id_mask)
493 hostdata->id_higher_mask |= i;
494 for (i = 0; i < 8; ++i)
495 hostdata->busy[i] = 0;
Finn Thaine4dec682016-03-23 21:10:12 +1100496 hostdata->dma_len = 0;
497
Finn Thain11d2f632016-01-03 16:05:51 +1100498 spin_lock_init(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 hostdata->connected = NULL;
Finn Thainf27db8e2016-01-03 16:06:00 +1100500 hostdata->sensing = NULL;
501 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain32b26a12016-01-03 16:05:58 +1100502 INIT_LIST_HEAD(&hostdata->unissued);
503 INIT_LIST_HEAD(&hostdata->disconnected);
504
Finn Thain55181be2016-01-03 16:05:42 +1100505 hostdata->flags = flags;
Finn Thainaff0cf92016-01-03 16:06:09 +1100506
Finn Thain8d8601a2016-01-03 16:05:37 +1100507 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100508 hostdata->work_q = alloc_workqueue("ncr5380_%d",
509 WQ_UNBOUND | WQ_MEM_RECLAIM,
510 1, instance->host_no);
511 if (!hostdata->work_q)
512 return -ENOMEM;
513
Finn Thain8c325132014-11-12 16:11:58 +1100514 prepare_info(instance);
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
517 NCR5380_write(MODE_REG, MR_BASE);
518 NCR5380_write(TARGET_COMMAND_REG, 0);
519 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thain2f854b82016-01-03 16:05:22 +1100520
521 /* Calibrate register polling loop */
522 i = 0;
523 deadline = jiffies + 1;
524 do {
525 cpu_relax();
526 } while (time_is_after_jiffies(deadline));
527 deadline += msecs_to_jiffies(256);
528 do {
529 NCR5380_read(STATUS_REG);
530 ++i;
531 cpu_relax();
532 } while (time_is_after_jiffies(deadline));
533 hostdata->accesses_per_ms = i / 256;
534
Finn Thainb6488f92016-01-03 16:05:08 +1100535 return 0;
536}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Finn Thainb6488f92016-01-03 16:05:08 +1100538/**
539 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
540 * @instance: adapter to check
541 *
542 * If the system crashed, it may have crashed with a connected target and
543 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
544 * currently established nexus, which we know nothing about. Failing that
545 * do a bus reset.
546 *
547 * Note that a bus reset will cause the chip to assert IRQ.
548 *
549 * Returns 0 if successful, otherwise -ENXIO.
550 */
551
552static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
553{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100554 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100555 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
558 switch (pass) {
559 case 1:
560 case 3:
561 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100562 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
563 NCR5380_poll_politely(instance,
564 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 break;
566 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100567 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 do_abort(instance);
569 break;
570 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100571 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100573 /* Wait after a reset; the SCSI standard calls for
574 * 250ms, we wait 500ms to be on the safe side.
575 * But some Toshiba CD-ROMs need ten times that.
576 */
577 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
578 msleep(2500);
579 else
580 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100583 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -ENXIO;
585 }
586 }
587 return 0;
588}
589
590/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100591 * NCR5380_exit - remove an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100592 * @instance: adapter to remove
Finn Thain0d2cf862016-01-03 16:06:11 +1100593 *
594 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
596
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800597static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Finn Thaine8a60142016-01-03 16:05:54 +1100599 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Finn Thain8d8601a2016-01-03 16:05:37 +1100601 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100602 destroy_workqueue(hostdata->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605/**
Finn Thain677e0192016-01-03 16:05:59 +1100606 * complete_cmd - finish processing a command and return it to the SCSI ML
607 * @instance: the host instance
608 * @cmd: command to complete
609 */
610
611static void complete_cmd(struct Scsi_Host *instance,
612 struct scsi_cmnd *cmd)
613{
614 struct NCR5380_hostdata *hostdata = shost_priv(instance);
615
616 dsprintk(NDEBUG_QUEUES, instance, "complete_cmd: cmd %p\n", cmd);
617
Finn Thainf27db8e2016-01-03 16:06:00 +1100618 if (hostdata->sensing == cmd) {
619 /* Autosense processing ends here */
Finn Thainacef2f02018-09-27 11:17:11 +1000620 if (status_byte(cmd->result) != GOOD) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100621 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thainacef2f02018-09-27 11:17:11 +1000622 } else {
Finn Thainf27db8e2016-01-03 16:06:00 +1100623 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
Finn Thainacef2f02018-09-27 11:17:11 +1000624 set_driver_byte(cmd, DRIVER_SENSE);
625 }
Finn Thainf27db8e2016-01-03 16:06:00 +1100626 hostdata->sensing = NULL;
627 }
628
Finn Thain677e0192016-01-03 16:05:59 +1100629 cmd->scsi_done(cmd);
630}
631
632/**
Finn Thain1bb40582016-01-03 16:05:29 +1100633 * NCR5380_queue_command - queue a command
634 * @instance: the relevant SCSI adapter
635 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *
Finn Thain1bb40582016-01-03 16:05:29 +1100637 * cmd is added to the per-instance issue queue, with minor
638 * twiddling done to the host specific fields of cmd. If the
639 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
641
Finn Thain1bb40582016-01-03 16:05:29 +1100642static int NCR5380_queue_command(struct Scsi_Host *instance,
643 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Finn Thain1bb40582016-01-03 16:05:29 +1100645 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain32b26a12016-01-03 16:05:58 +1100646 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
Finn Thain1bb40582016-01-03 16:05:29 +1100647 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649#if (NDEBUG & NDEBUG_NO_WRITE)
650 switch (cmd->cmnd[0]) {
651 case WRITE_6:
652 case WRITE_10:
Finn Thaindbb6b352016-01-03 16:05:53 +1100653 shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 cmd->result = (DID_ERROR << 16);
Finn Thain1bb40582016-01-03 16:05:29 +1100655 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 0;
657 }
Finn Thain0d2cf862016-01-03 16:06:11 +1100658#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 cmd->result = 0;
661
Finn Thain52d3e562016-03-23 21:10:20 +1100662 if (!NCR5380_acquire_dma_irq(instance))
663 return SCSI_MLQUEUE_HOST_BUSY;
664
Finn Thain11d2f632016-01-03 16:05:51 +1100665 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100666
Finn Thainaff0cf92016-01-03 16:06:09 +1100667 /*
668 * Insert the cmd into the issue queue. Note that REQUEST SENSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * commands are added to the head of the queue since any command will
Finn Thainaff0cf92016-01-03 16:06:09 +1100670 * clear the contingent allegiance condition that exists and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 * sense data is only guaranteed to be valid while the condition exists.
672 */
673
Finn Thain32b26a12016-01-03 16:05:58 +1100674 if (cmd->cmnd[0] == REQUEST_SENSE)
675 list_add(&ncmd->list, &hostdata->unissued);
676 else
677 list_add_tail(&ncmd->list, &hostdata->unissued);
678
Finn Thain11d2f632016-01-03 16:05:51 +1100679 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100680
Finn Thaindbb6b352016-01-03 16:05:53 +1100681 dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n",
682 cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* Kick off command processing */
Finn Thain8d8601a2016-01-03 16:05:37 +1100685 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 0;
687}
688
Finn Thain52d3e562016-03-23 21:10:20 +1100689static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
690{
691 struct NCR5380_hostdata *hostdata = shost_priv(instance);
692
693 /* Caller does the locking needed to set & test these data atomically */
694 if (list_empty(&hostdata->disconnected) &&
695 list_empty(&hostdata->unissued) &&
696 list_empty(&hostdata->autosense) &&
697 !hostdata->connected &&
698 !hostdata->selecting)
699 NCR5380_release_dma_irq(instance);
700}
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702/**
Finn Thainf27db8e2016-01-03 16:06:00 +1100703 * dequeue_next_cmd - dequeue a command for processing
704 * @instance: the scsi host instance
705 *
706 * Priority is given to commands on the autosense queue. These commands
707 * need autosense because of a CHECK CONDITION result.
708 *
709 * Returns a command pointer if a command is found for a target that is
710 * not already busy. Otherwise returns NULL.
711 */
712
713static struct scsi_cmnd *dequeue_next_cmd(struct Scsi_Host *instance)
714{
715 struct NCR5380_hostdata *hostdata = shost_priv(instance);
716 struct NCR5380_cmd *ncmd;
717 struct scsi_cmnd *cmd;
718
Finn Thain8d5dbec2016-02-23 10:07:09 +1100719 if (hostdata->sensing || list_empty(&hostdata->autosense)) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100720 list_for_each_entry(ncmd, &hostdata->unissued, list) {
721 cmd = NCR5380_to_scmd(ncmd);
722 dsprintk(NDEBUG_QUEUES, instance, "dequeue: cmd=%p target=%d busy=0x%02x lun=%llu\n",
723 cmd, scmd_id(cmd), hostdata->busy[scmd_id(cmd)], cmd->device->lun);
724
725 if (!(hostdata->busy[scmd_id(cmd)] & (1 << cmd->device->lun))) {
726 list_del(&ncmd->list);
727 dsprintk(NDEBUG_QUEUES, instance,
728 "dequeue: removed %p from issue queue\n", cmd);
729 return cmd;
730 }
731 }
732 } else {
733 /* Autosense processing begins here */
734 ncmd = list_first_entry(&hostdata->autosense,
735 struct NCR5380_cmd, list);
736 list_del(&ncmd->list);
737 cmd = NCR5380_to_scmd(ncmd);
738 dsprintk(NDEBUG_QUEUES, instance,
739 "dequeue: removed %p from autosense queue\n", cmd);
740 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
741 hostdata->sensing = cmd;
742 return cmd;
743 }
744 return NULL;
745}
746
747static void requeue_cmd(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
748{
749 struct NCR5380_hostdata *hostdata = shost_priv(instance);
750 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
751
Finn Thain8d5dbec2016-02-23 10:07:09 +1100752 if (hostdata->sensing == cmd) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100753 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
754 list_add(&ncmd->list, &hostdata->autosense);
755 hostdata->sensing = NULL;
756 } else
757 list_add(&ncmd->list, &hostdata->unissued);
758}
759
760/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100761 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100763 * NCR5380_main is a coroutine that runs as long as more work can
764 * be done on the NCR5380 host adapters in a system. Both
765 * NCR5380_queue_command() and NCR5380_intr() will try to start it
766 * in case it is not running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
768
David Howellsc4028952006-11-22 14:57:56 +0000769static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
David Howellsc4028952006-11-22 14:57:56 +0000771 struct NCR5380_hostdata *hostdata =
Finn Thain8d8601a2016-01-03 16:05:37 +1100772 container_of(work, struct NCR5380_hostdata, main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct Scsi_Host *instance = hostdata->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int done;
Finn Thainaff0cf92016-01-03 16:06:09 +1100775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 done = 1;
Finn Thain11d2f632016-01-03 16:05:51 +1100778
Finn Thain0a4e3612016-01-03 16:06:07 +1100779 spin_lock_irq(&hostdata->lock);
Finn Thainccf6efd2016-02-23 10:07:08 +1100780 while (!hostdata->connected && !hostdata->selecting) {
781 struct scsi_cmnd *cmd = dequeue_next_cmd(instance);
782
783 if (!cmd)
784 break;
Finn Thainf27db8e2016-01-03 16:06:00 +1100785
786 dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /*
Finn Thainf27db8e2016-01-03 16:06:00 +1100789 * Attempt to establish an I_T_L nexus here.
790 * On success, instance->hostdata->connected is set.
791 * On failure, we must add the command back to the
792 * issue queue so we can keep trying.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
Finn Thainf27db8e2016-01-03 16:06:00 +1100794 /*
795 * REQUEST SENSE commands are issued without tagged
796 * queueing, even on SCSI-II devices because the
797 * contingent allegiance condition exists for the
798 * entire unit.
799 */
Finn Thain32b26a12016-01-03 16:05:58 +1100800
Finn Thainccf6efd2016-02-23 10:07:08 +1100801 if (!NCR5380_select(instance, cmd)) {
Finn Thain707d62b2016-01-03 16:06:02 +1100802 dsprintk(NDEBUG_MAIN, instance, "main: select complete\n");
Finn Thain52d3e562016-03-23 21:10:20 +1100803 maybe_release_dma_irq(instance);
Finn Thainf27db8e2016-01-03 16:06:00 +1100804 } else {
805 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance,
806 "main: select failed, returning %p to queue\n", cmd);
807 requeue_cmd(instance, cmd);
808 }
809 }
Finn Thaine4dec682016-03-23 21:10:12 +1100810 if (hostdata->connected && !hostdata->dma_len) {
Finn Thainb7465452016-01-03 16:06:05 +1100811 dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 NCR5380_information_transfer(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 done = 0;
Finn Thain1d3db592016-01-03 16:05:24 +1100814 }
Finn Thain8e21afa2019-06-09 11:19:11 +1000815 if (!hostdata->connected)
816 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain0a4e3612016-01-03 16:06:07 +1100817 spin_unlock_irq(&hostdata->lock);
818 if (!done)
819 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Finn Thain8053b0e2016-03-23 21:10:19 +1100823/*
824 * NCR5380_dma_complete - finish DMA transfer
825 * @instance: the scsi host instance
826 *
827 * Called by the interrupt handler when DMA finishes or a phase
828 * mismatch occurs (which would end the DMA transfer).
829 */
830
831static void NCR5380_dma_complete(struct Scsi_Host *instance)
832{
833 struct NCR5380_hostdata *hostdata = shost_priv(instance);
834 int transferred;
835 unsigned char **data;
836 int *count;
837 int saved_data = 0, overrun = 0;
838 unsigned char p;
839
840 if (hostdata->read_overruns) {
841 p = hostdata->connected->SCp.phase;
842 if (p & SR_IO) {
843 udelay(10);
844 if ((NCR5380_read(BUS_AND_STATUS_REG) &
845 (BASR_PHASE_MATCH | BASR_ACK)) ==
846 (BASR_PHASE_MATCH | BASR_ACK)) {
847 saved_data = NCR5380_read(INPUT_DATA_REG);
848 overrun = 1;
849 dsprintk(NDEBUG_DMA, instance, "read overrun handled\n");
850 }
851 }
852 }
853
Finn Thaine9db3192016-03-23 21:10:21 +1100854#ifdef CONFIG_SUN3
855 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
856 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
857 instance->host_no);
858 BUG();
859 }
860
861 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
862 (BASR_PHASE_MATCH | BASR_ACK)) {
863 pr_err("scsi%d: BASR %02x\n", instance->host_no,
864 NCR5380_read(BUS_AND_STATUS_REG));
865 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
866 instance->host_no);
867 BUG();
868 }
869#endif
870
Finn Thain8053b0e2016-03-23 21:10:19 +1100871 NCR5380_write(MODE_REG, MR_BASE);
872 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
873 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
874
875 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
876 hostdata->dma_len = 0;
877
878 data = (unsigned char **)&hostdata->connected->SCp.ptr;
879 count = &hostdata->connected->SCp.this_residual;
880 *data += transferred;
881 *count -= transferred;
882
883 if (hostdata->read_overruns) {
884 int cnt, toPIO;
885
886 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
887 cnt = toPIO = hostdata->read_overruns;
888 if (overrun) {
889 dsprintk(NDEBUG_DMA, instance,
890 "Got an input overrun, using saved byte\n");
891 *(*data)++ = saved_data;
892 (*count)--;
893 cnt--;
894 toPIO--;
895 }
896 if (toPIO > 0) {
897 dsprintk(NDEBUG_DMA, instance,
898 "Doing %d byte PIO to 0x%p\n", cnt, *data);
899 NCR5380_transfer_pio(instance, &p, &cnt, data);
900 *count -= toPIO - cnt;
901 }
902 }
903 }
904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906/**
Finn Thaincd400822016-01-03 16:05:40 +1100907 * NCR5380_intr - generic NCR5380 irq handler
908 * @irq: interrupt number
909 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 *
Finn Thaincd400822016-01-03 16:05:40 +1100911 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
912 * from the disconnected queue, and restarting NCR5380_main()
913 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 *
Finn Thaincd400822016-01-03 16:05:40 +1100915 * The chip can assert IRQ in any of six different conditions. The IRQ flag
916 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
917 * Three of these six conditions are latched in the Bus and Status Register:
918 * - End of DMA (cleared by ending DMA Mode)
919 * - Parity error (cleared by reading RPIR)
920 * - Loss of BSY (cleared by reading RPIR)
921 * Two conditions have flag bits that are not latched:
922 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
923 * - Bus reset (non-maskable)
924 * The remaining condition has no flag bit at all:
925 * - Selection/reselection
926 *
927 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
928 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
929 * claimed that "the design of the [DP8490] interrupt logic ensures
930 * interrupts will not be lost (they can be on the DP5380)."
931 * The L5380/53C80 datasheet from LOGIC Devices has more details.
932 *
933 * Checking for bus reset by reading RST is futile because of interrupt
934 * latency, but a bus reset will reset chip logic. Checking for parity error
935 * is unnecessary because that interrupt is never enabled. A Loss of BSY
936 * condition will clear DMA Mode. We can tell when this occurs because the
937 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939
Finn Thaina46865d2016-03-23 21:10:27 +1100940static irqreturn_t __maybe_unused NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -0800942 struct Scsi_Host *instance = dev_id;
Finn Thaincd400822016-01-03 16:05:40 +1100943 struct NCR5380_hostdata *hostdata = shost_priv(instance);
944 int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 unsigned char basr;
946 unsigned long flags;
947
Finn Thain11d2f632016-01-03 16:05:51 +1100948 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Finn Thaincd400822016-01-03 16:05:40 +1100950 basr = NCR5380_read(BUS_AND_STATUS_REG);
951 if (basr & BASR_IRQ) {
952 unsigned char mr = NCR5380_read(MODE_REG);
953 unsigned char sr = NCR5380_read(STATUS_REG);
954
Finn Thainb7465452016-01-03 16:06:05 +1100955 dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
956 irq, basr, sr, mr);
Finn Thaincd400822016-01-03 16:05:40 +1100957
Finn Thain8053b0e2016-03-23 21:10:19 +1100958 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
959 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
960 * We ack IRQ after clearing Mode Register. Workarounds
961 * for End of DMA errata need to happen in DMA Mode.
962 */
963
964 dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n");
965
966 if (hostdata->connected) {
967 NCR5380_dma_complete(instance);
968 queue_work(hostdata->work_q, &hostdata->main_task);
969 } else {
970 NCR5380_write(MODE_REG, MR_BASE);
971 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
972 }
973 } else if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
Finn Thaincd400822016-01-03 16:05:40 +1100974 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
975 /* Probably reselected */
976 NCR5380_write(SELECT_ENABLE_REG, 0);
977 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
978
Finn Thainb7465452016-01-03 16:06:05 +1100979 dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n");
Finn Thaincd400822016-01-03 16:05:40 +1100980
981 if (!hostdata->connected) {
982 NCR5380_reselect(instance);
983 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
Finn Thaincd400822016-01-03 16:05:40 +1100985 if (!hostdata->connected)
986 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
987 } else {
988 /* Probably Bus Reset */
989 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
990
Finn Thainb7465452016-01-03 16:06:05 +1100991 dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100992#ifdef SUN3_SCSI_VME
993 dregs->csr |= CSR_DMA_ENABLE;
994#endif
Finn Thaincd400822016-01-03 16:05:40 +1100995 }
996 handled = 1;
997 } else {
998 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100999#ifdef SUN3_SCSI_VME
1000 dregs->csr |= CSR_DMA_ENABLE;
1001#endif
Finn Thaincd400822016-01-03 16:05:40 +11001002 }
1003
Finn Thain11d2f632016-01-03 16:05:51 +11001004 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaincd400822016-01-03 16:05:40 +11001005
1006 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Finn Thainaff0cf92016-01-03 16:06:09 +11001009/*
Finn Thain710ddd02014-11-12 16:12:02 +11001010 * Function : int NCR5380_select(struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001011 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 *
1013 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Finn Thain594d4ba2016-01-03 16:06:10 +11001014 * including ARBITRATION, SELECTION, and initial message out for
1015 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001017 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain594d4ba2016-01-03 16:06:10 +11001018 * target lives, cmd - SCSI command to execute.
Finn Thainaff0cf92016-01-03 16:06:09 +11001019 *
Finn Thain707d62b2016-01-03 16:06:02 +11001020 * Returns cmd if selection failed but should be retried,
1021 * NULL if selection failed and should not be retried, or
1022 * NULL if selection succeeded (hostdata->connected == cmd).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001024 * Side effects :
Finn Thain594d4ba2016-01-03 16:06:10 +11001025 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1026 * with registers as they should have been on entry - ie
1027 * SELECT_ENABLE will be set appropriately, the NCR5380
1028 * will cease to drive any SCSI bus signals.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001030 * If successful : I_T_L or I_T_L_Q nexus will be established,
1031 * instance->connected will be set to cmd.
1032 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001034 * If failed (no target) : cmd->scsi_done() will be called, and the
1035 * cmd->result host byte set to DID_BAD_TARGET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001037
Finn Thain707d62b2016-01-03 16:06:02 +11001038static struct scsi_cmnd *NCR5380_select(struct Scsi_Host *instance,
1039 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Finn Thaine8a60142016-01-03 16:05:54 +11001041 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 unsigned char tmp[3], phase;
1043 unsigned char *data;
1044 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thainb7465452016-01-03 16:06:05 +11001048 dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n",
1049 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Finn Thain707d62b2016-01-03 16:06:02 +11001051 /*
1052 * Arbitration and selection phases are slow and involve dropping the
1053 * lock, so we have to watch out for EH. An exception handler may
1054 * change 'selecting' to NULL. This function will then return NULL
1055 * so that the caller will forget about 'cmd'. (During information
1056 * transfer phases, EH may change 'connected' to NULL.)
1057 */
1058 hostdata->selecting = cmd;
1059
Finn Thainaff0cf92016-01-03 16:06:09 +11001060 /*
1061 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 * data bus during SELECTION.
1063 */
1064
1065 NCR5380_write(TARGET_COMMAND_REG, 0);
1066
Finn Thainaff0cf92016-01-03 16:06:09 +11001067 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 * Start arbitration.
1069 */
1070
1071 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1072 NCR5380_write(MODE_REG, MR_ARBITRATE);
1073
Finn Thain55500d92016-01-03 16:05:35 +11001074 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1075 * Bus Free Delay, arbitration will begin.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 */
1077
Finn Thain11d2f632016-01-03 16:05:51 +11001078 spin_unlock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001079 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1080 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1081 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001082 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001083 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
1084 /* Reselection interrupt */
Finn Thain707d62b2016-01-03 16:06:02 +11001085 goto out;
Finn Thainb32ade12016-01-03 16:05:41 +11001086 }
Finn Thainccf6efd2016-02-23 10:07:08 +11001087 if (!hostdata->selecting) {
1088 /* Command was aborted */
1089 NCR5380_write(MODE_REG, MR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001090 return NULL;
Finn Thainccf6efd2016-02-23 10:07:08 +11001091 }
Finn Thainb32ade12016-01-03 16:05:41 +11001092 if (err < 0) {
1093 NCR5380_write(MODE_REG, MR_BASE);
1094 shost_printk(KERN_ERR, instance,
1095 "select: arbitration timeout\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001096 goto out;
Finn Thain55500d92016-01-03 16:05:35 +11001097 }
Finn Thain11d2f632016-01-03 16:05:51 +11001098 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001099
1100 /* The SCSI-2 arbitration delay is 2.4 us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 udelay(3);
1102
1103 /* Check for lost arbitration */
Finn Thain0d2cf862016-01-03 16:06:11 +11001104 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1105 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1106 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 NCR5380_write(MODE_REG, MR_BASE);
Finn Thainb7465452016-01-03 16:06:05 +11001108 dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n");
Finn Thain11d2f632016-01-03 16:05:51 +11001109 spin_lock_irq(&hostdata->lock);
Finn Thain707d62b2016-01-03 16:06:02 +11001110 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
Finn Thaincf13b082016-01-03 16:05:18 +11001112
1113 /* After/during arbitration, BSY should be asserted.
1114 * IBM DPES-31080 Version S31Q works now
1115 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1116 */
1117 NCR5380_write(INITIATOR_COMMAND_REG,
1118 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Finn Thainaff0cf92016-01-03 16:06:09 +11001120 /*
1121 * Again, bus clear + bus settle time is 1.2us, however, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * a minimum so we'll udelay ceil(1.2)
1123 */
1124
Finn Thain9c3f0e22016-01-03 16:05:11 +11001125 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1126 udelay(15);
1127 else
1128 udelay(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Finn Thain11d2f632016-01-03 16:05:51 +11001130 spin_lock_irq(&hostdata->lock);
1131
Finn Thain72064a72016-01-03 16:05:44 +11001132 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1133 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Finn Thain707d62b2016-01-03 16:06:02 +11001134 goto out;
1135
1136 if (!hostdata->selecting) {
1137 NCR5380_write(MODE_REG, MR_BASE);
1138 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001139 return NULL;
Finn Thain707d62b2016-01-03 16:06:02 +11001140 }
Finn Thain72064a72016-01-03 16:05:44 +11001141
Finn Thainb7465452016-01-03 16:06:05 +11001142 dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Finn Thainaff0cf92016-01-03 16:06:09 +11001144 /*
1145 * Now that we have won arbitration, start Selection process, asserting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * the host and target ID's on the SCSI bus.
1147 */
1148
Finn Thain3d07d222016-01-03 16:06:13 +11001149 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Finn Thainaff0cf92016-01-03 16:06:09 +11001151 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 * Raise ATN while SEL is true before BSY goes false from arbitration,
1153 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1154 * phase immediately after selection.
1155 */
1156
Finn Thain3d07d222016-01-03 16:06:13 +11001157 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY |
1158 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 NCR5380_write(MODE_REG, MR_BASE);
1160
Finn Thainaff0cf92016-01-03 16:06:09 +11001161 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 * Reselect interrupts must be turned off prior to the dropping of BSY,
1163 * otherwise we will trigger an interrupt.
1164 */
1165 NCR5380_write(SELECT_ENABLE_REG, 0);
1166
Finn Thain11d2f632016-01-03 16:05:51 +11001167 spin_unlock_irq(&hostdata->lock);
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001170 * The initiator shall then wait at least two deskew delays and release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 * the BSY signal.
1172 */
Finn Thain0d2cf862016-01-03 16:06:11 +11001173 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 /* Reset BSY */
Finn Thain3d07d222016-01-03 16:06:13 +11001176 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA |
1177 ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Finn Thainaff0cf92016-01-03 16:06:09 +11001179 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 * Something weird happens when we cease to drive BSY - looks
Finn Thainaff0cf92016-01-03 16:06:09 +11001181 * like the board/chip is letting us do another read before the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * appropriate propagation delay has expired, and we're confusing
1183 * a BSY signal from ourselves as the target's response to SELECTION.
1184 *
1185 * A small delay (the 'C++' frontend breaks the pipeline with an
1186 * unnecessary jump, making it work on my 386-33/Trantor T128, the
Finn Thainaff0cf92016-01-03 16:06:09 +11001187 * tighter 'C' code breaks and requires this) solves the problem -
1188 * the 1 us delay is arbitrary, and only used because this delay will
1189 * be the same on other platforms and since it works here, it should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * work there.
1191 *
1192 * wingel suggests that this could be due to failing to wait
1193 * one deskew delay.
1194 */
1195
1196 udelay(1);
1197
Finn Thainb7465452016-01-03 16:06:05 +11001198 dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Finn Thainaff0cf92016-01-03 16:06:09 +11001200 /*
1201 * The SCSI specification calls for a 250 ms timeout for the actual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 * selection.
1203 */
1204
Finn Thainae753a32016-01-03 16:05:23 +11001205 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1206 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001209 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1211 NCR5380_reselect(instance);
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001212 shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001213 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Finn Thainae753a32016-01-03 16:05:23 +11001215
1216 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001217 spin_lock_irq(&hostdata->lock);
Finn Thainae753a32016-01-03 16:05:23 +11001218 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001219
Finn Thain707d62b2016-01-03 16:06:02 +11001220 /* Can't touch cmd if it has been reclaimed by the scsi ML */
Finn Thain24dcf8c2018-09-27 11:17:11 +10001221 if (!hostdata->selecting)
1222 return NULL;
1223
1224 cmd->result = DID_BAD_TARGET << 16;
1225 complete_cmd(instance, cmd);
1226 dsprintk(NDEBUG_SELECTION, instance,
1227 "target did not respond within 250ms\n");
1228 cmd = NULL;
Finn Thain707d62b2016-01-03 16:06:02 +11001229 goto out;
Finn Thainae753a32016-01-03 16:05:23 +11001230 }
1231
Finn Thainaff0cf92016-01-03 16:06:09 +11001232 /*
1233 * No less than two deskew delays after the initiator detects the
1234 * BSY signal is true, it shall release the SEL signal and may
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 * change the DATA BUS. -wingel
1236 */
1237
1238 udelay(1);
1239
1240 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001243 * Since we followed the SCSI spec, and raised ATN while SEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 * was true but before BSY was false during selection, the information
1245 * transfer phase should be a MESSAGE OUT phase so that we can send the
1246 * IDENTIFY message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 */
1248
1249 /* Wait for start of REQ/ACK handshake */
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001252 spin_lock_irq(&hostdata->lock);
Finn Thain1cc160e2016-01-03 16:05:32 +11001253 if (err < 0) {
Finn Thain55500d92016-01-03 16:05:35 +11001254 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1255 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain707d62b2016-01-03 16:06:02 +11001256 goto out;
1257 }
1258 if (!hostdata->selecting) {
1259 do_abort(instance);
Finn Thain24dcf8c2018-09-27 11:17:11 +10001260 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
Finn Thainb7465452016-01-03 16:06:05 +11001263 dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n",
1264 scmd_id(cmd));
Finn Thain22f5f102014-11-12 16:11:56 +11001265 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 len = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 data = tmp;
1269 phase = PHASE_MSGOUT;
1270 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001271 dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /* XXX need to handle errors here */
Finn Thain11d2f632016-01-03 16:05:51 +11001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 hostdata->connected = cmd;
Finn Thain3d07d222016-01-03 16:06:13 +11001275 hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Finn Thaine9db3192016-03-23 21:10:21 +11001277#ifdef SUN3_SCSI_VME
1278 dregs->csr |= CSR_INTR;
1279#endif
1280
Boaz Harrosh28424d32007-09-10 22:37:45 +03001281 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Finn Thain707d62b2016-01-03 16:06:02 +11001283 cmd = NULL;
1284
1285out:
1286 if (!hostdata->selecting)
1287 return NULL;
1288 hostdata->selecting = NULL;
1289 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Finn Thainaff0cf92016-01-03 16:06:09 +11001292/*
1293 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001294 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 *
1296 * Purpose : transfers data in given phase using polled I/O
1297 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001298 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001299 * what phase is expected, *count - pointer to number of
1300 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001301 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 * Returns : -1 when different phase is entered without transferring
Finn Thain0d2cf862016-01-03 16:06:11 +11001303 * maximum number of bytes, 0 if all bytes are transferred or exit
Finn Thain594d4ba2016-01-03 16:06:10 +11001304 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001306 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 *
1308 * XXX Note : handling for bus free may be useful.
1309 */
1310
1311/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001312 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * IS 100% reliable, and for the actual data transfer where speed
1314 * counts, we will always do a pseudo DMA or DMA transfer.
1315 */
1316
Finn Thain0d2cf862016-01-03 16:06:11 +11001317static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1318 unsigned char *phase, int *count,
1319 unsigned char **data)
1320{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 unsigned char p = *phase, tmp;
1322 int c = *count;
1323 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Finn Thainaff0cf92016-01-03 16:06:09 +11001325 /*
1326 * The NCR5380 chip will only drive the SCSI bus when the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 * phase specified in the appropriate bits of the TARGET COMMAND
1328 * REGISTER match the STATUS REGISTER
1329 */
1330
Finn Thain0d2cf862016-01-03 16:06:11 +11001331 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 do {
Finn Thainaff0cf92016-01-03 16:06:09 +11001334 /*
1335 * Wait for assertion of REQ, after which the phase bits will be
1336 * valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
1338
Finn Thain686f3992016-01-03 16:05:26 +11001339 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Finn Thainb7465452016-01-03 16:06:05 +11001342 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001345 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thainb7465452016-01-03 16:06:05 +11001346 dsprintk(NDEBUG_PIO, instance, "phase mismatch\n");
1347 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 break;
1349 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 /* Do actual transfer from SCSI bus to / from memory */
1352 if (!(p & SR_IO))
1353 NCR5380_write(OUTPUT_DATA_REG, *d);
1354 else
1355 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1356
1357 ++d;
1358
Finn Thainaff0cf92016-01-03 16:06:09 +11001359 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 * The SCSI standard suggests that in MSGOUT phase, the initiator
1361 * should drop ATN on the last byte of the message phase
1362 * after REQ has been asserted for the handshake but before
1363 * the initiator raises ACK.
1364 */
1365
1366 if (!(p & SR_IO)) {
1367 if (!((p & SR_MSG) && c > 1)) {
1368 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1369 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001370 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1371 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 } else {
Finn Thain3d07d222016-01-03 16:06:13 +11001373 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1374 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001376 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1377 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379 } else {
1380 NCR5380_dprint(NDEBUG_PIO, instance);
1381 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1382 }
1383
Finn Thaina2edc4a2016-01-03 16:05:27 +11001384 if (NCR5380_poll_politely(instance,
1385 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1386 break;
1387
Finn Thainb7465452016-01-03 16:06:05 +11001388 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001391 * We have several special cases to consider during REQ/ACK handshaking :
1392 * 1. We were in MSGOUT phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001393 * message. ATN must be dropped as ACK is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001395 * 2. We are in a MSGIN phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001396 * message. We must exit with ACK asserted, so that the calling
1397 * code may raise ATN before dropping ACK to reject the message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 *
1399 * 3. ACK and ATN are clear and the target may proceed as normal.
1400 */
1401 if (!(p == PHASE_MSGIN && c == 1)) {
1402 if (p == PHASE_MSGOUT && c > 1)
1403 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1404 else
1405 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1406 }
1407 } while (--c);
1408
Finn Thainb7465452016-01-03 16:06:05 +11001409 dsprintk(NDEBUG_PIO, instance, "residual %d\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 *count = c;
1412 *data = d;
1413 tmp = NCR5380_read(STATUS_REG);
Finn Thaina2edc4a2016-01-03 16:05:27 +11001414 /* The phase read from the bus is valid if either REQ is (already)
1415 * asserted or if ACK hasn't been released yet. The latter applies if
1416 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
1417 */
1418 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 *phase = tmp & PHASE_MASK;
1420 else
1421 *phase = PHASE_UNKNOWN;
1422
1423 if (!c || (*phase == p))
1424 return 0;
1425 else
1426 return -1;
1427}
1428
1429/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001430 * do_reset - issue a reset command
1431 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001433 * Issue a reset sequence to the NCR5380 and try and get the bus
1434 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001436 * This clears the reset interrupt flag because there may be no handler for
1437 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1438 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001440
Finn Thain54d8fe42016-01-03 16:05:06 +11001441static void do_reset(struct Scsi_Host *instance)
1442{
Finn Thain636b1ec2016-01-03 16:05:10 +11001443 unsigned long flags;
1444
1445 local_irq_save(flags);
1446 NCR5380_write(TARGET_COMMAND_REG,
1447 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001449 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001451 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1452 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Finn Thain80d3eb62016-01-03 16:05:34 +11001455/**
1456 * do_abort - abort the currently established nexus by going to
1457 * MESSAGE OUT phase and sending an ABORT message.
1458 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001460 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 */
1462
Finn Thain54d8fe42016-01-03 16:05:06 +11001463static int do_abort(struct Scsi_Host *instance)
1464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 unsigned char *msgptr, phase, tmp;
1466 int len;
1467 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /* Request message out phase */
1470 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1471
Finn Thainaff0cf92016-01-03 16:06:09 +11001472 /*
1473 * Wait for the target to indicate a valid phase by asserting
1474 * REQ. Once this happens, we'll have either a MSGOUT phase
1475 * and can immediately send the ABORT message, or we'll have some
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * other phase and will have to source/sink data.
Finn Thainaff0cf92016-01-03 16:06:09 +11001477 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 * We really don't care what value was on the bus or what value
1479 * the target sees, so we just handshake.
1480 */
1481
Finn Thain80d3eb62016-01-03 16:05:34 +11001482 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001483 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001484 goto timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Finn Thainf35d3472016-01-03 16:05:33 +11001486 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Finn Thainaff0cf92016-01-03 16:06:09 +11001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1489
Finn Thainf35d3472016-01-03 16:05:33 +11001490 if (tmp != PHASE_MSGOUT) {
Finn Thain0d2cf862016-01-03 16:06:11 +11001491 NCR5380_write(INITIATOR_COMMAND_REG,
1492 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thain54d8fe42016-01-03 16:05:06 +11001493 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001494 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001495 goto timeout;
1496 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 tmp = ABORT;
1500 msgptr = &tmp;
1501 len = 1;
1502 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001503 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 /*
1506 * If we got here, and the command completed successfully,
1507 * we're about to go into bus free state.
1508 */
1509
1510 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001511
1512timeout:
1513 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1514 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Finn Thainaff0cf92016-01-03 16:06:09 +11001517/*
1518 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001519 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 *
1521 * Purpose : transfers data in given phase using either real
Finn Thain594d4ba2016-01-03 16:06:10 +11001522 * or pseudo DMA.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001524 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001525 * what phase is expected, *count - pointer to number of
1526 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001527 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 * Returns : -1 when different phase is entered without transferring
Finn Thain594d4ba2016-01-03 16:06:10 +11001529 * maximum number of bytes, 0 if all bytes or transferred or exit
1530 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001532 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
1534
1535
Finn Thain0d2cf862016-01-03 16:06:11 +11001536static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1537 unsigned char *phase, int *count,
1538 unsigned char **data)
1539{
1540 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainf0ea73a2016-03-23 21:10:26 +11001541 int c = *count;
1542 unsigned char p = *phase;
1543 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 unsigned char tmp;
Finn Thain8053b0e2016-03-23 21:10:19 +11001545 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1548 *phase = tmp;
1549 return -1;
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Finn Thain8053b0e2016-03-23 21:10:19 +11001552 hostdata->connected->SCp.phase = p;
1553
1554 if (p & SR_IO) {
1555 if (hostdata->read_overruns)
1556 c -= hostdata->read_overruns;
1557 else if (hostdata->flags & FLAG_DMA_FIXUP)
1558 --c;
1559 }
1560
1561 dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n",
1562 (p & SR_IO) ? "receive" : "send", c, d);
1563
Finn Thaine9db3192016-03-23 21:10:21 +11001564#ifdef CONFIG_SUN3
1565 /* send start chain */
1566 sun3scsi_dma_start(c, *data);
1567#endif
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thain8053b0e2016-03-23 21:10:19 +11001570 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1571 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Finn Thain8053b0e2016-03-23 21:10:19 +11001573 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
1574 /* On the Medusa, it is a must to initialize the DMA before
1575 * starting the NCR. This is also the cleaner way for the TT.
1576 */
1577 if (p & SR_IO)
1578 result = NCR5380_dma_recv_setup(instance, d, c);
1579 else
1580 result = NCR5380_dma_send_setup(instance, d, c);
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Finn Thainaff0cf92016-01-03 16:06:09 +11001583 /*
Finn Thain594d4ba2016-01-03 16:06:10 +11001584 * On the PAS16 at least I/O recovery delays are not needed here.
1585 * Everyone else seems to want them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 */
1587
1588 if (p & SR_IO) {
Finn Thaine9db3192016-03-23 21:10:21 +11001589 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaine5d55d12016-03-23 21:10:16 +11001590 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1592 } else {
Finn Thaine5d55d12016-03-23 21:10:16 +11001593 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thaine5d55d12016-03-23 21:10:16 +11001595 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 NCR5380_write(START_DMA_SEND_REG, 0);
Finn Thaine5d55d12016-03-23 21:10:16 +11001597 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599
Finn Thaine9db3192016-03-23 21:10:21 +11001600#ifdef CONFIG_SUN3
1601#ifdef SUN3_SCSI_VME
1602 dregs->csr |= CSR_DMA_ENABLE;
1603#endif
1604 sun3_dma_active = 1;
1605#endif
1606
Finn Thain8053b0e2016-03-23 21:10:19 +11001607 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
1608 /* On the Falcon, the DMA setup must be done after the last
1609 * NCR access, else the DMA setup gets trashed!
1610 */
1611 if (p & SR_IO)
1612 result = NCR5380_dma_recv_setup(instance, d, c);
1613 else
1614 result = NCR5380_dma_send_setup(instance, d, c);
1615 }
1616
1617 /* On failure, NCR5380_dma_xxxx_setup() returns a negative int. */
1618 if (result < 0)
1619 return result;
1620
1621 /* For real DMA, result is the byte count. DMA interrupt is expected. */
1622 if (result > 0) {
1623 hostdata->dma_len = result;
1624 return 0;
1625 }
1626
1627 /* The result is zero iff pseudo DMA send/receive was completed. */
1628 hostdata->dma_len = c;
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630/*
Finn Thaine4dec682016-03-23 21:10:12 +11001631 * A note regarding the DMA errata workarounds for early NMOS silicon.
Finn Thainc16df322016-01-03 16:06:08 +11001632 *
1633 * For DMA sends, we want to wait until the last byte has been
1634 * transferred out over the bus before we turn off DMA mode. Alas, there
1635 * seems to be no terribly good way of doing this on a 5380 under all
1636 * conditions. For non-scatter-gather operations, we can wait until REQ
1637 * and ACK both go false, or until a phase mismatch occurs. Gather-sends
1638 * are nastier, since the device will be expecting more data than we
1639 * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1640 * could test Last Byte Sent to assure transfer (I imagine this is precisely
1641 * why this signal was added to the newer chips) but on the older 538[01]
1642 * this signal does not exist. The workaround for this lack is a watchdog;
1643 * we bail out of the wait-loop after a modest amount of wait-time if
1644 * the usual exit conditions are not met. Not a terribly clean or
1645 * correct solution :-%
1646 *
1647 * DMA receive is equally tricky due to a nasty characteristic of the NCR5380.
1648 * If the chip is in DMA receive mode, it will respond to a target's
1649 * REQ by latching the SCSI data into the INPUT DATA register and asserting
1650 * ACK, even if it has _already_ been notified by the DMA controller that
1651 * the current DMA transfer has completed! If the NCR5380 is then taken
1652 * out of DMA mode, this already-acknowledged byte is lost. This is
1653 * not a problem for "one DMA transfer per READ command", because
1654 * the situation will never arise... either all of the data is DMA'ed
1655 * properly, or the target switches to MESSAGE IN phase to signal a
1656 * disconnection (either operation bringing the DMA to a clean halt).
1657 * However, in order to handle scatter-receive, we must work around the
Finn Thaine4dec682016-03-23 21:10:12 +11001658 * problem. The chosen fix is to DMA fewer bytes, then check for the
Finn Thainc16df322016-01-03 16:06:08 +11001659 * condition before taking the NCR5380 out of DMA mode. One or two extra
1660 * bytes are transferred via PIO as necessary to fill out the original
1661 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 */
1663
Finn Thain8053b0e2016-03-23 21:10:19 +11001664 if (hostdata->flags & FLAG_DMA_FIXUP) {
1665 if (p & SR_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
Finn Thaine4dec682016-03-23 21:10:12 +11001667 * The workaround was to transfer fewer bytes than we
Finn Thainaff0cf92016-01-03 16:06:09 +11001668 * intended to with the pseudo-DMA read function, wait for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * the chip to latch the last byte, read it, and then disable
1670 * pseudo-DMA mode.
Finn Thainaff0cf92016-01-03 16:06:09 +11001671 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1673 * REQ is deasserted when ACK is asserted, and not reasserted
1674 * until ACK goes false. Since the NCR5380 won't lower ACK
1675 * until DACK is asserted, which won't happen unless we twiddle
Finn Thainaff0cf92016-01-03 16:06:09 +11001676 * the DMA port or we take the NCR5380 out of DMA mode, we
1677 * can guarantee that we won't handshake another extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 * byte.
1679 */
1680
Finn Thain55181be2016-01-03 16:05:42 +11001681 if (NCR5380_poll_politely(instance, BUS_AND_STATUS_REG,
1682 BASR_DRQ, BASR_DRQ, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001683 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001684 shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
Finn Thain55181be2016-01-03 16:05:42 +11001686 if (NCR5380_poll_politely(instance, STATUS_REG,
1687 SR_REQ, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001688 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001689 shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n");
1690 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001691 d[*count - 1] = NCR5380_read(INPUT_DATA_REG);
1692 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001694 * Wait for the last byte to be sent. If REQ is being asserted for
1695 * the byte we're interested, we'll ACK it and it will go false.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 */
Finn Thain55181be2016-01-03 16:05:42 +11001697 if (NCR5380_poll_politely2(instance,
1698 BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ,
1699 BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001700 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001701 shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001705
1706 NCR5380_dma_complete(instance);
Finn Thain438af512016-03-23 21:10:18 +11001707 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710/*
1711 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1712 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001713 * Purpose : run through the various SCSI phases and do as the target
Finn Thain594d4ba2016-01-03 16:06:10 +11001714 * directs us to. Operates on the currently connected command,
1715 * instance->connected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 *
1717 * Inputs : instance, instance for which we are doing commands
1718 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001719 * Side effects : SCSI things happen, the disconnected queue will be
Finn Thain594d4ba2016-01-03 16:06:10 +11001720 * modified if a command disconnects, *instance->connected will
1721 * change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001723 * XXX Note : we need to watch for bus free or a reset condition here
Finn Thain594d4ba2016-01-03 16:06:10 +11001724 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 */
1726
Finn Thain0d2cf862016-01-03 16:06:11 +11001727static void NCR5380_information_transfer(struct Scsi_Host *instance)
1728{
Finn Thaine8a60142016-01-03 16:05:54 +11001729 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 unsigned char msgout = NOP;
1731 int sink = 0;
1732 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 unsigned char *data;
1735 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001736 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Finn Thaine9db3192016-03-23 21:10:21 +11001738#ifdef SUN3_SCSI_VME
1739 dregs->csr |= CSR_INTR;
1740#endif
1741
Finn Thain11d2f632016-01-03 16:05:51 +11001742 while ((cmd = hostdata->connected)) {
Finn Thain32b26a12016-01-03 16:05:58 +11001743 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 tmp = NCR5380_read(STATUS_REG);
1746 /* We only have a valid SCSI phase when REQ is asserted */
1747 if (tmp & SR_REQ) {
1748 phase = (tmp & PHASE_MASK);
1749 if (phase != old_phase) {
1750 old_phase = phase;
1751 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1752 }
Finn Thaine9db3192016-03-23 21:10:21 +11001753#ifdef CONFIG_SUN3
1754 if (phase == PHASE_CMDOUT) {
1755 void *d;
1756 unsigned long count;
1757
1758 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1759 count = cmd->SCp.buffer->length;
1760 d = sg_virt(cmd->SCp.buffer);
1761 } else {
1762 count = cmd->SCp.this_residual;
1763 d = cmd->SCp.ptr;
1764 }
1765
1766 if (sun3_dma_setup_done != cmd &&
1767 sun3scsi_dma_xfer_len(count, cmd) > 0) {
1768 sun3scsi_dma_setup(instance, d, count,
1769 rq_data_dir(cmd->request));
1770 sun3_dma_setup_done = cmd;
1771 }
1772#ifdef SUN3_SCSI_VME
1773 dregs->csr |= CSR_INTR;
1774#endif
1775 }
1776#endif /* CONFIG_SUN3 */
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (sink && (phase != PHASE_MSGOUT)) {
1779 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1780
Finn Thain3d07d222016-01-03 16:06:13 +11001781 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1782 ICR_ASSERT_ACK);
Finn Thain0d2cf862016-01-03 16:06:11 +11001783 while (NCR5380_read(STATUS_REG) & SR_REQ)
1784 ;
Finn Thain3d07d222016-01-03 16:06:13 +11001785 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1786 ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 sink = 0;
1788 continue;
1789 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 switch (phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 case PHASE_DATAOUT:
1793#if (NDEBUG & NDEBUG_NO_DATAOUT)
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001794 shost_printk(KERN_DEBUG, instance, "NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 sink = 1;
1796 do_abort(instance);
1797 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11001798 complete_cmd(instance, cmd);
Finn Thaindc183962016-02-23 10:07:07 +11001799 hostdata->connected = NULL;
Finn Thain155edd42018-09-27 11:17:11 +10001800 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return;
1802#endif
Finn Thainbf1a0c62016-01-03 16:05:47 +11001803 case PHASE_DATAIN:
Finn Thainaff0cf92016-01-03 16:06:09 +11001804 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 * If there is no room left in the current buffer in the
1806 * scatter-gather list, move onto the next one.
1807 */
1808
1809 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1810 ++cmd->SCp.buffer;
1811 --cmd->SCp.buffers_residual;
1812 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001813 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thainb7465452016-01-03 16:06:05 +11001814 dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n",
1815 cmd->SCp.this_residual,
1816 cmd->SCp.buffers_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001820 * The preferred transfer method is going to be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 * PSEUDO-DMA for systems that are strictly PIO,
1822 * since we can let the hardware do the handshaking.
1823 *
1824 * For this to work, we need to know the transfersize
1825 * ahead of time, since the pseudo-DMA code will sit
1826 * in an unconditional loop.
1827 */
1828
Finn Thainff3d4572016-01-03 16:05:25 +11001829 transfersize = 0;
Finn Thain7e9ec8d2016-03-23 21:10:11 +11001830 if (!cmd->device->borken)
Finn Thainff3d4572016-01-03 16:05:25 +11001831 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Finn Thain438af512016-03-23 21:10:18 +11001833 if (transfersize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 len = transfersize;
Finn Thain0d2cf862016-01-03 16:06:11 +11001835 if (NCR5380_transfer_dma(instance, &phase,
1836 &len, (unsigned char **)&cmd->SCp.ptr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11001838 * If the watchdog timer fires, all future
1839 * accesses to this device will use the
1840 * polled-IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Jeff Garzik017560f2005-10-24 18:04:36 -04001842 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11001843 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 cmd->device->borken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 sink = 1;
1846 do_abort(instance);
1847 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /* XXX - need to source or sink data here, as appropriate */
Finn Thain8053b0e2016-03-23 21:10:19 +11001849 }
Finn Thainf825e402016-03-23 21:10:15 +11001850 } else {
Finn Thain08348b12016-08-31 14:44:56 +10001851 /* Transfer a small chunk so that the
1852 * irq mode lock is not held too long.
Finn Thain16788472016-02-23 10:07:05 +11001853 */
Finn Thain08348b12016-08-31 14:44:56 +10001854 transfersize = min(cmd->SCp.this_residual,
1855 NCR5380_PIO_CHUNK_SIZE);
Finn Thain16788472016-02-23 10:07:05 +11001856 len = transfersize;
1857 NCR5380_transfer_pio(instance, &phase, &len,
Finn Thain3d07d222016-01-03 16:06:13 +11001858 (unsigned char **)&cmd->SCp.ptr);
Finn Thain16788472016-02-23 10:07:05 +11001859 cmd->SCp.this_residual -= transfersize - len;
Finn Thain11d2f632016-01-03 16:05:51 +11001860 }
Finn Thaine9db3192016-03-23 21:10:21 +11001861#ifdef CONFIG_SUN3
1862 if (sun3_dma_setup_done == cmd)
1863 sun3_dma_setup_done = NULL;
1864#endif
Finn Thain16788472016-02-23 10:07:05 +11001865 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 case PHASE_MSGIN:
1867 len = 1;
1868 data = &tmp;
1869 NCR5380_transfer_pio(instance, &phase, &len, &data);
1870 cmd->SCp.Message = tmp;
1871
1872 switch (tmp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 case ABORT:
1874 case COMMAND_COMPLETE:
1875 /* Accept message by clearing ACK */
1876 sink = 1;
1877 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001878 dsprintk(NDEBUG_QUEUES, instance,
1879 "COMMAND COMPLETE %p target %d lun %llu\n",
1880 cmd, scmd_id(cmd), cmd->device->lun);
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 hostdata->connected = NULL;
Finn Thain155edd42018-09-27 11:17:11 +10001883 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Finn Thainf27db8e2016-01-03 16:06:00 +11001885 cmd->result &= ~0xffff;
1886 cmd->result |= cmd->SCp.Status;
1887 cmd->result |= cmd->SCp.Message << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Finn Thainf27db8e2016-01-03 16:06:00 +11001889 if (cmd->cmnd[0] == REQUEST_SENSE)
Finn Thain677e0192016-01-03 16:05:59 +11001890 complete_cmd(instance, cmd);
Finn Thainf27db8e2016-01-03 16:06:00 +11001891 else {
1892 if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION ||
1893 cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) {
1894 dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n",
1895 cmd);
1896 list_add_tail(&ncmd->list,
1897 &hostdata->autosense);
1898 } else
1899 complete_cmd(instance, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
Finn Thainaff0cf92016-01-03 16:06:09 +11001902 /*
1903 * Restore phase bits to 0 so an interrupted selection,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * arbitration can resume.
1905 */
1906 NCR5380_write(TARGET_COMMAND_REG, 0);
Finn Thain72064a72016-01-03 16:05:44 +11001907
Finn Thain52d3e562016-03-23 21:10:20 +11001908 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return;
1910 case MESSAGE_REJECT:
1911 /* Accept message by clearing ACK */
1912 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1913 switch (hostdata->last_message) {
1914 case HEAD_OF_QUEUE_TAG:
1915 case ORDERED_QUEUE_TAG:
1916 case SIMPLE_QUEUE_TAG:
1917 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001918 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 break;
1920 default:
1921 break;
1922 }
Finn Thain340b9612016-01-03 16:05:31 +11001923 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11001924 case DISCONNECT:
1925 /* Accept message by clearing ACK */
1926 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1927 hostdata->connected = NULL;
1928 list_add(&ncmd->list, &hostdata->disconnected);
1929 dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES,
1930 instance, "connected command %p for target %d lun %llu moved to disconnected queue\n",
1931 cmd, scmd_id(cmd), cmd->device->lun);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001932
Finn Thain0d2cf862016-01-03 16:06:11 +11001933 /*
1934 * Restore phase bits to 0 so an interrupted selection,
1935 * arbitration can resume.
1936 */
1937 NCR5380_write(TARGET_COMMAND_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Finn Thaine9db3192016-03-23 21:10:21 +11001939#ifdef SUN3_SCSI_VME
1940 dregs->csr |= CSR_DMA_ENABLE;
1941#endif
Finn Thain0d2cf862016-01-03 16:06:11 +11001942 return;
Finn Thainaff0cf92016-01-03 16:06:09 +11001943 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
Finn Thainaff0cf92016-01-03 16:06:09 +11001945 * operation, in violation of the SCSI spec so we can safely
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 * ignore SAVE/RESTORE pointers calls.
1947 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001948 * Unfortunately, some disks violate the SCSI spec and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 * don't issue the required SAVE_POINTERS message before
Finn Thainaff0cf92016-01-03 16:06:09 +11001950 * disconnecting, and we have to break spec to remain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 * compatible.
1952 */
1953 case SAVE_POINTERS:
1954 case RESTORE_POINTERS:
1955 /* Accept message by clearing ACK */
1956 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1957 break;
1958 case EXTENDED_MESSAGE:
Finn Thainc16df322016-01-03 16:06:08 +11001959 /*
1960 * Start the message buffer with the EXTENDED_MESSAGE
1961 * byte, since spi_print_msg() wants the whole thing.
1962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 extended_msg[0] = EXTENDED_MESSAGE;
1964 /* Accept first byte by clearing ACK */
1965 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain11d2f632016-01-03 16:05:51 +11001966
1967 spin_unlock_irq(&hostdata->lock);
1968
Finn Thainb7465452016-01-03 16:06:05 +11001969 dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 len = 2;
1972 data = extended_msg + 1;
1973 phase = PHASE_MSGIN;
1974 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001975 dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n",
1976 (int)extended_msg[1],
1977 (int)extended_msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Finn Thaine0783ed2016-01-03 16:05:45 +11001979 if (!len && extended_msg[1] > 0 &&
1980 extended_msg[1] <= sizeof(extended_msg) - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /* Accept third byte by clearing ACK */
1982 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1983 len = extended_msg[1] - 1;
1984 data = extended_msg + 3;
1985 phase = PHASE_MSGIN;
1986
1987 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001988 dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n",
1989 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 switch (extended_msg[2]) {
1992 case EXTENDED_SDTR:
1993 case EXTENDED_WDTR:
1994 case EXTENDED_MODIFY_DATA_POINTER:
1995 case EXTENDED_EXTENDED_IDENTIFY:
1996 tmp = 0;
1997 }
1998 } else if (len) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001999 shost_printk(KERN_ERR, instance, "error receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 tmp = 0;
2001 } else {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002002 shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n",
2003 extended_msg[2], extended_msg[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 tmp = 0;
2005 }
Finn Thain11d2f632016-01-03 16:05:51 +11002006
2007 spin_lock_irq(&hostdata->lock);
2008 if (!hostdata->connected)
2009 return;
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 /* Fall through to reject message */
2012
Finn Thainaff0cf92016-01-03 16:06:09 +11002013 /*
2014 * If we get something weird that we aren't expecting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 * reject it.
2016 */
2017 default:
2018 if (!tmp) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002019 shost_printk(KERN_ERR, instance, "rejecting message ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002020 spi_print_msg(extended_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 printk("\n");
2022 } else if (tmp != EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04002023 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002024 "rejecting unknown message %02x\n",
2025 tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 else
Jeff Garzik017560f2005-10-24 18:04:36 -04002027 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002028 "rejecting unknown extended message code %02x, length %d\n",
2029 extended_msg[1], extended_msg[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 msgout = MESSAGE_REJECT;
2032 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2033 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11002034 } /* switch (tmp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 break;
2036 case PHASE_MSGOUT:
2037 len = 1;
2038 data = &msgout;
2039 hostdata->last_message = msgout;
2040 NCR5380_transfer_pio(instance, &phase, &len, &data);
2041 if (msgout == ABORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 hostdata->connected = NULL;
Finn Thain155edd42018-09-27 11:17:11 +10002043 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11002045 complete_cmd(instance, cmd);
Finn Thain52d3e562016-03-23 21:10:20 +11002046 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return;
2048 }
2049 msgout = NOP;
2050 break;
2051 case PHASE_CMDOUT:
2052 len = cmd->cmd_len;
2053 data = cmd->cmnd;
Finn Thainaff0cf92016-01-03 16:06:09 +11002054 /*
2055 * XXX for performance reasons, on machines with a
2056 * PSEUDO-DMA architecture we should probably
2057 * use the dma transfer function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 */
2059 NCR5380_transfer_pio(instance, &phase, &len, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 break;
2061 case PHASE_STATIN:
2062 len = 1;
2063 data = &tmp;
2064 NCR5380_transfer_pio(instance, &phase, &len, &data);
2065 cmd->SCp.Status = tmp;
2066 break;
2067 default:
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002068 shost_printk(KERN_ERR, instance, "unknown phase\n");
Finn Thain4dde8f72014-03-18 11:42:17 +11002069 NCR5380_dprint(NDEBUG_ANY, instance);
Finn Thain0d2cf862016-01-03 16:06:11 +11002070 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002071 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002072 spin_unlock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002073 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11002074 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 }
Finn Thain11d2f632016-01-03 16:05:51 +11002076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
2079/*
2080 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2081 *
Finn Thainaff0cf92016-01-03 16:06:09 +11002082 * Purpose : does reselection, initializing the instance->connected
Finn Thain594d4ba2016-01-03 16:06:10 +11002083 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
2084 * nexus has been reestablished,
Finn Thainaff0cf92016-01-03 16:06:09 +11002085 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 * Inputs : instance - this instance of the NCR5380.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 */
2088
Finn Thain0d2cf862016-01-03 16:06:11 +11002089static void NCR5380_reselect(struct Scsi_Host *instance)
2090{
Finn Thaine8a60142016-01-03 16:05:54 +11002091 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 unsigned char target_mask;
Finn Thaine9db3192016-03-23 21:10:21 +11002093 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 unsigned char msg[3];
Finn Thain32b26a12016-01-03 16:05:58 +11002095 struct NCR5380_cmd *ncmd;
2096 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /*
2099 * Disable arbitration, etc. since the host adapter obviously
2100 * lost, and tell an interrupted NCR5380_select() to restart.
2101 */
2102
2103 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thainf876c372018-09-27 11:17:11 +10002106 if (!target_mask || target_mask & (target_mask - 1)) {
2107 shost_printk(KERN_WARNING, instance,
2108 "reselect: bad target_mask 0x%02x\n", target_mask);
2109 return;
2110 }
Finn Thainb7465452016-01-03 16:06:05 +11002111
Finn Thainaff0cf92016-01-03 16:06:09 +11002112 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 * At this point, we have detected that our SCSI ID is on the bus,
2114 * SEL is true and BSY was false for at least one bus settle delay
2115 * (400 ns).
2116 *
2117 * We must assert BSY ourselves, until the target drops the SEL
2118 * signal.
2119 */
2120
2121 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thain72064a72016-01-03 16:05:44 +11002122 if (NCR5380_poll_politely(instance,
2123 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
Finn Thainbbef2182018-09-27 11:17:11 +10002124 shost_printk(KERN_ERR, instance, "reselect: !SEL timeout\n");
Finn Thain72064a72016-01-03 16:05:44 +11002125 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2126 return;
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2129
2130 /*
2131 * Wait for target to go into MSGIN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 */
2133
Finn Thain1cc160e2016-01-03 16:05:32 +11002134 if (NCR5380_poll_politely(instance,
Finn Thain72064a72016-01-03 16:05:44 +11002135 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
Finn Thain9e47ace2018-09-27 11:17:11 +10002136 if ((NCR5380_read(STATUS_REG) & (SR_BSY | SR_SEL)) == 0)
2137 /* BUS FREE phase */
2138 return;
Finn Thainbbef2182018-09-27 11:17:11 +10002139 shost_printk(KERN_ERR, instance, "reselect: REQ timeout\n");
Finn Thain72064a72016-01-03 16:05:44 +11002140 do_abort(instance);
2141 return;
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Finn Thaine9db3192016-03-23 21:10:21 +11002144#ifdef CONFIG_SUN3
2145 /* acknowledge toggle to MSGIN */
2146 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Finn Thaine9db3192016-03-23 21:10:21 +11002148 /* peek at the byte without really hitting the bus */
2149 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2150#else
2151 {
2152 int len = 1;
2153 unsigned char *data = msg;
2154 unsigned char phase = PHASE_MSGIN;
2155
2156 NCR5380_transfer_pio(instance, &phase, &len, &data);
2157
2158 if (len) {
2159 do_abort(instance);
2160 return;
2161 }
Finn Thain72064a72016-01-03 16:05:44 +11002162 }
Finn Thaine9db3192016-03-23 21:10:21 +11002163#endif /* CONFIG_SUN3 */
Finn Thain72064a72016-01-03 16:05:44 +11002164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (!(msg[0] & 0x80)) {
Finn Thain72064a72016-01-03 16:05:44 +11002166 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002167 spi_print_msg(msg);
Finn Thain72064a72016-01-03 16:05:44 +11002168 printk("\n");
2169 do_abort(instance);
2170 return;
2171 }
2172 lun = msg[0] & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Finn Thain72064a72016-01-03 16:05:44 +11002174 /*
2175 * We need to add code for SCSI-II to track which devices have
2176 * I_T_L_Q nexuses established, and which have simple I_T_L
2177 * nexuses so we can chose to do additional data transfer.
2178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Finn Thain72064a72016-01-03 16:05:44 +11002180 /*
2181 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2182 * just reestablished, and remove it from the disconnected queue.
2183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Finn Thain32b26a12016-01-03 16:05:58 +11002185 tmp = NULL;
2186 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2187 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2188
2189 if (target_mask == (1 << scmd_id(cmd)) &&
2190 lun == (u8)cmd->device->lun) {
2191 list_del(&ncmd->list);
2192 tmp = cmd;
Finn Thain72064a72016-01-03 16:05:44 +11002193 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
2195 }
Finn Thain0d3d9a42016-01-03 16:05:55 +11002196
2197 if (tmp) {
2198 dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance,
2199 "reselect: removed %p from disconnected queue\n", tmp);
2200 } else {
Finn Thain155edd42018-09-27 11:17:11 +10002201 int target = ffs(target_mask) - 1;
2202
Finn Thain72064a72016-01-03 16:05:44 +11002203 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2204 target_mask, lun);
2205 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11002206 * Since we have an established nexus that we can't do anything
2207 * with, we must abort it.
Finn Thain72064a72016-01-03 16:05:44 +11002208 */
Finn Thain155edd42018-09-27 11:17:11 +10002209 if (do_abort(instance) == 0)
2210 hostdata->busy[target] &= ~(1 << lun);
Finn Thain72064a72016-01-03 16:05:44 +11002211 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
Finn Thain72064a72016-01-03 16:05:44 +11002213
Finn Thaine9db3192016-03-23 21:10:21 +11002214#ifdef CONFIG_SUN3
2215 {
2216 void *d;
2217 unsigned long count;
2218
2219 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2220 count = tmp->SCp.buffer->length;
2221 d = sg_virt(tmp->SCp.buffer);
2222 } else {
2223 count = tmp->SCp.this_residual;
2224 d = tmp->SCp.ptr;
2225 }
2226
2227 if (sun3_dma_setup_done != tmp &&
2228 sun3scsi_dma_xfer_len(count, tmp) > 0) {
2229 sun3scsi_dma_setup(instance, d, count,
2230 rq_data_dir(tmp->request));
2231 sun3_dma_setup_done = tmp;
2232 }
2233 }
2234
2235 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2236#endif /* CONFIG_SUN3 */
2237
Finn Thain72064a72016-01-03 16:05:44 +11002238 /* Accept message by clearing ACK */
2239 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2240
2241 hostdata->connected = tmp;
Finn Thainc4ec6f92016-03-23 21:10:22 +11002242 dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu\n",
2243 scmd_id(tmp), tmp->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
2245
Finn Thain8b00c3d2016-01-03 16:06:01 +11002246/**
2247 * list_find_cmd - test for presence of a command in a linked list
2248 * @haystack: list of commands
2249 * @needle: command to search for
2250 */
2251
2252static bool list_find_cmd(struct list_head *haystack,
2253 struct scsi_cmnd *needle)
2254{
2255 struct NCR5380_cmd *ncmd;
2256
2257 list_for_each_entry(ncmd, haystack, list)
2258 if (NCR5380_to_scmd(ncmd) == needle)
2259 return true;
2260 return false;
2261}
2262
2263/**
2264 * list_remove_cmd - remove a command from linked list
2265 * @haystack: list of commands
2266 * @needle: command to remove
2267 */
2268
2269static bool list_del_cmd(struct list_head *haystack,
2270 struct scsi_cmnd *needle)
2271{
2272 if (list_find_cmd(haystack, needle)) {
2273 struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle);
2274
2275 list_del(&ncmd->list);
2276 return true;
2277 }
2278 return false;
2279}
2280
2281/**
2282 * NCR5380_abort - scsi host eh_abort_handler() method
2283 * @cmd: the command to be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002285 * Try to abort a given command by removing it from queues and/or sending
2286 * the target an abort message. This may not succeed in causing a target
2287 * to abort the command. Nonetheless, the low-level driver must forget about
2288 * the command because the mid-layer reclaims it and it may be re-issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002290 * The normal path taken by a command is as follows. For EH we trace this
2291 * same path to locate and abort the command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002293 * unissued -> selecting -> [unissued -> selecting ->]... connected ->
2294 * [disconnected -> connected ->]...
2295 * [autosense -> connected ->] done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002297 * If cmd was not found at all then presumably it has already been completed,
2298 * in which case return SUCCESS to try to avoid further EH measures.
Finn Thaindc183962016-02-23 10:07:07 +11002299 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002300 * If the command has not completed yet, we must not fail to find it.
Finn Thaindc183962016-02-23 10:07:07 +11002301 * We have no option but to forget the aborted command (even if it still
2302 * lacks sense data). The mid-layer may re-issue a command that is in error
2303 * recovery (see scsi_send_eh_cmnd), but the logic and data structures in
2304 * this driver are such that a command can appear on one queue only.
Finn Thain71a00592016-02-23 10:07:06 +11002305 *
2306 * The lock protects driver data structures, but EH handlers also use it
2307 * to serialize their own execution and prevent their own re-entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 */
2309
Finn Thain710ddd02014-11-12 16:12:02 +11002310static int NCR5380_abort(struct scsi_cmnd *cmd)
2311{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 struct Scsi_Host *instance = cmd->device->host;
Finn Thaine8a60142016-01-03 16:05:54 +11002313 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002314 unsigned long flags;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002315 int result = SUCCESS;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002316
Finn Thain11d2f632016-01-03 16:05:51 +11002317 spin_lock_irqsave(&hostdata->lock, flags);
2318
Finn Thain32b26a12016-01-03 16:05:58 +11002319#if (NDEBUG & NDEBUG_ANY)
Finn Thain8b00c3d2016-01-03 16:06:01 +11002320 scmd_printk(KERN_INFO, cmd, __func__);
Finn Thain32b26a12016-01-03 16:05:58 +11002321#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002322 NCR5380_dprint(NDEBUG_ANY, instance);
2323 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Finn Thain8b00c3d2016-01-03 16:06:01 +11002325 if (list_del_cmd(&hostdata->unissued, cmd)) {
2326 dsprintk(NDEBUG_ABORT, instance,
2327 "abort: removed %p from issue queue\n", cmd);
2328 cmd->result = DID_ABORT << 16;
2329 cmd->scsi_done(cmd); /* No tag or busy flag to worry about */
Finn Thaindc183962016-02-23 10:07:07 +11002330 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002331 }
2332
Finn Thain707d62b2016-01-03 16:06:02 +11002333 if (hostdata->selecting == cmd) {
2334 dsprintk(NDEBUG_ABORT, instance,
2335 "abort: cmd %p == selecting\n", cmd);
2336 hostdata->selecting = NULL;
2337 cmd->result = DID_ABORT << 16;
2338 complete_cmd(instance, cmd);
2339 goto out;
2340 }
2341
Finn Thain8b00c3d2016-01-03 16:06:01 +11002342 if (list_del_cmd(&hostdata->disconnected, cmd)) {
2343 dsprintk(NDEBUG_ABORT, instance,
2344 "abort: removed %p from disconnected list\n", cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002345 /* Can't call NCR5380_select() and send ABORT because that
2346 * means releasing the lock. Need a bus reset.
2347 */
Finn Thaindc183962016-02-23 10:07:07 +11002348 set_host_byte(cmd, DID_ERROR);
2349 complete_cmd(instance, cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002350 result = FAILED;
2351 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002352 }
2353
2354 if (hostdata->connected == cmd) {
2355 dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd);
2356 hostdata->connected = NULL;
Finn Thaindc183962016-02-23 10:07:07 +11002357 hostdata->dma_len = 0;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002358 if (do_abort(instance)) {
2359 set_host_byte(cmd, DID_ERROR);
2360 complete_cmd(instance, cmd);
2361 result = FAILED;
2362 goto out;
2363 }
2364 set_host_byte(cmd, DID_ABORT);
Finn Thaindc183962016-02-23 10:07:07 +11002365 complete_cmd(instance, cmd);
2366 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002367 }
2368
Finn Thaindc183962016-02-23 10:07:07 +11002369 if (list_del_cmd(&hostdata->autosense, cmd)) {
Finn Thain8b00c3d2016-01-03 16:06:01 +11002370 dsprintk(NDEBUG_ABORT, instance,
Finn Thaindc183962016-02-23 10:07:07 +11002371 "abort: removed %p from sense queue\n", cmd);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002372 complete_cmd(instance, cmd);
2373 }
2374
2375out:
2376 if (result == FAILED)
2377 dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd);
Finn Thain155edd42018-09-27 11:17:11 +10002378 else {
2379 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002380 dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd);
Finn Thain155edd42018-09-27 11:17:11 +10002381 }
Finn Thain8b00c3d2016-01-03 16:06:01 +11002382
2383 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002384 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002385 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain32b26a12016-01-03 16:05:58 +11002386
Finn Thain8b00c3d2016-01-03 16:06:01 +11002387 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
2390
Finn Thain3be1b3e2016-01-03 16:05:12 +11002391/**
2392 * NCR5380_bus_reset - reset the SCSI bus
2393 * @cmd: SCSI command undergoing EH
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002395 * Returns SUCCESS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 */
2397
Finn Thain710ddd02014-11-12 16:12:02 +11002398static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002399{
2400 struct Scsi_Host *instance = cmd->device->host;
Finn Thain11d2f632016-01-03 16:05:51 +11002401 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain62717f52016-01-03 16:06:03 +11002402 int i;
Finn Thain11d2f632016-01-03 16:05:51 +11002403 unsigned long flags;
Finn Thain62717f52016-01-03 16:06:03 +11002404 struct NCR5380_cmd *ncmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Finn Thain11d2f632016-01-03 16:05:51 +11002406 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002407
2408#if (NDEBUG & NDEBUG_ANY)
Hannes Reinecke64684e02018-09-27 11:17:11 +10002409 shost_printk(KERN_INFO, instance, __func__);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002410#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002411 NCR5380_dprint(NDEBUG_ANY, instance);
2412 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002413
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002414 do_reset(instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002415
Finn Thain62717f52016-01-03 16:06:03 +11002416 /* reset NCR registers */
2417 NCR5380_write(MODE_REG, MR_BASE);
2418 NCR5380_write(TARGET_COMMAND_REG, 0);
2419 NCR5380_write(SELECT_ENABLE_REG, 0);
2420
2421 /* After the reset, there are no more connected or disconnected commands
2422 * and no busy units; so clear the low-level status here to avoid
2423 * conflicts when the mid-level code tries to wake up the affected
2424 * commands!
2425 */
2426
Hannes Reinecke64684e02018-09-27 11:17:11 +10002427 list_for_each_entry(ncmd, &hostdata->unissued, list) {
2428 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2429
Finn Thain1884c282016-02-23 10:07:04 +11002430 cmd->result = DID_RESET << 16;
2431 cmd->scsi_done(cmd);
2432 }
Hannes Reinecke64684e02018-09-27 11:17:11 +10002433 INIT_LIST_HEAD(&hostdata->unissued);
Finn Thain1884c282016-02-23 10:07:04 +11002434
2435 if (hostdata->selecting) {
2436 hostdata->selecting->result = DID_RESET << 16;
2437 complete_cmd(instance, hostdata->selecting);
2438 hostdata->selecting = NULL;
2439 }
Finn Thain62717f52016-01-03 16:06:03 +11002440
2441 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2442 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2443
2444 set_host_byte(cmd, DID_RESET);
Finn Thain216fad92016-03-23 21:10:32 +11002445 complete_cmd(instance, cmd);
Finn Thain62717f52016-01-03 16:06:03 +11002446 }
Finn Thain1884c282016-02-23 10:07:04 +11002447 INIT_LIST_HEAD(&hostdata->disconnected);
Finn Thain62717f52016-01-03 16:06:03 +11002448
2449 list_for_each_entry(ncmd, &hostdata->autosense, list) {
2450 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2451
Finn Thain62717f52016-01-03 16:06:03 +11002452 cmd->scsi_done(cmd);
2453 }
Finn Thain1884c282016-02-23 10:07:04 +11002454 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain62717f52016-01-03 16:06:03 +11002455
2456 if (hostdata->connected) {
2457 set_host_byte(hostdata->connected, DID_RESET);
2458 complete_cmd(instance, hostdata->connected);
2459 hostdata->connected = NULL;
2460 }
2461
Finn Thain62717f52016-01-03 16:06:03 +11002462 for (i = 0; i < 8; ++i)
2463 hostdata->busy[i] = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002464 hostdata->dma_len = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002465
2466 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002467 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002468 spin_unlock_irqrestore(&hostdata->lock, flags);
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 return SUCCESS;
2471}