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