blob: 6681ca748c74224e9e48ad0af562d009b894a8cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 ne3210.c
3
4 Linux driver for Novell NE3210 EISA Network Adapter
5
6 Copyright (C) 1998, Paul Gortmaker.
7
8 This software may be used and distributed according to the terms
9 of the GNU General Public License, incorporated herein by reference.
10
11 Information and Code Sources:
12
13 1) Based upon my other EISA 8390 drivers (lne390, es3210, smc-ultra32)
14 2) The existing myriad of other Linux 8390 drivers by Donald Becker.
15 3) Info for getting IRQ and sh-mem gleaned from the EISA cfg file
16
Jeff Garzik6aa20a22006-09-13 13:24:59 -040017 The NE3210 is an EISA shared memory NS8390 implementation. Shared
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 memory address > 1MB should work with this driver.
19
Jeff Garzik6aa20a22006-09-13 13:24:59 -040020 Note that the .cfg file (3/11/93, v1.0) has AUI and BNC switched
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 around (or perhaps there are some defective/backwards cards ???)
22
23 This driver WILL NOT WORK FOR THE NE3200 - it is completely different
24 and does not use an 8390 at all.
25
26 Updated to EISA probing API 5/2003 by Marc Zyngier.
27*/
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/eisa.h>
31#include <linux/kernel.h>
32#include <linux/errno.h>
33#include <linux/string.h>
34#include <linux/delay.h>
35#include <linux/init.h>
36#include <linux/interrupt.h>
37#include <linux/netdevice.h>
38#include <linux/etherdevice.h>
Al Virod7fe0f22006-12-03 23:15:30 -050039#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <asm/io.h>
42#include <asm/system.h>
43
44#include "8390.h"
45
46#define DRV_NAME "ne3210"
47
48static int ne3210_open(struct net_device *dev);
49static int ne3210_close(struct net_device *dev);
50
51static void ne3210_reset_8390(struct net_device *dev);
52
53static void ne3210_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
54static void ne3210_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset);
55static void ne3210_block_output(struct net_device *dev, int count, const unsigned char *buf, const int start_page);
56
57#define NE3210_START_PG 0x00 /* First page of TX buffer */
58#define NE3210_STOP_PG 0x80 /* Last page +1 of RX ring */
59
60#define NE3210_IO_EXTENT 0x20
61#define NE3210_SA_PROM 0x16 /* Start of e'net addr. */
62#define NE3210_RESET_PORT 0xc84
63#define NE3210_NIC_OFFSET 0x00 /* Hello, the 8390 is *here* */
64
65#define NE3210_ADDR0 0x00 /* 3 byte vendor prefix */
66#define NE3210_ADDR1 0x00
67#define NE3210_ADDR2 0x1b
68
69#define NE3210_CFG1 0xc84 /* NB: 0xc84 is also "reset" port. */
70#define NE3210_CFG2 0xc90
71#define NE3210_CFG_EXTENT (NE3210_CFG2 - NE3210_CFG1 + 1)
72
73/*
74 * You can OR any of the following bits together and assign it
75 * to NE3210_DEBUG to get verbose driver info during operation.
76 * Currently only the probe one is implemented.
77 */
78
79#define NE3210_D_PROBE 0x01
80#define NE3210_D_RX_PKT 0x02
81#define NE3210_D_TX_PKT 0x04
82#define NE3210_D_IRQ 0x08
83
84#define NE3210_DEBUG 0x0
85
86static unsigned char irq_map[] __initdata = {15, 12, 11, 10, 9, 7, 5, 3};
87static unsigned int shmem_map[] __initdata = {0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0};
88static const char *ifmap[] __initdata = {"UTP", "?", "BNC", "AUI"};
89static int ifmap_val[] __initdata = {
90 IF_PORT_10BASET,
91 IF_PORT_UNKNOWN,
92 IF_PORT_10BASE2,
93 IF_PORT_AUI,
94};
95
96static int __init ne3210_eisa_probe (struct device *device)
97{
98 unsigned long ioaddr, phys_mem;
99 int i, retval, port_index;
100 struct eisa_device *edev = to_eisa_device (device);
101 struct net_device *dev;
102
103 /* Allocate dev->priv and fill in 8390 specific dev fields. */
104 if (!(dev = alloc_ei_netdev ())) {
105 printk ("ne3210.c: unable to allocate memory for dev!\n");
106 return -ENOMEM;
107 }
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 SET_NETDEV_DEV(dev, device);
110 device->driver_data = dev;
111 ioaddr = edev->base_addr;
112
113 if (!request_region(ioaddr, NE3210_IO_EXTENT, DRV_NAME)) {
114 retval = -EBUSY;
115 goto out;
116 }
117
118 if (!request_region(ioaddr + NE3210_CFG1,
119 NE3210_CFG_EXTENT, DRV_NAME)) {
120 retval = -EBUSY;
121 goto out1;
122 }
123
124#if NE3210_DEBUG & NE3210_D_PROBE
125 printk("ne3210-debug: probe at %#x, ID %s\n", ioaddr, edev->id.sig);
126 printk("ne3210-debug: config regs: %#x %#x\n",
127 inb(ioaddr + NE3210_CFG1), inb(ioaddr + NE3210_CFG2));
128#endif
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 port_index = inb(ioaddr + NE3210_CFG2) >> 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 for(i = 0; i < ETHER_ADDR_LEN; i++)
Joe Perches0795af52007-10-03 17:59:30 -0700132 dev->dev_addr[i] = inb(ioaddr + NE3210_SA_PROM + i);
Johannes Berge1749612008-10-27 15:59:26 -0700133 printk("ne3210.c: NE3210 in EISA slot %d, media: %s, addr: %pM.\n",
134 edev->slot, ifmap[port_index], dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* Snarf the interrupt now. CFG file has them all listed as `edge' with share=NO */
137 dev->irq = irq_map[(inb(ioaddr + NE3210_CFG2) >> 3) & 0x07];
Joe Perches0795af52007-10-03 17:59:30 -0700138 printk("ne3210.c: using IRQ %d, ", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 retval = request_irq(dev->irq, ei_interrupt, 0, DRV_NAME, dev);
141 if (retval) {
142 printk (" unable to get IRQ %d.\n", dev->irq);
143 goto out2;
144 }
145
146 phys_mem = shmem_map[inb(ioaddr + NE3210_CFG2) & 0x07] * 0x1000;
147
148 /*
149 BEWARE!! Some dain-bramaged EISA SCUs will allow you to put
150 the card mem within the region covered by `normal' RAM !!!
151 */
152 if (phys_mem > 1024*1024) { /* phys addr > 1MB */
153 if (phys_mem < virt_to_phys(high_memory)) {
154 printk(KERN_CRIT "ne3210.c: Card RAM overlaps with normal memory!!!\n");
155 printk(KERN_CRIT "ne3210.c: Use EISA SCU to set card memory below 1MB,\n");
156 printk(KERN_CRIT "ne3210.c: or to an address above 0x%lx.\n", virt_to_phys(high_memory));
157 printk(KERN_CRIT "ne3210.c: Driver NOT installed.\n");
158 retval = -EINVAL;
159 goto out3;
160 }
161 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (!request_mem_region (phys_mem, NE3210_STOP_PG*0x100, DRV_NAME)) {
164 printk ("ne3210.c: Unable to request shared memory at physical address %#lx\n",
165 phys_mem);
166 goto out3;
167 }
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 printk("%dkB memory at physical address %#lx\n",
170 NE3210_STOP_PG/4, phys_mem);
171
172 ei_status.mem = ioremap(phys_mem, NE3210_STOP_PG*0x100);
173 if (!ei_status.mem) {
174 printk(KERN_ERR "ne3210.c: Unable to remap card memory !!\n");
175 printk(KERN_ERR "ne3210.c: Driver NOT installed.\n");
176 retval = -EAGAIN;
177 goto out4;
178 }
179 printk("ne3210.c: remapped %dkB card memory to virtual address %p\n",
180 NE3210_STOP_PG/4, ei_status.mem);
181 dev->mem_start = (unsigned long)ei_status.mem;
182 dev->mem_end = dev->mem_start + (NE3210_STOP_PG - NE3210_START_PG)*256;
183
184 /* The 8390 offset is zero for the NE3210 */
185 dev->base_addr = ioaddr;
186
187 ei_status.name = "NE3210";
188 ei_status.tx_start_page = NE3210_START_PG;
189 ei_status.rx_start_page = NE3210_START_PG + TX_PAGES;
190 ei_status.stop_page = NE3210_STOP_PG;
191 ei_status.word16 = 1;
192 ei_status.priv = phys_mem;
193
194 if (ei_debug > 0)
Adrian Bunk9d8cc1b2005-09-03 14:04:55 -0700195 printk("ne3210 loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 ei_status.reset_8390 = &ne3210_reset_8390;
198 ei_status.block_input = &ne3210_block_input;
199 ei_status.block_output = &ne3210_block_output;
200 ei_status.get_8390_hdr = &ne3210_get_8390_hdr;
201
202 dev->open = &ne3210_open;
203 dev->stop = &ne3210_close;
204#ifdef CONFIG_NET_POLL_CONTROLLER
205 dev->poll_controller = ei_poll;
206#endif
207 dev->if_port = ifmap_val[port_index];
208
209 if ((retval = register_netdev (dev)))
210 goto out5;
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 NS8390_init(dev, 0);
213 return 0;
214
215 out5:
216 iounmap(ei_status.mem);
217 out4:
218 release_mem_region (phys_mem, NE3210_STOP_PG*0x100);
219 out3:
220 free_irq (dev->irq, dev);
221 out2:
222 release_region (ioaddr + NE3210_CFG1, NE3210_CFG_EXTENT);
223 out1:
224 release_region (ioaddr, NE3210_IO_EXTENT);
225 out:
226 free_netdev (dev);
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return retval;
229}
230
231static int __devexit ne3210_eisa_remove (struct device *device)
232{
233 struct net_device *dev = device->driver_data;
234 unsigned long ioaddr = to_eisa_device (device)->base_addr;
235
236 unregister_netdev (dev);
237 iounmap(ei_status.mem);
238 release_mem_region (ei_status.priv, NE3210_STOP_PG*0x100);
239 free_irq (dev->irq, dev);
240 release_region (ioaddr + NE3210_CFG1, NE3210_CFG_EXTENT);
241 release_region (ioaddr, NE3210_IO_EXTENT);
242 free_netdev (dev);
243
244 return 0;
245}
246
247/*
248 * Reset by toggling the "Board Enable" bits (bit 2 and 0).
249 */
250
251static void ne3210_reset_8390(struct net_device *dev)
252{
253 unsigned short ioaddr = dev->base_addr;
254
255 outb(0x04, ioaddr + NE3210_RESET_PORT);
256 if (ei_debug > 1) printk("%s: resetting the NE3210...", dev->name);
257
258 mdelay(2);
259
260 ei_status.txing = 0;
261 outb(0x01, ioaddr + NE3210_RESET_PORT);
262 if (ei_debug > 1) printk("reset done\n");
263
264 return;
265}
266
267/*
268 * Note: In the following three functions is the implicit assumption
269 * that the associated memcpy will only use "rep; movsl" as long as
270 * we keep the counts as some multiple of doublewords. This is a
271 * requirement of the hardware, and also prevents us from using
272 * eth_io_copy_and_sum() since we can't guarantee it will limit
273 * itself to doubleword access.
274 */
275
276/*
277 * Grab the 8390 specific header. Similar to the block_input routine, but
278 * we don't need to be concerned with ring wrap as the header will be at
279 * the start of a page, so we optimize accordingly. (A single doubleword.)
280 */
281
282static void
283ne3210_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
284{
285 void __iomem *hdr_start = ei_status.mem + ((ring_page - NE3210_START_PG)<<8);
286 memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
287 hdr->count = (hdr->count + 3) & ~3; /* Round up allocation. */
288}
289
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400290/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * Block input and output are easy on shared memory ethercards, the only
292 * complication is when the ring buffer wraps. The count will already
293 * be rounded up to a doubleword value via ne3210_get_8390_hdr() above.
294 */
295
296static void ne3210_block_input(struct net_device *dev, int count, struct sk_buff *skb,
297 int ring_offset)
298{
299 void __iomem *start = ei_status.mem + ring_offset - NE3210_START_PG*256;
300
301 if (ring_offset + count > NE3210_STOP_PG*256) {
302 /* Packet wraps over end of ring buffer. */
303 int semi_count = NE3210_STOP_PG*256 - ring_offset;
304 memcpy_fromio(skb->data, start, semi_count);
305 count -= semi_count;
306 memcpy_fromio(skb->data + semi_count,
307 ei_status.mem + TX_PAGES*256, count);
308 } else {
309 /* Packet is in one chunk. */
310 memcpy_fromio(skb->data, start, count);
311 }
312}
313
314static void ne3210_block_output(struct net_device *dev, int count,
315 const unsigned char *buf, int start_page)
316{
317 void __iomem *shmem = ei_status.mem + ((start_page - NE3210_START_PG)<<8);
318
319 count = (count + 3) & ~3; /* Round up to doubleword */
320 memcpy_toio(shmem, buf, count);
321}
322
323static int ne3210_open(struct net_device *dev)
324{
325 ei_open(dev);
326 return 0;
327}
328
329static int ne3210_close(struct net_device *dev)
330{
331
332 if (ei_debug > 1)
333 printk("%s: Shutting down ethercard.\n", dev->name);
334
335 ei_close(dev);
336 return 0;
337}
338
339static struct eisa_device_id ne3210_ids[] = {
340 { "EGL0101" },
341 { "NVL1801" },
342 { "" },
343};
Michael Tokarev07563c72006-09-27 01:50:56 -0700344MODULE_DEVICE_TABLE(eisa, ne3210_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346static struct eisa_driver ne3210_eisa_driver = {
347 .id_table = ne3210_ids,
348 .driver = {
349 .name = "ne3210",
350 .probe = ne3210_eisa_probe,
351 .remove = __devexit_p (ne3210_eisa_remove),
352 },
353};
354
355MODULE_DESCRIPTION("NE3210 EISA Ethernet driver");
356MODULE_LICENSE("GPL");
357MODULE_DEVICE_TABLE(eisa, ne3210_ids);
358
Adrian Bunk9d8cc1b2005-09-03 14:04:55 -0700359static int ne3210_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 return eisa_driver_register (&ne3210_eisa_driver);
362}
363
Adrian Bunk9d8cc1b2005-09-03 14:04:55 -0700364static void ne3210_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 eisa_driver_unregister (&ne3210_eisa_driver);
367}
368
369module_init (ne3210_init);
370module_exit (ne3210_cleanup);