blob: c4fcf2fa74fc48aab364301dd4c5554fd3926f13 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
3 *
4 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
5 *
Finn Thain757f5ba2014-03-18 11:42:24 +11006 * VME support added by Sam Creasey
7 *
8 * TODO: modify this driver to support multiple Sun3 SCSI VME boards
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Adapted from mac_scsinew.c:
11 */
12/*
13 * Generic Macintosh NCR5380 driver
14 *
15 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
16 *
17 * derived in part from:
18 */
19/*
20 * Generic Generic NCR5380 driver
21 *
22 * Copyright 1995, Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ioport.h>
29#include <linux/init.h>
30#include <linux/blkdev.h>
Finn Thain0d31f872014-11-13 12:21:28 +110031#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/dvma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <scsi/scsi_host.h>
37#include "sun3_scsi.h"
Finn Thain2231ef82014-11-12 16:12:12 +110038
39/* Definitions for the core NCR5380 driver. */
40
41#define REAL_DMA
Finn Thain2231ef82014-11-12 16:12:12 +110042/* #define SUPPORT_TAGS */
Finn Thain8dad0c52014-11-12 16:12:17 +110043/* minimum number of bytes to do dma on */
44#define DMA_MIN_SIZE 129
Finn Thain2231ef82014-11-12 16:12:12 +110045
46/* #define MAX_TAGS 32 */
47
48#define NCR5380_implementation_fields /* none */
49
50#define NCR5380_read(reg) sun3scsi_read(reg)
51#define NCR5380_write(reg, value) sun3scsi_write(reg, value)
52
53#define NCR5380_queue_command sun3scsi_queue_command
54#define NCR5380_bus_reset sun3scsi_bus_reset
55#define NCR5380_abort sun3scsi_abort
56#define NCR5380_show_info sun3scsi_show_info
57#define NCR5380_info sun3scsi_info
58
59#define NCR5380_dma_read_setup(instance, data, count) \
60 sun3scsi_dma_setup(data, count, 0)
61#define NCR5380_dma_write_setup(instance, data, count) \
62 sun3scsi_dma_setup(data, count, 1)
63#define NCR5380_dma_residual(instance) \
64 sun3scsi_dma_residual(instance)
65#define NCR5380_dma_xfer_len(instance, cmd, phase) \
66 sun3scsi_dma_xfer_len(cmd->SCp.this_residual, cmd, !((phase) & SR_IO))
67
Finn Thain8dad0c52014-11-12 16:12:17 +110068#define NCR5380_acquire_dma_irq(instance) (1)
69#define NCR5380_release_dma_irq(instance)
70
Finn Thain9f6620a2014-03-18 11:42:23 +110071#include "NCR5380.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Finn Thain2231ef82014-11-12 16:12:12 +110074extern int sun3_map_test(unsigned long, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int setup_can_queue = -1;
77module_param(setup_can_queue, int, 0);
78static int setup_cmd_per_lun = -1;
79module_param(setup_cmd_per_lun, int, 0);
80static int setup_sg_tablesize = -1;
81module_param(setup_sg_tablesize, int, 0);
82#ifdef SUPPORT_TAGS
83static int setup_use_tagged_queuing = -1;
84module_param(setup_use_tagged_queuing, int, 0);
85#endif
86static int setup_hostid = -1;
87module_param(setup_hostid, int, 0);
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* ms to wait after hitting dma regs */
90#define SUN3_DMA_DELAY 10
91
92/* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
93#define SUN3_DVMA_BUFSIZE 0xe000
94
Finn Thain2231ef82014-11-12 16:12:12 +110095static struct scsi_cmnd *sun3_dma_setup_done;
Finn Thain0d31f872014-11-13 12:21:28 +110096static unsigned char *sun3_scsi_regp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static volatile struct sun3_dma_regs *dregs;
Finn Thain0d31f872014-11-13 12:21:28 +110098static struct sun3_udc_regs *udc_regs;
Finn Thaind5f7e652016-01-03 16:05:03 +110099static unsigned char *sun3_dma_orig_addr;
100static unsigned long sun3_dma_orig_count;
101static int sun3_dma_active;
102static unsigned long last_residual;
Finn Thain0d31f872014-11-13 12:21:28 +1100103static struct Scsi_Host *default_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * NCR 5380 register access functions
107 */
108
109static inline unsigned char sun3scsi_read(int reg)
110{
Finn Thain0d31f872014-11-13 12:21:28 +1100111 return in_8(sun3_scsi_regp + reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static inline void sun3scsi_write(int reg, int value)
115{
Finn Thain0d31f872014-11-13 12:21:28 +1100116 out_8(sun3_scsi_regp + reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Finn Thain757f5ba2014-03-18 11:42:24 +1100119#ifndef SUN3_SCSI_VME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/* dma controller register access functions */
121
122static inline unsigned short sun3_udc_read(unsigned char reg)
123{
124 unsigned short ret;
125
126 dregs->udc_addr = UDC_CSR;
127 udelay(SUN3_DMA_DELAY);
128 ret = dregs->udc_data;
129 udelay(SUN3_DMA_DELAY);
130
131 return ret;
132}
133
134static inline void sun3_udc_write(unsigned short val, unsigned char reg)
135{
136 dregs->udc_addr = reg;
137 udelay(SUN3_DMA_DELAY);
138 dregs->udc_data = val;
139 udelay(SUN3_DMA_DELAY);
140}
Finn Thain757f5ba2014-03-18 11:42:24 +1100141#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143// safe bits for the CSR
144#define CSR_GOOD 0x060f
145
David Howells7d12e782006-10-05 14:55:46 +0100146static irqreturn_t scsi_sun3_intr(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 unsigned short csr = dregs->csr;
149 int handled = 0;
150
Finn Thain757f5ba2014-03-18 11:42:24 +1100151#ifdef SUN3_SCSI_VME
152 dregs->csr &= ~CSR_DMA_ENABLE;
153#endif
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if(csr & ~CSR_GOOD) {
156 if(csr & CSR_DMA_BUSERR) {
157 printk("scsi%d: bus error in dma\n", default_instance->host_no);
158 }
159
160 if(csr & CSR_DMA_CONFLICT) {
161 printk("scsi%d: dma conflict\n", default_instance->host_no);
162 }
163 handled = 1;
164 }
165
166 if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
David Howells7d12e782006-10-05 14:55:46 +0100167 NCR5380_intr(irq, dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 handled = 1;
169 }
170
171 return IRQ_RETVAL(handled);
172}
173
174/*
175 * Debug stuff - to be called on NMI, or sysrq key. Use at your own risk;
176 * reentering NCR5380_print_status seems to have ugly side effects
177 */
178
179/* this doesn't seem to get used at all -- sam */
180#if 0
181void sun3_sun3_debug (void)
182{
183 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (default_instance) {
186 local_irq_save(flags);
187 NCR5380_print_status(default_instance);
188 local_irq_restore(flags);
189 }
190}
191#endif
192
193
194/* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
195static unsigned long sun3scsi_dma_setup(void *data, unsigned long count, int write_flag)
196{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 void *addr;
198
199 if(sun3_dma_orig_addr != NULL)
200 dvma_unmap(sun3_dma_orig_addr);
201
Finn Thain757f5ba2014-03-18 11:42:24 +1100202#ifdef SUN3_SCSI_VME
203 addr = (void *)dvma_map_vme((unsigned long) data, count);
204#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 addr = (void *)dvma_map((unsigned long) data, count);
Finn Thain757f5ba2014-03-18 11:42:24 +1100206#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 sun3_dma_orig_addr = addr;
209 sun3_dma_orig_count = count;
Finn Thain757f5ba2014-03-18 11:42:24 +1100210
211#ifndef SUN3_SCSI_VME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 dregs->fifo_count = 0;
213 sun3_udc_write(UDC_RESET, UDC_CSR);
214
215 /* reset fifo */
216 dregs->csr &= ~CSR_FIFO;
217 dregs->csr |= CSR_FIFO;
Finn Thain757f5ba2014-03-18 11:42:24 +1100218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* set direction */
221 if(write_flag)
222 dregs->csr |= CSR_SEND;
223 else
224 dregs->csr &= ~CSR_SEND;
225
Finn Thain757f5ba2014-03-18 11:42:24 +1100226#ifdef SUN3_SCSI_VME
227 dregs->csr |= CSR_PACK_ENABLE;
228
229 dregs->dma_addr_hi = ((unsigned long)addr >> 16);
230 dregs->dma_addr_lo = ((unsigned long)addr & 0xffff);
231
232 dregs->dma_count_hi = 0;
233 dregs->dma_count_lo = 0;
234 dregs->fifo_count_hi = 0;
235 dregs->fifo_count = 0;
236#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* byte count for fifo */
238 dregs->fifo_count = count;
239
240 sun3_udc_write(UDC_RESET, UDC_CSR);
241
242 /* reset fifo */
243 dregs->csr &= ~CSR_FIFO;
244 dregs->csr |= CSR_FIFO;
245
246 if(dregs->fifo_count != count) {
247 printk("scsi%d: fifo_mismatch %04x not %04x\n",
248 default_instance->host_no, dregs->fifo_count,
249 (unsigned int) count);
Finn Thaind614f062014-03-18 11:42:16 +1100250 NCR5380_dprint(NDEBUG_DMA, default_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 /* setup udc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
255 udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 udc_regs->count = count/2; /* count in words */
257 udc_regs->mode_hi = UDC_MODE_HIWORD;
258 if(write_flag) {
259 if(count & 1)
260 udc_regs->count++;
261 udc_regs->mode_lo = UDC_MODE_LSEND;
262 udc_regs->rsel = UDC_RSEL_SEND;
263 } else {
264 udc_regs->mode_lo = UDC_MODE_LRECV;
265 udc_regs->rsel = UDC_RSEL_RECV;
266 }
267
268 /* announce location of regs block */
269 sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
270 UDC_CHN_HI);
271
272 sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
273
274 /* set dma master on */
275 sun3_udc_write(0xd, UDC_MODE);
276
277 /* interrupt enable */
278 sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
Finn Thain757f5ba2014-03-18 11:42:24 +1100279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 return count;
282
283}
284
Finn Thain757f5ba2014-03-18 11:42:24 +1100285#ifndef SUN3_SCSI_VME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286static inline unsigned long sun3scsi_dma_count(struct Scsi_Host *instance)
287{
288 unsigned short resid;
289
290 dregs->udc_addr = 0x32;
291 udelay(SUN3_DMA_DELAY);
292 resid = dregs->udc_data;
293 udelay(SUN3_DMA_DELAY);
294 resid *= 2;
295
296 return (unsigned long) resid;
297}
Finn Thain757f5ba2014-03-18 11:42:24 +1100298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
301{
302 return last_residual;
303}
304
Henne811c9362006-10-03 19:51:59 +0200305static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted,
306 struct scsi_cmnd *cmd,
307 int write_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200309 if (cmd->request->cmd_type == REQ_TYPE_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return wanted;
311 else
312 return 0;
313}
314
315static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
316{
Finn Thain757f5ba2014-03-18 11:42:24 +1100317#ifdef SUN3_SCSI_VME
318 unsigned short csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Finn Thain757f5ba2014-03-18 11:42:24 +1100320 csr = dregs->csr;
321
322 dregs->dma_count_hi = (sun3_dma_orig_count >> 16);
323 dregs->dma_count_lo = (sun3_dma_orig_count & 0xffff);
324
325 dregs->fifo_count_hi = (sun3_dma_orig_count >> 16);
326 dregs->fifo_count = (sun3_dma_orig_count & 0xffff);
327
328/* if(!(csr & CSR_DMA_ENABLE))
329 * dregs->csr |= CSR_DMA_ENABLE;
330 */
331#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 sun3_udc_write(UDC_CHN_START, UDC_CSR);
Finn Thain757f5ba2014-03-18 11:42:24 +1100333#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 return 0;
336}
337
338/* clean up after our dma is done */
339static int sun3scsi_dma_finish(int write_flag)
340{
Finn Thain757f5ba2014-03-18 11:42:24 +1100341 unsigned short __maybe_unused count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned short fifo;
343 int ret = 0;
344
345 sun3_dma_active = 0;
Finn Thain757f5ba2014-03-18 11:42:24 +1100346
347#ifdef SUN3_SCSI_VME
348 dregs->csr &= ~CSR_DMA_ENABLE;
349
350 fifo = dregs->fifo_count;
351 if (write_flag) {
352 if ((fifo > 0) && (fifo < sun3_dma_orig_count))
353 fifo++;
354 }
355
356 last_residual = fifo;
357 /* empty bytes from the fifo which didn't make it */
358 if ((!write_flag) && (dregs->csr & CSR_LEFT)) {
359 unsigned char *vaddr;
360
361 vaddr = (unsigned char *)dvma_vmetov(sun3_dma_orig_addr);
362
363 vaddr += (sun3_dma_orig_count - fifo);
364 vaddr--;
365
366 switch (dregs->csr & CSR_LEFT) {
367 case CSR_LEFT_3:
368 *vaddr = (dregs->bpack_lo & 0xff00) >> 8;
369 vaddr--;
370
371 case CSR_LEFT_2:
372 *vaddr = (dregs->bpack_hi & 0x00ff);
373 vaddr--;
374
375 case CSR_LEFT_1:
376 *vaddr = (dregs->bpack_hi & 0xff00) >> 8;
377 break;
378 }
379 }
380#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 // check to empty the fifo on a read
382 if(!write_flag) {
383 int tmo = 20000; /* .2 sec */
384
385 while(1) {
386 if(dregs->csr & CSR_FIFO_EMPTY)
387 break;
388
389 if(--tmo <= 0) {
390 printk("sun3scsi: fifo failed to empty!\n");
391 return 1;
392 }
393 udelay(10);
394 }
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 count = sun3scsi_dma_count(default_instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 fifo = dregs->fifo_count;
400 last_residual = fifo;
401
402 /* empty bytes from the fifo which didn't make it */
403 if((!write_flag) && (count - fifo) == 2) {
404 unsigned short data;
405 unsigned char *vaddr;
406
407 data = dregs->fifo_data;
408 vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
409
410 vaddr += (sun3_dma_orig_count - fifo);
411
412 vaddr[-2] = (data & 0xff00) >> 8;
413 vaddr[-1] = (data & 0xff);
414 }
Finn Thain757f5ba2014-03-18 11:42:24 +1100415#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 dvma_unmap(sun3_dma_orig_addr);
418 sun3_dma_orig_addr = NULL;
Finn Thain757f5ba2014-03-18 11:42:24 +1100419
420#ifdef SUN3_SCSI_VME
421 dregs->dma_addr_hi = 0;
422 dregs->dma_addr_lo = 0;
423 dregs->dma_count_hi = 0;
424 dregs->dma_count_lo = 0;
425
426 dregs->fifo_count = 0;
427 dregs->fifo_count_hi = 0;
428
429 dregs->csr &= ~CSR_SEND;
430/* dregs->csr |= CSR_DMA_ENABLE; */
431#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 sun3_udc_write(UDC_RESET, UDC_CSR);
433 dregs->fifo_count = 0;
434 dregs->csr &= ~CSR_SEND;
435
436 /* reset fifo */
437 dregs->csr &= ~CSR_FIFO;
438 dregs->csr |= CSR_FIFO;
Finn Thain757f5ba2014-03-18 11:42:24 +1100439#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 sun3_dma_setup_done = NULL;
442
443 return ret;
444
445}
446
Finn Thain8dad0c52014-11-12 16:12:17 +1100447#include "atari_NCR5380.c"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Finn Thain0d31f872014-11-13 12:21:28 +1100449#ifdef SUN3_SCSI_VME
450#define SUN3_SCSI_NAME "Sun3 NCR5380 VME SCSI"
451#define DRV_MODULE_NAME "sun3_scsi_vme"
452#else
453#define SUN3_SCSI_NAME "Sun3 NCR5380 SCSI"
454#define DRV_MODULE_NAME "sun3_scsi"
455#endif
456
457#define PFX DRV_MODULE_NAME ": "
458
459static struct scsi_host_template sun3_scsi_template = {
460 .module = THIS_MODULE,
461 .proc_name = DRV_MODULE_NAME,
Geert Uytterhoeven9dcc26c2013-04-10 13:52:09 +0200462 .show_info = sun3scsi_show_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 .name = SUN3_SCSI_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 .info = sun3scsi_info,
465 .queuecommand = sun3scsi_queue_command,
466 .eh_abort_handler = sun3scsi_abort,
467 .eh_bus_reset_handler = sun3scsi_bus_reset,
Finn Thaind572f65f2014-11-12 16:12:00 +1100468 .can_queue = 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 .this_id = 7,
Finn Thaind572f65f2014-11-12 16:12:00 +1100470 .sg_tablesize = SG_NONE,
471 .cmd_per_lun = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 .use_clustering = DISABLE_CLUSTERING
473};
474
Finn Thain0d31f872014-11-13 12:21:28 +1100475static int __init sun3_scsi_probe(struct platform_device *pdev)
476{
477 struct Scsi_Host *instance;
478 int error;
479 struct resource *irq, *mem;
480 unsigned char *ioaddr;
Finn Thainca513fc2014-11-12 16:12:19 +1100481 int host_flags = 0;
Finn Thain0d31f872014-11-13 12:21:28 +1100482#ifdef SUN3_SCSI_VME
483 int i;
484#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Finn Thain0d31f872014-11-13 12:21:28 +1100486 if (setup_can_queue > 0)
487 sun3_scsi_template.can_queue = setup_can_queue;
488 if (setup_cmd_per_lun > 0)
489 sun3_scsi_template.cmd_per_lun = setup_cmd_per_lun;
490 if (setup_sg_tablesize >= 0)
491 sun3_scsi_template.sg_tablesize = setup_sg_tablesize;
492 if (setup_hostid >= 0)
493 sun3_scsi_template.this_id = setup_hostid & 7;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Finn Thain0d31f872014-11-13 12:21:28 +1100495#ifdef SUN3_SCSI_VME
496 ioaddr = NULL;
497 for (i = 0; i < 2; i++) {
498 unsigned char x;
499
500 irq = platform_get_resource(pdev, IORESOURCE_IRQ, i);
501 mem = platform_get_resource(pdev, IORESOURCE_MEM, i);
502 if (!irq || !mem)
503 break;
504
505 ioaddr = sun3_ioremap(mem->start, resource_size(mem),
506 SUN3_PAGE_TYPE_VME16);
507 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
508
509 if (sun3_map_test((unsigned long)dregs, &x)) {
510 unsigned short oldcsr;
511
512 oldcsr = dregs->csr;
513 dregs->csr = 0;
514 udelay(SUN3_DMA_DELAY);
515 if (dregs->csr == 0x1400)
516 break;
517
518 dregs->csr = oldcsr;
519 }
520
521 iounmap(ioaddr);
522 ioaddr = NULL;
523 }
524 if (!ioaddr)
525 return -ENODEV;
526#else
527 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
528 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
529 if (!irq || !mem)
530 return -ENODEV;
531
532 ioaddr = ioremap(mem->start, resource_size(mem));
533 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
534
535 udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs));
536 if (!udc_regs) {
537 pr_err(PFX "couldn't allocate DVMA memory!\n");
538 iounmap(ioaddr);
539 return -ENOMEM;
540 }
541#endif
542
543 sun3_scsi_regp = ioaddr;
544
545 instance = scsi_host_alloc(&sun3_scsi_template,
546 sizeof(struct NCR5380_hostdata));
547 if (!instance) {
548 error = -ENOMEM;
549 goto fail_alloc;
550 }
551 default_instance = instance;
552
553 instance->io_port = (unsigned long)ioaddr;
554 instance->irq = irq->start;
555
Finn Thainca513fc2014-11-12 16:12:19 +1100556#ifdef SUPPORT_TAGS
557 host_flags |= setup_use_tagged_queuing > 0 ? FLAG_TAGGED_QUEUING : 0;
558#endif
559
Finn Thain0ad0eff2016-01-03 16:05:21 +1100560 error = NCR5380_init(instance, host_flags);
561 if (error)
562 goto fail_init;
Finn Thain0d31f872014-11-13 12:21:28 +1100563
564 error = request_irq(instance->irq, scsi_sun3_intr, 0,
565 "NCR5380", instance);
566 if (error) {
567#ifdef REAL_DMA
568 pr_err(PFX "scsi%d: IRQ %d not free, bailing out\n",
569 instance->host_no, instance->irq);
570 goto fail_irq;
571#else
572 pr_warn(PFX "scsi%d: IRQ %d not free, interrupts disabled\n",
573 instance->host_no, instance->irq);
574 instance->irq = NO_IRQ;
575#endif
576 }
577
578 dregs->csr = 0;
579 udelay(SUN3_DMA_DELAY);
580 dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
581 udelay(SUN3_DMA_DELAY);
582 dregs->fifo_count = 0;
583#ifdef SUN3_SCSI_VME
584 dregs->fifo_count_hi = 0;
585 dregs->dma_addr_hi = 0;
586 dregs->dma_addr_lo = 0;
587 dregs->dma_count_hi = 0;
588 dregs->dma_count_lo = 0;
589
590 dregs->ivect = VME_DATA24 | (instance->irq & 0xff);
591#endif
592
Finn Thain9c3f0e22016-01-03 16:05:11 +1100593 NCR5380_maybe_reset_bus(instance);
Finn Thain0d31f872014-11-13 12:21:28 +1100594
595 error = scsi_add_host(instance, NULL);
596 if (error)
597 goto fail_host;
598
599 platform_set_drvdata(pdev, instance);
600
601 scsi_scan_host(instance);
602 return 0;
603
604fail_host:
605 if (instance->irq != NO_IRQ)
606 free_irq(instance->irq, instance);
607fail_irq:
608 NCR5380_exit(instance);
Finn Thain0ad0eff2016-01-03 16:05:21 +1100609fail_init:
Finn Thain0d31f872014-11-13 12:21:28 +1100610 scsi_host_put(instance);
611fail_alloc:
612 if (udc_regs)
613 dvma_free(udc_regs);
614 iounmap(sun3_scsi_regp);
615 return error;
616}
617
618static int __exit sun3_scsi_remove(struct platform_device *pdev)
619{
620 struct Scsi_Host *instance = platform_get_drvdata(pdev);
621
622 scsi_remove_host(instance);
623 if (instance->irq != NO_IRQ)
624 free_irq(instance->irq, instance);
625 NCR5380_exit(instance);
626 scsi_host_put(instance);
627 if (udc_regs)
628 dvma_free(udc_regs);
629 iounmap(sun3_scsi_regp);
630 return 0;
631}
632
633static struct platform_driver sun3_scsi_driver = {
634 .remove = __exit_p(sun3_scsi_remove),
635 .driver = {
636 .name = DRV_MODULE_NAME,
Finn Thain0d31f872014-11-13 12:21:28 +1100637 },
638};
639
640module_platform_driver_probe(sun3_scsi_driver, sun3_scsi_probe);
641
642MODULE_ALIAS("platform:" DRV_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643MODULE_LICENSE("GPL");