]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/net/smc91x.c
Merge current mainline tree into linux-omap tree
[linux-2.6-omap-h63xx.git] / drivers / net / smc91x.c
1 /*
2  * smc91x.c
3  * This is a driver for SMSC's 91C9x/91C1xx single-chip Ethernet devices.
4  *
5  * Copyright (C) 1996 by Erik Stahlman
6  * Copyright (C) 2001 Standard Microsystems Corporation
7  *      Developed by Simple Network Magic Corporation
8  * Copyright (C) 2003 Monta Vista Software, Inc.
9  *      Unified SMC91x driver by Nicolas Pitre
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  *
25  * Arguments:
26  *      io      = for the base address
27  *      irq     = for the IRQ
28  *      nowait  = 0 for normal wait states, 1 eliminates additional wait states
29  *
30  * original author:
31  *      Erik Stahlman <erik@vt.edu>
32  *
33  * hardware multicast code:
34  *    Peter Cammaert <pc@denkart.be>
35  *
36  * contributors:
37  *      Daris A Nevil <dnevil@snmc.com>
38  *      Nicolas Pitre <nico@cam.org>
39  *      Russell King <rmk@arm.linux.org.uk>
40  *
41  * History:
42  *   08/20/00  Arnaldo Melo       fix kfree(skb) in smc_hardware_send_packet
43  *   12/15/00  Christian Jullien  fix "Warning: kfree_skb on hard IRQ"
44  *   03/16/01  Daris A Nevil      modified smc9194.c for use with LAN91C111
45  *   08/22/01  Scott Anderson     merge changes from smc9194 to smc91111
46  *   08/21/01  Pramod B Bhardwaj  added support for RevB of LAN91C111
47  *   12/20/01  Jeff Sutherland    initial port to Xscale PXA with DMA support
48  *   04/07/03  Nicolas Pitre      unified SMC91x driver, killed irq races,
49  *                                more bus abstraction, big cleanup, etc.
50  *   29/09/03  Russell King       - add driver model support
51  *                                - ethtool support
52  *                                - convert to use generic MII interface
53  *                                - add link up/down notification
54  *                                - don't try to handle full negotiation in
55  *                                  smc_phy_configure
56  *                                - clean up (and fix stack overrun) in PHY
57  *                                  MII read/write functions
58  *   22/09/04  Nicolas Pitre      big update (see commit log for details)
59  */
60 static const char version[] =
61         "smc91x.c: v1.1, sep 22 2004 by Nicolas Pitre <nico@cam.org>\n";
62
63 /* Debugging level */
64 #ifndef SMC_DEBUG
65 #define SMC_DEBUG               0
66 #endif
67
68
69 #include <linux/init.h>
70 #include <linux/module.h>
71 #include <linux/kernel.h>
72 #include <linux/sched.h>
73 #include <linux/slab.h>
74 #include <linux/delay.h>
75 #include <linux/interrupt.h>
76 #include <linux/errno.h>
77 #include <linux/ioport.h>
78 #include <linux/crc32.h>
79 #include <linux/platform_device.h>
80 #include <linux/spinlock.h>
81 #include <linux/ethtool.h>
82 #include <linux/mii.h>
83 #include <linux/workqueue.h>
84
85 #include <linux/netdevice.h>
86 #include <linux/etherdevice.h>
87 #include <linux/skbuff.h>
88
89 #include <asm/io.h>
90
91 #include "smc91x.h"
92
93 #ifdef CONFIG_ISA
94 /*
95  * the LAN91C111 can be at any of the following port addresses.  To change,
96  * for a slightly different card, you can add it to the array.  Keep in
97  * mind that the array must end in zero.
98  */
99 static unsigned int smc_portlist[] __initdata = {
100         0x200, 0x220, 0x240, 0x260, 0x280, 0x2A0, 0x2C0, 0x2E0,
101         0x300, 0x320, 0x340, 0x360, 0x380, 0x3A0, 0x3C0, 0x3E0, 0
102 };
103
104 #ifndef SMC_IOADDR
105 # define SMC_IOADDR             -1
106 #endif
107 static unsigned long io = SMC_IOADDR;
108 module_param(io, ulong, 0400);
109 MODULE_PARM_DESC(io, "I/O base address");
110
111 #ifndef SMC_IRQ
112 # define SMC_IRQ                -1
113 #endif
114 static int irq = SMC_IRQ;
115 module_param(irq, int, 0400);
116 MODULE_PARM_DESC(irq, "IRQ number");
117
118 #endif  /* CONFIG_ISA */
119
120 #ifndef SMC_NOWAIT
121 # define SMC_NOWAIT             0
122 #endif
123 static int nowait = SMC_NOWAIT;
124 module_param(nowait, int, 0400);
125 MODULE_PARM_DESC(nowait, "set to 1 for no wait state");
126
127 /*
128  * Transmit timeout, default 5 seconds.
129  */
130 static int watchdog = 1000;
131 module_param(watchdog, int, 0400);
132 MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
133
134 MODULE_LICENSE("GPL");
135
136 /*
137  * The internal workings of the driver.  If you are changing anything
138  * here with the SMC stuff, you should have the datasheet and know
139  * what you are doing.
140  */
141 #define CARDNAME "smc91x"
142
143 /*
144  * Use power-down feature of the chip
145  */
146 #define POWER_DOWN              1
147
148 /*
149  * Wait time for memory to be free.  This probably shouldn't be
150  * tuned that much, as waiting for this means nothing else happens
151  * in the system
152  */
153 #define MEMORY_WAIT_TIME        16
154
155 /*
156  * The maximum number of processing loops allowed for each call to the
157  * IRQ handler.
158  */
159 #define MAX_IRQ_LOOPS           8
160
161 /*
162  * This selects whether TX packets are sent one by one to the SMC91x internal
163  * memory and throttled until transmission completes.  This may prevent
164  * RX overruns a litle by keeping much of the memory free for RX packets
165  * but to the expense of reduced TX throughput and increased IRQ overhead.
166  * Note this is not a cure for a too slow data bus or too high IRQ latency.
167  */
168 #define THROTTLE_TX_PKTS        0
169
170 /*
171  * The MII clock high/low times.  2x this number gives the MII clock period
172  * in microseconds. (was 50, but this gives 6.4ms for each MII transaction!)
173  */
174 #define MII_DELAY               1
175
176 #if SMC_DEBUG > 0
177 #define DBG(n, args...)                                 \
178         do {                                            \
179                 if (SMC_DEBUG >= (n))                   \
180                         printk(args);   \
181         } while (0)
182
183 #define PRINTK(args...)   printk(args)
184 #else
185 #define DBG(n, args...)   do { } while(0)
186 #define PRINTK(args...)   printk(KERN_DEBUG args)
187 #endif
188
189 #if SMC_DEBUG > 3
190 static void PRINT_PKT(u_char *buf, int length)
191 {
192         int i;
193         int remainder;
194         int lines;
195
196         lines = length / 16;
197         remainder = length % 16;
198
199         for (i = 0; i < lines ; i ++) {
200                 int cur;
201                 for (cur = 0; cur < 8; cur++) {
202                         u_char a, b;
203                         a = *buf++;
204                         b = *buf++;
205                         printk("%02x%02x ", a, b);
206                 }
207                 printk("\n");
208         }
209         for (i = 0; i < remainder/2 ; i++) {
210                 u_char a, b;
211                 a = *buf++;
212                 b = *buf++;
213                 printk("%02x%02x ", a, b);
214         }
215         printk("\n");
216 }
217 #else
218 #define PRINT_PKT(x...)  do { } while(0)
219 #endif
220
221
222 /* this enables an interrupt in the interrupt mask register */
223 #define SMC_ENABLE_INT(lp, x) do {                                      \
224         unsigned char mask;                                             \
225         spin_lock_irq(&lp->lock);                                       \
226         mask = SMC_GET_INT_MASK(lp);                                    \
227         mask |= (x);                                                    \
228         SMC_SET_INT_MASK(lp, mask);                                     \
229         spin_unlock_irq(&lp->lock);                                     \
230 } while (0)
231
232 /* this disables an interrupt from the interrupt mask register */
233 #define SMC_DISABLE_INT(lp, x) do {                                     \
234         unsigned char mask;                                             \
235         spin_lock_irq(&lp->lock);                                       \
236         mask = SMC_GET_INT_MASK(lp);                                    \
237         mask &= ~(x);                                                   \
238         SMC_SET_INT_MASK(lp, mask);                                     \
239         spin_unlock_irq(&lp->lock);                                     \
240 } while (0)
241
242 /*
243  * Wait while MMU is busy.  This is usually in the order of a few nanosecs
244  * if at all, but let's avoid deadlocking the system if the hardware
245  * decides to go south.
246  */
247 #define SMC_WAIT_MMU_BUSY(lp) do {                                      \
248         if (unlikely(SMC_GET_MMU_CMD(lp) & MC_BUSY)) {          \
249                 unsigned long timeout = jiffies + 2;                    \
250                 while (SMC_GET_MMU_CMD(lp) & MC_BUSY) {         \
251                         if (time_after(jiffies, timeout)) {             \
252                                 printk("%s: timeout %s line %d\n",      \
253                                         dev->name, __FILE__, __LINE__); \
254                                 break;                                  \
255                         }                                               \
256                         cpu_relax();                                    \
257                 }                                                       \
258         }                                                               \
259 } while (0)
260
261
262 /*
263  * this does a soft reset on the device
264  */
265 static void smc_reset(struct net_device *dev)
266 {
267         struct smc_local *lp = netdev_priv(dev);
268         void __iomem *ioaddr = lp->base;
269         unsigned int ctl, cfg;
270         struct sk_buff *pending_skb;
271
272         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
273
274         /* Disable all interrupts, block TX tasklet */
275         spin_lock_irq(&lp->lock);
276         SMC_SELECT_BANK(lp, 2);
277         SMC_SET_INT_MASK(lp, 0);
278         pending_skb = lp->pending_tx_skb;
279         lp->pending_tx_skb = NULL;
280         spin_unlock_irq(&lp->lock);
281
282         /* free any pending tx skb */
283         if (pending_skb) {
284                 dev_kfree_skb(pending_skb);
285                 dev->stats.tx_errors++;
286                 dev->stats.tx_aborted_errors++;
287         }
288
289         /*
290          * This resets the registers mostly to defaults, but doesn't
291          * affect EEPROM.  That seems unnecessary
292          */
293         SMC_SELECT_BANK(lp, 0);
294         SMC_SET_RCR(lp, RCR_SOFTRST);
295
296         /*
297          * Setup the Configuration Register
298          * This is necessary because the CONFIG_REG is not affected
299          * by a soft reset
300          */
301         SMC_SELECT_BANK(lp, 1);
302
303         cfg = CONFIG_DEFAULT;
304
305         /*
306          * Setup for fast accesses if requested.  If the card/system
307          * can't handle it then there will be no recovery except for
308          * a hard reset or power cycle
309          */
310         if (nowait)
311                 cfg |= CONFIG_NO_WAIT;
312
313         /*
314          * Release from possible power-down state
315          * Configuration register is not affected by Soft Reset
316          */
317         cfg |= CONFIG_EPH_POWER_EN;
318
319         SMC_SET_CONFIG(lp, cfg);
320
321         /* this should pause enough for the chip to be happy */
322         /*
323          * elaborate?  What does the chip _need_? --jgarzik
324          *
325          * This seems to be undocumented, but something the original
326          * driver(s) have always done.  Suspect undocumented timing
327          * info/determined empirically. --rmk
328          */
329         udelay(1);
330
331         /* Disable transmit and receive functionality */
332         SMC_SELECT_BANK(lp, 0);
333         SMC_SET_RCR(lp, RCR_CLEAR);
334         SMC_SET_TCR(lp, TCR_CLEAR);
335
336         SMC_SELECT_BANK(lp, 1);
337         ctl = SMC_GET_CTL(lp) | CTL_LE_ENABLE;
338
339         /*
340          * Set the control register to automatically release successfully
341          * transmitted packets, to make the best use out of our limited
342          * memory
343          */
344         if(!THROTTLE_TX_PKTS)
345                 ctl |= CTL_AUTO_RELEASE;
346         else
347                 ctl &= ~CTL_AUTO_RELEASE;
348         SMC_SET_CTL(lp, ctl);
349
350         /* Reset the MMU */
351         SMC_SELECT_BANK(lp, 2);
352         SMC_SET_MMU_CMD(lp, MC_RESET);
353         SMC_WAIT_MMU_BUSY(lp);
354 }
355
356 /*
357  * Enable Interrupts, Receive, and Transmit
358  */
359 static void smc_enable(struct net_device *dev)
360 {
361         struct smc_local *lp = netdev_priv(dev);
362         void __iomem *ioaddr = lp->base;
363         int mask;
364
365         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
366
367         /* see the header file for options in TCR/RCR DEFAULT */
368         SMC_SELECT_BANK(lp, 0);
369         SMC_SET_TCR(lp, lp->tcr_cur_mode);
370         SMC_SET_RCR(lp, lp->rcr_cur_mode);
371
372         SMC_SELECT_BANK(lp, 1);
373         SMC_SET_MAC_ADDR(lp, dev->dev_addr);
374
375         /* now, enable interrupts */
376         mask = IM_EPH_INT|IM_RX_OVRN_INT|IM_RCV_INT;
377         if (lp->version >= (CHIP_91100 << 4))
378                 mask |= IM_MDINT;
379         SMC_SELECT_BANK(lp, 2);
380         SMC_SET_INT_MASK(lp, mask);
381
382         /*
383          * From this point the register bank must _NOT_ be switched away
384          * to something else than bank 2 without proper locking against
385          * races with any tasklet or interrupt handlers until smc_shutdown()
386          * or smc_reset() is called.
387          */
388 }
389
390 /*
391  * this puts the device in an inactive state
392  */
393 static void smc_shutdown(struct net_device *dev)
394 {
395         struct smc_local *lp = netdev_priv(dev);
396         void __iomem *ioaddr = lp->base;
397         struct sk_buff *pending_skb;
398
399         DBG(2, "%s: %s\n", CARDNAME, __FUNCTION__);
400
401         /* no more interrupts for me */
402         spin_lock_irq(&lp->lock);
403         SMC_SELECT_BANK(lp, 2);
404         SMC_SET_INT_MASK(lp, 0);
405         pending_skb = lp->pending_tx_skb;
406         lp->pending_tx_skb = NULL;
407         spin_unlock_irq(&lp->lock);
408         if (pending_skb)
409                 dev_kfree_skb(pending_skb);
410
411         /* and tell the card to stay away from that nasty outside world */
412         SMC_SELECT_BANK(lp, 0);
413         SMC_SET_RCR(lp, RCR_CLEAR);
414         SMC_SET_TCR(lp, TCR_CLEAR);
415
416 #ifdef POWER_DOWN
417         /* finally, shut the chip down */
418         SMC_SELECT_BANK(lp, 1);
419         SMC_SET_CONFIG(lp, SMC_GET_CONFIG(lp) & ~CONFIG_EPH_POWER_EN);
420 #endif
421 }
422
423 /*
424  * This is the procedure to handle the receipt of a packet.
425  */
426 static inline void  smc_rcv(struct net_device *dev)
427 {
428         struct smc_local *lp = netdev_priv(dev);
429         void __iomem *ioaddr = lp->base;
430         unsigned int packet_number, status, packet_len;
431
432         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
433
434         packet_number = SMC_GET_RXFIFO(lp);
435         if (unlikely(packet_number & RXFIFO_REMPTY)) {
436                 PRINTK("%s: smc_rcv with nothing on FIFO.\n", dev->name);
437                 return;
438         }
439
440         /* read from start of packet */
441         SMC_SET_PTR(lp, PTR_READ | PTR_RCV | PTR_AUTOINC);
442
443         /* First two words are status and packet length */
444         SMC_GET_PKT_HDR(lp, status, packet_len);
445         packet_len &= 0x07ff;  /* mask off top bits */
446         DBG(2, "%s: RX PNR 0x%x STATUS 0x%04x LENGTH 0x%04x (%d)\n",
447                 dev->name, packet_number, status,
448                 packet_len, packet_len);
449
450         if (unlikely(packet_len == 0 && !(status & RS_ERRORS))) {
451                 printk(KERN_ERR "%s: bad memory timings: rxlen %u status %x\n",
452                         dev->name, packet_len, status);
453                 status |= RS_TOOSHORT;
454         }
455         back:
456         if (unlikely(packet_len < 6 || status & RS_ERRORS)) {
457                 if (status & RS_TOOLONG && packet_len <= (1514 + 4 + 6)) {
458                         /* accept VLAN packets */
459                         status &= ~RS_TOOLONG;
460                         goto back;
461                 }
462                 if (packet_len < 6) {
463                         /* bloody hardware */
464                         printk(KERN_ERR "%s: fubar (rxlen %u status %x\n",
465                                         dev->name, packet_len, status);
466                         status |= RS_TOOSHORT;
467                 }
468                 SMC_WAIT_MMU_BUSY(lp);
469                 SMC_SET_MMU_CMD(lp, MC_RELEASE);
470                 dev->stats.rx_errors++;
471                 if (status & RS_ALGNERR)
472                         dev->stats.rx_frame_errors++;
473                 if (status & (RS_TOOSHORT | RS_TOOLONG))
474                         dev->stats.rx_length_errors++;
475                 if (status & RS_BADCRC)
476                         dev->stats.rx_crc_errors++;
477         } else {
478                 struct sk_buff *skb;
479                 unsigned char *data;
480                 unsigned int data_len;
481
482                 /* set multicast stats */
483                 if (status & RS_MULTICAST)
484                         dev->stats.multicast++;
485
486                 /*
487                  * Actual payload is packet_len - 6 (or 5 if odd byte).
488                  * We want skb_reserve(2) and the final ctrl word
489                  * (2 bytes, possibly containing the payload odd byte).
490                  * Furthermore, we add 2 bytes to allow rounding up to
491                  * multiple of 4 bytes on 32 bit buses.
492                  * Hence packet_len - 6 + 2 + 2 + 2.
493                  */
494                 skb = dev_alloc_skb(packet_len);
495                 if (unlikely(skb == NULL)) {
496                         printk(KERN_NOTICE "%s: Low memory, packet dropped.\n",
497                                 dev->name);
498                         SMC_WAIT_MMU_BUSY(lp);
499                         SMC_SET_MMU_CMD(lp, MC_RELEASE);
500                         dev->stats.rx_dropped++;
501                         return;
502                 }
503
504                 /* Align IP header to 32 bits */
505                 skb_reserve(skb, 2);
506
507                 /* BUG: the LAN91C111 rev A never sets this bit. Force it. */
508                 if (lp->version == 0x90)
509                         status |= RS_ODDFRAME;
510
511                 /*
512                  * If odd length: packet_len - 5,
513                  * otherwise packet_len - 6.
514                  * With the trailing ctrl byte it's packet_len - 4.
515                  */
516                 data_len = packet_len - ((status & RS_ODDFRAME) ? 5 : 6);
517                 data = skb_put(skb, data_len);
518                 SMC_PULL_DATA(lp, data, packet_len - 4);
519
520                 SMC_WAIT_MMU_BUSY(lp);
521                 SMC_SET_MMU_CMD(lp, MC_RELEASE);
522
523                 PRINT_PKT(data, packet_len - 4);
524
525                 dev->last_rx = jiffies;
526                 skb->protocol = eth_type_trans(skb, dev);
527                 netif_rx(skb);
528                 dev->stats.rx_packets++;
529                 dev->stats.rx_bytes += data_len;
530         }
531 }
532
533 #ifdef CONFIG_SMP
534 /*
535  * On SMP we have the following problem:
536  *
537  *      A = smc_hardware_send_pkt()
538  *      B = smc_hard_start_xmit()
539  *      C = smc_interrupt()
540  *
541  * A and B can never be executed simultaneously.  However, at least on UP,
542  * it is possible (and even desirable) for C to interrupt execution of
543  * A or B in order to have better RX reliability and avoid overruns.
544  * C, just like A and B, must have exclusive access to the chip and
545  * each of them must lock against any other concurrent access.
546  * Unfortunately this is not possible to have C suspend execution of A or
547  * B taking place on another CPU. On UP this is no an issue since A and B
548  * are run from softirq context and C from hard IRQ context, and there is
549  * no other CPU where concurrent access can happen.
550  * If ever there is a way to force at least B and C to always be executed
551  * on the same CPU then we could use read/write locks to protect against
552  * any other concurrent access and C would always interrupt B. But life
553  * isn't that easy in a SMP world...
554  */
555 #define smc_special_trylock(lock)                                       \
556 ({                                                                      \
557         int __ret;                                                      \
558         local_irq_disable();                                            \
559         __ret = spin_trylock(lock);                                     \
560         if (!__ret)                                                     \
561                 local_irq_enable();                                     \
562         __ret;                                                          \
563 })
564 #define smc_special_lock(lock)          spin_lock_irq(lock)
565 #define smc_special_unlock(lock)        spin_unlock_irq(lock)
566 #else
567 #define smc_special_trylock(lock)       (1)
568 #define smc_special_lock(lock)          do { } while (0)
569 #define smc_special_unlock(lock)        do { } while (0)
570 #endif
571
572 /*
573  * This is called to actually send a packet to the chip.
574  */
575 static void smc_hardware_send_pkt(unsigned long data)
576 {
577         struct net_device *dev = (struct net_device *)data;
578         struct smc_local *lp = netdev_priv(dev);
579         void __iomem *ioaddr = lp->base;
580         struct sk_buff *skb;
581         unsigned int packet_no, len;
582         unsigned char *buf;
583
584         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
585
586         if (!smc_special_trylock(&lp->lock)) {
587                 netif_stop_queue(dev);
588                 tasklet_schedule(&lp->tx_task);
589                 return;
590         }
591
592         skb = lp->pending_tx_skb;
593         if (unlikely(!skb)) {
594                 smc_special_unlock(&lp->lock);
595                 return;
596         }
597         lp->pending_tx_skb = NULL;
598
599         packet_no = SMC_GET_AR(lp);
600         if (unlikely(packet_no & AR_FAILED)) {
601                 printk("%s: Memory allocation failed.\n", dev->name);
602                 dev->stats.tx_errors++;
603                 dev->stats.tx_fifo_errors++;
604                 smc_special_unlock(&lp->lock);
605                 goto done;
606         }
607
608         /* point to the beginning of the packet */
609         SMC_SET_PN(lp, packet_no);
610         SMC_SET_PTR(lp, PTR_AUTOINC);
611
612         buf = skb->data;
613         len = skb->len;
614         DBG(2, "%s: TX PNR 0x%x LENGTH 0x%04x (%d) BUF 0x%p\n",
615                 dev->name, packet_no, len, len, buf);
616         PRINT_PKT(buf, len);
617
618         /*
619          * Send the packet length (+6 for status words, length, and ctl.
620          * The card will pad to 64 bytes with zeroes if packet is too small.
621          */
622         SMC_PUT_PKT_HDR(lp, 0, len + 6);
623
624         /* send the actual data */
625         SMC_PUSH_DATA(lp, buf, len & ~1);
626
627         /* Send final ctl word with the last byte if there is one */
628         SMC_outw(((len & 1) ? (0x2000 | buf[len-1]) : 0), ioaddr, DATA_REG(lp));
629
630         /*
631          * If THROTTLE_TX_PKTS is set, we stop the queue here. This will
632          * have the effect of having at most one packet queued for TX
633          * in the chip's memory at all time.
634          *
635          * If THROTTLE_TX_PKTS is not set then the queue is stopped only
636          * when memory allocation (MC_ALLOC) does not succeed right away.
637          */
638         if (THROTTLE_TX_PKTS)
639                 netif_stop_queue(dev);
640
641         /* queue the packet for TX */
642         SMC_SET_MMU_CMD(lp, MC_ENQUEUE);
643         smc_special_unlock(&lp->lock);
644
645         dev->trans_start = jiffies;
646         dev->stats.tx_packets++;
647         dev->stats.tx_bytes += len;
648
649         SMC_ENABLE_INT(lp, IM_TX_INT | IM_TX_EMPTY_INT);
650
651 done:   if (!THROTTLE_TX_PKTS)
652                 netif_wake_queue(dev);
653
654         dev_kfree_skb(skb);
655 }
656
657 /*
658  * Since I am not sure if I will have enough room in the chip's ram
659  * to store the packet, I call this routine which either sends it
660  * now, or set the card to generates an interrupt when ready
661  * for the packet.
662  */
663 static int smc_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
664 {
665         struct smc_local *lp = netdev_priv(dev);
666         void __iomem *ioaddr = lp->base;
667         unsigned int numPages, poll_count, status;
668
669         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
670
671         BUG_ON(lp->pending_tx_skb != NULL);
672
673         /*
674          * The MMU wants the number of pages to be the number of 256 bytes
675          * 'pages', minus 1 (since a packet can't ever have 0 pages :))
676          *
677          * The 91C111 ignores the size bits, but earlier models don't.
678          *
679          * Pkt size for allocating is data length +6 (for additional status
680          * words, length and ctl)
681          *
682          * If odd size then last byte is included in ctl word.
683          */
684         numPages = ((skb->len & ~1) + (6 - 1)) >> 8;
685         if (unlikely(numPages > 7)) {
686                 printk("%s: Far too big packet error.\n", dev->name);
687                 dev->stats.tx_errors++;
688                 dev->stats.tx_dropped++;
689                 dev_kfree_skb(skb);
690                 return 0;
691         }
692
693         smc_special_lock(&lp->lock);
694
695         /* now, try to allocate the memory */
696         SMC_SET_MMU_CMD(lp, MC_ALLOC | numPages);
697
698         /*
699          * Poll the chip for a short amount of time in case the
700          * allocation succeeds quickly.
701          */
702         poll_count = MEMORY_WAIT_TIME;
703         do {
704                 status = SMC_GET_INT(lp);
705                 if (status & IM_ALLOC_INT) {
706                         SMC_ACK_INT(lp, IM_ALLOC_INT);
707                         break;
708                 }
709         } while (--poll_count);
710
711         smc_special_unlock(&lp->lock);
712
713         lp->pending_tx_skb = skb;
714         if (!poll_count) {
715                 /* oh well, wait until the chip finds memory later */
716                 netif_stop_queue(dev);
717                 DBG(2, "%s: TX memory allocation deferred.\n", dev->name);
718                 SMC_ENABLE_INT(lp, IM_ALLOC_INT);
719         } else {
720                 /*
721                  * Allocation succeeded: push packet to the chip's own memory
722                  * immediately.
723                  */
724                 smc_hardware_send_pkt((unsigned long)dev);
725         }
726
727         return 0;
728 }
729
730 /*
731  * This handles a TX interrupt, which is only called when:
732  * - a TX error occurred, or
733  * - CTL_AUTO_RELEASE is not set and TX of a packet completed.
734  */
735 static void smc_tx(struct net_device *dev)
736 {
737         struct smc_local *lp = netdev_priv(dev);
738         void __iomem *ioaddr = lp->base;
739         unsigned int saved_packet, packet_no, tx_status, pkt_len;
740
741         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
742
743         /* If the TX FIFO is empty then nothing to do */
744         packet_no = SMC_GET_TXFIFO(lp);
745         if (unlikely(packet_no & TXFIFO_TEMPTY)) {
746                 PRINTK("%s: smc_tx with nothing on FIFO.\n", dev->name);
747                 return;
748         }
749
750         /* select packet to read from */
751         saved_packet = SMC_GET_PN(lp);
752         SMC_SET_PN(lp, packet_no);
753
754         /* read the first word (status word) from this packet */
755         SMC_SET_PTR(lp, PTR_AUTOINC | PTR_READ);
756         SMC_GET_PKT_HDR(lp, tx_status, pkt_len);
757         DBG(2, "%s: TX STATUS 0x%04x PNR 0x%02x\n",
758                 dev->name, tx_status, packet_no);
759
760         if (!(tx_status & ES_TX_SUC))
761                 dev->stats.tx_errors++;
762
763         if (tx_status & ES_LOSTCARR)
764                 dev->stats.tx_carrier_errors++;
765
766         if (tx_status & (ES_LATCOL | ES_16COL)) {
767                 PRINTK("%s: %s occurred on last xmit\n", dev->name,
768                        (tx_status & ES_LATCOL) ?
769                         "late collision" : "too many collisions");
770                 dev->stats.tx_window_errors++;
771                 if (!(dev->stats.tx_window_errors & 63) && net_ratelimit()) {
772                         printk(KERN_INFO "%s: unexpectedly large number of "
773                                "bad collisions. Please check duplex "
774                                "setting.\n", dev->name);
775                 }
776         }
777
778         /* kill the packet */
779         SMC_WAIT_MMU_BUSY(lp);
780         SMC_SET_MMU_CMD(lp, MC_FREEPKT);
781
782         /* Don't restore Packet Number Reg until busy bit is cleared */
783         SMC_WAIT_MMU_BUSY(lp);
784         SMC_SET_PN(lp, saved_packet);
785
786         /* re-enable transmit */
787         SMC_SELECT_BANK(lp, 0);
788         SMC_SET_TCR(lp, lp->tcr_cur_mode);
789         SMC_SELECT_BANK(lp, 2);
790 }
791
792
793 /*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/
794
795 static void smc_mii_out(struct net_device *dev, unsigned int val, int bits)
796 {
797         struct smc_local *lp = netdev_priv(dev);
798         void __iomem *ioaddr = lp->base;
799         unsigned int mii_reg, mask;
800
801         mii_reg = SMC_GET_MII(lp) & ~(MII_MCLK | MII_MDOE | MII_MDO);
802         mii_reg |= MII_MDOE;
803
804         for (mask = 1 << (bits - 1); mask; mask >>= 1) {
805                 if (val & mask)
806                         mii_reg |= MII_MDO;
807                 else
808                         mii_reg &= ~MII_MDO;
809
810                 SMC_SET_MII(lp, mii_reg);
811                 udelay(MII_DELAY);
812                 SMC_SET_MII(lp, mii_reg | MII_MCLK);
813                 udelay(MII_DELAY);
814         }
815 }
816
817 static unsigned int smc_mii_in(struct net_device *dev, int bits)
818 {
819         struct smc_local *lp = netdev_priv(dev);
820         void __iomem *ioaddr = lp->base;
821         unsigned int mii_reg, mask, val;
822
823         mii_reg = SMC_GET_MII(lp) & ~(MII_MCLK | MII_MDOE | MII_MDO);
824         SMC_SET_MII(lp, mii_reg);
825
826         for (mask = 1 << (bits - 1), val = 0; mask; mask >>= 1) {
827                 if (SMC_GET_MII(lp) & MII_MDI)
828                         val |= mask;
829
830                 SMC_SET_MII(lp, mii_reg);
831                 udelay(MII_DELAY);
832                 SMC_SET_MII(lp, mii_reg | MII_MCLK);
833                 udelay(MII_DELAY);
834         }
835
836         return val;
837 }
838
839 /*
840  * Reads a register from the MII Management serial interface
841  */
842 static int smc_phy_read(struct net_device *dev, int phyaddr, int phyreg)
843 {
844         struct smc_local *lp = netdev_priv(dev);
845         void __iomem *ioaddr = lp->base;
846         unsigned int phydata;
847
848         SMC_SELECT_BANK(lp, 3);
849
850         /* Idle - 32 ones */
851         smc_mii_out(dev, 0xffffffff, 32);
852
853         /* Start code (01) + read (10) + phyaddr + phyreg */
854         smc_mii_out(dev, 6 << 10 | phyaddr << 5 | phyreg, 14);
855
856         /* Turnaround (2bits) + phydata */
857         phydata = smc_mii_in(dev, 18);
858
859         /* Return to idle state */
860         SMC_SET_MII(lp, SMC_GET_MII(lp) & ~(MII_MCLK|MII_MDOE|MII_MDO));
861
862         DBG(3, "%s: phyaddr=0x%x, phyreg=0x%x, phydata=0x%x\n",
863                 __FUNCTION__, phyaddr, phyreg, phydata);
864
865         SMC_SELECT_BANK(lp, 2);
866         return phydata;
867 }
868
869 /*
870  * Writes a register to the MII Management serial interface
871  */
872 static void smc_phy_write(struct net_device *dev, int phyaddr, int phyreg,
873                           int phydata)
874 {
875         struct smc_local *lp = netdev_priv(dev);
876         void __iomem *ioaddr = lp->base;
877
878         SMC_SELECT_BANK(lp, 3);
879
880         /* Idle - 32 ones */
881         smc_mii_out(dev, 0xffffffff, 32);
882
883         /* Start code (01) + write (01) + phyaddr + phyreg + turnaround + phydata */
884         smc_mii_out(dev, 5 << 28 | phyaddr << 23 | phyreg << 18 | 2 << 16 | phydata, 32);
885
886         /* Return to idle state */
887         SMC_SET_MII(lp, SMC_GET_MII(lp) & ~(MII_MCLK|MII_MDOE|MII_MDO));
888
889         DBG(3, "%s: phyaddr=0x%x, phyreg=0x%x, phydata=0x%x\n",
890                 __FUNCTION__, phyaddr, phyreg, phydata);
891
892         SMC_SELECT_BANK(lp, 2);
893 }
894
895 /*
896  * Finds and reports the PHY address
897  */
898 static void smc_phy_detect(struct net_device *dev)
899 {
900         struct smc_local *lp = netdev_priv(dev);
901         int phyaddr;
902
903         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
904
905         lp->phy_type = 0;
906
907         /*
908          * Scan all 32 PHY addresses if necessary, starting at
909          * PHY#1 to PHY#31, and then PHY#0 last.
910          */
911         for (phyaddr = 1; phyaddr < 33; ++phyaddr) {
912                 unsigned int id1, id2;
913
914                 /* Read the PHY identifiers */
915                 id1 = smc_phy_read(dev, phyaddr & 31, MII_PHYSID1);
916                 id2 = smc_phy_read(dev, phyaddr & 31, MII_PHYSID2);
917
918                 DBG(3, "%s: phy_id1=0x%x, phy_id2=0x%x\n",
919                         dev->name, id1, id2);
920
921                 /* Make sure it is a valid identifier */
922                 if (id1 != 0x0000 && id1 != 0xffff && id1 != 0x8000 &&
923                     id2 != 0x0000 && id2 != 0xffff && id2 != 0x8000) {
924                         /* Save the PHY's address */
925                         lp->mii.phy_id = phyaddr & 31;
926                         lp->phy_type = id1 << 16 | id2;
927                         break;
928                 }
929         }
930 }
931
932 /*
933  * Sets the PHY to a configuration as determined by the user
934  */
935 static int smc_phy_fixed(struct net_device *dev)
936 {
937         struct smc_local *lp = netdev_priv(dev);
938         void __iomem *ioaddr = lp->base;
939         int phyaddr = lp->mii.phy_id;
940         int bmcr, cfg1;
941
942         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
943
944         /* Enter Link Disable state */
945         cfg1 = smc_phy_read(dev, phyaddr, PHY_CFG1_REG);
946         cfg1 |= PHY_CFG1_LNKDIS;
947         smc_phy_write(dev, phyaddr, PHY_CFG1_REG, cfg1);
948
949         /*
950          * Set our fixed capabilities
951          * Disable auto-negotiation
952          */
953         bmcr = 0;
954
955         if (lp->ctl_rfduplx)
956                 bmcr |= BMCR_FULLDPLX;
957
958         if (lp->ctl_rspeed == 100)
959                 bmcr |= BMCR_SPEED100;
960
961         /* Write our capabilities to the phy control register */
962         smc_phy_write(dev, phyaddr, MII_BMCR, bmcr);
963
964         /* Re-Configure the Receive/Phy Control register */
965         SMC_SELECT_BANK(lp, 0);
966         SMC_SET_RPC(lp, lp->rpc_cur_mode);
967         SMC_SELECT_BANK(lp, 2);
968
969         return 1;
970 }
971
972 /*
973  * smc_phy_reset - reset the phy
974  * @dev: net device
975  * @phy: phy address
976  *
977  * Issue a software reset for the specified PHY and
978  * wait up to 100ms for the reset to complete.  We should
979  * not access the PHY for 50ms after issuing the reset.
980  *
981  * The time to wait appears to be dependent on the PHY.
982  *
983  * Must be called with lp->lock locked.
984  */
985 static int smc_phy_reset(struct net_device *dev, int phy)
986 {
987         struct smc_local *lp = netdev_priv(dev);
988         unsigned int bmcr;
989         int timeout;
990
991         smc_phy_write(dev, phy, MII_BMCR, BMCR_RESET);
992
993         for (timeout = 2; timeout; timeout--) {
994                 spin_unlock_irq(&lp->lock);
995                 msleep(50);
996                 spin_lock_irq(&lp->lock);
997
998                 bmcr = smc_phy_read(dev, phy, MII_BMCR);
999                 if (!(bmcr & BMCR_RESET))
1000                         break;
1001         }
1002
1003         return bmcr & BMCR_RESET;
1004 }
1005
1006 /*
1007  * smc_phy_powerdown - powerdown phy
1008  * @dev: net device
1009  *
1010  * Power down the specified PHY
1011  */
1012 static void smc_phy_powerdown(struct net_device *dev)
1013 {
1014         struct smc_local *lp = netdev_priv(dev);
1015         unsigned int bmcr;
1016         int phy = lp->mii.phy_id;
1017
1018         if (lp->phy_type == 0)
1019                 return;
1020
1021         /* We need to ensure that no calls to smc_phy_configure are
1022            pending.
1023
1024            flush_scheduled_work() cannot be called because we are
1025            running with the netlink semaphore held (from
1026            devinet_ioctl()) and the pending work queue contains
1027            linkwatch_event() (scheduled by netif_carrier_off()
1028            above). linkwatch_event() also wants the netlink semaphore.
1029         */
1030         while(lp->work_pending)
1031                 yield();
1032
1033         bmcr = smc_phy_read(dev, phy, MII_BMCR);
1034         smc_phy_write(dev, phy, MII_BMCR, bmcr | BMCR_PDOWN);
1035 }
1036
1037 /*
1038  * smc_phy_check_media - check the media status and adjust TCR
1039  * @dev: net device
1040  * @init: set true for initialisation
1041  *
1042  * Select duplex mode depending on negotiation state.  This
1043  * also updates our carrier state.
1044  */
1045 static void smc_phy_check_media(struct net_device *dev, int init)
1046 {
1047         struct smc_local *lp = netdev_priv(dev);
1048         void __iomem *ioaddr = lp->base;
1049
1050         if (mii_check_media(&lp->mii, netif_msg_link(lp), init)) {
1051                 /* duplex state has changed */
1052                 if (lp->mii.full_duplex) {
1053                         lp->tcr_cur_mode |= TCR_SWFDUP;
1054                 } else {
1055                         lp->tcr_cur_mode &= ~TCR_SWFDUP;
1056                 }
1057
1058                 SMC_SELECT_BANK(lp, 0);
1059                 SMC_SET_TCR(lp, lp->tcr_cur_mode);
1060         }
1061 }
1062
1063 /*
1064  * Configures the specified PHY through the MII management interface
1065  * using Autonegotiation.
1066  * Calls smc_phy_fixed() if the user has requested a certain config.
1067  * If RPC ANEG bit is set, the media selection is dependent purely on
1068  * the selection by the MII (either in the MII BMCR reg or the result
1069  * of autonegotiation.)  If the RPC ANEG bit is cleared, the selection
1070  * is controlled by the RPC SPEED and RPC DPLX bits.
1071  */
1072 static void smc_phy_configure(struct work_struct *work)
1073 {
1074         struct smc_local *lp =
1075                 container_of(work, struct smc_local, phy_configure);
1076         struct net_device *dev = lp->dev;
1077         void __iomem *ioaddr = lp->base;
1078         int phyaddr = lp->mii.phy_id;
1079         int my_phy_caps; /* My PHY capabilities */
1080         int my_ad_caps; /* My Advertised capabilities */
1081         int status;
1082
1083         DBG(3, "%s:smc_program_phy()\n", dev->name);
1084
1085         spin_lock_irq(&lp->lock);
1086
1087         /*
1088          * We should not be called if phy_type is zero.
1089          */
1090         if (lp->phy_type == 0)
1091                 goto smc_phy_configure_exit;
1092
1093         if (smc_phy_reset(dev, phyaddr)) {
1094                 printk("%s: PHY reset timed out\n", dev->name);
1095                 goto smc_phy_configure_exit;
1096         }
1097
1098         /*
1099          * Enable PHY Interrupts (for register 18)
1100          * Interrupts listed here are disabled
1101          */
1102         smc_phy_write(dev, phyaddr, PHY_MASK_REG,
1103                 PHY_INT_LOSSSYNC | PHY_INT_CWRD | PHY_INT_SSD |
1104                 PHY_INT_ESD | PHY_INT_RPOL | PHY_INT_JAB |
1105                 PHY_INT_SPDDET | PHY_INT_DPLXDET);
1106
1107         /* Configure the Receive/Phy Control register */
1108         SMC_SELECT_BANK(lp, 0);
1109         SMC_SET_RPC(lp, lp->rpc_cur_mode);
1110
1111         /* If the user requested no auto neg, then go set his request */
1112         if (lp->mii.force_media) {
1113                 smc_phy_fixed(dev);
1114                 goto smc_phy_configure_exit;
1115         }
1116
1117         /* Copy our capabilities from MII_BMSR to MII_ADVERTISE */
1118         my_phy_caps = smc_phy_read(dev, phyaddr, MII_BMSR);
1119
1120         if (!(my_phy_caps & BMSR_ANEGCAPABLE)) {
1121                 printk(KERN_INFO "Auto negotiation NOT supported\n");
1122                 smc_phy_fixed(dev);
1123                 goto smc_phy_configure_exit;
1124         }
1125
1126         my_ad_caps = ADVERTISE_CSMA; /* I am CSMA capable */
1127
1128         if (my_phy_caps & BMSR_100BASE4)
1129                 my_ad_caps |= ADVERTISE_100BASE4;
1130         if (my_phy_caps & BMSR_100FULL)
1131                 my_ad_caps |= ADVERTISE_100FULL;
1132         if (my_phy_caps & BMSR_100HALF)
1133                 my_ad_caps |= ADVERTISE_100HALF;
1134         if (my_phy_caps & BMSR_10FULL)
1135                 my_ad_caps |= ADVERTISE_10FULL;
1136         if (my_phy_caps & BMSR_10HALF)
1137                 my_ad_caps |= ADVERTISE_10HALF;
1138
1139         /* Disable capabilities not selected by our user */
1140         if (lp->ctl_rspeed != 100)
1141                 my_ad_caps &= ~(ADVERTISE_100BASE4|ADVERTISE_100FULL|ADVERTISE_100HALF);
1142
1143         if (!lp->ctl_rfduplx)
1144                 my_ad_caps &= ~(ADVERTISE_100FULL|ADVERTISE_10FULL);
1145
1146         /* Update our Auto-Neg Advertisement Register */
1147         smc_phy_write(dev, phyaddr, MII_ADVERTISE, my_ad_caps);
1148         lp->mii.advertising = my_ad_caps;
1149
1150         /*
1151          * Read the register back.  Without this, it appears that when
1152          * auto-negotiation is restarted, sometimes it isn't ready and
1153          * the link does not come up.
1154          */
1155         status = smc_phy_read(dev, phyaddr, MII_ADVERTISE);
1156
1157         DBG(2, "%s: phy caps=%x\n", dev->name, my_phy_caps);
1158         DBG(2, "%s: phy advertised caps=%x\n", dev->name, my_ad_caps);
1159
1160         /* Restart auto-negotiation process in order to advertise my caps */
1161         smc_phy_write(dev, phyaddr, MII_BMCR, BMCR_ANENABLE | BMCR_ANRESTART);
1162
1163         smc_phy_check_media(dev, 1);
1164
1165 smc_phy_configure_exit:
1166         SMC_SELECT_BANK(lp, 2);
1167         spin_unlock_irq(&lp->lock);
1168         lp->work_pending = 0;
1169 }
1170
1171 /*
1172  * smc_phy_interrupt
1173  *
1174  * Purpose:  Handle interrupts relating to PHY register 18. This is
1175  *  called from the "hard" interrupt handler under our private spinlock.
1176  */
1177 static void smc_phy_interrupt(struct net_device *dev)
1178 {
1179         struct smc_local *lp = netdev_priv(dev);
1180         int phyaddr = lp->mii.phy_id;
1181         int phy18;
1182
1183         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
1184
1185         if (lp->phy_type == 0)
1186                 return;
1187
1188         for(;;) {
1189                 smc_phy_check_media(dev, 0);
1190
1191                 /* Read PHY Register 18, Status Output */
1192                 phy18 = smc_phy_read(dev, phyaddr, PHY_INT_REG);
1193                 if ((phy18 & PHY_INT_INT) == 0)
1194                         break;
1195         }
1196 }
1197
1198 /*--- END PHY CONTROL AND CONFIGURATION-------------------------------------*/
1199
1200 static void smc_10bt_check_media(struct net_device *dev, int init)
1201 {
1202         struct smc_local *lp = netdev_priv(dev);
1203         void __iomem *ioaddr = lp->base;
1204         unsigned int old_carrier, new_carrier;
1205
1206         old_carrier = netif_carrier_ok(dev) ? 1 : 0;
1207
1208         SMC_SELECT_BANK(lp, 0);
1209         new_carrier = (SMC_GET_EPH_STATUS(lp) & ES_LINK_OK) ? 1 : 0;
1210         SMC_SELECT_BANK(lp, 2);
1211
1212         if (init || (old_carrier != new_carrier)) {
1213                 if (!new_carrier) {
1214                         netif_carrier_off(dev);
1215                 } else {
1216                         netif_carrier_on(dev);
1217                 }
1218                 if (netif_msg_link(lp))
1219                         printk(KERN_INFO "%s: link %s\n", dev->name,
1220                                new_carrier ? "up" : "down");
1221         }
1222 }
1223
1224 static void smc_eph_interrupt(struct net_device *dev)
1225 {
1226         struct smc_local *lp = netdev_priv(dev);
1227         void __iomem *ioaddr = lp->base;
1228         unsigned int ctl;
1229
1230         smc_10bt_check_media(dev, 0);
1231
1232         SMC_SELECT_BANK(lp, 1);
1233         ctl = SMC_GET_CTL(lp);
1234         SMC_SET_CTL(lp, ctl & ~CTL_LE_ENABLE);
1235         SMC_SET_CTL(lp, ctl);
1236         SMC_SELECT_BANK(lp, 2);
1237 }
1238
1239 /*
1240  * This is the main routine of the driver, to handle the device when
1241  * it needs some attention.
1242  */
1243 static irqreturn_t smc_interrupt(int irq, void *dev_id)
1244 {
1245         struct net_device *dev = dev_id;
1246         struct smc_local *lp = netdev_priv(dev);
1247         void __iomem *ioaddr = lp->base;
1248         int status, mask, timeout, card_stats;
1249         int saved_pointer;
1250
1251         DBG(3, "%s: %s\n", dev->name, __FUNCTION__);
1252
1253         spin_lock(&lp->lock);
1254
1255         /* A preamble may be used when there is a potential race
1256          * between the interruptible transmit functions and this
1257          * ISR. */
1258         SMC_INTERRUPT_PREAMBLE;
1259
1260         saved_pointer = SMC_GET_PTR(lp);
1261         mask = SMC_GET_INT_MASK(lp);
1262         SMC_SET_INT_MASK(lp, 0);
1263
1264         /* set a timeout value, so I don't stay here forever */
1265         timeout = MAX_IRQ_LOOPS;
1266
1267         do {
1268                 status = SMC_GET_INT(lp);
1269
1270                 DBG(2, "%s: INT 0x%02x MASK 0x%02x MEM 0x%04x FIFO 0x%04x\n",
1271                         dev->name, status, mask,
1272                         ({ int meminfo; SMC_SELECT_BANK(lp, 0);
1273                            meminfo = SMC_GET_MIR(lp);
1274                            SMC_SELECT_BANK(lp, 2); meminfo; }),
1275                         SMC_GET_FIFO(lp));
1276
1277                 status &= mask;
1278                 if (!status)
1279                         break;
1280
1281                 if (status & IM_TX_INT) {
1282                         /* do this before RX as it will free memory quickly */
1283                         DBG(3, "%s: TX int\n", dev->name);
1284                         smc_tx(dev);
1285                         SMC_ACK_INT(lp, IM_TX_INT);
1286                         if (THROTTLE_TX_PKTS)
1287                                 netif_wake_queue(dev);
1288                 } else if (status & IM_RCV_INT) {
1289                         DBG(3, "%s: RX irq\n", dev->name);
1290                         smc_rcv(dev);
1291                 } else if (status & IM_ALLOC_INT) {
1292                         DBG(3, "%s: Allocation irq\n", dev->name);
1293                         tasklet_hi_schedule(&lp->tx_task);
1294                         mask &= ~IM_ALLOC_INT;
1295                 } else if (status & IM_TX_EMPTY_INT) {
1296                         DBG(3, "%s: TX empty\n", dev->name);
1297                         mask &= ~IM_TX_EMPTY_INT;
1298
1299                         /* update stats */
1300                         SMC_SELECT_BANK(lp, 0);
1301                         card_stats = SMC_GET_COUNTER(lp);
1302                         SMC_SELECT_BANK(lp, 2);
1303
1304                         /* single collisions */
1305                         dev->stats.collisions += card_stats & 0xF;
1306                         card_stats >>= 4;
1307
1308                         /* multiple collisions */
1309                         dev->stats.collisions += card_stats & 0xF;
1310                 } else if (status & IM_RX_OVRN_INT) {
1311                         DBG(1, "%s: RX overrun (EPH_ST 0x%04x)\n", dev->name,
1312                                ({ int eph_st; SMC_SELECT_BANK(lp, 0);
1313                                   eph_st = SMC_GET_EPH_STATUS(lp);
1314                                   SMC_SELECT_BANK(lp, 2); eph_st; }));
1315                         SMC_ACK_INT(lp, IM_RX_OVRN_INT);
1316                         dev->stats.rx_errors++;
1317                         dev->stats.rx_fifo_errors++;
1318                 } else if (status & IM_EPH_INT) {
1319                         smc_eph_interrupt(dev);
1320                 } else if (status & IM_MDINT) {
1321                         SMC_ACK_INT(lp, IM_MDINT);
1322                         smc_phy_interrupt(dev);
1323                 } else if (status & IM_ERCV_INT) {
1324                         SMC_ACK_INT(lp, IM_ERCV_INT);
1325                         PRINTK("%s: UNSUPPORTED: ERCV INTERRUPT \n", dev->name);
1326                 }
1327         } while (--timeout);
1328
1329         /* restore register states */
1330         SMC_SET_PTR(lp, saved_pointer);
1331         SMC_SET_INT_MASK(lp, mask);
1332         spin_unlock(&lp->lock);
1333
1334 #ifndef CONFIG_NET_POLL_CONTROLLER
1335         if (timeout == MAX_IRQ_LOOPS)
1336                 PRINTK("%s: spurious interrupt (mask = 0x%02x)\n",
1337                        dev->name, mask);
1338 #endif
1339         DBG(3, "%s: Interrupt done (%d loops)\n",
1340                dev->name, MAX_IRQ_LOOPS - timeout);
1341
1342         /*
1343          * We return IRQ_HANDLED unconditionally here even if there was
1344          * nothing to do.  There is a possibility that a packet might
1345          * get enqueued into the chip right after TX_EMPTY_INT is raised
1346          * but just before the CPU acknowledges the IRQ.
1347          * Better take an unneeded IRQ in some occasions than complexifying
1348          * the code for all cases.
1349          */
1350         return IRQ_HANDLED;
1351 }
1352
1353 #ifdef CONFIG_NET_POLL_CONTROLLER
1354 /*
1355  * Polling receive - used by netconsole and other diagnostic tools
1356  * to allow network i/o with interrupts disabled.
1357  */
1358 static void smc_poll_controller(struct net_device *dev)
1359 {
1360         disable_irq(dev->irq);
1361         smc_interrupt(dev->irq, dev);
1362         enable_irq(dev->irq);
1363 }
1364 #endif
1365
1366 /* Our watchdog timed out. Called by the networking layer */
1367 static void smc_timeout(struct net_device *dev)
1368 {
1369         struct smc_local *lp = netdev_priv(dev);
1370         void __iomem *ioaddr = lp->base;
1371         int status, mask, eph_st, meminfo, fifo;
1372
1373         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
1374
1375         spin_lock_irq(&lp->lock);
1376         status = SMC_GET_INT(lp);
1377         mask = SMC_GET_INT_MASK(lp);
1378         fifo = SMC_GET_FIFO(lp);
1379         SMC_SELECT_BANK(lp, 0);
1380         eph_st = SMC_GET_EPH_STATUS(lp);
1381         meminfo = SMC_GET_MIR(lp);
1382         SMC_SELECT_BANK(lp, 2);
1383         spin_unlock_irq(&lp->lock);
1384         PRINTK( "%s: TX timeout (INT 0x%02x INTMASK 0x%02x "
1385                 "MEM 0x%04x FIFO 0x%04x EPH_ST 0x%04x)\n",
1386                 dev->name, status, mask, meminfo, fifo, eph_st );
1387
1388         smc_reset(dev);
1389         smc_enable(dev);
1390
1391         /*
1392          * Reconfiguring the PHY doesn't seem like a bad idea here, but
1393          * smc_phy_configure() calls msleep() which calls schedule_timeout()
1394          * which calls schedule().  Hence we use a work queue.
1395          */
1396         if (lp->phy_type != 0) {
1397                 if (schedule_work(&lp->phy_configure)) {
1398                         lp->work_pending = 1;
1399                 }
1400         }
1401
1402         /* We can accept TX packets again */
1403         dev->trans_start = jiffies;
1404         netif_wake_queue(dev);
1405 }
1406
1407 /*
1408  * This routine will, depending on the values passed to it,
1409  * either make it accept multicast packets, go into
1410  * promiscuous mode (for TCPDUMP and cousins) or accept
1411  * a select set of multicast packets
1412  */
1413 static void smc_set_multicast_list(struct net_device *dev)
1414 {
1415         struct smc_local *lp = netdev_priv(dev);
1416         void __iomem *ioaddr = lp->base;
1417         unsigned char multicast_table[8];
1418         int update_multicast = 0;
1419
1420         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
1421
1422         if (dev->flags & IFF_PROMISC) {
1423                 DBG(2, "%s: RCR_PRMS\n", dev->name);
1424                 lp->rcr_cur_mode |= RCR_PRMS;
1425         }
1426
1427 /* BUG?  I never disable promiscuous mode if multicasting was turned on.
1428    Now, I turn off promiscuous mode, but I don't do anything to multicasting
1429    when promiscuous mode is turned on.
1430 */
1431
1432         /*
1433          * Here, I am setting this to accept all multicast packets.
1434          * I don't need to zero the multicast table, because the flag is
1435          * checked before the table is
1436          */
1437         else if (dev->flags & IFF_ALLMULTI || dev->mc_count > 16) {
1438                 DBG(2, "%s: RCR_ALMUL\n", dev->name);
1439                 lp->rcr_cur_mode |= RCR_ALMUL;
1440         }
1441
1442         /*
1443          * This sets the internal hardware table to filter out unwanted
1444          * multicast packets before they take up memory.
1445          *
1446          * The SMC chip uses a hash table where the high 6 bits of the CRC of
1447          * address are the offset into the table.  If that bit is 1, then the
1448          * multicast packet is accepted.  Otherwise, it's dropped silently.
1449          *
1450          * To use the 6 bits as an offset into the table, the high 3 bits are
1451          * the number of the 8 bit register, while the low 3 bits are the bit
1452          * within that register.
1453          */
1454         else if (dev->mc_count)  {
1455                 int i;
1456                 struct dev_mc_list *cur_addr;
1457
1458                 /* table for flipping the order of 3 bits */
1459                 static const unsigned char invert3[] = {0, 4, 2, 6, 1, 5, 3, 7};
1460
1461                 /* start with a table of all zeros: reject all */
1462                 memset(multicast_table, 0, sizeof(multicast_table));
1463
1464                 cur_addr = dev->mc_list;
1465                 for (i = 0; i < dev->mc_count; i++, cur_addr = cur_addr->next) {
1466                         int position;
1467
1468                         /* do we have a pointer here? */
1469                         if (!cur_addr)
1470                                 break;
1471                         /* make sure this is a multicast address -
1472                            shouldn't this be a given if we have it here ? */
1473                         if (!(*cur_addr->dmi_addr & 1))
1474                                 continue;
1475
1476                         /* only use the low order bits */
1477                         position = crc32_le(~0, cur_addr->dmi_addr, 6) & 0x3f;
1478
1479                         /* do some messy swapping to put the bit in the right spot */
1480                         multicast_table[invert3[position&7]] |=
1481                                 (1<<invert3[(position>>3)&7]);
1482                 }
1483
1484                 /* be sure I get rid of flags I might have set */
1485                 lp->rcr_cur_mode &= ~(RCR_PRMS | RCR_ALMUL);
1486
1487                 /* now, the table can be loaded into the chipset */
1488                 update_multicast = 1;
1489         } else  {
1490                 DBG(2, "%s: ~(RCR_PRMS|RCR_ALMUL)\n", dev->name);
1491                 lp->rcr_cur_mode &= ~(RCR_PRMS | RCR_ALMUL);
1492
1493                 /*
1494                  * since I'm disabling all multicast entirely, I need to
1495                  * clear the multicast list
1496                  */
1497                 memset(multicast_table, 0, sizeof(multicast_table));
1498                 update_multicast = 1;
1499         }
1500
1501         spin_lock_irq(&lp->lock);
1502         SMC_SELECT_BANK(lp, 0);
1503         SMC_SET_RCR(lp, lp->rcr_cur_mode);
1504         if (update_multicast) {
1505                 SMC_SELECT_BANK(lp, 3);
1506                 SMC_SET_MCAST(lp, multicast_table);
1507         }
1508         SMC_SELECT_BANK(lp, 2);
1509         spin_unlock_irq(&lp->lock);
1510 }
1511
1512
1513 /*
1514  * Open and Initialize the board
1515  *
1516  * Set up everything, reset the card, etc..
1517  */
1518 static int
1519 smc_open(struct net_device *dev)
1520 {
1521         struct smc_local *lp = netdev_priv(dev);
1522
1523         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
1524
1525         /*
1526          * Check that the address is valid.  If its not, refuse
1527          * to bring the device up.  The user must specify an
1528          * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
1529          */
1530         if (!is_valid_ether_addr(dev->dev_addr)) {
1531                 PRINTK("%s: no valid ethernet hw addr\n", __FUNCTION__);
1532                 return -EINVAL;
1533         }
1534
1535         /* Setup the default Register Modes */
1536         lp->tcr_cur_mode = TCR_DEFAULT;
1537         lp->rcr_cur_mode = RCR_DEFAULT;
1538         lp->rpc_cur_mode = RPC_DEFAULT;
1539
1540         /*
1541          * If we are not using a MII interface, we need to
1542          * monitor our own carrier signal to detect faults.
1543          */
1544         if (lp->phy_type == 0)
1545                 lp->tcr_cur_mode |= TCR_MON_CSN;
1546
1547         /* reset the hardware */
1548         smc_reset(dev);
1549         smc_enable(dev);
1550
1551         /* Configure the PHY, initialize the link state */
1552         if (lp->phy_type != 0)
1553                 smc_phy_configure(&lp->phy_configure);
1554         else {
1555                 spin_lock_irq(&lp->lock);
1556                 smc_10bt_check_media(dev, 1);
1557                 spin_unlock_irq(&lp->lock);
1558         }
1559
1560         netif_start_queue(dev);
1561         return 0;
1562 }
1563
1564 /*
1565  * smc_close
1566  *
1567  * this makes the board clean up everything that it can
1568  * and not talk to the outside world.   Caused by
1569  * an 'ifconfig ethX down'
1570  */
1571 static int smc_close(struct net_device *dev)
1572 {
1573         struct smc_local *lp = netdev_priv(dev);
1574
1575         DBG(2, "%s: %s\n", dev->name, __FUNCTION__);
1576
1577         netif_stop_queue(dev);
1578         netif_carrier_off(dev);
1579
1580         /* clear everything */
1581         smc_shutdown(dev);
1582         tasklet_kill(&lp->tx_task);
1583         smc_phy_powerdown(dev);
1584         return 0;
1585 }
1586
1587 /*
1588  * Ethtool support
1589  */
1590 static int
1591 smc_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1592 {
1593         struct smc_local *lp = netdev_priv(dev);
1594         int ret;
1595
1596         cmd->maxtxpkt = 1;
1597         cmd->maxrxpkt = 1;
1598
1599         if (lp->phy_type != 0) {
1600                 spin_lock_irq(&lp->lock);
1601                 ret = mii_ethtool_gset(&lp->mii, cmd);
1602                 spin_unlock_irq(&lp->lock);
1603         } else {
1604                 cmd->supported = SUPPORTED_10baseT_Half |
1605                                  SUPPORTED_10baseT_Full |
1606                                  SUPPORTED_TP | SUPPORTED_AUI;
1607
1608                 if (lp->ctl_rspeed == 10)
1609                         cmd->speed = SPEED_10;
1610                 else if (lp->ctl_rspeed == 100)
1611                         cmd->speed = SPEED_100;
1612
1613                 cmd->autoneg = AUTONEG_DISABLE;
1614                 cmd->transceiver = XCVR_INTERNAL;
1615                 cmd->port = 0;
1616                 cmd->duplex = lp->tcr_cur_mode & TCR_SWFDUP ? DUPLEX_FULL : DUPLEX_HALF;
1617
1618                 ret = 0;
1619         }
1620
1621         return ret;
1622 }
1623
1624 static int
1625 smc_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1626 {
1627         struct smc_local *lp = netdev_priv(dev);
1628         int ret;
1629
1630         if (lp->phy_type != 0) {
1631                 spin_lock_irq(&lp->lock);
1632                 ret = mii_ethtool_sset(&lp->mii, cmd);
1633                 spin_unlock_irq(&lp->lock);
1634         } else {
1635                 if (cmd->autoneg != AUTONEG_DISABLE ||
1636                     cmd->speed != SPEED_10 ||
1637                     (cmd->duplex != DUPLEX_HALF && cmd->duplex != DUPLEX_FULL) ||
1638                     (cmd->port != PORT_TP && cmd->port != PORT_AUI))
1639                         return -EINVAL;
1640
1641 //              lp->port = cmd->port;
1642                 lp->ctl_rfduplx = cmd->duplex == DUPLEX_FULL;
1643
1644 //              if (netif_running(dev))
1645 //                      smc_set_port(dev);
1646
1647                 ret = 0;
1648         }
1649
1650         return ret;
1651 }
1652
1653 static void
1654 smc_ethtool_getdrvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1655 {
1656         strncpy(info->driver, CARDNAME, sizeof(info->driver));
1657         strncpy(info->version, version, sizeof(info->version));
1658         strncpy(info->bus_info, dev->dev.parent->bus_id, sizeof(info->bus_info));
1659 }
1660
1661 static int smc_ethtool_nwayreset(struct net_device *dev)
1662 {
1663         struct smc_local *lp = netdev_priv(dev);
1664         int ret = -EINVAL;
1665
1666         if (lp->phy_type != 0) {
1667                 spin_lock_irq(&lp->lock);
1668                 ret = mii_nway_restart(&lp->mii);
1669                 spin_unlock_irq(&lp->lock);
1670         }
1671
1672         return ret;
1673 }
1674
1675 static u32 smc_ethtool_getmsglevel(struct net_device *dev)
1676 {
1677         struct smc_local *lp = netdev_priv(dev);
1678         return lp->msg_enable;
1679 }
1680
1681 static void smc_ethtool_setmsglevel(struct net_device *dev, u32 level)
1682 {
1683         struct smc_local *lp = netdev_priv(dev);
1684         lp->msg_enable = level;
1685 }
1686
1687 static const struct ethtool_ops smc_ethtool_ops = {
1688         .get_settings   = smc_ethtool_getsettings,
1689         .set_settings   = smc_ethtool_setsettings,
1690         .get_drvinfo    = smc_ethtool_getdrvinfo,
1691
1692         .get_msglevel   = smc_ethtool_getmsglevel,
1693         .set_msglevel   = smc_ethtool_setmsglevel,
1694         .nway_reset     = smc_ethtool_nwayreset,
1695         .get_link       = ethtool_op_get_link,
1696 //      .get_eeprom     = smc_ethtool_geteeprom,
1697 //      .set_eeprom     = smc_ethtool_seteeprom,
1698 };
1699
1700 /*
1701  * smc_findirq
1702  *
1703  * This routine has a simple purpose -- make the SMC chip generate an
1704  * interrupt, so an auto-detect routine can detect it, and find the IRQ,
1705  */
1706 /*
1707  * does this still work?
1708  *
1709  * I just deleted auto_irq.c, since it was never built...
1710  *   --jgarzik
1711  */
1712 static int __init smc_findirq(struct smc_local *lp)
1713 {
1714         void __iomem *ioaddr = lp->base;
1715         int timeout = 20;
1716         unsigned long cookie;
1717
1718         DBG(2, "%s: %s\n", CARDNAME, __FUNCTION__);
1719
1720         cookie = probe_irq_on();
1721
1722         /*
1723          * What I try to do here is trigger an ALLOC_INT. This is done
1724          * by allocating a small chunk of memory, which will give an interrupt
1725          * when done.
1726          */
1727         /* enable ALLOCation interrupts ONLY */
1728         SMC_SELECT_BANK(lp, 2);
1729         SMC_SET_INT_MASK(lp, IM_ALLOC_INT);
1730
1731         /*
1732          * Allocate 512 bytes of memory.  Note that the chip was just
1733          * reset so all the memory is available
1734          */
1735         SMC_SET_MMU_CMD(lp, MC_ALLOC | 1);
1736
1737         /*
1738          * Wait until positive that the interrupt has been generated
1739          */
1740         do {
1741                 int int_status;
1742                 udelay(10);
1743                 int_status = SMC_GET_INT(lp);
1744                 if (int_status & IM_ALLOC_INT)
1745                         break;          /* got the interrupt */
1746         } while (--timeout);
1747
1748         /*
1749          * there is really nothing that I can do here if timeout fails,
1750          * as autoirq_report will return a 0 anyway, which is what I
1751          * want in this case.   Plus, the clean up is needed in both
1752          * cases.
1753          */
1754
1755         /* and disable all interrupts again */
1756         SMC_SET_INT_MASK(lp, 0);
1757
1758         /* and return what I found */
1759         return probe_irq_off(cookie);
1760 }
1761
1762 /*
1763  * Function: smc_probe(unsigned long ioaddr)
1764  *
1765  * Purpose:
1766  *      Tests to see if a given ioaddr points to an SMC91x chip.
1767  *      Returns a 0 on success
1768  *
1769  * Algorithm:
1770  *      (1) see if the high byte of BANK_SELECT is 0x33
1771  *      (2) compare the ioaddr with the base register's address
1772  *      (3) see if I recognize the chip ID in the appropriate register
1773  *
1774  * Here I do typical initialization tasks.
1775  *
1776  * o  Initialize the structure if needed
1777  * o  print out my vanity message if not done so already
1778  * o  print out what type of hardware is detected
1779  * o  print out the ethernet address
1780  * o  find the IRQ
1781  * o  set up my private data
1782  * o  configure the dev structure with my subroutines
1783  * o  actually GRAB the irq.
1784  * o  GRAB the region
1785  */
1786 static int __init smc_probe(struct net_device *dev, void __iomem *ioaddr,
1787                             unsigned long irq_flags)
1788 {
1789         struct smc_local *lp = netdev_priv(dev);
1790         static int version_printed = 0;
1791         int retval;
1792         unsigned int val, revision_register;
1793         const char *version_string;
1794         DECLARE_MAC_BUF(mac);
1795
1796         DBG(2, "%s: %s\n", CARDNAME, __FUNCTION__);
1797
1798         /* First, see if the high byte is 0x33 */
1799         val = SMC_CURRENT_BANK(lp);
1800         DBG(2, "%s: bank signature probe returned 0x%04x\n", CARDNAME, val);
1801         if ((val & 0xFF00) != 0x3300) {
1802                 if ((val & 0xFF) == 0x33) {
1803                         printk(KERN_WARNING
1804                                 "%s: Detected possible byte-swapped interface"
1805                                 " at IOADDR %p\n", CARDNAME, ioaddr);
1806                 }
1807                 retval = -ENODEV;
1808                 goto err_out;
1809         }
1810
1811         /*
1812          * The above MIGHT indicate a device, but I need to write to
1813          * further test this.
1814          */
1815         SMC_SELECT_BANK(lp, 0);
1816         val = SMC_CURRENT_BANK(lp);
1817         if ((val & 0xFF00) != 0x3300) {
1818                 retval = -ENODEV;
1819                 goto err_out;
1820         }
1821
1822         /*
1823          * well, we've already written once, so hopefully another
1824          * time won't hurt.  This time, I need to switch the bank
1825          * register to bank 1, so I can access the base address
1826          * register
1827          */
1828         SMC_SELECT_BANK(lp, 1);
1829         val = SMC_GET_BASE(lp);
1830         val = ((val & 0x1F00) >> 3) << SMC_IO_SHIFT;
1831         if (((unsigned int)ioaddr & (0x3e0 << SMC_IO_SHIFT)) != val) {
1832                 printk("%s: IOADDR %p doesn't match configuration (%x).\n",
1833                         CARDNAME, ioaddr, val);
1834         }
1835
1836         /*
1837          * check if the revision register is something that I
1838          * recognize.  These might need to be added to later,
1839          * as future revisions could be added.
1840          */
1841         SMC_SELECT_BANK(lp, 3);
1842         revision_register = SMC_GET_REV(lp);
1843         DBG(2, "%s: revision = 0x%04x\n", CARDNAME, revision_register);
1844         version_string = chip_ids[ (revision_register >> 4) & 0xF];
1845         if (!version_string || (revision_register & 0xff00) != 0x3300) {
1846                 /* I don't recognize this chip, so... */
1847                 printk("%s: IO %p: Unrecognized revision register 0x%04x"
1848                         ", Contact author.\n", CARDNAME,
1849                         ioaddr, revision_register);
1850
1851                 retval = -ENODEV;
1852                 goto err_out;
1853         }
1854
1855         /* At this point I'll assume that the chip is an SMC91x. */
1856         if (version_printed++ == 0)
1857                 printk("%s", version);
1858
1859         /* fill in some of the fields */
1860         dev->base_addr = (unsigned long)ioaddr;
1861         lp->base = ioaddr;
1862         lp->version = revision_register & 0xff;
1863         spin_lock_init(&lp->lock);
1864
1865         /* Get the MAC address */
1866         SMC_SELECT_BANK(lp, 1);
1867         SMC_GET_MAC_ADDR(lp, dev->dev_addr);
1868
1869         /* now, reset the chip, and put it into a known state */
1870         smc_reset(dev);
1871
1872         /*
1873          * If dev->irq is 0, then the device has to be banged on to see
1874          * what the IRQ is.
1875          *
1876          * This banging doesn't always detect the IRQ, for unknown reasons.
1877          * a workaround is to reset the chip and try again.
1878          *
1879          * Interestingly, the DOS packet driver *SETS* the IRQ on the card to
1880          * be what is requested on the command line.   I don't do that, mostly
1881          * because the card that I have uses a non-standard method of accessing
1882          * the IRQs, and because this _should_ work in most configurations.
1883          *
1884          * Specifying an IRQ is done with the assumption that the user knows
1885          * what (s)he is doing.  No checking is done!!!!
1886          */
1887         if (dev->irq < 1) {
1888                 int trials;
1889
1890                 trials = 3;
1891                 while (trials--) {
1892                         dev->irq = smc_findirq(lp);
1893                         if (dev->irq)
1894                                 break;
1895                         /* kick the card and try again */
1896                         smc_reset(dev);
1897                 }
1898         }
1899         if (dev->irq == 0) {
1900                 printk("%s: Couldn't autodetect your IRQ. Use irq=xx.\n",
1901                         dev->name);
1902                 retval = -ENODEV;
1903                 goto err_out;
1904         }
1905         dev->irq = irq_canonicalize(dev->irq);
1906
1907         /* Fill in the fields of the device structure with ethernet values. */
1908         ether_setup(dev);
1909
1910         dev->open = smc_open;
1911         dev->stop = smc_close;
1912         dev->hard_start_xmit = smc_hard_start_xmit;
1913         dev->tx_timeout = smc_timeout;
1914         dev->watchdog_timeo = msecs_to_jiffies(watchdog);
1915         dev->set_multicast_list = smc_set_multicast_list;
1916         dev->ethtool_ops = &smc_ethtool_ops;
1917 #ifdef CONFIG_NET_POLL_CONTROLLER
1918         dev->poll_controller = smc_poll_controller;
1919 #endif
1920
1921         tasklet_init(&lp->tx_task, smc_hardware_send_pkt, (unsigned long)dev);
1922         INIT_WORK(&lp->phy_configure, smc_phy_configure);
1923         lp->dev = dev;
1924         lp->mii.phy_id_mask = 0x1f;
1925         lp->mii.reg_num_mask = 0x1f;
1926         lp->mii.force_media = 0;
1927         lp->mii.full_duplex = 0;
1928         lp->mii.dev = dev;
1929         lp->mii.mdio_read = smc_phy_read;
1930         lp->mii.mdio_write = smc_phy_write;
1931
1932         /*
1933          * Locate the phy, if any.
1934          */
1935         if (lp->version >= (CHIP_91100 << 4))
1936                 smc_phy_detect(dev);
1937
1938         /* then shut everything down to save power */
1939         smc_shutdown(dev);
1940         smc_phy_powerdown(dev);
1941
1942         /* Set default parameters */
1943         lp->msg_enable = NETIF_MSG_LINK;
1944         lp->ctl_rfduplx = 0;
1945         lp->ctl_rspeed = 10;
1946
1947         if (lp->version >= (CHIP_91100 << 4)) {
1948                 lp->ctl_rfduplx = 1;
1949                 lp->ctl_rspeed = 100;
1950         }
1951
1952         /* Grab the IRQ */
1953         retval = request_irq(dev->irq, &smc_interrupt, irq_flags, dev->name, dev);
1954         if (retval)
1955                 goto err_out;
1956
1957 #ifdef SMC_USE_PXA_DMA
1958         {
1959                 int dma = pxa_request_dma(dev->name, DMA_PRIO_LOW,
1960                                           smc_pxa_dma_irq, NULL);
1961                 if (dma >= 0)
1962                         dev->dma = dma;
1963         }
1964 #endif
1965
1966         retval = register_netdev(dev);
1967         if (retval == 0) {
1968                 /* now, print out the card info, in a short format.. */
1969                 printk("%s: %s (rev %d) at %p IRQ %d",
1970                         dev->name, version_string, revision_register & 0x0f,
1971                         lp->base, dev->irq);
1972
1973                 if (dev->dma != (unsigned char)-1)
1974                         printk(" DMA %d", dev->dma);
1975
1976                 printk("%s%s\n", nowait ? " [nowait]" : "",
1977                         THROTTLE_TX_PKTS ? " [throttle_tx]" : "");
1978
1979                 if (!is_valid_ether_addr(dev->dev_addr)) {
1980                         printk("%s: Invalid ethernet MAC address.  Please "
1981                                "set using ifconfig\n", dev->name);
1982                 } else {
1983                         /* Print the Ethernet address */
1984                         printk("%s: Ethernet addr: %s\n",
1985                                dev->name, print_mac(mac, dev->dev_addr));
1986                 }
1987
1988                 if (lp->phy_type == 0) {
1989                         PRINTK("%s: No PHY found\n", dev->name);
1990                 } else if ((lp->phy_type & 0xfffffff0) == 0x0016f840) {
1991                         PRINTK("%s: PHY LAN83C183 (LAN91C111 Internal)\n", dev->name);
1992                 } else if ((lp->phy_type & 0xfffffff0) == 0x02821c50) {
1993                         PRINTK("%s: PHY LAN83C180\n", dev->name);
1994                 }
1995         }
1996
1997 err_out:
1998 #ifdef SMC_USE_PXA_DMA
1999         if (retval && dev->dma != (unsigned char)-1)
2000                 pxa_free_dma(dev->dma);
2001 #endif
2002         return retval;
2003 }
2004
2005 static int smc_enable_device(struct platform_device *pdev)
2006 {
2007         struct net_device *ndev = platform_get_drvdata(pdev);
2008         struct smc_local *lp = netdev_priv(ndev);
2009         unsigned long flags;
2010         unsigned char ecor, ecsr;
2011         void __iomem *addr;
2012         struct resource * res;
2013
2014         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-attrib");
2015         if (!res)
2016                 return 0;
2017
2018         /*
2019          * Map the attribute space.  This is overkill, but clean.
2020          */
2021         addr = ioremap(res->start, ATTRIB_SIZE);
2022         if (!addr)
2023                 return -ENOMEM;
2024
2025         /*
2026          * Reset the device.  We must disable IRQs around this
2027          * since a reset causes the IRQ line become active.
2028          */
2029         local_irq_save(flags);
2030         ecor = readb(addr + (ECOR << SMC_IO_SHIFT)) & ~ECOR_RESET;
2031         writeb(ecor | ECOR_RESET, addr + (ECOR << SMC_IO_SHIFT));
2032         readb(addr + (ECOR << SMC_IO_SHIFT));
2033
2034         /*
2035          * Wait 100us for the chip to reset.
2036          */
2037         udelay(100);
2038
2039         /*
2040          * The device will ignore all writes to the enable bit while
2041          * reset is asserted, even if the reset bit is cleared in the
2042          * same write.  Must clear reset first, then enable the device.
2043          */
2044         writeb(ecor, addr + (ECOR << SMC_IO_SHIFT));
2045         writeb(ecor | ECOR_ENABLE, addr + (ECOR << SMC_IO_SHIFT));
2046
2047         /*
2048          * Set the appropriate byte/word mode.
2049          */
2050         ecsr = readb(addr + (ECSR << SMC_IO_SHIFT)) & ~ECSR_IOIS8;
2051         if (!SMC_16BIT(lp))
2052                 ecsr |= ECSR_IOIS8;
2053         writeb(ecsr, addr + (ECSR << SMC_IO_SHIFT));
2054         local_irq_restore(flags);
2055
2056         iounmap(addr);
2057
2058         /*
2059          * Wait for the chip to wake up.  We could poll the control
2060          * register in the main register space, but that isn't mapped
2061          * yet.  We know this is going to take 750us.
2062          */
2063         msleep(1);
2064
2065         return 0;
2066 }
2067
2068 static int smc_request_attrib(struct platform_device *pdev)
2069 {
2070         struct resource * res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-attrib");
2071
2072         if (!res)
2073                 return 0;
2074
2075         if (!request_mem_region(res->start, ATTRIB_SIZE, CARDNAME))
2076                 return -EBUSY;
2077
2078         return 0;
2079 }
2080
2081 static void smc_release_attrib(struct platform_device *pdev)
2082 {
2083         struct resource * res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-attrib");
2084
2085         if (res)
2086                 release_mem_region(res->start, ATTRIB_SIZE);
2087 }
2088
2089 static inline void smc_request_datacs(struct platform_device *pdev, struct net_device *ndev)
2090 {
2091         if (SMC_CAN_USE_DATACS) {
2092                 struct resource * res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-data32");
2093                 struct smc_local *lp = netdev_priv(ndev);
2094
2095                 if (!res)
2096                         return;
2097
2098                 if(!request_mem_region(res->start, SMC_DATA_EXTENT, CARDNAME)) {
2099                         printk(KERN_INFO "%s: failed to request datacs memory region.\n", CARDNAME);
2100                         return;
2101                 }
2102
2103                 lp->datacs = ioremap(res->start, SMC_DATA_EXTENT);
2104         }
2105 }
2106
2107 static void smc_release_datacs(struct platform_device *pdev, struct net_device *ndev)
2108 {
2109         if (SMC_CAN_USE_DATACS) {
2110                 struct smc_local *lp = netdev_priv(ndev);
2111                 struct resource * res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-data32");
2112
2113                 if (lp->datacs)
2114                         iounmap(lp->datacs);
2115
2116                 lp->datacs = NULL;
2117
2118                 if (res)
2119                         release_mem_region(res->start, SMC_DATA_EXTENT);
2120         }
2121 }
2122
2123 /*
2124  * smc_init(void)
2125  *   Input parameters:
2126  *      dev->base_addr == 0, try to find all possible locations
2127  *      dev->base_addr > 0x1ff, this is the address to check
2128  *      dev->base_addr == <anything else>, return failure code
2129  *
2130  *   Output:
2131  *      0 --> there is a device
2132  *      anything else, error
2133  */
2134 static int smc_drv_probe(struct platform_device *pdev)
2135 {
2136         struct smc91x_platdata *pd = pdev->dev.platform_data;
2137         struct smc_local *lp;
2138         struct net_device *ndev;
2139         struct resource *res, *ires;
2140         unsigned int __iomem *addr;
2141         int ret;
2142
2143         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-regs");
2144         if (!res)
2145                 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2146         if (!res) {
2147                 ret = -ENODEV;
2148                 goto out;
2149         }
2150
2151
2152         if (!request_mem_region(res->start, SMC_IO_EXTENT, CARDNAME)) {
2153                 ret = -EBUSY;
2154                 goto out;
2155         }
2156
2157         ndev = alloc_etherdev(sizeof(struct smc_local));
2158         if (!ndev) {
2159                 printk("%s: could not allocate device.\n", CARDNAME);
2160                 ret = -ENOMEM;
2161                 goto out_release_io;
2162         }
2163         SET_NETDEV_DEV(ndev, &pdev->dev);
2164
2165         /* get configuration from platform data, only allow use of
2166          * bus width if both SMC_CAN_USE_xxx and SMC91X_USE_xxx are set.
2167          */
2168
2169         lp = netdev_priv(ndev);
2170         lp->cfg.irq_flags = SMC_IRQ_FLAGS;
2171
2172 #ifdef SMC_DYNAMIC_BUS_CONFIG
2173         if (pd)
2174                 memcpy(&lp->cfg, pd, sizeof(lp->cfg));
2175         else {
2176                 lp->cfg.flags = SMC91X_USE_8BIT;
2177                 lp->cfg.flags |= SMC91X_USE_16BIT;
2178                 lp->cfg.flags |= SMC91X_USE_32BIT;
2179         }
2180
2181         lp->cfg.flags &= ~(SMC_CAN_USE_8BIT ? 0 : SMC91X_USE_8BIT);
2182         lp->cfg.flags &= ~(SMC_CAN_USE_16BIT ? 0 : SMC91X_USE_16BIT);
2183         lp->cfg.flags &= ~(SMC_CAN_USE_32BIT ? 0 : SMC91X_USE_32BIT);
2184 #endif
2185
2186         ndev->dma = (unsigned char)-1;
2187
2188         ires = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2189         if (!ires) {
2190                 ret = -ENODEV;
2191                 goto out_free_netdev;
2192         }
2193
2194         ndev->irq = ires->start;
2195         if (SMC_IRQ_FLAGS == -1)
2196                 lp->cfg.irq_flags = ires->flags & IRQF_TRIGGER_MASK;
2197
2198         ret = smc_request_attrib(pdev);
2199         if (ret)
2200                 goto out_free_netdev;
2201 #if defined(CONFIG_SA1100_ASSABET)
2202         NCR_0 |= NCR_ENET_OSC_EN;
2203 #endif
2204         platform_set_drvdata(pdev, ndev);
2205         ret = smc_enable_device(pdev);
2206         if (ret)
2207                 goto out_release_attrib;
2208
2209         addr = ioremap(res->start, SMC_IO_EXTENT);
2210         if (!addr) {
2211                 ret = -ENOMEM;
2212                 goto out_release_attrib;
2213         }
2214
2215 #ifdef SMC_USE_PXA_DMA
2216         {
2217                 struct smc_local *lp = netdev_priv(ndev);
2218                 lp->device = &pdev->dev;
2219                 lp->physaddr = res->start;
2220         }
2221 #endif
2222
2223         ret = smc_probe(ndev, addr, lp->cfg.irq_flags);
2224         if (ret != 0)
2225                 goto out_iounmap;
2226
2227         smc_request_datacs(pdev, ndev);
2228
2229         return 0;
2230
2231  out_iounmap:
2232         platform_set_drvdata(pdev, NULL);
2233         iounmap(addr);
2234  out_release_attrib:
2235         smc_release_attrib(pdev);
2236  out_free_netdev:
2237         free_netdev(ndev);
2238  out_release_io:
2239         release_mem_region(res->start, SMC_IO_EXTENT);
2240  out:
2241         printk("%s: not found (%d).\n", CARDNAME, ret);
2242
2243         return ret;
2244 }
2245
2246 static int smc_drv_remove(struct platform_device *pdev)
2247 {
2248         struct net_device *ndev = platform_get_drvdata(pdev);
2249         struct smc_local *lp = netdev_priv(ndev);
2250         struct resource *res;
2251
2252         platform_set_drvdata(pdev, NULL);
2253
2254         unregister_netdev(ndev);
2255
2256         free_irq(ndev->irq, ndev);
2257
2258 #ifdef SMC_USE_PXA_DMA
2259         if (ndev->dma != (unsigned char)-1)
2260                 pxa_free_dma(ndev->dma);
2261 #endif
2262         iounmap(lp->base);
2263
2264         smc_release_datacs(pdev,ndev);
2265         smc_release_attrib(pdev);
2266
2267         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "smc91x-regs");
2268         if (!res)
2269                 platform_get_resource(pdev, IORESOURCE_MEM, 0);
2270         release_mem_region(res->start, SMC_IO_EXTENT);
2271
2272         free_netdev(ndev);
2273
2274         return 0;
2275 }
2276
2277 static int smc_drv_suspend(struct platform_device *dev, pm_message_t state)
2278 {
2279         struct net_device *ndev = platform_get_drvdata(dev);
2280
2281         if (ndev) {
2282                 if (netif_running(ndev)) {
2283                         netif_device_detach(ndev);
2284                         smc_shutdown(ndev);
2285                         smc_phy_powerdown(ndev);
2286                 }
2287         }
2288         return 0;
2289 }
2290
2291 static int smc_drv_resume(struct platform_device *dev)
2292 {
2293         struct net_device *ndev = platform_get_drvdata(dev);
2294
2295         if (ndev) {
2296                 struct smc_local *lp = netdev_priv(ndev);
2297                 smc_enable_device(dev);
2298                 if (netif_running(ndev)) {
2299                         smc_reset(ndev);
2300                         smc_enable(ndev);
2301                         if (lp->phy_type != 0)
2302                                 smc_phy_configure(&lp->phy_configure);
2303                         netif_device_attach(ndev);
2304                 }
2305         }
2306         return 0;
2307 }
2308
2309 static struct platform_driver smc_driver = {
2310         .probe          = smc_drv_probe,
2311         .remove         = smc_drv_remove,
2312         .suspend        = smc_drv_suspend,
2313         .resume         = smc_drv_resume,
2314         .driver         = {
2315                 .name   = CARDNAME,
2316         },
2317 };
2318
2319 static int __init smc_init(void)
2320 {
2321 #ifdef MODULE
2322 #ifdef CONFIG_ISA
2323         if (io == -1)
2324                 printk(KERN_WARNING
2325                         "%s: You shouldn't use auto-probing with insmod!\n",
2326                         CARDNAME);
2327 #endif
2328 #endif
2329
2330         return platform_driver_register(&smc_driver);
2331 }
2332
2333 static void __exit smc_cleanup(void)
2334 {
2335         platform_driver_unregister(&smc_driver);
2336 }
2337
2338 module_init(smc_init);
2339 module_exit(smc_cleanup);