blob: c5c15573e23f35b50a601aed56db71ff70911484 [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);
Finn Thaind4408dd2016-10-10 00:46:52 -0400203 unsigned long n = hostdata->poll_loops;
Finn Thain2f854b82016-01-03 16:05:22 +1100204 unsigned long deadline = jiffies + wait;
Finn Thain2f854b82016-01-03 16:05:22 +1100205
Finn Thain2f854b82016-01-03 16:05:22 +1100206 do {
Finn Thainb32ade12016-01-03 16:05:41 +1100207 if ((NCR5380_read(reg1) & bit1) == val1)
208 return 0;
209 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211 cpu_relax();
Finn Thain2f854b82016-01-03 16:05:22 +1100212 } while (n--);
213
214 if (irqs_disabled() || in_interrupt())
215 return -ETIMEDOUT;
216
217 /* Repeatedly sleep for 1 ms until deadline */
218 while (time_is_after_jiffies(deadline)) {
219 schedule_timeout_uninterruptible(1);
Finn Thainb32ade12016-01-03 16:05:41 +1100220 if ((NCR5380_read(reg1) & bit1) == val1)
221 return 0;
222 if ((NCR5380_read(reg2) & bit2) == val2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Finn Thain2f854b82016-01-03 16:05:22 +1100225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return -ETIMEDOUT;
227}
228
viro@ZenIV.linux.org.uk185a7a12005-09-07 23:18:24 +0100229#if NDEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static struct {
231 unsigned char mask;
232 const char *name;
Finn Thainaff0cf92016-01-03 16:06:09 +1100233} signals[] = {
234 {SR_DBP, "PARITY"},
235 {SR_RST, "RST"},
236 {SR_BSY, "BSY"},
237 {SR_REQ, "REQ"},
238 {SR_MSG, "MSG"},
239 {SR_CD, "CD"},
240 {SR_IO, "IO"},
241 {SR_SEL, "SEL"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100243},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244basrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100245 {BASR_END_DMA_TRANSFER, "END OF DMA"},
246 {BASR_DRQ, "DRQ"},
247 {BASR_PARITY_ERROR, "PARITY ERROR"},
248 {BASR_IRQ, "IRQ"},
249 {BASR_PHASE_MATCH, "PHASE MATCH"},
250 {BASR_BUSY_ERROR, "BUSY ERROR"},
Finn Thainaff0cf92016-01-03 16:06:09 +1100251 {BASR_ATN, "ATN"},
252 {BASR_ACK, "ACK"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100254},
255icrs[] = {
256 {ICR_ASSERT_RST, "ASSERT RST"},
Finn Thain12866b92016-03-23 21:10:25 +1100257 {ICR_ARBITRATION_PROGRESS, "ARB. IN PROGRESS"},
258 {ICR_ARBITRATION_LOST, "LOST ARB."},
Finn Thainaff0cf92016-01-03 16:06:09 +1100259 {ICR_ASSERT_ACK, "ASSERT ACK"},
260 {ICR_ASSERT_BSY, "ASSERT BSY"},
261 {ICR_ASSERT_SEL, "ASSERT SEL"},
262 {ICR_ASSERT_ATN, "ASSERT ATN"},
263 {ICR_ASSERT_DATA, "ASSERT DATA"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 {0, NULL}
Finn Thainaff0cf92016-01-03 16:06:09 +1100265},
266mrs[] = {
Finn Thain12866b92016-03-23 21:10:25 +1100267 {MR_BLOCK_DMA_MODE, "BLOCK DMA MODE"},
268 {MR_TARGET, "TARGET"},
269 {MR_ENABLE_PAR_CHECK, "PARITY CHECK"},
270 {MR_ENABLE_PAR_INTR, "PARITY INTR"},
271 {MR_ENABLE_EOP_INTR, "EOP INTR"},
272 {MR_MONITOR_BSY, "MONITOR BSY"},
273 {MR_DMA_MODE, "DMA MODE"},
274 {MR_ARBITRATE, "ARBITRATE"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 {0, NULL}
276};
277
278/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100279 * NCR5380_print - print scsi bus signals
280 * @instance: adapter state to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100282 * Print the SCSI bus signals for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
284
285static void NCR5380_print(struct Scsi_Host *instance)
286{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unsigned char status, data, basr, mr, icr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 data = NCR5380_read(CURRENT_SCSI_DATA_REG);
290 status = NCR5380_read(STATUS_REG);
291 mr = NCR5380_read(MODE_REG);
292 icr = NCR5380_read(INITIATOR_COMMAND_REG);
293 basr = NCR5380_read(BUS_AND_STATUS_REG);
294
Finn Thain12866b92016-03-23 21:10:25 +1100295 printk(KERN_DEBUG "SR = 0x%02x : ", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 for (i = 0; signals[i].mask; ++i)
297 if (status & signals[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100298 printk(KERN_CONT "%s, ", signals[i].name);
299 printk(KERN_CONT "\nBASR = 0x%02x : ", basr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 for (i = 0; basrs[i].mask; ++i)
301 if (basr & basrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100302 printk(KERN_CONT "%s, ", basrs[i].name);
303 printk(KERN_CONT "\nICR = 0x%02x : ", icr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 for (i = 0; icrs[i].mask; ++i)
305 if (icr & icrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100306 printk(KERN_CONT "%s, ", icrs[i].name);
307 printk(KERN_CONT "\nMR = 0x%02x : ", mr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 for (i = 0; mrs[i].mask; ++i)
309 if (mr & mrs[i].mask)
Finn Thain12866b92016-03-23 21:10:25 +1100310 printk(KERN_CONT "%s, ", mrs[i].name);
311 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Finn Thain0d2cf862016-01-03 16:06:11 +1100314static struct {
315 unsigned char value;
316 const char *name;
317} phases[] = {
318 {PHASE_DATAOUT, "DATAOUT"},
319 {PHASE_DATAIN, "DATAIN"},
320 {PHASE_CMDOUT, "CMDOUT"},
321 {PHASE_STATIN, "STATIN"},
322 {PHASE_MSGOUT, "MSGOUT"},
323 {PHASE_MSGIN, "MSGIN"},
324 {PHASE_UNKNOWN, "UNKNOWN"}
325};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Finn Thainc16df322016-01-03 16:06:08 +1100327/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100328 * NCR5380_print_phase - show SCSI phase
Finn Thain594d4ba2016-01-03 16:06:10 +1100329 * @instance: adapter to dump
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100331 * Print the current SCSI phase for debugging purposes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 */
333
334static void NCR5380_print_phase(struct Scsi_Host *instance)
335{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned char status;
337 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 status = NCR5380_read(STATUS_REG);
340 if (!(status & SR_REQ))
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100341 shost_printk(KERN_DEBUG, instance, "REQ not asserted, phase unknown.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 else {
Finn Thain0d2cf862016-01-03 16:06:11 +1100343 for (i = 0; (phases[i].value != PHASE_UNKNOWN) &&
344 (phases[i].value != (status & PHASE_MASK)); ++i)
345 ;
Finn Thain6a6ff4a2016-01-03 16:06:04 +1100346 shost_printk(KERN_DEBUG, instance, "phase %s\n", phases[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348}
349#endif
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200352static int probe_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100355 * probe_intr - helper for IRQ autoprobe
356 * @irq: interrupt number
357 * @dev_id: unused
358 * @regs: unused
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100360 * Set a flag to indicate the IRQ in question was received. This is
361 * used by the IRQ probe code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 */
Finn Thainaff0cf92016-01-03 16:06:09 +1100363
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200364static irqreturn_t probe_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 probe_irq = irq;
367 return IRQ_HANDLED;
368}
369
370/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100371 * NCR5380_probe_irq - find the IRQ of an NCR5380
372 * @instance: NCR5380 controller
373 * @possible: bitmask of ISA IRQ lines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100375 * Autoprobe for the IRQ line used by the NCR5380 by triggering an IRQ
376 * and then looking to see what interrupt actually turned up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
378
Arnd Bergmann77f18a82016-10-11 11:23:23 +0200379static int __maybe_unused NCR5380_probe_irq(struct Scsi_Host *instance,
Andrew Morton702809c2007-05-23 14:41:56 -0700380 int possible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Finn Thaine8a60142016-01-03 16:05:54 +1100382 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 unsigned long timeout;
384 int trying_irqs, i, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Finn Thain22f5f102014-11-12 16:11:56 +1100386 for (trying_irqs = 0, i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Michael Opdenacker4909cc22014-03-05 06:09:41 +0100387 if ((mask & possible) && (request_irq(i, &probe_intr, 0, "NCR-probe", NULL) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 trying_irqs |= mask;
389
Nicholas Mc Guire4e5a8002015-02-04 13:30:20 -0500390 timeout = jiffies + msecs_to_jiffies(250);
Finn Thain22f5f102014-11-12 16:11:56 +1100391 probe_irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /*
394 * A interrupt is triggered whenever BSY = false, SEL = true
Finn Thainaff0cf92016-01-03 16:06:09 +1100395 * and a bit set in the SELECT_ENABLE_REG is asserted on the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * SCSI bus.
397 *
398 * Note that the bus is only driven when the phase control signals
399 * (I/O, C/D, and MSG) match those in the TCR, so we must reset that
400 * to zero.
401 */
402
403 NCR5380_write(TARGET_COMMAND_REG, 0);
404 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
405 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
406 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL);
407
Finn Thain22f5f102014-11-12 16:11:56 +1100408 while (probe_irq == NO_IRQ && time_before(jiffies, timeout))
Nishanth Aravamudana9a30472005-11-07 01:01:20 -0800409 schedule_timeout_uninterruptible(1);
Finn Thainaff0cf92016-01-03 16:06:09 +1100410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 NCR5380_write(SELECT_ENABLE_REG, 0);
412 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
413
Finn Thain22f5f102014-11-12 16:11:56 +1100414 for (i = 1, mask = 2; i < 16; ++i, mask <<= 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (trying_irqs & mask)
416 free_irq(i, NULL);
417
418 return probe_irq;
419}
420
421/**
Finn Thain594d4ba2016-01-03 16:06:10 +1100422 * NCR58380_info - report driver and host information
423 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100425 * For use as the host template info() handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 */
427
Finn Thain8c325132014-11-12 16:11:58 +1100428static const char *NCR5380_info(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Finn Thain8c325132014-11-12 16:11:58 +1100430 struct NCR5380_hostdata *hostdata = shost_priv(instance);
431
432 return hostdata->info;
433}
434
435static void prepare_info(struct Scsi_Host *instance)
436{
437 struct NCR5380_hostdata *hostdata = shost_priv(instance);
438
439 snprintf(hostdata->info, sizeof(hostdata->info),
440 "%s, io_port 0x%lx, n_io_port %d, "
441 "base 0x%lx, irq %d, "
442 "can_queue %d, cmd_per_lun %d, "
443 "sg_tablesize %d, this_id %d, "
Finn Thainbe3f4122016-01-03 16:05:50 +1100444 "flags { %s%s%s}, "
Finn Thain8c325132014-11-12 16:11:58 +1100445 "options { %s} ",
446 instance->hostt->name, instance->io_port, instance->n_io_port,
447 instance->base, instance->irq,
448 instance->can_queue, instance->cmd_per_lun,
449 instance->sg_tablesize, instance->this_id,
Finn Thain1bb46002016-03-23 21:10:14 +1100450 hostdata->flags & FLAG_DMA_FIXUP ? "DMA_FIXUP " : "",
Finn Thain8c325132014-11-12 16:11:58 +1100451 hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "",
Finn Thain9c3f0e22016-01-03 16:05:11 +1100452 hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453#ifdef DIFFERENTIAL
Finn Thain8c325132014-11-12 16:11:58 +1100454 "DIFFERENTIAL "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#ifdef PARITY
Finn Thain8c325132014-11-12 16:11:58 +1100457 "PARITY "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458#endif
Finn Thain8c325132014-11-12 16:11:58 +1100459 "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100463 * NCR5380_init - initialise an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100464 * @instance: adapter to configure
465 * @flags: control flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100467 * Initializes *instance and corresponding 5380 chip,
468 * with flags OR'd into the initial flags value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100470 * Notes : I assume that the host, hostno, and id bits have been
Finn Thain0d2cf862016-01-03 16:06:11 +1100471 * set correctly. I don't care about the irq and other fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100473 * Returns 0 for success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
475
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800476static int NCR5380_init(struct Scsi_Host *instance, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Finn Thaine8a60142016-01-03 16:05:54 +1100478 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100479 int i;
Finn Thain2f854b82016-01-03 16:05:22 +1100480 unsigned long deadline;
Finn Thaind4408dd2016-10-10 00:46:52 -0400481 unsigned long accesses_per_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Finn Thainae5e33a2016-03-23 21:10:23 +1100483 instance->max_lun = 7;
484
Finn Thain0d2cf862016-01-03 16:06:11 +1100485 hostdata->host = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 hostdata->id_mask = 1 << instance->this_id;
Finn Thain0d2cf862016-01-03 16:06:11 +1100487 hostdata->id_higher_mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
489 if (i > hostdata->id_mask)
490 hostdata->id_higher_mask |= i;
491 for (i = 0; i < 8; ++i)
492 hostdata->busy[i] = 0;
Finn Thaine4dec682016-03-23 21:10:12 +1100493 hostdata->dma_len = 0;
494
Finn Thain11d2f632016-01-03 16:05:51 +1100495 spin_lock_init(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 hostdata->connected = NULL;
Finn Thainf27db8e2016-01-03 16:06:00 +1100497 hostdata->sensing = NULL;
498 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain32b26a12016-01-03 16:05:58 +1100499 INIT_LIST_HEAD(&hostdata->unissued);
500 INIT_LIST_HEAD(&hostdata->disconnected);
501
Finn Thain55181be2016-01-03 16:05:42 +1100502 hostdata->flags = flags;
Finn Thainaff0cf92016-01-03 16:06:09 +1100503
Finn Thain8d8601a2016-01-03 16:05:37 +1100504 INIT_WORK(&hostdata->main_task, NCR5380_main);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100505 hostdata->work_q = alloc_workqueue("ncr5380_%d",
506 WQ_UNBOUND | WQ_MEM_RECLAIM,
507 1, instance->host_no);
508 if (!hostdata->work_q)
509 return -ENOMEM;
510
Finn Thain8c325132014-11-12 16:11:58 +1100511 prepare_info(instance);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
514 NCR5380_write(MODE_REG, MR_BASE);
515 NCR5380_write(TARGET_COMMAND_REG, 0);
516 NCR5380_write(SELECT_ENABLE_REG, 0);
Finn Thain2f854b82016-01-03 16:05:22 +1100517
518 /* Calibrate register polling loop */
519 i = 0;
520 deadline = jiffies + 1;
521 do {
522 cpu_relax();
523 } while (time_is_after_jiffies(deadline));
524 deadline += msecs_to_jiffies(256);
525 do {
526 NCR5380_read(STATUS_REG);
527 ++i;
528 cpu_relax();
529 } while (time_is_after_jiffies(deadline));
Finn Thaind4408dd2016-10-10 00:46:52 -0400530 accesses_per_ms = i / 256;
531 hostdata->poll_loops = NCR5380_REG_POLL_TIME * accesses_per_ms / 2;
Finn Thain2f854b82016-01-03 16:05:22 +1100532
Finn Thainb6488f92016-01-03 16:05:08 +1100533 return 0;
534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Finn Thainb6488f92016-01-03 16:05:08 +1100536/**
537 * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
538 * @instance: adapter to check
539 *
540 * If the system crashed, it may have crashed with a connected target and
541 * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
542 * currently established nexus, which we know nothing about. Failing that
543 * do a bus reset.
544 *
545 * Note that a bus reset will cause the chip to assert IRQ.
546 *
547 * Returns 0 if successful, otherwise -ENXIO.
548 */
549
550static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
551{
Finn Thain9c3f0e22016-01-03 16:05:11 +1100552 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainb6488f92016-01-03 16:05:08 +1100553 int pass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
556 switch (pass) {
557 case 1:
558 case 3:
559 case 5:
Finn Thain636b1ec2016-01-03 16:05:10 +1100560 shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n");
561 NCR5380_poll_politely(instance,
562 STATUS_REG, SR_BSY, 0, 5 * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 break;
564 case 2:
Finn Thain636b1ec2016-01-03 16:05:10 +1100565 shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 do_abort(instance);
567 break;
568 case 4:
Finn Thain636b1ec2016-01-03 16:05:10 +1100569 shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 do_reset(instance);
Finn Thain9c3f0e22016-01-03 16:05:11 +1100571 /* Wait after a reset; the SCSI standard calls for
572 * 250ms, we wait 500ms to be on the safe side.
573 * But some Toshiba CD-ROMs need ten times that.
574 */
575 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
576 msleep(2500);
577 else
578 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 case 6:
Finn Thain636b1ec2016-01-03 16:05:10 +1100581 shost_printk(KERN_ERR, instance, "bus locked solid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return -ENXIO;
583 }
584 }
585 return 0;
586}
587
588/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100589 * NCR5380_exit - remove an NCR5380
Finn Thain594d4ba2016-01-03 16:06:10 +1100590 * @instance: adapter to remove
Finn Thain0d2cf862016-01-03 16:06:11 +1100591 *
592 * Assumes that no more work can be queued (e.g. by NCR5380_intr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594
Randy Dunlapa43cf0f2008-01-22 21:39:33 -0800595static void NCR5380_exit(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Finn Thaine8a60142016-01-03 16:05:54 +1100597 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Finn Thain8d8601a2016-01-03 16:05:37 +1100599 cancel_work_sync(&hostdata->main_task);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100600 destroy_workqueue(hostdata->work_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/**
Finn Thain677e0192016-01-03 16:05:59 +1100604 * complete_cmd - finish processing a command and return it to the SCSI ML
605 * @instance: the host instance
606 * @cmd: command to complete
607 */
608
609static void complete_cmd(struct Scsi_Host *instance,
610 struct scsi_cmnd *cmd)
611{
612 struct NCR5380_hostdata *hostdata = shost_priv(instance);
613
614 dsprintk(NDEBUG_QUEUES, instance, "complete_cmd: cmd %p\n", cmd);
615
Finn Thainf27db8e2016-01-03 16:06:00 +1100616 if (hostdata->sensing == cmd) {
617 /* Autosense processing ends here */
618 if ((cmd->result & 0xff) != SAM_STAT_GOOD) {
619 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
620 set_host_byte(cmd, DID_ERROR);
621 } else
622 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
623 hostdata->sensing = NULL;
624 }
625
Finn Thain677e0192016-01-03 16:05:59 +1100626 hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun);
627
628 cmd->scsi_done(cmd);
629}
630
631/**
Finn Thain1bb40582016-01-03 16:05:29 +1100632 * NCR5380_queue_command - queue a command
633 * @instance: the relevant SCSI adapter
634 * @cmd: SCSI command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 *
Finn Thain1bb40582016-01-03 16:05:29 +1100636 * cmd is added to the per-instance issue queue, with minor
637 * twiddling done to the host specific fields of cmd. If the
638 * main coroutine is not running, it is restarted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640
Finn Thain1bb40582016-01-03 16:05:29 +1100641static int NCR5380_queue_command(struct Scsi_Host *instance,
642 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Finn Thain1bb40582016-01-03 16:05:29 +1100644 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain32b26a12016-01-03 16:05:58 +1100645 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
Finn Thain1bb40582016-01-03 16:05:29 +1100646 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648#if (NDEBUG & NDEBUG_NO_WRITE)
649 switch (cmd->cmnd[0]) {
650 case WRITE_6:
651 case WRITE_10:
Finn Thaindbb6b352016-01-03 16:05:53 +1100652 shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 cmd->result = (DID_ERROR << 16);
Finn Thain1bb40582016-01-03 16:05:29 +1100654 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656 }
Finn Thain0d2cf862016-01-03 16:06:11 +1100657#endif /* (NDEBUG & NDEBUG_NO_WRITE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 cmd->result = 0;
660
Finn Thain52d3e562016-03-23 21:10:20 +1100661 if (!NCR5380_acquire_dma_irq(instance))
662 return SCSI_MLQUEUE_HOST_BUSY;
663
Finn Thain11d2f632016-01-03 16:05:51 +1100664 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100665
Finn Thainaff0cf92016-01-03 16:06:09 +1100666 /*
667 * Insert the cmd into the issue queue. Note that REQUEST SENSE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * commands are added to the head of the queue since any command will
Finn Thainaff0cf92016-01-03 16:06:09 +1100669 * clear the contingent allegiance condition that exists and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * sense data is only guaranteed to be valid while the condition exists.
671 */
672
Finn Thain32b26a12016-01-03 16:05:58 +1100673 if (cmd->cmnd[0] == REQUEST_SENSE)
674 list_add(&ncmd->list, &hostdata->unissued);
675 else
676 list_add_tail(&ncmd->list, &hostdata->unissued);
677
Finn Thain11d2f632016-01-03 16:05:51 +1100678 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain1bb40582016-01-03 16:05:29 +1100679
Finn Thaindbb6b352016-01-03 16:05:53 +1100680 dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n",
681 cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* Kick off command processing */
Finn Thain8d8601a2016-01-03 16:05:37 +1100684 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return 0;
686}
687
Finn Thain52d3e562016-03-23 21:10:20 +1100688static inline void maybe_release_dma_irq(struct Scsi_Host *instance)
689{
690 struct NCR5380_hostdata *hostdata = shost_priv(instance);
691
692 /* Caller does the locking needed to set & test these data atomically */
693 if (list_empty(&hostdata->disconnected) &&
694 list_empty(&hostdata->unissued) &&
695 list_empty(&hostdata->autosense) &&
696 !hostdata->connected &&
697 !hostdata->selecting)
698 NCR5380_release_dma_irq(instance);
699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/**
Finn Thainf27db8e2016-01-03 16:06:00 +1100702 * dequeue_next_cmd - dequeue a command for processing
703 * @instance: the scsi host instance
704 *
705 * Priority is given to commands on the autosense queue. These commands
706 * need autosense because of a CHECK CONDITION result.
707 *
708 * Returns a command pointer if a command is found for a target that is
709 * not already busy. Otherwise returns NULL.
710 */
711
712static struct scsi_cmnd *dequeue_next_cmd(struct Scsi_Host *instance)
713{
714 struct NCR5380_hostdata *hostdata = shost_priv(instance);
715 struct NCR5380_cmd *ncmd;
716 struct scsi_cmnd *cmd;
717
Finn Thain8d5dbec2016-02-23 10:07:09 +1100718 if (hostdata->sensing || list_empty(&hostdata->autosense)) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100719 list_for_each_entry(ncmd, &hostdata->unissued, list) {
720 cmd = NCR5380_to_scmd(ncmd);
721 dsprintk(NDEBUG_QUEUES, instance, "dequeue: cmd=%p target=%d busy=0x%02x lun=%llu\n",
722 cmd, scmd_id(cmd), hostdata->busy[scmd_id(cmd)], cmd->device->lun);
723
724 if (!(hostdata->busy[scmd_id(cmd)] & (1 << cmd->device->lun))) {
725 list_del(&ncmd->list);
726 dsprintk(NDEBUG_QUEUES, instance,
727 "dequeue: removed %p from issue queue\n", cmd);
728 return cmd;
729 }
730 }
731 } else {
732 /* Autosense processing begins here */
733 ncmd = list_first_entry(&hostdata->autosense,
734 struct NCR5380_cmd, list);
735 list_del(&ncmd->list);
736 cmd = NCR5380_to_scmd(ncmd);
737 dsprintk(NDEBUG_QUEUES, instance,
738 "dequeue: removed %p from autosense queue\n", cmd);
739 scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0);
740 hostdata->sensing = cmd;
741 return cmd;
742 }
743 return NULL;
744}
745
746static void requeue_cmd(struct Scsi_Host *instance, struct scsi_cmnd *cmd)
747{
748 struct NCR5380_hostdata *hostdata = shost_priv(instance);
749 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
750
Finn Thain8d5dbec2016-02-23 10:07:09 +1100751 if (hostdata->sensing == cmd) {
Finn Thainf27db8e2016-01-03 16:06:00 +1100752 scsi_eh_restore_cmnd(cmd, &hostdata->ses);
753 list_add(&ncmd->list, &hostdata->autosense);
754 hostdata->sensing = NULL;
755 } else
756 list_add(&ncmd->list, &hostdata->unissued);
757}
758
759/**
Finn Thain0d2cf862016-01-03 16:06:11 +1100760 * NCR5380_main - NCR state machines
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 *
Finn Thain594d4ba2016-01-03 16:06:10 +1100762 * NCR5380_main is a coroutine that runs as long as more work can
763 * be done on the NCR5380 host adapters in a system. Both
764 * NCR5380_queue_command() and NCR5380_intr() will try to start it
765 * in case it is not running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767
David Howellsc4028952006-11-22 14:57:56 +0000768static void NCR5380_main(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
David Howellsc4028952006-11-22 14:57:56 +0000770 struct NCR5380_hostdata *hostdata =
Finn Thain8d8601a2016-01-03 16:05:37 +1100771 container_of(work, struct NCR5380_hostdata, main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct Scsi_Host *instance = hostdata->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int done;
Finn Thainaff0cf92016-01-03 16:06:09 +1100774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 done = 1;
Finn Thain11d2f632016-01-03 16:05:51 +1100777
Finn Thain0a4e3612016-01-03 16:06:07 +1100778 spin_lock_irq(&hostdata->lock);
Finn Thainccf6efd2016-02-23 10:07:08 +1100779 while (!hostdata->connected && !hostdata->selecting) {
780 struct scsi_cmnd *cmd = dequeue_next_cmd(instance);
781
782 if (!cmd)
783 break;
Finn Thainf27db8e2016-01-03 16:06:00 +1100784
785 dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd);
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /*
Finn Thainf27db8e2016-01-03 16:06:00 +1100788 * Attempt to establish an I_T_L nexus here.
789 * On success, instance->hostdata->connected is set.
790 * On failure, we must add the command back to the
791 * issue queue so we can keep trying.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
Finn Thainf27db8e2016-01-03 16:06:00 +1100793 /*
794 * REQUEST SENSE commands are issued without tagged
795 * queueing, even on SCSI-II devices because the
796 * contingent allegiance condition exists for the
797 * entire unit.
798 */
Finn Thain32b26a12016-01-03 16:05:58 +1100799
Finn Thainccf6efd2016-02-23 10:07:08 +1100800 if (!NCR5380_select(instance, cmd)) {
Finn Thain707d62b2016-01-03 16:06:02 +1100801 dsprintk(NDEBUG_MAIN, instance, "main: select complete\n");
Finn Thain52d3e562016-03-23 21:10:20 +1100802 maybe_release_dma_irq(instance);
Finn Thainf27db8e2016-01-03 16:06:00 +1100803 } else {
804 dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance,
805 "main: select failed, returning %p to queue\n", cmd);
806 requeue_cmd(instance, cmd);
807 }
808 }
Finn Thaine4dec682016-03-23 21:10:12 +1100809 if (hostdata->connected && !hostdata->dma_len) {
Finn Thainb7465452016-01-03 16:06:05 +1100810 dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 NCR5380_information_transfer(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 done = 0;
Finn Thain1d3db592016-01-03 16:05:24 +1100813 }
Finn Thain0a4e3612016-01-03 16:06:07 +1100814 spin_unlock_irq(&hostdata->lock);
815 if (!done)
816 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Finn Thain8053b0e2016-03-23 21:10:19 +1100820/*
821 * NCR5380_dma_complete - finish DMA transfer
822 * @instance: the scsi host instance
823 *
824 * Called by the interrupt handler when DMA finishes or a phase
825 * mismatch occurs (which would end the DMA transfer).
826 */
827
828static void NCR5380_dma_complete(struct Scsi_Host *instance)
829{
830 struct NCR5380_hostdata *hostdata = shost_priv(instance);
831 int transferred;
832 unsigned char **data;
833 int *count;
834 int saved_data = 0, overrun = 0;
835 unsigned char p;
836
837 if (hostdata->read_overruns) {
838 p = hostdata->connected->SCp.phase;
839 if (p & SR_IO) {
840 udelay(10);
841 if ((NCR5380_read(BUS_AND_STATUS_REG) &
842 (BASR_PHASE_MATCH | BASR_ACK)) ==
843 (BASR_PHASE_MATCH | BASR_ACK)) {
844 saved_data = NCR5380_read(INPUT_DATA_REG);
845 overrun = 1;
846 dsprintk(NDEBUG_DMA, instance, "read overrun handled\n");
847 }
848 }
849 }
850
Finn Thaine9db3192016-03-23 21:10:21 +1100851#ifdef CONFIG_SUN3
852 if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) {
853 pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n",
854 instance->host_no);
855 BUG();
856 }
857
858 if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) ==
859 (BASR_PHASE_MATCH | BASR_ACK)) {
860 pr_err("scsi%d: BASR %02x\n", instance->host_no,
861 NCR5380_read(BUS_AND_STATUS_REG));
862 pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n",
863 instance->host_no);
864 BUG();
865 }
866#endif
867
Finn Thain8053b0e2016-03-23 21:10:19 +1100868 NCR5380_write(MODE_REG, MR_BASE);
869 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
870 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
871
872 transferred = hostdata->dma_len - NCR5380_dma_residual(instance);
873 hostdata->dma_len = 0;
874
875 data = (unsigned char **)&hostdata->connected->SCp.ptr;
876 count = &hostdata->connected->SCp.this_residual;
877 *data += transferred;
878 *count -= transferred;
879
880 if (hostdata->read_overruns) {
881 int cnt, toPIO;
882
883 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
884 cnt = toPIO = hostdata->read_overruns;
885 if (overrun) {
886 dsprintk(NDEBUG_DMA, instance,
887 "Got an input overrun, using saved byte\n");
888 *(*data)++ = saved_data;
889 (*count)--;
890 cnt--;
891 toPIO--;
892 }
893 if (toPIO > 0) {
894 dsprintk(NDEBUG_DMA, instance,
895 "Doing %d byte PIO to 0x%p\n", cnt, *data);
896 NCR5380_transfer_pio(instance, &p, &cnt, data);
897 *count -= toPIO - cnt;
898 }
899 }
900 }
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/**
Finn Thaincd400822016-01-03 16:05:40 +1100904 * NCR5380_intr - generic NCR5380 irq handler
905 * @irq: interrupt number
906 * @dev_id: device info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 *
Finn Thaincd400822016-01-03 16:05:40 +1100908 * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
909 * from the disconnected queue, and restarting NCR5380_main()
910 * as required.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 *
Finn Thaincd400822016-01-03 16:05:40 +1100912 * The chip can assert IRQ in any of six different conditions. The IRQ flag
913 * is then cleared by reading the Reset Parity/Interrupt Register (RPIR).
914 * Three of these six conditions are latched in the Bus and Status Register:
915 * - End of DMA (cleared by ending DMA Mode)
916 * - Parity error (cleared by reading RPIR)
917 * - Loss of BSY (cleared by reading RPIR)
918 * Two conditions have flag bits that are not latched:
919 * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode)
920 * - Bus reset (non-maskable)
921 * The remaining condition has no flag bit at all:
922 * - Selection/reselection
923 *
924 * Hence, establishing the cause(s) of any interrupt is partly guesswork.
925 * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor
926 * claimed that "the design of the [DP8490] interrupt logic ensures
927 * interrupts will not be lost (they can be on the DP5380)."
928 * The L5380/53C80 datasheet from LOGIC Devices has more details.
929 *
930 * Checking for bus reset by reading RST is futile because of interrupt
931 * latency, but a bus reset will reset chip logic. Checking for parity error
932 * is unnecessary because that interrupt is never enabled. A Loss of BSY
933 * condition will clear DMA Mode. We can tell when this occurs because the
934 * the Busy Monitor interrupt is enabled together with DMA Mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
936
Finn Thaina46865d2016-03-23 21:10:27 +1100937static irqreturn_t __maybe_unused NCR5380_intr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Jeff Garzikbaa9aac2007-12-13 16:14:14 -0800939 struct Scsi_Host *instance = dev_id;
Finn Thaincd400822016-01-03 16:05:40 +1100940 struct NCR5380_hostdata *hostdata = shost_priv(instance);
941 int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 unsigned char basr;
943 unsigned long flags;
944
Finn Thain11d2f632016-01-03 16:05:51 +1100945 spin_lock_irqsave(&hostdata->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Finn Thaincd400822016-01-03 16:05:40 +1100947 basr = NCR5380_read(BUS_AND_STATUS_REG);
948 if (basr & BASR_IRQ) {
949 unsigned char mr = NCR5380_read(MODE_REG);
950 unsigned char sr = NCR5380_read(STATUS_REG);
951
Finn Thainb7465452016-01-03 16:06:05 +1100952 dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n",
953 irq, basr, sr, mr);
Finn Thaincd400822016-01-03 16:05:40 +1100954
Finn Thain8053b0e2016-03-23 21:10:19 +1100955 if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) {
956 /* Probably End of DMA, Phase Mismatch or Loss of BSY.
957 * We ack IRQ after clearing Mode Register. Workarounds
958 * for End of DMA errata need to happen in DMA Mode.
959 */
960
961 dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n");
962
963 if (hostdata->connected) {
964 NCR5380_dma_complete(instance);
965 queue_work(hostdata->work_q, &hostdata->main_task);
966 } else {
967 NCR5380_write(MODE_REG, MR_BASE);
968 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
969 }
970 } else if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) &&
Finn Thaincd400822016-01-03 16:05:40 +1100971 (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) {
972 /* Probably reselected */
973 NCR5380_write(SELECT_ENABLE_REG, 0);
974 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
975
Finn Thainb7465452016-01-03 16:06:05 +1100976 dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n");
Finn Thaincd400822016-01-03 16:05:40 +1100977
978 if (!hostdata->connected) {
979 NCR5380_reselect(instance);
980 queue_work(hostdata->work_q, &hostdata->main_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
Finn Thaincd400822016-01-03 16:05:40 +1100982 if (!hostdata->connected)
983 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
984 } else {
985 /* Probably Bus Reset */
986 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
987
Finn Thainb7465452016-01-03 16:06:05 +1100988 dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100989#ifdef SUN3_SCSI_VME
990 dregs->csr |= CSR_DMA_ENABLE;
991#endif
Finn Thaincd400822016-01-03 16:05:40 +1100992 }
993 handled = 1;
994 } else {
995 shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n");
Finn Thaine9db3192016-03-23 21:10:21 +1100996#ifdef SUN3_SCSI_VME
997 dregs->csr |= CSR_DMA_ENABLE;
998#endif
Finn Thaincd400822016-01-03 16:05:40 +1100999 }
1000
Finn Thain11d2f632016-01-03 16:05:51 +11001001 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thaincd400822016-01-03 16:05:40 +11001002
1003 return IRQ_RETVAL(handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Finn Thainaff0cf92016-01-03 16:06:09 +11001006/*
Finn Thain710ddd02014-11-12 16:12:02 +11001007 * Function : int NCR5380_select(struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001008 * struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 *
1010 * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
Finn Thain594d4ba2016-01-03 16:06:10 +11001011 * including ARBITRATION, SELECTION, and initial message out for
1012 * IDENTIFY and queue messages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001014 * Inputs : instance - instantiation of the 5380 driver on which this
Finn Thain594d4ba2016-01-03 16:06:10 +11001015 * target lives, cmd - SCSI command to execute.
Finn Thainaff0cf92016-01-03 16:06:09 +11001016 *
Finn Thain707d62b2016-01-03 16:06:02 +11001017 * Returns cmd if selection failed but should be retried,
1018 * NULL if selection failed and should not be retried, or
1019 * NULL if selection succeeded (hostdata->connected == cmd).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001021 * Side effects :
Finn Thain594d4ba2016-01-03 16:06:10 +11001022 * If bus busy, arbitration failed, etc, NCR5380_select() will exit
1023 * with registers as they should have been on entry - ie
1024 * SELECT_ENABLE will be set appropriately, the NCR5380
1025 * will cease to drive any SCSI bus signals.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001027 * If successful : I_T_L or I_T_L_Q nexus will be established,
1028 * instance->connected will be set to cmd.
1029 * SELECT interrupt will be disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001031 * If failed (no target) : cmd->scsi_done() will be called, and the
1032 * cmd->result host byte set to DID_BAD_TARGET.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001034
Finn Thain707d62b2016-01-03 16:06:02 +11001035static struct scsi_cmnd *NCR5380_select(struct Scsi_Host *instance,
1036 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Finn Thaine8a60142016-01-03 16:05:54 +11001038 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 unsigned char tmp[3], phase;
1040 unsigned char *data;
1041 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 NCR5380_dprint(NDEBUG_ARBITRATION, instance);
Finn Thainb7465452016-01-03 16:06:05 +11001045 dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n",
1046 instance->this_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Finn Thain707d62b2016-01-03 16:06:02 +11001048 /*
1049 * Arbitration and selection phases are slow and involve dropping the
1050 * lock, so we have to watch out for EH. An exception handler may
1051 * change 'selecting' to NULL. This function will then return NULL
1052 * so that the caller will forget about 'cmd'. (During information
1053 * transfer phases, EH may change 'connected' to NULL.)
1054 */
1055 hostdata->selecting = cmd;
1056
Finn Thainaff0cf92016-01-03 16:06:09 +11001057 /*
1058 * Set the phase bits to 0, otherwise the NCR5380 won't drive the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 * data bus during SELECTION.
1060 */
1061
1062 NCR5380_write(TARGET_COMMAND_REG, 0);
1063
Finn Thainaff0cf92016-01-03 16:06:09 +11001064 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 * Start arbitration.
1066 */
1067
1068 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
1069 NCR5380_write(MODE_REG, MR_ARBITRATE);
1070
Finn Thain55500d92016-01-03 16:05:35 +11001071 /* The chip now waits for BUS FREE phase. Then after the 800 ns
1072 * Bus Free Delay, arbitration will begin.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 */
1074
Finn Thain11d2f632016-01-03 16:05:51 +11001075 spin_unlock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001076 err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0,
1077 INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS,
1078 ICR_ARBITRATION_PROGRESS, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001079 spin_lock_irq(&hostdata->lock);
Finn Thainb32ade12016-01-03 16:05:41 +11001080 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) {
1081 /* Reselection interrupt */
Finn Thain707d62b2016-01-03 16:06:02 +11001082 goto out;
Finn Thainb32ade12016-01-03 16:05:41 +11001083 }
Finn Thainccf6efd2016-02-23 10:07:08 +11001084 if (!hostdata->selecting) {
1085 /* Command was aborted */
1086 NCR5380_write(MODE_REG, MR_BASE);
1087 goto out;
1088 }
Finn Thainb32ade12016-01-03 16:05:41 +11001089 if (err < 0) {
1090 NCR5380_write(MODE_REG, MR_BASE);
1091 shost_printk(KERN_ERR, instance,
1092 "select: arbitration timeout\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001093 goto out;
Finn Thain55500d92016-01-03 16:05:35 +11001094 }
Finn Thain11d2f632016-01-03 16:05:51 +11001095 spin_unlock_irq(&hostdata->lock);
Finn Thain55500d92016-01-03 16:05:35 +11001096
1097 /* The SCSI-2 arbitration delay is 2.4 us */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 udelay(3);
1099
1100 /* Check for lost arbitration */
Finn Thain0d2cf862016-01-03 16:06:11 +11001101 if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
1102 (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
1103 (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 NCR5380_write(MODE_REG, MR_BASE);
Finn Thainb7465452016-01-03 16:06:05 +11001105 dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n");
Finn Thain11d2f632016-01-03 16:05:51 +11001106 spin_lock_irq(&hostdata->lock);
Finn Thain707d62b2016-01-03 16:06:02 +11001107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Finn Thaincf13b082016-01-03 16:05:18 +11001109
1110 /* After/during arbitration, BSY should be asserted.
1111 * IBM DPES-31080 Version S31Q works now
1112 * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman)
1113 */
1114 NCR5380_write(INITIATOR_COMMAND_REG,
1115 ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Finn Thainaff0cf92016-01-03 16:06:09 +11001117 /*
1118 * Again, bus clear + bus settle time is 1.2us, however, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * a minimum so we'll udelay ceil(1.2)
1120 */
1121
Finn Thain9c3f0e22016-01-03 16:05:11 +11001122 if (hostdata->flags & FLAG_TOSHIBA_DELAY)
1123 udelay(15);
1124 else
1125 udelay(2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Finn Thain11d2f632016-01-03 16:05:51 +11001127 spin_lock_irq(&hostdata->lock);
1128
Finn Thain72064a72016-01-03 16:05:44 +11001129 /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */
1130 if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE))
Finn Thain707d62b2016-01-03 16:06:02 +11001131 goto out;
1132
1133 if (!hostdata->selecting) {
1134 NCR5380_write(MODE_REG, MR_BASE);
1135 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1136 goto out;
1137 }
Finn Thain72064a72016-01-03 16:05:44 +11001138
Finn Thainb7465452016-01-03 16:06:05 +11001139 dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Finn Thainaff0cf92016-01-03 16:06:09 +11001141 /*
1142 * Now that we have won arbitration, start Selection process, asserting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 * the host and target ID's on the SCSI bus.
1144 */
1145
Finn Thain3d07d222016-01-03 16:06:13 +11001146 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Finn Thainaff0cf92016-01-03 16:06:09 +11001148 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * Raise ATN while SEL is true before BSY goes false from arbitration,
1150 * since this is the only way to guarantee that we'll get a MESSAGE OUT
1151 * phase immediately after selection.
1152 */
1153
Finn Thain3d07d222016-01-03 16:06:13 +11001154 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY |
1155 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 NCR5380_write(MODE_REG, MR_BASE);
1157
Finn Thainaff0cf92016-01-03 16:06:09 +11001158 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 * Reselect interrupts must be turned off prior to the dropping of BSY,
1160 * otherwise we will trigger an interrupt.
1161 */
1162 NCR5380_write(SELECT_ENABLE_REG, 0);
1163
Finn Thain11d2f632016-01-03 16:05:51 +11001164 spin_unlock_irq(&hostdata->lock);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001167 * The initiator shall then wait at least two deskew delays and release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * the BSY signal.
1169 */
Finn Thain0d2cf862016-01-03 16:06:11 +11001170 udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* Reset BSY */
Finn Thain3d07d222016-01-03 16:06:13 +11001173 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA |
1174 ICR_ASSERT_ATN | ICR_ASSERT_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Finn Thainaff0cf92016-01-03 16:06:09 +11001176 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 * Something weird happens when we cease to drive BSY - looks
Finn Thainaff0cf92016-01-03 16:06:09 +11001178 * like the board/chip is letting us do another read before the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 * appropriate propagation delay has expired, and we're confusing
1180 * a BSY signal from ourselves as the target's response to SELECTION.
1181 *
1182 * A small delay (the 'C++' frontend breaks the pipeline with an
1183 * unnecessary jump, making it work on my 386-33/Trantor T128, the
Finn Thainaff0cf92016-01-03 16:06:09 +11001184 * tighter 'C' code breaks and requires this) solves the problem -
1185 * the 1 us delay is arbitrary, and only used because this delay will
1186 * be the same on other platforms and since it works here, it should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * work there.
1188 *
1189 * wingel suggests that this could be due to failing to wait
1190 * one deskew delay.
1191 */
1192
1193 udelay(1);
1194
Finn Thainb7465452016-01-03 16:06:05 +11001195 dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Finn Thainaff0cf92016-01-03 16:06:09 +11001197 /*
1198 * The SCSI specification calls for a 250 ms timeout for the actual
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * selection.
1200 */
1201
Finn Thainae753a32016-01-03 16:05:23 +11001202 err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY,
1203 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) {
Finn Thain11d2f632016-01-03 16:05:51 +11001206 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1208 NCR5380_reselect(instance);
Finn Thaincd400822016-01-03 16:05:40 +11001209 if (!hostdata->connected)
1210 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001211 shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n");
Finn Thain707d62b2016-01-03 16:06:02 +11001212 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
Finn Thainae753a32016-01-03 16:05:23 +11001214
1215 if (err < 0) {
Finn Thain11d2f632016-01-03 16:05:51 +11001216 spin_lock_irq(&hostdata->lock);
Finn Thainae753a32016-01-03 16:05:23 +11001217 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thainae753a32016-01-03 16:05:23 +11001218 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain707d62b2016-01-03 16:06:02 +11001219 /* Can't touch cmd if it has been reclaimed by the scsi ML */
1220 if (hostdata->selecting) {
1221 cmd->result = DID_BAD_TARGET << 16;
1222 complete_cmd(instance, cmd);
1223 dsprintk(NDEBUG_SELECTION, instance, "target did not respond within 250ms\n");
1224 cmd = NULL;
1225 }
1226 goto out;
Finn Thainae753a32016-01-03 16:05:23 +11001227 }
1228
Finn Thainaff0cf92016-01-03 16:06:09 +11001229 /*
1230 * No less than two deskew delays after the initiator detects the
1231 * BSY signal is true, it shall release the SEL signal and may
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * change the DATA BUS. -wingel
1233 */
1234
1235 udelay(1);
1236
1237 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001240 * Since we followed the SCSI spec, and raised ATN while SEL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 * was true but before BSY was false during selection, the information
1242 * transfer phase should be a MESSAGE OUT phase so that we can send the
1243 * IDENTIFY message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 */
1245
1246 /* Wait for start of REQ/ACK handshake */
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11001249 spin_lock_irq(&hostdata->lock);
Finn Thain1cc160e2016-01-03 16:05:32 +11001250 if (err < 0) {
Finn Thain55500d92016-01-03 16:05:35 +11001251 shost_printk(KERN_ERR, instance, "select: REQ timeout\n");
1252 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain707d62b2016-01-03 16:06:02 +11001254 goto out;
1255 }
1256 if (!hostdata->selecting) {
1257 do_abort(instance);
1258 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Finn Thainb7465452016-01-03 16:06:05 +11001261 dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n",
1262 scmd_id(cmd));
Finn Thain22f5f102014-11-12 16:11:56 +11001263 tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 len = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 data = tmp;
1267 phase = PHASE_MSGOUT;
1268 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001269 dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /* XXX need to handle errors here */
Finn Thain11d2f632016-01-03 16:05:51 +11001271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 hostdata->connected = cmd;
Finn Thain3d07d222016-01-03 16:06:13 +11001273 hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Finn Thaine9db3192016-03-23 21:10:21 +11001275#ifdef SUN3_SCSI_VME
1276 dregs->csr |= CSR_INTR;
1277#endif
1278
Boaz Harrosh28424d32007-09-10 22:37:45 +03001279 initialize_SCp(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Finn Thain707d62b2016-01-03 16:06:02 +11001281 cmd = NULL;
1282
1283out:
1284 if (!hostdata->selecting)
1285 return NULL;
1286 hostdata->selecting = NULL;
1287 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Finn Thainaff0cf92016-01-03 16:06:09 +11001290/*
1291 * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001292 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 *
1294 * Purpose : transfers data in given phase using polled I/O
1295 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001296 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001297 * what phase is expected, *count - pointer to number of
1298 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001299 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 * Returns : -1 when different phase is entered without transferring
Finn Thain0d2cf862016-01-03 16:06:11 +11001301 * maximum number of bytes, 0 if all bytes are transferred or exit
Finn Thain594d4ba2016-01-03 16:06:10 +11001302 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001304 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 *
1306 * XXX Note : handling for bus free may be useful.
1307 */
1308
1309/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001310 * Note : this code is not as quick as it could be, however it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * IS 100% reliable, and for the actual data transfer where speed
1312 * counts, we will always do a pseudo DMA or DMA transfer.
1313 */
1314
Finn Thain0d2cf862016-01-03 16:06:11 +11001315static int NCR5380_transfer_pio(struct Scsi_Host *instance,
1316 unsigned char *phase, int *count,
1317 unsigned char **data)
1318{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 unsigned char p = *phase, tmp;
1320 int c = *count;
1321 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Finn Thainaff0cf92016-01-03 16:06:09 +11001323 /*
1324 * The NCR5380 chip will only drive the SCSI bus when the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 * phase specified in the appropriate bits of the TARGET COMMAND
1326 * REGISTER match the STATUS REGISTER
1327 */
1328
Finn Thain0d2cf862016-01-03 16:06:11 +11001329 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 do {
Finn Thainaff0cf92016-01-03 16:06:09 +11001332 /*
1333 * Wait for assertion of REQ, after which the phase bits will be
1334 * valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 */
1336
Finn Thain686f3992016-01-03 16:05:26 +11001337 if (NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Finn Thainb7465452016-01-03 16:06:05 +11001340 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342 /* Check for phase mismatch */
Finn Thain686f3992016-01-03 16:05:26 +11001343 if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) {
Finn Thainb7465452016-01-03 16:06:05 +11001344 dsprintk(NDEBUG_PIO, instance, "phase mismatch\n");
1345 NCR5380_dprint_phase(NDEBUG_PIO, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 break;
1347 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /* Do actual transfer from SCSI bus to / from memory */
1350 if (!(p & SR_IO))
1351 NCR5380_write(OUTPUT_DATA_REG, *d);
1352 else
1353 *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
1354
1355 ++d;
1356
Finn Thainaff0cf92016-01-03 16:06:09 +11001357 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * The SCSI standard suggests that in MSGOUT phase, the initiator
1359 * should drop ATN on the last byte of the message phase
1360 * after REQ has been asserted for the handshake but before
1361 * the initiator raises ACK.
1362 */
1363
1364 if (!(p & SR_IO)) {
1365 if (!((p & SR_MSG) && c > 1)) {
1366 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
1367 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001368 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1369 ICR_ASSERT_DATA | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 } else {
Finn Thain3d07d222016-01-03 16:06:13 +11001371 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1372 ICR_ASSERT_DATA | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 NCR5380_dprint(NDEBUG_PIO, instance);
Finn Thain3d07d222016-01-03 16:06:13 +11001374 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1375 ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
1377 } else {
1378 NCR5380_dprint(NDEBUG_PIO, instance);
1379 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
1380 }
1381
Finn Thaina2edc4a2016-01-03 16:05:27 +11001382 if (NCR5380_poll_politely(instance,
1383 STATUS_REG, SR_REQ, 0, 5 * HZ) < 0)
1384 break;
1385
Finn Thainb7465452016-01-03 16:06:05 +11001386 dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388/*
Finn Thainaff0cf92016-01-03 16:06:09 +11001389 * We have several special cases to consider during REQ/ACK handshaking :
1390 * 1. We were in MSGOUT phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001391 * message. ATN must be dropped as ACK is dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001393 * 2. We are in a MSGIN phase, and we are on the last byte of the
Finn Thain594d4ba2016-01-03 16:06:10 +11001394 * message. We must exit with ACK asserted, so that the calling
1395 * code may raise ATN before dropping ACK to reject the message.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 *
1397 * 3. ACK and ATN are clear and the target may proceed as normal.
1398 */
1399 if (!(p == PHASE_MSGIN && c == 1)) {
1400 if (p == PHASE_MSGOUT && c > 1)
1401 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1402 else
1403 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1404 }
1405 } while (--c);
1406
Finn Thainb7465452016-01-03 16:06:05 +11001407 dsprintk(NDEBUG_PIO, instance, "residual %d\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 *count = c;
1410 *data = d;
1411 tmp = NCR5380_read(STATUS_REG);
Finn Thaina2edc4a2016-01-03 16:05:27 +11001412 /* The phase read from the bus is valid if either REQ is (already)
1413 * asserted or if ACK hasn't been released yet. The latter applies if
1414 * we're in MSG IN, DATA IN or STATUS and all bytes have been received.
1415 */
1416 if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 *phase = tmp & PHASE_MASK;
1418 else
1419 *phase = PHASE_UNKNOWN;
1420
1421 if (!c || (*phase == p))
1422 return 0;
1423 else
1424 return -1;
1425}
1426
1427/**
Finn Thain636b1ec2016-01-03 16:05:10 +11001428 * do_reset - issue a reset command
1429 * @instance: adapter to reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001431 * Issue a reset sequence to the NCR5380 and try and get the bus
1432 * back into sane shape.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 *
Finn Thain636b1ec2016-01-03 16:05:10 +11001434 * This clears the reset interrupt flag because there may be no handler for
1435 * it. When the driver is initialized, the NCR5380_intr() handler has not yet
1436 * been installed. And when in EH we may have released the ST DMA interrupt.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
Finn Thainaff0cf92016-01-03 16:06:09 +11001438
Finn Thain54d8fe42016-01-03 16:05:06 +11001439static void do_reset(struct Scsi_Host *instance)
1440{
Finn Thain636b1ec2016-01-03 16:05:10 +11001441 unsigned long flags;
1442
1443 local_irq_save(flags);
1444 NCR5380_write(TARGET_COMMAND_REG,
1445 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST);
Finn Thain636b1ec2016-01-03 16:05:10 +11001447 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain636b1ec2016-01-03 16:05:10 +11001449 (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
1450 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Finn Thain80d3eb62016-01-03 16:05:34 +11001453/**
1454 * do_abort - abort the currently established nexus by going to
1455 * MESSAGE OUT phase and sending an ABORT message.
1456 * @instance: relevant scsi host instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 *
Finn Thain80d3eb62016-01-03 16:05:34 +11001458 * Returns 0 on success, -1 on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 */
1460
Finn Thain54d8fe42016-01-03 16:05:06 +11001461static int do_abort(struct Scsi_Host *instance)
1462{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 unsigned char *msgptr, phase, tmp;
1464 int len;
1465 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 /* Request message out phase */
1468 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
1469
Finn Thainaff0cf92016-01-03 16:06:09 +11001470 /*
1471 * Wait for the target to indicate a valid phase by asserting
1472 * REQ. Once this happens, we'll have either a MSGOUT phase
1473 * and can immediately send the ABORT message, or we'll have some
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * other phase and will have to source/sink data.
Finn Thainaff0cf92016-01-03 16:06:09 +11001475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * We really don't care what value was on the bus or what value
1477 * the target sees, so we just handshake.
1478 */
1479
Finn Thain80d3eb62016-01-03 16:05:34 +11001480 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001481 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001482 goto timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Finn Thainf35d3472016-01-03 16:05:33 +11001484 tmp = NCR5380_read(STATUS_REG) & PHASE_MASK;
Finn Thainaff0cf92016-01-03 16:06:09 +11001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1487
Finn Thainf35d3472016-01-03 16:05:33 +11001488 if (tmp != PHASE_MSGOUT) {
Finn Thain0d2cf862016-01-03 16:06:11 +11001489 NCR5380_write(INITIATOR_COMMAND_REG,
1490 ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
Finn Thain54d8fe42016-01-03 16:05:06 +11001491 rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ);
Finn Thain1cc160e2016-01-03 16:05:32 +11001492 if (rc < 0)
Finn Thain80d3eb62016-01-03 16:05:34 +11001493 goto timeout;
1494 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 tmp = ABORT;
1498 msgptr = &tmp;
1499 len = 1;
1500 phase = PHASE_MSGOUT;
Finn Thain54d8fe42016-01-03 16:05:06 +11001501 NCR5380_transfer_pio(instance, &phase, &len, &msgptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 /*
1504 * If we got here, and the command completed successfully,
1505 * we're about to go into bus free state.
1506 */
1507
1508 return len ? -1 : 0;
Finn Thain80d3eb62016-01-03 16:05:34 +11001509
1510timeout:
1511 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1512 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Finn Thainaff0cf92016-01-03 16:06:09 +11001515/*
1516 * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance,
Finn Thain594d4ba2016-01-03 16:06:10 +11001517 * unsigned char *phase, int *count, unsigned char **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 *
1519 * Purpose : transfers data in given phase using either real
Finn Thain594d4ba2016-01-03 16:06:10 +11001520 * or pseudo DMA.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001522 * Inputs : instance - instance of driver, *phase - pointer to
Finn Thain594d4ba2016-01-03 16:06:10 +11001523 * what phase is expected, *count - pointer to number of
1524 * bytes to transfer, **data - pointer to data pointer.
Finn Thainaff0cf92016-01-03 16:06:09 +11001525 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 * Returns : -1 when different phase is entered without transferring
Finn Thain594d4ba2016-01-03 16:06:10 +11001527 * maximum number of bytes, 0 if all bytes or transferred or exit
1528 * is in same phase.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 *
Finn Thain594d4ba2016-01-03 16:06:10 +11001530 * Also, *phase, *count, *data are modified in place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 */
1532
1533
Finn Thain0d2cf862016-01-03 16:06:11 +11001534static int NCR5380_transfer_dma(struct Scsi_Host *instance,
1535 unsigned char *phase, int *count,
1536 unsigned char **data)
1537{
1538 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thainf0ea73a2016-03-23 21:10:26 +11001539 int c = *count;
1540 unsigned char p = *phase;
1541 unsigned char *d = *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 unsigned char tmp;
Finn Thain8053b0e2016-03-23 21:10:19 +11001543 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
1546 *phase = tmp;
1547 return -1;
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Finn Thain8053b0e2016-03-23 21:10:19 +11001550 hostdata->connected->SCp.phase = p;
1551
1552 if (p & SR_IO) {
1553 if (hostdata->read_overruns)
1554 c -= hostdata->read_overruns;
1555 else if (hostdata->flags & FLAG_DMA_FIXUP)
1556 --c;
1557 }
1558
1559 dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n",
1560 (p & SR_IO) ? "receive" : "send", c, d);
1561
Finn Thaine9db3192016-03-23 21:10:21 +11001562#ifdef CONFIG_SUN3
1563 /* send start chain */
1564 sun3scsi_dma_start(c, *data);
1565#endif
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
Finn Thain8053b0e2016-03-23 21:10:19 +11001568 NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY |
1569 MR_ENABLE_EOP_INTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Finn Thain8053b0e2016-03-23 21:10:19 +11001571 if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) {
1572 /* On the Medusa, it is a must to initialize the DMA before
1573 * starting the NCR. This is also the cleaner way for the TT.
1574 */
1575 if (p & SR_IO)
1576 result = NCR5380_dma_recv_setup(instance, d, c);
1577 else
1578 result = NCR5380_dma_send_setup(instance, d, c);
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Finn Thainaff0cf92016-01-03 16:06:09 +11001581 /*
Finn Thain594d4ba2016-01-03 16:06:10 +11001582 * On the PAS16 at least I/O recovery delays are not needed here.
1583 * Everyone else seems to want them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 */
1585
1586 if (p & SR_IO) {
Finn Thaine9db3192016-03-23 21:10:21 +11001587 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thaine5d55d12016-03-23 21:10:16 +11001588 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
1590 } else {
Finn Thaine5d55d12016-03-23 21:10:16 +11001591 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
Finn Thaine5d55d12016-03-23 21:10:16 +11001593 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 NCR5380_write(START_DMA_SEND_REG, 0);
Finn Thaine5d55d12016-03-23 21:10:16 +11001595 NCR5380_io_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597
Finn Thaine9db3192016-03-23 21:10:21 +11001598#ifdef CONFIG_SUN3
1599#ifdef SUN3_SCSI_VME
1600 dregs->csr |= CSR_DMA_ENABLE;
1601#endif
1602 sun3_dma_active = 1;
1603#endif
1604
Finn Thain8053b0e2016-03-23 21:10:19 +11001605 if (hostdata->flags & FLAG_LATE_DMA_SETUP) {
1606 /* On the Falcon, the DMA setup must be done after the last
1607 * NCR access, else the DMA setup gets trashed!
1608 */
1609 if (p & SR_IO)
1610 result = NCR5380_dma_recv_setup(instance, d, c);
1611 else
1612 result = NCR5380_dma_send_setup(instance, d, c);
1613 }
1614
1615 /* On failure, NCR5380_dma_xxxx_setup() returns a negative int. */
1616 if (result < 0)
1617 return result;
1618
1619 /* For real DMA, result is the byte count. DMA interrupt is expected. */
1620 if (result > 0) {
1621 hostdata->dma_len = result;
1622 return 0;
1623 }
1624
1625 /* The result is zero iff pseudo DMA send/receive was completed. */
1626 hostdata->dma_len = c;
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628/*
Finn Thaine4dec682016-03-23 21:10:12 +11001629 * A note regarding the DMA errata workarounds for early NMOS silicon.
Finn Thainc16df322016-01-03 16:06:08 +11001630 *
1631 * For DMA sends, we want to wait until the last byte has been
1632 * transferred out over the bus before we turn off DMA mode. Alas, there
1633 * seems to be no terribly good way of doing this on a 5380 under all
1634 * conditions. For non-scatter-gather operations, we can wait until REQ
1635 * and ACK both go false, or until a phase mismatch occurs. Gather-sends
1636 * are nastier, since the device will be expecting more data than we
1637 * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we
1638 * could test Last Byte Sent to assure transfer (I imagine this is precisely
1639 * why this signal was added to the newer chips) but on the older 538[01]
1640 * this signal does not exist. The workaround for this lack is a watchdog;
1641 * we bail out of the wait-loop after a modest amount of wait-time if
1642 * the usual exit conditions are not met. Not a terribly clean or
1643 * correct solution :-%
1644 *
1645 * DMA receive is equally tricky due to a nasty characteristic of the NCR5380.
1646 * If the chip is in DMA receive mode, it will respond to a target's
1647 * REQ by latching the SCSI data into the INPUT DATA register and asserting
1648 * ACK, even if it has _already_ been notified by the DMA controller that
1649 * the current DMA transfer has completed! If the NCR5380 is then taken
1650 * out of DMA mode, this already-acknowledged byte is lost. This is
1651 * not a problem for "one DMA transfer per READ command", because
1652 * the situation will never arise... either all of the data is DMA'ed
1653 * properly, or the target switches to MESSAGE IN phase to signal a
1654 * disconnection (either operation bringing the DMA to a clean halt).
1655 * However, in order to handle scatter-receive, we must work around the
Finn Thaine4dec682016-03-23 21:10:12 +11001656 * problem. The chosen fix is to DMA fewer bytes, then check for the
Finn Thainc16df322016-01-03 16:06:08 +11001657 * condition before taking the NCR5380 out of DMA mode. One or two extra
1658 * bytes are transferred via PIO as necessary to fill out the original
1659 * request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 */
1661
Finn Thain8053b0e2016-03-23 21:10:19 +11001662 if (hostdata->flags & FLAG_DMA_FIXUP) {
1663 if (p & SR_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /*
Finn Thaine4dec682016-03-23 21:10:12 +11001665 * The workaround was to transfer fewer bytes than we
Finn Thainaff0cf92016-01-03 16:06:09 +11001666 * intended to with the pseudo-DMA read function, wait for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 * the chip to latch the last byte, read it, and then disable
1668 * pseudo-DMA mode.
Finn Thainaff0cf92016-01-03 16:06:09 +11001669 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
1671 * REQ is deasserted when ACK is asserted, and not reasserted
1672 * until ACK goes false. Since the NCR5380 won't lower ACK
1673 * until DACK is asserted, which won't happen unless we twiddle
Finn Thainaff0cf92016-01-03 16:06:09 +11001674 * the DMA port or we take the NCR5380 out of DMA mode, we
1675 * can guarantee that we won't handshake another extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 * byte.
1677 */
1678
Finn Thain55181be2016-01-03 16:05:42 +11001679 if (NCR5380_poll_politely(instance, BUS_AND_STATUS_REG,
1680 BASR_DRQ, BASR_DRQ, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001681 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001682 shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
Finn Thain55181be2016-01-03 16:05:42 +11001684 if (NCR5380_poll_politely(instance, STATUS_REG,
1685 SR_REQ, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001686 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001687 shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n");
1688 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001689 d[*count - 1] = NCR5380_read(INPUT_DATA_REG);
1690 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001692 * Wait for the last byte to be sent. If REQ is being asserted for
1693 * the byte we're interested, we'll ACK it and it will go false.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
Finn Thain55181be2016-01-03 16:05:42 +11001695 if (NCR5380_poll_politely2(instance,
1696 BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ,
1697 BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) {
Finn Thain438af512016-03-23 21:10:18 +11001698 result = -1;
Finn Thain55181be2016-01-03 16:05:42 +11001699 shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 }
1701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
Finn Thain8053b0e2016-03-23 21:10:19 +11001703
1704 NCR5380_dma_complete(instance);
Finn Thain438af512016-03-23 21:10:18 +11001705 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708/*
1709 * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
1710 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001711 * Purpose : run through the various SCSI phases and do as the target
Finn Thain594d4ba2016-01-03 16:06:10 +11001712 * directs us to. Operates on the currently connected command,
1713 * instance->connected.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 *
1715 * Inputs : instance, instance for which we are doing commands
1716 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001717 * Side effects : SCSI things happen, the disconnected queue will be
Finn Thain594d4ba2016-01-03 16:06:10 +11001718 * modified if a command disconnects, *instance->connected will
1719 * change.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001721 * XXX Note : we need to watch for bus free or a reset condition here
Finn Thain594d4ba2016-01-03 16:06:10 +11001722 * to recover from an unexpected bus free condition.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
1724
Finn Thain0d2cf862016-01-03 16:06:11 +11001725static void NCR5380_information_transfer(struct Scsi_Host *instance)
1726{
Finn Thaine8a60142016-01-03 16:05:54 +11001727 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 unsigned char msgout = NOP;
1729 int sink = 0;
1730 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 int transfersize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 unsigned char *data;
1733 unsigned char phase, tmp, extended_msg[10], old_phase = 0xff;
Finn Thain11d2f632016-01-03 16:05:51 +11001734 struct scsi_cmnd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Finn Thaine9db3192016-03-23 21:10:21 +11001736#ifdef SUN3_SCSI_VME
1737 dregs->csr |= CSR_INTR;
1738#endif
1739
Finn Thain11d2f632016-01-03 16:05:51 +11001740 while ((cmd = hostdata->connected)) {
Finn Thain32b26a12016-01-03 16:05:58 +11001741 struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd);
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 tmp = NCR5380_read(STATUS_REG);
1744 /* We only have a valid SCSI phase when REQ is asserted */
1745 if (tmp & SR_REQ) {
1746 phase = (tmp & PHASE_MASK);
1747 if (phase != old_phase) {
1748 old_phase = phase;
1749 NCR5380_dprint_phase(NDEBUG_INFORMATION, instance);
1750 }
Finn Thaine9db3192016-03-23 21:10:21 +11001751#ifdef CONFIG_SUN3
1752 if (phase == PHASE_CMDOUT) {
1753 void *d;
1754 unsigned long count;
1755
1756 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1757 count = cmd->SCp.buffer->length;
1758 d = sg_virt(cmd->SCp.buffer);
1759 } else {
1760 count = cmd->SCp.this_residual;
1761 d = cmd->SCp.ptr;
1762 }
1763
1764 if (sun3_dma_setup_done != cmd &&
1765 sun3scsi_dma_xfer_len(count, cmd) > 0) {
1766 sun3scsi_dma_setup(instance, d, count,
1767 rq_data_dir(cmd->request));
1768 sun3_dma_setup_done = cmd;
1769 }
1770#ifdef SUN3_SCSI_VME
1771 dregs->csr |= CSR_INTR;
1772#endif
1773 }
1774#endif /* CONFIG_SUN3 */
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (sink && (phase != PHASE_MSGOUT)) {
1777 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
1778
Finn Thain3d07d222016-01-03 16:06:13 +11001779 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN |
1780 ICR_ASSERT_ACK);
Finn Thain0d2cf862016-01-03 16:06:11 +11001781 while (NCR5380_read(STATUS_REG) & SR_REQ)
1782 ;
Finn Thain3d07d222016-01-03 16:06:13 +11001783 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
1784 ICR_ASSERT_ATN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 sink = 0;
1786 continue;
1787 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 switch (phase) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 case PHASE_DATAOUT:
1791#if (NDEBUG & NDEBUG_NO_DATAOUT)
Finn Thain6a6ff4a2016-01-03 16:06:04 +11001792 shost_printk(KERN_DEBUG, instance, "NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 sink = 1;
1794 do_abort(instance);
1795 cmd->result = DID_ERROR << 16;
Finn Thain677e0192016-01-03 16:05:59 +11001796 complete_cmd(instance, cmd);
Finn Thaindc183962016-02-23 10:07:07 +11001797 hostdata->connected = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return;
1799#endif
Finn Thainbf1a0c62016-01-03 16:05:47 +11001800 case PHASE_DATAIN:
Finn Thainaff0cf92016-01-03 16:06:09 +11001801 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 * If there is no room left in the current buffer in the
1803 * scatter-gather list, move onto the next one.
1804 */
1805
1806 if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
1807 ++cmd->SCp.buffer;
1808 --cmd->SCp.buffers_residual;
1809 cmd->SCp.this_residual = cmd->SCp.buffer->length;
Jens Axboe45711f12007-10-22 21:19:53 +02001810 cmd->SCp.ptr = sg_virt(cmd->SCp.buffer);
Finn Thainb7465452016-01-03 16:06:05 +11001811 dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n",
1812 cmd->SCp.this_residual,
1813 cmd->SCp.buffers_residual);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Finn Thain0d2cf862016-01-03 16:06:11 +11001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 /*
Finn Thainaff0cf92016-01-03 16:06:09 +11001817 * The preferred transfer method is going to be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 * PSEUDO-DMA for systems that are strictly PIO,
1819 * since we can let the hardware do the handshaking.
1820 *
1821 * For this to work, we need to know the transfersize
1822 * ahead of time, since the pseudo-DMA code will sit
1823 * in an unconditional loop.
1824 */
1825
Finn Thainff3d4572016-01-03 16:05:25 +11001826 transfersize = 0;
Finn Thain7e9ec8d2016-03-23 21:10:11 +11001827 if (!cmd->device->borken)
Finn Thainff3d4572016-01-03 16:05:25 +11001828 transfersize = NCR5380_dma_xfer_len(instance, cmd, phase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Finn Thain438af512016-03-23 21:10:18 +11001830 if (transfersize > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 len = transfersize;
Finn Thain0d2cf862016-01-03 16:06:11 +11001832 if (NCR5380_transfer_dma(instance, &phase,
1833 &len, (unsigned char **)&cmd->SCp.ptr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11001835 * If the watchdog timer fires, all future
1836 * accesses to this device will use the
1837 * polled-IO.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 */
Jeff Garzik017560f2005-10-24 18:04:36 -04001839 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11001840 "switching to slow handshake\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 cmd->device->borken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 sink = 1;
1843 do_abort(instance);
1844 cmd->result = DID_ERROR << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* XXX - need to source or sink data here, as appropriate */
Finn Thain8053b0e2016-03-23 21:10:19 +11001846 }
Finn Thainf825e402016-03-23 21:10:15 +11001847 } else {
Finn Thain08348b12016-08-31 14:44:56 +10001848 /* Transfer a small chunk so that the
1849 * irq mode lock is not held too long.
Finn Thain16788472016-02-23 10:07:05 +11001850 */
Finn Thain08348b12016-08-31 14:44:56 +10001851 transfersize = min(cmd->SCp.this_residual,
1852 NCR5380_PIO_CHUNK_SIZE);
Finn Thain16788472016-02-23 10:07:05 +11001853 len = transfersize;
1854 NCR5380_transfer_pio(instance, &phase, &len,
Finn Thain3d07d222016-01-03 16:06:13 +11001855 (unsigned char **)&cmd->SCp.ptr);
Finn Thain16788472016-02-23 10:07:05 +11001856 cmd->SCp.this_residual -= transfersize - len;
Finn Thain11d2f632016-01-03 16:05:51 +11001857 }
Finn Thaine9db3192016-03-23 21:10:21 +11001858#ifdef CONFIG_SUN3
1859 if (sun3_dma_setup_done == cmd)
1860 sun3_dma_setup_done = NULL;
1861#endif
Finn Thain16788472016-02-23 10:07:05 +11001862 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 case PHASE_MSGIN:
1864 len = 1;
1865 data = &tmp;
1866 NCR5380_transfer_pio(instance, &phase, &len, &data);
1867 cmd->SCp.Message = tmp;
1868
1869 switch (tmp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 case ABORT:
1871 case COMMAND_COMPLETE:
1872 /* Accept message by clearing ACK */
1873 sink = 1;
1874 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001875 dsprintk(NDEBUG_QUEUES, instance,
1876 "COMMAND COMPLETE %p target %d lun %llu\n",
1877 cmd, scmd_id(cmd), cmd->device->lun);
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 hostdata->connected = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Finn Thainf27db8e2016-01-03 16:06:00 +11001881 cmd->result &= ~0xffff;
1882 cmd->result |= cmd->SCp.Status;
1883 cmd->result |= cmd->SCp.Message << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Finn Thainf27db8e2016-01-03 16:06:00 +11001885 if (cmd->cmnd[0] == REQUEST_SENSE)
Finn Thain677e0192016-01-03 16:05:59 +11001886 complete_cmd(instance, cmd);
Finn Thainf27db8e2016-01-03 16:06:00 +11001887 else {
1888 if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION ||
1889 cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) {
1890 dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n",
1891 cmd);
1892 list_add_tail(&ncmd->list,
1893 &hostdata->autosense);
1894 } else
1895 complete_cmd(instance, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897
Finn Thainaff0cf92016-01-03 16:06:09 +11001898 /*
1899 * Restore phase bits to 0 so an interrupted selection,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 * arbitration can resume.
1901 */
1902 NCR5380_write(TARGET_COMMAND_REG, 0);
Finn Thain72064a72016-01-03 16:05:44 +11001903
1904 /* Enable reselect interrupts */
1905 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thain52d3e562016-03-23 21:10:20 +11001906
1907 maybe_release_dma_irq(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return;
1909 case MESSAGE_REJECT:
1910 /* Accept message by clearing ACK */
1911 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1912 switch (hostdata->last_message) {
1913 case HEAD_OF_QUEUE_TAG:
1914 case ORDERED_QUEUE_TAG:
1915 case SIMPLE_QUEUE_TAG:
1916 cmd->device->simple_tags = 0;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001917 hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 break;
1919 default:
1920 break;
1921 }
Finn Thain340b9612016-01-03 16:05:31 +11001922 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11001923 case DISCONNECT:
1924 /* Accept message by clearing ACK */
1925 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1926 hostdata->connected = NULL;
1927 list_add(&ncmd->list, &hostdata->disconnected);
1928 dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES,
1929 instance, "connected command %p for target %d lun %llu moved to disconnected queue\n",
1930 cmd, scmd_id(cmd), cmd->device->lun);
Finn Thain0d3d9a42016-01-03 16:05:55 +11001931
Finn Thain0d2cf862016-01-03 16:06:11 +11001932 /*
1933 * Restore phase bits to 0 so an interrupted selection,
1934 * arbitration can resume.
1935 */
1936 NCR5380_write(TARGET_COMMAND_REG, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Finn Thain0d2cf862016-01-03 16:06:11 +11001938 /* Enable reselect interrupts */
1939 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
Finn Thaine9db3192016-03-23 21:10:21 +11001940#ifdef SUN3_SCSI_VME
1941 dregs->csr |= CSR_DMA_ENABLE;
1942#endif
Finn Thain0d2cf862016-01-03 16:06:11 +11001943 return;
Finn Thainaff0cf92016-01-03 16:06:09 +11001944 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
Finn Thainaff0cf92016-01-03 16:06:09 +11001946 * operation, in violation of the SCSI spec so we can safely
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 * ignore SAVE/RESTORE pointers calls.
1948 *
Finn Thainaff0cf92016-01-03 16:06:09 +11001949 * Unfortunately, some disks violate the SCSI spec and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 * don't issue the required SAVE_POINTERS message before
Finn Thainaff0cf92016-01-03 16:06:09 +11001951 * disconnecting, and we have to break spec to remain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 * compatible.
1953 */
1954 case SAVE_POINTERS:
1955 case RESTORE_POINTERS:
1956 /* Accept message by clearing ACK */
1957 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1958 break;
1959 case EXTENDED_MESSAGE:
Finn Thainc16df322016-01-03 16:06:08 +11001960 /*
1961 * Start the message buffer with the EXTENDED_MESSAGE
1962 * byte, since spi_print_msg() wants the whole thing.
1963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 extended_msg[0] = EXTENDED_MESSAGE;
1965 /* Accept first byte by clearing ACK */
1966 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
Finn Thain11d2f632016-01-03 16:05:51 +11001967
1968 spin_unlock_irq(&hostdata->lock);
1969
Finn Thainb7465452016-01-03 16:06:05 +11001970 dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 len = 2;
1973 data = extended_msg + 1;
1974 phase = PHASE_MSGIN;
1975 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001976 dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n",
1977 (int)extended_msg[1],
1978 (int)extended_msg[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Finn Thaine0783ed2016-01-03 16:05:45 +11001980 if (!len && extended_msg[1] > 0 &&
1981 extended_msg[1] <= sizeof(extended_msg) - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 /* Accept third byte by clearing ACK */
1983 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
1984 len = extended_msg[1] - 1;
1985 data = extended_msg + 3;
1986 phase = PHASE_MSGIN;
1987
1988 NCR5380_transfer_pio(instance, &phase, &len, &data);
Finn Thainb7465452016-01-03 16:06:05 +11001989 dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n",
1990 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 switch (extended_msg[2]) {
1993 case EXTENDED_SDTR:
1994 case EXTENDED_WDTR:
1995 case EXTENDED_MODIFY_DATA_POINTER:
1996 case EXTENDED_EXTENDED_IDENTIFY:
1997 tmp = 0;
1998 }
1999 } else if (len) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002000 shost_printk(KERN_ERR, instance, "error receiving extended message\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 tmp = 0;
2002 } else {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002003 shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n",
2004 extended_msg[2], extended_msg[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 tmp = 0;
2006 }
Finn Thain11d2f632016-01-03 16:05:51 +11002007
2008 spin_lock_irq(&hostdata->lock);
2009 if (!hostdata->connected)
2010 return;
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* Fall through to reject message */
2013
Finn Thainaff0cf92016-01-03 16:06:09 +11002014 /*
2015 * If we get something weird that we aren't expecting,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 * reject it.
2017 */
2018 default:
2019 if (!tmp) {
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002020 shost_printk(KERN_ERR, instance, "rejecting message ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002021 spi_print_msg(extended_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 printk("\n");
2023 } else if (tmp != EXTENDED_MESSAGE)
Jeff Garzik017560f2005-10-24 18:04:36 -04002024 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002025 "rejecting unknown message %02x\n",
2026 tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 else
Jeff Garzik017560f2005-10-24 18:04:36 -04002028 scmd_printk(KERN_INFO, cmd,
Finn Thain0d2cf862016-01-03 16:06:11 +11002029 "rejecting unknown extended message code %02x, length %d\n",
2030 extended_msg[1], extended_msg[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 msgout = MESSAGE_REJECT;
2033 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
2034 break;
Finn Thain0d2cf862016-01-03 16:06:11 +11002035 } /* switch (tmp) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 break;
2037 case PHASE_MSGOUT:
2038 len = 1;
2039 data = &msgout;
2040 hostdata->last_message = msgout;
2041 NCR5380_transfer_pio(instance, &phase, &len, &data);
2042 if (msgout == ABORT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 hostdata->connected = NULL;
2044 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 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
2048 return;
2049 }
2050 msgout = NOP;
2051 break;
2052 case PHASE_CMDOUT:
2053 len = cmd->cmd_len;
2054 data = cmd->cmnd;
Finn Thainaff0cf92016-01-03 16:06:09 +11002055 /*
2056 * XXX for performance reasons, on machines with a
2057 * PSEUDO-DMA architecture we should probably
2058 * use the dma transfer function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 */
2060 NCR5380_transfer_pio(instance, &phase, &len, &data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 break;
2062 case PHASE_STATIN:
2063 len = 1;
2064 data = &tmp;
2065 NCR5380_transfer_pio(instance, &phase, &len, &data);
2066 cmd->SCp.Status = tmp;
2067 break;
2068 default:
Finn Thain6a6ff4a2016-01-03 16:06:04 +11002069 shost_printk(KERN_ERR, instance, "unknown phase\n");
Finn Thain4dde8f72014-03-18 11:42:17 +11002070 NCR5380_dprint(NDEBUG_ANY, instance);
Finn Thain0d2cf862016-01-03 16:06:11 +11002071 } /* switch(phase) */
Finn Thain686f3992016-01-03 16:05:26 +11002072 } else {
Finn Thain11d2f632016-01-03 16:05:51 +11002073 spin_unlock_irq(&hostdata->lock);
Finn Thain686f3992016-01-03 16:05:26 +11002074 NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ);
Finn Thain11d2f632016-01-03 16:05:51 +11002075 spin_lock_irq(&hostdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
Finn Thain11d2f632016-01-03 16:05:51 +11002077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080/*
2081 * Function : void NCR5380_reselect (struct Scsi_Host *instance)
2082 *
Finn Thainaff0cf92016-01-03 16:06:09 +11002083 * Purpose : does reselection, initializing the instance->connected
Finn Thain594d4ba2016-01-03 16:06:10 +11002084 * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q
2085 * nexus has been reestablished,
Finn Thainaff0cf92016-01-03 16:06:09 +11002086 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 * Inputs : instance - this instance of the NCR5380.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 */
2089
Finn Thain0d2cf862016-01-03 16:06:11 +11002090static void NCR5380_reselect(struct Scsi_Host *instance)
2091{
Finn Thaine8a60142016-01-03 16:05:54 +11002092 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 unsigned char target_mask;
Finn Thaine9db3192016-03-23 21:10:21 +11002094 unsigned char lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 unsigned char msg[3];
Finn Thain32b26a12016-01-03 16:05:58 +11002096 struct NCR5380_cmd *ncmd;
2097 struct scsi_cmnd *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 /*
2100 * Disable arbitration, etc. since the host adapter obviously
2101 * lost, and tell an interrupted NCR5380_select() to restart.
2102 */
2103
2104 NCR5380_write(MODE_REG, MR_BASE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
2106 target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
Finn Thainb7465452016-01-03 16:06:05 +11002107
2108 dsprintk(NDEBUG_RESELECTION, instance, "reselect\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Finn Thainaff0cf92016-01-03 16:06:09 +11002110 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 * At this point, we have detected that our SCSI ID is on the bus,
2112 * SEL is true and BSY was false for at least one bus settle delay
2113 * (400 ns).
2114 *
2115 * We must assert BSY ourselves, until the target drops the SEL
2116 * signal.
2117 */
2118
2119 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
Finn Thain72064a72016-01-03 16:05:44 +11002120 if (NCR5380_poll_politely(instance,
2121 STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) {
2122 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2123 return;
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2126
2127 /*
2128 * Wait for target to go into MSGIN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 */
2130
Finn Thain1cc160e2016-01-03 16:05:32 +11002131 if (NCR5380_poll_politely(instance,
Finn Thain72064a72016-01-03 16:05:44 +11002132 STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) {
2133 do_abort(instance);
2134 return;
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Finn Thaine9db3192016-03-23 21:10:21 +11002137#ifdef CONFIG_SUN3
2138 /* acknowledge toggle to MSGIN */
2139 NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Finn Thaine9db3192016-03-23 21:10:21 +11002141 /* peek at the byte without really hitting the bus */
2142 msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG);
2143#else
2144 {
2145 int len = 1;
2146 unsigned char *data = msg;
2147 unsigned char phase = PHASE_MSGIN;
2148
2149 NCR5380_transfer_pio(instance, &phase, &len, &data);
2150
2151 if (len) {
2152 do_abort(instance);
2153 return;
2154 }
Finn Thain72064a72016-01-03 16:05:44 +11002155 }
Finn Thaine9db3192016-03-23 21:10:21 +11002156#endif /* CONFIG_SUN3 */
Finn Thain72064a72016-01-03 16:05:44 +11002157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 if (!(msg[0] & 0x80)) {
Finn Thain72064a72016-01-03 16:05:44 +11002159 shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got ");
Matthew Wilcox1abfd372005-12-15 16:22:01 -05002160 spi_print_msg(msg);
Finn Thain72064a72016-01-03 16:05:44 +11002161 printk("\n");
2162 do_abort(instance);
2163 return;
2164 }
2165 lun = msg[0] & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Finn Thain72064a72016-01-03 16:05:44 +11002167 /*
2168 * We need to add code for SCSI-II to track which devices have
2169 * I_T_L_Q nexuses established, and which have simple I_T_L
2170 * nexuses so we can chose to do additional data transfer.
2171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Finn Thain72064a72016-01-03 16:05:44 +11002173 /*
2174 * Find the command corresponding to the I_T_L or I_T_L_Q nexus we
2175 * just reestablished, and remove it from the disconnected queue.
2176 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Finn Thain32b26a12016-01-03 16:05:58 +11002178 tmp = NULL;
2179 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2180 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2181
2182 if (target_mask == (1 << scmd_id(cmd)) &&
2183 lun == (u8)cmd->device->lun) {
2184 list_del(&ncmd->list);
2185 tmp = cmd;
Finn Thain72064a72016-01-03 16:05:44 +11002186 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188 }
Finn Thain0d3d9a42016-01-03 16:05:55 +11002189
2190 if (tmp) {
2191 dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance,
2192 "reselect: removed %p from disconnected queue\n", tmp);
2193 } else {
Finn Thain72064a72016-01-03 16:05:44 +11002194 shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n",
2195 target_mask, lun);
2196 /*
Finn Thain0d2cf862016-01-03 16:06:11 +11002197 * Since we have an established nexus that we can't do anything
2198 * with, we must abort it.
Finn Thain72064a72016-01-03 16:05:44 +11002199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 do_abort(instance);
Finn Thain72064a72016-01-03 16:05:44 +11002201 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
Finn Thain72064a72016-01-03 16:05:44 +11002203
Finn Thaine9db3192016-03-23 21:10:21 +11002204#ifdef CONFIG_SUN3
2205 {
2206 void *d;
2207 unsigned long count;
2208
2209 if (!tmp->SCp.this_residual && tmp->SCp.buffers_residual) {
2210 count = tmp->SCp.buffer->length;
2211 d = sg_virt(tmp->SCp.buffer);
2212 } else {
2213 count = tmp->SCp.this_residual;
2214 d = tmp->SCp.ptr;
2215 }
2216
2217 if (sun3_dma_setup_done != tmp &&
2218 sun3scsi_dma_xfer_len(count, tmp) > 0) {
2219 sun3scsi_dma_setup(instance, d, count,
2220 rq_data_dir(tmp->request));
2221 sun3_dma_setup_done = tmp;
2222 }
2223 }
2224
2225 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
2226#endif /* CONFIG_SUN3 */
2227
Finn Thain72064a72016-01-03 16:05:44 +11002228 /* Accept message by clearing ACK */
2229 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
2230
2231 hostdata->connected = tmp;
Finn Thainc4ec6f92016-03-23 21:10:22 +11002232 dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu\n",
2233 scmd_id(tmp), tmp->device->lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234}
2235
Finn Thain8b00c3d2016-01-03 16:06:01 +11002236/**
2237 * list_find_cmd - test for presence of a command in a linked list
2238 * @haystack: list of commands
2239 * @needle: command to search for
2240 */
2241
2242static bool list_find_cmd(struct list_head *haystack,
2243 struct scsi_cmnd *needle)
2244{
2245 struct NCR5380_cmd *ncmd;
2246
2247 list_for_each_entry(ncmd, haystack, list)
2248 if (NCR5380_to_scmd(ncmd) == needle)
2249 return true;
2250 return false;
2251}
2252
2253/**
2254 * list_remove_cmd - remove a command from linked list
2255 * @haystack: list of commands
2256 * @needle: command to remove
2257 */
2258
2259static bool list_del_cmd(struct list_head *haystack,
2260 struct scsi_cmnd *needle)
2261{
2262 if (list_find_cmd(haystack, needle)) {
2263 struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle);
2264
2265 list_del(&ncmd->list);
2266 return true;
2267 }
2268 return false;
2269}
2270
2271/**
2272 * NCR5380_abort - scsi host eh_abort_handler() method
2273 * @cmd: the command to be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002275 * Try to abort a given command by removing it from queues and/or sending
2276 * the target an abort message. This may not succeed in causing a target
2277 * to abort the command. Nonetheless, the low-level driver must forget about
2278 * the command because the mid-layer reclaims it and it may be re-issued.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002280 * The normal path taken by a command is as follows. For EH we trace this
2281 * same path to locate and abort the command.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002283 * unissued -> selecting -> [unissued -> selecting ->]... connected ->
2284 * [disconnected -> connected ->]...
2285 * [autosense -> connected ->] done
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002287 * If cmd was not found at all then presumably it has already been completed,
2288 * in which case return SUCCESS to try to avoid further EH measures.
Finn Thaindc183962016-02-23 10:07:07 +11002289 *
Finn Thain8b00c3d2016-01-03 16:06:01 +11002290 * If the command has not completed yet, we must not fail to find it.
Finn Thaindc183962016-02-23 10:07:07 +11002291 * We have no option but to forget the aborted command (even if it still
2292 * lacks sense data). The mid-layer may re-issue a command that is in error
2293 * recovery (see scsi_send_eh_cmnd), but the logic and data structures in
2294 * this driver are such that a command can appear on one queue only.
Finn Thain71a00592016-02-23 10:07:06 +11002295 *
2296 * The lock protects driver data structures, but EH handlers also use it
2297 * to serialize their own execution and prevent their own re-entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 */
2299
Finn Thain710ddd02014-11-12 16:12:02 +11002300static int NCR5380_abort(struct scsi_cmnd *cmd)
2301{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 struct Scsi_Host *instance = cmd->device->host;
Finn Thaine8a60142016-01-03 16:05:54 +11002303 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002304 unsigned long flags;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002305 int result = SUCCESS;
Hannes Reinecke1fa6b5f2014-10-24 14:26:58 +02002306
Finn Thain11d2f632016-01-03 16:05:51 +11002307 spin_lock_irqsave(&hostdata->lock, flags);
2308
Finn Thain32b26a12016-01-03 16:05:58 +11002309#if (NDEBUG & NDEBUG_ANY)
Finn Thain8b00c3d2016-01-03 16:06:01 +11002310 scmd_printk(KERN_INFO, cmd, __func__);
Finn Thain32b26a12016-01-03 16:05:58 +11002311#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002312 NCR5380_dprint(NDEBUG_ANY, instance);
2313 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Finn Thain8b00c3d2016-01-03 16:06:01 +11002315 if (list_del_cmd(&hostdata->unissued, cmd)) {
2316 dsprintk(NDEBUG_ABORT, instance,
2317 "abort: removed %p from issue queue\n", cmd);
2318 cmd->result = DID_ABORT << 16;
2319 cmd->scsi_done(cmd); /* No tag or busy flag to worry about */
Finn Thaindc183962016-02-23 10:07:07 +11002320 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002321 }
2322
Finn Thain707d62b2016-01-03 16:06:02 +11002323 if (hostdata->selecting == cmd) {
2324 dsprintk(NDEBUG_ABORT, instance,
2325 "abort: cmd %p == selecting\n", cmd);
2326 hostdata->selecting = NULL;
2327 cmd->result = DID_ABORT << 16;
2328 complete_cmd(instance, cmd);
2329 goto out;
2330 }
2331
Finn Thain8b00c3d2016-01-03 16:06:01 +11002332 if (list_del_cmd(&hostdata->disconnected, cmd)) {
2333 dsprintk(NDEBUG_ABORT, instance,
2334 "abort: removed %p from disconnected list\n", cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002335 /* Can't call NCR5380_select() and send ABORT because that
2336 * means releasing the lock. Need a bus reset.
2337 */
Finn Thaindc183962016-02-23 10:07:07 +11002338 set_host_byte(cmd, DID_ERROR);
2339 complete_cmd(instance, cmd);
Finn Thain71a00592016-02-23 10:07:06 +11002340 result = FAILED;
2341 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002342 }
2343
2344 if (hostdata->connected == cmd) {
2345 dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd);
2346 hostdata->connected = NULL;
Finn Thaindc183962016-02-23 10:07:07 +11002347 hostdata->dma_len = 0;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002348 if (do_abort(instance)) {
2349 set_host_byte(cmd, DID_ERROR);
2350 complete_cmd(instance, cmd);
2351 result = FAILED;
2352 goto out;
2353 }
2354 set_host_byte(cmd, DID_ABORT);
Finn Thaindc183962016-02-23 10:07:07 +11002355 complete_cmd(instance, cmd);
2356 goto out;
Finn Thain8b00c3d2016-01-03 16:06:01 +11002357 }
2358
Finn Thaindc183962016-02-23 10:07:07 +11002359 if (list_del_cmd(&hostdata->autosense, cmd)) {
Finn Thain8b00c3d2016-01-03 16:06:01 +11002360 dsprintk(NDEBUG_ABORT, instance,
Finn Thaindc183962016-02-23 10:07:07 +11002361 "abort: removed %p from sense queue\n", cmd);
2362 set_host_byte(cmd, DID_ERROR);
Finn Thain8b00c3d2016-01-03 16:06:01 +11002363 complete_cmd(instance, cmd);
2364 }
2365
2366out:
2367 if (result == FAILED)
2368 dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd);
2369 else
2370 dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd);
2371
2372 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002373 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002374 spin_unlock_irqrestore(&hostdata->lock, flags);
Finn Thain32b26a12016-01-03 16:05:58 +11002375
Finn Thain8b00c3d2016-01-03 16:06:01 +11002376 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
2379
Finn Thain3be1b3e2016-01-03 16:05:12 +11002380/**
2381 * NCR5380_bus_reset - reset the SCSI bus
2382 * @cmd: SCSI command undergoing EH
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 *
Finn Thain3be1b3e2016-01-03 16:05:12 +11002384 * Returns SUCCESS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 */
2386
Finn Thain710ddd02014-11-12 16:12:02 +11002387static int NCR5380_bus_reset(struct scsi_cmnd *cmd)
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002388{
2389 struct Scsi_Host *instance = cmd->device->host;
Finn Thain11d2f632016-01-03 16:05:51 +11002390 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain62717f52016-01-03 16:06:03 +11002391 int i;
Finn Thain11d2f632016-01-03 16:05:51 +11002392 unsigned long flags;
Finn Thain62717f52016-01-03 16:06:03 +11002393 struct NCR5380_cmd *ncmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Finn Thain11d2f632016-01-03 16:05:51 +11002395 spin_lock_irqsave(&hostdata->lock, flags);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002396
2397#if (NDEBUG & NDEBUG_ANY)
Finn Thain62717f52016-01-03 16:06:03 +11002398 scmd_printk(KERN_INFO, cmd, __func__);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002399#endif
Finn Thaine5c3fdd2016-01-03 16:05:52 +11002400 NCR5380_dprint(NDEBUG_ANY, instance);
2401 NCR5380_dprint_phase(NDEBUG_ANY, instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002402
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002403 do_reset(instance);
Finn Thain3be1b3e2016-01-03 16:05:12 +11002404
Finn Thain62717f52016-01-03 16:06:03 +11002405 /* reset NCR registers */
2406 NCR5380_write(MODE_REG, MR_BASE);
2407 NCR5380_write(TARGET_COMMAND_REG, 0);
2408 NCR5380_write(SELECT_ENABLE_REG, 0);
2409
2410 /* After the reset, there are no more connected or disconnected commands
2411 * and no busy units; so clear the low-level status here to avoid
2412 * conflicts when the mid-level code tries to wake up the affected
2413 * commands!
2414 */
2415
Finn Thain1884c282016-02-23 10:07:04 +11002416 if (list_del_cmd(&hostdata->unissued, cmd)) {
2417 cmd->result = DID_RESET << 16;
2418 cmd->scsi_done(cmd);
2419 }
2420
2421 if (hostdata->selecting) {
2422 hostdata->selecting->result = DID_RESET << 16;
2423 complete_cmd(instance, hostdata->selecting);
2424 hostdata->selecting = NULL;
2425 }
Finn Thain62717f52016-01-03 16:06:03 +11002426
2427 list_for_each_entry(ncmd, &hostdata->disconnected, list) {
2428 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2429
2430 set_host_byte(cmd, DID_RESET);
Finn Thain216fad92016-03-23 21:10:32 +11002431 complete_cmd(instance, cmd);
Finn Thain62717f52016-01-03 16:06:03 +11002432 }
Finn Thain1884c282016-02-23 10:07:04 +11002433 INIT_LIST_HEAD(&hostdata->disconnected);
Finn Thain62717f52016-01-03 16:06:03 +11002434
2435 list_for_each_entry(ncmd, &hostdata->autosense, list) {
2436 struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd);
2437
2438 set_host_byte(cmd, DID_RESET);
2439 cmd->scsi_done(cmd);
2440 }
Finn Thain1884c282016-02-23 10:07:04 +11002441 INIT_LIST_HEAD(&hostdata->autosense);
Finn Thain62717f52016-01-03 16:06:03 +11002442
2443 if (hostdata->connected) {
2444 set_host_byte(hostdata->connected, DID_RESET);
2445 complete_cmd(instance, hostdata->connected);
2446 hostdata->connected = NULL;
2447 }
2448
Finn Thain62717f52016-01-03 16:06:03 +11002449 for (i = 0; i < 8; ++i)
2450 hostdata->busy[i] = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002451 hostdata->dma_len = 0;
Finn Thain62717f52016-01-03 16:06:03 +11002452
2453 queue_work(hostdata->work_q, &hostdata->main_task);
Finn Thain52d3e562016-03-23 21:10:20 +11002454 maybe_release_dma_irq(instance);
Finn Thain11d2f632016-01-03 16:05:51 +11002455 spin_unlock_irqrestore(&hostdata->lock, flags);
Jeff Garzik 68b3aa72005-05-28 07:56:31 -04002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return SUCCESS;
2458}