]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/scsi/mvme147.c
memory: renesas-rpc-if: fix platform-device leak in error path
[mirror_ubuntu-jammy-kernel.git] / drivers / scsi / mvme147.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2#include <linux/types.h>
3#include <linux/mm.h>
4#include <linux/blkdev.h>
1da177e4 5#include <linux/interrupt.h>
6937d732
CH
6#include <linux/init.h>
7#include <linux/kernel.h>
8#include <linux/module.h>
1da177e4
LT
9
10#include <asm/page.h>
1da177e4
LT
11#include <asm/mvme147hw.h>
12#include <asm/irq.h>
13
14#include "scsi.h"
15#include <scsi/scsi_host.h>
16#include "wd33c93.h"
17#include "mvme147.h"
18
4616ac7e 19static irqreturn_t mvme147_intr(int irq, void *data)
1da177e4 20{
4616ac7e
GU
21 struct Scsi_Host *instance = data;
22
be4540db 23 if (irq == MVME147_IRQ_SCSI_PORT)
4616ac7e 24 wd33c93_intr(instance);
be4540db
GU
25 else
26 m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
27 return IRQ_HANDLED;
1da177e4
LT
28}
29
65396410 30static int dma_setup(struct scsi_cmnd *cmd, int dir_in)
1da177e4 31{
4616ac7e
GU
32 struct Scsi_Host *instance = cmd->device->host;
33 struct WD33C93_hostdata *hdata = shost_priv(instance);
be4540db
GU
34 unsigned char flags = 0x01;
35 unsigned long addr = virt_to_bus(cmd->SCp.ptr);
36
37 /* setup dma direction */
38 if (!dir_in)
39 flags |= 0x04;
40
41 /* remember direction */
ce195662 42 hdata->dma_dir = dir_in;
be4540db
GU
43
44 if (dir_in) {
45 /* invalidate any cache */
46 cache_clear(addr, cmd->SCp.this_residual);
47 } else {
48 /* push any dirty cache */
49 cache_push(addr, cmd->SCp.this_residual);
50 }
51
52 /* start DMA */
53 m147_pcc->dma_bcr = cmd->SCp.this_residual | (1 << 24);
54 m147_pcc->dma_dadr = addr;
55 m147_pcc->dma_cntrl = flags;
56
57 /* return success */
58 return 0;
1da177e4
LT
59}
60
65396410 61static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt,
be4540db 62 int status)
1da177e4 63{
be4540db 64 m147_pcc->dma_cntrl = 0;
1da177e4
LT
65}
66
6937d732
CH
67static 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,
77 .this_id = 7,
78 .sg_tablesize = SG_ALL,
79 .cmd_per_lun = CMD_PER_LUN,
6937d732
CH
80};
81
82static struct Scsi_Host *mvme147_shost;
83
84static int __init mvme147_init(void)
1da177e4 85{
be4540db 86 wd33c93_regs regs;
ce195662 87 struct WD33C93_hostdata *hdata;
6937d732 88 int error = -ENOMEM;
be4540db 89
6937d732 90 if (!MACH_IS_MVME147)
be4540db 91 return 0;
be4540db 92
6937d732
CH
93 mvme147_shost = scsi_host_alloc(&mvme147_host_template,
94 sizeof(struct WD33C93_hostdata));
95 if (!mvme147_shost)
be4540db 96 goto err_out;
6937d732
CH
97 mvme147_shost->base = 0xfffe4000;
98 mvme147_shost->irq = MVME147_IRQ_SCSI_PORT;
be4540db 99
be4540db
GU
100 regs.SASR = (volatile unsigned char *)0xfffe4000;
101 regs.SCMD = (volatile unsigned char *)0xfffe4001;
6937d732
CH
102
103 hdata = shost_priv(mvme147_shost);
ce195662
GU
104 hdata->no_sync = 0xff;
105 hdata->fast = 0;
106 hdata->dma_mode = CTRL_DMA;
be4540db 107
6937d732
CH
108 wd33c93_init(mvme147_shost, regs, dma_setup, dma_stop, WD33C93_FS_8_10);
109
110 error = request_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr, 0,
111 "MVME147 SCSI PORT", mvme147_shost);
112 if (error)
be4540db 113 goto err_unregister;
6937d732
CH
114 error = request_irq(MVME147_IRQ_SCSI_DMA, mvme147_intr, 0,
115 "MVME147 SCSI DMA", mvme147_shost);
116 if (error)
be4540db 117 goto err_free_irq;
1da177e4 118#if 0 /* Disabled; causes problems booting */
be4540db
GU
119 m147_pcc->scsi_interrupt = 0x10; /* Assert SCSI bus reset */
120 udelay(100);
121 m147_pcc->scsi_interrupt = 0x00; /* Negate SCSI bus reset */
122 udelay(2000);
123 m147_pcc->scsi_interrupt = 0x40; /* Clear bus reset interrupt */
1da177e4 124#endif
be4540db 125 m147_pcc->scsi_interrupt = 0x09; /* Enable interrupt */
1da177e4 126
be4540db
GU
127 m147_pcc->dma_cntrl = 0x00; /* ensure DMA is stopped */
128 m147_pcc->dma_intr = 0x89; /* Ack and enable ints */
1da177e4 129
6937d732
CH
130 error = scsi_add_host(mvme147_shost, NULL);
131 if (error)
132 goto err_free_irq;
133 scsi_scan_host(mvme147_shost);
134 return 0;
1da177e4 135
be4540db 136err_free_irq:
6937d732 137 free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost);
be4540db 138err_unregister:
6937d732 139 scsi_host_put(mvme147_shost);
be4540db 140err_out:
6937d732 141 return error;
1da177e4
LT
142}
143
6937d732 144static void __exit mvme147_exit(void)
1da177e4 145{
6937d732
CH
146 scsi_remove_host(mvme147_shost);
147
be4540db 148 /* XXX Make sure DMA is stopped! */
6937d732
CH
149 free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost);
150 free_irq(MVME147_IRQ_SCSI_DMA, mvme147_shost);
151
152 scsi_host_put(mvme147_shost);
1da177e4 153}
6937d732
CH
154
155module_init(mvme147_init);
156module_exit(mvme147_exit);