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