Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic Generic NCR5380 driver |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright 1993, Drew Eckhardt |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 5 | * Visionary Computing |
| 6 | * (Unix and Linux consulting and custom programming) |
| 7 | * drew@colorado.edu |
| 8 | * +1 (303) 440-4894 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 10 | * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 11 | * K.Lentin@cs.monash.edu.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
| 13 | * NCR53C400A extensions (c) 1996, Ingmar Baumgart |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 14 | * ingmar@gonzo.schwaben.de |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * |
| 16 | * DTC3181E extensions (c) 1997, Ronald van Cuijlenborg |
| 17 | * ronald.van.cuijlenborg@tip.nl or nutty@dds.nl |
| 18 | * |
| 19 | * Added ISAPNP support for DTC436 adapters, |
| 20 | * Thomas Sailer, sailer@ife.ee.ethz.ch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | * |
Finn Thain | 9c41ab2 | 2016-03-23 21:10:28 +1100 | [diff] [blame] | 22 | * See Documentation/scsi/g_NCR5380.txt for more info. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/blkdev.h> |
Finn Thain | 161c005 | 2016-01-03 16:05:46 +1100 | [diff] [blame] | 27 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <scsi/scsi_host.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <linux/ioport.h> |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 31 | #include <linux/isa.h> |
| 32 | #include <linux/pnp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/interrupt.h> |
| 34 | |
Finn Thain | 14d739f | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 35 | /* Definitions for the core NCR5380 driver. */ |
| 36 | |
| 37 | #define NCR5380_read(reg) \ |
| 38 | ioread8(hostdata->io + hostdata->offset + (reg)) |
| 39 | #define NCR5380_write(reg, value) \ |
| 40 | iowrite8(value, hostdata->io + hostdata->offset + (reg)) |
| 41 | |
| 42 | #define NCR5380_implementation_fields \ |
| 43 | int offset; \ |
| 44 | int c400_ctl_status; \ |
| 45 | int c400_blk_cnt; \ |
| 46 | int c400_host_buf; \ |
Ondrej Zary | e9dbadf | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 47 | int io_width; \ |
| 48 | int pdma_residual |
Finn Thain | 14d739f | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 49 | |
| 50 | #define NCR5380_dma_xfer_len generic_NCR5380_dma_xfer_len |
Finn Thain | ab2ace2 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 51 | #define NCR5380_dma_recv_setup generic_NCR5380_precv |
| 52 | #define NCR5380_dma_send_setup generic_NCR5380_psend |
Ondrej Zary | e9dbadf | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 53 | #define NCR5380_dma_residual generic_NCR5380_dma_residual |
Finn Thain | 14d739f | 2017-01-15 18:50:57 -0500 | [diff] [blame] | 54 | |
| 55 | #define NCR5380_intr generic_NCR5380_intr |
| 56 | #define NCR5380_queue_command generic_NCR5380_queue_command |
| 57 | #define NCR5380_abort generic_NCR5380_abort |
| 58 | #define NCR5380_bus_reset generic_NCR5380_bus_reset |
| 59 | #define NCR5380_info generic_NCR5380_info |
| 60 | |
| 61 | #define NCR5380_io_delay(x) udelay(x) |
| 62 | |
| 63 | #include "NCR5380.h" |
| 64 | |
| 65 | #define DRV_MODULE_NAME "g_NCR5380" |
| 66 | |
| 67 | #define NCR53C400_mem_base 0x3880 |
| 68 | #define NCR53C400_host_buffer 0x3900 |
| 69 | #define NCR53C400_region_size 0x3a00 |
| 70 | |
| 71 | #define BOARD_NCR5380 0 |
| 72 | #define BOARD_NCR53C400 1 |
| 73 | #define BOARD_NCR53C400A 2 |
| 74 | #define BOARD_DTC3181E 3 |
| 75 | #define BOARD_HP_C2502 4 |
| 76 | |
| 77 | #define IRQ_AUTO 254 |
| 78 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 79 | #define MAX_CARDS 8 |
Ondrej Zary | 12b859b | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 80 | #define DMA_MAX_SIZE 32768 |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 81 | |
| 82 | /* old-style parameters for compatibility */ |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 83 | static int ncr_irq = -1; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 84 | static int ncr_addr; |
| 85 | static int ncr_5380; |
| 86 | static int ncr_53c400; |
| 87 | static int ncr_53c400a; |
| 88 | static int dtc_3181e; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 89 | static int hp_c2502; |
David Howells | 88f06b7 | 2017-04-04 16:54:27 +0100 | [diff] [blame] | 90 | module_param_hw(ncr_irq, int, irq, 0); |
| 91 | module_param_hw(ncr_addr, int, ioport, 0); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 92 | module_param(ncr_5380, int, 0); |
| 93 | module_param(ncr_53c400, int, 0); |
| 94 | module_param(ncr_53c400a, int, 0); |
| 95 | module_param(dtc_3181e, int, 0); |
| 96 | module_param(hp_c2502, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 98 | static int irq[] = { -1, -1, -1, -1, -1, -1, -1, -1 }; |
David Howells | 88f06b7 | 2017-04-04 16:54:27 +0100 | [diff] [blame] | 99 | module_param_hw_array(irq, int, irq, NULL, 0); |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 100 | MODULE_PARM_DESC(irq, "IRQ number(s) (0=none, 254=auto [default])"); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 101 | |
| 102 | static int base[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |
David Howells | 88f06b7 | 2017-04-04 16:54:27 +0100 | [diff] [blame] | 103 | module_param_hw_array(base, int, ioport, NULL, 0); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 104 | MODULE_PARM_DESC(base, "base address(es)"); |
| 105 | |
| 106 | static int card[] = { -1, -1, -1, -1, -1, -1, -1, -1 }; |
| 107 | module_param_array(card, int, NULL, 0); |
| 108 | MODULE_PARM_DESC(card, "card type (0=NCR5380, 1=NCR53C400, 2=NCR53C400A, 3=DTC3181E, 4=HP C2502)"); |
| 109 | |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 110 | MODULE_ALIAS("g_NCR5380_mmio"); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 111 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
Ondrej Zary | 906e4a3c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 113 | static void g_NCR5380_trigger_irq(struct Scsi_Host *instance) |
| 114 | { |
| 115 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 116 | |
| 117 | /* |
| 118 | * An interrupt is triggered whenever BSY = false, SEL = true |
| 119 | * and a bit set in the SELECT_ENABLE_REG is asserted on the |
| 120 | * SCSI bus. |
| 121 | * |
| 122 | * Note that the bus is only driven when the phase control signals |
| 123 | * (I/O, C/D, and MSG) match those in the TCR. |
| 124 | */ |
| 125 | NCR5380_write(TARGET_COMMAND_REG, |
| 126 | PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK)); |
| 127 | NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask); |
| 128 | NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask); |
| 129 | NCR5380_write(INITIATOR_COMMAND_REG, |
| 130 | ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL); |
| 131 | |
| 132 | msleep(1); |
| 133 | |
| 134 | NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE); |
| 135 | NCR5380_write(SELECT_ENABLE_REG, 0); |
| 136 | NCR5380_write(TARGET_COMMAND_REG, 0); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * g_NCR5380_probe_irq - find the IRQ of a NCR5380 or equivalent |
| 141 | * @instance: SCSI host instance |
| 142 | * |
| 143 | * Autoprobe for the IRQ line used by the card by triggering an IRQ |
| 144 | * and then looking to see what interrupt actually turned up. |
| 145 | */ |
| 146 | |
| 147 | static int g_NCR5380_probe_irq(struct Scsi_Host *instance) |
| 148 | { |
| 149 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
| 150 | int irq_mask, irq; |
| 151 | |
| 152 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 153 | irq_mask = probe_irq_on(); |
| 154 | g_NCR5380_trigger_irq(instance); |
| 155 | irq = probe_irq_off(irq_mask); |
| 156 | NCR5380_read(RESET_PARITY_INTERRUPT_REG); |
| 157 | |
| 158 | if (irq <= 0) |
| 159 | return NO_IRQ; |
| 160 | return irq; |
| 161 | } |
| 162 | |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 163 | /* |
| 164 | * Configure I/O address of 53C400A or DTC436 by writing magic numbers |
| 165 | * to ports 0x779 and 0x379. |
| 166 | */ |
| 167 | static void magic_configure(int idx, u8 irq, u8 magic[]) |
| 168 | { |
| 169 | u8 cfg = 0; |
| 170 | |
| 171 | outb(magic[0], 0x779); |
| 172 | outb(magic[1], 0x379); |
| 173 | outb(magic[2], 0x379); |
| 174 | outb(magic[3], 0x379); |
| 175 | outb(magic[4], 0x379); |
| 176 | |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 177 | if (irq == 9) |
| 178 | irq = 2; |
| 179 | |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 180 | if (idx >= 0 && idx <= 7) |
| 181 | cfg = 0x80 | idx | (irq << 4); |
| 182 | outb(cfg, 0x379); |
| 183 | } |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 184 | |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 185 | static irqreturn_t legacy_empty_irq_handler(int irq, void *dev_id) |
| 186 | { |
| 187 | return IRQ_HANDLED; |
| 188 | } |
| 189 | |
| 190 | static int legacy_find_free_irq(int *irq_table) |
| 191 | { |
| 192 | while (*irq_table != -1) { |
| 193 | if (!request_irq(*irq_table, legacy_empty_irq_handler, |
| 194 | IRQF_PROBE_SHARED, "Test IRQ", |
| 195 | (void *)irq_table)) { |
| 196 | free_irq(*irq_table, (void *) irq_table); |
| 197 | return *irq_table; |
| 198 | } |
| 199 | irq_table++; |
| 200 | } |
| 201 | return -1; |
| 202 | } |
| 203 | |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 204 | static unsigned int ncr_53c400a_ports[] = { |
| 205 | 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0 |
| 206 | }; |
| 207 | static unsigned int dtc_3181e_ports[] = { |
| 208 | 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0 |
| 209 | }; |
| 210 | static u8 ncr_53c400a_magic[] = { /* 53C400A & DTC436 */ |
| 211 | 0x59, 0xb9, 0xc5, 0xae, 0xa6 |
| 212 | }; |
| 213 | static u8 hp_c2502_magic[] = { /* HP C2502 */ |
| 214 | 0x0f, 0x22, 0xf0, 0x20, 0x80 |
| 215 | }; |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 216 | static int hp_c2502_irqs[] = { |
| 217 | 9, 5, 7, 3, 4, -1 |
| 218 | }; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 219 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 220 | static int generic_NCR5380_init_one(struct scsi_host_template *tpnt, |
| 221 | struct device *pdev, int base, int irq, int board) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 223 | bool is_pmio = base <= 0xffff; |
| 224 | int ret; |
| 225 | int flags = 0; |
| 226 | unsigned int *ports = NULL; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 227 | u8 *magic = NULL; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 228 | int i; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 229 | int port_idx = -1; |
Finn Thain | 9d37640 | 2016-03-23 21:10:10 +1100 | [diff] [blame] | 230 | unsigned long region_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | struct Scsi_Host *instance; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 232 | struct NCR5380_hostdata *hostdata; |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 233 | u8 __iomem *iomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 235 | switch (board) { |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 236 | case BOARD_NCR5380: |
| 237 | flags = FLAG_NO_PSEUDO_DMA | FLAG_DMA_FIXUP; |
| 238 | break; |
| 239 | case BOARD_NCR53C400A: |
| 240 | ports = ncr_53c400a_ports; |
| 241 | magic = ncr_53c400a_magic; |
| 242 | break; |
| 243 | case BOARD_HP_C2502: |
| 244 | ports = ncr_53c400a_ports; |
| 245 | magic = hp_c2502_magic; |
| 246 | break; |
| 247 | case BOARD_DTC3181E: |
| 248 | ports = dtc_3181e_ports; |
| 249 | magic = ncr_53c400a_magic; |
| 250 | break; |
| 251 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 253 | if (is_pmio && ports && magic) { |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 254 | /* wakeup sequence for the NCR53C400A and DTC3181E */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 256 | /* Disable the adapter and look for a free io port */ |
| 257 | magic_configure(-1, 0, magic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 259 | region_size = 16; |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 260 | if (base) |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 261 | for (i = 0; ports[i]; i++) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 262 | if (base == ports[i]) { /* index found */ |
| 263 | if (!request_region(ports[i], |
| 264 | region_size, |
| 265 | "ncr53c80")) |
| 266 | return -EBUSY; |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 267 | break; |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 268 | } |
| 269 | } |
| 270 | else |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 271 | for (i = 0; ports[i]; i++) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 272 | if (!request_region(ports[i], region_size, |
| 273 | "ncr53c80")) |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 274 | continue; |
| 275 | if (inb(ports[i]) == 0xff) |
| 276 | break; |
| 277 | release_region(ports[i], region_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 279 | if (ports[i]) { |
| 280 | /* At this point we have our region reserved */ |
| 281 | magic_configure(i, 0, magic); /* no IRQ yet */ |
Ondrej Zary | 7b93ca4 | 2016-11-11 10:00:20 +1100 | [diff] [blame] | 282 | base = ports[i]; |
| 283 | outb(0xc0, base + 9); |
| 284 | if (inb(base + 9) != 0x80) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 285 | ret = -ENODEV; |
| 286 | goto out_release; |
| 287 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 288 | port_idx = i; |
| 289 | } else |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 290 | return -EINVAL; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 291 | } else if (is_pmio) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 292 | /* NCR5380 - no configuration, just grab */ |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 293 | region_size = 8; |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 294 | if (!base || !request_region(base, region_size, "ncr5380")) |
| 295 | return -EBUSY; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 296 | } else { /* MMIO */ |
| 297 | region_size = NCR53C400_region_size; |
| 298 | if (!request_mem_region(base, region_size, "ncr5380")) |
| 299 | return -EBUSY; |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 300 | } |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 301 | |
| 302 | if (is_pmio) |
| 303 | iomem = ioport_map(base, region_size); |
| 304 | else |
| 305 | iomem = ioremap(base, region_size); |
| 306 | |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 307 | if (!iomem) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 308 | ret = -ENOMEM; |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 309 | goto out_release; |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 310 | } |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 311 | |
| 312 | instance = scsi_host_alloc(tpnt, sizeof(struct NCR5380_hostdata)); |
| 313 | if (instance == NULL) { |
| 314 | ret = -ENOMEM; |
| 315 | goto out_unmap; |
| 316 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 317 | hostdata = shost_priv(instance); |
| 318 | |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 319 | hostdata->io = iomem; |
| 320 | hostdata->region_size = region_size; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 321 | |
| 322 | if (is_pmio) { |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 323 | hostdata->io_port = base; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 324 | hostdata->io_width = 1; /* 8-bit PDMA by default */ |
| 325 | hostdata->offset = 0; |
| 326 | |
| 327 | /* |
| 328 | * On NCR53C400 boards, NCR5380 registers are mapped 8 past |
| 329 | * the base address. |
| 330 | */ |
| 331 | switch (board) { |
| 332 | case BOARD_NCR53C400: |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 333 | hostdata->io_port += 8; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 334 | hostdata->c400_ctl_status = 0; |
| 335 | hostdata->c400_blk_cnt = 1; |
| 336 | hostdata->c400_host_buf = 4; |
| 337 | break; |
| 338 | case BOARD_DTC3181E: |
| 339 | hostdata->io_width = 2; /* 16-bit PDMA */ |
| 340 | /* fall through */ |
| 341 | case BOARD_NCR53C400A: |
| 342 | case BOARD_HP_C2502: |
| 343 | hostdata->c400_ctl_status = 9; |
| 344 | hostdata->c400_blk_cnt = 10; |
| 345 | hostdata->c400_host_buf = 8; |
| 346 | break; |
| 347 | } |
| 348 | } else { |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 349 | hostdata->base = base; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 350 | hostdata->offset = NCR53C400_mem_base; |
| 351 | switch (board) { |
| 352 | case BOARD_NCR53C400: |
| 353 | hostdata->c400_ctl_status = 0x100; |
| 354 | hostdata->c400_blk_cnt = 0x101; |
| 355 | hostdata->c400_host_buf = 0x104; |
| 356 | break; |
| 357 | case BOARD_DTC3181E: |
| 358 | case BOARD_NCR53C400A: |
| 359 | case BOARD_HP_C2502: |
| 360 | pr_err(DRV_MODULE_NAME ": unknown register offsets\n"); |
| 361 | ret = -EINVAL; |
| 362 | goto out_unregister; |
| 363 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 364 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 365 | |
Ondrej Zary | 89fa9b5 | 2016-12-05 01:07:19 -0500 | [diff] [blame] | 366 | /* Check for vacant slot */ |
| 367 | NCR5380_write(MODE_REG, 0); |
| 368 | if (NCR5380_read(MODE_REG) != 0) { |
| 369 | ret = -ENODEV; |
| 370 | goto out_unregister; |
| 371 | } |
| 372 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 373 | ret = NCR5380_init(instance, flags | FLAG_LATE_DMA_SETUP); |
| 374 | if (ret) |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 375 | goto out_unregister; |
| 376 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 377 | switch (board) { |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 378 | case BOARD_NCR53C400: |
| 379 | case BOARD_DTC3181E: |
| 380 | case BOARD_NCR53C400A: |
| 381 | case BOARD_HP_C2502: |
| 382 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
| 383 | } |
| 384 | |
| 385 | NCR5380_maybe_reset_bus(instance); |
| 386 | |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 387 | /* Compatibility with documented NCR5380 kernel parameters */ |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 388 | if (irq == 255 || irq == 0) |
| 389 | irq = NO_IRQ; |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 390 | else if (irq == -1) |
| 391 | irq = IRQ_AUTO; |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 392 | |
| 393 | if (board == BOARD_HP_C2502) { |
| 394 | int *irq_table = hp_c2502_irqs; |
| 395 | int board_irq = -1; |
| 396 | |
| 397 | switch (irq) { |
| 398 | case NO_IRQ: |
| 399 | board_irq = 0; |
| 400 | break; |
| 401 | case IRQ_AUTO: |
| 402 | board_irq = legacy_find_free_irq(irq_table); |
| 403 | break; |
| 404 | default: |
| 405 | while (*irq_table != -1) |
| 406 | if (*irq_table++ == irq) |
| 407 | board_irq = irq; |
| 408 | } |
| 409 | |
| 410 | if (board_irq <= 0) { |
| 411 | board_irq = 0; |
| 412 | irq = NO_IRQ; |
| 413 | } |
| 414 | |
| 415 | magic_configure(port_idx, board_irq, magic); |
| 416 | } |
| 417 | |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 418 | if (irq == IRQ_AUTO) { |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 419 | instance->irq = g_NCR5380_probe_irq(instance); |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 420 | if (instance->irq == NO_IRQ) |
| 421 | shost_printk(KERN_INFO, instance, "no irq detected\n"); |
| 422 | } else { |
Finn Thain | 145c3ae4c | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 423 | instance->irq = irq; |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 424 | if (instance->irq == NO_IRQ) |
| 425 | shost_printk(KERN_INFO, instance, "no irq provided\n"); |
| 426 | } |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 427 | |
| 428 | if (instance->irq != NO_IRQ) { |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 429 | if (request_irq(instance->irq, generic_NCR5380_intr, |
| 430 | 0, "NCR5380", instance)) { |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 431 | instance->irq = NO_IRQ; |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 432 | shost_printk(KERN_INFO, instance, |
| 433 | "irq %d denied\n", instance->irq); |
| 434 | } else { |
| 435 | shost_printk(KERN_INFO, instance, |
| 436 | "irq %d acquired\n", instance->irq); |
Ondrej Zary | d91f5af | 2016-09-27 21:00:24 +0200 | [diff] [blame] | 437 | } |
| 438 | } |
| 439 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 440 | ret = scsi_add_host(instance, pdev); |
| 441 | if (ret) |
| 442 | goto out_free_irq; |
| 443 | scsi_scan_host(instance); |
| 444 | dev_set_drvdata(pdev, instance); |
| 445 | return 0; |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 446 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 447 | out_free_irq: |
| 448 | if (instance->irq != NO_IRQ) |
| 449 | free_irq(instance->irq, instance); |
| 450 | NCR5380_exit(instance); |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 451 | out_unregister: |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 452 | scsi_host_put(instance); |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 453 | out_unmap: |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 454 | iounmap(iomem); |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 455 | out_release: |
| 456 | if (is_pmio) |
| 457 | release_region(base, region_size); |
| 458 | else |
| 459 | release_mem_region(base, region_size); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 460 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 463 | static void generic_NCR5380_release_resources(struct Scsi_Host *instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | { |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 465 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 466 | void __iomem *iomem = hostdata->io; |
| 467 | unsigned long io_port = hostdata->io_port; |
| 468 | unsigned long base = hostdata->base; |
| 469 | unsigned long region_size = hostdata->region_size; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 470 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 471 | scsi_remove_host(instance); |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 472 | if (instance->irq != NO_IRQ) |
Jeff Garzik | 1e64166 | 2007-11-11 19:52:05 -0500 | [diff] [blame] | 473 | free_irq(instance->irq, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | NCR5380_exit(instance); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 475 | scsi_host_put(instance); |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 476 | iounmap(iomem); |
| 477 | if (io_port) |
| 478 | release_region(io_port, region_size); |
| 479 | else |
| 480 | release_mem_region(base, region_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 483 | /* wait_for_53c80_access - wait for 53C80 registers to become accessible |
| 484 | * @hostdata: scsi host private data |
| 485 | * |
| 486 | * The registers within the 53C80 logic block are inaccessible until |
| 487 | * bit 7 in the 53C400 control status register gets asserted. |
| 488 | */ |
| 489 | |
| 490 | static void wait_for_53c80_access(struct NCR5380_hostdata *hostdata) |
| 491 | { |
| 492 | int count = 10000; |
| 493 | |
| 494 | do { |
| 495 | if (NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG) |
| 496 | return; |
| 497 | } while (--count > 0); |
| 498 | |
| 499 | scmd_printk(KERN_ERR, hostdata->connected, |
| 500 | "53c80 registers not accessible, device will be reset\n"); |
| 501 | NCR5380_write(hostdata->c400_ctl_status, CSR_RESET); |
| 502 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
| 503 | } |
| 504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | /** |
Finn Thain | ab2ace2 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 506 | * generic_NCR5380_precv - pseudo DMA receive |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 507 | * @hostdata: scsi host private data |
| 508 | * @dst: buffer to write into |
| 509 | * @len: transfer size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | * |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 511 | * Perform a pseudo DMA mode receive from a 53C400 or equivalent device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | */ |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 513 | |
Finn Thain | ab2ace2 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 514 | static inline int generic_NCR5380_precv(struct NCR5380_hostdata *hostdata, |
Finn Thain | 6c4b88c | 2016-03-23 21:10:17 +1100 | [diff] [blame] | 515 | unsigned char *dst, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 517 | int residual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | int start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 520 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE | CSR_TRANS_DIR); |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 521 | NCR5380_write(hostdata->c400_blk_cnt, len / 128); |
| 522 | |
| 523 | do { |
| 524 | if (start == len - 128) { |
| 525 | /* Ignore End of DMA interrupt for the final buffer */ |
| 526 | if (NCR5380_poll_politely(hostdata, hostdata->c400_ctl_status, |
| 527 | CSR_HOST_BUF_NOT_RDY, 0, HZ / 64) < 0) |
| 528 | break; |
| 529 | } else { |
| 530 | if (NCR5380_poll_politely2(hostdata, hostdata->c400_ctl_status, |
| 531 | CSR_HOST_BUF_NOT_RDY, 0, |
| 532 | hostdata->c400_ctl_status, |
| 533 | CSR_GATED_53C80_IRQ, |
| 534 | CSR_GATED_53C80_IRQ, HZ / 64) < 0 || |
| 535 | NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) |
| 536 | break; |
| 537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 539 | if (hostdata->io_port && hostdata->io_width == 2) |
| 540 | insw(hostdata->io_port + hostdata->c400_host_buf, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 541 | dst + start, 64); |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 542 | else if (hostdata->io_port) |
| 543 | insb(hostdata->io_port + hostdata->c400_host_buf, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 544 | dst + start, 128); |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 545 | else |
| 546 | memcpy_fromio(dst + start, |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 547 | hostdata->io + NCR53C400_host_buffer, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | start += 128; |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 549 | } while (start < len); |
| 550 | |
| 551 | residual = len - start; |
| 552 | |
| 553 | if (residual != 0) { |
| 554 | /* 53c80 interrupt or transfer timeout. Reset 53c400 logic. */ |
| 555 | NCR5380_write(hostdata->c400_ctl_status, CSR_RESET); |
| 556 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | } |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 558 | wait_for_53c80_access(hostdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 560 | if (residual == 0 && NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, |
| 561 | BASR_END_DMA_TRANSFER, |
| 562 | BASR_END_DMA_TRANSFER, |
| 563 | HZ / 64) < 0) |
| 564 | scmd_printk(KERN_ERR, hostdata->connected, "%s: End of DMA timeout\n", |
| 565 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 567 | hostdata->pdma_residual = residual; |
Ondrej Zary | e9dbadf | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | return 0; |
| 570 | } |
| 571 | |
| 572 | /** |
Finn Thain | ab2ace2 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 573 | * generic_NCR5380_psend - pseudo DMA send |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 574 | * @hostdata: scsi host private data |
| 575 | * @src: buffer to read from |
| 576 | * @len: transfer size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | * |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 578 | * Perform a pseudo DMA mode send to a 53C400 or equivalent device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | */ |
| 580 | |
Finn Thain | ab2ace2 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 581 | static inline int generic_NCR5380_psend(struct NCR5380_hostdata *hostdata, |
| 582 | unsigned char *src, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | { |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 584 | int residual; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | int start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 587 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 588 | NCR5380_write(hostdata->c400_blk_cnt, len / 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 590 | do { |
| 591 | if (NCR5380_poll_politely2(hostdata, hostdata->c400_ctl_status, |
| 592 | CSR_HOST_BUF_NOT_RDY, 0, |
| 593 | hostdata->c400_ctl_status, |
| 594 | CSR_GATED_53C80_IRQ, |
| 595 | CSR_GATED_53C80_IRQ, HZ / 64) < 0 || |
| 596 | NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) { |
| 597 | /* Both 128 B buffers are in use */ |
| 598 | if (start >= 128) |
| 599 | start -= 128; |
| 600 | if (start >= 128) |
| 601 | start -= 128; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | break; |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 603 | } |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 604 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 605 | if (start >= len && NCR5380_read(hostdata->c400_blk_cnt) == 0) |
| 606 | break; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 607 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 608 | if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ) { |
| 609 | /* Host buffer is empty, other one is in use */ |
| 610 | if (start >= 128) |
| 611 | start -= 128; |
| 612 | break; |
| 613 | } |
| 614 | |
| 615 | if (start >= len) |
| 616 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 618 | if (hostdata->io_port && hostdata->io_width == 2) |
| 619 | outsw(hostdata->io_port + hostdata->c400_host_buf, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 620 | src + start, 64); |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 621 | else if (hostdata->io_port) |
| 622 | outsb(hostdata->io_port + hostdata->c400_host_buf, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 623 | src + start, 128); |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 624 | else |
Finn Thain | 820682b | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 625 | memcpy_toio(hostdata->io + NCR53C400_host_buffer, |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 626 | src + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | start += 128; |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 628 | } while (1); |
| 629 | |
| 630 | residual = len - start; |
| 631 | |
| 632 | if (residual != 0) { |
| 633 | /* 53c80 interrupt or transfer timeout. Reset 53c400 logic. */ |
| 634 | NCR5380_write(hostdata->c400_ctl_status, CSR_RESET); |
| 635 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
| 636 | } |
| 637 | wait_for_53c80_access(hostdata); |
| 638 | |
| 639 | if (residual == 0) { |
| 640 | if (NCR5380_poll_politely(hostdata, TARGET_COMMAND_REG, |
| 641 | TCR_LAST_BYTE_SENT, TCR_LAST_BYTE_SENT, |
| 642 | HZ / 64) < 0) |
| 643 | scmd_printk(KERN_ERR, hostdata->connected, |
| 644 | "%s: Last Byte Sent timeout\n", __func__); |
| 645 | |
| 646 | if (NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG, |
| 647 | BASR_END_DMA_TRANSFER, BASR_END_DMA_TRANSFER, |
| 648 | HZ / 64) < 0) |
| 649 | scmd_printk(KERN_ERR, hostdata->connected, "%s: End of DMA timeout\n", |
| 650 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | } |
| 652 | |
Ondrej Zary | 99a974e | 2017-07-03 03:59:06 -0400 | [diff] [blame^] | 653 | hostdata->pdma_residual = residual; |
Ondrej Zary | e9dbadf | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | return 0; |
| 656 | } |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 657 | |
Finn Thain | 4a98f89 | 2016-10-10 00:46:53 -0400 | [diff] [blame] | 658 | static int generic_NCR5380_dma_xfer_len(struct NCR5380_hostdata *hostdata, |
Finn Thain | 7e9ec8d | 2016-03-23 21:10:11 +1100 | [diff] [blame] | 659 | struct scsi_cmnd *cmd) |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 660 | { |
Ondrej Zary | 12b859b | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 661 | int transfersize = cmd->SCp.this_residual; |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 662 | |
Finn Thain | 7e9ec8d | 2016-03-23 21:10:11 +1100 | [diff] [blame] | 663 | if (hostdata->flags & FLAG_NO_PSEUDO_DMA) |
| 664 | return 0; |
| 665 | |
Ondrej Zary | f039462 | 2016-01-03 16:06:14 +1100 | [diff] [blame] | 666 | /* 53C400 datasheet: non-modulo-128-byte transfers should use PIO */ |
| 667 | if (transfersize % 128) |
| 668 | transfersize = 0; |
| 669 | |
Ondrej Zary | 12b859b | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 670 | return min(transfersize, DMA_MAX_SIZE); |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 671 | } |
| 672 | |
Ondrej Zary | e9dbadf | 2017-07-03 03:59:05 -0400 | [diff] [blame] | 673 | static int generic_NCR5380_dma_residual(struct NCR5380_hostdata *hostdata) |
| 674 | { |
| 675 | return hostdata->pdma_residual; |
| 676 | } |
| 677 | |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 678 | /* Include the core driver code. */ |
| 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | #include "NCR5380.c" |
| 681 | |
Christoph Hellwig | d0be4a7d | 2005-10-31 18:31:40 +0100 | [diff] [blame] | 682 | static struct scsi_host_template driver_template = { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 683 | .module = THIS_MODULE, |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 684 | .proc_name = DRV_MODULE_NAME, |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 685 | .name = "Generic NCR5380/NCR53C400 SCSI", |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 686 | .info = generic_NCR5380_info, |
| 687 | .queuecommand = generic_NCR5380_queue_command, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | .eh_abort_handler = generic_NCR5380_abort, |
| 689 | .eh_bus_reset_handler = generic_NCR5380_bus_reset, |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 690 | .can_queue = 16, |
| 691 | .this_id = 7, |
| 692 | .sg_tablesize = SG_ALL, |
| 693 | .cmd_per_lun = 2, |
| 694 | .use_clustering = DISABLE_CLUSTERING, |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 695 | .cmd_size = NCR5380_CMD_SIZE, |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 696 | .max_sectors = 128, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | }; |
Finn Thain | 161c005 | 2016-01-03 16:05:46 +1100 | [diff] [blame] | 698 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 699 | static int generic_NCR5380_isa_match(struct device *pdev, unsigned int ndev) |
| 700 | { |
| 701 | int ret = generic_NCR5380_init_one(&driver_template, pdev, base[ndev], |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 702 | irq[ndev], card[ndev]); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 703 | if (ret) { |
| 704 | if (base[ndev]) |
| 705 | printk(KERN_WARNING "Card not found at address 0x%03x\n", |
| 706 | base[ndev]); |
| 707 | return 0; |
| 708 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 710 | return 1; |
| 711 | } |
| 712 | |
| 713 | static int generic_NCR5380_isa_remove(struct device *pdev, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 714 | unsigned int ndev) |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 715 | { |
| 716 | generic_NCR5380_release_resources(dev_get_drvdata(pdev)); |
| 717 | dev_set_drvdata(pdev, NULL); |
| 718 | return 0; |
| 719 | } |
| 720 | |
| 721 | static struct isa_driver generic_NCR5380_isa_driver = { |
| 722 | .match = generic_NCR5380_isa_match, |
| 723 | .remove = generic_NCR5380_isa_remove, |
| 724 | .driver = { |
| 725 | .name = DRV_MODULE_NAME |
| 726 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | }; |
| 728 | |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 729 | #ifdef CONFIG_PNP |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 730 | static struct pnp_device_id generic_NCR5380_pnp_ids[] = { |
| 731 | { .id = "DTC436e", .driver_data = BOARD_DTC3181E }, |
| 732 | { .id = "" } |
| 733 | }; |
| 734 | MODULE_DEVICE_TABLE(pnp, generic_NCR5380_pnp_ids); |
| 735 | |
| 736 | static int generic_NCR5380_pnp_probe(struct pnp_dev *pdev, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 737 | const struct pnp_device_id *id) |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 738 | { |
| 739 | int base, irq; |
| 740 | |
| 741 | if (pnp_activate_dev(pdev) < 0) |
| 742 | return -EBUSY; |
| 743 | |
| 744 | base = pnp_port_start(pdev, 0); |
| 745 | irq = pnp_irq(pdev, 0); |
| 746 | |
| 747 | return generic_NCR5380_init_one(&driver_template, &pdev->dev, base, irq, |
Finn Thain | 24c4334 | 2017-07-03 03:59:06 -0400 | [diff] [blame] | 748 | id->driver_data); |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | static void generic_NCR5380_pnp_remove(struct pnp_dev *pdev) |
| 752 | { |
| 753 | generic_NCR5380_release_resources(pnp_get_drvdata(pdev)); |
| 754 | pnp_set_drvdata(pdev, NULL); |
| 755 | } |
| 756 | |
| 757 | static struct pnp_driver generic_NCR5380_pnp_driver = { |
| 758 | .name = DRV_MODULE_NAME, |
| 759 | .id_table = generic_NCR5380_pnp_ids, |
| 760 | .probe = generic_NCR5380_pnp_probe, |
| 761 | .remove = generic_NCR5380_pnp_remove, |
| 762 | }; |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 763 | #endif /* defined(CONFIG_PNP) */ |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 764 | |
| 765 | static int pnp_registered, isa_registered; |
| 766 | |
| 767 | static int __init generic_NCR5380_init(void) |
| 768 | { |
| 769 | int ret = 0; |
| 770 | |
| 771 | /* compatibility with old-style parameters */ |
Finn Thain | 70439e9 | 2016-12-05 01:07:20 -0500 | [diff] [blame] | 772 | if (irq[0] == -1 && base[0] == 0 && card[0] == -1) { |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 773 | irq[0] = ncr_irq; |
| 774 | base[0] = ncr_addr; |
| 775 | if (ncr_5380) |
| 776 | card[0] = BOARD_NCR5380; |
| 777 | if (ncr_53c400) |
| 778 | card[0] = BOARD_NCR53C400; |
| 779 | if (ncr_53c400a) |
| 780 | card[0] = BOARD_NCR53C400A; |
| 781 | if (dtc_3181e) |
| 782 | card[0] = BOARD_DTC3181E; |
| 783 | if (hp_c2502) |
| 784 | card[0] = BOARD_HP_C2502; |
| 785 | } |
| 786 | |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 787 | #ifdef CONFIG_PNP |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 788 | if (!pnp_register_driver(&generic_NCR5380_pnp_driver)) |
| 789 | pnp_registered = 1; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 790 | #endif |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 791 | ret = isa_register_driver(&generic_NCR5380_isa_driver, MAX_CARDS); |
| 792 | if (!ret) |
| 793 | isa_registered = 1; |
| 794 | |
| 795 | return (pnp_registered || isa_registered) ? 0 : ret; |
| 796 | } |
| 797 | |
| 798 | static void __exit generic_NCR5380_exit(void) |
| 799 | { |
Ondrej Zary | b61bacb | 2016-10-10 00:46:52 -0400 | [diff] [blame] | 800 | #ifdef CONFIG_PNP |
Ondrej Zary | a8cfbca | 2016-09-27 21:00:25 +0200 | [diff] [blame] | 801 | if (pnp_registered) |
| 802 | pnp_unregister_driver(&generic_NCR5380_pnp_driver); |
| 803 | #endif |
| 804 | if (isa_registered) |
| 805 | isa_unregister_driver(&generic_NCR5380_isa_driver); |
| 806 | } |
| 807 | |
| 808 | module_init(generic_NCR5380_init); |
| 809 | module_exit(generic_NCR5380_exit); |