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