1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
4 #include <linux/blkdev.h>
5 #include <linux/interrupt.h>
6 #include <linux/init.h>
7 #include <linux/kernel.h>
8 #include <linux/module.h>
11 #include <asm/mvme147hw.h>
15 #include <scsi/scsi_host.h>
19 static irqreturn_t mvme147_intr(int irq, void *data)
21 struct Scsi_Host *instance = data;
23 if (irq == MVME147_IRQ_SCSI_PORT)
24 wd33c93_intr(instance);
26 m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
30 static int dma_setup(struct scsi_cmnd *cmd, int dir_in)
32 struct Scsi_Host *instance = cmd->device->host;
33 struct WD33C93_hostdata *hdata = shost_priv(instance);
34 unsigned char flags = 0x01;
35 unsigned long addr = virt_to_bus(cmd->SCp.ptr);
37 /* setup dma direction */
41 /* remember direction */
42 hdata->dma_dir = dir_in;
45 /* invalidate any cache */
46 cache_clear(addr, cmd->SCp.this_residual);
48 /* push any dirty cache */
49 cache_push(addr, cmd->SCp.this_residual);
53 m147_pcc->dma_bcr = cmd->SCp.this_residual | (1 << 24);
54 m147_pcc->dma_dadr = addr;
55 m147_pcc->dma_cntrl = flags;
61 static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt,
64 m147_pcc->dma_cntrl = 0;
67 static struct scsi_host_template mvme147_host_template = {
68 .module = THIS_MODULE,
69 .proc_name = "MVME147",
70 .name = "MVME147 built-in SCSI",
71 .queuecommand = wd33c93_queuecommand,
72 .eh_abort_handler = wd33c93_abort,
73 .eh_host_reset_handler = wd33c93_host_reset,
74 .show_info = wd33c93_show_info,
75 .write_info = wd33c93_write_info,
76 .can_queue = CAN_QUEUE,
78 .sg_tablesize = SG_ALL,
79 .cmd_per_lun = CMD_PER_LUN,
82 static struct Scsi_Host *mvme147_shost;
84 static int __init mvme147_init(void)
87 struct WD33C93_hostdata *hdata;
93 mvme147_shost = scsi_host_alloc(&mvme147_host_template,
94 sizeof(struct WD33C93_hostdata));
97 mvme147_shost->base = 0xfffe4000;
98 mvme147_shost->irq = MVME147_IRQ_SCSI_PORT;
100 regs.SASR = (volatile unsigned char *)0xfffe4000;
101 regs.SCMD = (volatile unsigned char *)0xfffe4001;
103 hdata = shost_priv(mvme147_shost);
104 hdata->no_sync = 0xff;
106 hdata->dma_mode = CTRL_DMA;
108 wd33c93_init(mvme147_shost, regs, dma_setup, dma_stop, WD33C93_FS_8_10);
110 error = request_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr, 0,
111 "MVME147 SCSI PORT", mvme147_shost);
114 error = request_irq(MVME147_IRQ_SCSI_DMA, mvme147_intr, 0,
115 "MVME147 SCSI DMA", mvme147_shost);
118 #if 0 /* Disabled; causes problems booting */
119 m147_pcc->scsi_interrupt = 0x10; /* Assert SCSI bus reset */
121 m147_pcc->scsi_interrupt = 0x00; /* Negate SCSI bus reset */
123 m147_pcc->scsi_interrupt = 0x40; /* Clear bus reset interrupt */
125 m147_pcc->scsi_interrupt = 0x09; /* Enable interrupt */
127 m147_pcc->dma_cntrl = 0x00; /* ensure DMA is stopped */
128 m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
130 error = scsi_add_host(mvme147_shost, NULL);
133 scsi_scan_host(mvme147_shost);
137 free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost);
139 scsi_host_put(mvme147_shost);
144 static void __exit mvme147_exit(void)
146 scsi_remove_host(mvme147_shost);
148 /* XXX Make sure DMA is stopped! */
149 free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost);
150 free_irq(MVME147_IRQ_SCSI_DMA, mvme147_shost);
152 scsi_host_put(mvme147_shost);
155 module_init(mvme147_init);
156 module_exit(mvme147_exit);