Thomas Gleixner | 09c434b | 2019-05-19 13:08:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | #include <linux/init.h> |
| 4 | #include <linux/interrupt.h> |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 5 | #include <linux/mm.h> |
| 6 | #include <linux/slab.h> |
| 7 | #include <linux/spinlock.h> |
| 8 | #include <linux/zorro.h> |
Paul Gortmaker | acf3368f | 2011-05-27 09:47:43 -0400 | [diff] [blame] | 9 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <asm/page.h> |
| 12 | #include <asm/pgtable.h> |
| 13 | #include <asm/amigaints.h> |
| 14 | #include <asm/amigahw.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | #include "scsi.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "wd33c93.h" |
| 18 | #include "a2091.h" |
| 19 | |
Adrian Bunk | 5880f48 | 2009-03-04 12:06:07 -0800 | [diff] [blame] | 20 | |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 21 | struct a2091_hostdata { |
| 22 | struct WD33C93_hostdata wh; |
| 23 | struct a2091_scsiregs *regs; |
| 24 | }; |
| 25 | |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 26 | static irqreturn_t a2091_intr(int irq, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | { |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 28 | struct Scsi_Host *instance = data; |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 29 | struct a2091_hostdata *hdata = shost_priv(instance); |
| 30 | unsigned int status = hdata->regs->ISTR; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 31 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 33 | if (!(status & (ISTR_INT_F | ISTR_INT_P)) || !(status & ISTR_INTS)) |
| 34 | return IRQ_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 36 | spin_lock_irqsave(instance->host_lock, flags); |
| 37 | wd33c93_intr(instance); |
| 38 | spin_unlock_irqrestore(instance->host_lock, flags); |
| 39 | return IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Henrik Kretzschmar | 6539641 | 2006-09-12 23:49:33 +0200 | [diff] [blame] | 42 | static int dma_setup(struct scsi_cmnd *cmd, int dir_in) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Geert Uytterhoeven | 6d1d5d4 | 2010-04-04 11:00:36 +0200 | [diff] [blame] | 44 | struct Scsi_Host *instance = cmd->device->host; |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 45 | struct a2091_hostdata *hdata = shost_priv(instance); |
| 46 | struct WD33C93_hostdata *wh = &hdata->wh; |
| 47 | struct a2091_scsiregs *regs = hdata->regs; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 48 | unsigned short cntr = CNTR_PDMD | CNTR_INTEN; |
| 49 | unsigned long addr = virt_to_bus(cmd->SCp.ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 51 | /* don't allow DMA if the physical address is bad */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | if (addr & A2091_XFER_MASK) { |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 53 | wh->dma_bounce_len = (cmd->SCp.this_residual + 511) & ~0x1ff; |
| 54 | wh->dma_bounce_buffer = kmalloc(wh->dma_bounce_len, |
| 55 | GFP_KERNEL); |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 56 | |
| 57 | /* can't allocate memory; use PIO */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 58 | if (!wh->dma_bounce_buffer) { |
| 59 | wh->dma_bounce_len = 0; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 60 | return 1; |
| 61 | } |
| 62 | |
| 63 | /* get the physical address of the bounce buffer */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 64 | addr = virt_to_bus(wh->dma_bounce_buffer); |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 65 | |
| 66 | /* the bounce buffer may not be in the first 16M of physmem */ |
| 67 | if (addr & A2091_XFER_MASK) { |
| 68 | /* we could use chipmem... maybe later */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 69 | kfree(wh->dma_bounce_buffer); |
| 70 | wh->dma_bounce_buffer = NULL; |
| 71 | wh->dma_bounce_len = 0; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 72 | return 1; |
| 73 | } |
| 74 | |
| 75 | if (!dir_in) { |
| 76 | /* copy to bounce buffer for a write */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 77 | memcpy(wh->dma_bounce_buffer, cmd->SCp.ptr, |
Geert Uytterhoeven | 6d1d5d4 | 2010-04-04 11:00:36 +0200 | [diff] [blame] | 78 | cmd->SCp.this_residual); |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 79 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 82 | /* setup dma direction */ |
| 83 | if (!dir_in) |
| 84 | cntr |= CNTR_DDIR; |
| 85 | |
| 86 | /* remember direction */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 87 | wh->dma_dir = dir_in; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 88 | |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 89 | regs->CNTR = cntr; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 90 | |
| 91 | /* setup DMA *physical* address */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 92 | regs->ACR = addr; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 93 | |
| 94 | if (dir_in) { |
| 95 | /* invalidate any cache */ |
| 96 | cache_clear(addr, cmd->SCp.this_residual); |
| 97 | } else { |
| 98 | /* push any dirty cache */ |
| 99 | cache_push(addr, cmd->SCp.this_residual); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 101 | /* start DMA */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 102 | regs->ST_DMA = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 104 | /* return success */ |
| 105 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Henrik Kretzschmar | 6539641 | 2006-09-12 23:49:33 +0200 | [diff] [blame] | 108 | static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt, |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 109 | int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 111 | struct a2091_hostdata *hdata = shost_priv(instance); |
| 112 | struct WD33C93_hostdata *wh = &hdata->wh; |
| 113 | struct a2091_scsiregs *regs = hdata->regs; |
Geert Uytterhoeven | 6d1d5d4 | 2010-04-04 11:00:36 +0200 | [diff] [blame] | 114 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 115 | /* disable SCSI interrupts */ |
| 116 | unsigned short cntr = CNTR_PDMD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 118 | if (!wh->dma_dir) |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 119 | cntr |= CNTR_DDIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 121 | /* disable SCSI interrupts */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 122 | regs->CNTR = cntr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 124 | /* flush if we were reading */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 125 | if (wh->dma_dir) { |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 126 | regs->FLUSH = 1; |
| 127 | while (!(regs->ISTR & ISTR_FE_FLG)) |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 128 | ; |
| 129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 131 | /* clear a possible interrupt */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 132 | regs->CINT = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 134 | /* stop DMA */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 135 | regs->SP_DMA = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 137 | /* restore the CONTROL bits (minus the direction flag) */ |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 138 | regs->CNTR = CNTR_PDMD | CNTR_INTEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 140 | /* copy from a bounce buffer, if necessary */ |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 141 | if (status && wh->dma_bounce_buffer) { |
| 142 | if (wh->dma_dir) |
| 143 | memcpy(SCpnt->SCp.ptr, wh->dma_bounce_buffer, |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 144 | SCpnt->SCp.this_residual); |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 145 | kfree(wh->dma_bounce_buffer); |
| 146 | wh->dma_bounce_buffer = NULL; |
| 147 | wh->dma_bounce_len = 0; |
Geert Uytterhoeven | 09bc85b | 2010-04-04 11:00:32 +0200 | [diff] [blame] | 148 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 151 | static struct scsi_host_template a2091_scsi_template = { |
| 152 | .module = THIS_MODULE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | .name = "Commodore A2091/A590 SCSI", |
Al Viro | 408bb25 | 2013-03-31 00:30:35 -0400 | [diff] [blame] | 154 | .show_info = wd33c93_show_info, |
| 155 | .write_info = wd33c93_write_info, |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 156 | .proc_name = "A2901", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | .queuecommand = wd33c93_queuecommand, |
| 158 | .eh_abort_handler = wd33c93_abort, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | .eh_host_reset_handler = wd33c93_host_reset, |
| 160 | .can_queue = CAN_QUEUE, |
| 161 | .this_id = 7, |
| 162 | .sg_tablesize = SG_ALL, |
| 163 | .cmd_per_lun = CMD_PER_LUN, |
Christoph Hellwig | 4af14d1 | 2018-12-13 16:17:09 +0100 | [diff] [blame] | 164 | .dma_boundary = PAGE_SIZE - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 167 | static int a2091_probe(struct zorro_dev *z, const struct zorro_device_id *ent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 169 | struct Scsi_Host *instance; |
| 170 | int error; |
| 171 | struct a2091_scsiregs *regs; |
| 172 | wd33c93_regs wdregs; |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 173 | struct a2091_hostdata *hdata; |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 174 | |
| 175 | if (!request_mem_region(z->resource.start, 256, "wd33c93")) |
| 176 | return -EBUSY; |
| 177 | |
| 178 | instance = scsi_host_alloc(&a2091_scsi_template, |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 179 | sizeof(struct a2091_hostdata)); |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 180 | if (!instance) { |
| 181 | error = -ENOMEM; |
| 182 | goto fail_alloc; |
| 183 | } |
| 184 | |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 185 | instance->irq = IRQ_AMIGA_PORTS; |
| 186 | instance->unique_id = z->slotaddr; |
| 187 | |
Geert Uytterhoeven | 6112ea0 | 2011-01-09 11:03:43 +0100 | [diff] [blame] | 188 | regs = ZTWO_VADDR(z->resource.start); |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 189 | regs->DAWR = DAWR_A2091; |
| 190 | |
| 191 | wdregs.SASR = ®s->SASR; |
| 192 | wdregs.SCMD = ®s->SCMD; |
| 193 | |
| 194 | hdata = shost_priv(instance); |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 195 | hdata->wh.no_sync = 0xff; |
| 196 | hdata->wh.fast = 0; |
| 197 | hdata->wh.dma_mode = CTRL_DMA; |
| 198 | hdata->regs = regs; |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 199 | |
| 200 | wd33c93_init(instance, wdregs, dma_setup, dma_stop, WD33C93_FS_8_10); |
| 201 | error = request_irq(IRQ_AMIGA_PORTS, a2091_intr, IRQF_SHARED, |
| 202 | "A2091 SCSI", instance); |
| 203 | if (error) |
| 204 | goto fail_irq; |
| 205 | |
| 206 | regs->CNTR = CNTR_PDMD | CNTR_INTEN; |
| 207 | |
| 208 | error = scsi_add_host(instance, NULL); |
| 209 | if (error) |
| 210 | goto fail_host; |
| 211 | |
| 212 | zorro_set_drvdata(z, instance); |
| 213 | |
| 214 | scsi_scan_host(instance); |
| 215 | return 0; |
| 216 | |
| 217 | fail_host: |
| 218 | free_irq(IRQ_AMIGA_PORTS, instance); |
| 219 | fail_irq: |
| 220 | scsi_host_put(instance); |
| 221 | fail_alloc: |
| 222 | release_mem_region(z->resource.start, 256); |
| 223 | return error; |
| 224 | } |
| 225 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 226 | static void a2091_remove(struct zorro_dev *z) |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 227 | { |
| 228 | struct Scsi_Host *instance = zorro_get_drvdata(z); |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 229 | struct a2091_hostdata *hdata = shost_priv(instance); |
Geert Uytterhoeven | b1de6ab | 2010-04-04 11:00:40 +0200 | [diff] [blame] | 230 | |
Geert Uytterhoeven | 65c2784 | 2010-04-12 21:55:03 +0200 | [diff] [blame] | 231 | hdata->regs->CNTR = 0; |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 232 | scsi_remove_host(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | free_irq(IRQ_AMIGA_PORTS, instance); |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 234 | scsi_host_put(instance); |
| 235 | release_mem_region(z->resource.start, 256); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | } |
| 237 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 238 | static struct zorro_device_id a2091_zorro_tbl[] = { |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 239 | { ZORRO_PROD_CBM_A590_A2091_1 }, |
| 240 | { ZORRO_PROD_CBM_A590_A2091_2 }, |
| 241 | { 0 } |
| 242 | }; |
| 243 | MODULE_DEVICE_TABLE(zorro, a2091_zorro_tbl); |
| 244 | |
| 245 | static struct zorro_driver a2091_driver = { |
| 246 | .name = "a2091", |
| 247 | .id_table = a2091_zorro_tbl, |
| 248 | .probe = a2091_probe, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 249 | .remove = a2091_remove, |
Geert Uytterhoeven | c737e22 | 2009-08-16 11:17:35 +0200 | [diff] [blame] | 250 | }; |
| 251 | |
| 252 | static int __init a2091_init(void) |
| 253 | { |
| 254 | return zorro_register_driver(&a2091_driver); |
| 255 | } |
| 256 | module_init(a2091_init); |
| 257 | |
| 258 | static void __exit a2091_exit(void) |
| 259 | { |
| 260 | zorro_unregister_driver(&a2091_driver); |
| 261 | } |
| 262 | module_exit(a2091_exit); |
| 263 | |
| 264 | MODULE_DESCRIPTION("Commodore A2091/A590 SCSI"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | MODULE_LICENSE("GPL"); |