6 * VME support added by Sam Creasey
8 * TODO: modify this driver to support multiple Sun3 SCSI VME boards
10 * Adapted from mac_scsinew.c:
13 * Generic Macintosh NCR5380 driver
17 * derived in part from:
20 * Generic Generic NCR5380 driver
22 * Copyright 1995, Russell King
25 #include <linux/types.h>
26 #include <linux/delay.h>
27 #include <linux/module.h>
28 #include <linux/ioport.h>
29 #include <linux/init.h>
30 #include <linux/blkdev.h>
31 #include <linux/platform_device.h>
36 #include <scsi/scsi_host.h>
37 #include "sun3_scsi.h"
39 /* Definitions for the core NCR5380 driver. */
42 /* #define SUPPORT_TAGS */
43 /* minimum number of bytes to do dma on */
44 #define DMA_MIN_SIZE 129
46 /* #define MAX_TAGS 32 */
48 #define NCR5380_implementation_fields /* none */
50 #define NCR5380_read(reg) sun3scsi_read(reg)
51 #define NCR5380_write(reg, value) sun3scsi_write(reg, value)
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_info sun3scsi_info
58 #define NCR5380_dma_read_setup(instance, data, count) \
59 sun3scsi_dma_setup(instance, data, count, 0)
60 #define NCR5380_dma_write_setup(instance, data, count) \
61 sun3scsi_dma_setup(instance, data, count, 1)
62 #define NCR5380_dma_residual(instance) \
63 sun3scsi_dma_residual(instance)
64 #define NCR5380_dma_xfer_len(instance, cmd, phase) \
65 sun3scsi_dma_xfer_len(cmd->SCp.this_residual, cmd, !((phase) & SR_IO))
67 #define NCR5380_acquire_dma_irq(instance) (1)
68 #define NCR5380_release_dma_irq(instance)
73 extern int sun3_map_test(unsigned long, char *);
75 static int setup_can_queue = -1;
76 module_param(setup_can_queue, int, 0);
77 static int setup_cmd_per_lun = -1;
78 module_param(setup_cmd_per_lun, int, 0);
79 static int setup_sg_tablesize = -1;
80 module_param(setup_sg_tablesize, int, 0);
82 static int setup_use_tagged_queuing = -1;
83 module_param(setup_use_tagged_queuing, int, 0);
85 static int setup_hostid = -1;
86 module_param(setup_hostid, int, 0);
88 /* ms to wait after hitting dma regs */
89 #define SUN3_DMA_DELAY 10
91 /* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
92 #define SUN3_DVMA_BUFSIZE 0xe000
94 static struct scsi_cmnd *sun3_dma_setup_done;
95 static unsigned char *sun3_scsi_regp;
96 static volatile struct sun3_dma_regs *dregs;
97 static struct sun3_udc_regs *udc_regs;
98 static unsigned char *sun3_dma_orig_addr;
99 static unsigned long sun3_dma_orig_count;
100 static int sun3_dma_active;
101 static unsigned long last_residual;
104 * NCR 5380 register access functions
107 static inline unsigned char sun3scsi_read(int reg)
109 return in_8(sun3_scsi_regp + reg);
112 static inline void sun3scsi_write(int reg, int value)
114 out_8(sun3_scsi_regp + reg, value);
117 #ifndef SUN3_SCSI_VME
118 /* dma controller register access functions */
120 static inline unsigned short sun3_udc_read(unsigned char reg)
124 dregs->udc_addr = UDC_CSR;
125 udelay(SUN3_DMA_DELAY);
126 ret = dregs->udc_data;
127 udelay(SUN3_DMA_DELAY);
132 static inline void sun3_udc_write(unsigned short val, unsigned char reg)
134 dregs->udc_addr = reg;
135 udelay(SUN3_DMA_DELAY);
136 dregs->udc_data = val;
137 udelay(SUN3_DMA_DELAY);
141 // safe bits for the CSR
142 #define CSR_GOOD 0x060f
144 static irqreturn_t scsi_sun3_intr(int irq, void *dev)
146 struct Scsi_Host *instance = dev;
147 unsigned short csr = dregs->csr;
151 dregs->csr &= ~CSR_DMA_ENABLE;
154 if(csr & ~CSR_GOOD) {
155 if (csr & CSR_DMA_BUSERR)
156 shost_printk(KERN_ERR, instance, "bus error in DMA\n");
157 if (csr & CSR_DMA_CONFLICT)
158 shost_printk(KERN_ERR, instance, "DMA conflict\n");
162 if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
163 NCR5380_intr(irq, dev);
167 return IRQ_RETVAL(handled);
170 /* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
171 static unsigned long sun3scsi_dma_setup(struct Scsi_Host *instance,
172 void *data, unsigned long count, int write_flag)
176 if(sun3_dma_orig_addr != NULL)
177 dvma_unmap(sun3_dma_orig_addr);
180 addr = (void *)dvma_map_vme((unsigned long) data, count);
182 addr = (void *)dvma_map((unsigned long) data, count);
185 sun3_dma_orig_addr = addr;
186 sun3_dma_orig_count = count;
188 #ifndef SUN3_SCSI_VME
189 dregs->fifo_count = 0;
190 sun3_udc_write(UDC_RESET, UDC_CSR);
193 dregs->csr &= ~CSR_FIFO;
194 dregs->csr |= CSR_FIFO;
199 dregs->csr |= CSR_SEND;
201 dregs->csr &= ~CSR_SEND;
204 dregs->csr |= CSR_PACK_ENABLE;
206 dregs->dma_addr_hi = ((unsigned long)addr >> 16);
207 dregs->dma_addr_lo = ((unsigned long)addr & 0xffff);
209 dregs->dma_count_hi = 0;
210 dregs->dma_count_lo = 0;
211 dregs->fifo_count_hi = 0;
212 dregs->fifo_count = 0;
214 /* byte count for fifo */
215 dregs->fifo_count = count;
217 sun3_udc_write(UDC_RESET, UDC_CSR);
220 dregs->csr &= ~CSR_FIFO;
221 dregs->csr |= CSR_FIFO;
223 if(dregs->fifo_count != count) {
224 shost_printk(KERN_ERR, instance, "FIFO mismatch %04x not %04x\n",
225 dregs->fifo_count, (unsigned int) count);
226 NCR5380_dprint(NDEBUG_DMA, instance);
230 udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
231 udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
232 udc_regs->count = count/2; /* count in words */
233 udc_regs->mode_hi = UDC_MODE_HIWORD;
237 udc_regs->mode_lo = UDC_MODE_LSEND;
238 udc_regs->rsel = UDC_RSEL_SEND;
240 udc_regs->mode_lo = UDC_MODE_LRECV;
241 udc_regs->rsel = UDC_RSEL_RECV;
244 /* announce location of regs block */
245 sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
248 sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
250 /* set dma master on */
251 sun3_udc_write(0xd, UDC_MODE);
253 /* interrupt enable */
254 sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
261 static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
263 return last_residual;
266 static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted,
267 struct scsi_cmnd *cmd,
270 if (cmd->request->cmd_type == REQ_TYPE_FS)
276 static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
283 dregs->dma_count_hi = (sun3_dma_orig_count >> 16);
284 dregs->dma_count_lo = (sun3_dma_orig_count & 0xffff);
286 dregs->fifo_count_hi = (sun3_dma_orig_count >> 16);
287 dregs->fifo_count = (sun3_dma_orig_count & 0xffff);
289 /* if(!(csr & CSR_DMA_ENABLE))
290 * dregs->csr |= CSR_DMA_ENABLE;
293 sun3_udc_write(UDC_CHN_START, UDC_CSR);
299 /* clean up after our dma is done */
300 static int sun3scsi_dma_finish(int write_flag)
302 unsigned short __maybe_unused count;
309 dregs->csr &= ~CSR_DMA_ENABLE;
311 fifo = dregs->fifo_count;
313 if ((fifo > 0) && (fifo < sun3_dma_orig_count))
317 last_residual = fifo;
318 /* empty bytes from the fifo which didn't make it */
319 if ((!write_flag) && (dregs->csr & CSR_LEFT)) {
320 unsigned char *vaddr;
322 vaddr = (unsigned char *)dvma_vmetov(sun3_dma_orig_addr);
324 vaddr += (sun3_dma_orig_count - fifo);
327 switch (dregs->csr & CSR_LEFT) {
329 *vaddr = (dregs->bpack_lo & 0xff00) >> 8;
333 *vaddr = (dregs->bpack_hi & 0x00ff);
337 *vaddr = (dregs->bpack_hi & 0xff00) >> 8;
342 // check to empty the fifo on a read
344 int tmo = 20000; /* .2 sec */
347 if(dregs->csr & CSR_FIFO_EMPTY)
351 printk("sun3scsi: fifo failed to empty!\n");
358 dregs->udc_addr = 0x32;
359 udelay(SUN3_DMA_DELAY);
360 count = 2 * dregs->udc_data;
361 udelay(SUN3_DMA_DELAY);
363 fifo = dregs->fifo_count;
364 last_residual = fifo;
366 /* empty bytes from the fifo which didn't make it */
367 if((!write_flag) && (count - fifo) == 2) {
369 unsigned char *vaddr;
371 data = dregs->fifo_data;
372 vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
374 vaddr += (sun3_dma_orig_count - fifo);
376 vaddr[-2] = (data & 0xff00) >> 8;
377 vaddr[-1] = (data & 0xff);
381 dvma_unmap(sun3_dma_orig_addr);
382 sun3_dma_orig_addr = NULL;
385 dregs->dma_addr_hi = 0;
386 dregs->dma_addr_lo = 0;
387 dregs->dma_count_hi = 0;
388 dregs->dma_count_lo = 0;
390 dregs->fifo_count = 0;
391 dregs->fifo_count_hi = 0;
393 dregs->csr &= ~CSR_SEND;
394 /* dregs->csr |= CSR_DMA_ENABLE; */
396 sun3_udc_write(UDC_RESET, UDC_CSR);
397 dregs->fifo_count = 0;
398 dregs->csr &= ~CSR_SEND;
401 dregs->csr &= ~CSR_FIFO;
402 dregs->csr |= CSR_FIFO;
405 sun3_dma_setup_done = NULL;
411 #include "atari_NCR5380.c"
414 #define SUN3_SCSI_NAME "Sun3 NCR5380 VME SCSI"
415 #define DRV_MODULE_NAME "sun3_scsi_vme"
417 #define SUN3_SCSI_NAME "Sun3 NCR5380 SCSI"
418 #define DRV_MODULE_NAME "sun3_scsi"
421 #define PFX DRV_MODULE_NAME ": "
423 static struct scsi_host_template sun3_scsi_template = {
424 .module = THIS_MODULE,
425 .proc_name = DRV_MODULE_NAME,
426 .name = SUN3_SCSI_NAME,
427 .info = sun3scsi_info,
428 .queuecommand = sun3scsi_queue_command,
429 .eh_abort_handler = sun3scsi_abort,
430 .eh_bus_reset_handler = sun3scsi_bus_reset,
433 .sg_tablesize = SG_NONE,
435 .use_clustering = DISABLE_CLUSTERING,
436 .cmd_size = NCR5380_CMD_SIZE,
439 static int __init sun3_scsi_probe(struct platform_device *pdev)
441 struct Scsi_Host *instance;
443 struct resource *irq, *mem;
444 unsigned char *ioaddr;
450 if (setup_can_queue > 0)
451 sun3_scsi_template.can_queue = setup_can_queue;
452 if (setup_cmd_per_lun > 0)
453 sun3_scsi_template.cmd_per_lun = setup_cmd_per_lun;
454 if (setup_sg_tablesize >= 0)
455 sun3_scsi_template.sg_tablesize = setup_sg_tablesize;
456 if (setup_hostid >= 0)
457 sun3_scsi_template.this_id = setup_hostid & 7;
461 for (i = 0; i < 2; i++) {
464 irq = platform_get_resource(pdev, IORESOURCE_IRQ, i);
465 mem = platform_get_resource(pdev, IORESOURCE_MEM, i);
469 ioaddr = sun3_ioremap(mem->start, resource_size(mem),
470 SUN3_PAGE_TYPE_VME16);
471 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
473 if (sun3_map_test((unsigned long)dregs, &x)) {
474 unsigned short oldcsr;
478 udelay(SUN3_DMA_DELAY);
479 if (dregs->csr == 0x1400)
491 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
492 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
496 ioaddr = ioremap(mem->start, resource_size(mem));
497 dregs = (struct sun3_dma_regs *)(ioaddr + 8);
499 udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs));
501 pr_err(PFX "couldn't allocate DVMA memory!\n");
507 sun3_scsi_regp = ioaddr;
509 instance = scsi_host_alloc(&sun3_scsi_template,
510 sizeof(struct NCR5380_hostdata));
516 instance->io_port = (unsigned long)ioaddr;
517 instance->irq = irq->start;
520 host_flags |= setup_use_tagged_queuing > 0 ? FLAG_TAGGED_QUEUING : 0;
523 error = NCR5380_init(instance, host_flags);
527 error = request_irq(instance->irq, scsi_sun3_intr, 0,
528 "NCR5380", instance);
531 pr_err(PFX "scsi%d: IRQ %d not free, bailing out\n",
532 instance->host_no, instance->irq);
535 pr_warn(PFX "scsi%d: IRQ %d not free, interrupts disabled\n",
536 instance->host_no, instance->irq);
537 instance->irq = NO_IRQ;
542 udelay(SUN3_DMA_DELAY);
543 dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
544 udelay(SUN3_DMA_DELAY);
545 dregs->fifo_count = 0;
547 dregs->fifo_count_hi = 0;
548 dregs->dma_addr_hi = 0;
549 dregs->dma_addr_lo = 0;
550 dregs->dma_count_hi = 0;
551 dregs->dma_count_lo = 0;
553 dregs->ivect = VME_DATA24 | (instance->irq & 0xff);
556 NCR5380_maybe_reset_bus(instance);
558 error = scsi_add_host(instance, NULL);
562 platform_set_drvdata(pdev, instance);
564 scsi_scan_host(instance);
568 if (instance->irq != NO_IRQ)
569 free_irq(instance->irq, instance);
571 NCR5380_exit(instance);
573 scsi_host_put(instance);
577 iounmap(sun3_scsi_regp);
581 static int __exit sun3_scsi_remove(struct platform_device *pdev)
583 struct Scsi_Host *instance = platform_get_drvdata(pdev);
585 scsi_remove_host(instance);
586 if (instance->irq != NO_IRQ)
587 free_irq(instance->irq, instance);
588 NCR5380_exit(instance);
589 scsi_host_put(instance);
592 iounmap(sun3_scsi_regp);
596 static struct platform_driver sun3_scsi_driver = {
597 .remove = __exit_p(sun3_scsi_remove),
599 .name = DRV_MODULE_NAME,
603 module_platform_driver_probe(sun3_scsi_driver, sun3_scsi_probe);
605 MODULE_ALIAS("platform:" DRV_MODULE_NAME);
606 MODULE_LICENSE("GPL");