e8c15016bb8e7e48f6b1ea6a1f430be940a7f9bb
[deliverable/linux.git] / drivers / net / arcnet / arc-rimi.c
1 /*
2 * Linux ARCnet driver - "RIM I" (entirely mem-mapped) cards
3 *
4 * Written 1994-1999 by Avery Pennarun.
5 * Written 1999-2000 by Martin Mares <mj@ucw.cz>.
6 * Derived from skeleton.c by Donald Becker.
7 *
8 * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
9 * for sponsoring the further development of this driver.
10 *
11 * **********************
12 *
13 * The original copyright of skeleton.c was as follows:
14 *
15 * skeleton.c Written 1993 by Donald Becker.
16 * Copyright 1993 United States Government as represented by the
17 * Director, National Security Agency. This software may only be used
18 * and distributed according to the terms of the GNU General Public License as
19 * modified by SRC, incorporated herein by reference.
20 *
21 * **********************
22 *
23 * For more details, see drivers/net/arcnet.c
24 *
25 * **********************
26 */
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/ioport.h>
31 #include <linux/delay.h>
32 #include <linux/netdevice.h>
33 #include <linux/bootmem.h>
34 #include <linux/init.h>
35 #include <linux/interrupt.h>
36 #include <asm/io.h>
37 #include <linux/arcdevice.h>
38
39 #define VERSION "arcnet: RIM I (entirely mem-mapped) support\n"
40
41 /* Internal function declarations */
42
43 static int arcrimi_probe(struct net_device *dev);
44 static int arcrimi_found(struct net_device *dev);
45 static void arcrimi_command(struct net_device *dev, int command);
46 static int arcrimi_status(struct net_device *dev);
47 static void arcrimi_setmask(struct net_device *dev, int mask);
48 static int arcrimi_reset(struct net_device *dev, int really_reset);
49 static void arcrimi_copy_to_card(struct net_device *dev, int bufnum, int offset,
50 void *buf, int count);
51 static void arcrimi_copy_from_card(struct net_device *dev, int bufnum, int offset,
52 void *buf, int count);
53
54 /* Handy defines for ARCnet specific stuff */
55
56 /* Amount of I/O memory used by the card */
57 #define BUFFER_SIZE (512)
58 #define MIRROR_SIZE (BUFFER_SIZE * 4)
59
60 /* COM 9026 controller chip --> ARCnet register addresses */
61 #define _INTMASK (ioaddr + 0) /* writable */
62 #define _STATUS (ioaddr + 0) /* readable */
63 #define _COMMAND (ioaddr + 1) /* writable, returns random vals on read (?) */
64 #define _RESET (ioaddr + 8) /* software reset (on read) */
65 #define _MEMDATA (ioaddr + 12) /* Data port for IO-mapped memory */
66 #define _ADDR_HI (ioaddr + 15) /* Control registers for said */
67 #define _ADDR_LO (ioaddr + 14)
68 #define _CONFIG (ioaddr + 2) /* Configuration register */
69
70 #undef ASTATUS
71 #undef ACOMMAND
72 #undef AINTMASK
73
74 #define ASTATUS() readb(_STATUS)
75 #define ACOMMAND(cmd) writeb((cmd), _COMMAND)
76 #define AINTMASK(msk) writeb((msk), _INTMASK)
77 #define SETCONF() writeb(lp->config, _CONFIG)
78
79 /*
80 * We cannot probe for a RIM I card; one reason is I don't know how to reset
81 * them. In fact, we can't even get their node ID automatically. So, we
82 * need to be passed a specific shmem address, IRQ, and node ID.
83 */
84 static int __init arcrimi_probe(struct net_device *dev)
85 {
86 BUGLVL(D_NORMAL) printk(VERSION);
87 BUGLVL(D_NORMAL) printk("E-mail me if you actually test the RIM I driver, please!\n");
88
89 BUGLVL(D_NORMAL) printk("Given: node %02Xh, shmem %lXh, irq %d\n",
90 dev->dev_addr[0], dev->mem_start, dev->irq);
91
92 if (dev->mem_start <= 0 || dev->irq <= 0) {
93 BUGLVL(D_NORMAL) printk("No autoprobe for RIM I; you "
94 "must specify the shmem and irq!\n");
95 return -ENODEV;
96 }
97 if (dev->dev_addr[0] == 0) {
98 BUGLVL(D_NORMAL) printk("You need to specify your card's station "
99 "ID!\n");
100 return -ENODEV;
101 }
102 /*
103 * Grab the memory region at mem_start for MIRROR_SIZE bytes.
104 * Later in arcrimi_found() the real size will be determined
105 * and this reserve will be released and the correct size
106 * will be taken.
107 */
108 if (!request_mem_region(dev->mem_start, MIRROR_SIZE, "arcnet (90xx)")) {
109 BUGLVL(D_NORMAL) printk("Card memory already allocated\n");
110 return -ENODEV;
111 }
112 return arcrimi_found(dev);
113 }
114
115 static int check_mirror(unsigned long addr, size_t size)
116 {
117 void __iomem *p;
118 int res = -1;
119
120 if (!request_mem_region(addr, size, "arcnet (90xx)"))
121 return -1;
122
123 p = ioremap(addr, size);
124 if (p) {
125 if (readb(p) == TESTvalue)
126 res = 1;
127 else
128 res = 0;
129 iounmap(p);
130 }
131
132 release_mem_region(addr, size);
133 return res;
134 }
135
136 /*
137 * Set up the struct net_device associated with this card. Called after
138 * probing succeeds.
139 */
140 static int __init arcrimi_found(struct net_device *dev)
141 {
142 struct arcnet_local *lp;
143 unsigned long first_mirror, last_mirror, shmem;
144 void __iomem *p;
145 int mirror_size;
146 int err;
147
148 p = ioremap(dev->mem_start, MIRROR_SIZE);
149 if (!p) {
150 release_mem_region(dev->mem_start, MIRROR_SIZE);
151 BUGMSG(D_NORMAL, "Can't ioremap\n");
152 return -ENODEV;
153 }
154
155 /* reserve the irq */
156 if (request_irq(dev->irq, arcnet_interrupt, 0, "arcnet (RIM I)", dev)) {
157 iounmap(p);
158 release_mem_region(dev->mem_start, MIRROR_SIZE);
159 BUGMSG(D_NORMAL, "Can't get IRQ %d!\n", dev->irq);
160 return -ENODEV;
161 }
162
163 shmem = dev->mem_start;
164 writeb(TESTvalue, p);
165 writeb(dev->dev_addr[0], p + 1); /* actually the node ID */
166
167 /* find the real shared memory start/end points, including mirrors */
168
169 /* guess the actual size of one "memory mirror" - the number of
170 * bytes between copies of the shared memory. On most cards, it's
171 * 2k (or there are no mirrors at all) but on some, it's 4k.
172 */
173 mirror_size = MIRROR_SIZE;
174 if (readb(p) == TESTvalue &&
175 check_mirror(shmem - MIRROR_SIZE, MIRROR_SIZE) == 0 &&
176 check_mirror(shmem - 2 * MIRROR_SIZE, MIRROR_SIZE) == 1)
177 mirror_size = 2 * MIRROR_SIZE;
178
179 first_mirror = shmem - mirror_size;
180 while (check_mirror(first_mirror, mirror_size) == 1)
181 first_mirror -= mirror_size;
182 first_mirror += mirror_size;
183
184 last_mirror = shmem + mirror_size;
185 while (check_mirror(last_mirror, mirror_size) == 1)
186 last_mirror += mirror_size;
187 last_mirror -= mirror_size;
188
189 dev->mem_start = first_mirror;
190 dev->mem_end = last_mirror + MIRROR_SIZE - 1;
191
192 /* initialize the rest of the device structure. */
193
194 lp = netdev_priv(dev);
195 lp->card_name = "RIM I";
196 lp->hw.command = arcrimi_command;
197 lp->hw.status = arcrimi_status;
198 lp->hw.intmask = arcrimi_setmask;
199 lp->hw.reset = arcrimi_reset;
200 lp->hw.owner = THIS_MODULE;
201 lp->hw.copy_to_card = arcrimi_copy_to_card;
202 lp->hw.copy_from_card = arcrimi_copy_from_card;
203
204 /*
205 * re-reserve the memory region - arcrimi_probe() alloced this reqion
206 * but didn't know the real size. Free that region and then re-get
207 * with the correct size. There is a VERY slim chance this could
208 * fail.
209 */
210 iounmap(p);
211 release_mem_region(shmem, MIRROR_SIZE);
212 if (!request_mem_region(dev->mem_start,
213 dev->mem_end - dev->mem_start + 1,
214 "arcnet (90xx)")) {
215 BUGMSG(D_NORMAL, "Card memory already allocated\n");
216 goto err_free_irq;
217 }
218
219 lp->mem_start = ioremap(dev->mem_start, dev->mem_end - dev->mem_start + 1);
220 if (!lp->mem_start) {
221 BUGMSG(D_NORMAL, "Can't remap device memory!\n");
222 goto err_release_mem;
223 }
224
225 /* get and check the station ID from offset 1 in shmem */
226 dev->dev_addr[0] = readb(lp->mem_start + 1);
227
228 BUGMSG(D_NORMAL, "ARCnet RIM I: station %02Xh found at IRQ %d, "
229 "ShMem %lXh (%ld*%d bytes).\n",
230 dev->dev_addr[0],
231 dev->irq, dev->mem_start,
232 (dev->mem_end - dev->mem_start + 1) / mirror_size, mirror_size);
233
234 err = register_netdev(dev);
235 if (err)
236 goto err_unmap;
237
238 return 0;
239
240 err_unmap:
241 iounmap(lp->mem_start);
242 err_release_mem:
243 release_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1);
244 err_free_irq:
245 free_irq(dev->irq, dev);
246 return -EIO;
247 }
248
249 /*
250 * Do a hardware reset on the card, and set up necessary registers.
251 *
252 * This should be called as little as possible, because it disrupts the
253 * token on the network (causes a RECON) and requires a significant delay.
254 *
255 * However, it does make sure the card is in a defined state.
256 */
257 static int arcrimi_reset(struct net_device *dev, int really_reset)
258 {
259 struct arcnet_local *lp = netdev_priv(dev);
260 void __iomem *ioaddr = lp->mem_start + 0x800;
261
262 BUGMSG(D_INIT, "Resetting %s (status=%02Xh)\n", dev->name, ASTATUS());
263
264 if (really_reset) {
265 writeb(TESTvalue, ioaddr - 0x800); /* fake reset */
266 return 0;
267 }
268 ACOMMAND(CFLAGScmd | RESETclear); /* clear flags & end reset */
269 ACOMMAND(CFLAGScmd | CONFIGclear);
270
271 /* enable extended (512-byte) packets */
272 ACOMMAND(CONFIGcmd | EXTconf);
273
274 /* done! return success. */
275 return 0;
276 }
277
278 static void arcrimi_setmask(struct net_device *dev, int mask)
279 {
280 struct arcnet_local *lp = netdev_priv(dev);
281 void __iomem *ioaddr = lp->mem_start + 0x800;
282
283 AINTMASK(mask);
284 }
285
286 static int arcrimi_status(struct net_device *dev)
287 {
288 struct arcnet_local *lp = netdev_priv(dev);
289 void __iomem *ioaddr = lp->mem_start + 0x800;
290
291 return ASTATUS();
292 }
293
294 static void arcrimi_command(struct net_device *dev, int cmd)
295 {
296 struct arcnet_local *lp = netdev_priv(dev);
297 void __iomem *ioaddr = lp->mem_start + 0x800;
298
299 ACOMMAND(cmd);
300 }
301
302 static void arcrimi_copy_to_card(struct net_device *dev, int bufnum, int offset,
303 void *buf, int count)
304 {
305 struct arcnet_local *lp = netdev_priv(dev);
306 void __iomem *memaddr = lp->mem_start + 0x800 + bufnum * 512 + offset;
307
308 TIME("memcpy_toio", count, memcpy_toio(memaddr, buf, count));
309 }
310
311 static void arcrimi_copy_from_card(struct net_device *dev, int bufnum, int offset,
312 void *buf, int count)
313 {
314 struct arcnet_local *lp = netdev_priv(dev);
315 void __iomem *memaddr = lp->mem_start + 0x800 + bufnum * 512 + offset;
316
317 TIME("memcpy_fromio", count, memcpy_fromio(buf, memaddr, count));
318 }
319
320 static int node;
321 static int io; /* use the insmod io= irq= node= options */
322 static int irq;
323 static char device[9]; /* use eg. device=arc1 to change name */
324
325 module_param(node, int, 0);
326 module_param(io, int, 0);
327 module_param(irq, int, 0);
328 module_param_string(device, device, sizeof(device), 0);
329 MODULE_LICENSE("GPL");
330
331 static struct net_device *my_dev;
332
333 static int __init arc_rimi_init(void)
334 {
335 struct net_device *dev;
336
337 dev = alloc_arcdev(device);
338 if (!dev)
339 return -ENOMEM;
340
341 if (node && node != 0xff)
342 dev->dev_addr[0] = node;
343
344 dev->mem_start = io;
345 dev->irq = irq;
346 if (dev->irq == 2)
347 dev->irq = 9;
348
349 if (arcrimi_probe(dev)) {
350 free_netdev(dev);
351 return -EIO;
352 }
353
354 my_dev = dev;
355 return 0;
356 }
357
358 static void __exit arc_rimi_exit(void)
359 {
360 struct net_device *dev = my_dev;
361 struct arcnet_local *lp = netdev_priv(dev);
362
363 unregister_netdev(dev);
364 iounmap(lp->mem_start);
365 release_mem_region(dev->mem_start, dev->mem_end - dev->mem_start + 1);
366 free_irq(dev->irq, dev);
367 free_netdev(dev);
368 }
369
370 #ifndef MODULE
371 static int __init arcrimi_setup(char *s)
372 {
373 int ints[8];
374
375 s = get_options(s, 8, ints);
376 if (!ints[0])
377 return 1;
378 switch (ints[0]) {
379 default: /* ERROR */
380 printk("arcrimi: Too many arguments.\n");
381 case 3: /* Node ID */
382 node = ints[3];
383 case 2: /* IRQ */
384 irq = ints[2];
385 case 1: /* IO address */
386 io = ints[1];
387 }
388 if (*s)
389 snprintf(device, sizeof(device), "%s", s);
390 return 1;
391 }
392 __setup("arcrimi=", arcrimi_setup);
393 #endif /* MODULE */
394
395 module_init(arc_rimi_init)
396 module_exit(arc_rimi_exit)
This page took 0.038931 seconds and 4 git commands to generate.