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