cumana_1.c 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Generic Generic NCR5380 driver
 *
 * Copyright 1995-2002, Russell King
 */
#include <linux/module.h>
#include <linux/signal.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/blkdev.h>
#include <linux/init.h>

#include <asm/ecard.h>
#include <asm/io.h>

#include <scsi/scsi_host.h>

#include <scsi/scsicam.h>

#define PSEUDO_DMA

22
#define priv(host)			((struct NCR5380_hostdata *)(host)->hostdata)
23 24
#define NCR5380_read(reg)		cumanascsi_read(instance, reg)
#define NCR5380_write(reg, value)	cumanascsi_write(instance, reg, value)
25 26 27

#define NCR5380_dma_xfer_len(instance, cmd, phase)	(cmd->transfersize)

L
Linus Torvalds 已提交
28 29
#define NCR5380_intr			cumanascsi_intr
#define NCR5380_queue_command		cumanascsi_queue_command
F
Finn Thain 已提交
30
#define NCR5380_info			cumanascsi_info
L
Linus Torvalds 已提交
31

32 33 34 35 36
#define NCR5380_implementation_fields	\
	unsigned ctrl;			\
	void __iomem *base;		\
	void __iomem *dma

L
Linus Torvalds 已提交
37 38 39 40 41 42
#include "../NCR5380.h"

void cumanascsi_setup(char *str, int *ints)
{
}

43 44 45 46
#define CTRL	0x16fc
#define STAT	0x2004
#define L(v)	(((v)<<16)|((v) & 0x0000ffff))
#define H(v)	(((v)>>16)|((v) & 0xffff0000))
L
Linus Torvalds 已提交
47 48

static inline int
49
NCR5380_pwrite(struct Scsi_Host *host, unsigned char *addr, int len)
L
Linus Torvalds 已提交
50 51
{
  unsigned long *laddr;
52
  void __iomem *dma = priv(host)->dma + 0x2000;
L
Linus Torvalds 已提交
53 54 55

  if(!len) return 0;

56
  writeb(0x02, priv(host)->base + CTRL);
L
Linus Torvalds 已提交
57 58 59
  laddr = (unsigned long *)addr;
  while(len >= 32)
  {
60
    unsigned int status;
L
Linus Torvalds 已提交
61
    unsigned long v;
62
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
63 64 65 66
    if(status & 0x80)
      goto end;
    if(!(status & 0x40))
      continue;
67 68 69 70 71 72 73 74
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
    v=*laddr++; writew(L(v), dma); writew(H(v), dma);
L
Linus Torvalds 已提交
75 76 77 78 79 80
    len -= 32;
    if(len == 0)
      break;
  }

  addr = (unsigned char *)laddr;
81 82
  writeb(0x12, priv(host)->base + CTRL);

L
Linus Torvalds 已提交
83 84
  while(len > 0)
  {
85 86
    unsigned int status;
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
87 88 89 90
    if(status & 0x80)
      goto end;
    if(status & 0x40)
    {
91
      writeb(*addr++, dma);
L
Linus Torvalds 已提交
92 93 94 95
      if(--len == 0)
        break;
    }

96
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
97 98 99 100
    if(status & 0x80)
      goto end;
    if(status & 0x40)
    {
101
      writeb(*addr++, dma);
L
Linus Torvalds 已提交
102 103 104 105 106
      if(--len == 0)
        break;
    }
  }
end:
107
  writeb(priv(host)->ctrl | 0x40, priv(host)->base + CTRL);
L
Linus Torvalds 已提交
108 109 110 111
  return len;
}

static inline int
112
NCR5380_pread(struct Scsi_Host *host, unsigned char *addr, int len)
L
Linus Torvalds 已提交
113 114
{
  unsigned long *laddr;
115
  void __iomem *dma = priv(host)->dma + 0x2000;
L
Linus Torvalds 已提交
116 117 118

  if(!len) return 0;

119
  writeb(0x00, priv(host)->base + CTRL);
L
Linus Torvalds 已提交
120 121 122
  laddr = (unsigned long *)addr;
  while(len >= 32)
  {
123 124
    unsigned int status;
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
125 126 127 128
    if(status & 0x80)
      goto end;
    if(!(status & 0x40))
      continue;
129 130 131 132 133 134 135 136
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
    *laddr++ = readw(dma) | (readw(dma) << 16);
L
Linus Torvalds 已提交
137 138 139 140 141 142
    len -= 32;
    if(len == 0)
      break;
  }

  addr = (unsigned char *)laddr;
143 144
  writeb(0x10, priv(host)->base + CTRL);

L
Linus Torvalds 已提交
145 146
  while(len > 0)
  {
147 148
    unsigned int status;
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
149 150 151 152
    if(status & 0x80)
      goto end;
    if(status & 0x40)
    {
153
      *addr++ = readb(dma);
L
Linus Torvalds 已提交
154 155 156 157
      if(--len == 0)
        break;
    }

158
    status = readb(priv(host)->base + STAT);
L
Linus Torvalds 已提交
159 160 161 162
    if(status & 0x80)
      goto end;
    if(status & 0x40)
    {
163
      *addr++ = readb(dma);
L
Linus Torvalds 已提交
164 165 166 167 168
      if(--len == 0)
        break;
    }
  }
end:
169
  writeb(priv(host)->ctrl | 0x40, priv(host)->base + CTRL);
L
Linus Torvalds 已提交
170 171 172
  return len;
}

