blob: 6d245a7b9363348d6dc8c520f585eb33870edace [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>
29#include "g_NCR5380.h"
30#include "NCR5380.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <linux/ioport.h>
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020033#include <linux/isa.h>
34#include <linux/pnp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/interrupt.h>
36
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020037#define MAX_CARDS 8
38
39/* old-style parameters for compatibility */
Finn Thainc0965e62016-01-03 16:05:05 +110040static int ncr_irq;
Finn Thainc0965e62016-01-03 16:05:05 +110041static int ncr_addr;
42static int ncr_5380;
43static int ncr_53c400;
44static int ncr_53c400a;
45static int dtc_3181e;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +110046static int hp_c2502;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020047module_param(ncr_irq, int, 0);
48module_param(ncr_addr, int, 0);
49module_param(ncr_5380, int, 0);
50module_param(ncr_53c400, int, 0);
51module_param(ncr_53c400a, int, 0);
52module_param(dtc_3181e, int, 0);
53module_param(hp_c2502, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020055static int irq[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
56module_param_array(irq, int, NULL, 0);
57MODULE_PARM_DESC(irq, "IRQ number(s)");
58
59static int base[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
60module_param_array(base, int, NULL, 0);
61MODULE_PARM_DESC(base, "base address(es)");
62
63static int card[] = { -1, -1, -1, -1, -1, -1, -1, -1 };
64module_param_array(card, int, NULL, 0);
65MODULE_PARM_DESC(card, "card type (0=NCR5380, 1=NCR53C400, 2=NCR53C400A, 3=DTC3181E, 4=HP C2502)");
66
Ondrej Zaryb61bacb2016-10-10 00:46:52 -040067MODULE_ALIAS("g_NCR5380_mmio");
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020068MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Ondrej Zary906e4a3c2016-12-05 01:07:20 -050070static void g_NCR5380_trigger_irq(struct Scsi_Host *instance)
71{
72 struct NCR5380_hostdata *hostdata = shost_priv(instance);
73
74 /*
75 * An interrupt is triggered whenever BSY = false, SEL = true
76 * and a bit set in the SELECT_ENABLE_REG is asserted on the
77 * SCSI bus.
78 *
79 * Note that the bus is only driven when the phase control signals
80 * (I/O, C/D, and MSG) match those in the TCR.
81 */
82 NCR5380_write(TARGET_COMMAND_REG,
83 PHASE_SR_TO_TCR(NCR5380_read(STATUS_REG) & PHASE_MASK));
84 NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
85 NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
86 NCR5380_write(INITIATOR_COMMAND_REG,
87 ICR_BASE | ICR_ASSERT_DATA | ICR_ASSERT_SEL);
88
89 msleep(1);
90
91 NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
92 NCR5380_write(SELECT_ENABLE_REG, 0);
93 NCR5380_write(TARGET_COMMAND_REG, 0);
94}
95
96/**
97 * g_NCR5380_probe_irq - find the IRQ of a NCR5380 or equivalent
98 * @instance: SCSI host instance
99 *
100 * Autoprobe for the IRQ line used by the card by triggering an IRQ
101 * and then looking to see what interrupt actually turned up.
102 */
103
104static int g_NCR5380_probe_irq(struct Scsi_Host *instance)
105{
106 struct NCR5380_hostdata *hostdata = shost_priv(instance);
107 int irq_mask, irq;
108
109 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
110 irq_mask = probe_irq_on();
111 g_NCR5380_trigger_irq(instance);
112 irq = probe_irq_off(irq_mask);
113 NCR5380_read(RESET_PARITY_INTERRUPT_REG);
114
115 if (irq <= 0)
116 return NO_IRQ;
117 return irq;
118}
119
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100120/*
121 * Configure I/O address of 53C400A or DTC436 by writing magic numbers
122 * to ports 0x779 and 0x379.
123 */
124static void magic_configure(int idx, u8 irq, u8 magic[])
125{
126 u8 cfg = 0;
127
128 outb(magic[0], 0x779);
129 outb(magic[1], 0x379);
130 outb(magic[2], 0x379);
131 outb(magic[3], 0x379);
132 outb(magic[4], 0x379);
133
134 /* allowed IRQs for HP C2502 */
135 if (irq != 2 && irq != 3 && irq != 4 && irq != 5 && irq != 7)
136 irq = 0;
137 if (idx >= 0 && idx <= 7)
138 cfg = 0x80 | idx | (irq << 4);
139 outb(cfg, 0x379);
140}
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400141
142static unsigned int ncr_53c400a_ports[] = {
143 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0
144};
145static unsigned int dtc_3181e_ports[] = {
146 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0
147};
148static u8 ncr_53c400a_magic[] = { /* 53C400A & DTC436 */
149 0x59, 0xb9, 0xc5, 0xae, 0xa6
150};
151static u8 hp_c2502_magic[] = { /* HP C2502 */
152 0x0f, 0x22, 0xf0, 0x20, 0x80
153};
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100154
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200155static int generic_NCR5380_init_one(struct scsi_host_template *tpnt,
156 struct device *pdev, int base, int irq, int board)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400158 bool is_pmio = base <= 0xffff;
159 int ret;
160 int flags = 0;
161 unsigned int *ports = NULL;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100162 u8 *magic = NULL;
Ondrej Zary702a98c2010-08-10 18:01:16 -0700163 int i;
Ondrej Zaryc6084cb2016-01-03 16:06:19 +1100164 int port_idx = -1;
Finn Thain9d376402016-03-23 21:10:10 +1100165 unsigned long region_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct Scsi_Host *instance;
Ondrej Zary12150792016-01-03 16:06:15 +1100167 struct NCR5380_hostdata *hostdata;
Finn Thain820682b2016-10-10 00:46:53 -0400168 u8 __iomem *iomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200170 switch (board) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200171 case BOARD_NCR5380:
172 flags = FLAG_NO_PSEUDO_DMA | FLAG_DMA_FIXUP;
173 break;
174 case BOARD_NCR53C400A:
175 ports = ncr_53c400a_ports;
176 magic = ncr_53c400a_magic;
177 break;
178 case BOARD_HP_C2502:
179 ports = ncr_53c400a_ports;
180 magic = hp_c2502_magic;
181 break;
182 case BOARD_DTC3181E:
183 ports = dtc_3181e_ports;
184 magic = ncr_53c400a_magic;
185 break;
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400188 if (is_pmio && ports && magic) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200189 /* wakeup sequence for the NCR53C400A and DTC3181E */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200191 /* Disable the adapter and look for a free io port */
192 magic_configure(-1, 0, magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200194 region_size = 16;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200195 if (base)
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200196 for (i = 0; ports[i]; i++) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200197 if (base == ports[i]) { /* index found */
198 if (!request_region(ports[i],
199 region_size,
200 "ncr53c80"))
201 return -EBUSY;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200202 break;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200203 }
204 }
205 else
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200206 for (i = 0; ports[i]; i++) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200207 if (!request_region(ports[i], region_size,
208 "ncr53c80"))
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200209 continue;
210 if (inb(ports[i]) == 0xff)
211 break;
212 release_region(ports[i], region_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200214 if (ports[i]) {
215 /* At this point we have our region reserved */
216 magic_configure(i, 0, magic); /* no IRQ yet */
Ondrej Zary7b93ca42016-11-11 10:00:20 +1100217 base = ports[i];
218 outb(0xc0, base + 9);
219 if (inb(base + 9) != 0x80) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200220 ret = -ENODEV;
221 goto out_release;
222 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200223 port_idx = i;
224 } else
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200225 return -EINVAL;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400226 } else if (is_pmio) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200227 /* NCR5380 - no configuration, just grab */
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200228 region_size = 8;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200229 if (!base || !request_region(base, region_size, "ncr5380"))
230 return -EBUSY;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400231 } else { /* MMIO */
232 region_size = NCR53C400_region_size;
233 if (!request_mem_region(base, region_size, "ncr5380"))
234 return -EBUSY;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200235 }
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400236
237 if (is_pmio)
238 iomem = ioport_map(base, region_size);
239 else
240 iomem = ioremap(base, region_size);
241
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200242 if (!iomem) {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200243 ret = -ENOMEM;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200244 goto out_release;
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200245 }
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400246
247 instance = scsi_host_alloc(tpnt, sizeof(struct NCR5380_hostdata));
248 if (instance == NULL) {
249 ret = -ENOMEM;
250 goto out_unmap;
251 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200252 hostdata = shost_priv(instance);
253
Finn Thain820682b2016-10-10 00:46:53 -0400254 hostdata->io = iomem;
255 hostdata->region_size = region_size;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400256
257 if (is_pmio) {
Finn Thain820682b2016-10-10 00:46:53 -0400258 hostdata->io_port = base;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400259 hostdata->io_width = 1; /* 8-bit PDMA by default */
260 hostdata->offset = 0;
261
262 /*
263 * On NCR53C400 boards, NCR5380 registers are mapped 8 past
264 * the base address.
265 */
266 switch (board) {
267 case BOARD_NCR53C400:
Finn Thain820682b2016-10-10 00:46:53 -0400268 hostdata->io_port += 8;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400269 hostdata->c400_ctl_status = 0;
270 hostdata->c400_blk_cnt = 1;
271 hostdata->c400_host_buf = 4;
272 break;
273 case BOARD_DTC3181E:
274 hostdata->io_width = 2; /* 16-bit PDMA */
275 /* fall through */
276 case BOARD_NCR53C400A:
277 case BOARD_HP_C2502:
278 hostdata->c400_ctl_status = 9;
279 hostdata->c400_blk_cnt = 10;
280 hostdata->c400_host_buf = 8;
281 break;
282 }
283 } else {
Finn Thain820682b2016-10-10 00:46:53 -0400284 hostdata->base = base;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400285 hostdata->offset = NCR53C400_mem_base;
286 switch (board) {
287 case BOARD_NCR53C400:
288 hostdata->c400_ctl_status = 0x100;
289 hostdata->c400_blk_cnt = 0x101;
290 hostdata->c400_host_buf = 0x104;
291 break;
292 case BOARD_DTC3181E:
293 case BOARD_NCR53C400A:
294 case BOARD_HP_C2502:
295 pr_err(DRV_MODULE_NAME ": unknown register offsets\n");
296 ret = -EINVAL;
297 goto out_unregister;
298 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200299 }
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200300
Ondrej Zary89fa9b52016-12-05 01:07:19 -0500301 /* Check for vacant slot */
302 NCR5380_write(MODE_REG, 0);
303 if (NCR5380_read(MODE_REG) != 0) {
304 ret = -ENODEV;
305 goto out_unregister;
306 }
307
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200308 ret = NCR5380_init(instance, flags | FLAG_LATE_DMA_SETUP);
309 if (ret)
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200310 goto out_unregister;
311
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200312 switch (board) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200313 case BOARD_NCR53C400:
314 case BOARD_DTC3181E:
315 case BOARD_NCR53C400A:
316 case BOARD_HP_C2502:
317 NCR5380_write(hostdata->c400_ctl_status, CSR_BASE);
318 }
319
320 NCR5380_maybe_reset_bus(instance);
321
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200322 if (irq != IRQ_AUTO)
323 instance->irq = irq;
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200324 else
Ondrej Zary906e4a3c2016-12-05 01:07:20 -0500325 instance->irq = g_NCR5380_probe_irq(instance);
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200326
327 /* Compatibility with documented NCR5380 kernel parameters */
328 if (instance->irq == 255)
329 instance->irq = NO_IRQ;
330
331 if (instance->irq != NO_IRQ) {
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200332 /* set IRQ for HP C2502 */
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200333 if (board == BOARD_HP_C2502)
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200334 magic_configure(port_idx, instance->irq, magic);
Ondrej Zaryd91f5af2016-09-27 21:00:24 +0200335 if (request_irq(instance->irq, generic_NCR5380_intr,
336 0, "NCR5380", instance)) {
337 printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq);
338 instance->irq = NO_IRQ;
339 }
340 }
341
342 if (instance->irq == NO_IRQ) {
343 printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
344 printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
345 }
346
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200347 ret = scsi_add_host(instance, pdev);
348 if (ret)
349 goto out_free_irq;
350 scsi_scan_host(instance);
351 dev_set_drvdata(pdev, instance);
352 return 0;
Finn Thain0ad0eff2016-01-03 16:05:21 +1100353
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200354out_free_irq:
355 if (instance->irq != NO_IRQ)
356 free_irq(instance->irq, instance);
357 NCR5380_exit(instance);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100358out_unregister:
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200359 scsi_host_put(instance);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400360out_unmap:
Finn Thain0ad0eff2016-01-03 16:05:21 +1100361 iounmap(iomem);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400362out_release:
363 if (is_pmio)
364 release_region(base, region_size);
365 else
366 release_mem_region(base, region_size);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200367 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200370static void generic_NCR5380_release_resources(struct Scsi_Host *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400372 struct NCR5380_hostdata *hostdata = shost_priv(instance);
Finn Thain820682b2016-10-10 00:46:53 -0400373 void __iomem *iomem = hostdata->io;
374 unsigned long io_port = hostdata->io_port;
375 unsigned long base = hostdata->base;
376 unsigned long region_size = hostdata->region_size;
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400377
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200378 scsi_remove_host(instance);
Finn Thain22f5f102014-11-12 16:11:56 +1100379 if (instance->irq != NO_IRQ)
Jeff Garzik1e641662007-11-11 19:52:05 -0500380 free_irq(instance->irq, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 NCR5380_exit(instance);
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200382 scsi_host_put(instance);
Finn Thain820682b2016-10-10 00:46:53 -0400383 iounmap(iomem);
384 if (io_port)
385 release_region(io_port, region_size);
386 else
387 release_mem_region(base, region_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/**
Finn Thain6c4b88c2016-03-23 21:10:17 +1100391 * generic_NCR5380_pread - pseudo DMA read
Finn Thain4a98f892016-10-10 00:46:53 -0400392 * @hostdata: scsi host private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 * @dst: buffer to read into
394 * @len: buffer length
395 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300396 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * controller
398 */
399
Finn Thain4a98f892016-10-10 00:46:53 -0400400static inline int generic_NCR5380_pread(struct NCR5380_hostdata *hostdata,
Finn Thain6c4b88c2016-03-23 21:10:17 +1100401 unsigned char *dst, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 int blocks = len / 128;
404 int start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ondrej Zary12150792016-01-03 16:06:15 +1100406 NCR5380_write(hostdata->c400_ctl_status, CSR_BASE | CSR_TRANS_DIR);
407 NCR5380_write(hostdata->c400_blk_cnt, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 while (1) {
Ondrej Zary12150792016-01-03 16:06:15 +1100409 if (NCR5380_read(hostdata->c400_blk_cnt) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 break;
Ondrej Zary12150792016-01-03 16:06:15 +1100411 if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 printk(KERN_ERR "53C400r: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
413 return -1;
414 }
Ondrej Zary12150792016-01-03 16:06:15 +1100415 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
416 ; /* FIXME - no timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Finn Thain820682b2016-10-10 00:46:53 -0400418 if (hostdata->io_port && hostdata->io_width == 2)
419 insw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100420 dst + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400421 else if (hostdata->io_port)
422 insb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100423 dst + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400424 else
425 memcpy_fromio(dst + start,
Finn Thain820682b2016-10-10 00:46:53 -0400426 hostdata->io + NCR53C400_host_buffer, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 start += 128;
429 blocks--;
430 }
431
432 if (blocks) {
Ondrej Zary12150792016-01-03 16:06:15 +1100433 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
434 ; /* FIXME - no timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Finn Thain820682b2016-10-10 00:46:53 -0400436 if (hostdata->io_port && hostdata->io_width == 2)
437 insw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100438 dst + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400439 else if (hostdata->io_port)
440 insb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100441 dst + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400442 else
443 memcpy_fromio(dst + start,
Finn Thain820682b2016-10-10 00:46:53 -0400444 hostdata->io + NCR53C400_host_buffer, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 start += 128;
447 blocks--;
448 }
449
Ondrej Zary12150792016-01-03 16:06:15 +1100450 if (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 printk("53C400r: no 53C80 gated irq after transfer");
452
Ondrej Zary42fc6372016-01-03 16:06:18 +1100453 /* wait for 53C80 registers to be available */
454 while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 ;
Ondrej Zary42fc6372016-01-03 16:06:18 +1100456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER))
458 printk(KERN_ERR "53C400r: no end dma signal\n");
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461}
462
463/**
Finn Thain6c4b88c2016-03-23 21:10:17 +1100464 * generic_NCR5380_pwrite - pseudo DMA write
Finn Thain4a98f892016-10-10 00:46:53 -0400465 * @hostdata: scsi host private data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * @dst: buffer to read into
467 * @len: buffer length
468 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300469 * Perform a pseudo DMA mode read from an NCR53C400 or equivalent
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * controller
471 */
472
Finn Thain4a98f892016-10-10 00:46:53 -0400473static inline int generic_NCR5380_pwrite(struct NCR5380_hostdata *hostdata,
Finn Thain6c4b88c2016-03-23 21:10:17 +1100474 unsigned char *src, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 int blocks = len / 128;
477 int start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Ondrej Zary12150792016-01-03 16:06:15 +1100479 NCR5380_write(hostdata->c400_ctl_status, CSR_BASE);
480 NCR5380_write(hostdata->c400_blk_cnt, blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 while (1) {
Ondrej Zary12150792016-01-03 16:06:15 +1100482 if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 printk(KERN_ERR "53C400w: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks);
484 return -1;
485 }
486
Ondrej Zary12150792016-01-03 16:06:15 +1100487 if (NCR5380_read(hostdata->c400_blk_cnt) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
Ondrej Zary12150792016-01-03 16:06:15 +1100489 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 ; // FIXME - timeout
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400491
Finn Thain820682b2016-10-10 00:46:53 -0400492 if (hostdata->io_port && hostdata->io_width == 2)
493 outsw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100494 src + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400495 else if (hostdata->io_port)
496 outsb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100497 src + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400498 else
Finn Thain820682b2016-10-10 00:46:53 -0400499 memcpy_toio(hostdata->io + NCR53C400_host_buffer,
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400500 src + start, 128);
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 start += 128;
503 blocks--;
504 }
505 if (blocks) {
Ondrej Zary12150792016-01-03 16:06:15 +1100506 while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ; // FIXME - no timeout
508
Finn Thain820682b2016-10-10 00:46:53 -0400509 if (hostdata->io_port && hostdata->io_width == 2)
510 outsw(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100511 src + start, 64);
Finn Thain820682b2016-10-10 00:46:53 -0400512 else if (hostdata->io_port)
513 outsb(hostdata->io_port + hostdata->c400_host_buf,
Ondrej Zary12150792016-01-03 16:06:15 +1100514 src + start, 128);
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400515 else
Finn Thain820682b2016-10-10 00:46:53 -0400516 memcpy_toio(hostdata->io + NCR53C400_host_buffer,
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400517 src + start, 128);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 start += 128;
520 blocks--;
521 }
522
Ondrej Zary42fc6372016-01-03 16:06:18 +1100523 /* wait for 53C80 registers to be available */
524 while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG)) {
Ondrej Zaryaeb51152016-01-03 16:06:17 +1100525 udelay(4); /* DTC436 chip hangs without this */
526 /* FIXME - no timeout */
527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) {
530 printk(KERN_ERR "53C400w: no end dma signal\n");
531 }
Ondrej Zary42fc6372016-01-03 16:06:18 +1100532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT))
534 ; // TIMEOUT
535 return 0;
536}
Finn Thainff3d4572016-01-03 16:05:25 +1100537
Finn Thain4a98f892016-10-10 00:46:53 -0400538static int generic_NCR5380_dma_xfer_len(struct NCR5380_hostdata *hostdata,
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100539 struct scsi_cmnd *cmd)
Finn Thainff3d4572016-01-03 16:05:25 +1100540{
541 int transfersize = cmd->transfersize;
542
Finn Thain7e9ec8d2016-03-23 21:10:11 +1100543 if (hostdata->flags & FLAG_NO_PSEUDO_DMA)
544 return 0;
545
Finn Thainff3d4572016-01-03 16:05:25 +1100546 /* Limit transfers to 32K, for xx400 & xx406
547 * pseudoDMA that transfers in 128 bytes blocks.
548 */
549 if (transfersize > 32 * 1024 && cmd->SCp.this_residual &&
550 !(cmd->SCp.this_residual % transfersize))
551 transfersize = 32 * 1024;
552
Ondrej Zaryf0394622016-01-03 16:06:14 +1100553 /* 53C400 datasheet: non-modulo-128-byte transfers should use PIO */
554 if (transfersize % 128)
555 transfersize = 0;
556
Finn Thainff3d4572016-01-03 16:05:25 +1100557 return transfersize;
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*
561 * Include the NCR5380 core code that we build our driver around
562 */
563
564#include "NCR5380.c"
565
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100566static struct scsi_host_template driver_template = {
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200567 .module = THIS_MODULE,
Finn Thainaa2e2cb2016-01-03 16:05:48 +1100568 .proc_name = DRV_MODULE_NAME,
Finn Thainaa2e2cb2016-01-03 16:05:48 +1100569 .name = "Generic NCR5380/NCR53C400 SCSI",
Finn Thainaa2e2cb2016-01-03 16:05:48 +1100570 .info = generic_NCR5380_info,
571 .queuecommand = generic_NCR5380_queue_command,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 .eh_abort_handler = generic_NCR5380_abort,
573 .eh_bus_reset_handler = generic_NCR5380_bus_reset,
Finn Thainaa2e2cb2016-01-03 16:05:48 +1100574 .can_queue = 16,
575 .this_id = 7,
576 .sg_tablesize = SG_ALL,
577 .cmd_per_lun = 2,
578 .use_clustering = DISABLE_CLUSTERING,
Finn Thain32b26a12016-01-03 16:05:58 +1100579 .cmd_size = NCR5380_CMD_SIZE,
Finn Thain0a4e3612016-01-03 16:06:07 +1100580 .max_sectors = 128,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581};
Finn Thain161c0052016-01-03 16:05:46 +1100582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200584static int generic_NCR5380_isa_match(struct device *pdev, unsigned int ndev)
585{
586 int ret = generic_NCR5380_init_one(&driver_template, pdev, base[ndev],
587 irq[ndev], card[ndev]);
588 if (ret) {
589 if (base[ndev])
590 printk(KERN_WARNING "Card not found at address 0x%03x\n",
591 base[ndev]);
592 return 0;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200595 return 1;
596}
597
598static int generic_NCR5380_isa_remove(struct device *pdev,
599 unsigned int ndev)
600{
601 generic_NCR5380_release_resources(dev_get_drvdata(pdev));
602 dev_set_drvdata(pdev, NULL);
603 return 0;
604}
605
606static struct isa_driver generic_NCR5380_isa_driver = {
607 .match = generic_NCR5380_isa_match,
608 .remove = generic_NCR5380_isa_remove,
609 .driver = {
610 .name = DRV_MODULE_NAME
611 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612};
613
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400614#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200615static struct pnp_device_id generic_NCR5380_pnp_ids[] = {
616 { .id = "DTC436e", .driver_data = BOARD_DTC3181E },
617 { .id = "" }
618};
619MODULE_DEVICE_TABLE(pnp, generic_NCR5380_pnp_ids);
620
621static int generic_NCR5380_pnp_probe(struct pnp_dev *pdev,
622 const struct pnp_device_id *id)
623{
624 int base, irq;
625
626 if (pnp_activate_dev(pdev) < 0)
627 return -EBUSY;
628
629 base = pnp_port_start(pdev, 0);
630 irq = pnp_irq(pdev, 0);
631
632 return generic_NCR5380_init_one(&driver_template, &pdev->dev, base, irq,
633 id->driver_data);
634}
635
636static void generic_NCR5380_pnp_remove(struct pnp_dev *pdev)
637{
638 generic_NCR5380_release_resources(pnp_get_drvdata(pdev));
639 pnp_set_drvdata(pdev, NULL);
640}
641
642static struct pnp_driver generic_NCR5380_pnp_driver = {
643 .name = DRV_MODULE_NAME,
644 .id_table = generic_NCR5380_pnp_ids,
645 .probe = generic_NCR5380_pnp_probe,
646 .remove = generic_NCR5380_pnp_remove,
647};
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400648#endif /* defined(CONFIG_PNP) */
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200649
650static int pnp_registered, isa_registered;
651
652static int __init generic_NCR5380_init(void)
653{
654 int ret = 0;
655
656 /* compatibility with old-style parameters */
657 if (irq[0] == 0 && base[0] == 0 && card[0] == -1) {
658 irq[0] = ncr_irq;
659 base[0] = ncr_addr;
660 if (ncr_5380)
661 card[0] = BOARD_NCR5380;
662 if (ncr_53c400)
663 card[0] = BOARD_NCR53C400;
664 if (ncr_53c400a)
665 card[0] = BOARD_NCR53C400A;
666 if (dtc_3181e)
667 card[0] = BOARD_DTC3181E;
668 if (hp_c2502)
669 card[0] = BOARD_HP_C2502;
670 }
671
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400672#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200673 if (!pnp_register_driver(&generic_NCR5380_pnp_driver))
674 pnp_registered = 1;
Ondrej Zary702a98c2010-08-10 18:01:16 -0700675#endif
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200676 ret = isa_register_driver(&generic_NCR5380_isa_driver, MAX_CARDS);
677 if (!ret)
678 isa_registered = 1;
679
680 return (pnp_registered || isa_registered) ? 0 : ret;
681}
682
683static void __exit generic_NCR5380_exit(void)
684{
Ondrej Zaryb61bacb2016-10-10 00:46:52 -0400685#ifdef CONFIG_PNP
Ondrej Zarya8cfbca2016-09-27 21:00:25 +0200686 if (pnp_registered)
687 pnp_unregister_driver(&generic_NCR5380_pnp_driver);
688#endif
689 if (isa_registered)
690 isa_unregister_driver(&generic_NCR5380_isa_driver);
691}
692
693module_init(generic_NCR5380_init);
694module_exit(generic_NCR5380_exit);