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