Remove all #inclusions of asm/system.h
[linux-2.6.git] / drivers / net / ethernet / 8390 / ne3210.c
bloba2f8b2b8e27cd429dcce71d8f30b1b5ba61c6818
1 /*
2 ne3210.c
4 Linux driver for Novell NE3210 EISA Network Adapter
6 Copyright (C) 1998, Paul Gortmaker.
8 This software may be used and distributed according to the terms
9 of the GNU General Public License, incorporated herein by reference.
11 Information and Code Sources:
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
17 The NE3210 is an EISA shared memory NS8390 implementation. Shared
18 memory address > 1MB should work with this driver.
20 Note that the .cfg file (3/11/93, v1.0) has AUI and BNC switched
21 around (or perhaps there are some defective/backwards cards ???)
23 This driver WILL NOT WORK FOR THE NE3200 - it is completely different
24 and does not use an 8390 at all.
26 Updated to EISA probing API 5/2003 by Marc Zyngier.
29 #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>
39 #include <linux/mm.h>
41 #include <asm/io.h>
43 #include "8390.h"
45 #define DRV_NAME "ne3210"
47 static void ne3210_reset_8390(struct net_device *dev);
49 static void ne3210_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
50 static void ne3210_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset);
51 static void ne3210_block_output(struct net_device *dev, int count, const unsigned char *buf, const int start_page);
53 #define NE3210_START_PG 0x00 /* First page of TX buffer */
54 #define NE3210_STOP_PG 0x80 /* Last page +1 of RX ring */
56 #define NE3210_IO_EXTENT 0x20
57 #define NE3210_SA_PROM 0x16 /* Start of e'net addr. */
58 #define NE3210_RESET_PORT 0xc84
59 #define NE3210_NIC_OFFSET 0x00 /* Hello, the 8390 is *here* */
61 #define NE3210_ADDR0 0x00 /* 3 byte vendor prefix */
62 #define NE3210_ADDR1 0x00
63 #define NE3210_ADDR2 0x1b
65 #define NE3210_CFG1 0xc84 /* NB: 0xc84 is also "reset" port. */
66 #define NE3210_CFG2 0xc90
67 #define NE3210_CFG_EXTENT (NE3210_CFG2 - NE3210_CFG1 + 1)
70 * You can OR any of the following bits together and assign it
71 * to NE3210_DEBUG to get verbose driver info during operation.
72 * Currently only the probe one is implemented.
75 #define NE3210_D_PROBE 0x01
76 #define NE3210_D_RX_PKT 0x02
77 #define NE3210_D_TX_PKT 0x04
78 #define NE3210_D_IRQ 0x08
80 #define NE3210_DEBUG 0x0
82 static unsigned char irq_map[] __initdata = {15, 12, 11, 10, 9, 7, 5, 3};
83 static unsigned int shmem_map[] __initdata = {0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0};
84 static const char *ifmap[] __initdata = {"UTP", "?", "BNC", "AUI"};
85 static int ifmap_val[] __initdata = {
86 IF_PORT_10BASET,
87 IF_PORT_UNKNOWN,
88 IF_PORT_10BASE2,
89 IF_PORT_AUI,
92 static int __init ne3210_eisa_probe (struct device *device)
94 unsigned long ioaddr, phys_mem;
95 int i, retval, port_index;
96 struct eisa_device *edev = to_eisa_device (device);
97 struct net_device *dev;
99 /* Allocate dev->priv and fill in 8390 specific dev fields. */
100 if (!(dev = alloc_ei_netdev ())) {
101 printk ("ne3210.c: unable to allocate memory for dev!\n");
102 return -ENOMEM;
105 SET_NETDEV_DEV(dev, device);
106 dev_set_drvdata(device, dev);
107 ioaddr = edev->base_addr;
109 if (!request_region(ioaddr, NE3210_IO_EXTENT, DRV_NAME)) {
110 retval = -EBUSY;
111 goto out;
114 if (!request_region(ioaddr + NE3210_CFG1,
115 NE3210_CFG_EXTENT, DRV_NAME)) {
116 retval = -EBUSY;
117 goto out1;
120 #if NE3210_DEBUG & NE3210_D_PROBE
121 printk("ne3210-debug: probe at %#x, ID %s\n", ioaddr, edev->id.sig);
122 printk("ne3210-debug: config regs: %#x %#x\n",
123 inb(ioaddr + NE3210_CFG1), inb(ioaddr + NE3210_CFG2));
124 #endif
126 port_index = inb(ioaddr + NE3210_CFG2) >> 6;
127 for (i = 0; i < ETH_ALEN; i++)
128 dev->dev_addr[i] = inb(ioaddr + NE3210_SA_PROM + i);
129 printk("ne3210.c: NE3210 in EISA slot %d, media: %s, addr: %pM.\n",
130 edev->slot, ifmap[port_index], dev->dev_addr);
132 /* Snarf the interrupt now. CFG file has them all listed as `edge' with share=NO */
133 dev->irq = irq_map[(inb(ioaddr + NE3210_CFG2) >> 3) & 0x07];
134 printk("ne3210.c: using IRQ %d, ", dev->irq);
136 retval = request_irq(dev->irq, ei_interrupt, 0, DRV_NAME, dev);
137 if (retval) {
138 printk (" unable to get IRQ %d.\n", dev->irq);
139 goto out2;
142 phys_mem = shmem_map[inb(ioaddr + NE3210_CFG2) & 0x07] * 0x1000;
145 BEWARE!! Some dain-bramaged EISA SCUs will allow you to put
146 the card mem within the region covered by `normal' RAM !!!
148 if (phys_mem > 1024*1024) { /* phys addr > 1MB */
149 if (phys_mem < virt_to_phys(high_memory)) {
150 printk(KERN_CRIT "ne3210.c: Card RAM overlaps with normal memory!!!\n");
151 printk(KERN_CRIT "ne3210.c: Use EISA SCU to set card memory below 1MB,\n");
152 printk(KERN_CRIT "ne3210.c: or to an address above 0x%llx.\n",
153 (u64)virt_to_phys(high_memory));
154 printk(KERN_CRIT "ne3210.c: Driver NOT installed.\n");
155 retval = -EINVAL;
156 goto out3;
160 if (!request_mem_region (phys_mem, NE3210_STOP_PG*0x100, DRV_NAME)) {
161 printk ("ne3210.c: Unable to request shared memory at physical address %#lx\n",
162 phys_mem);
163 goto out3;
166 printk("%dkB memory at physical address %#lx\n",
167 NE3210_STOP_PG/4, phys_mem);
169 ei_status.mem = ioremap(phys_mem, NE3210_STOP_PG*0x100);
170 if (!ei_status.mem) {
171 printk(KERN_ERR "ne3210.c: Unable to remap card memory !!\n");
172 printk(KERN_ERR "ne3210.c: Driver NOT installed.\n");
173 retval = -EAGAIN;
174 goto out4;
176 printk("ne3210.c: remapped %dkB card memory to virtual address %p\n",
177 NE3210_STOP_PG/4, ei_status.mem);
178 dev->mem_start = (unsigned long)ei_status.mem;
179 dev->mem_end = dev->mem_start + (NE3210_STOP_PG - NE3210_START_PG)*256;
181 /* The 8390 offset is zero for the NE3210 */
182 dev->base_addr = ioaddr;
184 ei_status.name = "NE3210";
185 ei_status.tx_start_page = NE3210_START_PG;
186 ei_status.rx_start_page = NE3210_START_PG + TX_PAGES;
187 ei_status.stop_page = NE3210_STOP_PG;
188 ei_status.word16 = 1;
189 ei_status.priv = phys_mem;
191 if (ei_debug > 0)
192 printk("ne3210 loaded.\n");
194 ei_status.reset_8390 = &ne3210_reset_8390;
195 ei_status.block_input = &ne3210_block_input;
196 ei_status.block_output = &ne3210_block_output;
197 ei_status.get_8390_hdr = &ne3210_get_8390_hdr;
199 dev->netdev_ops = &ei_netdev_ops;
201 dev->if_port = ifmap_val[port_index];
203 if ((retval = register_netdev (dev)))
204 goto out5;
206 NS8390_init(dev, 0);
207 return 0;
209 out5:
210 iounmap(ei_status.mem);
211 out4:
212 release_mem_region (phys_mem, NE3210_STOP_PG*0x100);
213 out3:
214 free_irq (dev->irq, dev);
215 out2:
216 release_region (ioaddr + NE3210_CFG1, NE3210_CFG_EXTENT);
217 out1:
218 release_region (ioaddr, NE3210_IO_EXTENT);
219 out:
220 free_netdev (dev);
222 return retval;
225 static int __devexit ne3210_eisa_remove (struct device *device)
227 struct net_device *dev = dev_get_drvdata(device);
228 unsigned long ioaddr = to_eisa_device (device)->base_addr;
230 unregister_netdev (dev);
231 iounmap(ei_status.mem);
232 release_mem_region (ei_status.priv, NE3210_STOP_PG*0x100);
233 free_irq (dev->irq, dev);
234 release_region (ioaddr + NE3210_CFG1, NE3210_CFG_EXTENT);
235 release_region (ioaddr, NE3210_IO_EXTENT);
236 free_netdev (dev);
238 return 0;
242 * Reset by toggling the "Board Enable" bits (bit 2 and 0).
245 static void ne3210_reset_8390(struct net_device *dev)
247 unsigned short ioaddr = dev->base_addr;
249 outb(0x04, ioaddr + NE3210_RESET_PORT);
250 if (ei_debug > 1) printk("%s: resetting the NE3210...", dev->name);
252 mdelay(2);
254 ei_status.txing = 0;
255 outb(0x01, ioaddr + NE3210_RESET_PORT);
256 if (ei_debug > 1) printk("reset done\n");
260 * Note: In the following three functions is the implicit assumption
261 * that the associated memcpy will only use "rep; movsl" as long as
262 * we keep the counts as some multiple of doublewords. This is a
263 * requirement of the hardware, and also prevents us from using
264 * eth_io_copy_and_sum() since we can't guarantee it will limit
265 * itself to doubleword access.
269 * Grab the 8390 specific header. Similar to the block_input routine, but
270 * we don't need to be concerned with ring wrap as the header will be at
271 * the start of a page, so we optimize accordingly. (A single doubleword.)
274 static void
275 ne3210_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
277 void __iomem *hdr_start = ei_status.mem + ((ring_page - NE3210_START_PG)<<8);
278 memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
279 hdr->count = (hdr->count + 3) & ~3; /* Round up allocation. */
283 * Block input and output are easy on shared memory ethercards, the only
284 * complication is when the ring buffer wraps. The count will already
285 * be rounded up to a doubleword value via ne3210_get_8390_hdr() above.
288 static void ne3210_block_input(struct net_device *dev, int count, struct sk_buff *skb,
289 int ring_offset)
291 void __iomem *start = ei_status.mem + ring_offset - NE3210_START_PG*256;
293 if (ring_offset + count > NE3210_STOP_PG*256) {
294 /* Packet wraps over end of ring buffer. */
295 int semi_count = NE3210_STOP_PG*256 - ring_offset;
296 memcpy_fromio(skb->data, start, semi_count);
297 count -= semi_count;
298 memcpy_fromio(skb->data + semi_count,
299 ei_status.mem + TX_PAGES*256, count);
300 } else {
301 /* Packet is in one chunk. */
302 memcpy_fromio(skb->data, start, count);
306 static void ne3210_block_output(struct net_device *dev, int count,
307 const unsigned char *buf, int start_page)
309 void __iomem *shmem = ei_status.mem + ((start_page - NE3210_START_PG)<<8);
311 count = (count + 3) & ~3; /* Round up to doubleword */
312 memcpy_toio(shmem, buf, count);
315 static struct eisa_device_id ne3210_ids[] = {
316 { "EGL0101" },
317 { "NVL1801" },
318 { "" },
320 MODULE_DEVICE_TABLE(eisa, ne3210_ids);
322 static struct eisa_driver ne3210_eisa_driver = {
323 .id_table = ne3210_ids,
324 .driver = {
325 .name = "ne3210",
326 .probe = ne3210_eisa_probe,
327 .remove = __devexit_p (ne3210_eisa_remove),
331 MODULE_DESCRIPTION("NE3210 EISA Ethernet driver");
332 MODULE_LICENSE("GPL");
333 MODULE_DEVICE_TABLE(eisa, ne3210_ids);
335 static int ne3210_init(void)
337 return eisa_driver_register (&ne3210_eisa_driver);
340 static void ne3210_cleanup(void)
342 eisa_driver_unregister (&ne3210_eisa_driver);
345 module_init (ne3210_init);
346 module_exit (ne3210_cleanup);