cpupowerutils: bench: trivial fix of spelling mistake on "average"
[linux-2.6/btrfs-unstable.git] / drivers / scsi / arm / oak.c
blob1fab1d1896b1a7e81a53d2dc664e6f52a712b6d4
1 /*
2 * Oak Generic NCR5380 driver
4 * Copyright 1995-2002, Russell King
5 */
7 #include <linux/module.h>
8 #include <linux/ioport.h>
9 #include <linux/blkdev.h>
10 #include <linux/init.h>
12 #include <asm/ecard.h>
13 #include <asm/io.h>
15 #include <scsi/scsi_host.h>
17 /*#define PSEUDO_DMA*/
18 #define DONT_USE_INTR
20 #define priv(host) ((struct NCR5380_hostdata *)(host)->hostdata)
22 #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))
27 #define NCR5380_dma_xfer_len(instance, cmd, phase) (cmd->transfersize)
29 #define NCR5380_queue_command oakscsi_queue_command
30 #define NCR5380_info oakscsi_info
32 #define NCR5380_implementation_fields \
33 void __iomem *base
35 #include "../NCR5380.h"
37 #undef START_DMA_INITIATOR_RECEIVE_REG
38 #define START_DMA_INITIATOR_RECEIVE_REG (128 + 7)
40 #define STAT ((128 + 16) << 2)
41 #define DATA ((128 + 8) << 2)
43 static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *addr,
44 int len)
46 void __iomem *base = priv(instance)->base;
48 printk("writing %p len %d\n",addr, len);
49 if(!len) return -1;
51 while(1)
53 int status;
54 while (((status = readw(base + STAT)) & 0x100)==0);
58 static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *addr,
59 int len)
61 void __iomem *base = priv(instance)->base;
62 printk("reading %p len %d\n", addr, len);
63 while(len > 0)
65 unsigned int status, timeout;
66 unsigned long b;
68 timeout = 0x01FFFFFF;
70 while (((status = readw(base + STAT)) & 0x100)==0)
72 timeout--;
73 if(status & 0x200 || !timeout)
75 printk("status = %08X\n", status);
76 return 1;
80 if(len >= 128)
82 readsw(base + DATA, addr, 128);
83 addr += 128;
84 len -= 128;
86 else
88 b = (unsigned long) readw(base + DATA);
89 *addr ++ = b;
90 len -= 1;
91 if(len)
92 *addr ++ = b>>8;
93 len -= 1;
96 return 0;
99 #undef STAT
100 #undef DATA
102 #include "../NCR5380.c"
104 static struct scsi_host_template oakscsi_template = {
105 .module = THIS_MODULE,
106 .name = "Oak 16-bit SCSI",
107 .info = oakscsi_info,
108 .queuecommand = oakscsi_queue_command,
109 .eh_abort_handler = NCR5380_abort,
110 .eh_bus_reset_handler = NCR5380_bus_reset,
111 .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",
117 .cmd_size = NCR5380_CMD_SIZE,
118 .max_sectors = 128,
121 static int oakscsi_probe(struct expansion_card *ec, const struct ecard_id *id)
123 struct Scsi_Host *host;
124 int ret = -ENOMEM;
126 ret = ecard_request_resources(ec);
127 if (ret)
128 goto out;
130 host = scsi_host_alloc(&oakscsi_template, sizeof(struct NCR5380_hostdata));
131 if (!host) {
132 ret = -ENOMEM;
133 goto release;
136 priv(host)->base = ioremap(ecard_resource_start(ec, ECARD_RES_MEMC),
137 ecard_resource_len(ec, ECARD_RES_MEMC));
138 if (!priv(host)->base) {
139 ret = -ENOMEM;
140 goto unreg;
143 host->irq = NO_IRQ;
144 host->n_io_port = 255;
146 ret = NCR5380_init(host, 0);
147 if (ret)
148 goto out_unmap;
150 NCR5380_maybe_reset_bus(host);
152 ret = scsi_add_host(host, &ec->dev);
153 if (ret)
154 goto out_exit;
156 scsi_scan_host(host);
157 goto out;
159 out_exit:
160 NCR5380_exit(host);
161 out_unmap:
162 iounmap(priv(host)->base);
163 unreg:
164 scsi_host_put(host);
165 release:
166 ecard_release_resources(ec);
167 out:
168 return ret;
171 static void oakscsi_remove(struct expansion_card *ec)
173 struct Scsi_Host *host = ecard_get_drvdata(ec);
175 ecard_set_drvdata(ec, NULL);
176 scsi_remove_host(host);
178 NCR5380_exit(host);
179 iounmap(priv(host)->base);
180 scsi_host_put(host);
181 ecard_release_resources(ec);
184 static const struct ecard_id oakscsi_cids[] = {
185 { MANU_OAK, PROD_OAK_SCSI },
186 { 0xffff, 0xffff }
189 static struct ecard_driver oakscsi_driver = {
190 .probe = oakscsi_probe,
191 .remove = oakscsi_remove,
192 .id_table = oakscsi_cids,
193 .drv = {
194 .name = "oakscsi",
198 static int __init oakscsi_init(void)
200 return ecard_register_driver(&oakscsi_driver);
203 static void __exit oakscsi_exit(void)
205 ecard_remove_driver(&oakscsi_driver);
208 module_init(oakscsi_init);
209 module_exit(oakscsi_exit);
211 MODULE_AUTHOR("Russell King");
212 MODULE_DESCRIPTION("Oak SCSI driver");
213 MODULE_LICENSE("GPL");