Merge remote-tracking branch 'remotes/tegra/android-tegra-2.6.36-honeycomb-mr1' into...
[firefly-linux-kernel-4.4.55.git] / drivers / net / dm9000.c
1 /*
2  *      Davicom DM9000 Fast Ethernet driver for Linux.
3  *      Copyright (C) 1997  Sten Wang
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      as published by the Free Software Foundation; either version 2
8  *      of the License, or (at your option) any later version.
9  *
10  *      This program is distributed in the hope that it will be useful,
11  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *      GNU General Public License for more details.
14  *
15  * (C) Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
16  *
17  * Additional updates, Copyright:
18  *      Ben Dooks <ben@simtec.co.uk>
19  *      Sascha Hauer <s.hauer@pengutronix.de>
20  */
21
22 #include <linux/module.h>
23 #include <linux/ioport.h>
24 #include <linux/netdevice.h>
25 #include <linux/etherdevice.h>
26 #include <linux/init.h>
27 #include <linux/skbuff.h>
28 #include <linux/spinlock.h>
29 #include <linux/crc32.h>
30 #include <linux/mii.h>
31 #include <linux/ethtool.h>
32 #include <linux/dm9000.h>
33 #include <linux/delay.h>
34 #include <linux/platform_device.h>
35 #include <linux/irq.h>
36 #include <linux/slab.h>
37
38 #include <asm/delay.h>
39 #include <asm/irq.h>
40 #include <asm/io.h>
41 #include <mach/gpio.h>
42
43 #include "dm9000.h"
44
45 /* Board/System/Debug information/definition ---------------- */
46
47 #define DM9000_PHY              0x40    /* PHY address 0x01 */
48
49 #define CARDNAME        "dm9000"
50 #define DRV_VERSION     "1.31"
51
52 /*
53  * Transmit timeout, default 5 seconds.
54  */
55 static int watchdog = 5000;
56 module_param(watchdog, int, 0400);
57 MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
58
59 /* DM9000 register address locking.
60  *
61  * The DM9000 uses an address register to control where data written
62  * to the data register goes. This means that the address register
63  * must be preserved over interrupts or similar calls.
64  *
65  * During interrupt and other critical calls, a spinlock is used to
66  * protect the system, but the calls themselves save the address
67  * in the address register in case they are interrupting another
68  * access to the device.
69  *
70  * For general accesses a lock is provided so that calls which are
71  * allowed to sleep are serialised so that the address register does
72  * not need to be saved. This lock also serves to serialise access
73  * to the EEPROM and PHY access registers which are shared between
74  * these two devices.
75  */
76
77 /* The driver supports the original DM9000E, and now the two newer
78  * devices, DM9000A and DM9000B.
79  */
80
81 enum dm9000_type {
82         TYPE_DM9000E,   /* original DM9000 */
83         TYPE_DM9000A,
84         TYPE_DM9000B
85 };
86
87 /* Structure/enum declaration ------------------------------- */
88 typedef struct board_info {
89
90         void __iomem    *io_addr;       /* Register I/O base address */
91         void __iomem    *io_data;       /* Data I/O address */
92         u16              irq;           /* IRQ */
93
94         u16             tx_pkt_cnt;
95         u16             queue_pkt_len;
96         u16             queue_start_addr;
97         u16             queue_ip_summed;
98         u16             dbug_cnt;
99         u8              io_mode;                /* 0:word, 2:byte */
100         u8              phy_addr;
101         u8              imr_all;
102
103         unsigned int    flags;
104         unsigned int    in_suspend :1;
105         unsigned int    wake_supported :1;
106         int             debug_level;
107
108         enum dm9000_type type;
109
110         void (*inblk)(void __iomem *port, void *data, int length);
111         void (*outblk)(void __iomem *port, void *data, int length);
112         void (*dumpblk)(void __iomem *port, int length);
113
114         struct device   *dev;        /* parent device */
115
116         struct resource *addr_res;   /* resources found */
117         struct resource *data_res;
118         struct resource *addr_req;   /* resources requested */
119         struct resource *data_req;
120         struct resource *irq_res;
121
122         int              irq_wake;
123
124         struct mutex     addr_lock;     /* phy and eeprom access lock */
125
126         struct delayed_work phy_poll;
127         struct net_device  *ndev;
128
129         spinlock_t      lock;
130
131         struct mii_if_info mii;
132         u32             msg_enable;
133         u32             wake_state;
134
135         int             rx_csum;
136         int             can_csum;
137         int             ip_summed;
138 } board_info_t;
139
140 /* debug code */
141 #define dm9000_dbg(db, lev, msg...) do {                \
142         if ((lev) < CONFIG_DM9000_DEBUGLEVEL &&         \
143             (lev) < db->debug_level) {                  \
144                 dev_dbg(db->dev, msg);                  \
145         }                                               \
146 } while (0)
147
148 static inline board_info_t *to_dm9000_board(struct net_device *dev)
149 {
150         return netdev_priv(dev);
151 }
152
153 /* DM9000 network board routine ---------------------------- */
154
155 static void
156 dm9000_reset(board_info_t * db)
157 {
158         dev_dbg(db->dev, "resetting device\n");
159
160         /* RESET device */
161         writeb(DM9000_NCR, db->io_addr);
162         udelay(200);
163         writeb(NCR_RST, db->io_data);
164         udelay(200);
165 }
166
167 /*
168  *   Read a byte from I/O port
169  */
170 static u8
171 ior(board_info_t * db, int reg)
172 {
173         writeb(reg, db->io_addr);
174         return readb(db->io_data);
175 }
176
177 /*
178  *   Write a byte to I/O port
179  */
180
181 static void
182 iow(board_info_t * db, int reg, int value)
183 {
184         writeb(reg, db->io_addr);
185         writeb(value, db->io_data);
186 }
187
188 /* routines for sending block to chip */
189
190 static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
191 {
192         writesb(reg, data, count);
193 }
194
195 static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
196 {
197         writesw(reg, data, (count+1) >> 1);
198 }
199
200 static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
201 {
202         writesl(reg, data, (count+3) >> 2);
203 }
204
205 /* input block from chip to memory */
206
207 static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
208 {
209         readsb(reg, data, count);
210 }
211
212
213 static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
214 {
215         readsw(reg, data, (count+1) >> 1);
216 }
217
218 static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
219 {
220         readsl(reg, data, (count+3) >> 2);
221 }
222
223 /* dump block from chip to null */
224
225 static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
226 {
227         int i;
228         int tmp;
229
230         for (i = 0; i < count; i++)
231                 tmp = readb(reg);
232 }
233
234 static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
235 {
236         int i;
237         int tmp;
238
239         count = (count + 1) >> 1;
240
241         for (i = 0; i < count; i++)
242                 tmp = readw(reg);
243 }
244
245 static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
246 {
247         int i;
248         int tmp;
249
250         count = (count + 3) >> 2;
251
252         for (i = 0; i < count; i++)
253                 tmp = readl(reg);
254 }
255
256 /* dm9000_set_io
257  *
258  * select the specified set of io routines to use with the
259  * device
260  */
261
262 static void dm9000_set_io(struct board_info *db, int byte_width)
263 {
264         /* use the size of the data resource to work out what IO
265          * routines we want to use
266          */
267
268         switch (byte_width) {
269         case 1:
270                 db->dumpblk = dm9000_dumpblk_8bit;
271                 db->outblk  = dm9000_outblk_8bit;
272                 db->inblk   = dm9000_inblk_8bit;
273                 break;
274
275
276         case 3:
277                 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
278         case 2:
279                 db->dumpblk = dm9000_dumpblk_16bit;
280                 db->outblk  = dm9000_outblk_16bit;
281                 db->inblk   = dm9000_inblk_16bit;
282                 break;
283
284         case 4:
285         default:
286                 db->dumpblk = dm9000_dumpblk_32bit;
287                 db->outblk  = dm9000_outblk_32bit;
288                 db->inblk   = dm9000_inblk_32bit;
289                 break;
290         }
291 }
292
293 static void dm9000_schedule_poll(board_info_t *db)
294 {
295         if (db->type == TYPE_DM9000E)
296                 schedule_delayed_work(&db->phy_poll, HZ * 2);
297 }
298
299 static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
300 {
301         board_info_t *dm = to_dm9000_board(dev);
302
303         if (!netif_running(dev))
304                 return -EINVAL;
305
306         return generic_mii_ioctl(&dm->mii, if_mii(req), cmd, NULL);
307 }
308
309 static unsigned int
310 dm9000_read_locked(board_info_t *db, int reg)
311 {
312         unsigned long flags;
313         unsigned int ret;
314
315         spin_lock_irqsave(&db->lock, flags);    
316         ret = ior(db, reg);
317         spin_unlock_irqrestore(&db->lock, flags);
318
319         return ret;
320 }
321
322 static int dm9000_wait_eeprom(board_info_t *db)
323 {
324         unsigned int status;
325         int timeout = 8;        /* wait max 8msec */
326
327         /* The DM9000 data sheets say we should be able to
328          * poll the ERRE bit in EPCR to wait for the EEPROM
329          * operation. From testing several chips, this bit
330          * does not seem to work.
331          *
332          * We attempt to use the bit, but fall back to the
333          * timeout (which is why we do not return an error
334          * on expiry) to say that the EEPROM operation has
335          * completed.
336          */
337
338         while (1) {
339                 status = dm9000_read_locked(db, DM9000_EPCR);
340
341                 if ((status & EPCR_ERRE) == 0)
342                         break;
343
344                 msleep(1);
345
346                 if (timeout-- < 0) {
347                         dev_dbg(db->dev, "timeout waiting EEPROM\n");
348                         break;
349                 }
350         }
351
352         return 0;
353 }
354
355 /*
356  *  Read a word data from EEPROM
357  */
358 static void
359 dm9000_read_eeprom(board_info_t *db, int offset, u8 *to)
360 {
361         unsigned long flags;
362
363         if (db->flags & DM9000_PLATF_NO_EEPROM) {
364                 to[0] = 0xff;
365                 to[1] = 0xff;
366                 return;
367         }
368
369         mutex_lock(&db->addr_lock);
370         
371         spin_lock_irqsave(&db->lock, flags);
372                 
373         iow(db, DM9000_EPAR, offset);
374         iow(db, DM9000_EPCR, EPCR_ERPRR);
375
376         spin_unlock_irqrestore(&db->lock, flags);
377
378         dm9000_wait_eeprom(db);
379
380         /* delay for at-least 150uS */
381         msleep(1);
382         
383         spin_lock_irqsave(&db->lock, flags);
384         
385         iow(db, DM9000_EPCR, 0x0);
386
387         to[0] = ior(db, DM9000_EPDRL);
388         to[1] = ior(db, DM9000_EPDRH);
389
390         spin_unlock_irqrestore(&db->lock, flags);
391
392         mutex_unlock(&db->addr_lock);
393 }
394
395 /*
396  * Write a word data to SROM
397  */
398 static void
399 dm9000_write_eeprom(board_info_t *db, int offset, u8 *data)
400 {
401         unsigned long flags;
402
403         if (db->flags & DM9000_PLATF_NO_EEPROM)
404                 return;
405
406         mutex_lock(&db->addr_lock);
407         
408         spin_lock_irqsave(&db->lock, flags);    
409         iow(db, DM9000_EPAR, offset);
410         iow(db, DM9000_EPDRH, data[1]);
411         iow(db, DM9000_EPDRL, data[0]);
412         iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
413         spin_unlock_irqrestore(&db->lock, flags);
414
415         dm9000_wait_eeprom(db);
416
417         mdelay(1);      /* wait at least 150uS to clear */
418         
419         spin_lock_irqsave(&db->lock, flags);
420         iow(db, DM9000_EPCR, 0);
421         spin_unlock_irqrestore(&db->lock, flags);
422
423         mutex_unlock(&db->addr_lock);
424 }
425
426 /* ethtool ops */
427
428 static void dm9000_get_drvinfo(struct net_device *dev,
429                                struct ethtool_drvinfo *info)
430 {
431         board_info_t *dm = to_dm9000_board(dev);
432
433         strcpy(info->driver, CARDNAME);
434         strcpy(info->version, DRV_VERSION);
435         strcpy(info->bus_info, to_platform_device(dm->dev)->name);
436 }
437
438 static u32 dm9000_get_msglevel(struct net_device *dev)
439 {
440         board_info_t *dm = to_dm9000_board(dev);
441
442         return dm->msg_enable;
443 }
444
445 static void dm9000_set_msglevel(struct net_device *dev, u32 value)
446 {
447         board_info_t *dm = to_dm9000_board(dev);
448
449         dm->msg_enable = value;
450 }
451
452 static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
453 {
454         board_info_t *dm = to_dm9000_board(dev);
455
456         mii_ethtool_gset(&dm->mii, cmd);
457         return 0;
458 }
459
460 static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
461 {
462         board_info_t *dm = to_dm9000_board(dev);
463
464         return mii_ethtool_sset(&dm->mii, cmd);
465 }
466
467 static int dm9000_nway_reset(struct net_device *dev)
468 {
469         board_info_t *dm = to_dm9000_board(dev);
470         return mii_nway_restart(&dm->mii);
471 }
472
473 static uint32_t dm9000_get_rx_csum(struct net_device *dev)
474 {
475         board_info_t *dm = to_dm9000_board(dev);
476         return dm->rx_csum;
477 }
478
479 static int dm9000_set_rx_csum_unlocked(struct net_device *dev, uint32_t data)
480 {
481         board_info_t *dm = to_dm9000_board(dev);
482
483         if (dm->can_csum) {
484                 dm->rx_csum = data;
485                 iow(dm, DM9000_RCSR, dm->rx_csum ? RCSR_CSUM : 0);
486
487                 return 0;
488         }
489
490         return -EOPNOTSUPP;
491 }
492
493 static int dm9000_set_rx_csum(struct net_device *dev, uint32_t data)
494 {
495         board_info_t *dm = to_dm9000_board(dev);
496         unsigned long flags;
497         int ret;
498
499         spin_lock_irqsave(&dm->lock, flags);
500         ret = dm9000_set_rx_csum_unlocked(dev, data);
501         spin_unlock_irqrestore(&dm->lock, flags);
502
503         return ret;
504 }
505
506 static int dm9000_set_tx_csum(struct net_device *dev, uint32_t data)
507 {
508         board_info_t *dm = to_dm9000_board(dev);
509         int ret = -EOPNOTSUPP;
510
511         if (dm->can_csum)
512                 ret = ethtool_op_set_tx_csum(dev, data);
513         return ret;
514 }
515
516 static u32 dm9000_get_link(struct net_device *dev)
517 {
518         board_info_t *dm = to_dm9000_board(dev);
519         u32 ret;
520
521         if (dm->flags & DM9000_PLATF_EXT_PHY)
522                 ret = mii_link_ok(&dm->mii);
523         else
524                 ret = dm9000_read_locked(dm, DM9000_NSR) & NSR_LINKST ? 1 : 0;
525
526         return ret;
527 }
528
529 #define DM_EEPROM_MAGIC         (0x444D394B)
530
531 static int dm9000_get_eeprom_len(struct net_device *dev)
532 {
533         return 128;
534 }
535
536 static int dm9000_get_eeprom(struct net_device *dev,
537                              struct ethtool_eeprom *ee, u8 *data)
538 {
539         board_info_t *dm = to_dm9000_board(dev);
540         int offset = ee->offset;
541         int len = ee->len;
542         int i;
543
544         /* EEPROM access is aligned to two bytes */
545
546         if ((len & 1) != 0 || (offset & 1) != 0)
547                 return -EINVAL;
548
549         if (dm->flags & DM9000_PLATF_NO_EEPROM)
550                 return -ENOENT;
551
552         ee->magic = DM_EEPROM_MAGIC;
553
554         for (i = 0; i < len; i += 2)
555                 dm9000_read_eeprom(dm, (offset + i) / 2, data + i);
556
557         return 0;
558 }
559
560 static int dm9000_set_eeprom(struct net_device *dev,
561                              struct ethtool_eeprom *ee, u8 *data)
562 {
563         board_info_t *dm = to_dm9000_board(dev);
564         int offset = ee->offset;
565         int len = ee->len;
566         int i;
567
568         /* EEPROM access is aligned to two bytes */
569
570         if ((len & 1) != 0 || (offset & 1) != 0)
571                 return -EINVAL;
572
573         if (dm->flags & DM9000_PLATF_NO_EEPROM)
574                 return -ENOENT;
575
576         if (ee->magic != DM_EEPROM_MAGIC)
577                 return -EINVAL;
578
579         for (i = 0; i < len; i += 2)
580                 dm9000_write_eeprom(dm, (offset + i) / 2, data + i);
581
582         return 0;
583 }
584
585 static void dm9000_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
586 {
587         board_info_t *dm = to_dm9000_board(dev);
588
589         memset(w, 0, sizeof(struct ethtool_wolinfo));
590
591         /* note, we could probably support wake-phy too */
592         w->supported = dm->wake_supported ? WAKE_MAGIC : 0;
593         w->wolopts = dm->wake_state;
594 }
595
596 static int dm9000_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
597 {
598         board_info_t *dm = to_dm9000_board(dev);
599         unsigned long flags;
600         u32 opts = w->wolopts;
601         u32 wcr = 0;
602
603         if (!dm->wake_supported)
604                 return -EOPNOTSUPP;
605
606         if (opts & ~WAKE_MAGIC)
607                 return -EINVAL;
608
609         if (opts & WAKE_MAGIC)
610                 wcr |= WCR_MAGICEN;
611
612         mutex_lock(&dm->addr_lock);
613
614         spin_lock_irqsave(&dm->lock, flags);
615         iow(dm, DM9000_WCR, wcr);
616         spin_unlock_irqrestore(&dm->lock, flags);
617
618         mutex_unlock(&dm->addr_lock);
619
620         if (dm->wake_state != opts) {
621                 /* change in wol state, update IRQ state */
622
623                 if (!dm->wake_state)
624                         set_irq_wake(dm->irq_wake, 1);
625                 else if (dm->wake_state & !opts)
626                         set_irq_wake(dm->irq_wake, 0);
627         }
628
629         dm->wake_state = opts;
630         return 0;
631 }
632
633 static const struct ethtool_ops dm9000_ethtool_ops = {
634         .get_drvinfo            = dm9000_get_drvinfo,
635         .get_settings           = dm9000_get_settings,
636         .set_settings           = dm9000_set_settings,
637         .get_msglevel           = dm9000_get_msglevel,
638         .set_msglevel           = dm9000_set_msglevel,
639         .nway_reset             = dm9000_nway_reset,
640         .get_link               = dm9000_get_link,
641         .get_wol                = dm9000_get_wol,
642         .set_wol                = dm9000_set_wol,
643         .get_eeprom_len         = dm9000_get_eeprom_len,
644         .get_eeprom             = dm9000_get_eeprom,
645         .set_eeprom             = dm9000_set_eeprom,
646         .get_rx_csum            = dm9000_get_rx_csum,
647         .set_rx_csum            = dm9000_set_rx_csum,
648         .get_tx_csum            = ethtool_op_get_tx_csum,
649         .set_tx_csum            = dm9000_set_tx_csum,
650 };
651
652 static void dm9000_show_carrier(board_info_t *db,
653                                 unsigned carrier, unsigned nsr)
654 {
655         struct net_device *ndev = db->ndev;
656         unsigned ncr = dm9000_read_locked(db, DM9000_NCR);
657
658         if (carrier)
659                 dev_info(db->dev, "%s: link up, %dMbps, %s-duplex, no LPA\n",
660                          ndev->name, (nsr & NSR_SPEED) ? 10 : 100,
661                          (ncr & NCR_FDX) ? "full" : "half");
662         else
663                 dev_info(db->dev, "%s: link down\n", ndev->name);
664 }
665
666 static void
667 dm9000_poll_work(struct work_struct *w)
668 {
669         struct delayed_work *dw = to_delayed_work(w);
670         board_info_t *db = container_of(dw, board_info_t, phy_poll);
671         struct net_device *ndev = db->ndev;
672
673         if (db->flags & DM9000_PLATF_SIMPLE_PHY &&
674             !(db->flags & DM9000_PLATF_EXT_PHY)) {
675                 unsigned nsr = dm9000_read_locked(db, DM9000_NSR);
676                 unsigned old_carrier = netif_carrier_ok(ndev) ? 1 : 0;
677                 unsigned new_carrier;
678
679                 new_carrier = (nsr & NSR_LINKST) ? 1 : 0;
680
681                 if (old_carrier != new_carrier) {
682                         if (netif_msg_link(db))
683                                 dm9000_show_carrier(db, new_carrier, nsr);
684
685                         if (!new_carrier)
686                                 netif_carrier_off(ndev);
687                         else
688                                 netif_carrier_on(ndev);
689                 }
690         } else
691                 mii_check_media(&db->mii, netif_msg_link(db), 0);
692         
693         if (netif_running(ndev))
694                 dm9000_schedule_poll(db);
695 }
696
697 /* dm9000_release_board
698  *
699  * release a board, and any mapped resources
700  */
701
702 static void
703 dm9000_release_board(struct platform_device *pdev, struct board_info *db)
704 {
705         /* unmap our resources */
706
707         iounmap(db->io_addr);
708         iounmap(db->io_data);
709
710         /* release the resources */
711
712         release_resource(db->data_req);
713         kfree(db->data_req);
714
715         release_resource(db->addr_req);
716         kfree(db->addr_req);
717 }
718
719 static unsigned char dm9000_type_to_char(enum dm9000_type type)
720 {
721         switch (type) {
722         case TYPE_DM9000E: return 'e';
723         case TYPE_DM9000A: return 'a';
724         case TYPE_DM9000B: return 'b';
725         }
726
727         return '?';
728 }
729
730 /*
731  *  Set DM9000 multicast address
732  */
733 static void
734 dm9000_hash_table_unlocked(struct net_device *dev)
735 {
736         board_info_t *db = netdev_priv(dev);
737         struct netdev_hw_addr *ha;
738         int i, oft;
739         u32 hash_val;
740         u16 hash_table[4];
741         u8 rcr = RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN;
742
743         dm9000_dbg(db, 1, "entering %s\n", __func__);
744
745         for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
746                 iow(db, oft, dev->dev_addr[i]);
747
748         /* Clear Hash Table */
749         for (i = 0; i < 4; i++)
750                 hash_table[i] = 0x0;
751
752         /* broadcast address */
753         hash_table[3] = 0x8000;
754
755         if (dev->flags & IFF_PROMISC)
756                 rcr |= RCR_PRMSC;
757
758         if (dev->flags & IFF_ALLMULTI)
759                 rcr |= RCR_ALL;
760
761         /* the multicast address in Hash Table : 64 bits */
762         netdev_for_each_mc_addr(ha, dev) {
763                 hash_val = ether_crc_le(6, ha->addr) & 0x3f;
764                 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
765         }
766
767         /* Write the hash table to MAC MD table */
768         for (i = 0, oft = DM9000_MAR; i < 4; i++) {
769                 iow(db, oft++, hash_table[i]);
770                 iow(db, oft++, hash_table[i] >> 8);
771         }
772
773         iow(db, DM9000_RCR, rcr);
774 }
775
776 static void
777 dm9000_hash_table(struct net_device *dev)
778 {
779         board_info_t *db = netdev_priv(dev);
780         unsigned long flags;
781
782         spin_lock_irqsave(&db->lock, flags);
783         dm9000_hash_table_unlocked(dev);
784         spin_unlock_irqrestore(&db->lock, flags);
785 }
786
787 /*
788  * Initialize dm9000 board
789  */
790 static void
791 dm9000_init_dm9000(struct net_device *dev)
792 {
793         board_info_t *db = netdev_priv(dev);
794         unsigned int imr;
795         unsigned int ncr;
796
797         dm9000_dbg(db, 1, "entering %s\n", __func__);
798
799         /* I/O mode */
800         db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
801
802         /* Checksum mode */
803         dm9000_set_rx_csum_unlocked(dev, db->rx_csum);
804
805         /* GPIO0 on pre-activate PHY */
806         iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
807         iow(db, DM9000_GPCR, GPCR_GEP_CNTL);    /* Let GPIO0 output */
808         iow(db, DM9000_GPR, 0); /* Enable PHY */
809
810         ncr = (db->flags & DM9000_PLATF_EXT_PHY) ? NCR_EXT_PHY : 0;
811
812         /* if wol is needed, then always set NCR_WAKEEN otherwise we end
813          * up dumping the wake events if we disable this. There is already
814          * a wake-mask in DM9000_WCR */
815         if (db->wake_supported)
816                 ncr |= NCR_WAKEEN;
817
818         iow(db, DM9000_NCR, ncr);
819
820         /* Program operating register */
821         iow(db, DM9000_TCR, 0);         /* TX Polling clear */
822         iow(db, DM9000_BPTR, 0x3f);     /* Less 3Kb, 200us */
823         iow(db, DM9000_FCR, 0xff);      /* Flow Control */
824         iow(db, DM9000_SMCR, 0);        /* Special Mode */
825         /* clear TX status */
826         iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
827         iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
828
829         /* Set address filter table */
830         dm9000_hash_table_unlocked(dev);
831
832         imr = IMR_PAR | IMR_PTM | IMR_PRM;
833         if (db->type != TYPE_DM9000E)
834                 imr |= IMR_LNKCHNG;
835
836         db->imr_all = imr;
837
838         /* Enable TX/RX interrupt mask */
839         iow(db, DM9000_IMR, imr);
840
841         /* Init Driver variable */
842         db->tx_pkt_cnt = 0;
843         db->queue_pkt_len = 0;
844         dev->trans_start = jiffies;
845 }
846
847 /* Our watchdog timed out. Called by the networking layer */
848 static void dm9000_timeout(struct net_device *dev)
849 {
850         board_info_t *db = netdev_priv(dev);
851         u8 reg_save;
852         unsigned long flags;
853
854         /* Save previous register address */
855         reg_save = readb(db->io_addr);
856         spin_lock_irqsave(&db->lock, flags);
857
858         netif_stop_queue(dev);
859         dm9000_reset(db);
860         dm9000_init_dm9000(dev);
861         /* We can accept TX packets again */
862         dev->trans_start = jiffies; /* prevent tx timeout */
863         netif_wake_queue(dev);
864
865         /* Restore previous register address */
866         writeb(reg_save, db->io_addr);
867         spin_unlock_irqrestore(&db->lock, flags);
868 }
869
870 static void dm9000_send_packet(struct net_device *dev,
871                                int ip_summed,
872                                u16 pkt_len)
873 {
874         board_info_t *dm = to_dm9000_board(dev);
875
876         /* The DM9000 is not smart enough to leave fragmented packets alone. */
877         if (dm->ip_summed != ip_summed) {
878                 if (ip_summed == CHECKSUM_NONE)
879                         iow(dm, DM9000_TCCR, 0);
880                 else
881                         iow(dm, DM9000_TCCR, TCCR_IP | TCCR_UDP | TCCR_TCP);
882                 dm->ip_summed = ip_summed;
883         }
884
885         /* Set TX length to DM9000 */
886         iow(dm, DM9000_TXPLL, pkt_len);
887         iow(dm, DM9000_TXPLH, pkt_len >> 8);
888
889         /* Issue TX polling command */
890         iow(dm, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
891 }
892
893 /*
894  *  Hardware start transmission.
895  *  Send a packet to media from the upper layer.
896  */
897 static int
898 dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
899 {
900         unsigned long flags;
901         board_info_t *db = netdev_priv(dev);
902
903         dm9000_dbg(db, 3, "%s:\n", __func__);
904
905         if (db->tx_pkt_cnt > 1)
906                 return NETDEV_TX_BUSY;
907
908         spin_lock_irqsave(&db->lock, flags);
909         
910         /* Move data to DM9000 TX RAM */
911         writeb(DM9000_MWCMD, db->io_addr);
912
913         (db->outblk)(db->io_data, skb->data, skb->len);
914         dev->stats.tx_bytes += skb->len;
915
916         db->tx_pkt_cnt++;
917         /* TX control: First packet immediately send, second packet queue */
918         if (db->tx_pkt_cnt == 1) {
919                 dm9000_send_packet(dev, skb->ip_summed, skb->len);
920         } else {
921                 /* Second packet */
922                 db->queue_pkt_len = skb->len;
923                 db->queue_ip_summed = skb->ip_summed;
924                 netif_stop_queue(dev);
925         }
926
927         spin_unlock_irqrestore(&db->lock, flags);
928         
929         /* free this SKB */
930         dev_kfree_skb(skb);
931
932         return NETDEV_TX_OK;
933 }
934
935 /*
936  * DM9000 interrupt handler
937  * receive the packet to upper layer, free the transmitted packet
938  */
939
940 static void dm9000_tx_done(struct net_device *dev, board_info_t *db)
941 {
942         int tx_status = ior(db, DM9000_NSR);    /* Got TX status */
943
944         if (tx_status & (NSR_TX2END | NSR_TX1END)) {
945                 /* One packet sent complete */
946                 db->tx_pkt_cnt--;
947                 dev->stats.tx_packets++;
948
949                 if (netif_msg_tx_done(db))
950                         dev_dbg(db->dev, "tx done, NSR %02x\n", tx_status);
951
952                 /* Queue packet check & send */
953                 if (db->tx_pkt_cnt > 0)
954                         dm9000_send_packet(dev, db->queue_ip_summed,
955                                            db->queue_pkt_len);
956                 netif_wake_queue(dev);
957         }
958 }
959
960 struct dm9000_rxhdr {
961         u8      RxPktReady;
962         u8      RxStatus;
963         __le16  RxLen;
964 } __packed;
965
966 /*
967  *  Received a packet and pass to upper layer
968  */
969 static void
970 dm9000_rx(struct net_device *dev)
971 {
972         board_info_t *db = netdev_priv(dev);
973         struct dm9000_rxhdr rxhdr;
974         struct sk_buff *skb;
975         u8 rxbyte, *rdptr;
976         bool GoodPacket;
977         int RxLen;
978
979         /* Check packet ready or not */
980         do {
981                 ior(db, DM9000_MRCMDX); /* Dummy read */
982
983                 udelay(1);//add by lyx@20100713,or dm9000_rx will be error in high frequence
984
985                 #if 1
986                 /* Get most updated data */             
987                 rxbyte = ior(db, DM9000_MRCMDX);        /* Dummy read */
988                 #else
989                 rxbyte = readb(db->io_data);
990                 #endif
991                 
992                 /* Status check: this byte must be 0 or 1 */
993                 if (rxbyte & DM9000_PKT_ERR) {
994                         dev_warn(db->dev, "status check fail: %d\n", rxbyte);
995                         #if 0
996                         iow(db, DM9000_RCR, 0x00);      /* Stop Device */
997                         iow(db, DM9000_ISR, IMR_PAR);   /* Stop INT request */
998                         #else
999                         dm9000_reset(db);
1000                         #endif                  
1001                         return;
1002                 }
1003
1004                 if (!(rxbyte & DM9000_PKT_RDY))
1005                         return;
1006                 
1007                 /* A packet ready now  & Get status/length */
1008                 GoodPacket = true;
1009                 writeb(DM9000_MRCMD, db->io_addr);
1010
1011                 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
1012
1013                 RxLen = le16_to_cpu(rxhdr.RxLen);
1014
1015                 if (netif_msg_rx_status(db))
1016                         dev_dbg(db->dev, "RX: status %02x, length %04x\n",
1017                                 rxhdr.RxStatus, RxLen);
1018
1019                 /* Packet Status check */
1020                 if (RxLen < 0x40) {
1021                         GoodPacket = false;
1022                         if (netif_msg_rx_err(db))
1023                                 dev_dbg(db->dev, "RX: Bad Packet (runt)\n");
1024                 }
1025
1026                 if (RxLen > DM9000_PKT_MAX) {
1027                         dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
1028                 }
1029
1030                 /* rxhdr.RxStatus is identical to RSR register. */
1031                 if (rxhdr.RxStatus & (RSR_FOE | RSR_CE | RSR_AE |
1032                                       RSR_PLE | RSR_RWTO |
1033                                       RSR_LCS | RSR_RF)) {
1034                         GoodPacket = false;
1035                         if (rxhdr.RxStatus & RSR_FOE) {
1036                                 if (netif_msg_rx_err(db))
1037                                         dev_dbg(db->dev, "fifo error\n");
1038                                 dev->stats.rx_fifo_errors++;
1039                         }
1040                         if (rxhdr.RxStatus & RSR_CE) {
1041                                 if (netif_msg_rx_err(db))
1042                                         dev_dbg(db->dev, "crc error\n");
1043                                 dev->stats.rx_crc_errors++;
1044                         }
1045                         if (rxhdr.RxStatus & RSR_RF) {
1046                                 if (netif_msg_rx_err(db))
1047                                         dev_dbg(db->dev, "length error\n");
1048                                 dev->stats.rx_length_errors++;
1049                         }
1050                 }
1051
1052                 /* Move data from DM9000 */
1053                 if (GoodPacket &&
1054                     ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
1055                         skb_reserve(skb, 2);
1056                         rdptr = (u8 *) skb_put(skb, RxLen - 4);
1057
1058                         /* Read received packet from RX SRAM */
1059
1060                         (db->inblk)(db->io_data, rdptr, RxLen);
1061                         dev->stats.rx_bytes += RxLen;
1062
1063                         /* Pass to upper layer */
1064                         skb->protocol = eth_type_trans(skb, dev);
1065                         if (db->rx_csum) {
1066                                 if ((((rxbyte & 0x1c) << 3) & rxbyte) == 0)
1067                                         skb->ip_summed = CHECKSUM_UNNECESSARY;
1068                                 else
1069                                         skb->ip_summed = CHECKSUM_NONE;
1070                         }
1071                         netif_rx(skb);
1072                         dev->stats.rx_packets++;
1073
1074                 } else {
1075                         /* need to dump the packet's data */
1076
1077                         (db->dumpblk)(db->io_data, RxLen);
1078                 }
1079         } while (rxbyte & DM9000_PKT_RDY);
1080 }
1081
1082 static irqreturn_t dm9000_interrupt(int irq, void *dev_id)
1083 {
1084         struct net_device *dev = dev_id;
1085         board_info_t *db = netdev_priv(dev);
1086         int int_status;
1087         unsigned long flags;
1088         u8 reg_save;
1089
1090         dm9000_dbg(db, 3, "entering %s\n", __func__);
1091
1092         /* A real interrupt coming */
1093
1094         /* holders of db->lock must always block IRQs */        
1095         spin_lock_irqsave(&db->lock, flags);
1096
1097         /* Save previous register address */
1098         reg_save = readb(db->io_addr);
1099
1100         /* Disable all interrupts */
1101         iow(db, DM9000_IMR, IMR_PAR);
1102
1103         /* Got DM9000 interrupt status */
1104         int_status = ior(db, DM9000_ISR);       /* Got ISR */
1105         iow(db, DM9000_ISR, int_status);        /* Clear ISR status */
1106
1107         if (netif_msg_intr(db))
1108                 dev_dbg(db->dev, "interrupt status %02x\n", int_status);
1109
1110         /* Received the coming packet */
1111         if (int_status & ISR_PRS)
1112                 dm9000_rx(dev);
1113
1114         /* Trnasmit Interrupt check */
1115         if (int_status & ISR_PTS)
1116                 dm9000_tx_done(dev, db);
1117
1118         if (db->type != TYPE_DM9000E) {
1119                 if (int_status & ISR_LNKCHNG) {
1120                         /* fire a link-change request */
1121                         schedule_delayed_work(&db->phy_poll, 1);
1122                 }
1123         }
1124
1125         /* Re-enable interrupt mask */
1126         iow(db, DM9000_IMR, db->imr_all);
1127
1128         /* Restore previous register address */
1129         writeb(reg_save, db->io_addr);
1130
1131         spin_unlock_irqrestore(&db->lock, flags);
1132         
1133         return IRQ_HANDLED;
1134 }
1135
1136 static irqreturn_t dm9000_wol_interrupt(int irq, void *dev_id)
1137 {
1138         struct net_device *dev = dev_id;
1139         board_info_t *db = netdev_priv(dev);
1140         unsigned long flags;
1141         unsigned nsr, wcr;
1142
1143         spin_lock_irqsave(&db->lock, flags);
1144
1145         nsr = ior(db, DM9000_NSR);
1146         wcr = ior(db, DM9000_WCR);
1147
1148         dev_dbg(db->dev, "%s: NSR=0x%02x, WCR=0x%02x\n", __func__, nsr, wcr);
1149
1150         if (nsr & NSR_WAKEST) {
1151                 /* clear, so we can avoid */
1152                 iow(db, DM9000_NSR, NSR_WAKEST);
1153
1154                 if (wcr & WCR_LINKST)
1155                         dev_info(db->dev, "wake by link status change\n");
1156                 if (wcr & WCR_SAMPLEST)
1157                         dev_info(db->dev, "wake by sample packet\n");
1158                 if (wcr & WCR_MAGICST )
1159                         dev_info(db->dev, "wake by magic packet\n");
1160                 if (!(wcr & (WCR_LINKST | WCR_SAMPLEST | WCR_MAGICST)))
1161                         dev_err(db->dev, "wake signalled with no reason? "
1162                                 "NSR=0x%02x, WSR=0x%02x\n", nsr, wcr);
1163
1164         }
1165
1166         spin_unlock_irqrestore(&db->lock, flags);
1167
1168         return (nsr & NSR_WAKEST) ? IRQ_HANDLED : IRQ_NONE;
1169 }
1170
1171 #ifdef CONFIG_NET_POLL_CONTROLLER
1172 /*
1173  *Used by netconsole
1174  */
1175 static void dm9000_poll_controller(struct net_device *dev)
1176 {
1177         disable_irq(dev->irq);
1178         dm9000_interrupt(dev->irq, dev);
1179         enable_irq(dev->irq);
1180 }
1181 #endif
1182
1183 /*
1184  *  Open the interface.
1185  *  The interface is opened whenever "ifconfig" actives it.
1186  */
1187 static int
1188 dm9000_open(struct net_device *dev)
1189 {
1190         board_info_t *db = netdev_priv(dev);
1191         unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
1192
1193         if (netif_msg_ifup(db))
1194                 dev_dbg(db->dev, "enabling %s\n", dev->name);
1195
1196         /* If there is no IRQ type specified, default to something that
1197          * may work, and tell the user that this is a problem */
1198
1199         if (irqflags == IRQF_TRIGGER_NONE)
1200                 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
1201
1202         //irqflags |= IRQF_SHARED;
1203
1204         if (request_irq(dev->irq, dm9000_interrupt, irqflags, dev->name, dev))
1205                 return -EAGAIN;
1206
1207         /* Initialize DM9000 board */
1208         dm9000_reset(db);
1209         dm9000_init_dm9000(dev);
1210
1211         /* Init driver variable */
1212         db->dbug_cnt = 0;
1213
1214         mii_check_media(&db->mii, netif_msg_link(db), 1);
1215         netif_start_queue(dev);
1216         
1217         dm9000_schedule_poll(db);
1218
1219         return 0;
1220 }
1221
1222 /*
1223  * Sleep, either by using msleep() or if we are suspending, then
1224  * use mdelay() to sleep.
1225  */
1226 static void dm9000_msleep(board_info_t *db, unsigned int ms)
1227 {
1228         if (db->in_suspend)
1229                 mdelay(ms);
1230         else
1231                 msleep(ms);
1232 }
1233
1234 /*
1235  *   Read a word from phyxcer
1236  */
1237 static int
1238 dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1239 {
1240         board_info_t *db = netdev_priv(dev);
1241         unsigned long flags;
1242         unsigned int reg_save;
1243         int ret;
1244
1245         mutex_lock(&db->addr_lock);
1246
1247         spin_lock_irqsave(&db->lock,flags);
1248         
1249         /* Save previous register address */
1250         reg_save = readb(db->io_addr);
1251
1252         /* Fill the phyxcer register into REG_0C */
1253         iow(db, DM9000_EPAR, DM9000_PHY | reg);
1254
1255         iow(db, DM9000_EPCR, EPCR_ERPRR | EPCR_EPOS);   /* Issue phyxcer read command */
1256
1257         writeb(reg_save, db->io_addr);
1258         spin_unlock_irqrestore(&db->lock,flags);
1259
1260         dm9000_msleep(db, 1);           /* Wait read complete */
1261
1262         spin_lock_irqsave(&db->lock,flags);
1263         reg_save = readb(db->io_addr);
1264
1265         iow(db, DM9000_EPCR, 0x0);      /* Clear phyxcer read command */
1266
1267         /* The read data keeps on REG_0D & REG_0E */
1268         ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1269
1270         /* restore the previous address */
1271         writeb(reg_save, db->io_addr);
1272         spin_unlock_irqrestore(&db->lock,flags);
1273
1274         mutex_unlock(&db->addr_lock);
1275
1276         dm9000_dbg(db, 5, "phy_read[%02x] -> %04x\n", reg, ret);
1277         return ret;
1278 }
1279
1280 /*
1281  *   Write a word to phyxcer
1282  */
1283 static void
1284 dm9000_phy_write(struct net_device *dev,
1285                  int phyaddr_unused, int reg, int value)
1286 {
1287         board_info_t *db = netdev_priv(dev);
1288         unsigned long flags;
1289         unsigned long reg_save;
1290
1291         dm9000_dbg(db, 5, "phy_write[%02x] = %04x\n", reg, value);
1292         mutex_lock(&db->addr_lock);
1293
1294         spin_lock_irqsave(&db->lock,flags);
1295         
1296         /* Save previous register address */
1297         reg_save = readb(db->io_addr);
1298
1299         /* Fill the phyxcer register into REG_0C */
1300         iow(db, DM9000_EPAR, DM9000_PHY | reg);
1301
1302         /* Fill the written data into REG_0D & REG_0E */
1303         iow(db, DM9000_EPDRL, value);
1304         iow(db, DM9000_EPDRH, value >> 8);
1305
1306         iow(db, DM9000_EPCR, EPCR_EPOS | EPCR_ERPRW);   /* Issue phyxcer write command */
1307
1308         writeb(reg_save, db->io_addr);
1309         spin_unlock_irqrestore(&db->lock, flags);
1310
1311         dm9000_msleep(db, 1);           /* Wait write complete */
1312
1313         spin_lock_irqsave(&db->lock,flags);     
1314         reg_save = readb(db->io_addr);
1315
1316         iow(db, DM9000_EPCR, 0x0);      /* Clear phyxcer write command */
1317
1318         /* restore the previous address */
1319         writeb(reg_save, db->io_addr);
1320
1321         spin_unlock_irqrestore(&db->lock, flags);
1322         mutex_unlock(&db->addr_lock);
1323 }
1324
1325 static void
1326 dm9000_shutdown(struct net_device *dev)
1327 {
1328         board_info_t *db = netdev_priv(dev);
1329
1330         /* RESET device */
1331         dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
1332         iow(db, DM9000_GPR, 0x01);      /* Power-Down PHY */
1333         iow(db, DM9000_IMR, IMR_PAR);   /* Disable all interrupt */
1334         iow(db, DM9000_RCR, 0x00);      /* Disable RX */
1335 }
1336
1337 /*
1338  * Stop the interface.
1339  * The interface is stopped when it is brought.
1340  */
1341 static int
1342 dm9000_stop(struct net_device *ndev)
1343 {
1344         board_info_t *db = netdev_priv(ndev);
1345
1346         if (netif_msg_ifdown(db))
1347                 dev_dbg(db->dev, "shutting down %s\n", ndev->name);
1348
1349         cancel_delayed_work_sync(&db->phy_poll);
1350
1351         netif_stop_queue(ndev);
1352         netif_carrier_off(ndev);
1353
1354         /* free interrupt */
1355         free_irq(ndev->irq, ndev);
1356
1357         dm9000_shutdown(ndev);
1358
1359         return 0;
1360 }
1361
1362 static const struct net_device_ops dm9000_netdev_ops = {
1363         .ndo_open               = dm9000_open,
1364         .ndo_stop               = dm9000_stop,
1365         .ndo_start_xmit         = dm9000_start_xmit,
1366         .ndo_tx_timeout         = dm9000_timeout,
1367         .ndo_set_multicast_list = dm9000_hash_table,
1368         .ndo_do_ioctl           = dm9000_ioctl,
1369         .ndo_change_mtu         = eth_change_mtu,
1370         .ndo_validate_addr      = eth_validate_addr,
1371         .ndo_set_mac_address    = eth_mac_addr,
1372 #ifdef CONFIG_NET_POLL_CONTROLLER
1373         .ndo_poll_controller    = dm9000_poll_controller,
1374 #endif
1375 };
1376
1377 /*
1378  * Search DM9000 board, allocate space and register it
1379  */
1380 static int __devinit
1381 dm9000_probe(struct platform_device *pdev)
1382 {
1383         struct dm9000_plat_data *pdata = pdev->dev.platform_data;
1384         struct board_info *db;  /* Point a board information structure */
1385         struct net_device *ndev;
1386         const unsigned char *mac_src;
1387         int ret = 0;
1388         int iosize;
1389         int i;
1390         u32 id_val;
1391
1392         /* Init network device */
1393         ndev = alloc_etherdev(sizeof(struct board_info));
1394         if (!ndev) {
1395                 dev_err(&pdev->dev, "could not allocate device.\n");
1396                 return -ENOMEM;
1397         }
1398
1399         SET_NETDEV_DEV(ndev, &pdev->dev);
1400
1401         dev_dbg(&pdev->dev, "dm9000_probe()\n");
1402
1403         /* setup board info structure */
1404         db = netdev_priv(ndev);
1405
1406         db->dev = &pdev->dev;
1407         db->ndev = ndev;
1408
1409         spin_lock_init(&db->lock);
1410         mutex_init(&db->addr_lock);
1411
1412         INIT_DELAYED_WORK(&db->phy_poll, dm9000_poll_work);
1413
1414         db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1415         db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1416         db->irq_res  = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1417
1418         if (db->addr_res == NULL || db->data_res == NULL ||
1419             db->irq_res == NULL) {
1420                 dev_err(db->dev, "insufficient resources\n");
1421                 ret = -ENOENT;
1422                 goto out;
1423         }
1424
1425         db->irq_wake = platform_get_irq(pdev, 1);
1426         if (db->irq_wake >= 0) {
1427                 dev_dbg(db->dev, "wakeup irq %d\n", db->irq_wake);
1428
1429                 ret = request_irq(db->irq_wake, dm9000_wol_interrupt,
1430                                   IRQF_SHARED, dev_name(db->dev), ndev);
1431                 if (ret) {
1432                         dev_err(db->dev, "cannot get wakeup irq (%d)\n", ret);
1433                 } else {
1434
1435                         /* test to see if irq is really wakeup capable */
1436                         ret = set_irq_wake(db->irq_wake, 1);
1437                         if (ret) {
1438                                 dev_err(db->dev, "irq %d cannot set wakeup (%d)\n",
1439                                         db->irq_wake, ret);
1440                                 ret = 0;
1441                         } else {
1442                                 set_irq_wake(db->irq_wake, 0);
1443                                 db->wake_supported = 1;
1444                         }
1445                 }
1446         }
1447
1448         iosize = resource_size(db->addr_res);
1449         db->addr_req = request_mem_region(db->addr_res->start, iosize,
1450                                           pdev->name);
1451
1452         if (db->addr_req == NULL) {
1453                 dev_err(db->dev, "cannot claim address reg area\n");
1454                 ret = -EIO;
1455                 goto out;
1456         }
1457
1458         db->io_addr = ioremap(db->addr_res->start, iosize);
1459
1460         if (db->io_addr == NULL) {
1461                 dev_err(db->dev, "failed to ioremap address reg\n");
1462                 ret = -EINVAL;
1463                 goto out;
1464         }
1465
1466         iosize = resource_size(db->data_res);
1467         db->data_req = request_mem_region(db->data_res->start, iosize,
1468                                           pdev->name);
1469
1470         if (db->data_req == NULL) {
1471                 dev_err(db->dev, "cannot claim data reg area\n");
1472                 ret = -EIO;
1473                 goto out;
1474         }
1475
1476         db->io_data = ioremap(db->data_res->start, iosize);
1477
1478         if (db->io_data == NULL) {
1479                 dev_err(db->dev, "failed to ioremap data reg\n");
1480                 ret = -EINVAL;
1481                 goto out;
1482         }
1483
1484         /* fill in parameters for net-dev structure */
1485         ndev->base_addr = (unsigned long)db->io_addr;
1486
1487         //io init for dm9000 , modify by lyx@20100809
1488         if (pdata && pdata->io_init) {
1489                 if (pdata->io_init()) {
1490                         ret = -EINVAL;
1491                         goto out;
1492                 }
1493         }
1494
1495         if (gpio_request(pdata->irq_pin, "dm9000 interrupt")) {
1496                 gpio_free(pdata->irq_pin);
1497                 if (pdata->io_deinit)
1498                         pdata->io_deinit();
1499                 printk("[fun:%s line:%d], request gpio for net interrupt fail\n", __func__,__LINE__);
1500                 ret = -EINVAL;
1501                 goto out;
1502         }       
1503         gpio_pull_updown(pdata->irq_pin, pdata->irq_pin_value);
1504         gpio_direction_input(pdata->irq_pin);
1505
1506         ndev->irq = gpio_to_irq(pdata->irq_pin);
1507         //ndev->irq = db->irq_res->start;
1508         
1509         /* ensure at least we have a default set of IO routines */
1510         dm9000_set_io(db, iosize);
1511
1512         /* check to see if anything is being over-ridden */
1513         if (pdata != NULL) {
1514                 /* check to see if the driver wants to over-ride the
1515                  * default IO width */
1516
1517                 if (pdata->flags & DM9000_PLATF_8BITONLY)
1518                         dm9000_set_io(db, 1);
1519
1520                 if (pdata->flags & DM9000_PLATF_16BITONLY)
1521                         dm9000_set_io(db, 2);
1522
1523                 if (pdata->flags & DM9000_PLATF_32BITONLY)
1524                         dm9000_set_io(db, 4);
1525
1526                 /* check to see if there are any IO routine
1527                  * over-rides */
1528
1529                 if (pdata->inblk != NULL)
1530                         db->inblk = pdata->inblk;
1531
1532                 if (pdata->outblk != NULL)
1533                         db->outblk = pdata->outblk;
1534
1535                 if (pdata->dumpblk != NULL)
1536                         db->dumpblk = pdata->dumpblk;
1537
1538                 db->flags = pdata->flags;
1539         }
1540
1541 #ifdef CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL
1542         db->flags |= DM9000_PLATF_SIMPLE_PHY;
1543 #endif
1544
1545         dm9000_reset(db);
1546
1547         /* try multiple times, DM9000 sometimes gets the read wrong */
1548         for (i = 0; i < 8; i++) {
1549                 id_val  = ior(db, DM9000_VIDL);
1550                 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
1551                 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
1552                 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
1553
1554                 if (id_val == DM9000_ID)
1555                         break;
1556                 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
1557         }
1558
1559         if (id_val != DM9000_ID) {
1560                 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
1561                 ret = -ENODEV;
1562                 goto out;
1563         }
1564
1565         /* Identify what type of DM9000 we are working on */
1566
1567         id_val = ior(db, DM9000_CHIPR);
1568         dev_dbg(db->dev, "dm9000 revision 0x%02x\n", id_val);
1569
1570         switch (id_val) {
1571         case CHIPR_DM9000A:
1572                 db->type = TYPE_DM9000A;
1573                 break;
1574         case CHIPR_DM9000B:
1575                 db->type = TYPE_DM9000B;
1576                 break;
1577         default:
1578                 dev_dbg(db->dev, "ID %02x => defaulting to DM9000E\n", id_val);
1579                 db->type = TYPE_DM9000E;
1580         }
1581
1582         /* dm9000a/b are capable of hardware checksum offload */
1583         if (db->type == TYPE_DM9000A || db->type == TYPE_DM9000B) {
1584                 db->can_csum = 1;
1585                 db->rx_csum = 1;
1586                 ndev->features |= NETIF_F_IP_CSUM;
1587         }
1588
1589         /* from this point we assume that we have found a DM9000 */
1590
1591         /* driver system function */
1592         ether_setup(ndev);
1593
1594         ndev->netdev_ops        = &dm9000_netdev_ops;
1595         ndev->watchdog_timeo    = msecs_to_jiffies(watchdog);
1596         ndev->ethtool_ops       = &dm9000_ethtool_ops;
1597
1598         db->msg_enable       = NETIF_MSG_LINK;
1599         db->mii.phy_id_mask  = 0x1f;
1600         db->mii.reg_num_mask = 0x1f;
1601         db->mii.force_media  = 0;
1602         db->mii.full_duplex  = 0;
1603         db->mii.dev          = ndev;
1604         db->mii.mdio_read    = dm9000_phy_read;
1605         db->mii.mdio_write   = dm9000_phy_write;
1606
1607         mac_src = "eeprom";
1608
1609         /* try reading the node address from the attached EEPROM */
1610         for (i = 0; i < 6; i += 2)
1611                 dm9000_read_eeprom(db, i / 2, ndev->dev_addr+i);
1612
1613         if (!is_valid_ether_addr(ndev->dev_addr) && pdata != NULL) {
1614                 mac_src = "platform data";
1615                 memcpy(ndev->dev_addr, pdata->dev_addr, 6);
1616         }
1617
1618         if (!is_valid_ether_addr(ndev->dev_addr)) {
1619                 /* try reading from mac */
1620                 
1621                 mac_src = "chip";
1622                 for (i = 0; i < 6; i++)
1623                         ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
1624         }
1625
1626         if (!is_valid_ether_addr(ndev->dev_addr))
1627                 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
1628                          "set using ifconfig\n", ndev->name);
1629
1630         platform_set_drvdata(pdev, ndev);
1631         ret = register_netdev(ndev);
1632
1633         if (ret == 0)
1634                 printk(KERN_INFO "%s: dm9000%c at %p,%p IRQ %d MAC: %pM (%s)\n",
1635                        ndev->name, dm9000_type_to_char(db->type),
1636                        db->io_addr, db->io_data, ndev->irq,
1637                        ndev->dev_addr, mac_src);
1638
1639         dm9000_shutdown(ndev);//add by lyx@20100713, reduce power consume
1640
1641         return 0;
1642
1643 out:
1644         dev_err(db->dev, "not found (%d).\n", ret);
1645
1646         dm9000_release_board(pdev, db);
1647         free_netdev(ndev);
1648
1649         return ret;
1650 }
1651
1652 static int
1653 dm9000_drv_suspend(struct device *dev)
1654 {
1655         struct platform_device *pdev = to_platform_device(dev);
1656         struct net_device *ndev = platform_get_drvdata(pdev);
1657         board_info_t *db;
1658
1659         if (ndev) {
1660                 db = netdev_priv(ndev);
1661                 db->in_suspend = 1;
1662
1663                 if (!netif_running(ndev))
1664                         return 0;
1665
1666                 netif_device_detach(ndev);
1667
1668                 /* only shutdown if not using WoL */
1669                 if (!db->wake_state)
1670                         dm9000_shutdown(ndev);
1671         }
1672         return 0;
1673 }
1674
1675 static int
1676 dm9000_drv_resume(struct device *dev)
1677 {
1678         struct platform_device *pdev = to_platform_device(dev);
1679         struct net_device *ndev = platform_get_drvdata(pdev);
1680         board_info_t *db = netdev_priv(ndev);
1681
1682         if (ndev) {
1683                 if (netif_running(ndev)) {
1684                         /* reset if we were not in wake mode to ensure if
1685                          * the device was powered off it is in a known state */
1686                         if (!db->wake_state) {
1687                                 dm9000_reset(db);
1688                                 dm9000_init_dm9000(ndev);
1689                         }
1690
1691                         netif_device_attach(ndev);
1692                 }
1693
1694                 db->in_suspend = 0;
1695         }
1696         return 0;
1697 }
1698
1699 static const struct dev_pm_ops dm9000_drv_pm_ops = {
1700         .suspend        = dm9000_drv_suspend,
1701         .resume         = dm9000_drv_resume,
1702 };
1703
1704 static int __devexit
1705 dm9000_drv_remove(struct platform_device *pdev)
1706 {
1707         struct net_device *ndev = platform_get_drvdata(pdev);
1708         struct dm9000_plat_data *pdata = pdev->dev.platform_data;
1709
1710         //deinit io for dm9000
1711         gpio_free(pdata->irq_pin);
1712         if (pdata && pdata->io_deinit)
1713                 pdata->io_deinit();
1714
1715         platform_set_drvdata(pdev, NULL);
1716
1717         unregister_netdev(ndev);
1718         dm9000_release_board(pdev, (board_info_t *) netdev_priv(ndev));
1719         free_netdev(ndev);              /* free device structure */
1720
1721         dev_dbg(&pdev->dev, "released and freed device\n");
1722         return 0;
1723 }
1724
1725 static struct platform_driver dm9000_driver = {
1726         .driver = {
1727                 .name    = "dm9000",
1728                 .owner   = THIS_MODULE,
1729                 .pm      = &dm9000_drv_pm_ops,
1730         },
1731         .probe   = dm9000_probe,
1732         .remove  = __devexit_p(dm9000_drv_remove),
1733 };
1734
1735 static int __init
1736 dm9000_init(void)
1737 {
1738         printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
1739
1740         return platform_driver_register(&dm9000_driver);
1741 }
1742
1743 static void __exit
1744 dm9000_cleanup(void)
1745 {
1746         platform_driver_unregister(&dm9000_driver);
1747 }
1748
1749 module_init(dm9000_init);
1750 module_exit(dm9000_cleanup);
1751
1752 MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1753 MODULE_DESCRIPTION("Davicom DM9000 network driver");
1754 MODULE_LICENSE("GPL");
1755 MODULE_ALIAS("platform:dm9000");