blob: a8bcc00c3302bcb0a1b35cf9eba82a92dafb75a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net-3-driver for the NI5210 card (i82586 Ethernet chip)
3 *
4 * This is an extension to the Linux operating system, and is covered by the
5 * same GNU General Public License that covers that work.
6 *
7 * Alphacode 0.82 (96/09/29) for Linux 2.0.0 (or later)
8 * Copyrights (c) 1994,1995,1996 by M.Hipp (hippm@informatik.uni-tuebingen.de)
9 * [feel free to mail ....]
10 *
11 * when using as module: (no autoprobing!)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * run with e.g:
13 * insmod ni52.o io=0x360 irq=9 memstart=0xd0000 memend=0xd4000
14 *
15 * CAN YOU PLEASE REPORT ME YOUR PERFORMANCE EXPERIENCES !!.
16 *
17 * If you find a bug, please report me:
18 * The kernel panic output and any kmsg from the ni52 driver
19 * the ni5210-driver-version and the linux-kernel version
20 * how many shared memory (memsize) on the netcard,
21 * bootprom: yes/no, base_addr, mem_start
22 * maybe the ni5210-card revision and the i82586 version
23 *
24 * autoprobe for: base_addr: 0x300,0x280,0x360,0x320,0x340
25 * mem_start: 0xd0000,0xd2000,0xc8000,0xca000,0xd4000,0xd6000,
26 * 0xd8000,0xcc000,0xce000,0xda000,0xdc000
27 *
28 * sources:
29 * skeleton.c from Donald Becker
30 *
31 * I have also done a look in the following sources: (mail me if you need them)
32 * crynwr-packet-driver by Russ Nelson
33 * Garret A. Wollman's (fourth) i82586-driver for BSD
Alan Coxa197f692008-02-08 15:27:38 +000034 * (before getting an i82596 (yes 596 not 586) manual, the existing drivers
35 * helped me a lot to understand this tricky chip.)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 *
37 * Known Problems:
38 * The internal sysbus seems to be slow. So we often lose packets because of
39 * overruns while receiving from a fast remote host.
Alan Coxa197f692008-02-08 15:27:38 +000040 * This can slow down TCP connections. Maybe the newer ni5210 cards are
41 * better. My experience is, that if a machine sends with more than about
42 * 500-600K/s the fifo/sysbus overflows.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 *
44 * IMPORTANT NOTE:
45 * On fast networks, it's a (very) good idea to have 16K shared memory. With
Alan Coxa197f692008-02-08 15:27:38 +000046 * 8K, we can store only 4 receive frames, so it can (easily) happen that a
47 * remote machine 'overruns' our system.
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 *
49 * Known i82586/card problems (I'm sure, there are many more!):
50 * Running the NOP-mode, the i82586 sometimes seems to forget to report
51 * every xmit-interrupt until we restart the CU.
52 * Another MAJOR bug is, that the RU sometimes seems to ignore the EL-Bit
53 * in the RBD-Struct which indicates an end of the RBD queue.
54 * Instead, the RU fetches another (randomly selected and
55 * usually used) RBD and begins to fill it. (Maybe, this happens only if
56 * the last buffer from the previous RFD fits exact into the queue and
57 * the next RFD can't fetch an initial RBD. Anyone knows more? )
58 *
59 * results from ftp performance tests with Linux 1.2.5
60 * send and receive about 350-400 KByte/s (peak up to 460 kbytes/s)
Alan Coxa197f692008-02-08 15:27:38 +000061 * sending in NOP-mode: peak performance up to 530K/s (but better don't
62 * run this mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
64
65/*
66 * 29.Sept.96: virt_to_bus changes for new memory scheme
67 * 19.Feb.96: more Mcast changes, module support (MH)
68 *
69 * 18.Nov.95: Mcast changes (AC).
70 *
71 * 23.April.95: fixed(?) receiving problems by configuring a RFD more
72 * than the number of RBD's. Can maybe cause other problems.
73 * 18.April.95: Added MODULE support (MH)
74 * 17.April.95: MC related changes in init586() and set_multicast_list().
75 * removed use of 'jiffies' in init586() (MH)
76 *
77 * 19.Sep.94: Added Multicast support (not tested yet) (MH)
78 *
79 * 18.Sep.94: Workaround for 'EL-Bug'. Removed flexible RBD-handling.
80 * Now, every RFD has exact one RBD. (MH)
81 *
82 * 14.Sep.94: added promiscuous mode, a few cleanups (MH)
83 *
84 * 19.Aug.94: changed request_irq() parameter (MH)
85 *
86 * 20.July.94: removed cleanup bugs, removed a 16K-mem-probe-bug (MH)
87 *
88 * 19.July.94: lotsa cleanups .. (MH)
89 *
90 * 17.July.94: some patches ... verified to run with 1.1.29 (MH)
91 *
92 * 4.July.94: patches for Linux 1.1.24 (MH)
93 *
94 * 26.March.94: patches for Linux 1.0 and iomem-auto-probe (MH)
95 *
Alan Coxa197f692008-02-08 15:27:38 +000096 * 30.Sep.93: Added nop-chain .. driver now runs with only one Xmit-Buff,
97 * too (MH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 *
99 * < 30.Sep.93: first versions
100 */
101
102static int debuglevel; /* debug-printk 0: off 1: a few 2: more */
103static int automatic_resume; /* experimental .. better should be zero */
104static int rfdadd; /* rfdadd=1 may be better for 8K MEM cards */
Alan Coxa197f692008-02-08 15:27:38 +0000105static int fifo = 0x8; /* don't change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#include <linux/module.h>
108#include <linux/kernel.h>
109#include <linux/string.h>
110#include <linux/errno.h>
111#include <linux/ioport.h>
112#include <linux/slab.h>
113#include <linux/interrupt.h>
114#include <linux/delay.h>
115#include <linux/init.h>
116#include <linux/bitops.h>
117#include <asm/io.h>
118
119#include <linux/netdevice.h>
120#include <linux/etherdevice.h>
121#include <linux/skbuff.h>
122
123#include "ni52.h"
124
125#define DRV_NAME "ni52"
126
127#define DEBUG /* debug on */
128#define SYSBUSVAL 1 /* 8 Bit */
129
Alan Coxa197f692008-02-08 15:27:38 +0000130#define ni_attn586() { outb(0, dev->base_addr + NI52_ATTENTION); }
131#define ni_reset586() { outb(0, dev->base_addr + NI52_RESET); }
132#define ni_disint() { outb(0, dev->base_addr + NI52_INTDIS); }
133#define ni_enaint() { outb(0, dev->base_addr + NI52_INTENA); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Al Viro05bd8312008-03-19 09:44:39 +0000135#define make32(ptr16) ((void __iomem *)(p->memtop + (short) (ptr16)))
Al Viroe06ee2b2008-03-19 09:43:59 +0000136#define make24(ptr32) ((char __iomem *)(ptr32)) - p->base
137#define make16(ptr32) ((unsigned short) ((char __iomem *)(ptr32)\
138 - p->memtop))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/******************* how to calculate the buffers *****************************
141
142 * IMPORTANT NOTE: if you configure only one NUM_XMIT_BUFFS, the driver works
143 * --------------- in a different (more stable?) mode. Only in this mode it's
144 * possible to configure the driver with 'NO_NOPCOMMANDS'
145
146sizeof(scp)=12; sizeof(scb)=16; sizeof(iscp)=8;
147sizeof(scp)+sizeof(iscp)+sizeof(scb) = 36 = INIT
148sizeof(rfd) = 24; sizeof(rbd) = 12;
149sizeof(tbd) = 8; sizeof(transmit_cmd) = 16;
150sizeof(nop_cmd) = 8;
151
152 * if you don't know the driver, better do not change these values: */
153
154#define RECV_BUFF_SIZE 1524 /* slightly oversized */
155#define XMIT_BUFF_SIZE 1524 /* slightly oversized */
156#define NUM_XMIT_BUFFS 1 /* config for both, 8K and 16K shmem */
157#define NUM_RECV_BUFFS_8 4 /* config for 8K shared mem */
158#define NUM_RECV_BUFFS_16 9 /* config for 16K shared mem */
159#define NO_NOPCOMMANDS /* only possible with NUM_XMIT_BUFFS=1 */
160
161/**************************************************************************/
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164#define NI52_TOTAL_SIZE 16
165#define NI52_ADDR0 0x02
166#define NI52_ADDR1 0x07
167#define NI52_ADDR2 0x01
168
Alan Coxa197f692008-02-08 15:27:38 +0000169static int ni52_probe1(struct net_device *dev, int ioaddr);
170static irqreturn_t ni52_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static int ni52_open(struct net_device *dev);
172static int ni52_close(struct net_device *dev);
Alan Coxa197f692008-02-08 15:27:38 +0000173static int ni52_send_packet(struct sk_buff *, struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static struct net_device_stats *ni52_get_stats(struct net_device *dev);
175static void set_multicast_list(struct net_device *dev);
176static void ni52_timeout(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/* helper-functions */
179static int init586(struct net_device *dev);
Al Virode597142008-03-19 09:43:49 +0000180static int check586(struct net_device *dev, unsigned size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static void alloc586(struct net_device *dev);
182static void startrecv586(struct net_device *dev);
Al Viro2d76c262008-03-19 09:43:29 +0000183static void __iomem *alloc_rfa(struct net_device *dev, void __iomem *ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static void ni52_rcv_int(struct net_device *dev);
185static void ni52_xmt_int(struct net_device *dev);
186static void ni52_rnr_int(struct net_device *dev);
187
Alan Coxa197f692008-02-08 15:27:38 +0000188struct priv {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct net_device_stats stats;
Al Viroe06ee2b2008-03-19 09:43:59 +0000190 char __iomem *base;
191 char __iomem *mapped;
Al Viro2d76c262008-03-19 09:43:29 +0000192 char __iomem *memtop;
Alan Coxa197f692008-02-08 15:27:38 +0000193 spinlock_t spinlock;
194 int reset;
Al Viro2d76c262008-03-19 09:43:29 +0000195 struct rfd_struct __iomem *rfd_last, *rfd_top, *rfd_first;
196 struct scp_struct __iomem *scp;
197 struct iscp_struct __iomem *iscp;
198 struct scb_struct __iomem *scb;
199 struct tbd_struct __iomem *xmit_buffs[NUM_XMIT_BUFFS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#if (NUM_XMIT_BUFFS == 1)
Al Viro2d76c262008-03-19 09:43:29 +0000201 struct transmit_cmd_struct __iomem *xmit_cmds[2];
202 struct nop_cmd_struct __iomem *nop_cmds[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#else
Al Viro2d76c262008-03-19 09:43:29 +0000204 struct transmit_cmd_struct __iomem *xmit_cmds[NUM_XMIT_BUFFS];
205 struct nop_cmd_struct __iomem *nop_cmds[NUM_XMIT_BUFFS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
Alan Coxa197f692008-02-08 15:27:38 +0000207 int nop_point, num_recv_buffs;
Al Viro2d76c262008-03-19 09:43:29 +0000208 char __iomem *xmit_cbuffs[NUM_XMIT_BUFFS];
Alan Coxa197f692008-02-08 15:27:38 +0000209 int xmit_count, xmit_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Alan Coxa197f692008-02-08 15:27:38 +0000212/* wait for command with timeout: */
213static void wait_for_scb_cmd(struct net_device *dev)
214{
Wang Chen4cf16532008-11-12 23:38:14 -0800215 struct priv *p = netdev_priv(dev);
Alan Coxa197f692008-02-08 15:27:38 +0000216 int i;
217 for (i = 0; i < 16384; i++) {
218 if (readb(&p->scb->cmd_cuc) == 0)
219 break;
220 udelay(4);
221 if (i == 16383) {
222 printk(KERN_ERR "%s: scb_cmd timed out: %04x,%04x .. disabling i82586!!\n",
223 dev->name, readb(&p->scb->cmd_cuc), readb(&p->scb->cus));
224 if (!p->reset) {
225 p->reset = 1;
226 ni_reset586();
227 }
228 }
229 }
230}
231
232static void wait_for_scb_cmd_ruc(struct net_device *dev)
233{
Wang Chen4cf16532008-11-12 23:38:14 -0800234 struct priv *p = netdev_priv(dev);
Alan Coxa197f692008-02-08 15:27:38 +0000235 int i;
236 for (i = 0; i < 16384; i++) {
237 if (readb(&p->scb->cmd_ruc) == 0)
238 break;
239 udelay(4);
240 if (i == 16383) {
241 printk(KERN_ERR "%s: scb_cmd (ruc) timed out: %04x,%04x .. disabling i82586!!\n",
Al Viro05bd8312008-03-19 09:44:39 +0000242 dev->name, readb(&p->scb->cmd_ruc),
243 readb(&p->scb->rus));
Alan Coxa197f692008-02-08 15:27:38 +0000244 if (!p->reset) {
245 p->reset = 1;
246 ni_reset586();
247 }
248 }
249 }
250}
251
Al Viro2d76c262008-03-19 09:43:29 +0000252static void wait_for_stat_compl(void __iomem *p)
Alan Coxa197f692008-02-08 15:27:38 +0000253{
Al Viro2d76c262008-03-19 09:43:29 +0000254 struct nop_cmd_struct __iomem *addr = p;
Alan Coxa197f692008-02-08 15:27:38 +0000255 int i;
256 for (i = 0; i < 32767; i++) {
257 if (readw(&((addr)->cmd_status)) & STAT_COMPL)
258 break;
259 udelay(32);
260 }
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/**********************************************
264 * close device
265 */
266static int ni52_close(struct net_device *dev)
267{
268 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 ni_reset586(); /* the hard way to stop the receiver */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return 0;
272}
273
274/**********************************************
275 * open device
276 */
277static int ni52_open(struct net_device *dev)
278{
279 int ret;
280
281 ni_disint();
282 alloc586(dev);
283 init586(dev);
284 startrecv586(dev);
285 ni_enaint();
286
Alan Coxa197f692008-02-08 15:27:38 +0000287 ret = request_irq(dev->irq, &ni52_interrupt, 0, dev->name, dev);
288 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 ni_reset586();
290 return ret;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 netif_start_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return 0; /* most done by init */
294}
295
Al Viro76af5692008-03-19 09:44:19 +0000296static int check_iscp(struct net_device *dev, void __iomem *addr)
297{
298 struct iscp_struct __iomem *iscp = addr;
Wang Chen4cf16532008-11-12 23:38:14 -0800299 struct priv *p = netdev_priv(dev);
Al Viro76af5692008-03-19 09:44:19 +0000300 memset_io(iscp, 0, sizeof(struct iscp_struct));
301
302 writel(make24(iscp), &p->scp->iscp);
303 writeb(1, &iscp->busy);
304
305 ni_reset586();
306 ni_attn586();
307 mdelay(32); /* wait a while... */
308 /* i82586 clears 'busy' after successful init */
309 if (readb(&iscp->busy))
310 return 0;
311 return 1;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/**********************************************
315 * Check to see if there's an 82586 out there.
316 */
Al Virode597142008-03-19 09:43:49 +0000317static int check586(struct net_device *dev, unsigned size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Wang Chen4cf16532008-11-12 23:38:14 -0800319 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int i;
321
Al Viro176f65f2008-03-19 09:44:29 +0000322 p->mapped = ioremap(dev->mem_start, size);
323 if (!p->mapped)
324 return 0;
325
Al Viroe06ee2b2008-03-19 09:43:59 +0000326 p->base = p->mapped + size - 0x01000000;
327 p->memtop = p->mapped + size;
Al Viro2d76c262008-03-19 09:43:29 +0000328 p->scp = (struct scp_struct __iomem *)(p->base + SCP_DEFAULT_ADDRESS);
Al Viro7f8cfd52008-03-19 09:44:09 +0000329 p->scb = (struct scb_struct __iomem *) p->mapped;
Al Viro76af5692008-03-19 09:44:19 +0000330 p->iscp = (struct iscp_struct __iomem *)p->scp - 1;
Al Viro2d76c262008-03-19 09:43:29 +0000331 memset_io(p->scp, 0, sizeof(struct scp_struct));
Alan Coxa197f692008-02-08 15:27:38 +0000332 for (i = 0; i < sizeof(struct scp_struct); i++)
333 /* memory was writeable? */
Al Viro2d76c262008-03-19 09:43:29 +0000334 if (readb((char __iomem *)p->scp + i))
Al Viro176f65f2008-03-19 09:44:29 +0000335 goto Enodev;
Alan Coxa197f692008-02-08 15:27:38 +0000336 writeb(SYSBUSVAL, &p->scp->sysbus); /* 1 = 8Bit-Bus, 0 = 16 Bit */
337 if (readb(&p->scp->sysbus) != SYSBUSVAL)
Al Viro176f65f2008-03-19 09:44:29 +0000338 goto Enodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Al Viro76af5692008-03-19 09:44:19 +0000340 if (!check_iscp(dev, p->mapped))
Al Viro176f65f2008-03-19 09:44:29 +0000341 goto Enodev;
Al Viro76af5692008-03-19 09:44:19 +0000342 if (!check_iscp(dev, p->iscp))
Al Viro176f65f2008-03-19 09:44:29 +0000343 goto Enodev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 1;
Al Viro176f65f2008-03-19 09:44:29 +0000345Enodev:
346 iounmap(p->mapped);
347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/******************************************************************
351 * set iscp at the right place, called by ni52_probe1 and open586.
352 */
353static void alloc586(struct net_device *dev)
354{
Wang Chen4cf16532008-11-12 23:38:14 -0800355 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 ni_reset586();
Alan Coxa197f692008-02-08 15:27:38 +0000358 mdelay(32);
359
Alan Coxa197f692008-02-08 15:27:38 +0000360 memset_io(p->iscp, 0, sizeof(struct iscp_struct));
361 memset_io(p->scp , 0, sizeof(struct scp_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Alan Coxa197f692008-02-08 15:27:38 +0000363 writel(make24(p->iscp), &p->scp->iscp);
364 writeb(SYSBUSVAL, &p->scp->sysbus);
365 writew(make16(p->scb), &p->iscp->scb_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Alan Coxa197f692008-02-08 15:27:38 +0000367 writeb(1, &p->iscp->busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ni_reset586();
369 ni_attn586();
370
Alan Coxa197f692008-02-08 15:27:38 +0000371 mdelay(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alan Coxa197f692008-02-08 15:27:38 +0000373 if (readb(&p->iscp->busy))
374 printk(KERN_ERR "%s: Init-Problems (alloc).\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Alan Coxa197f692008-02-08 15:27:38 +0000376 p->reset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Al Viro2d76c262008-03-19 09:43:29 +0000378 memset_io(p->scb, 0, sizeof(struct scb_struct));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381/* set: io,irq,memstart,memend or set it when calling insmod */
Alan Coxa197f692008-02-08 15:27:38 +0000382static int irq = 9;
383static int io = 0x300;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static long memstart; /* e.g 0xd0000 */
385static long memend; /* e.g 0xd4000 */
386
387/**********************************************
388 * probe the ni5210-card
389 */
390struct net_device * __init ni52_probe(int unit)
391{
392 struct net_device *dev = alloc_etherdev(sizeof(struct priv));
393 static int ports[] = {0x300, 0x280, 0x360 , 0x320 , 0x340, 0};
Al Viro176f65f2008-03-19 09:44:29 +0000394 struct priv *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int *port;
396 int err = 0;
397
398 if (!dev)
399 return ERR_PTR(-ENOMEM);
400
Wang Chen4cf16532008-11-12 23:38:14 -0800401 p = netdev_priv(dev);
Al Viro176f65f2008-03-19 09:44:29 +0000402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (unit >= 0) {
404 sprintf(dev->name, "eth%d", unit);
405 netdev_boot_setup_check(dev);
406 io = dev->base_addr;
407 irq = dev->irq;
408 memstart = dev->mem_start;
409 memend = dev->mem_end;
410 }
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (io > 0x1ff) { /* Check a single specified location. */
413 err = ni52_probe1(dev, io);
414 } else if (io > 0) { /* Don't probe at all. */
415 err = -ENXIO;
416 } else {
417 for (port = ports; *port && ni52_probe1(dev, *port) ; port++)
418 ;
419 if (*port)
420 goto got_it;
421#ifdef FULL_IO_PROBE
422 for (io = 0x200; io < 0x400 && ni52_probe1(dev, io); io += 8)
423 ;
424 if (io < 0x400)
425 goto got_it;
426#endif
427 err = -ENODEV;
428 }
429 if (err)
430 goto out;
431got_it:
432 err = register_netdev(dev);
433 if (err)
434 goto out1;
435 return dev;
436out1:
Al Viro176f65f2008-03-19 09:44:29 +0000437 iounmap(p->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 release_region(dev->base_addr, NI52_TOTAL_SIZE);
439out:
440 free_netdev(dev);
441 return ERR_PTR(err);
442}
443
Alan Coxa197f692008-02-08 15:27:38 +0000444static int __init ni52_probe1(struct net_device *dev, int ioaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int i, size, retval;
Wang Chen4cf16532008-11-12 23:38:14 -0800447 struct priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 dev->base_addr = ioaddr;
450 dev->irq = irq;
451 dev->mem_start = memstart;
452 dev->mem_end = memend;
453
Al Viro7f8cfd52008-03-19 09:44:09 +0000454 spin_lock_init(&priv->spinlock);
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (!request_region(ioaddr, NI52_TOTAL_SIZE, DRV_NAME))
457 return -EBUSY;
458
Alan Coxa197f692008-02-08 15:27:38 +0000459 if (!(inb(ioaddr+NI52_MAGIC1) == NI52_MAGICVAL1) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 !(inb(ioaddr+NI52_MAGIC2) == NI52_MAGICVAL2)) {
461 retval = -ENODEV;
462 goto out;
463 }
464
Alan Coxa197f692008-02-08 15:27:38 +0000465 for (i = 0; i < ETH_ALEN; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 dev->dev_addr[i] = inb(dev->base_addr+i);
467
Alan Coxa197f692008-02-08 15:27:38 +0000468 if (dev->dev_addr[0] != NI52_ADDR0 || dev->dev_addr[1] != NI52_ADDR1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 || dev->dev_addr[2] != NI52_ADDR2) {
470 retval = -ENODEV;
471 goto out;
472 }
473
Alan Coxa197f692008-02-08 15:27:38 +0000474 printk(KERN_INFO "%s: NI5210 found at %#3lx, ",
475 dev->name, dev->base_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 /*
478 * check (or search) IO-Memory, 8K and 16K
479 */
480#ifdef MODULE
481 size = dev->mem_end - dev->mem_start;
Alan Coxa197f692008-02-08 15:27:38 +0000482 if (size != 0x2000 && size != 0x4000) {
483 printk("\n");
484 printk(KERN_ERR "%s: Invalid memory size %d. Allowed is 0x2000 or 0x4000 bytes.\n", dev->name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 retval = -ENODEV;
486 goto out;
487 }
Al Virode597142008-03-19 09:43:49 +0000488 if (!check586(dev, size)) {
Alan Coxa197f692008-02-08 15:27:38 +0000489 printk(KERN_ERR "?memcheck, Can't find memory at 0x%lx with size %d!\n", dev->mem_start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 retval = -ENODEV;
491 goto out;
492 }
493#else
Alan Coxa197f692008-02-08 15:27:38 +0000494 if (dev->mem_start != 0) {
495 /* no auto-mem-probe */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 size = 0x4000; /* check for 16K mem */
Al Virode597142008-03-19 09:43:49 +0000497 if (!check586(dev, size)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 size = 0x2000; /* check for 8K mem */
Al Virode597142008-03-19 09:43:49 +0000499 if (!check586(dev, size)) {
Alan Coxa197f692008-02-08 15:27:38 +0000500 printk(KERN_ERR "?memprobe, Can't find memory at 0x%lx!\n", dev->mem_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 retval = -ENODEV;
502 goto out;
503 }
504 }
Alan Coxa197f692008-02-08 15:27:38 +0000505 } else {
506 static const unsigned long memaddrs[] = {
507 0xc8000, 0xca000, 0xcc000, 0xce000, 0xd0000, 0xd2000,
508 0xd4000, 0xd6000, 0xd8000, 0xda000, 0xdc000, 0
509 };
510 for (i = 0;; i++) {
511 if (!memaddrs[i]) {
512 printk(KERN_ERR "?memprobe, Can't find io-memory!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 retval = -ENODEV;
514 goto out;
515 }
516 dev->mem_start = memaddrs[i];
517 size = 0x2000; /* check for 8K mem */
Al Virode597142008-03-19 09:43:49 +0000518 if (check586(dev, size))
Alan Coxa197f692008-02-08 15:27:38 +0000519 /* 8K-check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521 size = 0x4000; /* check for 16K mem */
Al Virode597142008-03-19 09:43:49 +0000522 if (check586(dev, size))
Alan Coxa197f692008-02-08 15:27:38 +0000523 /* 16K-check */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
525 }
526 }
Alan Coxa197f692008-02-08 15:27:38 +0000527 /* set mem_end showed by 'ifconfig' */
528 dev->mem_end = dev->mem_start + size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#endif
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 alloc586(dev);
532
533 /* set number of receive-buffs according to memsize */
Alan Coxa197f692008-02-08 15:27:38 +0000534 if (size == 0x2000)
Al Viroe06ee2b2008-03-19 09:43:59 +0000535 priv->num_recv_buffs = NUM_RECV_BUFFS_8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 else
Al Viroe06ee2b2008-03-19 09:43:59 +0000537 priv->num_recv_buffs = NUM_RECV_BUFFS_16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Alan Coxa197f692008-02-08 15:27:38 +0000539 printk(KERN_DEBUG "Memaddr: 0x%lx, Memsize: %d, ",
540 dev->mem_start, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Alan Coxa197f692008-02-08 15:27:38 +0000542 if (dev->irq < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 unsigned long irq_mask;
544
545 irq_mask = probe_irq_on();
546 ni_reset586();
547 ni_attn586();
548
549 mdelay(20);
550 dev->irq = probe_irq_off(irq_mask);
Alan Coxa197f692008-02-08 15:27:38 +0000551 if (!dev->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 printk("?autoirq, Failed to detect IRQ line!\n");
553 retval = -EAGAIN;
Al Viro176f65f2008-03-19 09:44:29 +0000554 iounmap(priv->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto out;
556 }
Alan Coxa197f692008-02-08 15:27:38 +0000557 printk("IRQ %d (autodetected).\n", dev->irq);
558 } else {
559 if (dev->irq == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 dev->irq = 9;
Alan Coxa197f692008-02-08 15:27:38 +0000561 printk("IRQ %d (assigned and not checked!).\n", dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
564 dev->open = ni52_open;
565 dev->stop = ni52_close;
566 dev->get_stats = ni52_get_stats;
567 dev->tx_timeout = ni52_timeout;
568 dev->watchdog_timeo = HZ/20;
569 dev->hard_start_xmit = ni52_send_packet;
570 dev->set_multicast_list = set_multicast_list;
571
572 dev->if_port = 0;
573
574 return 0;
575out:
576 release_region(ioaddr, NI52_TOTAL_SIZE);
577 return retval;
578}
579
580/**********************************************
581 * init the chip (ni52-interrupt should be disabled?!)
582 * needs a correct 'allocated' memory
583 */
584
585static int init586(struct net_device *dev)
586{
Al Viro2d76c262008-03-19 09:43:29 +0000587 void __iomem *ptr;
Alan Coxa197f692008-02-08 15:27:38 +0000588 int i, result = 0;
Wang Chen4cf16532008-11-12 23:38:14 -0800589 struct priv *p = netdev_priv(dev);
Al Viro2d76c262008-03-19 09:43:29 +0000590 struct configure_cmd_struct __iomem *cfg_cmd;
591 struct iasetup_cmd_struct __iomem *ias_cmd;
592 struct tdr_cmd_struct __iomem *tdr_cmd;
593 struct mcsetup_cmd_struct __iomem *mc_cmd;
Alan Coxa197f692008-02-08 15:27:38 +0000594 struct dev_mc_list *dmi = dev->mc_list;
595 int num_addrs = dev->mc_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Al Viro2d76c262008-03-19 09:43:29 +0000597 ptr = p->scb + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Al Viro2d76c262008-03-19 09:43:29 +0000599 cfg_cmd = ptr; /* configure-command */
Alan Coxa197f692008-02-08 15:27:38 +0000600 writew(0, &cfg_cmd->cmd_status);
601 writew(CMD_CONFIGURE | CMD_LAST, &cfg_cmd->cmd_cmd);
602 writew(0xFFFF, &cfg_cmd->cmd_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Alan Coxa197f692008-02-08 15:27:38 +0000604 /* number of cfg bytes */
605 writeb(0x0a, &cfg_cmd->byte_cnt);
606 /* fifo-limit (8=tx:32/rx:64) */
607 writeb(fifo, &cfg_cmd->fifo);
608 /* hold or discard bad recv frames (bit 7) */
609 writeb(0x40, &cfg_cmd->sav_bf);
610 /* addr_len |!src_insert |pre-len |loopback */
611 writeb(0x2e, &cfg_cmd->adr_len);
612 writeb(0x00, &cfg_cmd->priority);
613 writeb(0x60, &cfg_cmd->ifs);;
614 writeb(0x00, &cfg_cmd->time_low);
615 writeb(0xf2, &cfg_cmd->time_high);
616 writeb(0x00, &cfg_cmd->promisc);;
617 if (dev->flags & IFF_ALLMULTI) {
Al Viro2d76c262008-03-19 09:43:29 +0000618 int len = ((char __iomem *)p->iscp - (char __iomem *)ptr - 8) / 6;
Alan Coxa197f692008-02-08 15:27:38 +0000619 if (num_addrs > len) {
620 printk(KERN_ERR "%s: switching to promisc. mode\n",
621 dev->name);
Wang Chenc16d1182008-07-22 13:13:12 +0800622 writeb(0x01, &cfg_cmd->promisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 }
Alan Coxa197f692008-02-08 15:27:38 +0000625 if (dev->flags & IFF_PROMISC)
626 writeb(0x01, &cfg_cmd->promisc);
627 writeb(0x00, &cfg_cmd->carr_coll);
628 writew(make16(cfg_cmd), &p->scb->cbl_offset);
Al Viro05bd8312008-03-19 09:44:39 +0000629 writeb(0, &p->scb->cmd_ruc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Alan Coxa197f692008-02-08 15:27:38 +0000631 writeb(CUC_START, &p->scb->cmd_cuc); /* cmd.-unit start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 ni_attn586();
633
Alan Coxa197f692008-02-08 15:27:38 +0000634 wait_for_stat_compl(cfg_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Alan Coxa197f692008-02-08 15:27:38 +0000636 if ((readw(&cfg_cmd->cmd_status) & (STAT_OK|STAT_COMPL)) !=
637 (STAT_COMPL|STAT_OK)) {
638 printk(KERN_ERR "%s: configure command failed: %x\n",
639 dev->name, readw(&cfg_cmd->cmd_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 1;
641 }
642
643 /*
644 * individual address setup
645 */
646
Al Viro2d76c262008-03-19 09:43:29 +0000647 ias_cmd = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Alan Coxa197f692008-02-08 15:27:38 +0000649 writew(0, &ias_cmd->cmd_status);
650 writew(CMD_IASETUP | CMD_LAST, &ias_cmd->cmd_cmd);
651 writew(0xffff, &ias_cmd->cmd_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Al Viro2d76c262008-03-19 09:43:29 +0000653 memcpy_toio(&ias_cmd->iaddr, (char *)dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Alan Coxa197f692008-02-08 15:27:38 +0000655 writew(make16(ias_cmd), &p->scb->cbl_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Alan Coxa197f692008-02-08 15:27:38 +0000657 writeb(CUC_START, &p->scb->cmd_cuc); /* cmd.-unit start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 ni_attn586();
659
Alan Coxa197f692008-02-08 15:27:38 +0000660 wait_for_stat_compl(ias_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Alan Coxa197f692008-02-08 15:27:38 +0000662 if ((readw(&ias_cmd->cmd_status) & (STAT_OK|STAT_COMPL)) !=
663 (STAT_OK|STAT_COMPL)) {
664 printk(KERN_ERR "%s (ni52): individual address setup command failed: %04x\n", dev->name, readw(&ias_cmd->cmd_status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 1;
666 }
667
668 /*
669 * TDR, wire check .. e.g. no resistor e.t.c
670 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400671
Al Viro2d76c262008-03-19 09:43:29 +0000672 tdr_cmd = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Alan Coxa197f692008-02-08 15:27:38 +0000674 writew(0, &tdr_cmd->cmd_status);
675 writew(CMD_TDR | CMD_LAST, &tdr_cmd->cmd_cmd);
676 writew(0xffff, &tdr_cmd->cmd_link);
677 writew(0, &tdr_cmd->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Alan Coxa197f692008-02-08 15:27:38 +0000679 writew(make16(tdr_cmd), &p->scb->cbl_offset);
680 writeb(CUC_START, &p->scb->cmd_cuc); /* cmd.-unit start */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 ni_attn586();
682
Alan Coxa197f692008-02-08 15:27:38 +0000683 wait_for_stat_compl(tdr_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Alan Coxa197f692008-02-08 15:27:38 +0000685 if (!(readw(&tdr_cmd->cmd_status) & STAT_COMPL))
686 printk(KERN_ERR "%s: Problems while running the TDR.\n",
687 dev->name);
688 else {
689 udelay(16);
690 result = readw(&tdr_cmd->status);
691 writeb(readb(&p->scb->cus) & STAT_MASK, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 ni_attn586(); /* ack the interrupts */
693
Alan Coxa197f692008-02-08 15:27:38 +0000694 if (result & TDR_LNK_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 ;
Alan Coxa197f692008-02-08 15:27:38 +0000696 else if (result & TDR_XCVR_PRB)
697 printk(KERN_ERR "%s: TDR: Transceiver problem. Check the cable(s)!\n",
698 dev->name);
699 else if (result & TDR_ET_OPN)
700 printk(KERN_ERR "%s: TDR: No correct termination %d clocks away.\n",
701 dev->name, result & TDR_TIMEMASK);
702 else if (result & TDR_ET_SRT) {
703 /* time == 0 -> strange :-) */
704 if (result & TDR_TIMEMASK)
705 printk(KERN_ERR "%s: TDR: Detected a short circuit %d clocks away.\n",
706 dev->name, result & TDR_TIMEMASK);
707 } else
708 printk(KERN_ERR "%s: TDR: Unknown status %04x\n",
709 dev->name, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
712 /*
713 * Multicast setup
714 */
Alan Coxa197f692008-02-08 15:27:38 +0000715 if (num_addrs && !(dev->flags & IFF_PROMISC)) {
Al Viro2d76c262008-03-19 09:43:29 +0000716 mc_cmd = ptr;
Alan Coxa197f692008-02-08 15:27:38 +0000717 writew(0, &mc_cmd->cmd_status);
718 writew(CMD_MCSETUP | CMD_LAST, &mc_cmd->cmd_cmd);
719 writew(0xffff, &mc_cmd->cmd_link);
720 writew(num_addrs * 6, &mc_cmd->mc_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Alan Coxa197f692008-02-08 15:27:38 +0000722 for (i = 0; i < num_addrs; i++, dmi = dmi->next)
Al Viro2d76c262008-03-19 09:43:29 +0000723 memcpy_toio(mc_cmd->mc_list[i],
Alan Coxa197f692008-02-08 15:27:38 +0000724 dmi->dmi_addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Alan Coxa197f692008-02-08 15:27:38 +0000726 writew(make16(mc_cmd), &p->scb->cbl_offset);
727 writeb(CUC_START, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 ni_attn586();
729
Alan Coxa197f692008-02-08 15:27:38 +0000730 wait_for_stat_compl(mc_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Alan Coxa197f692008-02-08 15:27:38 +0000732 if ((readw(&mc_cmd->cmd_status) & (STAT_COMPL|STAT_OK))
733 != (STAT_COMPL|STAT_OK))
734 printk(KERN_ERR "%s: Can't apply multicast-address-list.\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
737 /*
738 * alloc nop/xmit-cmds
739 */
740#if (NUM_XMIT_BUFFS == 1)
Alan Coxa197f692008-02-08 15:27:38 +0000741 for (i = 0; i < 2; i++) {
Al Viro2d76c262008-03-19 09:43:29 +0000742 p->nop_cmds[i] = ptr;
Alan Coxa197f692008-02-08 15:27:38 +0000743 writew(CMD_NOP, &p->nop_cmds[i]->cmd_cmd);
744 writew(0, &p->nop_cmds[i]->cmd_status);
745 writew(make16(p->nop_cmds[i]), &p->nop_cmds[i]->cmd_link);
Al Viro2d76c262008-03-19 09:43:29 +0000746 ptr = ptr + sizeof(struct nop_cmd_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
748#else
Alan Coxa197f692008-02-08 15:27:38 +0000749 for (i = 0; i < NUM_XMIT_BUFFS; i++) {
Al Viro2d76c262008-03-19 09:43:29 +0000750 p->nop_cmds[i] = ptr;
Alan Coxa197f692008-02-08 15:27:38 +0000751 writew(CMD_NOP, &p->nop_cmds[i]->cmd_cmd);
752 writew(0, &p->nop_cmds[i]->cmd_status);
753 writew(make16(p->nop_cmds[i]), &p->nop_cmds[i]->cmd_link);
Al Viro2d76c262008-03-19 09:43:29 +0000754 ptr = ptr + sizeof(struct nop_cmd_struct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756#endif
757
Al Viro2d76c262008-03-19 09:43:29 +0000758 ptr = alloc_rfa(dev, ptr); /* init receive-frame-area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /*
761 * alloc xmit-buffs / init xmit_cmds
762 */
Alan Coxa197f692008-02-08 15:27:38 +0000763 for (i = 0; i < NUM_XMIT_BUFFS; i++) {
764 /* Transmit cmd/buff 0 */
Al Viro2d76c262008-03-19 09:43:29 +0000765 p->xmit_cmds[i] = ptr;
766 ptr = ptr + sizeof(struct transmit_cmd_struct);
767 p->xmit_cbuffs[i] = ptr; /* char-buffs */
768 ptr = ptr + XMIT_BUFF_SIZE;
769 p->xmit_buffs[i] = ptr; /* TBD */
770 ptr = ptr + sizeof(struct tbd_struct);
771 if ((void __iomem *)ptr > (void __iomem *)p->iscp) {
Alan Coxa197f692008-02-08 15:27:38 +0000772 printk(KERN_ERR "%s: not enough shared-mem for your configuration!\n",
773 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 1;
775 }
Al Viro2d76c262008-03-19 09:43:29 +0000776 memset_io(p->xmit_cmds[i], 0,
Alan Coxa197f692008-02-08 15:27:38 +0000777 sizeof(struct transmit_cmd_struct));
Al Viro2d76c262008-03-19 09:43:29 +0000778 memset_io(p->xmit_buffs[i], 0,
Alan Coxa197f692008-02-08 15:27:38 +0000779 sizeof(struct tbd_struct));
780 writew(make16(p->nop_cmds[(i+1)%NUM_XMIT_BUFFS]),
781 &p->xmit_cmds[i]->cmd_link);
782 writew(STAT_COMPL, &p->xmit_cmds[i]->cmd_status);
783 writew(CMD_XMIT|CMD_INT, &p->xmit_cmds[i]->cmd_cmd);
784 writew(make16(p->xmit_buffs[i]), &p->xmit_cmds[i]->tbd_offset);
785 writew(0xffff, &p->xmit_buffs[i]->next);
786 writel(make24(p->xmit_cbuffs[i]), &p->xmit_buffs[i]->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
789 p->xmit_count = 0;
790 p->xmit_last = 0;
791#ifndef NO_NOPCOMMANDS
792 p->nop_point = 0;
793#endif
794
795 /*
796 * 'start transmitter'
797 */
798#ifndef NO_NOPCOMMANDS
Alan Coxa197f692008-02-08 15:27:38 +0000799 writew(make16(p->nop_cmds[0]), &p->scb->cbl_offset);
800 writeb(CUC_START, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +0000802 wait_for_scb_cmd(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803#else
Alan Coxa197f692008-02-08 15:27:38 +0000804 writew(make16(p->xmit_cmds[0]), &p->xmit_cmds[0]->cmd_link);
805 writew(CMD_XMIT | CMD_SUSPEND | CMD_INT, &p->xmit_cmds[0]->cmd_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806#endif
807
808 /*
809 * ack. interrupts
810 */
Alan Coxa197f692008-02-08 15:27:38 +0000811 writeb(readb(&p->scb->cus) & STAT_MASK, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +0000813 udelay(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 ni_enaint();
816
817 return 0;
818}
819
820/******************************************************
821 * This is a helper routine for ni52_rnr_int() and init586().
822 * It sets up the Receive Frame Area (RFA).
823 */
824
Al Viro2d76c262008-03-19 09:43:29 +0000825static void __iomem *alloc_rfa(struct net_device *dev, void __iomem *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Al Viro2d76c262008-03-19 09:43:29 +0000827 struct rfd_struct __iomem *rfd = ptr;
828 struct rbd_struct __iomem *rbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800830 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Al Viro2d76c262008-03-19 09:43:29 +0000832 memset_io(rfd, 0,
Alan Coxa197f692008-02-08 15:27:38 +0000833 sizeof(struct rfd_struct) * (p->num_recv_buffs + rfdadd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 p->rfd_first = rfd;
835
Alan Coxa197f692008-02-08 15:27:38 +0000836 for (i = 0; i < (p->num_recv_buffs + rfdadd); i++) {
837 writew(make16(rfd + (i+1) % (p->num_recv_buffs+rfdadd)),
838 &rfd[i].next);
839 writew(0xffff, &rfd[i].rbd_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Alan Coxa197f692008-02-08 15:27:38 +0000841 /* RU suspend */
842 writeb(RFD_SUSP, &rfd[p->num_recv_buffs-1+rfdadd].last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Al Viro2d76c262008-03-19 09:43:29 +0000844 ptr = rfd + (p->num_recv_buffs + rfdadd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Al Viro2d76c262008-03-19 09:43:29 +0000846 rbd = ptr;
847 ptr = rbd + p->num_recv_buffs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /* clr descriptors */
Al Viro2d76c262008-03-19 09:43:29 +0000850 memset_io(rbd, 0, sizeof(struct rbd_struct) * (p->num_recv_buffs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Alan Coxa197f692008-02-08 15:27:38 +0000852 for (i = 0; i < p->num_recv_buffs; i++) {
853 writew(make16(rbd + (i+1) % p->num_recv_buffs), &rbd[i].next);
854 writew(RECV_BUFF_SIZE, &rbd[i].size);
855 writel(make24(ptr), &rbd[i].buffer);
Al Viro2d76c262008-03-19 09:43:29 +0000856 ptr = ptr + RECV_BUFF_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 p->rfd_top = p->rfd_first;
859 p->rfd_last = p->rfd_first + (p->num_recv_buffs - 1 + rfdadd);
860
Alan Coxa197f692008-02-08 15:27:38 +0000861 writew(make16(p->rfd_first), &p->scb->rfa_offset);
862 writew(make16(rbd), &p->rfd_first->rbd_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 return ptr;
865}
866
867
868/**************************************************
869 * Interrupt Handler ...
870 */
871
Alan Coxa197f692008-02-08 15:27:38 +0000872static irqreturn_t ni52_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 struct net_device *dev = dev_id;
Alan Coxa197f692008-02-08 15:27:38 +0000875 unsigned int stat;
876 int cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 struct priv *p;
878
Wang Chen4cf16532008-11-12 23:38:14 -0800879 p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Alan Coxa197f692008-02-08 15:27:38 +0000881 if (debuglevel > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 printk("I");
883
Alan Coxa197f692008-02-08 15:27:38 +0000884 spin_lock(&p->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Alan Coxa197f692008-02-08 15:27:38 +0000886 wait_for_scb_cmd(dev); /* wait for last command */
887
888 while ((stat = readb(&p->scb->cus) & STAT_MASK)) {
889 writeb(stat, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 ni_attn586();
891
Alan Coxa197f692008-02-08 15:27:38 +0000892 if (stat & STAT_FR) /* received a frame */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 ni52_rcv_int(dev);
894
Alan Coxa197f692008-02-08 15:27:38 +0000895 if (stat & STAT_RNR) { /* RU went 'not ready' */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 printk("(R)");
Alan Coxa197f692008-02-08 15:27:38 +0000897 if (readb(&p->scb->rus) & RU_SUSPEND) {
898 /* special case: RU_SUSPEND */
899 wait_for_scb_cmd(dev);
Al Viro05bd8312008-03-19 09:44:39 +0000900 writeb(RUC_RESUME, &p->scb->cmd_ruc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +0000902 wait_for_scb_cmd_ruc(dev);
903 } else {
904 printk(KERN_ERR "%s: Receiver-Unit went 'NOT READY': %04x/%02x.\n",
905 dev->name, stat, readb(&p->scb->rus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 ni52_rnr_int(dev);
907 }
908 }
909
Alan Coxa197f692008-02-08 15:27:38 +0000910 /* Command with I-bit set complete */
911 if (stat & STAT_CX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 ni52_xmt_int(dev);
913
914#ifndef NO_NOPCOMMANDS
Alan Coxa197f692008-02-08 15:27:38 +0000915 if (stat & STAT_CNA) { /* CU went 'not ready' */
916 if (netif_running(dev))
917 printk(KERN_ERR "%s: oops! CU has left active state. stat: %04x/%02x.\n",
918 dev->name, stat, readb(&p->scb->cus));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
920#endif
921
Alan Coxa197f692008-02-08 15:27:38 +0000922 if (debuglevel > 1)
923 printk("%d", cnt++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Alan Coxa197f692008-02-08 15:27:38 +0000925 /* Wait for ack. (ni52_xmt_int can be faster than ack!!) */
926 wait_for_scb_cmd(dev);
Al Viro05bd8312008-03-19 09:44:39 +0000927 if (readb(&p->scb->cmd_cuc)) { /* timed out? */
Alan Coxa197f692008-02-08 15:27:38 +0000928 printk(KERN_ERR "%s: Acknowledge timed out.\n",
929 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 ni_disint();
931 break;
932 }
933 }
Alan Coxa197f692008-02-08 15:27:38 +0000934 spin_unlock(&p->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Alan Coxa197f692008-02-08 15:27:38 +0000936 if (debuglevel > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 printk("i");
938 return IRQ_HANDLED;
939}
940
941/*******************************************************
942 * receive-interrupt
943 */
944
945static void ni52_rcv_int(struct net_device *dev)
946{
Alan Coxa197f692008-02-08 15:27:38 +0000947 int status, cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 unsigned short totlen;
949 struct sk_buff *skb;
Al Viro2d76c262008-03-19 09:43:29 +0000950 struct rbd_struct __iomem *rbd;
Wang Chen4cf16532008-11-12 23:38:14 -0800951 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alan Coxa197f692008-02-08 15:27:38 +0000953 if (debuglevel > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 printk("R");
955
Alan Coxa197f692008-02-08 15:27:38 +0000956 for (; (status = readb(&p->rfd_top->stat_high)) & RFD_COMPL;) {
Al Viro05bd8312008-03-19 09:44:39 +0000957 rbd = make32(readw(&p->rfd_top->rbd_offset));
Alan Coxa197f692008-02-08 15:27:38 +0000958 if (status & RFD_OK) { /* frame received without error? */
959 totlen = readw(&rbd->status);
960 if (totlen & RBD_LAST) {
961 /* the first and the last buffer? */
962 totlen &= RBD_MASK; /* length of this frame */
963 writew(0x00, &rbd->status);
964 skb = (struct sk_buff *)dev_alloc_skb(totlen+2);
965 if (skb != NULL) {
966 skb_reserve(skb, 2);
967 skb_put(skb, totlen);
Al Viro05bd8312008-03-19 09:44:39 +0000968 memcpy_fromio(skb->data, p->base + readl(&rbd->buffer), totlen);
Alan Coxa197f692008-02-08 15:27:38 +0000969 skb->protocol = eth_type_trans(skb, dev);
970 netif_rx(skb);
Alan Coxa197f692008-02-08 15:27:38 +0000971 p->stats.rx_packets++;
972 p->stats.rx_bytes += totlen;
973 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 p->stats.rx_dropped++;
Alan Coxa197f692008-02-08 15:27:38 +0000975 } else {
976 int rstat;
977 /* free all RBD's until RBD_LAST is set */
978 totlen = 0;
979 while (!((rstat = readw(&rbd->status)) & RBD_LAST)) {
980 totlen += rstat & RBD_MASK;
981 if (!rstat) {
982 printk(KERN_ERR "%s: Whoops .. no end mark in RBD list\n", dev->name);
983 break;
984 }
985 writew(0, &rbd->status);
Al Viro05bd8312008-03-19 09:44:39 +0000986 rbd = make32(readw(&rbd->next));
Alan Coxa197f692008-02-08 15:27:38 +0000987 }
988 totlen += rstat & RBD_MASK;
989 writew(0, &rbd->status);
990 printk(KERN_ERR "%s: received oversized frame! length: %d\n",
991 dev->name, totlen);
992 p->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 }
Alan Coxa197f692008-02-08 15:27:38 +0000994 } else {/* frame !(ok), only with 'save-bad-frames' */
995 printk(KERN_ERR "%s: oops! rfd-error-status: %04x\n",
996 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 p->stats.rx_errors++;
998 }
Alan Coxa197f692008-02-08 15:27:38 +0000999 writeb(0, &p->rfd_top->stat_high);
1000 writeb(RFD_SUSP, &p->rfd_top->last); /* maybe exchange by RFD_LAST */
1001 writew(0xffff, &p->rfd_top->rbd_offset);
1002 writeb(0, &p->rfd_last->last); /* delete RFD_SUSP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 p->rfd_last = p->rfd_top;
Al Viro05bd8312008-03-19 09:44:39 +00001004 p->rfd_top = make32(readw(&p->rfd_top->next)); /* step to next RFD */
Alan Coxa197f692008-02-08 15:27:38 +00001005 writew(make16(p->rfd_top), &p->scb->rfa_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Alan Coxa197f692008-02-08 15:27:38 +00001007 if (debuglevel > 0)
1008 printk("%d", cnt++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010
Alan Coxa197f692008-02-08 15:27:38 +00001011 if (automatic_resume) {
1012 wait_for_scb_cmd(dev);
1013 writeb(RUC_RESUME, &p->scb->cmd_ruc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +00001015 wait_for_scb_cmd_ruc(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
1018#ifdef WAIT_4_BUSY
1019 {
1020 int i;
Alan Coxa197f692008-02-08 15:27:38 +00001021 for (i = 0; i < 1024; i++) {
1022 if (p->rfd_top->status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 break;
Alan Coxa197f692008-02-08 15:27:38 +00001024 udelay(16);
1025 if (i == 1023)
1026 printk(KERN_ERR "%s: RU hasn't fetched next RFD (not busy/complete)\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028 }
1029#endif
Alan Coxa197f692008-02-08 15:27:38 +00001030 if (debuglevel > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 printk("r");
1032}
1033
1034/**********************************************************
1035 * handle 'Receiver went not ready'.
1036 */
1037
1038static void ni52_rnr_int(struct net_device *dev)
1039{
Wang Chen4cf16532008-11-12 23:38:14 -08001040 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 p->stats.rx_errors++;
1043
Alan Coxa197f692008-02-08 15:27:38 +00001044 wait_for_scb_cmd(dev); /* wait for the last cmd, WAIT_4_FULLSTAT?? */
1045 writeb(RUC_ABORT, &p->scb->cmd_ruc); /* usually the RU is in the 'no resource'-state .. abort it now. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +00001047 wait_for_scb_cmd_ruc(dev); /* wait for accept cmd. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Al Viro2d76c262008-03-19 09:43:29 +00001049 alloc_rfa(dev, p->rfd_first);
Alan Coxa197f692008-02-08 15:27:38 +00001050 /* maybe add a check here, before restarting the RU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 startrecv586(dev); /* restart RU */
1052
Al Viro05bd8312008-03-19 09:44:39 +00001053 printk(KERN_ERR "%s: Receive-Unit restarted. Status: %04x\n",
1054 dev->name, readb(&p->scb->rus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056}
1057
1058/**********************************************************
1059 * handle xmit - interrupt
1060 */
1061
1062static void ni52_xmt_int(struct net_device *dev)
1063{
1064 int status;
Wang Chen4cf16532008-11-12 23:38:14 -08001065 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Alan Coxa197f692008-02-08 15:27:38 +00001067 if (debuglevel > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 printk("X");
1069
Alan Coxa197f692008-02-08 15:27:38 +00001070 status = readw(&p->xmit_cmds[p->xmit_last]->cmd_status);
1071 if (!(status & STAT_COMPL))
1072 printk(KERN_ERR "%s: strange .. xmit-int without a 'COMPLETE'\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Alan Coxa197f692008-02-08 15:27:38 +00001074 if (status & STAT_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 p->stats.tx_packets++;
1076 p->stats.collisions += (status & TCMD_MAXCOLLMASK);
Alan Coxa197f692008-02-08 15:27:38 +00001077 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 p->stats.tx_errors++;
Alan Coxa197f692008-02-08 15:27:38 +00001079 if (status & TCMD_LATECOLL) {
1080 printk(KERN_ERR "%s: late collision detected.\n",
1081 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 p->stats.collisions++;
Alan Coxa197f692008-02-08 15:27:38 +00001083 } else if (status & TCMD_NOCARRIER) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 p->stats.tx_carrier_errors++;
Alan Coxa197f692008-02-08 15:27:38 +00001085 printk(KERN_ERR "%s: no carrier detected.\n",
1086 dev->name);
1087 } else if (status & TCMD_LOSTCTS)
1088 printk(KERN_ERR "%s: loss of CTS detected.\n",
1089 dev->name);
1090 else if (status & TCMD_UNDERRUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 p->stats.tx_fifo_errors++;
Alan Coxa197f692008-02-08 15:27:38 +00001092 printk(KERN_ERR "%s: DMA underrun detected.\n",
1093 dev->name);
1094 } else if (status & TCMD_MAXCOLL) {
1095 printk(KERN_ERR "%s: Max. collisions exceeded.\n",
1096 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 p->stats.collisions += 16;
1098 }
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#if (NUM_XMIT_BUFFS > 1)
Alan Coxa197f692008-02-08 15:27:38 +00001101 if ((++p->xmit_last) == NUM_XMIT_BUFFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 p->xmit_last = 0;
1103#endif
1104 netif_wake_queue(dev);
1105}
1106
1107/***********************************************************
1108 * (re)start the receiver
1109 */
1110
1111static void startrecv586(struct net_device *dev)
1112{
Wang Chen4cf16532008-11-12 23:38:14 -08001113 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Alan Coxa197f692008-02-08 15:27:38 +00001115 wait_for_scb_cmd(dev);
1116 wait_for_scb_cmd_ruc(dev);
1117 writew(make16(p->rfd_first), &p->scb->rfa_offset);
1118 writeb(RUC_START, &p->scb->cmd_ruc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ni_attn586(); /* start cmd. */
Alan Coxa197f692008-02-08 15:27:38 +00001120 wait_for_scb_cmd_ruc(dev);
1121 /* wait for accept cmd. (no timeout!!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124static void ni52_timeout(struct net_device *dev)
1125{
Wang Chen4cf16532008-11-12 23:38:14 -08001126 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#ifndef NO_NOPCOMMANDS
Alan Coxa197f692008-02-08 15:27:38 +00001128 if (readb(&p->scb->cus) & CU_ACTIVE) { /* COMMAND-UNIT active? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 netif_wake_queue(dev);
1130#ifdef DEBUG
Alan Coxa197f692008-02-08 15:27:38 +00001131 printk(KERN_ERR "%s: strange ... timeout with CU active?!?\n",
1132 dev->name);
1133 printk(KERN_ERR "%s: X0: %04x N0: %04x N1: %04x %d\n",
1134 dev->name, (int)p->xmit_cmds[0]->cmd_status,
1135 readw(&p->nop_cmds[0]->cmd_status),
1136 readw(&p->nop_cmds[1]->cmd_status),
1137 p->nop_point);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138#endif
Alan Coxa197f692008-02-08 15:27:38 +00001139 writeb(CUC_ABORT, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +00001141 wait_for_scb_cmd(dev);
1142 writew(make16(p->nop_cmds[p->nop_point]), &p->scb->cbl_offset);
1143 writeb(CUC_START, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 ni_attn586();
Alan Coxa197f692008-02-08 15:27:38 +00001145 wait_for_scb_cmd(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 dev->trans_start = jiffies;
1147 return 0;
1148 }
1149#endif
1150 {
1151#ifdef DEBUG
Alan Coxa197f692008-02-08 15:27:38 +00001152 printk(KERN_ERR "%s: xmitter timed out, try to restart! stat: %02x\n",
1153 dev->name, readb(&p->scb->cus));
1154 printk(KERN_ERR "%s: command-stats: %04x %04x\n",
1155 dev->name,
1156 readw(&p->xmit_cmds[0]->cmd_status),
1157 readw(&p->xmit_cmds[1]->cmd_status));
1158 printk(KERN_ERR "%s: check, whether you set the right interrupt number!\n",
1159 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160#endif
1161 ni52_close(dev);
1162 ni52_open(dev);
1163 }
1164 dev->trans_start = jiffies;
1165}
1166
1167/******************************************************
1168 * send frame
1169 */
1170
1171static int ni52_send_packet(struct sk_buff *skb, struct net_device *dev)
1172{
Alan Coxa197f692008-02-08 15:27:38 +00001173 int len, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174#ifndef NO_NOPCOMMANDS
1175 int next_nop;
1176#endif
Wang Chen4cf16532008-11-12 23:38:14 -08001177 struct priv *p = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Alan Coxa197f692008-02-08 15:27:38 +00001179 if (skb->len > XMIT_BUFF_SIZE) {
1180 printk(KERN_ERR "%s: Sorry, max. framelength is %d bytes. The length of your frame is %d bytes.\n", dev->name, XMIT_BUFF_SIZE, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return 0;
1182 }
1183
1184 netif_stop_queue(dev);
1185
Al Viro05bd8312008-03-19 09:44:39 +00001186 memcpy_toio(p->xmit_cbuffs[p->xmit_count], skb->data, skb->len);
Alan Coxa197f692008-02-08 15:27:38 +00001187 len = skb->len;
1188 if (len < ETH_ZLEN) {
1189 len = ETH_ZLEN;
Al Viro05bd8312008-03-19 09:44:39 +00001190 memset_io(p->xmit_cbuffs[p->xmit_count]+skb->len, 0,
Alan Coxa197f692008-02-08 15:27:38 +00001191 len - skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194#if (NUM_XMIT_BUFFS == 1)
1195# ifdef NO_NOPCOMMANDS
1196
1197#ifdef DEBUG
Al Viro05bd8312008-03-19 09:44:39 +00001198 if (readb(&p->scb->cus) & CU_ACTIVE) {
Alan Coxa197f692008-02-08 15:27:38 +00001199 printk(KERN_ERR "%s: Hmmm .. CU is still running and we wanna send a new packet.\n", dev->name);
1200 printk(KERN_ERR "%s: stat: %04x %04x\n",
1201 dev->name, readb(&p->scb->cus),
1202 readw(&p->xmit_cmds[0]->cmd_status));
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204#endif
Al Viro05bd8312008-03-19 09:44:39 +00001205 writew(TBD_LAST | len, &p->xmit_buffs[0]->size);
Alan Coxa197f692008-02-08 15:27:38 +00001206 for (i = 0; i < 16; i++) {
1207 writew(0, &p->xmit_cmds[0]->cmd_status);
1208 wait_for_scb_cmd(dev);
1209 if ((readb(&p->scb->cus) & CU_STATUS) == CU_SUSPEND)
1210 writeb(CUC_RESUME, &p->scb->cmd_cuc);
1211 else {
1212 writew(make16(p->xmit_cmds[0]), &p->scb->cbl_offset);
1213 writeb(CUC_START, &p->scb->cmd_cuc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Alan Coxa197f692008-02-08 15:27:38 +00001215 ni_attn586();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 dev->trans_start = jiffies;
Alan Coxa197f692008-02-08 15:27:38 +00001217 if (!i)
1218 dev_kfree_skb(skb);
1219 wait_for_scb_cmd(dev);
1220 /* test it, because CU sometimes doesn't start immediately */
1221 if (readb(&p->scb->cus) & CU_ACTIVE)
1222 break;
1223 if (readw(&p->xmit_cmds[0]->cmd_status))
1224 break;
1225 if (i == 15)
1226 printk(KERN_WARNING "%s: Can't start transmit-command.\n", dev->name);
1227 }
1228# else
1229 next_nop = (p->nop_point + 1) & 0x1;
1230 writew(TBD_LAST | len, &p->xmit_buffs[0]->size);
1231 writew(make16(p->nop_cmds[next_nop]), &p->xmit_cmds[0]->cmd_link);
1232 writew(make16(p->nop_cmds[next_nop]),
1233 &p->nop_cmds[next_nop]->cmd_link);
1234 writew(0, &p->xmit_cmds[0]->cmd_status);
1235 writew(0, &p->nop_cmds[next_nop]->cmd_status);
1236
1237 writew(make16(p->xmit_cmds[0]), &p->nop_cmds[p->nop_point]->cmd_link);
1238 dev->trans_start = jiffies;
1239 p->nop_point = next_nop;
1240 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241# endif
1242#else
Alan Coxa197f692008-02-08 15:27:38 +00001243 writew(TBD_LAST | len, &p->xmit_buffs[p->xmit_count]->size);
1244 next_nop = p->xmit_count + 1
1245 if (next_nop == NUM_XMIT_BUFFS)
1246 next_nop = 0;
1247 writew(0, &p->xmit_cmds[p->xmit_count]->cmd_status);
1248 /* linkpointer of xmit-command already points to next nop cmd */
1249 writew(make16(p->nop_cmds[next_nop]),
1250 &p->nop_cmds[next_nop]->cmd_link);
1251 writew(0, &p->nop_cmds[next_nop]->cmd_status);
1252 writew(make16(p->xmit_cmds[p->xmit_count]),
1253 &p->nop_cmds[p->xmit_count]->cmd_link);
1254 dev->trans_start = jiffies;
1255 p->xmit_count = next_nop;
1256 {
1257 unsigned long flags;
1258 spin_lock_irqsave(&p->spinlock);
1259 if (p->xmit_count != p->xmit_last)
1260 netif_wake_queue(dev);
1261 spin_unlock_irqrestore(&p->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
Alan Coxa197f692008-02-08 15:27:38 +00001263 dev_kfree_skb(skb);
1264#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266}
1267
1268/*******************************************
1269 * Someone wanna have the statistics
1270 */
1271
1272static struct net_device_stats *ni52_get_stats(struct net_device *dev)
1273{
Wang Chen4cf16532008-11-12 23:38:14 -08001274 struct priv *p = netdev_priv(dev);
Alan Coxa197f692008-02-08 15:27:38 +00001275 unsigned short crc, aln, rsc, ovrn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Alan Coxa197f692008-02-08 15:27:38 +00001277 /* Get error-statistics from the ni82586 */
1278 crc = readw(&p->scb->crc_errs);
1279 writew(0, &p->scb->crc_errs);
1280 aln = readw(&p->scb->aln_errs);
1281 writew(0, &p->scb->aln_errs);
1282 rsc = readw(&p->scb->rsc_errs);
1283 writew(0, &p->scb->rsc_errs);
1284 ovrn = readw(&p->scb->ovrn_errs);
1285 writew(0, &p->scb->ovrn_errs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 p->stats.rx_crc_errors += crc;
1288 p->stats.rx_fifo_errors += ovrn;
1289 p->stats.rx_frame_errors += aln;
1290 p->stats.rx_dropped += rsc;
1291
1292 return &p->stats;
1293}
1294
1295/********************************************************
1296 * Set MC list ..
1297 */
1298
1299static void set_multicast_list(struct net_device *dev)
1300{
1301 netif_stop_queue(dev);
1302 ni_disint();
1303 alloc586(dev);
1304 init586(dev);
1305 startrecv586(dev);
1306 ni_enaint();
1307 netif_wake_queue(dev);
1308}
1309
1310#ifdef MODULE
1311static struct net_device *dev_ni52;
1312
1313module_param(io, int, 0);
1314module_param(irq, int, 0);
1315module_param(memstart, long, 0);
1316module_param(memend, long, 0);
1317MODULE_PARM_DESC(io, "NI5210 I/O base address,required");
1318MODULE_PARM_DESC(irq, "NI5210 IRQ number,required");
1319MODULE_PARM_DESC(memstart, "NI5210 memory base address,required");
1320MODULE_PARM_DESC(memend, "NI5210 memory end address,required");
1321
Andrew Morton19a86642006-08-14 23:00:05 -07001322int __init init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Alan Coxa197f692008-02-08 15:27:38 +00001324 if (io <= 0x0 || !memend || !memstart || irq < 2) {
1325 printk(KERN_ERR "ni52: Autoprobing not allowed for modules.\n");
1326 printk(KERN_ERR "ni52: Set symbols 'io' 'irq' 'memstart' and 'memend'\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -ENODEV;
1328 }
1329 dev_ni52 = ni52_probe(-1);
1330 if (IS_ERR(dev_ni52))
1331 return PTR_ERR(dev_ni52);
1332 return 0;
1333}
1334
Al Viroafc8eb42006-06-14 18:50:53 -04001335void __exit cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Wang Chen4cf16532008-11-12 23:38:14 -08001337 struct priv *p = netdev_priv(dev_ni52);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 unregister_netdev(dev_ni52);
Al Viro176f65f2008-03-19 09:44:29 +00001339 iounmap(p->mapped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 release_region(dev_ni52->base_addr, NI52_TOTAL_SIZE);
1341 free_netdev(dev_ni52);
1342}
1343#endif /* MODULE */
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345MODULE_LICENSE("GPL");