- pre1:
[davej-history.git] / drivers / net / es3210.c
blob86a09b4d4834aa41e383ddb42e106df05371f171
1 /*
2 es3210.c
4 Linux driver for Racal-Interlan ES3210 EISA Network Adapter
6 Copyright (C) 1996, Paul Gortmaker.
8 This software may be used and distributed according to the terms
9 of the GNU Public License, incorporated herein by reference.
11 Information and Code Sources:
13 1) The existing myriad of Linux 8390 drivers written by Donald Becker.
15 2) Once again Russ Nelson's asm packet driver provided additional info.
17 3) Info for getting IRQ and sh-mem gleaned from the EISA cfg files.
18 Too bad it doesn't work -- see below.
20 The ES3210 is an EISA shared memory NS8390 implementation. Note
21 that all memory copies to/from the board must be 32bit transfers.
22 Which rules out using eth_io_copy_and_sum() in this driver.
24 Apparently there are two slightly different revisions of the
25 card, since there are two distinct EISA cfg files (!rii0101.cfg
26 and !rii0102.cfg) One has media select in the cfg file and the
27 other doesn't. Hopefully this will work with either.
29 That is about all I can tell you about it, having never actually
30 even seen one of these cards. :) Try http://www.interlan.com
31 if you want more info.
33 Thanks go to Mark Salazar for testing v0.02 of this driver.
35 Bugs, to-fix, etc:
37 1) The EISA cfg ports that are *supposed* to have the IRQ and shared
38 mem values just read 0xff all the time. Hrrmpf. Apparently the
39 same happens with the packet driver as the code for reading
40 these registers is disabled there. In the meantime, boot with:
41 ether=<IRQ>,0,0x<shared_mem_addr>,eth0 to override the IRQ and
42 shared memory detection. (The i/o port detection is okay.)
44 2) Module support currently untested. Probably works though.
48 static const char *version =
49 "es3210.c: Driver revision v0.03, 14/09/96\n";
51 #include <linux/module.h>
52 #include <linux/kernel.h>
53 #include <linux/sched.h>
54 #include <linux/errno.h>
55 #include <linux/string.h>
56 #include <linux/init.h>
57 #include <asm/io.h>
58 #include <asm/system.h>
60 #include <linux/netdevice.h>
61 #include <linux/etherdevice.h>
62 #include "8390.h"
64 int es_probe(struct net_device *dev);
65 int es_probe1(struct net_device *dev, int ioaddr);
67 static int es_open(struct net_device *dev);
68 static int es_close(struct net_device *dev);
70 static void es_reset_8390(struct net_device *dev);
72 static void es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
73 static void es_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset);
74 static void es_block_output(struct net_device *dev, int count, const unsigned char *buf, int start_page);
76 #define ES_START_PG 0x00 /* First page of TX buffer */
77 #define ES_STOP_PG 0x40 /* Last page +1 of RX ring */
79 #define ES_IO_EXTENT 0x37 /* The cfg file says 0xc90 -> 0xcc7 */
80 #define ES_ID_PORT 0xc80 /* Same for all EISA cards */
81 #define ES_SA_PROM 0xc90 /* Start of e'net addr. */
82 #define ES_RESET_PORT 0xc84 /* From the packet driver source */
83 #define ES_NIC_OFFSET 0xca0 /* Hello, the 8390 is *here* */
85 #define ES_ADDR0 0x02 /* 3 byte vendor prefix */
86 #define ES_ADDR1 0x07
87 #define ES_ADDR2 0x01
90 * Two card revisions. EISA ID's are always rev. minor, rev. major,, and
91 * then the three vendor letters stored in 5 bits each, with an "a" = 1.
92 * For eg: "rii" = 10010 01001 01001 = 0x4929, which is how the EISA
93 * config utility determines automagically what config file(s) to use.
95 #define ES_EISA_ID1 0x01012949 /* !rii0101.cfg */
96 #define ES_EISA_ID2 0x02012949 /* !rii0102.cfg */
98 #define ES_CFG1 0xcc0 /* IOPORT(1) --> IOPORT(6) in cfg file */
99 #define ES_CFG2 0xcc1
100 #define ES_CFG3 0xcc2
101 #define ES_CFG4 0xcc3
102 #define ES_CFG5 0xcc4
103 #define ES_CFG6 0xc84 /* NB: 0xc84 is also "reset" port. */
106 * You can OR any of the following bits together and assign it
107 * to ES_DEBUG to get verbose driver info during operation.
108 * Some of these don't do anything yet.
111 #define ES_D_PROBE 0x01
112 #define ES_D_RX_PKT 0x02
113 #define ES_D_TX_PKT 0x04
114 #define ED_D_IRQ 0x08
116 #define ES_DEBUG 0
118 static unsigned char lo_irq_map[] __initdata = {3, 4, 5, 6, 7, 9, 10};
119 static unsigned char hi_irq_map[] __initdata = {11, 12, 0, 14, 0, 0, 0, 15};
122 * Probe for the card. The best way is to read the EISA ID if it
123 * is known. Then we check the prefix of the station address
124 * PROM for a match against the Racal-Interlan assigned value.
127 int __init es_probe(struct net_device *dev)
129 unsigned short ioaddr = dev->base_addr;
131 if (ioaddr > 0x1ff) /* Check a single specified location. */
132 return es_probe1(dev, ioaddr);
133 else if (ioaddr > 0) /* Don't probe at all. */
134 return -ENXIO;
136 if (!EISA_bus) {
137 #if ES_DEBUG & ES_D_PROBE
138 printk("es3210.c: Not EISA bus. Not probing high ports.\n");
139 #endif
140 return -ENXIO;
143 /* EISA spec allows for up to 16 slots, but 8 is typical. */
144 for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000)
145 if (es_probe1(dev, ioaddr) == 0)
146 return 0;
148 return -ENODEV;
151 int __init es_probe1(struct net_device *dev, int ioaddr)
153 int i, retval;
154 unsigned long eisa_id;
156 if (!request_region(ioaddr + ES_SA_PROM, ES_IO_EXTENT, "es3210"))
157 return -ENODEV;
159 #if ES_DEBUG & ES_D_PROBE
160 printk("es3210.c: probe at %#x, ID %#8x\n", ioaddr, inl(ioaddr + ES_ID_PORT));
161 printk("es3210.c: config regs: %#x %#x %#x %#x %#x %#x\n",
162 inb(ioaddr + ES_CFG1), inb(ioaddr + ES_CFG2), inb(ioaddr + ES_CFG3),
163 inb(ioaddr + ES_CFG4), inb(ioaddr + ES_CFG5), inb(ioaddr + ES_CFG6));
164 #endif
167 /* Check the EISA ID of the card. */
168 eisa_id = inl(ioaddr + ES_ID_PORT);
169 if ((eisa_id != ES_EISA_ID1) && (eisa_id != ES_EISA_ID2)) {
170 retval = -ENODEV;
171 goto out;
174 /* Check the Racal vendor ID as well. */
175 if (inb(ioaddr + ES_SA_PROM + 0) != ES_ADDR0
176 || inb(ioaddr + ES_SA_PROM + 1) != ES_ADDR1
177 || inb(ioaddr + ES_SA_PROM + 2) != ES_ADDR2 ) {
178 printk("es3210.c: card not found");
179 for(i = 0; i < ETHER_ADDR_LEN; i++)
180 printk(" %02x", inb(ioaddr + ES_SA_PROM + i));
181 printk(" (invalid prefix).\n");
182 retval = -ENODEV;
183 goto out;
186 printk("es3210.c: ES3210 rev. %ld at %#x, node", eisa_id>>24, ioaddr);
187 for(i = 0; i < ETHER_ADDR_LEN; i++)
188 printk(" %02x", (dev->dev_addr[i] = inb(ioaddr + ES_SA_PROM + i)));
190 /* Snarf the interrupt now. */
191 if (dev->irq == 0) {
192 unsigned char hi_irq = inb(ioaddr + ES_CFG2) & 0x07;
193 unsigned char lo_irq = inb(ioaddr + ES_CFG1) & 0xfe;
195 if (hi_irq != 0) {
196 dev->irq = hi_irq_map[hi_irq - 1];
197 } else {
198 int i = 0;
199 while (lo_irq > (1<<i)) i++;
200 dev->irq = lo_irq_map[i];
202 printk(" using IRQ %d", dev->irq);
203 #if ES_DEBUG & ES_D_PROBE
204 printk("es3210.c: hi_irq %#x, lo_irq %#x, dev->irq = %d\n",
205 hi_irq, lo_irq, dev->irq);
206 #endif
207 } else {
208 if (dev->irq == 2)
209 dev->irq = 9; /* Doh! */
210 printk(" assigning IRQ %d", dev->irq);
213 if (request_irq(dev->irq, ei_interrupt, 0, "es3210", dev)) {
214 printk (" unable to get IRQ %d.\n", dev->irq);
215 retval = -EAGAIN;
216 goto out;
219 if (dev->mem_start == 0) {
220 unsigned char mem_enabled = inb(ioaddr + ES_CFG2) & 0xc0;
221 unsigned char mem_bits = inb(ioaddr + ES_CFG3) & 0x07;
223 if (mem_enabled != 0x80) {
224 printk(" shared mem disabled - giving up\n");
225 retval = -ENXIO;
226 goto out1;
228 dev->mem_start = 0xC0000 + mem_bits*0x4000;
229 printk(" using ");
230 } else {
231 printk(" assigning ");
234 dev->mem_end = dev->rmem_end = dev->mem_start
235 + (ES_STOP_PG - ES_START_PG)*256;
236 dev->rmem_start = dev->mem_start + TX_PAGES*256;
238 printk("mem %#lx-%#lx\n", dev->mem_start, dev->mem_end-1);
240 /* Allocate dev->priv and fill in 8390 specific dev fields. */
241 if (ethdev_init(dev)) {
242 printk (" unable to allocate memory for dev->priv.\n");
243 retval = -ENOMEM;
244 goto out1;
247 #if ES_DEBUG & ES_D_PROBE
248 if (inb(ioaddr + ES_CFG5))
249 printk("es3210: Warning - DMA channel enabled, but not used here.\n");
250 #endif
251 /* Note, point at the 8390, and not the card... */
252 dev->base_addr = ioaddr + ES_NIC_OFFSET;
254 ei_status.name = "ES3210";
255 ei_status.tx_start_page = ES_START_PG;
256 ei_status.rx_start_page = ES_START_PG + TX_PAGES;
257 ei_status.stop_page = ES_STOP_PG;
258 ei_status.word16 = 1;
260 if (ei_debug > 0)
261 printk(version);
263 ei_status.reset_8390 = &es_reset_8390;
264 ei_status.block_input = &es_block_input;
265 ei_status.block_output = &es_block_output;
266 ei_status.get_8390_hdr = &es_get_8390_hdr;
268 dev->open = &es_open;
269 dev->stop = &es_close;
270 NS8390_init(dev, 0);
271 return 0;
272 out1:
273 free_irq(dev->irq, dev);
274 out:
275 release_region(ioaddr + ES_SA_PROM, ES_IO_EXTENT);
276 return retval;
280 * Reset as per the packet driver method. Judging by the EISA cfg
281 * file, this just toggles the "Board Enable" bits (bit 2 and 0).
284 static void es_reset_8390(struct net_device *dev)
286 unsigned short ioaddr = dev->base_addr;
287 unsigned long end;
289 outb(0x04, ioaddr + ES_RESET_PORT);
290 if (ei_debug > 1) printk("%s: resetting the ES3210...", dev->name);
292 end = jiffies + 2*HZ/100;
293 while ((signed)(end - jiffies) > 0) continue;
295 ei_status.txing = 0;
296 outb(0x01, ioaddr + ES_RESET_PORT);
297 if (ei_debug > 1) printk("reset done\n");
299 return;
303 * Note: In the following three functions is the implicit assumption
304 * that the associated memcpy will only use "rep; movsl" as long as
305 * we keep the counts as some multiple of doublewords. This is a
306 * requirement of the hardware, and also prevents us from using
307 * eth_io_copy_and_sum() since we can't guarantee it will limit
308 * itself to doubleword access.
312 * Grab the 8390 specific header. Similar to the block_input routine, but
313 * we don't need to be concerned with ring wrap as the header will be at
314 * the start of a page, so we optimize accordingly. (A single doubleword.)
317 static void
318 es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
320 unsigned long hdr_start = dev->mem_start + ((ring_page - ES_START_PG)<<8);
321 isa_memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
322 hdr->count = (hdr->count + 3) & ~3; /* Round up allocation. */
326 * Block input and output are easy on shared memory ethercards, the only
327 * complication is when the ring buffer wraps. The count will already
328 * be rounded up to a doubleword value via es_get_8390_hdr() above.
331 static void es_block_input(struct net_device *dev, int count, struct sk_buff *skb,
332 int ring_offset)
334 unsigned long xfer_start = dev->mem_start + ring_offset - (ES_START_PG<<8);
336 if (xfer_start + count > dev->rmem_end) {
337 /* Packet wraps over end of ring buffer. */
338 int semi_count = dev->rmem_end - xfer_start;
339 isa_memcpy_fromio(skb->data, xfer_start, semi_count);
340 count -= semi_count;
341 isa_memcpy_fromio(skb->data + semi_count, dev->rmem_start, count);
342 } else {
343 /* Packet is in one chunk. */
344 isa_eth_io_copy_and_sum(skb, xfer_start, count, 0);
348 static void es_block_output(struct net_device *dev, int count,
349 const unsigned char *buf, int start_page)
351 unsigned long shmem = dev->mem_start + ((start_page - ES_START_PG)<<8);
353 count = (count + 3) & ~3; /* Round up to doubleword */
354 isa_memcpy_toio(shmem, buf, count);
357 static int es_open(struct net_device *dev)
359 ei_open(dev);
361 MOD_INC_USE_COUNT;
363 return 0;
366 static int es_close(struct net_device *dev)
369 if (ei_debug > 1)
370 printk("%s: Shutting down ethercard.\n", dev->name);
372 ei_close(dev);
374 MOD_DEC_USE_COUNT;
376 return 0;
379 #ifdef MODULE
380 #define MAX_ES_CARDS 4 /* Max number of ES3210 cards per module */
381 #define NAMELEN 8 /* # of chars for storing dev->name */
382 static struct net_device dev_es3210[MAX_ES_CARDS] = {
384 "", /* device name is inserted by net_init.c */
385 0, 0, 0, 0,
386 0, 0,
387 0, 0, 0, NULL, NULL
391 static int io[MAX_ES_CARDS];
392 static int irq[MAX_ES_CARDS];
393 static int mem[MAX_ES_CARDS];
395 MODULE_PARM(io, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
396 MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
397 MODULE_PARM(mem, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
400 init_module(void)
402 int this_dev, found = 0;
404 for (this_dev = 0; this_dev < MAX_ES_CARDS; this_dev++) {
405 struct net_device *dev = &dev_es3210[this_dev];
406 dev->irq = irq[this_dev];
407 dev->base_addr = io[this_dev];
408 dev->mem_start = mem[this_dev]; /* Currently ignored by driver */
409 dev->init = es_probe;
410 /* Default is to only install one card. */
411 if (io[this_dev] == 0 && this_dev != 0) break;
412 if (register_netdev(dev) != 0) {
413 printk(KERN_WARNING "es3210.c: No es3210 card found (i/o = 0x%x).\n", io[this_dev]);
414 if (found != 0) { /* Got at least one. */
415 return 0;
417 return -ENXIO;
419 found++;
421 return 0;
424 void
425 cleanup_module(void)
427 int this_dev;
429 for (this_dev = 0; this_dev < MAX_ES_CARDS; this_dev++) {
430 struct net_device *dev = &dev_es3210[this_dev];
431 if (dev->priv != NULL) {
432 void *priv = dev->priv;
433 free_irq(dev->irq, dev);
434 release_region(dev->base_addr, ES_IO_EXTENT);
435 unregister_netdev(dev);
436 kfree(priv);
440 #endif /* MODULE */