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