Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #include <linux/types.h> |
| 3 | #include <linux/mm.h> |
| 4 | #include <linux/blkdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/interrupt.h> |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 6 | #include <linux/init.h> |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | #include <asm/page.h> |
| 11 | #include <asm/pgtable.h> |
| 12 | #include <asm/mvme147hw.h> |
| 13 | #include <asm/irq.h> |
| 14 | |
| 15 | #include "scsi.h" |
| 16 | #include <scsi/scsi_host.h> |
| 17 | #include "wd33c93.h" |
| 18 | #include "mvme147.h" |
| 19 | |
Geert Uytterhoeven | 4616ac7 | 2009-05-17 13:35:13 +0200 | [diff] [blame] | 20 | static irqreturn_t mvme147_intr(int irq, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | { |
Geert Uytterhoeven | 4616ac7 | 2009-05-17 13:35:13 +0200 | [diff] [blame] | 22 | struct Scsi_Host *instance = data; |
| 23 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 24 | if (irq == MVME147_IRQ_SCSI_PORT) |
Geert Uytterhoeven | 4616ac7 | 2009-05-17 13:35:13 +0200 | [diff] [blame] | 25 | wd33c93_intr(instance); |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 26 | else |
| 27 | m147_pcc->dma_intr = 0x89; /* Ack and enable ints */ |
| 28 | return IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | } |
| 30 | |
Henrik Kretzschmar | 6539641 | 2006-09-12 23:49:33 +0200 | [diff] [blame] | 31 | static int dma_setup(struct scsi_cmnd *cmd, int dir_in) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
Geert Uytterhoeven | 4616ac7 | 2009-05-17 13:35:13 +0200 | [diff] [blame] | 33 | struct Scsi_Host *instance = cmd->device->host; |
| 34 | struct WD33C93_hostdata *hdata = shost_priv(instance); |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 35 | unsigned char flags = 0x01; |
| 36 | unsigned long addr = virt_to_bus(cmd->SCp.ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 38 | /* setup dma direction */ |
| 39 | if (!dir_in) |
| 40 | flags |= 0x04; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 42 | /* remember direction */ |
Geert Uytterhoeven | ce19566 | 2010-04-04 11:00:38 +0200 | [diff] [blame] | 43 | hdata->dma_dir = dir_in; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 45 | if (dir_in) { |
| 46 | /* invalidate any cache */ |
| 47 | cache_clear(addr, cmd->SCp.this_residual); |
| 48 | } else { |
| 49 | /* push any dirty cache */ |
| 50 | cache_push(addr, cmd->SCp.this_residual); |
| 51 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 53 | /* start DMA */ |
| 54 | m147_pcc->dma_bcr = cmd->SCp.this_residual | (1 << 24); |
| 55 | m147_pcc->dma_dadr = addr; |
| 56 | m147_pcc->dma_cntrl = flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 58 | /* return success */ |
| 59 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
Henrik Kretzschmar | 6539641 | 2006-09-12 23:49:33 +0200 | [diff] [blame] | 62 | static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt, |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 63 | int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 65 | m147_pcc->dma_cntrl = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 68 | static struct scsi_host_template mvme147_host_template = { |
| 69 | .module = THIS_MODULE, |
| 70 | .proc_name = "MVME147", |
| 71 | .name = "MVME147 built-in SCSI", |
| 72 | .queuecommand = wd33c93_queuecommand, |
| 73 | .eh_abort_handler = wd33c93_abort, |
| 74 | .eh_host_reset_handler = wd33c93_host_reset, |
| 75 | .show_info = wd33c93_show_info, |
| 76 | .write_info = wd33c93_write_info, |
| 77 | .can_queue = CAN_QUEUE, |
| 78 | .this_id = 7, |
| 79 | .sg_tablesize = SG_ALL, |
| 80 | .cmd_per_lun = CMD_PER_LUN, |
| 81 | .use_clustering = ENABLE_CLUSTERING |
| 82 | }; |
| 83 | |
| 84 | static struct Scsi_Host *mvme147_shost; |
| 85 | |
| 86 | static int __init mvme147_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 88 | wd33c93_regs regs; |
Geert Uytterhoeven | ce19566 | 2010-04-04 11:00:38 +0200 | [diff] [blame] | 89 | struct WD33C93_hostdata *hdata; |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 90 | int error = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 92 | if (!MACH_IS_MVME147) |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 93 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 95 | mvme147_shost = scsi_host_alloc(&mvme147_host_template, |
| 96 | sizeof(struct WD33C93_hostdata)); |
| 97 | if (!mvme147_shost) |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 98 | goto err_out; |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 99 | mvme147_shost->base = 0xfffe4000; |
| 100 | mvme147_shost->irq = MVME147_IRQ_SCSI_PORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 102 | regs.SASR = (volatile unsigned char *)0xfffe4000; |
| 103 | regs.SCMD = (volatile unsigned char *)0xfffe4001; |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 104 | |
| 105 | hdata = shost_priv(mvme147_shost); |
Geert Uytterhoeven | ce19566 | 2010-04-04 11:00:38 +0200 | [diff] [blame] | 106 | hdata->no_sync = 0xff; |
| 107 | hdata->fast = 0; |
| 108 | hdata->dma_mode = CTRL_DMA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 110 | wd33c93_init(mvme147_shost, regs, dma_setup, dma_stop, WD33C93_FS_8_10); |
| 111 | |
| 112 | error = request_irq(MVME147_IRQ_SCSI_PORT, mvme147_intr, 0, |
| 113 | "MVME147 SCSI PORT", mvme147_shost); |
| 114 | if (error) |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 115 | goto err_unregister; |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 116 | error = request_irq(MVME147_IRQ_SCSI_DMA, mvme147_intr, 0, |
| 117 | "MVME147 SCSI DMA", mvme147_shost); |
| 118 | if (error) |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 119 | goto err_free_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | #if 0 /* Disabled; causes problems booting */ |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 121 | m147_pcc->scsi_interrupt = 0x10; /* Assert SCSI bus reset */ |
| 122 | udelay(100); |
| 123 | m147_pcc->scsi_interrupt = 0x00; /* Negate SCSI bus reset */ |
| 124 | udelay(2000); |
| 125 | m147_pcc->scsi_interrupt = 0x40; /* Clear bus reset interrupt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #endif |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 127 | m147_pcc->scsi_interrupt = 0x09; /* Enable interrupt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 129 | m147_pcc->dma_cntrl = 0x00; /* ensure DMA is stopped */ |
| 130 | m147_pcc->dma_intr = 0x89; /* Ack and enable ints */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 132 | error = scsi_add_host(mvme147_shost, NULL); |
| 133 | if (error) |
| 134 | goto err_free_irq; |
| 135 | scsi_scan_host(mvme147_shost); |
| 136 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 138 | err_free_irq: |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 139 | free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost); |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 140 | err_unregister: |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 141 | scsi_host_put(mvme147_shost); |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 142 | err_out: |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 143 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 146 | static void __exit mvme147_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 148 | scsi_remove_host(mvme147_shost); |
| 149 | |
Geert Uytterhoeven | be4540d | 2010-04-04 11:00:34 +0200 | [diff] [blame] | 150 | /* XXX Make sure DMA is stopped! */ |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 151 | free_irq(MVME147_IRQ_SCSI_PORT, mvme147_shost); |
| 152 | free_irq(MVME147_IRQ_SCSI_DMA, mvme147_shost); |
| 153 | |
| 154 | scsi_host_put(mvme147_shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | } |
Christoph Hellwig | 6937d73 | 2018-03-19 08:37:49 +0100 | [diff] [blame] | 156 | |
| 157 | module_init(mvme147_init); |
| 158 | module_exit(mvme147_exit); |