blob: f209b12280cc2dd2a36a4bdecfbee77d2fee3b92 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic Generic NCR5380 driver
3 *
4 * Copyright 1993, Drew Eckhardt
5 * Visionary Computing
6 * (Unix and Linux consulting and custom programming)
7 * drew@colorado.edu
8 * +1 (303) 440-4894
9 *
10 * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
11 * K.Lentin@cs.monash.edu.au
12 *
13 * NCR53C400A extensions (c) 1996, Ingmar Baumgart
14 * ingmar@gonzo.schwaben.de
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 Torvalds1da177e2005-04-16 15:20:36 -070021 *
Finn Thain9c41ab22016-03-23 21:10:28 +110022 * See Documentation/scsi/g_NCR5380.txt for more info.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/blkdev.h>
Finn Thain161c0052016-01-03 16:05:46 +110027#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <scsi/scsi_host.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
30#include <linux/ioport.h>
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020031#include <linux/isa.h>
32#include <linux/pnp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/interrupt.h>
34
Finn Thain14d739f2017-01-15 18:50:57 -050035/* 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 Zarye9dbadf2017-07-03 03:59:05 -040047 int io_width; \
48 int pdma_residual
Finn Thain14d739f2017-01-15 18:50:57 -050049
50#define NCR5380_dma_xfer_len generic_NCR5380_dma_xfer_len
51#define NCR5380_dma_recv_setup generic_NCR5380_pread
52#define NCR5380_dma_send_setup generic_NCR5380_pwrite
Ondrej Zarye9dbadf2017-07-03 03:59:05 -040053#define NCR5380_dma_residual generic_NCR5380_dma_residual
Finn Thain14d739f2017-01-15 18:50:57 -050054
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 Zarya8cfbca2016-09-27 21:00:25 +020079#define MAX_CARDS 8
Ondrej Zary12b859b2017-07-03 03:59:05 -040080#define DMA_MAX_SIZE 32768
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020081
82/* old-style parameters for compatibility */
Finn Thain70439e92016-12-05 01:07:20 -050083static int ncr_irq = -1;
Finn Thainc0965e62016-01-03 16:05:05 +110084static int ncr_addr;
85static int ncr_5380;
86static int ncr_53c400;
87static int ncr_53c400a;
88static int dtc_3181e;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +110089static int hp_c2502;
David Howells88f06b72017-04-04 16:54:27 +010090module_param_hw(ncr_irq, int, irq, 0);
91module_param_hw(ncr_addr, int, ioport, 0);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020092module_param(ncr_5380, int, 0);
93module_param(ncr_53c400, int, 0);
94module_param(ncr_53c400a, int, 0);
95module_param(dtc_3181e, int, 0);
96module_param(hp_c2502, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Finn Thain70439e92016-12-05 01:07:20 -050098static int irq[] = { -1, -1, -1, -1, -1, -1, -1, -1 };
David Howells88f06b72017-04-04 16:54:27 +010099module_param_hw_array(irq, int, irq, NULL, 0);
Finn Thain70439e92016-12-05 01:07:20 -0500100MODULE_PARM_DESC(irq, "IRQ number(s) (0=none, 254=auto [default])");
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200101
102static int base[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
David Howells88f06b72017-04-04 16:54:27 +0100103module_param_hw_array(base, int, ioport, NULL, 0);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200104MODULE_PARM_DESC(base, "base address(es)");
105
106static int card[] = { -1, -1, -1, -1, -1, -1, -1, -1 };
107module_param_array(card, int, NULL, 0);
108MODULE_PARM_DESC(card, "card type (0=NCR5380, 1=NCR53C400, 2=NCR53C400A, 3=DTC3181E, 4=HP C2502)");
109
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400110MODULE_ALIAS("g_NCR5380_mmio");
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200111MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Ondrej Zary906e4a3c2016-12-05 01:07:20 -0500113static 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
147static 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 Zaryc6084cb2016-01-03 16:06:19 +1100163/*
164 * Configure I/O address of 53C400A or DTC436 by writing magic numbers
165 * to ports 0x779 and 0x379.
166 */
167static 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 Thain145c3ae4c2016-12-05 01:07:20 -0500177 if (irq == 9)
178 irq = 2;
179
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100180 if (idx >= 0 && idx <= 7)
181 cfg = 0x80 | idx | (irq << 4);
182 outb(cfg, 0x379);
183}
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400184
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500185static irqreturn_t legacy_empty_irq_handler(int irq, void *dev_id)
186{
187 return IRQ_HANDLED;
188}
189
190static 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 Zaryb61bacb2016-10-10 00:46:52 -0400204static unsigned int ncr_53c400a_ports[] = {
205 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0
206};
207static unsigned int dtc_3181e_ports[] = {
208 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0
209};
210static u8 ncr_53c400a_magic[] = { /* 53C400A & DTC436 */
211 0x59, 0xb9, 0xc5, 0xae, 0xa6
212};
213static u8 hp_c2502_magic[] = { /* HP C2502 */
214 0x0f, 0x22, 0xf0, 0x20, 0x80
215};
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500216static int hp_c2502_irqs[] = {
217 9, 5, 7, 3, 4, -1
218};
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100219
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200220static int generic_NCR5380_init_one(struct scsi_host_template *tpnt,
221 struct device *pdev, int base, int irq, int board)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400223 bool is_pmio = base <= 0xffff;
224 int ret;
225 int flags = 0;
226 unsigned int *ports = NULL;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100227 u8 *magic = NULL;
Ondrej Zary702a98c2010-08-10 18:01:16 -0700228 int i;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100229 int port_idx = -1;
Finn Thain9d376402016-03-23 21:10:10 +1100230 unsigned long region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct Scsi_Host *instance;
Ondrej Zary12150792016-01-03 16:06:15 +1100232 struct NCR5380_hostdata *hostdata;
Finn Thain820682b2016-10-10 00:46:53 -0400233 u8 __iomem *iomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200235 switch (board) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200236 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 Torvalds1da177e2005-04-16 15:20:36 -0700252
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400253 if (is_pmio && ports && magic) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200254 /* wakeup sequence for the NCR53C400A and DTC3181E */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200256 /* Disable the adapter and look for a free io port */
257 magic_configure(-1, 0, magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200259 region_size = 16;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200260 if (base)
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200261 for (i = 0; ports[i]; i++) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200262 if (base == ports[i]) { /* index found */
263 if (!request_region(ports[i],
264 region_size,
265 "ncr53c80"))
266 return -EBUSY;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200267 break;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200268 }
269 }
270 else
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200271 for (i = 0; ports[i]; i++) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200272 if (!request_region(ports[i], region_size,
273 "ncr53c80"))
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200274 continue;
275 if (inb(ports[i]) == 0xff)
276 break;
277 release_region(ports[i], region_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200279 if (ports[i]) {
280 /* At this point we have our region reserved */
281 magic_configure(i, 0, magic); /* no IRQ yet */
Ondrej Zary7b93ca42016-11-11 10:00:20 +1100282 base = ports[i];
283 outb(0xc0, base + 9);
284 if (inb(base + 9) != 0x80) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200285 ret = -ENODEV;
286 goto out_release;
287 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200288 port_idx = i;
289 } else
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200290 return -EINVAL;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400291 } else if (is_pmio) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200292 /* NCR5380 - no configuration, just grab */
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200293 region_size = 8;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200294 if (!base || !request_region(base, region_size, "ncr5380"))
295 return -EBUSY;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400296 } else { /* MMIO */
297 region_size = NCR53C400_region_size;
298 if (!request_mem_region(base, region_size, "ncr5380"))
299 return -EBUSY;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200300 }
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400301
302 if (is_pmio)
303 iomem = ioport_map(base, region_size);
304 else
305 iomem = ioremap(base, region_size);
306
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200307 if (!iomem) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200308 ret = -ENOMEM;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200309 goto out_release;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200310 }
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400311
312 instance = scsi_host_alloc(tpnt, sizeof(struct NCR5380_hostdata));
313 if (instance == NULL) {
314 ret = -ENOMEM;
315 goto out_unmap;
316 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200317 hostdata = shost_priv(instance);
318
Finn Thain820682b2016-10-10 00:46:53 -0400319 hostdata->io = iomem;
320 hostdata->region_size = region_size;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400321
322 if (is_pmio) {
Finn Thain820682b2016-10-10 00:46:53 -0400323 hostdata->io_port = base;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400324 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 Thain820682b2016-10-10 00:46:53 -0400333 hostdata->io_port += 8;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400334 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 Thain820682b2016-10-10 00:46:53 -0400349 hostdata->base = base;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400350 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 Zaryd91f5af2016-09-27 21:00:24 +0200364 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200365
Ondrej Zary89fa9b52016-12-05 01:07:19 -0500366 /* 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 Zarya8cfbca2016-09-27 21:00:25 +0200373 ret = NCR5380_init(instance, flags | FLAG_LATE_DMA_SETUP);
374 if (ret)
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200375 goto out_unregister;
376
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200377 switch (board) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200378 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 Zaryd91f5af2016-09-27 21:00:24 +0200387 /* Compatibility with documented NCR5380 kernel parameters */
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500388 if (irq == 255 || irq == 0)
389 irq = NO_IRQ;
Finn Thain70439e92016-12-05 01:07:20 -0500390 else if (irq == -1)
391 irq = IRQ_AUTO;
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500392
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 Thain70439e92016-12-05 01:07:20 -0500418 if (irq == IRQ_AUTO) {
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500419 instance->irq = g_NCR5380_probe_irq(instance);
Finn Thain70439e92016-12-05 01:07:20 -0500420 if (instance->irq == NO_IRQ)
421 shost_printk(KERN_INFO, instance, "no irq detected\n");
422 } else {
Finn Thain145c3ae4c2016-12-05 01:07:20 -0500423 instance->irq = irq;
Finn Thain70439e92016-12-05 01:07:20 -0500424 if (instance->irq == NO_IRQ)
425 shost_printk(KERN_INFO, instance, "no irq provided\n");
426 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200427
428 if (instance->irq != NO_IRQ) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200429 if (request_irq(instance->irq, generic_NCR5380_intr,
430 0, "NCR5380", instance)) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200431 instance->irq = NO_IRQ;
Finn Thain70439e92016-12-05 01:07:20 -0500432 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 Zaryd91f5af2016-09-27 21:00:24 +0200437 }
438 }
439
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200440 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 Thain0ad0eff2016-01-03 16:05:21 +1100446
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200447out_free_irq:
448 if (instance->irq != NO_IRQ)
449 free_irq(instance->irq, instance);
450 NCR5380_exit(instance);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100451out_unregister:
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200452 scsi_host_put(instance);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400453out_unmap:
Finn Thain0ad0eff2016-01-03 16:05:21 +1100454 iounmap(iomem);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400455out_release:
456 if (is_pmio)
457 release_region(base, region_size);
458 else
459 release_mem_region(base, region_size);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200460 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200463static void generic_NCR5380_release_resources(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400465 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain820682b2016-10-10 00:46:53 -0400466 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 Zaryb61bacb2016-10-10 00:46:52 -0400470
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200471 scsi_remove_host(instance);
Finn Thain22f5f102014-11-12 16:11:56 +1100472 if (instance->irq != NO_IRQ)
Jeff Garzik1e641662007-11-11 19:52:05 -0500473 free_irq(instance->irq, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 NCR5380_exit(instance);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200475 scsi_host_put(instance);
Finn Thain820682b2016-10-10 00:46:53 -0400476 iounmap(iomem);
477 if (io_port)
478 release_region(io_port, region_size);
479 else
480 release_mem_region(base, region_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/**
Finn Thain6c4b88c2016-03-23 21:10:17 +1100484 * generic_NCR5380_pread - pseudo DMA read
Finn Thain4a98f892016-10-10 00:46:53 -0400485 * @hostdata: scsi host private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * @dst: buffer to read into
487 * @len: buffer length
488 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300489 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * controller
491 */
492
Finn Thain4a98f892016-10-10 00:46:53 -0400493static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata,
Finn Thain6c4b88c2016-03-23 21:10:17 +1100494 unsigned char *dst, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 int blocks = len / 128;
497 int start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Ondrej Zary12150792016-01-03 16:06:15 +1100499 NCR5380_write(hostdata->c400_ctl_status, CSR_BASE | CSR_TRANS_DIR);
500 NCR5380_write(hostdata->c400_blk_cnt, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 while (1) {
Ondrej Zary12150792016-01-03 16:06:15 +1100502 if (NCR5380_read(hostdata->c400_blk_cnt) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400504 if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ)
505 goto out_wait;
Ondrej Zary12150792016-01-03 16:06:15 +1100506 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
507 ; /* FIXME - no timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Finn Thain820682b2016-10-10 00:46:53 -0400509 if (hostdata->io_port && hostdata->io_width == 2)
510 insw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100511 dst + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400512 else if (hostdata->io_port)
513 insb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100514 dst + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400515 else
516 memcpy_fromio(dst + start,
Finn Thain820682b2016-10-10 00:46:53 -0400517 hostdata->io + NCR53C400_host_buffer, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 start += 128;
520 blocks--;
521 }
522
523 if (blocks) {
Ondrej Zary12150792016-01-03 16:06:15 +1100524 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
525 ; /* FIXME - no timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Finn Thain820682b2016-10-10 00:46:53 -0400527 if (hostdata->io_port && hostdata->io_width == 2)
528 insw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100529 dst + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400530 else if (hostdata->io_port)
531 insb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100532 dst + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400533 else
534 memcpy_fromio(dst + start,
Finn Thain820682b2016-10-10 00:46:53 -0400535 hostdata->io + NCR53C400_host_buffer, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 start += 128;
538 blocks--;
539 }
540
Ondrej Zary12150792016-01-03 16:06:15 +1100541 if (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 printk("53C400r: no 53C80 gated irq after transfer");
543
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400544out_wait:
545 hostdata->pdma_residual = len - start;
546
Ondrej Zary42fc6372016-01-03 16:06:18 +1100547 /* wait for 53C80 registers to be available */
548 while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ;
Ondrej Zary42fc6372016-01-03 16:06:18 +1100550
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400551 if (NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG,
552 BASR_END_DMA_TRANSFER, BASR_END_DMA_TRANSFER,
553 HZ / 64) < 0)
554 scmd_printk(KERN_ERR, hostdata->connected, "%s: End of DMA timeout (%d)\n",
555 __func__, hostdata->pdma_residual);
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return 0;
558}
559
560/**
Finn Thain6c4b88c2016-03-23 21:10:17 +1100561 * generic_NCR5380_pwrite - pseudo DMA write
Finn Thain4a98f892016-10-10 00:46:53 -0400562 * @hostdata: scsi host private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 * @dst: buffer to read into
564 * @len: buffer length
565 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300566 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * controller
568 */
569
Finn Thain4a98f892016-10-10 00:46:53 -0400570static inline int generic_NCR5380_pwrite(struct NCR5380_hostdata *hostdata,
Finn Thain6c4b88c2016-03-23 21:10:17 +1100571 unsigned char *src, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 int blocks = len / 128;
574 int start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Ondrej Zary12150792016-01-03 16:06:15 +1100576 NCR5380_write(hostdata->c400_ctl_status, CSR_BASE);
577 NCR5380_write(hostdata->c400_blk_cnt, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 while (1) {
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400579 if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ)
580 goto out_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Ondrej Zary12150792016-01-03 16:06:15 +1100582 if (NCR5380_read(hostdata->c400_blk_cnt) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
Ondrej Zary12150792016-01-03 16:06:15 +1100584 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 ; // FIXME - timeout
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400586
Finn Thain820682b2016-10-10 00:46:53 -0400587 if (hostdata->io_port && hostdata->io_width == 2)
588 outsw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100589 src + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400590 else if (hostdata->io_port)
591 outsb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100592 src + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400593 else
Finn Thain820682b2016-10-10 00:46:53 -0400594 memcpy_toio(hostdata->io + NCR53C400_host_buffer,
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400595 src + start, 128);
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 start += 128;
598 blocks--;
599 }
600 if (blocks) {
Ondrej Zary12150792016-01-03 16:06:15 +1100601 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 ; // FIXME - no timeout
603
Finn Thain820682b2016-10-10 00:46:53 -0400604 if (hostdata->io_port && hostdata->io_width == 2)
605 outsw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100606 src + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400607 else if (hostdata->io_port)
608 outsb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100609 src + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400610 else
Finn Thain820682b2016-10-10 00:46:53 -0400611 memcpy_toio(hostdata->io + NCR53C400_host_buffer,
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400612 src + start, 128);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 start += 128;
615 blocks--;
616 }
617
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400618out_wait:
619 hostdata->pdma_residual = len - start;
620
Ondrej Zary42fc6372016-01-03 16:06:18 +1100621 /* wait for 53C80 registers to be available */
622 while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG)) {
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100623 udelay(4); /* DTC436 chip hangs without this */
624 /* FIXME - no timeout */
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
628 ; // TIMEOUT
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400629
630 if (NCR5380_poll_politely(hostdata, BUS_AND_STATUS_REG,
631 BASR_END_DMA_TRANSFER, BASR_END_DMA_TRANSFER,
632 HZ / 64) < 0)
633 scmd_printk(KERN_ERR, hostdata->connected, "%s: End of DMA timeout (%d)\n",
634 __func__, hostdata->pdma_residual);
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 0;
637}
Finn Thainff3d4572016-01-03 16:05:25 +1100638
Finn Thain4a98f892016-10-10 00:46:53 -0400639static int generic_NCR5380_dma_xfer_len(struct NCR5380_hostdata *hostdata,
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100640 struct scsi_cmnd *cmd)
Finn Thainff3d4572016-01-03 16:05:25 +1100641{
Ondrej Zary12b859b2017-07-03 03:59:05 -0400642 int transfersize = cmd->SCp.this_residual;
Finn Thainff3d4572016-01-03 16:05:25 +1100643
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100644 if (hostdata->flags & FLAG_NO_PSEUDO_DMA)
645 return 0;
646
Ondrej Zaryf0394622016-01-03 16:06:14 +1100647 /* 53C400 datasheet: non-modulo-128-byte transfers should use PIO */
648 if (transfersize % 128)
649 transfersize = 0;
650
Ondrej Zary12b859b2017-07-03 03:59:05 -0400651 return min(transfersize, DMA_MAX_SIZE);
Finn Thainff3d4572016-01-03 16:05:25 +1100652}
653
Ondrej Zarye9dbadf2017-07-03 03:59:05 -0400654static int generic_NCR5380_dma_residual(struct NCR5380_hostdata *hostdata)
655{
656 return hostdata->pdma_residual;
657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659/*
660 * Include the NCR5380 core code that we build our driver around
661 */
662
663#include "NCR5380.c"
664
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100665static struct scsi_host_template driver_template = {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200666 .module = THIS_MODULE,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100667 .proc_name = DRV_MODULE_NAME,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100668 .name = "Generic NCR5380/NCR53C400 SCSI",
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100669 .info = generic_NCR5380_info,
670 .queuecommand = generic_NCR5380_queue_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 .eh_abort_handler = generic_NCR5380_abort,
672 .eh_bus_reset_handler = generic_NCR5380_bus_reset,
Finn Thainaa2e2cb12016-01-03 16:05:48 +1100673 .can_queue = 16,
674 .this_id = 7,
675 .sg_tablesize = SG_ALL,
676 .cmd_per_lun = 2,
677 .use_clustering = DISABLE_CLUSTERING,
Finn Thain32b26a12016-01-03 16:05:58 +1100678 .cmd_size = NCR5380_CMD_SIZE,
Finn Thain0a4e3612016-01-03 16:06:07 +1100679 .max_sectors = 128,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680};
Finn Thain161c0052016-01-03 16:05:46 +1100681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200683static int generic_NCR5380_isa_match(struct device *pdev, unsigned int ndev)
684{
685 int ret = generic_NCR5380_init_one(&driver_template, pdev, base[ndev],
686 irq[ndev], card[ndev]);
687 if (ret) {
688 if (base[ndev])
689 printk(KERN_WARNING "Card not found at address 0x%03x\n",
690 base[ndev]);
691 return 0;
692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200694 return 1;
695}
696
697static int generic_NCR5380_isa_remove(struct device *pdev,
698 unsigned int ndev)
699{
700 generic_NCR5380_release_resources(dev_get_drvdata(pdev));
701 dev_set_drvdata(pdev, NULL);
702 return 0;
703}
704
705static struct isa_driver generic_NCR5380_isa_driver = {
706 .match = generic_NCR5380_isa_match,
707 .remove = generic_NCR5380_isa_remove,
708 .driver = {
709 .name = DRV_MODULE_NAME
710 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711};
712
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400713#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200714static struct pnp_device_id generic_NCR5380_pnp_ids[] = {
715 { .id = "DTC436e", .driver_data = BOARD_DTC3181E },
716 { .id = "" }
717};
718MODULE_DEVICE_TABLE(pnp, generic_NCR5380_pnp_ids);
719
720static int generic_NCR5380_pnp_probe(struct pnp_dev *pdev,
721 const struct pnp_device_id *id)
722{
723 int base, irq;
724
725 if (pnp_activate_dev(pdev) < 0)
726 return -EBUSY;
727
728 base = pnp_port_start(pdev, 0);
729 irq = pnp_irq(pdev, 0);
730
731 return generic_NCR5380_init_one(&driver_template, &pdev->dev, base, irq,
732 id->driver_data);
733}
734
735static void generic_NCR5380_pnp_remove(struct pnp_dev *pdev)
736{
737 generic_NCR5380_release_resources(pnp_get_drvdata(pdev));
738 pnp_set_drvdata(pdev, NULL);
739}
740
741static struct pnp_driver generic_NCR5380_pnp_driver = {
742 .name = DRV_MODULE_NAME,
743 .id_table = generic_NCR5380_pnp_ids,
744 .probe = generic_NCR5380_pnp_probe,
745 .remove = generic_NCR5380_pnp_remove,
746};
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400747#endif /* defined(CONFIG_PNP) */
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200748
749static int pnp_registered, isa_registered;
750
751static int __init generic_NCR5380_init(void)
752{
753 int ret = 0;
754
755 /* compatibility with old-style parameters */
Finn Thain70439e92016-12-05 01:07:20 -0500756 if (irq[0] == -1 && base[0] == 0 && card[0] == -1) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200757 irq[0] = ncr_irq;
758 base[0] = ncr_addr;
759 if (ncr_5380)
760 card[0] = BOARD_NCR5380;
761 if (ncr_53c400)
762 card[0] = BOARD_NCR53C400;
763 if (ncr_53c400a)
764 card[0] = BOARD_NCR53C400A;
765 if (dtc_3181e)
766 card[0] = BOARD_DTC3181E;
767 if (hp_c2502)
768 card[0] = BOARD_HP_C2502;
769 }
770
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400771#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200772 if (!pnp_register_driver(&generic_NCR5380_pnp_driver))
773 pnp_registered = 1;
Ondrej Zary702a98c2010-08-10 18:01:16 -0700774#endif
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200775 ret = isa_register_driver(&generic_NCR5380_isa_driver, MAX_CARDS);
776 if (!ret)
777 isa_registered = 1;
778
779 return (pnp_registered || isa_registered) ? 0 : ret;
780}
781
782static void __exit generic_NCR5380_exit(void)
783{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400784#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200785 if (pnp_registered)
786 pnp_unregister_driver(&generic_NCR5380_pnp_driver);
787#endif
788 if (isa_registered)
789 isa_unregister_driver(&generic_NCR5380_isa_driver);
790}
791
792module_init(generic_NCR5380_init);
793module_exit(generic_NCR5380_exit);