Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * NCR 5380 generic driver routines. These should make it *trivial* |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 4 | * to implement 5380 SCSI drivers under Linux with a non-trantor |
| 5 | * architecture. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 7 | * Note that these routines also work with NR53c400 family chips. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * Copyright 1993, Drew Eckhardt |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 10 | * Visionary Computing |
| 11 | * (Unix and Linux consulting and custom programming) |
| 12 | * drew@colorado.edu |
| 13 | * +1 (303) 666-5836 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 15 | * For more information, please consult |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * |
| 17 | * NCR 5380 Family |
| 18 | * SCSI Protocol Controller |
| 19 | * Databook |
| 20 | * |
| 21 | * NCR Microelectronics |
| 22 | * 1635 Aeroplaza Drive |
| 23 | * Colorado Springs, CO 80916 |
| 24 | * 1+ (719) 578-3400 |
| 25 | * 1+ (800) 334-5454 |
| 26 | */ |
| 27 | |
| 28 | /* |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 29 | * With contributions from Ray Van Tassle, Ingmar Baumgart, |
| 30 | * Ronald van Cuijlenborg, Alan Cox and others. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | */ |
| 32 | |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 33 | /* Ported to Atari by Roman Hodek and others. */ |
| 34 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 35 | /* Adapted for the Sun 3 by Sam Creasey. */ |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | * Design |
| 39 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 40 | * This is a generic 5380 driver. To use it on a different platform, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | * one simply writes appropriate system specific macros (ie, data |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 42 | * transfer - some PC's will use the I/O bus, 68K's must use |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * memory mapped) and drops this file in their 'C' wrapper. |
| 44 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 45 | * As far as command queueing, two queues are maintained for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * each 5380 in the system - commands that haven't been issued yet, |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 47 | * and commands that are currently executing. This means that an |
| 48 | * unlimited number of commands may be queued, letting |
| 49 | * more commands propagate from the higher driver levels giving higher |
| 50 | * throughput. Note that both I_T_L and I_T_L_Q nexuses are supported, |
| 51 | * allowing multiple commands to propagate all the way to a SCSI-II device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | * while a command is already executing. |
| 53 | * |
| 54 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 55 | * Issues specific to the NCR5380 : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 57 | * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead |
| 58 | * piece of hardware that requires you to sit in a loop polling for |
| 59 | * the REQ signal as long as you are connected. Some devices are |
| 60 | * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 61 | * while doing long seek operations. [...] These |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * broken devices are the exception rather than the rule and I'd rather |
| 63 | * spend my time optimizing for the normal case. |
| 64 | * |
| 65 | * Architecture : |
| 66 | * |
| 67 | * At the heart of the design is a coroutine, NCR5380_main, |
| 68 | * which is started from a workqueue for each NCR5380 host in the |
| 69 | * system. It attempts to establish I_T_L or I_T_L_Q nexuses by |
| 70 | * removing the commands from the issue queue and calling |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 71 | * NCR5380_select() if a nexus is not established. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * |
| 73 | * Once a nexus is established, the NCR5380_information_transfer() |
| 74 | * phase goes through the various phases as instructed by the target. |
| 75 | * if the target goes into MSG IN and sends a DISCONNECT message, |
| 76 | * the command structure is placed into the per instance disconnected |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 77 | * queue, and NCR5380_main tries to find more work. If the target is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | * idle for too long, the system will try to sleep. |
| 79 | * |
| 80 | * If a command has disconnected, eventually an interrupt will trigger, |
| 81 | * calling NCR5380_intr() which will in turn call NCR5380_reselect |
| 82 | * to reestablish a nexus. This will run main if necessary. |
| 83 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 84 | * On command termination, the done function will be called as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | * appropriate. |
| 86 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 87 | * SCSI pointers are maintained in the SCp field of SCSI command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | * structures, being initialized after the command is connected |
| 89 | * in NCR5380_select, and set as appropriate in NCR5380_information_transfer. |
| 90 | * Note that in violation of the standard, an implicit SAVE POINTERS operation |
| 91 | * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS. |
| 92 | */ |
| 93 | |
| 94 | /* |
| 95 | * Using this file : |
| 96 | * This file a skeleton Linux SCSI driver for the NCR 5380 series |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 97 | * of chips. To use it, you write an architecture specific functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * and macros and include this file in your driver. |
| 99 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | * These macros MUST be defined : |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 101 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | * NCR5380_read(register) - read from the specified register |
| 103 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 104 | * NCR5380_write(register, value) - write to the specific register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 106 | * NCR5380_implementation_fields - additional fields needed for this |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 107 | * specific implementation of the NCR5380 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | * |
| 109 | * Either real DMA *or* pseudo DMA may be implemented |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 111 | * NCR5380_dma_xfer_len - determine size of DMA/PDMA transfer |
| 112 | * NCR5380_dma_send_setup - execute DMA/PDMA from memory to 5380 |
| 113 | * NCR5380_dma_recv_setup - execute DMA/PDMA from 5380 to memory |
| 114 | * NCR5380_dma_residual - residual byte count |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | * The generic driver is initialized by calling NCR5380_init(instance), |
Ondrej Zary | 906e4a3c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 117 | * after setting the appropriate host specific fields and ID. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | */ |
| 119 | |
Finn Thain | e5d55d1 | 2016-03-23 21:10:16 +1100 | [diff] [blame] | 120 | #ifndef NCR5380_io_delay |
| 121 | #define NCR5380_io_delay(x) |
| 122 | #endif |
| 123 | |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 124 | #ifndef NCR5380_acquire_dma_irq |
| 125 | #define NCR5380_acquire_dma_irq(x) (1) |
| 126 | #endif |
| 127 | |
| 128 | #ifndef NCR5380_release_dma_irq |
| 129 | #define NCR5380_release_dma_irq(x) |
| 130 | #endif |
| 131 | |
Finn Thain | 0b7a223 | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 132 | static unsigned int disconnect_mask = ~0; |
| 133 | module_param(disconnect_mask, int, 0444); |
| 134 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 135 | static int do_abort(struct Scsi_Host *); |
| 136 | static void do_reset(struct Scsi_Host *); |
Finn Thain | 6b0e87a | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 137 | static void bus_reset_cleanup(struct Scsi_Host *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 139 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 140 | * initialize_SCp - init the scsi pointer field |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 141 | * @cmd: command block to set up |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 143 | * Set up the internal fields in the SCSI command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | */ |
| 145 | |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 146 | static inline void initialize_SCp(struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 148 | /* |
| 149 | * Initialize the Scsi Pointer field so that all of the commands in the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | * various queues are valid. |
| 151 | */ |
| 152 | |
Boaz Harrosh | 9e0fe44 | 2007-11-05 11:23:35 +0200 | [diff] [blame] | 153 | if (scsi_bufflen(cmd)) { |
| 154 | cmd->SCp.buffer = scsi_sglist(cmd); |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 155 | cmd->SCp.ptr = sg_virt(cmd->SCp.buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | cmd->SCp.this_residual = cmd->SCp.buffer->length; |
| 157 | } else { |
| 158 | cmd->SCp.buffer = NULL; |
Boaz Harrosh | 9e0fe44 | 2007-11-05 11:23:35 +0200 | [diff] [blame] | 159 | cmd->SCp.ptr = NULL; |
| 160 | cmd->SCp.this_residual = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 162 | |
| 163 | cmd->SCp.Status = 0; |
| 164 | cmd->SCp.Message = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Finn Thain | 0e9fdd2 | 2019-06-18 09:37:57 +0800 | [diff] [blame] | 167 | static inline void advance_sg_buffer(struct scsi_cmnd *cmd) |
| 168 | { |
| 169 | struct scatterlist *s = cmd->SCp.buffer; |
| 170 | |
| 171 | if (!cmd->SCp.this_residual && s && !sg_is_last(s)) { |
| 172 | cmd->SCp.buffer = sg_next(s); |
| 173 | cmd->SCp.ptr = sg_virt(cmd->SCp.buffer); |
| 174 | cmd->SCp.this_residual = cmd->SCp.buffer->length; |
| 175 | } |
| 176 | } |
| 177 | |
Finn Thain | 350767f | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 178 | static inline void set_resid_from_SCp(struct scsi_cmnd *cmd) |
| 179 | { |
| 180 | int resid = cmd->SCp.this_residual; |
| 181 | struct scatterlist *s = cmd->SCp.buffer; |
| 182 | |
| 183 | if (s) |
| 184 | while (!sg_is_last(s)) { |
| 185 | s = sg_next(s); |
| 186 | resid += s->length; |
| 187 | } |
| 188 | scsi_set_resid(cmd, resid); |
| 189 | } |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /** |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 192 | * NCR5380_poll_politely2 - wait for two chip register values |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 193 | * @hostdata: host private data |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 194 | * @reg1: 5380 register to poll |
| 195 | * @bit1: Bitmask to check |
| 196 | * @val1: Expected value |
| 197 | * @reg2: Second 5380 register to poll |
| 198 | * @bit2: Second bitmask to check |
| 199 | * @val2: Second expected value |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 200 | * @wait: Time-out in jiffies |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | * |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 202 | * Polls the chip in a reasonably efficient manner waiting for an |
| 203 | * event to occur. After a short quick poll we begin to yield the CPU |
| 204 | * (if possible). In irq contexts the time-out is arbitrarily limited. |
| 205 | * Callers may hold locks as long as they are held in irq mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | * |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 207 | * Returns 0 if either or both event(s) occurred otherwise -ETIMEDOUT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 210 | static int NCR5380_poll_politely2(struct NCR5380_hostdata *hostdata, |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 211 | unsigned int reg1, u8 bit1, u8 val1, |
| 212 | unsigned int reg2, u8 bit2, u8 val2, |
| 213 | unsigned long wait) |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 214 | { |
Finn Thain | d4408dd | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 215 | unsigned long n = hostdata->poll_loops; |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 216 | unsigned long deadline = jiffies + wait; |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 217 | |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 218 | do { |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 219 | if ((NCR5380_read(reg1) & bit1) == val1) |
| 220 | return 0; |
| 221 | if ((NCR5380_read(reg2) & bit2) == val2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return 0; |
| 223 | cpu_relax(); |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 224 | } while (n--); |
| 225 | |
| 226 | if (irqs_disabled() || in_interrupt()) |
| 227 | return -ETIMEDOUT; |
| 228 | |
| 229 | /* Repeatedly sleep for 1 ms until deadline */ |
| 230 | while (time_is_after_jiffies(deadline)) { |
| 231 | schedule_timeout_uninterruptible(1); |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 232 | if ((NCR5380_read(reg1) & bit1) == val1) |
| 233 | return 0; |
| 234 | if ((NCR5380_read(reg2) & bit2) == val2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | return -ETIMEDOUT; |
| 239 | } |
| 240 | |
viro@ZenIV.linux.org.uk | 185a7a1 | 2005-09-07 23:18:24 +0100 | [diff] [blame] | 241 | #if NDEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | static struct { |
| 243 | unsigned char mask; |
| 244 | const char *name; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 245 | } signals[] = { |
| 246 | {SR_DBP, "PARITY"}, |
| 247 | {SR_RST, "RST"}, |
| 248 | {SR_BSY, "BSY"}, |
| 249 | {SR_REQ, "REQ"}, |
| 250 | {SR_MSG, "MSG"}, |
| 251 | {SR_CD, "CD"}, |
| 252 | {SR_IO, "IO"}, |
| 253 | {SR_SEL, "SEL"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | {0, NULL} |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 255 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | basrs[] = { |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 257 | {BASR_END_DMA_TRANSFER, "END OF DMA"}, |
| 258 | {BASR_DRQ, "DRQ"}, |
| 259 | {BASR_PARITY_ERROR, "PARITY ERROR"}, |
| 260 | {BASR_IRQ, "IRQ"}, |
| 261 | {BASR_PHASE_MATCH, "PHASE MATCH"}, |
| 262 | {BASR_BUSY_ERROR, "BUSY ERROR"}, |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 263 | {BASR_ATN, "ATN"}, |
| 264 | {BASR_ACK, "ACK"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | {0, NULL} |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 266 | }, |
| 267 | icrs[] = { |
| 268 | {ICR_ASSERT_RST, "ASSERT RST"}, |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 269 | {ICR_ARBITRATION_PROGRESS, "ARB. IN PROGRESS"}, |
| 270 | {ICR_ARBITRATION_LOST, "LOST ARB."}, |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 271 | {ICR_ASSERT_ACK, "ASSERT ACK"}, |
| 272 | {ICR_ASSERT_BSY, "ASSERT BSY"}, |
| 273 | {ICR_ASSERT_SEL, "ASSERT SEL"}, |
| 274 | {ICR_ASSERT_ATN, "ASSERT ATN"}, |
| 275 | {ICR_ASSERT_DATA, "ASSERT DATA"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | {0, NULL} |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 277 | }, |
| 278 | mrs[] = { |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 279 | {MR_BLOCK_DMA_MODE, "BLOCK DMA MODE"}, |
| 280 | {MR_TARGET, "TARGET"}, |
| 281 | {MR_ENABLE_PAR_CHECK, "PARITY CHECK"}, |
| 282 | {MR_ENABLE_PAR_INTR, "PARITY INTR"}, |
| 283 | {MR_ENABLE_EOP_INTR, "EOP INTR"}, |
| 284 | {MR_MONITOR_BSY, "MONITOR BSY"}, |
| 285 | {MR_DMA_MODE, "DMA MODE"}, |
| 286 | {MR_ARBITRATE, "ARBITRATE"}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | {0, NULL} |
| 288 | }; |
| 289 | |
| 290 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 291 | * NCR5380_print - print scsi bus signals |
| 292 | * @instance: adapter state to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 294 | * Print the SCSI bus signals for debugging purposes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | */ |
| 296 | |
| 297 | static void NCR5380_print(struct Scsi_Host *instance) |
| 298 | { |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 299 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 8cee3e1 | 2019-03-08 08:49:02 +1100 | [diff] [blame] | 300 | unsigned char status, basr, mr, icr, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | status = NCR5380_read(STATUS_REG); |
| 303 | mr = NCR5380_read(MODE_REG); |
| 304 | icr = NCR5380_read(INITIATOR_COMMAND_REG); |
| 305 | basr = NCR5380_read(BUS_AND_STATUS_REG); |
| 306 | |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 307 | printk(KERN_DEBUG "SR = 0x%02x : ", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | for (i = 0; signals[i].mask; ++i) |
| 309 | if (status & signals[i].mask) |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 310 | printk(KERN_CONT "%s, ", signals[i].name); |
| 311 | printk(KERN_CONT "\nBASR = 0x%02x : ", basr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | for (i = 0; basrs[i].mask; ++i) |
| 313 | if (basr & basrs[i].mask) |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 314 | printk(KERN_CONT "%s, ", basrs[i].name); |
| 315 | printk(KERN_CONT "\nICR = 0x%02x : ", icr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | for (i = 0; icrs[i].mask; ++i) |
| 317 | if (icr & icrs[i].mask) |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 318 | printk(KERN_CONT "%s, ", icrs[i].name); |
| 319 | printk(KERN_CONT "\nMR = 0x%02x : ", mr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | for (i = 0; mrs[i].mask; ++i) |
| 321 | if (mr & mrs[i].mask) |
Finn Thain | 12866b9 | 2016-03-23 21:10:25 +1100 | [diff] [blame] | 322 | printk(KERN_CONT "%s, ", mrs[i].name); |
| 323 | printk(KERN_CONT "\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } |
| 325 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 326 | static struct { |
| 327 | unsigned char value; |
| 328 | const char *name; |
| 329 | } phases[] = { |
| 330 | {PHASE_DATAOUT, "DATAOUT"}, |
| 331 | {PHASE_DATAIN, "DATAIN"}, |
| 332 | {PHASE_CMDOUT, "CMDOUT"}, |
| 333 | {PHASE_STATIN, "STATIN"}, |
| 334 | {PHASE_MSGOUT, "MSGOUT"}, |
| 335 | {PHASE_MSGIN, "MSGIN"}, |
| 336 | {PHASE_UNKNOWN, "UNKNOWN"} |
| 337 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 339 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 340 | * NCR5380_print_phase - show SCSI phase |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 341 | * @instance: adapter to dump |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 343 | * Print the current SCSI phase for debugging purposes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | */ |
| 345 | |
| 346 | static void NCR5380_print_phase(struct Scsi_Host *instance) |
| 347 | { |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 348 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | unsigned char status; |
| 350 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
| 352 | status = NCR5380_read(STATUS_REG); |
| 353 | if (!(status & SR_REQ)) |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 354 | shost_printk(KERN_DEBUG, instance, "REQ not asserted, phase unknown.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | else { |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 356 | for (i = 0; (phases[i].value != PHASE_UNKNOWN) && |
| 357 | (phases[i].value != (status & PHASE_MASK)); ++i) |
| 358 | ; |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 359 | shost_printk(KERN_DEBUG, instance, "phase %s\n", phases[i].name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | #endif |
| 363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | /** |
Finn Thain | 0902846 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 365 | * NCR5380_info - report driver and host information |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 366 | * @instance: relevant scsi host instance |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 368 | * For use as the host template info() handler. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | */ |
| 370 | |
Finn Thain | 8c32513 | 2014-11-12 16:11:58 +1100 | [diff] [blame] | 371 | static const char *NCR5380_info(struct Scsi_Host *instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { |
Finn Thain | 8c32513 | 2014-11-12 16:11:58 +1100 | [diff] [blame] | 373 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 374 | |
| 375 | return hostdata->info; |
| 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 379 | * NCR5380_init - initialise an NCR5380 |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 380 | * @instance: adapter to configure |
| 381 | * @flags: control flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 383 | * Initializes *instance and corresponding 5380 chip, |
| 384 | * with flags OR'd into the initial flags value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 386 | * Notes : I assume that the host, hostno, and id bits have been |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 387 | * set correctly. I don't care about the irq and other fields. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 389 | * Returns 0 for success |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | */ |
| 391 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 392 | static int NCR5380_init(struct Scsi_Host *instance, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 394 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | b6488f9 | 2016-01-03 16:05:08 +1100 | [diff] [blame] | 395 | int i; |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 396 | unsigned long deadline; |
Finn Thain | d4408dd | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 397 | unsigned long accesses_per_ms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Finn Thain | ae5e33a | 2016-03-23 21:10:23 +1100 | [diff] [blame] | 399 | instance->max_lun = 7; |
| 400 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 401 | hostdata->host = instance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | hostdata->id_mask = 1 << instance->this_id; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 403 | hostdata->id_higher_mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | for (i = hostdata->id_mask; i <= 0x80; i <<= 1) |
| 405 | if (i > hostdata->id_mask) |
| 406 | hostdata->id_higher_mask |= i; |
| 407 | for (i = 0; i < 8; ++i) |
| 408 | hostdata->busy[i] = 0; |
Finn Thain | e4dec68 | 2016-03-23 21:10:12 +1100 | [diff] [blame] | 409 | hostdata->dma_len = 0; |
| 410 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 411 | spin_lock_init(&hostdata->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | hostdata->connected = NULL; |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 413 | hostdata->sensing = NULL; |
| 414 | INIT_LIST_HEAD(&hostdata->autosense); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 415 | INIT_LIST_HEAD(&hostdata->unissued); |
| 416 | INIT_LIST_HEAD(&hostdata->disconnected); |
| 417 | |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 418 | hostdata->flags = flags; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 419 | |
Finn Thain | 8d8601a | 2016-01-03 16:05:37 +1100 | [diff] [blame] | 420 | INIT_WORK(&hostdata->main_task, NCR5380_main); |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 421 | hostdata->work_q = alloc_workqueue("ncr5380_%d", |
| 422 | WQ_UNBOUND | WQ_MEM_RECLAIM, |
| 423 | 1, instance->host_no); |
| 424 | if (!hostdata->work_q) |
| 425 | return -ENOMEM; |
| 426 | |
Finn Thain | 0902846 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 427 | snprintf(hostdata->info, sizeof(hostdata->info), |
| 428 | "%s, irq %d, io_port 0x%lx, base 0x%lx, can_queue %d, cmd_per_lun %d, sg_tablesize %d, this_id %d, flags { %s%s%s}", |
| 429 | instance->hostt->name, instance->irq, hostdata->io_port, |
| 430 | hostdata->base, instance->can_queue, instance->cmd_per_lun, |
| 431 | instance->sg_tablesize, instance->this_id, |
| 432 | hostdata->flags & FLAG_DMA_FIXUP ? "DMA_FIXUP " : "", |
| 433 | hostdata->flags & FLAG_NO_PSEUDO_DMA ? "NO_PSEUDO_DMA " : "", |
| 434 | hostdata->flags & FLAG_TOSHIBA_DELAY ? "TOSHIBA_DELAY " : ""); |
Finn Thain | 8c32513 | 2014-11-12 16:11:58 +1100 | [diff] [blame] | 435 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 437 | NCR5380_write(MODE_REG, MR_BASE); |
| 438 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 439 | NCR5380_write(SELECT_ENABLE_REG, 0); |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 440 | |
| 441 | /* Calibrate register polling loop */ |
| 442 | i = 0; |
| 443 | deadline = jiffies + 1; |
| 444 | do { |
| 445 | cpu_relax(); |
| 446 | } while (time_is_after_jiffies(deadline)); |
| 447 | deadline += msecs_to_jiffies(256); |
| 448 | do { |
| 449 | NCR5380_read(STATUS_REG); |
| 450 | ++i; |
| 451 | cpu_relax(); |
| 452 | } while (time_is_after_jiffies(deadline)); |
Finn Thain | d4408dd | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 453 | accesses_per_ms = i / 256; |
| 454 | hostdata->poll_loops = NCR5380_REG_POLL_TIME * accesses_per_ms / 2; |
Finn Thain | 2f854b8 | 2016-01-03 16:05:22 +1100 | [diff] [blame] | 455 | |
Finn Thain | b6488f9 | 2016-01-03 16:05:08 +1100 | [diff] [blame] | 456 | return 0; |
| 457 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Finn Thain | b6488f9 | 2016-01-03 16:05:08 +1100 | [diff] [blame] | 459 | /** |
| 460 | * NCR5380_maybe_reset_bus - Detect and correct bus wedge problems. |
| 461 | * @instance: adapter to check |
| 462 | * |
| 463 | * If the system crashed, it may have crashed with a connected target and |
| 464 | * the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the |
| 465 | * currently established nexus, which we know nothing about. Failing that |
| 466 | * do a bus reset. |
| 467 | * |
| 468 | * Note that a bus reset will cause the chip to assert IRQ. |
| 469 | * |
| 470 | * Returns 0 if successful, otherwise -ENXIO. |
| 471 | */ |
| 472 | |
| 473 | static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance) |
| 474 | { |
Finn Thain | 9c3f0e2 | 2016-01-03 16:05:11 +1100 | [diff] [blame] | 475 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | b6488f9 | 2016-01-03 16:05:08 +1100 | [diff] [blame] | 476 | int pass; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) { |
| 479 | switch (pass) { |
| 480 | case 1: |
| 481 | case 3: |
| 482 | case 5: |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 483 | shost_printk(KERN_ERR, instance, "SCSI bus busy, waiting up to five seconds\n"); |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 484 | NCR5380_poll_politely(hostdata, |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 485 | STATUS_REG, SR_BSY, 0, 5 * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | break; |
| 487 | case 2: |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 488 | shost_printk(KERN_ERR, instance, "bus busy, attempting abort\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | do_abort(instance); |
| 490 | break; |
| 491 | case 4: |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 492 | shost_printk(KERN_ERR, instance, "bus busy, attempting reset\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | do_reset(instance); |
Finn Thain | 9c3f0e2 | 2016-01-03 16:05:11 +1100 | [diff] [blame] | 494 | /* Wait after a reset; the SCSI standard calls for |
| 495 | * 250ms, we wait 500ms to be on the safe side. |
| 496 | * But some Toshiba CD-ROMs need ten times that. |
| 497 | */ |
| 498 | if (hostdata->flags & FLAG_TOSHIBA_DELAY) |
| 499 | msleep(2500); |
| 500 | else |
| 501 | msleep(500); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | break; |
| 503 | case 6: |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 504 | shost_printk(KERN_ERR, instance, "bus locked solid\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | return -ENXIO; |
| 506 | } |
| 507 | } |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 512 | * NCR5380_exit - remove an NCR5380 |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 513 | * @instance: adapter to remove |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 514 | * |
| 515 | * Assumes that no more work can be queued (e.g. by NCR5380_intr). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | */ |
| 517 | |
Randy Dunlap | a43cf0f | 2008-01-22 21:39:33 -0800 | [diff] [blame] | 518 | static void NCR5380_exit(struct Scsi_Host *instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 520 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Finn Thain | 8d8601a | 2016-01-03 16:05:37 +1100 | [diff] [blame] | 522 | cancel_work_sync(&hostdata->main_task); |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 523 | destroy_workqueue(hostdata->work_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | /** |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 527 | * complete_cmd - finish processing a command and return it to the SCSI ML |
| 528 | * @instance: the host instance |
| 529 | * @cmd: command to complete |
| 530 | */ |
| 531 | |
| 532 | static void complete_cmd(struct Scsi_Host *instance, |
| 533 | struct scsi_cmnd *cmd) |
| 534 | { |
| 535 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 536 | |
| 537 | dsprintk(NDEBUG_QUEUES, instance, "complete_cmd: cmd %p\n", cmd); |
| 538 | |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 539 | if (hostdata->sensing == cmd) { |
| 540 | /* Autosense processing ends here */ |
Finn Thain | 0703565 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 541 | if (status_byte(cmd->result) != GOOD) { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 542 | scsi_eh_restore_cmnd(cmd, &hostdata->ses); |
Finn Thain | 0703565 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 543 | } else { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 544 | scsi_eh_restore_cmnd(cmd, &hostdata->ses); |
Finn Thain | 0703565 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 545 | set_driver_byte(cmd, DRIVER_SENSE); |
| 546 | } |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 547 | hostdata->sensing = NULL; |
| 548 | } |
| 549 | |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 550 | cmd->scsi_done(cmd); |
| 551 | } |
| 552 | |
| 553 | /** |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 554 | * NCR5380_queue_command - queue a command |
| 555 | * @instance: the relevant SCSI adapter |
| 556 | * @cmd: SCSI command |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | * |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 558 | * cmd is added to the per-instance issue queue, with minor |
| 559 | * twiddling done to the host specific fields of cmd. If the |
| 560 | * main coroutine is not running, it is restarted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | */ |
| 562 | |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 563 | static int NCR5380_queue_command(struct Scsi_Host *instance, |
| 564 | struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | { |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 566 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 567 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd); |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 568 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | #if (NDEBUG & NDEBUG_NO_WRITE) |
| 571 | switch (cmd->cmnd[0]) { |
| 572 | case WRITE_6: |
| 573 | case WRITE_10: |
Finn Thain | dbb6b35 | 2016-01-03 16:05:53 +1100 | [diff] [blame] | 574 | shost_printk(KERN_DEBUG, instance, "WRITE attempted with NDEBUG_NO_WRITE set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | cmd->result = (DID_ERROR << 16); |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 576 | cmd->scsi_done(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | return 0; |
| 578 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 579 | #endif /* (NDEBUG & NDEBUG_NO_WRITE) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | cmd->result = 0; |
| 582 | |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 583 | if (!NCR5380_acquire_dma_irq(instance)) |
| 584 | return SCSI_MLQUEUE_HOST_BUSY; |
| 585 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 586 | spin_lock_irqsave(&hostdata->lock, flags); |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 587 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 588 | /* |
| 589 | * Insert the cmd into the issue queue. Note that REQUEST SENSE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | * commands are added to the head of the queue since any command will |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 591 | * clear the contingent allegiance condition that exists and the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | * sense data is only guaranteed to be valid while the condition exists. |
| 593 | */ |
| 594 | |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 595 | if (cmd->cmnd[0] == REQUEST_SENSE) |
| 596 | list_add(&ncmd->list, &hostdata->unissued); |
| 597 | else |
| 598 | list_add_tail(&ncmd->list, &hostdata->unissued); |
| 599 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 600 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Finn Thain | 1bb4058 | 2016-01-03 16:05:29 +1100 | [diff] [blame] | 601 | |
Finn Thain | dbb6b35 | 2016-01-03 16:05:53 +1100 | [diff] [blame] | 602 | dsprintk(NDEBUG_QUEUES, instance, "command %p added to %s of queue\n", |
| 603 | cmd, (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | /* Kick off command processing */ |
Finn Thain | 8d8601a | 2016-01-03 16:05:37 +1100 | [diff] [blame] | 606 | queue_work(hostdata->work_q, &hostdata->main_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | return 0; |
| 608 | } |
| 609 | |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 610 | static inline void maybe_release_dma_irq(struct Scsi_Host *instance) |
| 611 | { |
| 612 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 613 | |
| 614 | /* Caller does the locking needed to set & test these data atomically */ |
| 615 | if (list_empty(&hostdata->disconnected) && |
| 616 | list_empty(&hostdata->unissued) && |
| 617 | list_empty(&hostdata->autosense) && |
| 618 | !hostdata->connected && |
Finn Thain | 4ab2a78 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 619 | !hostdata->selecting) { |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 620 | NCR5380_release_dma_irq(instance); |
Finn Thain | 4ab2a78 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 621 | } |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 622 | } |
| 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | /** |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 625 | * dequeue_next_cmd - dequeue a command for processing |
| 626 | * @instance: the scsi host instance |
| 627 | * |
| 628 | * Priority is given to commands on the autosense queue. These commands |
| 629 | * need autosense because of a CHECK CONDITION result. |
| 630 | * |
| 631 | * Returns a command pointer if a command is found for a target that is |
| 632 | * not already busy. Otherwise returns NULL. |
| 633 | */ |
| 634 | |
| 635 | static struct scsi_cmnd *dequeue_next_cmd(struct Scsi_Host *instance) |
| 636 | { |
| 637 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 638 | struct NCR5380_cmd *ncmd; |
| 639 | struct scsi_cmnd *cmd; |
| 640 | |
Finn Thain | 8d5dbec | 2016-02-23 10:07:09 +1100 | [diff] [blame] | 641 | if (hostdata->sensing || list_empty(&hostdata->autosense)) { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 642 | list_for_each_entry(ncmd, &hostdata->unissued, list) { |
| 643 | cmd = NCR5380_to_scmd(ncmd); |
| 644 | dsprintk(NDEBUG_QUEUES, instance, "dequeue: cmd=%p target=%d busy=0x%02x lun=%llu\n", |
| 645 | cmd, scmd_id(cmd), hostdata->busy[scmd_id(cmd)], cmd->device->lun); |
| 646 | |
| 647 | if (!(hostdata->busy[scmd_id(cmd)] & (1 << cmd->device->lun))) { |
| 648 | list_del(&ncmd->list); |
| 649 | dsprintk(NDEBUG_QUEUES, instance, |
| 650 | "dequeue: removed %p from issue queue\n", cmd); |
| 651 | return cmd; |
| 652 | } |
| 653 | } |
| 654 | } else { |
| 655 | /* Autosense processing begins here */ |
| 656 | ncmd = list_first_entry(&hostdata->autosense, |
| 657 | struct NCR5380_cmd, list); |
| 658 | list_del(&ncmd->list); |
| 659 | cmd = NCR5380_to_scmd(ncmd); |
| 660 | dsprintk(NDEBUG_QUEUES, instance, |
| 661 | "dequeue: removed %p from autosense queue\n", cmd); |
| 662 | scsi_eh_prep_cmnd(cmd, &hostdata->ses, NULL, 0, ~0); |
| 663 | hostdata->sensing = cmd; |
| 664 | return cmd; |
| 665 | } |
| 666 | return NULL; |
| 667 | } |
| 668 | |
| 669 | static void requeue_cmd(struct Scsi_Host *instance, struct scsi_cmnd *cmd) |
| 670 | { |
| 671 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 672 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd); |
| 673 | |
Finn Thain | 8d5dbec | 2016-02-23 10:07:09 +1100 | [diff] [blame] | 674 | if (hostdata->sensing == cmd) { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 675 | scsi_eh_restore_cmnd(cmd, &hostdata->ses); |
| 676 | list_add(&ncmd->list, &hostdata->autosense); |
| 677 | hostdata->sensing = NULL; |
| 678 | } else |
| 679 | list_add(&ncmd->list, &hostdata->unissued); |
| 680 | } |
| 681 | |
| 682 | /** |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 683 | * NCR5380_main - NCR state machines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 685 | * NCR5380_main is a coroutine that runs as long as more work can |
| 686 | * be done on the NCR5380 host adapters in a system. Both |
| 687 | * NCR5380_queue_command() and NCR5380_intr() will try to start it |
| 688 | * in case it is not running. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | */ |
| 690 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 691 | static void NCR5380_main(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 693 | struct NCR5380_hostdata *hostdata = |
Finn Thain | 8d8601a | 2016-01-03 16:05:37 +1100 | [diff] [blame] | 694 | container_of(work, struct NCR5380_hostdata, main_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | struct Scsi_Host *instance = hostdata->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | int done; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | done = 1; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 700 | |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 701 | spin_lock_irq(&hostdata->lock); |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 702 | while (!hostdata->connected && !hostdata->selecting) { |
| 703 | struct scsi_cmnd *cmd = dequeue_next_cmd(instance); |
| 704 | |
| 705 | if (!cmd) |
| 706 | break; |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 707 | |
| 708 | dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd); |
| 709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | /* |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 711 | * Attempt to establish an I_T_L nexus here. |
| 712 | * On success, instance->hostdata->connected is set. |
| 713 | * On failure, we must add the command back to the |
| 714 | * issue queue so we can keep trying. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | */ |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 716 | /* |
| 717 | * REQUEST SENSE commands are issued without tagged |
| 718 | * queueing, even on SCSI-II devices because the |
| 719 | * contingent allegiance condition exists for the |
| 720 | * entire unit. |
| 721 | */ |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 722 | |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 723 | if (!NCR5380_select(instance, cmd)) { |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 724 | dsprintk(NDEBUG_MAIN, instance, "main: select complete\n"); |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 725 | maybe_release_dma_irq(instance); |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 726 | } else { |
| 727 | dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance, |
| 728 | "main: select failed, returning %p to queue\n", cmd); |
| 729 | requeue_cmd(instance, cmd); |
| 730 | } |
| 731 | } |
Finn Thain | e4dec68 | 2016-03-23 21:10:12 +1100 | [diff] [blame] | 732 | if (hostdata->connected && !hostdata->dma_len) { |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 733 | dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | NCR5380_information_transfer(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | done = 0; |
Finn Thain | 1d3db59 | 2016-01-03 16:05:24 +1100 | [diff] [blame] | 736 | } |
Finn Thain | 57f3132 | 2019-06-09 11:19:11 +1000 | [diff] [blame] | 737 | if (!hostdata->connected) |
| 738 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 739 | spin_unlock_irq(&hostdata->lock); |
| 740 | if (!done) |
| 741 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } while (!done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | } |
| 744 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 745 | /* |
| 746 | * NCR5380_dma_complete - finish DMA transfer |
| 747 | * @instance: the scsi host instance |
| 748 | * |
| 749 | * Called by the interrupt handler when DMA finishes or a phase |
| 750 | * mismatch occurs (which would end the DMA transfer). |
| 751 | */ |
| 752 | |
| 753 | static void NCR5380_dma_complete(struct Scsi_Host *instance) |
| 754 | { |
| 755 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 756 | int transferred; |
| 757 | unsigned char **data; |
| 758 | int *count; |
| 759 | int saved_data = 0, overrun = 0; |
| 760 | unsigned char p; |
| 761 | |
| 762 | if (hostdata->read_overruns) { |
| 763 | p = hostdata->connected->SCp.phase; |
| 764 | if (p & SR_IO) { |
| 765 | udelay(10); |
| 766 | if ((NCR5380_read(BUS_AND_STATUS_REG) & |
| 767 | (BASR_PHASE_MATCH | BASR_ACK)) == |
| 768 | (BASR_PHASE_MATCH | BASR_ACK)) { |
| 769 | saved_data = NCR5380_read(INPUT_DATA_REG); |
| 770 | overrun = 1; |
| 771 | dsprintk(NDEBUG_DMA, instance, "read overrun handled\n"); |
| 772 | } |
| 773 | } |
| 774 | } |
| 775 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 776 | #ifdef CONFIG_SUN3 |
| 777 | if ((sun3scsi_dma_finish(rq_data_dir(hostdata->connected->request)))) { |
| 778 | pr_err("scsi%d: overrun in UDC counter -- not prepared to deal with this!\n", |
| 779 | instance->host_no); |
| 780 | BUG(); |
| 781 | } |
| 782 | |
| 783 | if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) == |
| 784 | (BASR_PHASE_MATCH | BASR_ACK)) { |
| 785 | pr_err("scsi%d: BASR %02x\n", instance->host_no, |
| 786 | NCR5380_read(BUS_AND_STATUS_REG)); |
| 787 | pr_err("scsi%d: bus stuck in data phase -- probably a single byte overrun!\n", |
| 788 | instance->host_no); |
| 789 | BUG(); |
| 790 | } |
| 791 | #endif |
| 792 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 793 | NCR5380_write(MODE_REG, MR_BASE); |
| 794 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 795 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 796 | |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 797 | transferred = hostdata->dma_len - NCR5380_dma_residual(hostdata); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 798 | hostdata->dma_len = 0; |
| 799 | |
| 800 | data = (unsigned char **)&hostdata->connected->SCp.ptr; |
| 801 | count = &hostdata->connected->SCp.this_residual; |
| 802 | *data += transferred; |
| 803 | *count -= transferred; |
| 804 | |
| 805 | if (hostdata->read_overruns) { |
| 806 | int cnt, toPIO; |
| 807 | |
| 808 | if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) { |
| 809 | cnt = toPIO = hostdata->read_overruns; |
| 810 | if (overrun) { |
| 811 | dsprintk(NDEBUG_DMA, instance, |
| 812 | "Got an input overrun, using saved byte\n"); |
| 813 | *(*data)++ = saved_data; |
| 814 | (*count)--; |
| 815 | cnt--; |
| 816 | toPIO--; |
| 817 | } |
| 818 | if (toPIO > 0) { |
| 819 | dsprintk(NDEBUG_DMA, instance, |
| 820 | "Doing %d byte PIO to 0x%p\n", cnt, *data); |
| 821 | NCR5380_transfer_pio(instance, &p, &cnt, data); |
| 822 | *count -= toPIO - cnt; |
| 823 | } |
| 824 | } |
| 825 | } |
| 826 | } |
| 827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | /** |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 829 | * NCR5380_intr - generic NCR5380 irq handler |
| 830 | * @irq: interrupt number |
| 831 | * @dev_id: device info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | * |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 833 | * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses |
| 834 | * from the disconnected queue, and restarting NCR5380_main() |
| 835 | * as required. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | * |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 837 | * The chip can assert IRQ in any of six different conditions. The IRQ flag |
| 838 | * is then cleared by reading the Reset Parity/Interrupt Register (RPIR). |
| 839 | * Three of these six conditions are latched in the Bus and Status Register: |
| 840 | * - End of DMA (cleared by ending DMA Mode) |
| 841 | * - Parity error (cleared by reading RPIR) |
| 842 | * - Loss of BSY (cleared by reading RPIR) |
| 843 | * Two conditions have flag bits that are not latched: |
| 844 | * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode) |
| 845 | * - Bus reset (non-maskable) |
| 846 | * The remaining condition has no flag bit at all: |
| 847 | * - Selection/reselection |
| 848 | * |
| 849 | * Hence, establishing the cause(s) of any interrupt is partly guesswork. |
| 850 | * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor |
| 851 | * claimed that "the design of the [DP8490] interrupt logic ensures |
| 852 | * interrupts will not be lost (they can be on the DP5380)." |
| 853 | * The L5380/53C80 datasheet from LOGIC Devices has more details. |
| 854 | * |
| 855 | * Checking for bus reset by reading RST is futile because of interrupt |
| 856 | * latency, but a bus reset will reset chip logic. Checking for parity error |
| 857 | * is unnecessary because that interrupt is never enabled. A Loss of BSY |
| 858 | * condition will clear DMA Mode. We can tell when this occurs because the |
| 859 | * the Busy Monitor interrupt is enabled together with DMA Mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | */ |
| 861 | |
Finn Thain | a46865d | 2016-03-23 21:10:27 +1100 | [diff] [blame] | 862 | static irqreturn_t __maybe_unused NCR5380_intr(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | { |
Jeff Garzik | baa9aac | 2007-12-13 16:14:14 -0800 | [diff] [blame] | 864 | struct Scsi_Host *instance = dev_id; |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 865 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 866 | int handled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | unsigned char basr; |
| 868 | unsigned long flags; |
| 869 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 870 | spin_lock_irqsave(&hostdata->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 872 | basr = NCR5380_read(BUS_AND_STATUS_REG); |
| 873 | if (basr & BASR_IRQ) { |
| 874 | unsigned char mr = NCR5380_read(MODE_REG); |
| 875 | unsigned char sr = NCR5380_read(STATUS_REG); |
| 876 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 877 | dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n", |
| 878 | irq, basr, sr, mr); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 879 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 880 | if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) { |
| 881 | /* Probably End of DMA, Phase Mismatch or Loss of BSY. |
| 882 | * We ack IRQ after clearing Mode Register. Workarounds |
| 883 | * for End of DMA errata need to happen in DMA Mode. |
| 884 | */ |
| 885 | |
| 886 | dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n"); |
| 887 | |
| 888 | if (hostdata->connected) { |
| 889 | NCR5380_dma_complete(instance); |
| 890 | queue_work(hostdata->work_q, &hostdata->main_task); |
| 891 | } else { |
| 892 | NCR5380_write(MODE_REG, MR_BASE); |
| 893 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 894 | } |
| 895 | } else if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) && |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 896 | (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) { |
| 897 | /* Probably reselected */ |
| 898 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 899 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 900 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 901 | dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n"); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 902 | |
| 903 | if (!hostdata->connected) { |
| 904 | NCR5380_reselect(instance); |
| 905 | queue_work(hostdata->work_q, &hostdata->main_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | } |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 907 | if (!hostdata->connected) |
| 908 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
| 909 | } else { |
| 910 | /* Probably Bus Reset */ |
| 911 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 912 | |
Finn Thain | 6b0e87a | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 913 | if (sr & SR_RST) { |
| 914 | /* Certainly Bus Reset */ |
| 915 | shost_printk(KERN_WARNING, instance, |
| 916 | "bus reset interrupt\n"); |
| 917 | bus_reset_cleanup(instance); |
| 918 | } else { |
| 919 | dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n"); |
| 920 | } |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 921 | #ifdef SUN3_SCSI_VME |
| 922 | dregs->csr |= CSR_DMA_ENABLE; |
| 923 | #endif |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 924 | } |
| 925 | handled = 1; |
| 926 | } else { |
Finn Thain | 9af9fec | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 927 | dsprintk(NDEBUG_INTR, instance, "interrupt without IRQ bit\n"); |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 928 | #ifdef SUN3_SCSI_VME |
| 929 | dregs->csr |= CSR_DMA_ENABLE; |
| 930 | #endif |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 931 | } |
| 932 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 933 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 934 | |
| 935 | return IRQ_RETVAL(handled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | } |
| 937 | |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 938 | /** |
| 939 | * NCR5380_select - attempt arbitration and selection for a given command |
| 940 | * @instance: the Scsi_Host instance |
| 941 | * @cmd: the scsi_cmnd to execute |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | * |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 943 | * This routine establishes an I_T_L nexus for a SCSI command. This involves |
| 944 | * ARBITRATION, SELECTION and MESSAGE OUT phases and an IDENTIFY message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | * |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 946 | * Returns true if the operation should be retried. |
| 947 | * Returns false if it should not be retried. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 949 | * Side effects : |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 950 | * If bus busy, arbitration failed, etc, NCR5380_select() will exit |
| 951 | * with registers as they should have been on entry - ie |
| 952 | * SELECT_ENABLE will be set appropriately, the NCR5380 |
| 953 | * will cease to drive any SCSI bus signals. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | * |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 955 | * If successful : the I_T_L nexus will be established, and |
| 956 | * hostdata->connected will be set to cmd. |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 957 | * SELECT interrupt will be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 959 | * If failed (no target) : cmd->scsi_done() will be called, and the |
| 960 | * cmd->result host byte set to DID_BAD_TARGET. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | */ |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 962 | |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 963 | static bool NCR5380_select(struct Scsi_Host *instance, struct scsi_cmnd *cmd) |
Finn Thain | 4ab2a78 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 964 | __releases(&hostdata->lock) __acquires(&hostdata->lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 966 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | unsigned char tmp[3], phase; |
| 968 | unsigned char *data; |
| 969 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | int err; |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 971 | bool ret = true; |
Finn Thain | 7c8ed78 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 972 | bool can_disconnect = instance->irq != NO_IRQ && |
Finn Thain | 0b7a223 | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 973 | cmd->cmnd[0] != REQUEST_SENSE && |
| 974 | (disconnect_mask & BIT(scmd_id(cmd))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | NCR5380_dprint(NDEBUG_ARBITRATION, instance); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 977 | dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n", |
| 978 | instance->this_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 980 | /* |
| 981 | * Arbitration and selection phases are slow and involve dropping the |
| 982 | * lock, so we have to watch out for EH. An exception handler may |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 983 | * change 'selecting' to NULL. This function will then return false |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 984 | * so that the caller will forget about 'cmd'. (During information |
| 985 | * transfer phases, EH may change 'connected' to NULL.) |
| 986 | */ |
| 987 | hostdata->selecting = cmd; |
| 988 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 989 | /* |
| 990 | * Set the phase bits to 0, otherwise the NCR5380 won't drive the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | * data bus during SELECTION. |
| 992 | */ |
| 993 | |
| 994 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 995 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 996 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | * Start arbitration. |
| 998 | */ |
| 999 | |
| 1000 | NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask); |
| 1001 | NCR5380_write(MODE_REG, MR_ARBITRATE); |
| 1002 | |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1003 | /* The chip now waits for BUS FREE phase. Then after the 800 ns |
| 1004 | * Bus Free Delay, arbitration will begin. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | */ |
| 1006 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1007 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1008 | err = NCR5380_poll_politely2(hostdata, MODE_REG, MR_ARBITRATE, 0, |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1009 | INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS, |
| 1010 | ICR_ARBITRATION_PROGRESS, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1011 | spin_lock_irq(&hostdata->lock); |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1012 | if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) { |
| 1013 | /* Reselection interrupt */ |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1014 | goto out; |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1015 | } |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 1016 | if (!hostdata->selecting) { |
| 1017 | /* Command was aborted */ |
| 1018 | NCR5380_write(MODE_REG, MR_BASE); |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1019 | return false; |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 1020 | } |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1021 | if (err < 0) { |
| 1022 | NCR5380_write(MODE_REG, MR_BASE); |
| 1023 | shost_printk(KERN_ERR, instance, |
| 1024 | "select: arbitration timeout\n"); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1025 | goto out; |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1026 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1027 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1028 | |
| 1029 | /* The SCSI-2 arbitration delay is 2.4 us */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | udelay(3); |
| 1031 | |
| 1032 | /* Check for lost arbitration */ |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1033 | if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) || |
| 1034 | (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) || |
| 1035 | (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | NCR5380_write(MODE_REG, MR_BASE); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1037 | dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n"); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1038 | spin_lock_irq(&hostdata->lock); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1039 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | } |
Finn Thain | cf13b08 | 2016-01-03 16:05:18 +1100 | [diff] [blame] | 1041 | |
| 1042 | /* After/during arbitration, BSY should be asserted. |
| 1043 | * IBM DPES-31080 Version S31Q works now |
| 1044 | * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman) |
| 1045 | */ |
| 1046 | NCR5380_write(INITIATOR_COMMAND_REG, |
| 1047 | ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1049 | /* |
| 1050 | * Again, bus clear + bus settle time is 1.2us, however, this is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | * a minimum so we'll udelay ceil(1.2) |
| 1052 | */ |
| 1053 | |
Finn Thain | 9c3f0e2 | 2016-01-03 16:05:11 +1100 | [diff] [blame] | 1054 | if (hostdata->flags & FLAG_TOSHIBA_DELAY) |
| 1055 | udelay(15); |
| 1056 | else |
| 1057 | udelay(2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1059 | spin_lock_irq(&hostdata->lock); |
| 1060 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1061 | /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */ |
| 1062 | if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1063 | goto out; |
| 1064 | |
| 1065 | if (!hostdata->selecting) { |
| 1066 | NCR5380_write(MODE_REG, MR_BASE); |
| 1067 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1068 | return false; |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1069 | } |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1070 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1071 | dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1073 | /* |
| 1074 | * Now that we have won arbitration, start Selection process, asserting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | * the host and target ID's on the SCSI bus. |
| 1076 | */ |
| 1077 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1078 | NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1080 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | * Raise ATN while SEL is true before BSY goes false from arbitration, |
| 1082 | * since this is the only way to guarantee that we'll get a MESSAGE OUT |
| 1083 | * phase immediately after selection. |
| 1084 | */ |
| 1085 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1086 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY | |
| 1087 | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | NCR5380_write(MODE_REG, MR_BASE); |
| 1089 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1090 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | * Reselect interrupts must be turned off prior to the dropping of BSY, |
| 1092 | * otherwise we will trigger an interrupt. |
| 1093 | */ |
| 1094 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 1095 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1096 | spin_unlock_irq(&hostdata->lock); |
| 1097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1099 | * The initiator shall then wait at least two deskew delays and release |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | * the BSY signal. |
| 1101 | */ |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1102 | udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | |
| 1104 | /* Reset BSY */ |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1105 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | |
| 1106 | ICR_ASSERT_ATN | ICR_ASSERT_SEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1108 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | * Something weird happens when we cease to drive BSY - looks |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1110 | * like the board/chip is letting us do another read before the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | * appropriate propagation delay has expired, and we're confusing |
| 1112 | * a BSY signal from ourselves as the target's response to SELECTION. |
| 1113 | * |
| 1114 | * A small delay (the 'C++' frontend breaks the pipeline with an |
| 1115 | * unnecessary jump, making it work on my 386-33/Trantor T128, the |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1116 | * tighter 'C' code breaks and requires this) solves the problem - |
| 1117 | * the 1 us delay is arbitrary, and only used because this delay will |
| 1118 | * be the same on other platforms and since it works here, it should |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | * work there. |
| 1120 | * |
| 1121 | * wingel suggests that this could be due to failing to wait |
| 1122 | * one deskew delay. |
| 1123 | */ |
| 1124 | |
| 1125 | udelay(1); |
| 1126 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1127 | dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1129 | /* |
| 1130 | * The SCSI specification calls for a 250 ms timeout for the actual |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | * selection. |
| 1132 | */ |
| 1133 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1134 | err = NCR5380_poll_politely(hostdata, STATUS_REG, SR_BSY, SR_BSY, |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1135 | msecs_to_jiffies(250)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == (SR_SEL | SR_IO)) { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1138 | spin_lock_irq(&hostdata->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1140 | NCR5380_reselect(instance); |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1141 | shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n"); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1142 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | } |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1144 | |
| 1145 | if (err < 0) { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1146 | spin_lock_irq(&hostdata->lock); |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1147 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 6a16283 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1148 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1149 | /* Can't touch cmd if it has been reclaimed by the scsi ML */ |
Finn Thain | 6a16283 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1150 | if (!hostdata->selecting) |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1151 | return false; |
Finn Thain | 6a16283 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1152 | |
| 1153 | cmd->result = DID_BAD_TARGET << 16; |
| 1154 | complete_cmd(instance, cmd); |
| 1155 | dsprintk(NDEBUG_SELECTION, instance, |
| 1156 | "target did not respond within 250ms\n"); |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1157 | ret = false; |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1158 | goto out; |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1159 | } |
| 1160 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1161 | /* |
| 1162 | * No less than two deskew delays after the initiator detects the |
| 1163 | * BSY signal is true, it shall release the SEL signal and may |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | * change the DATA BUS. -wingel |
| 1165 | */ |
| 1166 | |
| 1167 | udelay(1); |
| 1168 | |
| 1169 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1172 | * Since we followed the SCSI spec, and raised ATN while SEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | * was true but before BSY was false during selection, the information |
| 1174 | * transfer phase should be a MESSAGE OUT phase so that we can send the |
| 1175 | * IDENTIFY message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | */ |
| 1177 | |
| 1178 | /* Wait for start of REQ/ACK handshake */ |
| 1179 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1180 | err = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1181 | spin_lock_irq(&hostdata->lock); |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 1182 | if (err < 0) { |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1183 | shost_printk(KERN_ERR, instance, "select: REQ timeout\n"); |
| 1184 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1185 | goto out; |
| 1186 | } |
| 1187 | if (!hostdata->selecting) { |
| 1188 | do_abort(instance); |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1189 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | } |
| 1191 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1192 | dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n", |
| 1193 | scmd_id(cmd)); |
Finn Thain | 7c8ed78 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1194 | tmp[0] = IDENTIFY(can_disconnect, cmd->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | |
| 1196 | len = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | data = tmp; |
| 1198 | phase = PHASE_MSGOUT; |
| 1199 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b15e791 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 1200 | if (len) { |
| 1201 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1202 | cmd->result = DID_ERROR << 16; |
| 1203 | complete_cmd(instance, cmd); |
| 1204 | dsprintk(NDEBUG_SELECTION, instance, "IDENTIFY message transfer failed\n"); |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1205 | ret = false; |
Finn Thain | b15e791 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 1206 | goto out; |
| 1207 | } |
| 1208 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1209 | dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n"); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | hostdata->connected = cmd; |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1212 | hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1214 | #ifdef SUN3_SCSI_VME |
| 1215 | dregs->csr |= CSR_INTR; |
| 1216 | #endif |
| 1217 | |
Boaz Harrosh | 28424d3 | 2007-09-10 22:37:45 +0300 | [diff] [blame] | 1218 | initialize_SCp(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1220 | ret = false; |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1221 | |
| 1222 | out: |
| 1223 | if (!hostdata->selecting) |
Finn Thain | 96edebd | 2018-10-24 18:45:33 +1100 | [diff] [blame] | 1224 | return false; |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1225 | hostdata->selecting = NULL; |
Finn Thain | dad8261 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1226 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | } |
| 1228 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1229 | /* |
| 1230 | * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1231 | * unsigned char *phase, int *count, unsigned char **data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | * |
| 1233 | * Purpose : transfers data in given phase using polled I/O |
| 1234 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1235 | * Inputs : instance - instance of driver, *phase - pointer to |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1236 | * what phase is expected, *count - pointer to number of |
| 1237 | * bytes to transfer, **data - pointer to data pointer. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1238 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | * Returns : -1 when different phase is entered without transferring |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1240 | * maximum number of bytes, 0 if all bytes are transferred or exit |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1241 | * is in same phase. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1243 | * Also, *phase, *count, *data are modified in place. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | * |
| 1245 | * XXX Note : handling for bus free may be useful. |
| 1246 | */ |
| 1247 | |
| 1248 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1249 | * Note : this code is not as quick as it could be, however it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | * IS 100% reliable, and for the actual data transfer where speed |
| 1251 | * counts, we will always do a pseudo DMA or DMA transfer. |
| 1252 | */ |
| 1253 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1254 | static int NCR5380_transfer_pio(struct Scsi_Host *instance, |
| 1255 | unsigned char *phase, int *count, |
| 1256 | unsigned char **data) |
| 1257 | { |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1258 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | unsigned char p = *phase, tmp; |
| 1260 | int c = *count; |
| 1261 | unsigned char *d = *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1263 | /* |
| 1264 | * The NCR5380 chip will only drive the SCSI bus when the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | * phase specified in the appropriate bits of the TARGET COMMAND |
| 1266 | * REGISTER match the STATUS REGISTER |
| 1267 | */ |
| 1268 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1269 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | do { |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1272 | /* |
| 1273 | * Wait for assertion of REQ, after which the phase bits will be |
| 1274 | * valid |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | */ |
| 1276 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1277 | if (NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1280 | dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | |
| 1282 | /* Check for phase mismatch */ |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 1283 | if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) { |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1284 | dsprintk(NDEBUG_PIO, instance, "phase mismatch\n"); |
| 1285 | NCR5380_dprint_phase(NDEBUG_PIO, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | break; |
| 1287 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | /* Do actual transfer from SCSI bus to / from memory */ |
| 1290 | if (!(p & SR_IO)) |
| 1291 | NCR5380_write(OUTPUT_DATA_REG, *d); |
| 1292 | else |
| 1293 | *d = NCR5380_read(CURRENT_SCSI_DATA_REG); |
| 1294 | |
| 1295 | ++d; |
| 1296 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1297 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | * The SCSI standard suggests that in MSGOUT phase, the initiator |
| 1299 | * should drop ATN on the last byte of the message phase |
| 1300 | * after REQ has been asserted for the handshake but before |
| 1301 | * the initiator raises ACK. |
| 1302 | */ |
| 1303 | |
| 1304 | if (!(p & SR_IO)) { |
| 1305 | if (!((p & SR_MSG) && c > 1)) { |
| 1306 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA); |
| 1307 | NCR5380_dprint(NDEBUG_PIO, instance); |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1308 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1309 | ICR_ASSERT_DATA | ICR_ASSERT_ACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } else { |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1311 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1312 | ICR_ASSERT_DATA | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | NCR5380_dprint(NDEBUG_PIO, instance); |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1314 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1315 | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | } |
| 1317 | } else { |
| 1318 | NCR5380_dprint(NDEBUG_PIO, instance); |
| 1319 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK); |
| 1320 | } |
| 1321 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1322 | if (NCR5380_poll_politely(hostdata, |
Finn Thain | a2edc4a | 2016-01-03 16:05:27 +1100 | [diff] [blame] | 1323 | STATUS_REG, SR_REQ, 0, 5 * HZ) < 0) |
| 1324 | break; |
| 1325 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1326 | dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | |
| 1328 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1329 | * We have several special cases to consider during REQ/ACK handshaking : |
| 1330 | * 1. We were in MSGOUT phase, and we are on the last byte of the |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1331 | * message. ATN must be dropped as ACK is dropped. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1333 | * 2. We are in a MSGIN phase, and we are on the last byte of the |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1334 | * message. We must exit with ACK asserted, so that the calling |
| 1335 | * code may raise ATN before dropping ACK to reject the message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | * |
| 1337 | * 3. ACK and ATN are clear and the target may proceed as normal. |
| 1338 | */ |
| 1339 | if (!(p == PHASE_MSGIN && c == 1)) { |
| 1340 | if (p == PHASE_MSGOUT && c > 1) |
| 1341 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1342 | else |
| 1343 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1344 | } |
| 1345 | } while (--c); |
| 1346 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1347 | dsprintk(NDEBUG_PIO, instance, "residual %d\n", c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | |
| 1349 | *count = c; |
| 1350 | *data = d; |
| 1351 | tmp = NCR5380_read(STATUS_REG); |
Finn Thain | a2edc4a | 2016-01-03 16:05:27 +1100 | [diff] [blame] | 1352 | /* The phase read from the bus is valid if either REQ is (already) |
| 1353 | * asserted or if ACK hasn't been released yet. The latter applies if |
| 1354 | * we're in MSG IN, DATA IN or STATUS and all bytes have been received. |
| 1355 | */ |
| 1356 | if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | *phase = tmp & PHASE_MASK; |
| 1358 | else |
| 1359 | *phase = PHASE_UNKNOWN; |
| 1360 | |
| 1361 | if (!c || (*phase == p)) |
| 1362 | return 0; |
| 1363 | else |
| 1364 | return -1; |
| 1365 | } |
| 1366 | |
| 1367 | /** |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1368 | * do_reset - issue a reset command |
| 1369 | * @instance: adapter to reset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | * |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1371 | * Issue a reset sequence to the NCR5380 and try and get the bus |
| 1372 | * back into sane shape. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | * |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1374 | * This clears the reset interrupt flag because there may be no handler for |
| 1375 | * it. When the driver is initialized, the NCR5380_intr() handler has not yet |
| 1376 | * been installed. And when in EH we may have released the ST DMA interrupt. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | */ |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1378 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1379 | static void do_reset(struct Scsi_Host *instance) |
| 1380 | { |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1381 | struct NCR5380_hostdata __maybe_unused *hostdata = shost_priv(instance); |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1382 | unsigned long flags; |
| 1383 | |
| 1384 | local_irq_save(flags); |
| 1385 | NCR5380_write(TARGET_COMMAND_REG, |
| 1386 | PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST); |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1388 | udelay(50); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1390 | (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 1391 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1394 | /** |
| 1395 | * do_abort - abort the currently established nexus by going to |
| 1396 | * MESSAGE OUT phase and sending an ABORT message. |
| 1397 | * @instance: relevant scsi host instance |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | * |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1399 | * Returns 0 on success, negative error code on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | */ |
| 1401 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1402 | static int do_abort(struct Scsi_Host *instance) |
| 1403 | { |
Finn Thain | 61e1ce5 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1404 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | unsigned char *msgptr, phase, tmp; |
| 1406 | int len; |
| 1407 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | |
| 1409 | /* Request message out phase */ |
| 1410 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1411 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1412 | /* |
| 1413 | * Wait for the target to indicate a valid phase by asserting |
| 1414 | * REQ. Once this happens, we'll have either a MSGOUT phase |
| 1415 | * and can immediately send the ABORT message, or we'll have some |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | * other phase and will have to source/sink data. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1417 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | * We really don't care what value was on the bus or what value |
| 1419 | * the target sees, so we just handshake. |
| 1420 | */ |
| 1421 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1422 | rc = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, 10 * HZ); |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 1423 | if (rc < 0) |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1424 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | |
Finn Thain | f35d347 | 2016-01-03 16:05:33 +1100 | [diff] [blame] | 1426 | tmp = NCR5380_read(STATUS_REG) & PHASE_MASK; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp)); |
| 1429 | |
Finn Thain | f35d347 | 2016-01-03 16:05:33 +1100 | [diff] [blame] | 1430 | if (tmp != PHASE_MSGOUT) { |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1431 | NCR5380_write(INITIATOR_COMMAND_REG, |
| 1432 | ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK); |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1433 | rc = NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, 0, 3 * HZ); |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 1434 | if (rc < 0) |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1435 | goto out; |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1436 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | tmp = ABORT; |
| 1440 | msgptr = &tmp; |
| 1441 | len = 1; |
| 1442 | phase = PHASE_MSGOUT; |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1443 | NCR5380_transfer_pio(instance, &phase, &len, &msgptr); |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1444 | if (len) |
| 1445 | rc = -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
| 1447 | /* |
| 1448 | * If we got here, and the command completed successfully, |
| 1449 | * we're about to go into bus free state. |
| 1450 | */ |
| 1451 | |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1452 | out: |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1453 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1454 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1457 | /* |
| 1458 | * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1459 | * unsigned char *phase, int *count, unsigned char **data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | * |
| 1461 | * Purpose : transfers data in given phase using either real |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1462 | * or pseudo DMA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1464 | * Inputs : instance - instance of driver, *phase - pointer to |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1465 | * what phase is expected, *count - pointer to number of |
| 1466 | * bytes to transfer, **data - pointer to data pointer. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1467 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | * Returns : -1 when different phase is entered without transferring |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1469 | * maximum number of bytes, 0 if all bytes or transferred or exit |
| 1470 | * is in same phase. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1472 | * Also, *phase, *count, *data are modified in place. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | */ |
| 1474 | |
| 1475 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1476 | static int NCR5380_transfer_dma(struct Scsi_Host *instance, |
| 1477 | unsigned char *phase, int *count, |
| 1478 | unsigned char **data) |
| 1479 | { |
| 1480 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | f0ea73a | 2016-03-23 21:10:26 +1100 | [diff] [blame] | 1481 | int c = *count; |
| 1482 | unsigned char p = *phase; |
| 1483 | unsigned char *d = *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | unsigned char tmp; |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1485 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) { |
| 1488 | *phase = tmp; |
| 1489 | return -1; |
| 1490 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1492 | hostdata->connected->SCp.phase = p; |
| 1493 | |
| 1494 | if (p & SR_IO) { |
| 1495 | if (hostdata->read_overruns) |
| 1496 | c -= hostdata->read_overruns; |
| 1497 | else if (hostdata->flags & FLAG_DMA_FIXUP) |
| 1498 | --c; |
| 1499 | } |
| 1500 | |
| 1501 | dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n", |
| 1502 | (p & SR_IO) ? "receive" : "send", c, d); |
| 1503 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1504 | #ifdef CONFIG_SUN3 |
| 1505 | /* send start chain */ |
| 1506 | sun3scsi_dma_start(c, *data); |
| 1507 | #endif |
| 1508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p)); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1510 | NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY | |
| 1511 | MR_ENABLE_EOP_INTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1513 | if (!(hostdata->flags & FLAG_LATE_DMA_SETUP)) { |
| 1514 | /* On the Medusa, it is a must to initialize the DMA before |
| 1515 | * starting the NCR. This is also the cleaner way for the TT. |
| 1516 | */ |
| 1517 | if (p & SR_IO) |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1518 | result = NCR5380_dma_recv_setup(hostdata, d, c); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1519 | else |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1520 | result = NCR5380_dma_send_setup(hostdata, d, c); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1523 | /* |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1524 | * On the PAS16 at least I/O recovery delays are not needed here. |
| 1525 | * Everyone else seems to want them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | */ |
| 1527 | |
| 1528 | if (p & SR_IO) { |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1529 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | e5d55d1 | 2016-03-23 21:10:16 +1100 | [diff] [blame] | 1530 | NCR5380_io_delay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0); |
| 1532 | } else { |
Finn Thain | e5d55d1 | 2016-03-23 21:10:16 +1100 | [diff] [blame] | 1533 | NCR5380_io_delay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA); |
Finn Thain | e5d55d1 | 2016-03-23 21:10:16 +1100 | [diff] [blame] | 1535 | NCR5380_io_delay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | NCR5380_write(START_DMA_SEND_REG, 0); |
Finn Thain | e5d55d1 | 2016-03-23 21:10:16 +1100 | [diff] [blame] | 1537 | NCR5380_io_delay(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | } |
| 1539 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1540 | #ifdef CONFIG_SUN3 |
| 1541 | #ifdef SUN3_SCSI_VME |
| 1542 | dregs->csr |= CSR_DMA_ENABLE; |
| 1543 | #endif |
| 1544 | sun3_dma_active = 1; |
| 1545 | #endif |
| 1546 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1547 | if (hostdata->flags & FLAG_LATE_DMA_SETUP) { |
| 1548 | /* On the Falcon, the DMA setup must be done after the last |
| 1549 | * NCR access, else the DMA setup gets trashed! |
| 1550 | */ |
| 1551 | if (p & SR_IO) |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1552 | result = NCR5380_dma_recv_setup(hostdata, d, c); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1553 | else |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1554 | result = NCR5380_dma_send_setup(hostdata, d, c); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1555 | } |
| 1556 | |
| 1557 | /* On failure, NCR5380_dma_xxxx_setup() returns a negative int. */ |
| 1558 | if (result < 0) |
| 1559 | return result; |
| 1560 | |
| 1561 | /* For real DMA, result is the byte count. DMA interrupt is expected. */ |
| 1562 | if (result > 0) { |
| 1563 | hostdata->dma_len = result; |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
| 1567 | /* The result is zero iff pseudo DMA send/receive was completed. */ |
| 1568 | hostdata->dma_len = c; |
| 1569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | /* |
Finn Thain | e4dec68 | 2016-03-23 21:10:12 +1100 | [diff] [blame] | 1571 | * A note regarding the DMA errata workarounds for early NMOS silicon. |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 1572 | * |
| 1573 | * For DMA sends, we want to wait until the last byte has been |
| 1574 | * transferred out over the bus before we turn off DMA mode. Alas, there |
| 1575 | * seems to be no terribly good way of doing this on a 5380 under all |
| 1576 | * conditions. For non-scatter-gather operations, we can wait until REQ |
| 1577 | * and ACK both go false, or until a phase mismatch occurs. Gather-sends |
| 1578 | * are nastier, since the device will be expecting more data than we |
| 1579 | * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we |
| 1580 | * could test Last Byte Sent to assure transfer (I imagine this is precisely |
| 1581 | * why this signal was added to the newer chips) but on the older 538[01] |
| 1582 | * this signal does not exist. The workaround for this lack is a watchdog; |
| 1583 | * we bail out of the wait-loop after a modest amount of wait-time if |
| 1584 | * the usual exit conditions are not met. Not a terribly clean or |
| 1585 | * correct solution :-% |
| 1586 | * |
| 1587 | * DMA receive is equally tricky due to a nasty characteristic of the NCR5380. |
| 1588 | * If the chip is in DMA receive mode, it will respond to a target's |
| 1589 | * REQ by latching the SCSI data into the INPUT DATA register and asserting |
| 1590 | * ACK, even if it has _already_ been notified by the DMA controller that |
| 1591 | * the current DMA transfer has completed! If the NCR5380 is then taken |
| 1592 | * out of DMA mode, this already-acknowledged byte is lost. This is |
| 1593 | * not a problem for "one DMA transfer per READ command", because |
| 1594 | * the situation will never arise... either all of the data is DMA'ed |
| 1595 | * properly, or the target switches to MESSAGE IN phase to signal a |
| 1596 | * disconnection (either operation bringing the DMA to a clean halt). |
| 1597 | * However, in order to handle scatter-receive, we must work around the |
Finn Thain | e4dec68 | 2016-03-23 21:10:12 +1100 | [diff] [blame] | 1598 | * problem. The chosen fix is to DMA fewer bytes, then check for the |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 1599 | * condition before taking the NCR5380 out of DMA mode. One or two extra |
| 1600 | * bytes are transferred via PIO as necessary to fill out the original |
| 1601 | * request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | */ |
| 1603 | |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1604 | if (hostdata->flags & FLAG_DMA_FIXUP) { |
| 1605 | if (p & SR_IO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | /* |
Finn Thain | e4dec68 | 2016-03-23 21:10:12 +1100 | [diff] [blame] | 1607 | * The workaround was to transfer fewer bytes than we |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1608 | * intended to with the pseudo-DMA read function, wait for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | * the chip to latch the last byte, read it, and then disable |
| 1610 | * pseudo-DMA mode. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1611 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | * After REQ is asserted, the NCR5380 asserts DRQ and ACK. |
| 1613 | * REQ is deasserted when ACK is asserted, and not reasserted |
| 1614 | * until ACK goes false. Since the NCR5380 won't lower ACK |
| 1615 | * until DACK is asserted, which won't happen unless we twiddle |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1616 | * the DMA port or we take the NCR5380 out of DMA mode, we |
| 1617 | * can guarantee that we won't handshake another extra |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | * byte. |
| 1619 | */ |
| 1620 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1621 | if (NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1622 | BASR_DRQ, BASR_DRQ, HZ) < 0) { |
Finn Thain | 438af51 | 2016-03-23 21:10:18 +1100 | [diff] [blame] | 1623 | result = -1; |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1624 | shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | } |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1626 | if (NCR5380_poll_politely(hostdata, STATUS_REG, |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1627 | SR_REQ, 0, HZ) < 0) { |
Finn Thain | 438af51 | 2016-03-23 21:10:18 +1100 | [diff] [blame] | 1628 | result = -1; |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1629 | shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n"); |
| 1630 | } |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1631 | d[*count - 1] = NCR5380_read(INPUT_DATA_REG); |
| 1632 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1634 | * Wait for the last byte to be sent. If REQ is being asserted for |
| 1635 | * the byte we're interested, we'll ACK it and it will go false. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | */ |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1637 | if (NCR5380_poll_politely2(hostdata, |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1638 | BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ, |
| 1639 | BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) { |
Finn Thain | 438af51 | 2016-03-23 21:10:18 +1100 | [diff] [blame] | 1640 | result = -1; |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1641 | shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | } |
| 1643 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | } |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1645 | |
| 1646 | NCR5380_dma_complete(instance); |
Finn Thain | 438af51 | 2016-03-23 21:10:18 +1100 | [diff] [blame] | 1647 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
| 1650 | /* |
| 1651 | * Function : NCR5380_information_transfer (struct Scsi_Host *instance) |
| 1652 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1653 | * Purpose : run through the various SCSI phases and do as the target |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1654 | * directs us to. Operates on the currently connected command, |
| 1655 | * instance->connected. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | * |
| 1657 | * Inputs : instance, instance for which we are doing commands |
| 1658 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1659 | * Side effects : SCSI things happen, the disconnected queue will be |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1660 | * modified if a command disconnects, *instance->connected will |
| 1661 | * change. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1663 | * XXX Note : we need to watch for bus free or a reset condition here |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1664 | * to recover from an unexpected bus free condition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | */ |
| 1666 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1667 | static void NCR5380_information_transfer(struct Scsi_Host *instance) |
Finn Thain | 4ab2a78 | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 1668 | __releases(&hostdata->lock) __acquires(&hostdata->lock) |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1669 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 1670 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | unsigned char msgout = NOP; |
| 1672 | int sink = 0; |
| 1673 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | int transfersize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | unsigned char *data; |
| 1676 | unsigned char phase, tmp, extended_msg[10], old_phase = 0xff; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1677 | struct scsi_cmnd *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1679 | #ifdef SUN3_SCSI_VME |
| 1680 | dregs->csr |= CSR_INTR; |
| 1681 | #endif |
| 1682 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1683 | while ((cmd = hostdata->connected)) { |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 1684 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd); |
| 1685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | tmp = NCR5380_read(STATUS_REG); |
| 1687 | /* We only have a valid SCSI phase when REQ is asserted */ |
| 1688 | if (tmp & SR_REQ) { |
| 1689 | phase = (tmp & PHASE_MASK); |
| 1690 | if (phase != old_phase) { |
| 1691 | old_phase = phase; |
| 1692 | NCR5380_dprint_phase(NDEBUG_INFORMATION, instance); |
| 1693 | } |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1694 | #ifdef CONFIG_SUN3 |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1695 | if (phase == PHASE_CMDOUT && |
| 1696 | sun3_dma_setup_done != cmd) { |
| 1697 | int count; |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1698 | |
Finn Thain | 0e9fdd2 | 2019-06-18 09:37:57 +0800 | [diff] [blame] | 1699 | advance_sg_buffer(cmd); |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1700 | |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1701 | count = sun3scsi_dma_xfer_len(hostdata, cmd); |
| 1702 | |
| 1703 | if (count > 0) { |
| 1704 | if (rq_data_dir(cmd->request)) |
| 1705 | sun3scsi_dma_send_setup(hostdata, |
| 1706 | cmd->SCp.ptr, count); |
| 1707 | else |
| 1708 | sun3scsi_dma_recv_setup(hostdata, |
| 1709 | cmd->SCp.ptr, count); |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1710 | sun3_dma_setup_done = cmd; |
| 1711 | } |
| 1712 | #ifdef SUN3_SCSI_VME |
| 1713 | dregs->csr |= CSR_INTR; |
| 1714 | #endif |
| 1715 | } |
| 1716 | #endif /* CONFIG_SUN3 */ |
| 1717 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | if (sink && (phase != PHASE_MSGOUT)) { |
| 1719 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp)); |
| 1720 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1721 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | |
| 1722 | ICR_ASSERT_ACK); |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1723 | while (NCR5380_read(STATUS_REG) & SR_REQ) |
| 1724 | ; |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1725 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1726 | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | sink = 0; |
| 1728 | continue; |
| 1729 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1730 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | switch (phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | case PHASE_DATAOUT: |
| 1733 | #if (NDEBUG & NDEBUG_NO_DATAOUT) |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1734 | shost_printk(KERN_DEBUG, instance, "NDEBUG_NO_DATAOUT set, attempted DATAOUT aborted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | sink = 1; |
| 1736 | do_abort(instance); |
| 1737 | cmd->result = DID_ERROR << 16; |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 1738 | complete_cmd(instance, cmd); |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 1739 | hostdata->connected = NULL; |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1740 | hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | return; |
| 1742 | #endif |
Finn Thain | bf1a0c6f | 2016-01-03 16:05:47 +1100 | [diff] [blame] | 1743 | case PHASE_DATAIN: |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1744 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | * If there is no room left in the current buffer in the |
| 1746 | * scatter-gather list, move onto the next one. |
| 1747 | */ |
| 1748 | |
Finn Thain | 0e9fdd2 | 2019-06-18 09:37:57 +0800 | [diff] [blame] | 1749 | advance_sg_buffer(cmd); |
| 1750 | dsprintk(NDEBUG_INFORMATION, instance, |
| 1751 | "this residual %d, sg ents %d\n", |
| 1752 | cmd->SCp.this_residual, |
| 1753 | sg_nents(cmd->SCp.buffer)); |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1756 | * The preferred transfer method is going to be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | * PSEUDO-DMA for systems that are strictly PIO, |
| 1758 | * since we can let the hardware do the handshaking. |
| 1759 | * |
| 1760 | * For this to work, we need to know the transfersize |
| 1761 | * ahead of time, since the pseudo-DMA code will sit |
| 1762 | * in an unconditional loop. |
| 1763 | */ |
| 1764 | |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 1765 | transfersize = 0; |
Finn Thain | 7e9ec8d | 2016-03-23 21:10:11 +1100 | [diff] [blame] | 1766 | if (!cmd->device->borken) |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 1767 | transfersize = NCR5380_dma_xfer_len(hostdata, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | |
Finn Thain | 438af51 | 2016-03-23 21:10:18 +1100 | [diff] [blame] | 1769 | if (transfersize > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 | len = transfersize; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1771 | if (NCR5380_transfer_dma(instance, &phase, |
| 1772 | &len, (unsigned char **)&cmd->SCp.ptr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | /* |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1774 | * If the watchdog timer fires, all future |
| 1775 | * accesses to this device will use the |
| 1776 | * polled-IO. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | */ |
Jeff Garzik | 017560f | 2005-10-24 18:04:36 -0400 | [diff] [blame] | 1778 | scmd_printk(KERN_INFO, cmd, |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1779 | "switching to slow handshake\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | cmd->device->borken = 1; |
Finn Thain | f9dfed1 | 2019-06-09 11:19:11 +1000 | [diff] [blame] | 1781 | do_reset(instance); |
| 1782 | bus_reset_cleanup(instance); |
Finn Thain | 8053b0e | 2016-03-23 21:10:19 +1100 | [diff] [blame] | 1783 | } |
Finn Thain | f825e40 | 2016-03-23 21:10:15 +1100 | [diff] [blame] | 1784 | } else { |
Finn Thain | 08348b1 | 2016-08-31 14:44:56 +1000 | [diff] [blame] | 1785 | /* Transfer a small chunk so that the |
| 1786 | * irq mode lock is not held too long. |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1787 | */ |
Finn Thain | 08348b1 | 2016-08-31 14:44:56 +1000 | [diff] [blame] | 1788 | transfersize = min(cmd->SCp.this_residual, |
| 1789 | NCR5380_PIO_CHUNK_SIZE); |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1790 | len = transfersize; |
| 1791 | NCR5380_transfer_pio(instance, &phase, &len, |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1792 | (unsigned char **)&cmd->SCp.ptr); |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1793 | cmd->SCp.this_residual -= transfersize - len; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1794 | } |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1795 | #ifdef CONFIG_SUN3 |
| 1796 | if (sun3_dma_setup_done == cmd) |
| 1797 | sun3_dma_setup_done = NULL; |
| 1798 | #endif |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1799 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | case PHASE_MSGIN: |
| 1801 | len = 1; |
| 1802 | data = &tmp; |
| 1803 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 1804 | cmd->SCp.Message = tmp; |
| 1805 | |
| 1806 | switch (tmp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | case ABORT: |
| 1808 | case COMMAND_COMPLETE: |
| 1809 | /* Accept message by clearing ACK */ |
| 1810 | sink = 1; |
| 1811 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 1812 | dsprintk(NDEBUG_QUEUES, instance, |
| 1813 | "COMMAND COMPLETE %p target %d lun %llu\n", |
| 1814 | cmd, scmd_id(cmd), cmd->device->lun); |
| 1815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | hostdata->connected = NULL; |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1817 | hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1819 | cmd->result &= ~0xffff; |
| 1820 | cmd->result |= cmd->SCp.Status; |
| 1821 | cmd->result |= cmd->SCp.Message << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Finn Thain | 350767f | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 1823 | set_resid_from_SCp(cmd); |
| 1824 | |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1825 | if (cmd->cmnd[0] == REQUEST_SENSE) |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 1826 | complete_cmd(instance, cmd); |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1827 | else { |
| 1828 | if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION || |
| 1829 | cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) { |
| 1830 | dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n", |
| 1831 | cmd); |
| 1832 | list_add_tail(&ncmd->list, |
| 1833 | &hostdata->autosense); |
| 1834 | } else |
| 1835 | complete_cmd(instance, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | } |
| 1837 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1838 | /* |
| 1839 | * Restore phase bits to 0 so an interrupted selection, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | * arbitration can resume. |
| 1841 | */ |
| 1842 | NCR5380_write(TARGET_COMMAND_REG, 0); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1843 | |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 1844 | maybe_release_dma_irq(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | return; |
| 1846 | case MESSAGE_REJECT: |
| 1847 | /* Accept message by clearing ACK */ |
| 1848 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1849 | switch (hostdata->last_message) { |
| 1850 | case HEAD_OF_QUEUE_TAG: |
| 1851 | case ORDERED_QUEUE_TAG: |
| 1852 | case SIMPLE_QUEUE_TAG: |
| 1853 | cmd->device->simple_tags = 0; |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1854 | hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | break; |
| 1856 | default: |
| 1857 | break; |
| 1858 | } |
Finn Thain | 340b961 | 2016-01-03 16:05:31 +1100 | [diff] [blame] | 1859 | break; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1860 | case DISCONNECT: |
| 1861 | /* Accept message by clearing ACK */ |
| 1862 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1863 | hostdata->connected = NULL; |
| 1864 | list_add(&ncmd->list, &hostdata->disconnected); |
| 1865 | dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES, |
| 1866 | instance, "connected command %p for target %d lun %llu moved to disconnected queue\n", |
| 1867 | cmd, scmd_id(cmd), cmd->device->lun); |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 1868 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1869 | /* |
| 1870 | * Restore phase bits to 0 so an interrupted selection, |
| 1871 | * arbitration can resume. |
| 1872 | */ |
| 1873 | NCR5380_write(TARGET_COMMAND_REG, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 1875 | #ifdef SUN3_SCSI_VME |
| 1876 | dregs->csr |= CSR_DMA_ENABLE; |
| 1877 | #endif |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1878 | return; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1879 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | * The SCSI data pointer is *IMPLICITLY* saved on a disconnect |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1881 | * operation, in violation of the SCSI spec so we can safely |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | * ignore SAVE/RESTORE pointers calls. |
| 1883 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1884 | * Unfortunately, some disks violate the SCSI spec and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | * don't issue the required SAVE_POINTERS message before |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1886 | * disconnecting, and we have to break spec to remain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | * compatible. |
| 1888 | */ |
| 1889 | case SAVE_POINTERS: |
| 1890 | case RESTORE_POINTERS: |
| 1891 | /* Accept message by clearing ACK */ |
| 1892 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1893 | break; |
| 1894 | case EXTENDED_MESSAGE: |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 1895 | /* |
| 1896 | * Start the message buffer with the EXTENDED_MESSAGE |
| 1897 | * byte, since spi_print_msg() wants the whole thing. |
| 1898 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | extended_msg[0] = EXTENDED_MESSAGE; |
| 1900 | /* Accept first byte by clearing ACK */ |
| 1901 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1902 | |
| 1903 | spin_unlock_irq(&hostdata->lock); |
| 1904 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1905 | dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | |
| 1907 | len = 2; |
| 1908 | data = extended_msg + 1; |
| 1909 | phase = PHASE_MSGIN; |
| 1910 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1911 | dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n", |
| 1912 | (int)extended_msg[1], |
| 1913 | (int)extended_msg[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | |
Finn Thain | e0783ed | 2016-01-03 16:05:45 +1100 | [diff] [blame] | 1915 | if (!len && extended_msg[1] > 0 && |
| 1916 | extended_msg[1] <= sizeof(extended_msg) - 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | /* Accept third byte by clearing ACK */ |
| 1918 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1919 | len = extended_msg[1] - 1; |
| 1920 | data = extended_msg + 3; |
| 1921 | phase = PHASE_MSGIN; |
| 1922 | |
| 1923 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1924 | dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n", |
| 1925 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | |
| 1927 | switch (extended_msg[2]) { |
| 1928 | case EXTENDED_SDTR: |
| 1929 | case EXTENDED_WDTR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | tmp = 0; |
| 1931 | } |
| 1932 | } else if (len) { |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1933 | shost_printk(KERN_ERR, instance, "error receiving extended message\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | tmp = 0; |
| 1935 | } else { |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1936 | shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n", |
| 1937 | extended_msg[2], extended_msg[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | tmp = 0; |
| 1939 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1940 | |
| 1941 | spin_lock_irq(&hostdata->lock); |
| 1942 | if (!hostdata->connected) |
| 1943 | return; |
| 1944 | |
Finn Thain | df135e3 | 2019-03-08 08:49:02 +1100 | [diff] [blame] | 1945 | /* Reject message */ |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 1946 | fallthrough; |
Finn Thain | df135e3 | 2019-03-08 08:49:02 +1100 | [diff] [blame] | 1947 | default: |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1948 | /* |
| 1949 | * If we get something weird that we aren't expecting, |
Finn Thain | df135e3 | 2019-03-08 08:49:02 +1100 | [diff] [blame] | 1950 | * log it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | */ |
Finn Thain | 39bef87 | 2017-10-26 16:51:50 +1100 | [diff] [blame] | 1952 | if (tmp == EXTENDED_MESSAGE) |
Jeff Garzik | 017560f | 2005-10-24 18:04:36 -0400 | [diff] [blame] | 1953 | scmd_printk(KERN_INFO, cmd, |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1954 | "rejecting unknown extended message code %02x, length %d\n", |
Finn Thain | 39bef87 | 2017-10-26 16:51:50 +1100 | [diff] [blame] | 1955 | extended_msg[2], extended_msg[1]); |
| 1956 | else if (tmp) |
| 1957 | scmd_printk(KERN_INFO, cmd, |
| 1958 | "rejecting unknown message code %02x\n", |
| 1959 | tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1960 | |
| 1961 | msgout = MESSAGE_REJECT; |
| 1962 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1963 | break; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1964 | } /* switch (tmp) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | break; |
| 1966 | case PHASE_MSGOUT: |
| 1967 | len = 1; |
| 1968 | data = &msgout; |
| 1969 | hostdata->last_message = msgout; |
| 1970 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 1971 | if (msgout == ABORT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | hostdata->connected = NULL; |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 1973 | hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | cmd->result = DID_ERROR << 16; |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 1975 | complete_cmd(instance, cmd); |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 1976 | maybe_release_dma_irq(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | return; |
| 1978 | } |
| 1979 | msgout = NOP; |
| 1980 | break; |
| 1981 | case PHASE_CMDOUT: |
| 1982 | len = cmd->cmd_len; |
| 1983 | data = cmd->cmnd; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1984 | /* |
| 1985 | * XXX for performance reasons, on machines with a |
| 1986 | * PSEUDO-DMA architecture we should probably |
| 1987 | * use the dma transfer function. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | */ |
| 1989 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | break; |
| 1991 | case PHASE_STATIN: |
| 1992 | len = 1; |
| 1993 | data = &tmp; |
| 1994 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 1995 | cmd->SCp.Status = tmp; |
| 1996 | break; |
| 1997 | default: |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1998 | shost_printk(KERN_ERR, instance, "unknown phase\n"); |
Finn Thain | 4dde8f7 | 2014-03-18 11:42:17 +1100 | [diff] [blame] | 1999 | NCR5380_dprint(NDEBUG_ANY, instance); |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2000 | } /* switch(phase) */ |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 2001 | } else { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2002 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 2003 | NCR5380_poll_politely(hostdata, STATUS_REG, SR_REQ, SR_REQ, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2004 | spin_lock_irq(&hostdata->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2006 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | } |
| 2008 | |
| 2009 | /* |
| 2010 | * Function : void NCR5380_reselect (struct Scsi_Host *instance) |
| 2011 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2012 | * Purpose : does reselection, initializing the instance->connected |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 2013 | * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q |
| 2014 | * nexus has been reestablished, |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2015 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | * Inputs : instance - this instance of the NCR5380. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | */ |
| 2018 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2019 | static void NCR5380_reselect(struct Scsi_Host *instance) |
| 2020 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 2021 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | unsigned char target_mask; |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2023 | unsigned char lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | unsigned char msg[3]; |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2025 | struct NCR5380_cmd *ncmd; |
| 2026 | struct scsi_cmnd *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | |
| 2028 | /* |
| 2029 | * Disable arbitration, etc. since the host adapter obviously |
| 2030 | * lost, and tell an interrupted NCR5380_select() to restart. |
| 2031 | */ |
| 2032 | |
| 2033 | NCR5380_write(MODE_REG, MR_BASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
| 2035 | target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask); |
Finn Thain | 7ef55f6 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2036 | if (!target_mask || target_mask & (target_mask - 1)) { |
| 2037 | shost_printk(KERN_WARNING, instance, |
| 2038 | "reselect: bad target_mask 0x%02x\n", target_mask); |
| 2039 | return; |
| 2040 | } |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 2041 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2042 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | * At this point, we have detected that our SCSI ID is on the bus, |
| 2044 | * SEL is true and BSY was false for at least one bus settle delay |
| 2045 | * (400 ns). |
| 2046 | * |
| 2047 | * We must assert BSY ourselves, until the target drops the SEL |
| 2048 | * signal. |
| 2049 | */ |
| 2050 | |
| 2051 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY); |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 2052 | if (NCR5380_poll_politely(hostdata, |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2053 | STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) { |
Finn Thain | 0826721 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2054 | shost_printk(KERN_ERR, instance, "reselect: !SEL timeout\n"); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2055 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2056 | return; |
| 2057 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2059 | |
| 2060 | /* |
| 2061 | * Wait for target to go into MSGIN. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | */ |
| 2063 | |
Finn Thain | d5d37a0 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 2064 | if (NCR5380_poll_politely(hostdata, |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2065 | STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) { |
Finn Thain | ca694af | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2066 | if ((NCR5380_read(STATUS_REG) & (SR_BSY | SR_SEL)) == 0) |
| 2067 | /* BUS FREE phase */ |
| 2068 | return; |
Finn Thain | 0826721 | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2069 | shost_printk(KERN_ERR, instance, "reselect: REQ timeout\n"); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2070 | do_abort(instance); |
| 2071 | return; |
| 2072 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2074 | #ifdef CONFIG_SUN3 |
| 2075 | /* acknowledge toggle to MSGIN */ |
| 2076 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(PHASE_MSGIN)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2078 | /* peek at the byte without really hitting the bus */ |
| 2079 | msg[0] = NCR5380_read(CURRENT_SCSI_DATA_REG); |
| 2080 | #else |
| 2081 | { |
| 2082 | int len = 1; |
| 2083 | unsigned char *data = msg; |
| 2084 | unsigned char phase = PHASE_MSGIN; |
| 2085 | |
| 2086 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 2087 | |
| 2088 | if (len) { |
| 2089 | do_abort(instance); |
| 2090 | return; |
| 2091 | } |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2092 | } |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2093 | #endif /* CONFIG_SUN3 */ |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | if (!(msg[0] & 0x80)) { |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2096 | shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got "); |
Matthew Wilcox | 1abfd37 | 2005-12-15 16:22:01 -0500 | [diff] [blame] | 2097 | spi_print_msg(msg); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2098 | printk("\n"); |
| 2099 | do_abort(instance); |
| 2100 | return; |
| 2101 | } |
| 2102 | lun = msg[0] & 0x07; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2104 | /* |
| 2105 | * We need to add code for SCSI-II to track which devices have |
| 2106 | * I_T_L_Q nexuses established, and which have simple I_T_L |
| 2107 | * nexuses so we can chose to do additional data transfer. |
| 2108 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2110 | /* |
| 2111 | * Find the command corresponding to the I_T_L or I_T_L_Q nexus we |
| 2112 | * just reestablished, and remove it from the disconnected queue. |
| 2113 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2115 | tmp = NULL; |
| 2116 | list_for_each_entry(ncmd, &hostdata->disconnected, list) { |
| 2117 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2118 | |
| 2119 | if (target_mask == (1 << scmd_id(cmd)) && |
| 2120 | lun == (u8)cmd->device->lun) { |
| 2121 | list_del(&ncmd->list); |
| 2122 | tmp = cmd; |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2123 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | } |
| 2125 | } |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 2126 | |
| 2127 | if (tmp) { |
| 2128 | dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance, |
| 2129 | "reselect: removed %p from disconnected queue\n", tmp); |
| 2130 | } else { |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2131 | int target = ffs(target_mask) - 1; |
| 2132 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2133 | shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n", |
| 2134 | target_mask, lun); |
| 2135 | /* |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2136 | * Since we have an established nexus that we can't do anything |
| 2137 | * with, we must abort it. |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2138 | */ |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2139 | if (do_abort(instance) == 0) |
| 2140 | hostdata->busy[target] &= ~(1 << lun); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2141 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | } |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2143 | |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2144 | #ifdef CONFIG_SUN3 |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 2145 | if (sun3_dma_setup_done != tmp) { |
| 2146 | int count; |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2147 | |
Finn Thain | 0e9fdd2 | 2019-06-18 09:37:57 +0800 | [diff] [blame] | 2148 | advance_sg_buffer(tmp); |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2149 | |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 2150 | count = sun3scsi_dma_xfer_len(hostdata, tmp); |
| 2151 | |
| 2152 | if (count > 0) { |
| 2153 | if (rq_data_dir(tmp->request)) |
| 2154 | sun3scsi_dma_send_setup(hostdata, |
| 2155 | tmp->SCp.ptr, count); |
| 2156 | else |
| 2157 | sun3scsi_dma_recv_setup(hostdata, |
| 2158 | tmp->SCp.ptr, count); |
Finn Thain | e9db319 | 2016-03-23 21:10:21 +1100 | [diff] [blame] | 2159 | sun3_dma_setup_done = tmp; |
| 2160 | } |
| 2161 | } |
| 2162 | |
| 2163 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK); |
| 2164 | #endif /* CONFIG_SUN3 */ |
| 2165 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2166 | /* Accept message by clearing ACK */ |
| 2167 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2168 | |
| 2169 | hostdata->connected = tmp; |
Finn Thain | c4ec6f9 | 2016-03-23 21:10:22 +1100 | [diff] [blame] | 2170 | dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu\n", |
| 2171 | scmd_id(tmp), tmp->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | } |
| 2173 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2174 | /** |
| 2175 | * list_find_cmd - test for presence of a command in a linked list |
| 2176 | * @haystack: list of commands |
| 2177 | * @needle: command to search for |
| 2178 | */ |
| 2179 | |
| 2180 | static bool list_find_cmd(struct list_head *haystack, |
| 2181 | struct scsi_cmnd *needle) |
| 2182 | { |
| 2183 | struct NCR5380_cmd *ncmd; |
| 2184 | |
| 2185 | list_for_each_entry(ncmd, haystack, list) |
| 2186 | if (NCR5380_to_scmd(ncmd) == needle) |
| 2187 | return true; |
| 2188 | return false; |
| 2189 | } |
| 2190 | |
| 2191 | /** |
| 2192 | * list_remove_cmd - remove a command from linked list |
| 2193 | * @haystack: list of commands |
| 2194 | * @needle: command to remove |
| 2195 | */ |
| 2196 | |
| 2197 | static bool list_del_cmd(struct list_head *haystack, |
| 2198 | struct scsi_cmnd *needle) |
| 2199 | { |
| 2200 | if (list_find_cmd(haystack, needle)) { |
| 2201 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle); |
| 2202 | |
| 2203 | list_del(&ncmd->list); |
| 2204 | return true; |
| 2205 | } |
| 2206 | return false; |
| 2207 | } |
| 2208 | |
| 2209 | /** |
| 2210 | * NCR5380_abort - scsi host eh_abort_handler() method |
| 2211 | * @cmd: the command to be aborted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2213 | * Try to abort a given command by removing it from queues and/or sending |
| 2214 | * the target an abort message. This may not succeed in causing a target |
| 2215 | * to abort the command. Nonetheless, the low-level driver must forget about |
| 2216 | * the command because the mid-layer reclaims it and it may be re-issued. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2218 | * The normal path taken by a command is as follows. For EH we trace this |
| 2219 | * same path to locate and abort the command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2220 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2221 | * unissued -> selecting -> [unissued -> selecting ->]... connected -> |
| 2222 | * [disconnected -> connected ->]... |
| 2223 | * [autosense -> connected ->] done |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2225 | * If cmd was not found at all then presumably it has already been completed, |
| 2226 | * in which case return SUCCESS to try to avoid further EH measures. |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2227 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2228 | * If the command has not completed yet, we must not fail to find it. |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2229 | * We have no option but to forget the aborted command (even if it still |
| 2230 | * lacks sense data). The mid-layer may re-issue a command that is in error |
| 2231 | * recovery (see scsi_send_eh_cmnd), but the logic and data structures in |
| 2232 | * this driver are such that a command can appear on one queue only. |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2233 | * |
| 2234 | * The lock protects driver data structures, but EH handlers also use it |
| 2235 | * to serialize their own execution and prevent their own re-entry. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | */ |
| 2237 | |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 2238 | static int NCR5380_abort(struct scsi_cmnd *cmd) |
| 2239 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | struct Scsi_Host *instance = cmd->device->host; |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 2241 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2242 | unsigned long flags; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2243 | int result = SUCCESS; |
Hannes Reinecke | 1fa6b5f | 2014-10-24 14:26:58 +0200 | [diff] [blame] | 2244 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2245 | spin_lock_irqsave(&hostdata->lock, flags); |
| 2246 | |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2247 | #if (NDEBUG & NDEBUG_ANY) |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2248 | scmd_printk(KERN_INFO, cmd, __func__); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2249 | #endif |
Finn Thain | e5c3fdd | 2016-01-03 16:05:52 +1100 | [diff] [blame] | 2250 | NCR5380_dprint(NDEBUG_ANY, instance); |
| 2251 | NCR5380_dprint_phase(NDEBUG_ANY, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2253 | if (list_del_cmd(&hostdata->unissued, cmd)) { |
| 2254 | dsprintk(NDEBUG_ABORT, instance, |
| 2255 | "abort: removed %p from issue queue\n", cmd); |
| 2256 | cmd->result = DID_ABORT << 16; |
| 2257 | cmd->scsi_done(cmd); /* No tag or busy flag to worry about */ |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2258 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2259 | } |
| 2260 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 2261 | if (hostdata->selecting == cmd) { |
| 2262 | dsprintk(NDEBUG_ABORT, instance, |
| 2263 | "abort: cmd %p == selecting\n", cmd); |
| 2264 | hostdata->selecting = NULL; |
| 2265 | cmd->result = DID_ABORT << 16; |
| 2266 | complete_cmd(instance, cmd); |
| 2267 | goto out; |
| 2268 | } |
| 2269 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2270 | if (list_del_cmd(&hostdata->disconnected, cmd)) { |
| 2271 | dsprintk(NDEBUG_ABORT, instance, |
| 2272 | "abort: removed %p from disconnected list\n", cmd); |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2273 | /* Can't call NCR5380_select() and send ABORT because that |
| 2274 | * means releasing the lock. Need a bus reset. |
| 2275 | */ |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2276 | set_host_byte(cmd, DID_ERROR); |
| 2277 | complete_cmd(instance, cmd); |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2278 | result = FAILED; |
| 2279 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2280 | } |
| 2281 | |
| 2282 | if (hostdata->connected == cmd) { |
| 2283 | dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd); |
| 2284 | hostdata->connected = NULL; |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2285 | hostdata->dma_len = 0; |
Finn Thain | d04fc41a | 2019-11-16 14:36:57 +1100 | [diff] [blame] | 2286 | if (do_abort(instance) < 0) { |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2287 | set_host_byte(cmd, DID_ERROR); |
| 2288 | complete_cmd(instance, cmd); |
| 2289 | result = FAILED; |
| 2290 | goto out; |
| 2291 | } |
| 2292 | set_host_byte(cmd, DID_ABORT); |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2293 | complete_cmd(instance, cmd); |
| 2294 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2295 | } |
| 2296 | |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2297 | if (list_del_cmd(&hostdata->autosense, cmd)) { |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2298 | dsprintk(NDEBUG_ABORT, instance, |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2299 | "abort: removed %p from sense queue\n", cmd); |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2300 | complete_cmd(instance, cmd); |
| 2301 | } |
| 2302 | |
| 2303 | out: |
| 2304 | if (result == FAILED) |
| 2305 | dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd); |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2306 | else { |
| 2307 | hostdata->busy[scmd_id(cmd)] &= ~(1 << cmd->device->lun); |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2308 | dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd); |
Finn Thain | 45ddc1b | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2309 | } |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2310 | |
| 2311 | queue_work(hostdata->work_q, &hostdata->main_task); |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 2312 | maybe_release_dma_irq(instance); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2313 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2314 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2315 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | |
Finn Thain | 6b0e87a | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2319 | static void bus_reset_cleanup(struct Scsi_Host *instance) |
Jeff Garzik | 68b3aa7 | 2005-05-28 07:56:31 -0400 | [diff] [blame] | 2320 | { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2321 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2322 | int i; |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2323 | struct NCR5380_cmd *ncmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2325 | /* reset NCR registers */ |
| 2326 | NCR5380_write(MODE_REG, MR_BASE); |
| 2327 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 2328 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 2329 | |
| 2330 | /* After the reset, there are no more connected or disconnected commands |
| 2331 | * and no busy units; so clear the low-level status here to avoid |
| 2332 | * conflicts when the mid-level code tries to wake up the affected |
| 2333 | * commands! |
| 2334 | */ |
| 2335 | |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2336 | if (hostdata->selecting) { |
| 2337 | hostdata->selecting->result = DID_RESET << 16; |
| 2338 | complete_cmd(instance, hostdata->selecting); |
| 2339 | hostdata->selecting = NULL; |
| 2340 | } |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2341 | |
| 2342 | list_for_each_entry(ncmd, &hostdata->disconnected, list) { |
| 2343 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2344 | |
| 2345 | set_host_byte(cmd, DID_RESET); |
Finn Thain | 216fad9 | 2016-03-23 21:10:32 +1100 | [diff] [blame] | 2346 | complete_cmd(instance, cmd); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2347 | } |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2348 | INIT_LIST_HEAD(&hostdata->disconnected); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2349 | |
| 2350 | list_for_each_entry(ncmd, &hostdata->autosense, list) { |
| 2351 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2352 | |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2353 | cmd->scsi_done(cmd); |
| 2354 | } |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2355 | INIT_LIST_HEAD(&hostdata->autosense); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2356 | |
| 2357 | if (hostdata->connected) { |
| 2358 | set_host_byte(hostdata->connected, DID_RESET); |
| 2359 | complete_cmd(instance, hostdata->connected); |
| 2360 | hostdata->connected = NULL; |
| 2361 | } |
| 2362 | |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2363 | for (i = 0; i < 8; ++i) |
| 2364 | hostdata->busy[i] = 0; |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2365 | hostdata->dma_len = 0; |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2366 | |
| 2367 | queue_work(hostdata->work_q, &hostdata->main_task); |
Finn Thain | 52d3e56 | 2016-03-23 21:10:20 +1100 | [diff] [blame] | 2368 | maybe_release_dma_irq(instance); |
Finn Thain | 6b0e87a | 2018-09-27 11:17:11 +1000 | [diff] [blame] | 2369 | } |
| 2370 | |
| 2371 | /** |
| 2372 | * NCR5380_host_reset - reset the SCSI host |
| 2373 | * @cmd: SCSI command undergoing EH |
| 2374 | * |
| 2375 | * Returns SUCCESS |
| 2376 | */ |
| 2377 | |
| 2378 | static int NCR5380_host_reset(struct scsi_cmnd *cmd) |
| 2379 | { |
| 2380 | struct Scsi_Host *instance = cmd->device->host; |
| 2381 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 2382 | unsigned long flags; |
| 2383 | struct NCR5380_cmd *ncmd; |
| 2384 | |
| 2385 | spin_lock_irqsave(&hostdata->lock, flags); |
| 2386 | |
| 2387 | #if (NDEBUG & NDEBUG_ANY) |
| 2388 | shost_printk(KERN_INFO, instance, __func__); |
| 2389 | #endif |
| 2390 | NCR5380_dprint(NDEBUG_ANY, instance); |
| 2391 | NCR5380_dprint_phase(NDEBUG_ANY, instance); |
| 2392 | |
| 2393 | list_for_each_entry(ncmd, &hostdata->unissued, list) { |
| 2394 | struct scsi_cmnd *scmd = NCR5380_to_scmd(ncmd); |
| 2395 | |
| 2396 | scmd->result = DID_RESET << 16; |
| 2397 | scmd->scsi_done(scmd); |
| 2398 | } |
| 2399 | INIT_LIST_HEAD(&hostdata->unissued); |
| 2400 | |
| 2401 | do_reset(instance); |
| 2402 | bus_reset_cleanup(instance); |
| 2403 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2404 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Jeff Garzik | 68b3aa7 | 2005-05-28 07:56:31 -0400 | [diff] [blame] | 2405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | return SUCCESS; |
| 2407 | } |