blob: 70e64851327554ad9ed597e2788e848060f599a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Oak Generic NCR5380 driver
3 *
4 * Copyright 1995-2002, Russell King
5 */
6
7#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/blkdev.h>
10#include <linux/init.h>
11
12#include <asm/ecard.h>
13#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <scsi/scsi_host.h>
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*#define PSEUDO_DMA*/
Arnd Bergmannea065f12012-04-30 16:26:31 +000018#define DONT_USE_INTR
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Russell King8b801ea2007-07-20 10:38:54 +010020#define priv(host) ((struct NCR5380_hostdata *)(host)->hostdata)
Russell King8b801ea2007-07-20 10:38:54 +010021
Finn Thain54d8fe42016-01-03 16:05:06 +110022#define NCR5380_read(reg) \
23 readb(priv(instance)->base + ((reg) << 2))
24#define NCR5380_write(reg, value) \
25 writeb(value, priv(instance)->base + ((reg) << 2))
26
Finn Thainff3d4572016-01-03 16:05:25 +110027#define NCR5380_dma_xfer_len(instance, cmd, phase) (cmd->transfersize)
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#define NCR5380_queue_command oakscsi_queue_command
Finn Thain8c325132014-11-12 16:11:58 +110030#define NCR5380_info oakscsi_info
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Russell King8b801ea2007-07-20 10:38:54 +010032#define NCR5380_implementation_fields \
33 void __iomem *base
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "../NCR5380.h"
36
37#undef START_DMA_INITIATOR_RECEIVE_REG
Russell King8b801ea2007-07-20 10:38:54 +010038#define START_DMA_INITIATOR_RECEIVE_REG (128 + 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Russell King8b801ea2007-07-20 10:38:54 +010040#define STAT ((128 + 16) << 2)
41#define DATA ((128 + 8) << 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *addr,
44 int len)
45{
Russell King8b801ea2007-07-20 10:38:54 +010046 void __iomem *base = priv(instance)->base;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048printk("writing %p len %d\n",addr, len);
49 if(!len) return -1;
50
51 while(1)
52 {
53 int status;
Russell King8b801ea2007-07-20 10:38:54 +010054 while (((status = readw(base + STAT)) & 0x100)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
56}
57
58static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *addr,
59 int len)
60{
Russell King8b801ea2007-07-20 10:38:54 +010061 void __iomem *base = priv(instance)->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062printk("reading %p len %d\n", addr, len);
63 while(len > 0)
64 {
Russell King8b801ea2007-07-20 10:38:54 +010065 unsigned int status, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 unsigned long b;
67
68 timeout = 0x01FFFFFF;
69
Russell King8b801ea2007-07-20 10:38:54 +010070 while (((status = readw(base + STAT)) & 0x100)==0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 {
72 timeout--;
73 if(status & 0x200 || !timeout)
74 {
Russell King8b801ea2007-07-20 10:38:54 +010075 printk("status = %08X\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 1;
77 }
78 }
Russell King8b801ea2007-07-20 10:38:54 +010079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if(len >= 128)
81 {
Russell King8b801ea2007-07-20 10:38:54 +010082 readsw(base + DATA, addr, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 addr += 128;
84 len -= 128;
85 }
86 else
87 {
Russell King8b801ea2007-07-20 10:38:54 +010088 b = (unsigned long) readw(base + DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *addr ++ = b;
90 len -= 1;
91 if(len)
92 *addr ++ = b>>8;
93 len -= 1;
94 }
95 }
96 return 0;
97}
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#undef STAT
Russell King8b801ea2007-07-20 10:38:54 +0100100#undef DATA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#include "../NCR5380.c"
103
Christoph Hellwigd0be4a7d2005-10-31 18:31:40 +0100104static struct scsi_host_template oakscsi_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .module = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .name = "Oak 16-bit SCSI",
107 .info = oakscsi_info,
108 .queuecommand = oakscsi_queue_command,
109 .eh_abort_handler = NCR5380_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .eh_bus_reset_handler = NCR5380_bus_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .can_queue = 16,
112 .this_id = 7,
113 .sg_tablesize = SG_ALL,
114 .cmd_per_lun = 2,
115 .use_clustering = DISABLE_CLUSTERING,
116 .proc_name = "oakscsi",
Finn Thain32b26a12016-01-03 16:05:58 +1100117 .cmd_size = NCR5380_CMD_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800120static int oakscsi_probe(struct expansion_card *ec, const struct ecard_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct Scsi_Host *host;
123 int ret = -ENOMEM;
124
Russell King8b801ea2007-07-20 10:38:54 +0100125 ret = ecard_request_resources(ec);
126 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 goto out;
128
Russell King8b801ea2007-07-20 10:38:54 +0100129 host = scsi_host_alloc(&oakscsi_template, sizeof(struct NCR5380_hostdata));
130 if (!host) {
131 ret = -ENOMEM;
132 goto release;
133 }
134
135 priv(host)->base = ioremap(ecard_resource_start(ec, ECARD_RES_MEMC),
136 ecard_resource_len(ec, ECARD_RES_MEMC));
137 if (!priv(host)->base) {
138 ret = -ENOMEM;
139 goto unreg;
140 }
141
Finn Thain22f5f102014-11-12 16:11:56 +1100142 host->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 host->n_io_port = 255;
144
Finn Thain0ad0eff2016-01-03 16:05:21 +1100145 ret = NCR5380_init(host, 0);
146 if (ret)
147 goto out_unmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Finn Thainb6488f92016-01-03 16:05:08 +1100149 NCR5380_maybe_reset_bus(host);
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 ret = scsi_add_host(host, &ec->dev);
152 if (ret)
Finn Thain0ad0eff2016-01-03 16:05:21 +1100153 goto out_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 scsi_scan_host(host);
156 goto out;
157
Finn Thain0ad0eff2016-01-03 16:05:21 +1100158 out_exit:
159 NCR5380_exit(host);
Russell King8b801ea2007-07-20 10:38:54 +0100160 out_unmap:
161 iounmap(priv(host)->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 unreg:
163 scsi_host_put(host);
Russell King8b801ea2007-07-20 10:38:54 +0100164 release:
165 ecard_release_resources(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 out:
167 return ret;
168}
169
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800170static void oakscsi_remove(struct expansion_card *ec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct Scsi_Host *host = ecard_get_drvdata(ec);
173
174 ecard_set_drvdata(ec, NULL);
175 scsi_remove_host(host);
176
177 NCR5380_exit(host);
Russell King8b801ea2007-07-20 10:38:54 +0100178 iounmap(priv(host)->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 scsi_host_put(host);
Russell King8b801ea2007-07-20 10:38:54 +0100180 ecard_release_resources(ec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183static const struct ecard_id oakscsi_cids[] = {
184 { MANU_OAK, PROD_OAK_SCSI },
185 { 0xffff, 0xffff }
186};
187
188static struct ecard_driver oakscsi_driver = {
189 .probe = oakscsi_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -0800190 .remove = oakscsi_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .id_table = oakscsi_cids,
192 .drv = {
193 .name = "oakscsi",
194 },
195};
196
197static int __init oakscsi_init(void)
198{
199 return ecard_register_driver(&oakscsi_driver);
200}
201
202static void __exit oakscsi_exit(void)
203{
204 ecard_remove_driver(&oakscsi_driver);
205}
206
207module_init(oakscsi_init);
208module_exit(oakscsi_exit);
209
210MODULE_AUTHOR("Russell King");
211MODULE_DESCRIPTION("Oak SCSI driver");
212MODULE_LICENSE("GPL");
213