173 174 175 176
static unsigned char cumanascsi_read(struct Scsi_Host *host, unsigned int reg)
{
	void __iomem *base = priv(host)->base;
	unsigned char val;
L
Linus Torvalds 已提交
177

178
	writeb(0, base + CTRL);
L
Linus Torvalds 已提交
179

180
	val = readb(base + 0x2100 + (reg << 2));
L
Linus Torvalds 已提交
181

182 183
	priv(host)->ctrl = 0x40;
	writeb(0x40, base + CTRL);
L
Linus Torvalds 已提交
184

185
	return val;
L
Linus Torvalds 已提交
186 187
}

188
static void cumanascsi_write(struct Scsi_Host *host, unsigned int reg, unsigned int value)
L
Linus Torvalds 已提交
189
{
190
	void __iomem *base = priv(host)->base;
L
Linus Torvalds 已提交
191

192
	writeb(0, base + CTRL);
L
Linus Torvalds 已提交
193

194 195 196 197 198
	writeb(value, base + 0x2100 + (reg << 2));

	priv(host)->ctrl = 0x40;
	writeb(0x40, base + CTRL);
}
L
Linus Torvalds 已提交
199 200 201

#include "../NCR5380.c"

202
static struct scsi_host_template cumanascsi_template = {
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216
	.module			= THIS_MODULE,
	.name			= "Cumana 16-bit SCSI",
	.info			= cumanascsi_info,
	.queuecommand		= cumanascsi_queue_command,
	.eh_abort_handler	= NCR5380_abort,
	.eh_bus_reset_handler	= NCR5380_bus_reset,
	.can_queue		= 16,
	.this_id		= 7,
	.sg_tablesize		= SG_ALL,
	.cmd_per_lun		= 2,
	.use_clustering		= DISABLE_CLUSTERING,
	.proc_name		= "CumanaSCSI-1",
};

217 218
static int cumanascsi1_probe(struct expansion_card *ec,
			     const struct ecard_id *id)
L
Linus Torvalds 已提交
219 220
{
	struct Scsi_Host *host;
221
	int ret;
L
Linus Torvalds 已提交
222

223 224
	ret = ecard_request_resources(ec);
	if (ret)
L
Linus Torvalds 已提交
225 226
		goto out;

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
	host = scsi_host_alloc(&cumanascsi_template, sizeof(struct NCR5380_hostdata));
	if (!host) {
		ret = -ENOMEM;
		goto out_release;
	}

	priv(host)->base = ioremap(ecard_resource_start(ec, ECARD_RES_IOCSLOW),
				   ecard_resource_len(ec, ECARD_RES_IOCSLOW));
	priv(host)->dma = ioremap(ecard_resource_start(ec, ECARD_RES_MEMC),
				  ecard_resource_len(ec, ECARD_RES_MEMC));
	if (!priv(host)->base || !priv(host)->dma) {
		ret = -ENOMEM;
		goto out_unmap;
	}

L
Linus Torvalds 已提交
242 243
	host->irq = ec->irq;

244 245 246
	ret = NCR5380_init(host, 0);
	if (ret)
		goto out_unmap;
L
Linus Torvalds 已提交
247

248 249
	NCR5380_maybe_reset_bus(host);

250 251 252
        priv(host)->ctrl = 0;
        writeb(0, priv(host)->base + CTRL);

253
	ret = request_irq(host->irq, cumanascsi_intr, 0,
L
Linus Torvalds 已提交
254 255 256 257
			  "CumanaSCSI-1", host);
	if (ret) {
		printk("scsi%d: IRQ%d not free: %d\n",
		    host->host_no, host->irq, ret);
258
		goto out_exit;
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266 267 268 269
	}

	ret = scsi_add_host(host, &ec->dev);
	if (ret)
		goto out_free_irq;

	scsi_scan_host(host);
	goto out;

 out_free_irq:
	free_irq(host->irq, host);
270 271
 out_exit:
	NCR5380_exit(host);
272 273 274
 out_unmap:
	iounmap(priv(host)->base);
	iounmap(priv(host)->dma);
L
Linus Torvalds 已提交
275
	scsi_host_put(host);
276 277
 out_release:
	ecard_release_resources(ec);
L
Linus Torvalds 已提交
278 279 280 281
 out:
	return ret;
}

282
static void cumanascsi1_remove(struct expansion_card *ec)
L
Linus Torvalds 已提交
283 284 285 286 287 288 289 290
{
	struct Scsi_Host *host = ecard_get_drvdata(ec);

	ecard_set_drvdata(ec, NULL);

	scsi_remove_host(host);
	free_irq(host->irq, host);
	NCR5380_exit(host);
291 292
	iounmap(priv(host)->base);
	iounmap(priv(host)->dma);
L
Linus Torvalds 已提交
293
	scsi_host_put(host);
294
	ecard_release_resources(ec);
L
Linus Torvalds 已提交
295 296 297 298 299 300 301 302 303
}

static const struct ecard_id cumanascsi1_cids[] = {
	{ MANU_CUMANA, PROD_CUMANA_SCSI_1 },
	{ 0xffff, 0xffff }
};

static struct ecard_driver cumanascsi1_driver = {
	.probe		= cumanascsi1_probe,
304
	.remove		= cumanascsi1_remove,
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
	.id_table	= cumanascsi1_cids,
	.drv = {
		.name		= "cumanascsi1",
	},
};

static int __init cumanascsi_init(void)
{
	return ecard_register_driver(&cumanascsi1_driver);
}

static void __exit cumanascsi_exit(void)
{
	ecard_remove_driver(&cumanascsi1_driver);
}

module_init(cumanascsi_init);
module_exit(cumanascsi_exit);

MODULE_DESCRIPTION("Cumana SCSI-1 driver for Acorn machines");
MODULE_LICENSE("GPL");