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 | |
Finn Thain | 8d5dbec | 2016-02-23 10:07:09 +1100 | [diff] [blame] | 763 | if (hostdata->sensing || list_empty(&hostdata->autosense)) { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 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 | |
Finn Thain | 8d5dbec | 2016-02-23 10:07:09 +1100 | [diff] [blame] | 796 | if (hostdata->sensing == cmd) { |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | int done; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | done = 1; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 822 | |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 823 | spin_lock_irq(&hostdata->lock); |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 824 | while (!hostdata->connected && !hostdata->selecting) { |
| 825 | struct scsi_cmnd *cmd = dequeue_next_cmd(instance); |
| 826 | |
| 827 | if (!cmd) |
| 828 | break; |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 829 | |
| 830 | dsprintk(NDEBUG_MAIN, instance, "main: dequeued %p\n", cmd); |
| 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | /* |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 833 | * Attempt to establish an I_T_L nexus here. |
| 834 | * On success, instance->hostdata->connected is set. |
| 835 | * On failure, we must add the command back to the |
| 836 | * issue queue so we can keep trying. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | */ |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 838 | /* |
| 839 | * REQUEST SENSE commands are issued without tagged |
| 840 | * queueing, even on SCSI-II devices because the |
| 841 | * contingent allegiance condition exists for the |
| 842 | * entire unit. |
| 843 | */ |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 844 | |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 845 | if (!NCR5380_select(instance, cmd)) { |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 846 | dsprintk(NDEBUG_MAIN, instance, "main: select complete\n"); |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 847 | } else { |
| 848 | dsprintk(NDEBUG_MAIN | NDEBUG_QUEUES, instance, |
| 849 | "main: select failed, returning %p to queue\n", cmd); |
| 850 | requeue_cmd(instance, cmd); |
| 851 | } |
| 852 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | if (hostdata->connected |
| 854 | #ifdef REAL_DMA |
| 855 | && !hostdata->dmalen |
| 856 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | ) { |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 858 | dsprintk(NDEBUG_MAIN, instance, "main: performing information transfer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | NCR5380_information_transfer(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | done = 0; |
Finn Thain | 1d3db59 | 2016-01-03 16:05:24 +1100 | [diff] [blame] | 861 | } |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 862 | spin_unlock_irq(&hostdata->lock); |
| 863 | if (!done) |
| 864 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | } while (!done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | #ifndef DONT_USE_INTR |
| 869 | |
| 870 | /** |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 871 | * NCR5380_intr - generic NCR5380 irq handler |
| 872 | * @irq: interrupt number |
| 873 | * @dev_id: device info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | * |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 875 | * Handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses |
| 876 | * from the disconnected queue, and restarting NCR5380_main() |
| 877 | * as required. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | * |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 879 | * The chip can assert IRQ in any of six different conditions. The IRQ flag |
| 880 | * is then cleared by reading the Reset Parity/Interrupt Register (RPIR). |
| 881 | * Three of these six conditions are latched in the Bus and Status Register: |
| 882 | * - End of DMA (cleared by ending DMA Mode) |
| 883 | * - Parity error (cleared by reading RPIR) |
| 884 | * - Loss of BSY (cleared by reading RPIR) |
| 885 | * Two conditions have flag bits that are not latched: |
| 886 | * - Bus phase mismatch (non-maskable in DMA Mode, cleared by ending DMA Mode) |
| 887 | * - Bus reset (non-maskable) |
| 888 | * The remaining condition has no flag bit at all: |
| 889 | * - Selection/reselection |
| 890 | * |
| 891 | * Hence, establishing the cause(s) of any interrupt is partly guesswork. |
| 892 | * In "The DP8490 and DP5380 Comparison Guide", National Semiconductor |
| 893 | * claimed that "the design of the [DP8490] interrupt logic ensures |
| 894 | * interrupts will not be lost (they can be on the DP5380)." |
| 895 | * The L5380/53C80 datasheet from LOGIC Devices has more details. |
| 896 | * |
| 897 | * Checking for bus reset by reading RST is futile because of interrupt |
| 898 | * latency, but a bus reset will reset chip logic. Checking for parity error |
| 899 | * is unnecessary because that interrupt is never enabled. A Loss of BSY |
| 900 | * condition will clear DMA Mode. We can tell when this occurs because the |
| 901 | * the Busy Monitor interrupt is enabled together with DMA Mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | */ |
| 903 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 904 | static irqreturn_t NCR5380_intr(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | { |
Jeff Garzik | baa9aac | 2007-12-13 16:14:14 -0800 | [diff] [blame] | 906 | struct Scsi_Host *instance = dev_id; |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 907 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 908 | int handled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | unsigned char basr; |
| 910 | unsigned long flags; |
| 911 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 912 | spin_lock_irqsave(&hostdata->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 914 | basr = NCR5380_read(BUS_AND_STATUS_REG); |
| 915 | if (basr & BASR_IRQ) { |
| 916 | unsigned char mr = NCR5380_read(MODE_REG); |
| 917 | unsigned char sr = NCR5380_read(STATUS_REG); |
| 918 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 919 | dsprintk(NDEBUG_INTR, instance, "IRQ %d, BASR 0x%02x, SR 0x%02x, MR 0x%02x\n", |
| 920 | irq, basr, sr, mr); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | #if defined(REAL_DMA) |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 923 | if ((mr & MR_DMA_MODE) || (mr & MR_MONITOR_BSY)) { |
| 924 | /* Probably End of DMA, Phase Mismatch or Loss of BSY. |
| 925 | * We ack IRQ after clearing Mode Register. Workarounds |
| 926 | * for End of DMA errata need to happen in DMA Mode. |
| 927 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 929 | dsprintk(NDEBUG_INTR, instance, "interrupt in DMA mode\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 931 | int transferred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 933 | if (!hostdata->connected) |
| 934 | panic("scsi%d : DMA interrupt with no connected cmd\n", |
| 935 | instance->hostno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 937 | transferred = hostdata->dmalen - NCR5380_dma_residual(instance); |
| 938 | hostdata->connected->SCp.this_residual -= transferred; |
| 939 | hostdata->connected->SCp.ptr += transferred; |
| 940 | hostdata->dmalen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 942 | /* FIXME: we need to poll briefly then defer a workqueue task ! */ |
| 943 | NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, BASR_ACK, 0, 2 * HZ); |
| 944 | |
| 945 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 946 | NCR5380_write(MODE_REG, MR_BASE); |
| 947 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 948 | } else |
| 949 | #endif /* REAL_DMA */ |
| 950 | if ((NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_mask) && |
| 951 | (sr & (SR_SEL | SR_IO | SR_BSY | SR_RST)) == (SR_SEL | SR_IO)) { |
| 952 | /* Probably reselected */ |
| 953 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 954 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 955 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 956 | dsprintk(NDEBUG_INTR, instance, "interrupt with SEL and IO\n"); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 957 | |
| 958 | if (!hostdata->connected) { |
| 959 | NCR5380_reselect(instance); |
| 960 | queue_work(hostdata->work_q, &hostdata->main_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | } |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 962 | if (!hostdata->connected) |
| 963 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
| 964 | } else { |
| 965 | /* Probably Bus Reset */ |
| 966 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 967 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 968 | dsprintk(NDEBUG_INTR, instance, "unknown interrupt\n"); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 969 | } |
| 970 | handled = 1; |
| 971 | } else { |
| 972 | shost_printk(KERN_NOTICE, instance, "interrupt without IRQ bit\n"); |
| 973 | } |
| 974 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 975 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 976 | |
| 977 | return IRQ_RETVAL(handled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | } |
| 979 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 980 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 982 | /* |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 983 | * Function : int NCR5380_select(struct Scsi_Host *instance, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 984 | * struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | * |
| 986 | * 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] | 987 | * including ARBITRATION, SELECTION, and initial message out for |
| 988 | * IDENTIFY and queue messages. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 990 | * Inputs : instance - instantiation of the 5380 driver on which this |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 991 | * target lives, cmd - SCSI command to execute. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 992 | * |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 993 | * Returns cmd if selection failed but should be retried, |
| 994 | * NULL if selection failed and should not be retried, or |
| 995 | * NULL if selection succeeded (hostdata->connected == cmd). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 997 | * Side effects : |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 998 | * If bus busy, arbitration failed, etc, NCR5380_select() will exit |
| 999 | * with registers as they should have been on entry - ie |
| 1000 | * SELECT_ENABLE will be set appropriately, the NCR5380 |
| 1001 | * will cease to drive any SCSI bus signals. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1003 | * If successful : I_T_L or I_T_L_Q nexus will be established, |
| 1004 | * instance->connected will be set to cmd. |
| 1005 | * SELECT interrupt will be disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1007 | * If failed (no target) : cmd->scsi_done() will be called, and the |
| 1008 | * cmd->result host byte set to DID_BAD_TARGET. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | */ |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1010 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1011 | static struct scsi_cmnd *NCR5380_select(struct Scsi_Host *instance, |
| 1012 | struct scsi_cmnd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 1014 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | unsigned char tmp[3], phase; |
| 1016 | unsigned char *data; |
| 1017 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | NCR5380_dprint(NDEBUG_ARBITRATION, instance); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1021 | dsprintk(NDEBUG_ARBITRATION, instance, "starting arbitration, id = %d\n", |
| 1022 | instance->this_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1024 | /* |
| 1025 | * Arbitration and selection phases are slow and involve dropping the |
| 1026 | * lock, so we have to watch out for EH. An exception handler may |
| 1027 | * change 'selecting' to NULL. This function will then return NULL |
| 1028 | * so that the caller will forget about 'cmd'. (During information |
| 1029 | * transfer phases, EH may change 'connected' to NULL.) |
| 1030 | */ |
| 1031 | hostdata->selecting = cmd; |
| 1032 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1033 | /* |
| 1034 | * 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] | 1035 | * data bus during SELECTION. |
| 1036 | */ |
| 1037 | |
| 1038 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 1039 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1040 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | * Start arbitration. |
| 1042 | */ |
| 1043 | |
| 1044 | NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask); |
| 1045 | NCR5380_write(MODE_REG, MR_ARBITRATE); |
| 1046 | |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1047 | /* The chip now waits for BUS FREE phase. Then after the 800 ns |
| 1048 | * Bus Free Delay, arbitration will begin. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | */ |
| 1050 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1051 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1052 | err = NCR5380_poll_politely2(instance, MODE_REG, MR_ARBITRATE, 0, |
| 1053 | INITIATOR_COMMAND_REG, ICR_ARBITRATION_PROGRESS, |
| 1054 | ICR_ARBITRATION_PROGRESS, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1055 | spin_lock_irq(&hostdata->lock); |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1056 | if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) { |
| 1057 | /* Reselection interrupt */ |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1058 | goto out; |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1059 | } |
Finn Thain | ccf6efd | 2016-02-23 10:07:08 +1100 | [diff] [blame] | 1060 | if (!hostdata->selecting) { |
| 1061 | /* Command was aborted */ |
| 1062 | NCR5380_write(MODE_REG, MR_BASE); |
| 1063 | goto out; |
| 1064 | } |
Finn Thain | b32ade1 | 2016-01-03 16:05:41 +1100 | [diff] [blame] | 1065 | if (err < 0) { |
| 1066 | NCR5380_write(MODE_REG, MR_BASE); |
| 1067 | shost_printk(KERN_ERR, instance, |
| 1068 | "select: arbitration timeout\n"); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1069 | goto out; |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1070 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1071 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1072 | |
| 1073 | /* The SCSI-2 arbitration delay is 2.4 us */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | udelay(3); |
| 1075 | |
| 1076 | /* Check for lost arbitration */ |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1077 | if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) || |
| 1078 | (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) || |
| 1079 | (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | NCR5380_write(MODE_REG, MR_BASE); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1081 | dsprintk(NDEBUG_ARBITRATION, instance, "lost arbitration, deasserting MR_ARBITRATE\n"); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1082 | spin_lock_irq(&hostdata->lock); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1083 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | } |
Finn Thain | cf13b08 | 2016-01-03 16:05:18 +1100 | [diff] [blame] | 1085 | |
| 1086 | /* After/during arbitration, BSY should be asserted. |
| 1087 | * IBM DPES-31080 Version S31Q works now |
| 1088 | * Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman) |
| 1089 | */ |
| 1090 | NCR5380_write(INITIATOR_COMMAND_REG, |
| 1091 | ICR_BASE | ICR_ASSERT_SEL | ICR_ASSERT_BSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1093 | /* |
| 1094 | * Again, bus clear + bus settle time is 1.2us, however, this is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | * a minimum so we'll udelay ceil(1.2) |
| 1096 | */ |
| 1097 | |
Finn Thain | 9c3f0e2 | 2016-01-03 16:05:11 +1100 | [diff] [blame] | 1098 | if (hostdata->flags & FLAG_TOSHIBA_DELAY) |
| 1099 | udelay(15); |
| 1100 | else |
| 1101 | udelay(2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1103 | spin_lock_irq(&hostdata->lock); |
| 1104 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1105 | /* NCR5380_reselect() clears MODE_REG after a reselection interrupt */ |
| 1106 | if (!(NCR5380_read(MODE_REG) & MR_ARBITRATE)) |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1107 | goto out; |
| 1108 | |
| 1109 | if (!hostdata->selecting) { |
| 1110 | NCR5380_write(MODE_REG, MR_BASE); |
| 1111 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1112 | goto out; |
| 1113 | } |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1114 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1115 | dsprintk(NDEBUG_ARBITRATION, instance, "won arbitration\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1117 | /* |
| 1118 | * Now that we have won arbitration, start Selection process, asserting |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | * the host and target ID's on the SCSI bus. |
| 1120 | */ |
| 1121 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1122 | NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask | (1 << scmd_id(cmd))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1124 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | * Raise ATN while SEL is true before BSY goes false from arbitration, |
| 1126 | * since this is the only way to guarantee that we'll get a MESSAGE OUT |
| 1127 | * phase immediately after selection. |
| 1128 | */ |
| 1129 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1130 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY | |
| 1131 | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | NCR5380_write(MODE_REG, MR_BASE); |
| 1133 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1134 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | * Reselect interrupts must be turned off prior to the dropping of BSY, |
| 1136 | * otherwise we will trigger an interrupt. |
| 1137 | */ |
| 1138 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 1139 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1140 | spin_unlock_irq(&hostdata->lock); |
| 1141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1143 | * The initiator shall then wait at least two deskew delays and release |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | * the BSY signal. |
| 1145 | */ |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1146 | udelay(1); /* wingel -- wait two bus deskew delay >2*45ns */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
| 1148 | /* Reset BSY */ |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1149 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA | |
| 1150 | ICR_ASSERT_ATN | ICR_ASSERT_SEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1152 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | * Something weird happens when we cease to drive BSY - looks |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1154 | * like the board/chip is letting us do another read before the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | * appropriate propagation delay has expired, and we're confusing |
| 1156 | * a BSY signal from ourselves as the target's response to SELECTION. |
| 1157 | * |
| 1158 | * A small delay (the 'C++' frontend breaks the pipeline with an |
| 1159 | * unnecessary jump, making it work on my 386-33/Trantor T128, the |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1160 | * tighter 'C' code breaks and requires this) solves the problem - |
| 1161 | * the 1 us delay is arbitrary, and only used because this delay will |
| 1162 | * 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] | 1163 | * work there. |
| 1164 | * |
| 1165 | * wingel suggests that this could be due to failing to wait |
| 1166 | * one deskew delay. |
| 1167 | */ |
| 1168 | |
| 1169 | udelay(1); |
| 1170 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1171 | dsprintk(NDEBUG_SELECTION, instance, "selecting target %d\n", scmd_id(cmd)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1173 | /* |
| 1174 | * The SCSI specification calls for a 250 ms timeout for the actual |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | * selection. |
| 1176 | */ |
| 1177 | |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1178 | err = NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, SR_BSY, |
| 1179 | msecs_to_jiffies(250)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | 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] | 1182 | spin_lock_irq(&hostdata->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1184 | NCR5380_reselect(instance); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1185 | if (!hostdata->connected) |
| 1186 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1187 | shost_printk(KERN_ERR, instance, "reselection after won arbitration?\n"); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1188 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | } |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1190 | |
| 1191 | if (err < 0) { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1192 | spin_lock_irq(&hostdata->lock); |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1193 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1194 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1195 | /* Can't touch cmd if it has been reclaimed by the scsi ML */ |
| 1196 | if (hostdata->selecting) { |
| 1197 | cmd->result = DID_BAD_TARGET << 16; |
| 1198 | complete_cmd(instance, cmd); |
| 1199 | dsprintk(NDEBUG_SELECTION, instance, "target did not respond within 250ms\n"); |
| 1200 | cmd = NULL; |
| 1201 | } |
| 1202 | goto out; |
Finn Thain | ae753a3 | 2016-01-03 16:05:23 +1100 | [diff] [blame] | 1203 | } |
| 1204 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1205 | /* |
| 1206 | * No less than two deskew delays after the initiator detects the |
| 1207 | * BSY signal is true, it shall release the SEL signal and may |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | * change the DATA BUS. -wingel |
| 1209 | */ |
| 1210 | |
| 1211 | udelay(1); |
| 1212 | |
| 1213 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1216 | * Since we followed the SCSI spec, and raised ATN while SEL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | * was true but before BSY was false during selection, the information |
| 1218 | * transfer phase should be a MESSAGE OUT phase so that we can send the |
| 1219 | * IDENTIFY message. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1220 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG |
| 1222 | * message (2 bytes) with a tag ID that we increment with every command |
| 1223 | * until it wraps back to 0. |
| 1224 | * |
| 1225 | * XXX - it turns out that there are some broken SCSI-II devices, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1226 | * which claim to support tagged queuing but fail when more than |
| 1227 | * some number of commands are issued at once. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | */ |
| 1229 | |
| 1230 | /* Wait for start of REQ/ACK handshake */ |
| 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | err = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1233 | spin_lock_irq(&hostdata->lock); |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 1234 | if (err < 0) { |
Finn Thain | 55500d9 | 2016-01-03 16:05:35 +1100 | [diff] [blame] | 1235 | shost_printk(KERN_ERR, instance, "select: REQ timeout\n"); |
| 1236 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1238 | goto out; |
| 1239 | } |
| 1240 | if (!hostdata->selecting) { |
| 1241 | do_abort(instance); |
| 1242 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1245 | dsprintk(NDEBUG_SELECTION, instance, "target %d selected, going into MESSAGE OUT phase.\n", |
| 1246 | scmd_id(cmd)); |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 1247 | tmp[0] = IDENTIFY(((instance->irq == NO_IRQ) ? 0 : 1), cmd->device->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
| 1249 | len = 1; |
| 1250 | cmd->tag = 0; |
| 1251 | |
| 1252 | /* Send message(s) */ |
| 1253 | data = tmp; |
| 1254 | phase = PHASE_MSGOUT; |
| 1255 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1256 | dsprintk(NDEBUG_SELECTION, instance, "nexus established.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | /* XXX need to handle errors here */ |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | hostdata->connected = cmd; |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1260 | hostdata->busy[cmd->device->id] |= 1 << cmd->device->lun; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | |
Boaz Harrosh | 28424d3 | 2007-09-10 22:37:45 +0300 | [diff] [blame] | 1262 | initialize_SCp(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 1264 | cmd = NULL; |
| 1265 | |
| 1266 | out: |
| 1267 | if (!hostdata->selecting) |
| 1268 | return NULL; |
| 1269 | hostdata->selecting = NULL; |
| 1270 | return cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1273 | /* |
| 1274 | * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1275 | * unsigned char *phase, int *count, unsigned char **data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | * |
| 1277 | * Purpose : transfers data in given phase using polled I/O |
| 1278 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1279 | * Inputs : instance - instance of driver, *phase - pointer to |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1280 | * what phase is expected, *count - pointer to number of |
| 1281 | * bytes to transfer, **data - pointer to data pointer. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1282 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | * Returns : -1 when different phase is entered without transferring |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1284 | * maximum number of bytes, 0 if all bytes are transferred or exit |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1285 | * is in same phase. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1287 | * Also, *phase, *count, *data are modified in place. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | * |
| 1289 | * XXX Note : handling for bus free may be useful. |
| 1290 | */ |
| 1291 | |
| 1292 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1293 | * 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] | 1294 | * IS 100% reliable, and for the actual data transfer where speed |
| 1295 | * counts, we will always do a pseudo DMA or DMA transfer. |
| 1296 | */ |
| 1297 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1298 | static int NCR5380_transfer_pio(struct Scsi_Host *instance, |
| 1299 | unsigned char *phase, int *count, |
| 1300 | unsigned char **data) |
| 1301 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | unsigned char p = *phase, tmp; |
| 1303 | int c = *count; |
| 1304 | unsigned char *d = *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1306 | /* |
| 1307 | * The NCR5380 chip will only drive the SCSI bus when the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | * phase specified in the appropriate bits of the TARGET COMMAND |
| 1309 | * REGISTER match the STATUS REGISTER |
| 1310 | */ |
| 1311 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1312 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | do { |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1315 | /* |
| 1316 | * Wait for assertion of REQ, after which the phase bits will be |
| 1317 | * valid |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | */ |
| 1319 | |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 1320 | 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] | 1321 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1323 | dsprintk(NDEBUG_HANDSHAKE, instance, "REQ asserted\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | |
| 1325 | /* Check for phase mismatch */ |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 1326 | if ((NCR5380_read(STATUS_REG) & PHASE_MASK) != p) { |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1327 | dsprintk(NDEBUG_PIO, instance, "phase mismatch\n"); |
| 1328 | NCR5380_dprint_phase(NDEBUG_PIO, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | break; |
| 1330 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | /* Do actual transfer from SCSI bus to / from memory */ |
| 1333 | if (!(p & SR_IO)) |
| 1334 | NCR5380_write(OUTPUT_DATA_REG, *d); |
| 1335 | else |
| 1336 | *d = NCR5380_read(CURRENT_SCSI_DATA_REG); |
| 1337 | |
| 1338 | ++d; |
| 1339 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1340 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | * The SCSI standard suggests that in MSGOUT phase, the initiator |
| 1342 | * should drop ATN on the last byte of the message phase |
| 1343 | * after REQ has been asserted for the handshake but before |
| 1344 | * the initiator raises ACK. |
| 1345 | */ |
| 1346 | |
| 1347 | if (!(p & SR_IO)) { |
| 1348 | if (!((p & SR_MSG) && c > 1)) { |
| 1349 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA); |
| 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_ACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | } else { |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1354 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1355 | ICR_ASSERT_DATA | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | NCR5380_dprint(NDEBUG_PIO, instance); |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1357 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1358 | ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | } |
| 1360 | } else { |
| 1361 | NCR5380_dprint(NDEBUG_PIO, instance); |
| 1362 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK); |
| 1363 | } |
| 1364 | |
Finn Thain | a2edc4a | 2016-01-03 16:05:27 +1100 | [diff] [blame] | 1365 | if (NCR5380_poll_politely(instance, |
| 1366 | STATUS_REG, SR_REQ, 0, 5 * HZ) < 0) |
| 1367 | break; |
| 1368 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1369 | dsprintk(NDEBUG_HANDSHAKE, instance, "REQ negated, handshake complete\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | |
| 1371 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1372 | * We have several special cases to consider during REQ/ACK handshaking : |
| 1373 | * 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] | 1374 | * message. ATN must be dropped as ACK is dropped. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1376 | * 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] | 1377 | * message. We must exit with ACK asserted, so that the calling |
| 1378 | * code may raise ATN before dropping ACK to reject the message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | * |
| 1380 | * 3. ACK and ATN are clear and the target may proceed as normal. |
| 1381 | */ |
| 1382 | if (!(p == PHASE_MSGIN && c == 1)) { |
| 1383 | if (p == PHASE_MSGOUT && c > 1) |
| 1384 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1385 | else |
| 1386 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1387 | } |
| 1388 | } while (--c); |
| 1389 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1390 | dsprintk(NDEBUG_PIO, instance, "residual %d\n", c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | |
| 1392 | *count = c; |
| 1393 | *data = d; |
| 1394 | tmp = NCR5380_read(STATUS_REG); |
Finn Thain | a2edc4a | 2016-01-03 16:05:27 +1100 | [diff] [blame] | 1395 | /* The phase read from the bus is valid if either REQ is (already) |
| 1396 | * asserted or if ACK hasn't been released yet. The latter applies if |
| 1397 | * we're in MSG IN, DATA IN or STATUS and all bytes have been received. |
| 1398 | */ |
| 1399 | if ((tmp & SR_REQ) || ((tmp & SR_IO) && c == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | *phase = tmp & PHASE_MASK; |
| 1401 | else |
| 1402 | *phase = PHASE_UNKNOWN; |
| 1403 | |
| 1404 | if (!c || (*phase == p)) |
| 1405 | return 0; |
| 1406 | else |
| 1407 | return -1; |
| 1408 | } |
| 1409 | |
| 1410 | /** |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1411 | * do_reset - issue a reset command |
| 1412 | * @instance: adapter to reset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | * |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1414 | * Issue a reset sequence to the NCR5380 and try and get the bus |
| 1415 | * back into sane shape. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | * |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1417 | * This clears the reset interrupt flag because there may be no handler for |
| 1418 | * it. When the driver is initialized, the NCR5380_intr() handler has not yet |
| 1419 | * 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] | 1420 | */ |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1421 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1422 | static void do_reset(struct Scsi_Host *instance) |
| 1423 | { |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1424 | unsigned long flags; |
| 1425 | |
| 1426 | local_irq_save(flags); |
| 1427 | NCR5380_write(TARGET_COMMAND_REG, |
| 1428 | PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST); |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1430 | udelay(50); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 636b1ec | 2016-01-03 16:05:10 +1100 | [diff] [blame] | 1432 | (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 1433 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1436 | /** |
| 1437 | * do_abort - abort the currently established nexus by going to |
| 1438 | * MESSAGE OUT phase and sending an ABORT message. |
| 1439 | * @instance: relevant scsi host instance |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | * |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1441 | * Returns 0 on success, -1 on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | */ |
| 1443 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1444 | static int do_abort(struct Scsi_Host *instance) |
| 1445 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | unsigned char *msgptr, phase, tmp; |
| 1447 | int len; |
| 1448 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | |
| 1450 | /* Request message out phase */ |
| 1451 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 1452 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1453 | /* |
| 1454 | * Wait for the target to indicate a valid phase by asserting |
| 1455 | * REQ. Once this happens, we'll have either a MSGOUT phase |
| 1456 | * and can immediately send the ABORT message, or we'll have some |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | * other phase and will have to source/sink data. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1458 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | * We really don't care what value was on the bus or what value |
| 1460 | * the target sees, so we just handshake. |
| 1461 | */ |
| 1462 | |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1463 | 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] | 1464 | if (rc < 0) |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1465 | goto timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
Finn Thain | f35d347 | 2016-01-03 16:05:33 +1100 | [diff] [blame] | 1467 | tmp = NCR5380_read(STATUS_REG) & PHASE_MASK; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp)); |
| 1470 | |
Finn Thain | f35d347 | 2016-01-03 16:05:33 +1100 | [diff] [blame] | 1471 | if (tmp != PHASE_MSGOUT) { |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1472 | NCR5380_write(INITIATOR_COMMAND_REG, |
| 1473 | ICR_BASE | ICR_ASSERT_ATN | ICR_ASSERT_ACK); |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1474 | rc = NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, 0, 3 * HZ); |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 1475 | if (rc < 0) |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1476 | goto timeout; |
| 1477 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | tmp = ABORT; |
| 1481 | msgptr = &tmp; |
| 1482 | len = 1; |
| 1483 | phase = PHASE_MSGOUT; |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 1484 | NCR5380_transfer_pio(instance, &phase, &len, &msgptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
| 1486 | /* |
| 1487 | * If we got here, and the command completed successfully, |
| 1488 | * we're about to go into bus free state. |
| 1489 | */ |
| 1490 | |
| 1491 | return len ? -1 : 0; |
Finn Thain | 80d3eb6 | 2016-01-03 16:05:34 +1100 | [diff] [blame] | 1492 | |
| 1493 | timeout: |
| 1494 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1495 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | #if defined(REAL_DMA) || defined(PSEUDO_DMA) || defined (REAL_DMA_POLL) |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1499 | /* |
| 1500 | * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance, |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1501 | * unsigned char *phase, int *count, unsigned char **data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | * |
| 1503 | * Purpose : transfers data in given phase using either real |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1504 | * or pseudo DMA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1506 | * Inputs : instance - instance of driver, *phase - pointer to |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1507 | * what phase is expected, *count - pointer to number of |
| 1508 | * bytes to transfer, **data - pointer to data pointer. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1509 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | * Returns : -1 when different phase is entered without transferring |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1511 | * maximum number of bytes, 0 if all bytes or transferred or exit |
| 1512 | * is in same phase. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | * |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1514 | * Also, *phase, *count, *data are modified in place. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | */ |
| 1516 | |
| 1517 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1518 | static int NCR5380_transfer_dma(struct Scsi_Host *instance, |
| 1519 | unsigned char *phase, int *count, |
| 1520 | unsigned char **data) |
| 1521 | { |
| 1522 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | register int c = *count; |
| 1524 | register unsigned char p = *phase; |
| 1525 | register unsigned char *d = *data; |
| 1526 | unsigned char tmp; |
| 1527 | int foo; |
| 1528 | #if defined(REAL_DMA_POLL) |
| 1529 | int cnt, toPIO; |
| 1530 | unsigned char saved_data = 0, overrun = 0, residue; |
| 1531 | #endif |
| 1532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) { |
| 1534 | *phase = tmp; |
| 1535 | return -1; |
| 1536 | } |
| 1537 | #if defined(REAL_DMA) || defined(REAL_DMA_POLL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | if (p & SR_IO) { |
Finn Thain | 9db6024 | 2016-01-03 16:05:43 +1100 | [diff] [blame] | 1539 | if (!(hostdata->flags & FLAG_NO_DMA_FIXUPS)) |
| 1540 | c -= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | 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] | 1543 | |
| 1544 | dsprintk(NDEBUG_DMA, instance, "initializing DMA %s: length %d, address %p\n", |
| 1545 | (p & SR_IO) ? "receive" : "send", c, *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | #endif |
| 1547 | |
| 1548 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p)); |
| 1549 | |
| 1550 | #ifdef REAL_DMA |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1551 | NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY | |
| 1552 | MR_ENABLE_EOP_INTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | #elif defined(REAL_DMA_POLL) |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1554 | NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | #else |
| 1556 | /* |
| 1557 | * Note : on my sample board, watch-dog timeouts occurred when interrupts |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1558 | * were not disabled for the duration of a single DMA transfer, from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | * before the setting of DMA mode to after transfer of the last byte. |
| 1560 | */ |
| 1561 | |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1562 | if (hostdata->flags & FLAG_NO_DMA_FIXUP) |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1563 | NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY | |
| 1564 | MR_ENABLE_EOP_INTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | else |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1566 | NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_MONITOR_BSY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | #endif /* def REAL_DMA */ |
| 1568 | |
Finn Thain | 52a6a1c | 2014-03-18 11:42:18 +1100 | [diff] [blame] | 1569 | 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] | 1570 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1571 | /* |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1572 | * On the PAS16 at least I/O recovery delays are not needed here. |
| 1573 | * Everyone else seems to want them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | */ |
| 1575 | |
| 1576 | if (p & SR_IO) { |
| 1577 | io_recovery_delay(1); |
| 1578 | NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0); |
| 1579 | } else { |
| 1580 | io_recovery_delay(1); |
| 1581 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA); |
| 1582 | io_recovery_delay(1); |
| 1583 | NCR5380_write(START_DMA_SEND_REG, 0); |
| 1584 | io_recovery_delay(1); |
| 1585 | } |
| 1586 | |
| 1587 | #if defined(REAL_DMA_POLL) |
| 1588 | do { |
| 1589 | tmp = NCR5380_read(BUS_AND_STATUS_REG); |
| 1590 | } while ((tmp & BASR_PHASE_MATCH) && !(tmp & (BASR_BUSY_ERROR | BASR_END_DMA_TRANSFER))); |
| 1591 | |
| 1592 | /* |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 1593 | * At this point, either we've completed DMA, or we have a phase mismatch, |
| 1594 | * or we've unexpectedly lost BUSY (which is a real error). |
| 1595 | * |
| 1596 | * For DMA sends, we want to wait until the last byte has been |
| 1597 | * transferred out over the bus before we turn off DMA mode. Alas, there |
| 1598 | * seems to be no terribly good way of doing this on a 5380 under all |
| 1599 | * conditions. For non-scatter-gather operations, we can wait until REQ |
| 1600 | * and ACK both go false, or until a phase mismatch occurs. Gather-sends |
| 1601 | * are nastier, since the device will be expecting more data than we |
| 1602 | * are prepared to send it, and REQ will remain asserted. On a 53C8[01] we |
| 1603 | * could test Last Byte Sent to assure transfer (I imagine this is precisely |
| 1604 | * why this signal was added to the newer chips) but on the older 538[01] |
| 1605 | * this signal does not exist. The workaround for this lack is a watchdog; |
| 1606 | * we bail out of the wait-loop after a modest amount of wait-time if |
| 1607 | * the usual exit conditions are not met. Not a terribly clean or |
| 1608 | * correct solution :-% |
| 1609 | * |
| 1610 | * DMA receive is equally tricky due to a nasty characteristic of the NCR5380. |
| 1611 | * If the chip is in DMA receive mode, it will respond to a target's |
| 1612 | * REQ by latching the SCSI data into the INPUT DATA register and asserting |
| 1613 | * ACK, even if it has _already_ been notified by the DMA controller that |
| 1614 | * the current DMA transfer has completed! If the NCR5380 is then taken |
| 1615 | * out of DMA mode, this already-acknowledged byte is lost. This is |
| 1616 | * not a problem for "one DMA transfer per READ command", because |
| 1617 | * the situation will never arise... either all of the data is DMA'ed |
| 1618 | * properly, or the target switches to MESSAGE IN phase to signal a |
| 1619 | * disconnection (either operation bringing the DMA to a clean halt). |
| 1620 | * However, in order to handle scatter-receive, we must work around the |
| 1621 | * problem. The chosen fix is to DMA N-2 bytes, then check for the |
| 1622 | * condition before taking the NCR5380 out of DMA mode. One or two extra |
| 1623 | * bytes are transferred via PIO as necessary to fill out the original |
| 1624 | * request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | */ |
| 1626 | |
| 1627 | if (p & SR_IO) { |
Finn Thain | 9db6024 | 2016-01-03 16:05:43 +1100 | [diff] [blame] | 1628 | if (!(hostdata->flags & FLAG_NO_DMA_FIXUPS)) { |
| 1629 | udelay(10); |
| 1630 | if ((NCR5380_read(BUS_AND_STATUS_REG) & (BASR_PHASE_MATCH | BASR_ACK)) == |
| 1631 | (BASR_PHASE_MATCH | BASR_ACK)) { |
| 1632 | saved_data = NCR5380_read(INPUT_DATA_REGISTER); |
| 1633 | overrun = 1; |
| 1634 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | } else { |
| 1637 | int limit = 100; |
| 1638 | while (((tmp = NCR5380_read(BUS_AND_STATUS_REG)) & BASR_ACK) || (NCR5380_read(STATUS_REG) & SR_REQ)) { |
| 1639 | if (!(tmp & BASR_PHASE_MATCH)) |
| 1640 | break; |
| 1641 | if (--limit < 0) |
| 1642 | break; |
| 1643 | } |
| 1644 | } |
| 1645 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1646 | dsprintk(NDEBUG_DMA, "polled DMA transfer complete, basr 0x%02x, sr 0x%02x\n", |
| 1647 | tmp, NCR5380_read(STATUS_REG)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | |
| 1649 | NCR5380_write(MODE_REG, MR_BASE); |
| 1650 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1651 | |
| 1652 | residue = NCR5380_dma_residual(instance); |
| 1653 | c -= residue; |
| 1654 | *count -= c; |
| 1655 | *data += c; |
| 1656 | *phase = NCR5380_read(STATUS_REG) & PHASE_MASK; |
| 1657 | |
Finn Thain | 9db6024 | 2016-01-03 16:05:43 +1100 | [diff] [blame] | 1658 | if (!(hostdata->flags & FLAG_NO_DMA_FIXUPS) && |
| 1659 | *phase == p && (p & SR_IO) && residue == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | if (overrun) { |
Finn Thain | 52a6a1c | 2014-03-18 11:42:18 +1100 | [diff] [blame] | 1661 | dprintk(NDEBUG_DMA, "Got an input overrun, using saved byte\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | **data = saved_data; |
| 1663 | *data += 1; |
| 1664 | *count -= 1; |
| 1665 | cnt = toPIO = 1; |
| 1666 | } else { |
| 1667 | printk("No overrun??\n"); |
| 1668 | cnt = toPIO = 2; |
| 1669 | } |
Finn Thain | 52a6a1c | 2014-03-18 11:42:18 +1100 | [diff] [blame] | 1670 | 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] | 1671 | NCR5380_transfer_pio(instance, phase, &cnt, data); |
| 1672 | *count -= toPIO - cnt; |
| 1673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
Finn Thain | 52a6a1c | 2014-03-18 11:42:18 +1100 | [diff] [blame] | 1675 | 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] | 1676 | return 0; |
| 1677 | |
| 1678 | #elif defined(REAL_DMA) |
| 1679 | return 0; |
| 1680 | #else /* defined(REAL_DMA_POLL) */ |
| 1681 | if (p & SR_IO) { |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1682 | foo = NCR5380_pread(instance, d, |
| 1683 | hostdata->flags & FLAG_NO_DMA_FIXUP ? c : c - 1); |
| 1684 | if (!foo && !(hostdata->flags & FLAG_NO_DMA_FIXUP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1686 | * We can't disable DMA mode after successfully transferring |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | * 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] | 1688 | * a race condition where if the target asserted REQ before |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | * we got the DMA mode reset, the NCR5380 would have latched |
| 1690 | * an additional byte into the INPUT DATA register and we'd |
| 1691 | * have dropped it. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1692 | * |
| 1693 | * The workaround was to transfer one fewer bytes than we |
| 1694 | * intended to with the pseudo-DMA read function, wait for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | * the chip to latch the last byte, read it, and then disable |
| 1696 | * pseudo-DMA mode. |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1697 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | * After REQ is asserted, the NCR5380 asserts DRQ and ACK. |
| 1699 | * REQ is deasserted when ACK is asserted, and not reasserted |
| 1700 | * until ACK goes false. Since the NCR5380 won't lower ACK |
| 1701 | * until DACK is asserted, which won't happen unless we twiddle |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1702 | * the DMA port or we take the NCR5380 out of DMA mode, we |
| 1703 | * can guarantee that we won't handshake another extra |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | * byte. |
| 1705 | */ |
| 1706 | |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1707 | if (NCR5380_poll_politely(instance, BUS_AND_STATUS_REG, |
| 1708 | BASR_DRQ, BASR_DRQ, HZ) < 0) { |
| 1709 | foo = -1; |
| 1710 | shost_printk(KERN_ERR, instance, "PDMA read: DRQ timeout\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | } |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1712 | if (NCR5380_poll_politely(instance, STATUS_REG, |
| 1713 | SR_REQ, 0, HZ) < 0) { |
| 1714 | foo = -1; |
| 1715 | shost_printk(KERN_ERR, instance, "PDMA read: !REQ timeout\n"); |
| 1716 | } |
| 1717 | d[c - 1] = NCR5380_read(INPUT_DATA_REG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | foo = NCR5380_pwrite(instance, d, c); |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1721 | if (!foo && !(hostdata->flags & FLAG_NO_DMA_FIXUP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1723 | * Wait for the last byte to be sent. If REQ is being asserted for |
| 1724 | * 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] | 1725 | */ |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 1726 | if (NCR5380_poll_politely2(instance, |
| 1727 | BUS_AND_STATUS_REG, BASR_DRQ, BASR_DRQ, |
| 1728 | BUS_AND_STATUS_REG, BASR_PHASE_MATCH, 0, HZ) < 0) { |
| 1729 | foo = -1; |
| 1730 | shost_printk(KERN_ERR, instance, "PDMA write: DRQ and phase timeout\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | } |
| 1732 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | } |
| 1734 | NCR5380_write(MODE_REG, MR_BASE); |
| 1735 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | cd40082 | 2016-01-03 16:05:40 +1100 | [diff] [blame] | 1736 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | *data = d + c; |
| 1738 | *count = 0; |
| 1739 | *phase = NCR5380_read(STATUS_REG) & PHASE_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | return foo; |
| 1741 | #endif /* def REAL_DMA */ |
| 1742 | } |
| 1743 | #endif /* defined(REAL_DMA) | defined(PSEUDO_DMA) */ |
| 1744 | |
| 1745 | /* |
| 1746 | * Function : NCR5380_information_transfer (struct Scsi_Host *instance) |
| 1747 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1748 | * Purpose : run through the various SCSI phases and do as the target |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1749 | * directs us to. Operates on the currently connected command, |
| 1750 | * instance->connected. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | * |
| 1752 | * Inputs : instance, instance for which we are doing commands |
| 1753 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1754 | * Side effects : SCSI things happen, the disconnected queue will be |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 1755 | * modified if a command disconnects, *instance->connected will |
| 1756 | * change. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1758 | * 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] | 1759 | * to recover from an unexpected bus free condition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | */ |
| 1761 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1762 | static void NCR5380_information_transfer(struct Scsi_Host *instance) |
| 1763 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 1764 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | unsigned char msgout = NOP; |
| 1766 | int sink = 0; |
| 1767 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | int transfersize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | unsigned char *data; |
| 1770 | unsigned char phase, tmp, extended_msg[10], old_phase = 0xff; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1771 | struct scsi_cmnd *cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1773 | while ((cmd = hostdata->connected)) { |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 1774 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(cmd); |
| 1775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | tmp = NCR5380_read(STATUS_REG); |
| 1777 | /* We only have a valid SCSI phase when REQ is asserted */ |
| 1778 | if (tmp & SR_REQ) { |
| 1779 | phase = (tmp & PHASE_MASK); |
| 1780 | if (phase != old_phase) { |
| 1781 | old_phase = phase; |
| 1782 | NCR5380_dprint_phase(NDEBUG_INFORMATION, instance); |
| 1783 | } |
| 1784 | if (sink && (phase != PHASE_MSGOUT)) { |
| 1785 | NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp)); |
| 1786 | |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1787 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | |
| 1788 | ICR_ASSERT_ACK); |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1789 | while (NCR5380_read(STATUS_REG) & SR_REQ) |
| 1790 | ; |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1791 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | |
| 1792 | ICR_ASSERT_ATN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | sink = 0; |
| 1794 | continue; |
| 1795 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | switch (phase) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | case PHASE_DATAOUT: |
| 1799 | #if (NDEBUG & NDEBUG_NO_DATAOUT) |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 1800 | 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] | 1801 | sink = 1; |
| 1802 | do_abort(instance); |
| 1803 | cmd->result = DID_ERROR << 16; |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 1804 | complete_cmd(instance, cmd); |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 1805 | hostdata->connected = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | return; |
| 1807 | #endif |
Finn Thain | bf1a0c6 | 2016-01-03 16:05:47 +1100 | [diff] [blame] | 1808 | case PHASE_DATAIN: |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1809 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | * If there is no room left in the current buffer in the |
| 1811 | * scatter-gather list, move onto the next one. |
| 1812 | */ |
| 1813 | |
| 1814 | if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) { |
| 1815 | ++cmd->SCp.buffer; |
| 1816 | --cmd->SCp.buffers_residual; |
| 1817 | cmd->SCp.this_residual = cmd->SCp.buffer->length; |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 1818 | cmd->SCp.ptr = sg_virt(cmd->SCp.buffer); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1819 | dsprintk(NDEBUG_INFORMATION, instance, "%d bytes and %d buffers left\n", |
| 1820 | cmd->SCp.this_residual, |
| 1821 | cmd->SCp.buffers_residual); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | } |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | /* |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1825 | * The preferred transfer method is going to be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | * PSEUDO-DMA for systems that are strictly PIO, |
| 1827 | * since we can let the hardware do the handshaking. |
| 1828 | * |
| 1829 | * For this to work, we need to know the transfersize |
| 1830 | * ahead of time, since the pseudo-DMA code will sit |
| 1831 | * in an unconditional loop. |
| 1832 | */ |
| 1833 | |
| 1834 | #if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL) |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 1835 | transfersize = 0; |
| 1836 | if (!cmd->device->borken && |
| 1837 | !(hostdata->flags & FLAG_NO_PSEUDO_DMA)) |
| 1838 | transfersize = NCR5380_dma_xfer_len(instance, cmd, phase); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 1840 | if (transfersize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | len = transfersize; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1842 | if (NCR5380_transfer_dma(instance, &phase, |
| 1843 | &len, (unsigned char **)&cmd->SCp.ptr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | /* |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1845 | * If the watchdog timer fires, all future |
| 1846 | * accesses to this device will use the |
| 1847 | * polled-IO. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | */ |
Jeff Garzik | 017560f | 2005-10-24 18:04:36 -0400 | [diff] [blame] | 1849 | scmd_printk(KERN_INFO, cmd, |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1850 | "switching to slow handshake\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | cmd->device->borken = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | sink = 1; |
| 1853 | do_abort(instance); |
| 1854 | cmd->result = DID_ERROR << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | /* XXX - need to source or sink data here, as appropriate */ |
| 1856 | } else |
| 1857 | cmd->SCp.this_residual -= transfersize - len; |
| 1858 | } else |
| 1859 | #endif /* defined(PSEUDO_DMA) || defined(REAL_DMA_POLL) */ |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1860 | { |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1861 | /* Break up transfer into 3 ms chunks, |
| 1862 | * presuming 6 accesses per handshake. |
| 1863 | */ |
| 1864 | transfersize = min((unsigned long)cmd->SCp.this_residual, |
| 1865 | hostdata->accesses_per_ms / 2); |
| 1866 | len = transfersize; |
| 1867 | NCR5380_transfer_pio(instance, &phase, &len, |
Finn Thain | 3d07d22 | 2016-01-03 16:06:13 +1100 | [diff] [blame] | 1868 | (unsigned char **)&cmd->SCp.ptr); |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1869 | cmd->SCp.this_residual -= transfersize - len; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1870 | } |
Finn Thain | 1678847 | 2016-02-23 10:07:05 +1100 | [diff] [blame] | 1871 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | case PHASE_MSGIN: |
| 1873 | len = 1; |
| 1874 | data = &tmp; |
| 1875 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 1876 | cmd->SCp.Message = tmp; |
| 1877 | |
| 1878 | switch (tmp) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | case ABORT: |
| 1880 | case COMMAND_COMPLETE: |
| 1881 | /* Accept message by clearing ACK */ |
| 1882 | sink = 1; |
| 1883 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 1884 | dsprintk(NDEBUG_QUEUES, instance, |
| 1885 | "COMMAND COMPLETE %p target %d lun %llu\n", |
| 1886 | cmd, scmd_id(cmd), cmd->device->lun); |
| 1887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | hostdata->connected = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1890 | cmd->result &= ~0xffff; |
| 1891 | cmd->result |= cmd->SCp.Status; |
| 1892 | cmd->result |= cmd->SCp.Message << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1894 | if (cmd->cmnd[0] == REQUEST_SENSE) |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 1895 | complete_cmd(instance, cmd); |
Finn Thain | f27db8e | 2016-01-03 16:06:00 +1100 | [diff] [blame] | 1896 | else { |
| 1897 | if (cmd->SCp.Status == SAM_STAT_CHECK_CONDITION || |
| 1898 | cmd->SCp.Status == SAM_STAT_COMMAND_TERMINATED) { |
| 1899 | dsprintk(NDEBUG_QUEUES, instance, "autosense: adding cmd %p to tail of autosense queue\n", |
| 1900 | cmd); |
| 1901 | list_add_tail(&ncmd->list, |
| 1902 | &hostdata->autosense); |
| 1903 | } else |
| 1904 | complete_cmd(instance, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | } |
| 1906 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1907 | /* |
| 1908 | * Restore phase bits to 0 so an interrupted selection, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | * arbitration can resume. |
| 1910 | */ |
| 1911 | NCR5380_write(TARGET_COMMAND_REG, 0); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 1912 | |
| 1913 | /* Enable reselect interrupts */ |
| 1914 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | return; |
| 1916 | case MESSAGE_REJECT: |
| 1917 | /* Accept message by clearing ACK */ |
| 1918 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1919 | switch (hostdata->last_message) { |
| 1920 | case HEAD_OF_QUEUE_TAG: |
| 1921 | case ORDERED_QUEUE_TAG: |
| 1922 | case SIMPLE_QUEUE_TAG: |
| 1923 | cmd->device->simple_tags = 0; |
Hannes Reinecke | 9cb78c1 | 2014-06-25 15:27:36 +0200 | [diff] [blame] | 1924 | hostdata->busy[cmd->device->id] |= (1 << (cmd->device->lun & 0xFF)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | break; |
| 1926 | default: |
| 1927 | break; |
| 1928 | } |
Finn Thain | 340b961 | 2016-01-03 16:05:31 +1100 | [diff] [blame] | 1929 | break; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1930 | case DISCONNECT: |
| 1931 | /* Accept message by clearing ACK */ |
| 1932 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1933 | hostdata->connected = NULL; |
| 1934 | list_add(&ncmd->list, &hostdata->disconnected); |
| 1935 | dsprintk(NDEBUG_INFORMATION | NDEBUG_QUEUES, |
| 1936 | instance, "connected command %p for target %d lun %llu moved to disconnected queue\n", |
| 1937 | cmd, scmd_id(cmd), cmd->device->lun); |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 1938 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1939 | /* |
| 1940 | * Restore phase bits to 0 so an interrupted selection, |
| 1941 | * arbitration can resume. |
| 1942 | */ |
| 1943 | NCR5380_write(TARGET_COMMAND_REG, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 1945 | /* Enable reselect interrupts */ |
| 1946 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
| 1947 | return; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1948 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | * The SCSI data pointer is *IMPLICITLY* saved on a disconnect |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1950 | * operation, in violation of the SCSI spec so we can safely |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | * ignore SAVE/RESTORE pointers calls. |
| 1952 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1953 | * Unfortunately, some disks violate the SCSI spec and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | * don't issue the required SAVE_POINTERS message before |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 1955 | * disconnecting, and we have to break spec to remain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | * compatible. |
| 1957 | */ |
| 1958 | case SAVE_POINTERS: |
| 1959 | case RESTORE_POINTERS: |
| 1960 | /* Accept message by clearing ACK */ |
| 1961 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1962 | break; |
| 1963 | case EXTENDED_MESSAGE: |
Finn Thain | c16df32 | 2016-01-03 16:06:08 +1100 | [diff] [blame] | 1964 | /* |
| 1965 | * Start the message buffer with the EXTENDED_MESSAGE |
| 1966 | * byte, since spi_print_msg() wants the whole thing. |
| 1967 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | extended_msg[0] = EXTENDED_MESSAGE; |
| 1969 | /* Accept first byte by clearing ACK */ |
| 1970 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 1971 | |
| 1972 | spin_unlock_irq(&hostdata->lock); |
| 1973 | |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1974 | dsprintk(NDEBUG_EXTENDED, instance, "receiving extended message\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | |
| 1976 | len = 2; |
| 1977 | data = extended_msg + 1; |
| 1978 | phase = PHASE_MSGIN; |
| 1979 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1980 | dsprintk(NDEBUG_EXTENDED, instance, "length %d, code 0x%02x\n", |
| 1981 | (int)extended_msg[1], |
| 1982 | (int)extended_msg[2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
Finn Thain | e0783ed | 2016-01-03 16:05:45 +1100 | [diff] [blame] | 1984 | if (!len && extended_msg[1] > 0 && |
| 1985 | extended_msg[1] <= sizeof(extended_msg) - 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | /* Accept third byte by clearing ACK */ |
| 1987 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 1988 | len = extended_msg[1] - 1; |
| 1989 | data = extended_msg + 3; |
| 1990 | phase = PHASE_MSGIN; |
| 1991 | |
| 1992 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 1993 | dsprintk(NDEBUG_EXTENDED, instance, "message received, residual %d\n", |
| 1994 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | |
| 1996 | switch (extended_msg[2]) { |
| 1997 | case EXTENDED_SDTR: |
| 1998 | case EXTENDED_WDTR: |
| 1999 | case EXTENDED_MODIFY_DATA_POINTER: |
| 2000 | case EXTENDED_EXTENDED_IDENTIFY: |
| 2001 | tmp = 0; |
| 2002 | } |
| 2003 | } else if (len) { |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 2004 | shost_printk(KERN_ERR, instance, "error receiving extended message\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | tmp = 0; |
| 2006 | } else { |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 2007 | shost_printk(KERN_NOTICE, instance, "extended message code %02x length %d is too long\n", |
| 2008 | extended_msg[2], extended_msg[1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | tmp = 0; |
| 2010 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2011 | |
| 2012 | spin_lock_irq(&hostdata->lock); |
| 2013 | if (!hostdata->connected) |
| 2014 | return; |
| 2015 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | /* Fall through to reject message */ |
| 2017 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2018 | /* |
| 2019 | * If we get something weird that we aren't expecting, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | * reject it. |
| 2021 | */ |
| 2022 | default: |
| 2023 | if (!tmp) { |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 2024 | shost_printk(KERN_ERR, instance, "rejecting message "); |
Matthew Wilcox | 1abfd37 | 2005-12-15 16:22:01 -0500 | [diff] [blame] | 2025 | spi_print_msg(extended_msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | printk("\n"); |
| 2027 | } else if (tmp != EXTENDED_MESSAGE) |
Jeff Garzik | 017560f | 2005-10-24 18:04:36 -0400 | [diff] [blame] | 2028 | scmd_printk(KERN_INFO, cmd, |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2029 | "rejecting unknown message %02x\n", |
| 2030 | tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | else |
Jeff Garzik | 017560f | 2005-10-24 18:04:36 -0400 | [diff] [blame] | 2032 | scmd_printk(KERN_INFO, cmd, |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2033 | "rejecting unknown extended message code %02x, length %d\n", |
| 2034 | extended_msg[1], extended_msg[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | |
| 2036 | msgout = MESSAGE_REJECT; |
| 2037 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN); |
| 2038 | break; |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2039 | } /* switch (tmp) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | break; |
| 2041 | case PHASE_MSGOUT: |
| 2042 | len = 1; |
| 2043 | data = &msgout; |
| 2044 | hostdata->last_message = msgout; |
| 2045 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 2046 | if (msgout == ABORT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | hostdata->connected = NULL; |
| 2048 | cmd->result = DID_ERROR << 16; |
Finn Thain | 677e019 | 2016-01-03 16:05:59 +1100 | [diff] [blame] | 2049 | complete_cmd(instance, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
| 2051 | return; |
| 2052 | } |
| 2053 | msgout = NOP; |
| 2054 | break; |
| 2055 | case PHASE_CMDOUT: |
| 2056 | len = cmd->cmd_len; |
| 2057 | data = cmd->cmnd; |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2058 | /* |
| 2059 | * XXX for performance reasons, on machines with a |
| 2060 | * PSEUDO-DMA architecture we should probably |
| 2061 | * use the dma transfer function. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | */ |
| 2063 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | break; |
| 2065 | case PHASE_STATIN: |
| 2066 | len = 1; |
| 2067 | data = &tmp; |
| 2068 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 2069 | cmd->SCp.Status = tmp; |
| 2070 | break; |
| 2071 | default: |
Finn Thain | 6a6ff4a | 2016-01-03 16:06:04 +1100 | [diff] [blame] | 2072 | shost_printk(KERN_ERR, instance, "unknown phase\n"); |
Finn Thain | 4dde8f7 | 2014-03-18 11:42:17 +1100 | [diff] [blame] | 2073 | NCR5380_dprint(NDEBUG_ANY, instance); |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2074 | } /* switch(phase) */ |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 2075 | } else { |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2076 | spin_unlock_irq(&hostdata->lock); |
Finn Thain | 686f399 | 2016-01-03 16:05:26 +1100 | [diff] [blame] | 2077 | NCR5380_poll_politely(instance, STATUS_REG, SR_REQ, SR_REQ, HZ); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2078 | spin_lock_irq(&hostdata->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | } |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2080 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | /* |
| 2084 | * Function : void NCR5380_reselect (struct Scsi_Host *instance) |
| 2085 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2086 | * Purpose : does reselection, initializing the instance->connected |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 2087 | * field to point to the scsi_cmnd for which the I_T_L or I_T_L_Q |
| 2088 | * nexus has been reestablished, |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2089 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | * Inputs : instance - this instance of the NCR5380. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | */ |
| 2092 | |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2093 | static void NCR5380_reselect(struct Scsi_Host *instance) |
| 2094 | { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 2095 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | unsigned char target_mask; |
| 2097 | unsigned char lun, phase; |
| 2098 | int len; |
| 2099 | unsigned char msg[3]; |
| 2100 | unsigned char *data; |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2101 | struct NCR5380_cmd *ncmd; |
| 2102 | struct scsi_cmnd *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | |
| 2104 | /* |
| 2105 | * Disable arbitration, etc. since the host adapter obviously |
| 2106 | * lost, and tell an interrupted NCR5380_select() to restart. |
| 2107 | */ |
| 2108 | |
| 2109 | NCR5380_write(MODE_REG, MR_BASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | |
| 2111 | target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask); |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 2112 | |
| 2113 | dsprintk(NDEBUG_RESELECTION, instance, "reselect\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2115 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | * At this point, we have detected that our SCSI ID is on the bus, |
| 2117 | * SEL is true and BSY was false for at least one bus settle delay |
| 2118 | * (400 ns). |
| 2119 | * |
| 2120 | * We must assert BSY ourselves, until the target drops the SEL |
| 2121 | * signal. |
| 2122 | */ |
| 2123 | |
| 2124 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2125 | if (NCR5380_poll_politely(instance, |
| 2126 | STATUS_REG, SR_SEL, 0, 2 * HZ) < 0) { |
| 2127 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2128 | return; |
| 2129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2131 | |
| 2132 | /* |
| 2133 | * Wait for target to go into MSGIN. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | */ |
| 2135 | |
Finn Thain | 1cc160e | 2016-01-03 16:05:32 +1100 | [diff] [blame] | 2136 | if (NCR5380_poll_politely(instance, |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2137 | STATUS_REG, SR_REQ, SR_REQ, 2 * HZ) < 0) { |
| 2138 | do_abort(instance); |
| 2139 | return; |
| 2140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | |
| 2142 | len = 1; |
| 2143 | data = msg; |
| 2144 | phase = PHASE_MSGIN; |
| 2145 | NCR5380_transfer_pio(instance, &phase, &len, &data); |
| 2146 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2147 | if (len) { |
| 2148 | do_abort(instance); |
| 2149 | return; |
| 2150 | } |
| 2151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | if (!(msg[0] & 0x80)) { |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2153 | shost_printk(KERN_ERR, instance, "expecting IDENTIFY message, got "); |
Matthew Wilcox | 1abfd37 | 2005-12-15 16:22:01 -0500 | [diff] [blame] | 2154 | spi_print_msg(msg); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2155 | printk("\n"); |
| 2156 | do_abort(instance); |
| 2157 | return; |
| 2158 | } |
| 2159 | lun = msg[0] & 0x07; |
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 | * We need to add code for SCSI-II to track which devices have |
| 2163 | * I_T_L_Q nexuses established, and which have simple I_T_L |
| 2164 | * nexuses so we can chose to do additional data transfer. |
| 2165 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2167 | /* |
| 2168 | * Find the command corresponding to the I_T_L or I_T_L_Q nexus we |
| 2169 | * just reestablished, and remove it from the disconnected queue. |
| 2170 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2172 | tmp = NULL; |
| 2173 | list_for_each_entry(ncmd, &hostdata->disconnected, list) { |
| 2174 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2175 | |
| 2176 | if (target_mask == (1 << scmd_id(cmd)) && |
| 2177 | lun == (u8)cmd->device->lun) { |
| 2178 | list_del(&ncmd->list); |
| 2179 | tmp = cmd; |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2180 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | } |
| 2182 | } |
Finn Thain | 0d3d9a4 | 2016-01-03 16:05:55 +1100 | [diff] [blame] | 2183 | |
| 2184 | if (tmp) { |
| 2185 | dsprintk(NDEBUG_RESELECTION | NDEBUG_QUEUES, instance, |
| 2186 | "reselect: removed %p from disconnected queue\n", tmp); |
| 2187 | } else { |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2188 | shost_printk(KERN_ERR, instance, "target bitmask 0x%02x lun %d not in disconnected queue.\n", |
| 2189 | target_mask, lun); |
| 2190 | /* |
Finn Thain | 0d2cf86 | 2016-01-03 16:06:11 +1100 | [diff] [blame] | 2191 | * Since we have an established nexus that we can't do anything |
| 2192 | * with, we must abort it. |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2193 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | do_abort(instance); |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2195 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | } |
Finn Thain | 72064a7 | 2016-01-03 16:05:44 +1100 | [diff] [blame] | 2197 | |
| 2198 | /* Accept message by clearing ACK */ |
| 2199 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2200 | |
| 2201 | hostdata->connected = tmp; |
Finn Thain | b746545 | 2016-01-03 16:06:05 +1100 | [diff] [blame] | 2202 | dsprintk(NDEBUG_RESELECTION, instance, "nexus established, target %d, lun %llu, tag %d\n", |
| 2203 | scmd_id(tmp), tmp->device->lun, tmp->tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | } |
| 2205 | |
| 2206 | /* |
| 2207 | * Function : void NCR5380_dma_complete (struct Scsi_Host *instance) |
| 2208 | * |
| 2209 | * Purpose : called by interrupt handler when DMA finishes or a phase |
Finn Thain | 594d4ba | 2016-01-03 16:06:10 +1100 | [diff] [blame] | 2210 | * mismatch occurs (which would finish the DMA transfer). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | * |
| 2212 | * Inputs : instance - this instance of the NCR5380. |
| 2213 | * |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 2214 | * 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] | 2215 | * nexus has been reestablished, on failure NULL is returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | */ |
| 2217 | |
| 2218 | #ifdef REAL_DMA |
| 2219 | static void NCR5380_dma_complete(NCR5380_instance * instance) { |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 2220 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | int transferred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | |
| 2223 | /* |
| 2224 | * XXX this might not be right. |
| 2225 | * |
| 2226 | * Wait for final byte to transfer, ie wait for ACK to go false. |
| 2227 | * |
Finn Thain | aff0cf9 | 2016-01-03 16:06:09 +1100 | [diff] [blame] | 2228 | * We should use the Last Byte Sent bit, unfortunately this is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | * not available on the 5380/5381 (only the various CMOS chips) |
| 2230 | * |
| 2231 | * FIXME: timeout, and need to handle long timeout/irq case |
| 2232 | */ |
| 2233 | |
| 2234 | NCR5380_poll_politely(instance, BUS_AND_STATUS_REG, BASR_ACK, 0, 5*HZ); |
| 2235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 2237 | |
| 2238 | /* |
| 2239 | * The only places we should see a phase mismatch and have to send |
| 2240 | * data from the same set of pointers will be the data transfer |
| 2241 | * phases. So, residual, requested length are only important here. |
| 2242 | */ |
| 2243 | |
| 2244 | if (!(hostdata->connected->SCp.phase & SR_CD)) { |
| 2245 | transferred = instance->dmalen - NCR5380_dma_residual(); |
| 2246 | hostdata->connected->SCp.this_residual -= transferred; |
| 2247 | hostdata->connected->SCp.ptr += transferred; |
| 2248 | } |
| 2249 | } |
| 2250 | #endif /* def REAL_DMA */ |
| 2251 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2252 | /** |
| 2253 | * list_find_cmd - test for presence of a command in a linked list |
| 2254 | * @haystack: list of commands |
| 2255 | * @needle: command to search for |
| 2256 | */ |
| 2257 | |
| 2258 | static bool list_find_cmd(struct list_head *haystack, |
| 2259 | struct scsi_cmnd *needle) |
| 2260 | { |
| 2261 | struct NCR5380_cmd *ncmd; |
| 2262 | |
| 2263 | list_for_each_entry(ncmd, haystack, list) |
| 2264 | if (NCR5380_to_scmd(ncmd) == needle) |
| 2265 | return true; |
| 2266 | return false; |
| 2267 | } |
| 2268 | |
| 2269 | /** |
| 2270 | * list_remove_cmd - remove a command from linked list |
| 2271 | * @haystack: list of commands |
| 2272 | * @needle: command to remove |
| 2273 | */ |
| 2274 | |
| 2275 | static bool list_del_cmd(struct list_head *haystack, |
| 2276 | struct scsi_cmnd *needle) |
| 2277 | { |
| 2278 | if (list_find_cmd(haystack, needle)) { |
| 2279 | struct NCR5380_cmd *ncmd = scsi_cmd_priv(needle); |
| 2280 | |
| 2281 | list_del(&ncmd->list); |
| 2282 | return true; |
| 2283 | } |
| 2284 | return false; |
| 2285 | } |
| 2286 | |
| 2287 | /** |
| 2288 | * NCR5380_abort - scsi host eh_abort_handler() method |
| 2289 | * @cmd: the command to be aborted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2291 | * Try to abort a given command by removing it from queues and/or sending |
| 2292 | * the target an abort message. This may not succeed in causing a target |
| 2293 | * to abort the command. Nonetheless, the low-level driver must forget about |
| 2294 | * 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] | 2295 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2296 | * The normal path taken by a command is as follows. For EH we trace this |
| 2297 | * same path to locate and abort the command. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2299 | * unissued -> selecting -> [unissued -> selecting ->]... connected -> |
| 2300 | * [disconnected -> connected ->]... |
| 2301 | * [autosense -> connected ->] done |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2303 | * If cmd was not found at all then presumably it has already been completed, |
| 2304 | * in which case return SUCCESS to try to avoid further EH measures. |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2305 | * |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2306 | * If the command has not completed yet, we must not fail to find it. |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2307 | * We have no option but to forget the aborted command (even if it still |
| 2308 | * lacks sense data). The mid-layer may re-issue a command that is in error |
| 2309 | * recovery (see scsi_send_eh_cmnd), but the logic and data structures in |
| 2310 | * this driver are such that a command can appear on one queue only. |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2311 | * |
| 2312 | * The lock protects driver data structures, but EH handlers also use it |
| 2313 | * to serialize their own execution and prevent their own re-entry. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | */ |
| 2315 | |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 2316 | static int NCR5380_abort(struct scsi_cmnd *cmd) |
| 2317 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | struct Scsi_Host *instance = cmd->device->host; |
Finn Thain | e8a6014 | 2016-01-03 16:05:54 +1100 | [diff] [blame] | 2319 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2320 | unsigned long flags; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2321 | int result = SUCCESS; |
Hannes Reinecke | 1fa6b5f | 2014-10-24 14:26:58 +0200 | [diff] [blame] | 2322 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2323 | spin_lock_irqsave(&hostdata->lock, flags); |
| 2324 | |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2325 | #if (NDEBUG & NDEBUG_ANY) |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2326 | scmd_printk(KERN_INFO, cmd, __func__); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2327 | #endif |
Finn Thain | e5c3fdd | 2016-01-03 16:05:52 +1100 | [diff] [blame] | 2328 | NCR5380_dprint(NDEBUG_ANY, instance); |
| 2329 | NCR5380_dprint_phase(NDEBUG_ANY, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2331 | if (list_del_cmd(&hostdata->unissued, cmd)) { |
| 2332 | dsprintk(NDEBUG_ABORT, instance, |
| 2333 | "abort: removed %p from issue queue\n", cmd); |
| 2334 | cmd->result = DID_ABORT << 16; |
| 2335 | cmd->scsi_done(cmd); /* No tag or busy flag to worry about */ |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2336 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2337 | } |
| 2338 | |
Finn Thain | 707d62b | 2016-01-03 16:06:02 +1100 | [diff] [blame] | 2339 | if (hostdata->selecting == cmd) { |
| 2340 | dsprintk(NDEBUG_ABORT, instance, |
| 2341 | "abort: cmd %p == selecting\n", cmd); |
| 2342 | hostdata->selecting = NULL; |
| 2343 | cmd->result = DID_ABORT << 16; |
| 2344 | complete_cmd(instance, cmd); |
| 2345 | goto out; |
| 2346 | } |
| 2347 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2348 | if (list_del_cmd(&hostdata->disconnected, cmd)) { |
| 2349 | dsprintk(NDEBUG_ABORT, instance, |
| 2350 | "abort: removed %p from disconnected list\n", cmd); |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2351 | /* Can't call NCR5380_select() and send ABORT because that |
| 2352 | * means releasing the lock. Need a bus reset. |
| 2353 | */ |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2354 | set_host_byte(cmd, DID_ERROR); |
| 2355 | complete_cmd(instance, cmd); |
Finn Thain | 71a0059 | 2016-02-23 10:07:06 +1100 | [diff] [blame] | 2356 | result = FAILED; |
| 2357 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2358 | } |
| 2359 | |
| 2360 | if (hostdata->connected == cmd) { |
| 2361 | dsprintk(NDEBUG_ABORT, instance, "abort: cmd %p is connected\n", cmd); |
| 2362 | hostdata->connected = NULL; |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2363 | #ifdef REAL_DMA |
| 2364 | hostdata->dma_len = 0; |
| 2365 | #endif |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2366 | if (do_abort(instance)) { |
| 2367 | set_host_byte(cmd, DID_ERROR); |
| 2368 | complete_cmd(instance, cmd); |
| 2369 | result = FAILED; |
| 2370 | goto out; |
| 2371 | } |
| 2372 | set_host_byte(cmd, DID_ABORT); |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2373 | complete_cmd(instance, cmd); |
| 2374 | goto out; |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2375 | } |
| 2376 | |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2377 | if (list_del_cmd(&hostdata->autosense, cmd)) { |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2378 | dsprintk(NDEBUG_ABORT, instance, |
Finn Thain | dc18396 | 2016-02-23 10:07:07 +1100 | [diff] [blame] | 2379 | "abort: removed %p from sense queue\n", cmd); |
| 2380 | set_host_byte(cmd, DID_ERROR); |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2381 | complete_cmd(instance, cmd); |
| 2382 | } |
| 2383 | |
| 2384 | out: |
| 2385 | if (result == FAILED) |
| 2386 | dsprintk(NDEBUG_ABORT, instance, "abort: failed to abort %p\n", cmd); |
| 2387 | else |
| 2388 | dsprintk(NDEBUG_ABORT, instance, "abort: successfully aborted %p\n", cmd); |
| 2389 | |
| 2390 | queue_work(hostdata->work_q, &hostdata->main_task); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2391 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 2392 | |
Finn Thain | 8b00c3d | 2016-01-03 16:06:01 +1100 | [diff] [blame] | 2393 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
| 2396 | |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2397 | /** |
| 2398 | * NCR5380_bus_reset - reset the SCSI bus |
| 2399 | * @cmd: SCSI command undergoing EH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | * |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2401 | * Returns SUCCESS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | */ |
| 2403 | |
Finn Thain | 710ddd0 | 2014-11-12 16:12:02 +1100 | [diff] [blame] | 2404 | static int NCR5380_bus_reset(struct scsi_cmnd *cmd) |
Jeff Garzik | 68b3aa7 | 2005-05-28 07:56:31 -0400 | [diff] [blame] | 2405 | { |
| 2406 | struct Scsi_Host *instance = cmd->device->host; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2407 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2408 | int i; |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2409 | unsigned long flags; |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2410 | struct NCR5380_cmd *ncmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2412 | spin_lock_irqsave(&hostdata->lock, flags); |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2413 | |
| 2414 | #if (NDEBUG & NDEBUG_ANY) |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2415 | scmd_printk(KERN_INFO, cmd, __func__); |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2416 | #endif |
Finn Thain | e5c3fdd | 2016-01-03 16:05:52 +1100 | [diff] [blame] | 2417 | NCR5380_dprint(NDEBUG_ANY, instance); |
| 2418 | NCR5380_dprint_phase(NDEBUG_ANY, instance); |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2419 | |
Jeff Garzik | 68b3aa7 | 2005-05-28 07:56:31 -0400 | [diff] [blame] | 2420 | do_reset(instance); |
Finn Thain | 3be1b3e | 2016-01-03 16:05:12 +1100 | [diff] [blame] | 2421 | |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2422 | /* reset NCR registers */ |
| 2423 | NCR5380_write(MODE_REG, MR_BASE); |
| 2424 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 2425 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 2426 | |
| 2427 | /* After the reset, there are no more connected or disconnected commands |
| 2428 | * and no busy units; so clear the low-level status here to avoid |
| 2429 | * conflicts when the mid-level code tries to wake up the affected |
| 2430 | * commands! |
| 2431 | */ |
| 2432 | |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2433 | if (list_del_cmd(&hostdata->unissued, cmd)) { |
| 2434 | cmd->result = DID_RESET << 16; |
| 2435 | cmd->scsi_done(cmd); |
| 2436 | } |
| 2437 | |
| 2438 | if (hostdata->selecting) { |
| 2439 | hostdata->selecting->result = DID_RESET << 16; |
| 2440 | complete_cmd(instance, hostdata->selecting); |
| 2441 | hostdata->selecting = NULL; |
| 2442 | } |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2443 | |
| 2444 | list_for_each_entry(ncmd, &hostdata->disconnected, list) { |
| 2445 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2446 | |
| 2447 | set_host_byte(cmd, DID_RESET); |
| 2448 | cmd->scsi_done(cmd); |
| 2449 | } |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2450 | INIT_LIST_HEAD(&hostdata->disconnected); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2451 | |
| 2452 | list_for_each_entry(ncmd, &hostdata->autosense, list) { |
| 2453 | struct scsi_cmnd *cmd = NCR5380_to_scmd(ncmd); |
| 2454 | |
| 2455 | set_host_byte(cmd, DID_RESET); |
| 2456 | cmd->scsi_done(cmd); |
| 2457 | } |
Finn Thain | 1884c28 | 2016-02-23 10:07:04 +1100 | [diff] [blame] | 2458 | INIT_LIST_HEAD(&hostdata->autosense); |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2459 | |
| 2460 | if (hostdata->connected) { |
| 2461 | set_host_byte(hostdata->connected, DID_RESET); |
| 2462 | complete_cmd(instance, hostdata->connected); |
| 2463 | hostdata->connected = NULL; |
| 2464 | } |
| 2465 | |
Finn Thain | 62717f5 | 2016-01-03 16:06:03 +1100 | [diff] [blame] | 2466 | for (i = 0; i < 8; ++i) |
| 2467 | hostdata->busy[i] = 0; |
| 2468 | #ifdef REAL_DMA |
| 2469 | hostdata->dma_len = 0; |
| 2470 | #endif |
| 2471 | |
| 2472 | queue_work(hostdata->work_q, &hostdata->main_task); |
Finn Thain | 11d2f63 | 2016-01-03 16:05:51 +1100 | [diff] [blame] | 2473 | spin_unlock_irqrestore(&hostdata->lock, flags); |
Jeff Garzik | 68b3aa7 | 2005-05-28 07:56:31 -0400 | [diff] [blame] | 2474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | return SUCCESS; |
| 2476 | } |