]> err.no Git - linux-2.6/blob - drivers/net/dm9000.c
DM9000: Cleanups after the resource changes
[linux-2.6] / 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
37 #include <asm/delay.h>
38 #include <asm/irq.h>
39 #include <asm/io.h>
40
41 #include "dm9000.h"
42
43 /* Board/System/Debug information/definition ---------------- */
44
45 #define DM9000_PHY              0x40    /* PHY address 0x01 */
46
47 #define CARDNAME "dm9000"
48 #define PFX CARDNAME ": "
49 #define DRV_VERSION     "1.30"
50
51 #ifdef CONFIG_BLACKFIN
52 #define readsb  insb
53 #define readsw  insw
54 #define readsl  insl
55 #define writesb outsb
56 #define writesw outsw
57 #define writesl outsl
58 #define DEFAULT_TRIGGER IRQF_TRIGGER_HIGH
59 #else
60 #define DEFAULT_TRIGGER (0)
61 #endif
62
63 /*
64  * Transmit timeout, default 5 seconds.
65  */
66 static int watchdog = 5000;
67 module_param(watchdog, int, 0400);
68 MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
69
70 /* DM9000 register address locking.
71  *
72  * The DM9000 uses an address register to control where data written
73  * to the data register goes. This means that the address register
74  * must be preserved over interrupts or similar calls.
75  *
76  * During interrupt and other critical calls, a spinlock is used to
77  * protect the system, but the calls themselves save the address
78  * in the address register in case they are interrupting another
79  * access to the device.
80  *
81  * For general accesses a lock is provided so that calls which are
82  * allowed to sleep are serialised so that the address register does
83  * not need to be saved. This lock also serves to serialise access
84  * to the EEPROM and PHY access registers which are shared between
85  * these two devices.
86  */
87
88 /* The driver supports the original DM9000E, and now the two newer
89  * devices, DM9000A and DM9000B.
90  */
91
92 enum dm9000_type {
93         TYPE_DM9000E,   /* original DM9000 */
94         TYPE_DM9000A,
95         TYPE_DM9000B
96 };
97
98 /* Structure/enum declaration ------------------------------- */
99 typedef struct board_info {
100
101         void __iomem *io_addr;  /* Register I/O base address */
102         void __iomem *io_data;  /* Data I/O address */
103         u16 irq;                /* IRQ */
104
105         u16 tx_pkt_cnt;
106         u16 queue_pkt_len;
107         u16 queue_start_addr;
108         u16 dbug_cnt;
109         u8 io_mode;             /* 0:word, 2:byte */
110         u8 phy_addr;
111         u8 imr_all;
112         unsigned int flags;
113         unsigned int in_suspend :1;
114
115         enum dm9000_type type;
116         int debug_level;
117
118         void (*inblk)(void __iomem *port, void *data, int length);
119         void (*outblk)(void __iomem *port, void *data, int length);
120         void (*dumpblk)(void __iomem *port, int length);
121
122         struct device   *dev;        /* parent device */
123
124         struct resource *addr_res;   /* resources found */
125         struct resource *data_res;
126         struct resource *addr_req;   /* resources requested */
127         struct resource *data_req;
128         struct resource *irq_res;
129
130         struct mutex     addr_lock;     /* phy and eeprom access lock */
131
132         struct delayed_work phy_poll;
133         struct net_device  *ndev;
134
135         spinlock_t lock;
136
137         struct mii_if_info mii;
138         u32 msg_enable;
139 } board_info_t;
140
141 /* debug code */
142
143 #define dm9000_dbg(db, lev, msg...) do {                \
144         if ((lev) < CONFIG_DM9000_DEBUGLEVEL &&         \
145             (lev) < db->debug_level) {                  \
146                 dev_dbg(db->dev, msg);                  \
147         }                                               \
148 } while (0)
149
150 static inline board_info_t *to_dm9000_board(struct net_device *dev)
151 {
152         return dev->priv;
153 }
154
155 /* function declaration ------------------------------------- */
156 static int dm9000_probe(struct platform_device *);
157 static int dm9000_open(struct net_device *);
158 static int dm9000_start_xmit(struct sk_buff *, struct net_device *);
159 static int dm9000_stop(struct net_device *);
160 static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd);
161
162 static void dm9000_init_dm9000(struct net_device *);
163
164 static irqreturn_t dm9000_interrupt(int, void *);
165
166 static int dm9000_phy_read(struct net_device *dev, int phyaddr_unsused, int reg);
167 static void dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg,
168                            int value);
169
170 static void dm9000_read_eeprom(board_info_t *, int addr, u8 *to);
171 static void dm9000_write_eeprom(board_info_t *, int addr, u8 *dp);
172 static void dm9000_rx(struct net_device *);
173 static void dm9000_hash_table(struct net_device *);
174
175 /* DM9000 network board routine ---------------------------- */
176
177 static void
178 dm9000_reset(board_info_t * db)
179 {
180         dev_dbg(db->dev, "resetting device\n");
181
182         /* RESET device */
183         writeb(DM9000_NCR, db->io_addr);
184         udelay(200);
185         writeb(NCR_RST, db->io_data);
186         udelay(200);
187 }
188
189 /*
190  *   Read a byte from I/O port
191  */
192 static u8
193 ior(board_info_t * db, int reg)
194 {
195         writeb(reg, db->io_addr);
196         return readb(db->io_data);
197 }
198
199 /*
200  *   Write a byte to I/O port
201  */
202
203 static void
204 iow(board_info_t * db, int reg, int value)
205 {
206         writeb(reg, db->io_addr);
207         writeb(value, db->io_data);
208 }
209
210 /* routines for sending block to chip */
211
212 static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
213 {
214         writesb(reg, data, count);
215 }
216
217 static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
218 {
219         writesw(reg, data, (count+1) >> 1);
220 }
221
222 static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
223 {
224         writesl(reg, data, (count+3) >> 2);
225 }
226
227 /* input block from chip to memory */
228
229 static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
230 {
231         readsb(reg, data, count);
232 }
233
234
235 static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
236 {
237         readsw(reg, data, (count+1) >> 1);
238 }
239
240 static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
241 {
242         readsl(reg, data, (count+3) >> 2);
243 }
244
245 /* dump block from chip to null */
246
247 static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
248 {
249         int i;
250         int tmp;
251
252         for (i = 0; i < count; i++)
253                 tmp = readb(reg);
254 }
255
256 static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
257 {
258         int i;
259         int tmp;
260
261         count = (count + 1) >> 1;
262
263         for (i = 0; i < count; i++)
264                 tmp = readw(reg);
265 }
266
267 static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
268 {
269         int i;
270         int tmp;
271
272         count = (count + 3) >> 2;
273
274         for (i = 0; i < count; i++)
275                 tmp = readl(reg);
276 }
277
278 /* dm9000_set_io
279  *
280  * select the specified set of io routines to use with the
281  * device
282  */
283
284 static void dm9000_set_io(struct board_info *db, int byte_width)
285 {
286         /* use the size of the data resource to work out what IO
287          * routines we want to use
288          */
289
290         switch (byte_width) {
291         case 1:
292                 db->dumpblk = dm9000_dumpblk_8bit;
293                 db->outblk  = dm9000_outblk_8bit;
294                 db->inblk   = dm9000_inblk_8bit;
295                 break;
296
297
298         case 3:
299                 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
300         case 2:
301                 db->dumpblk = dm9000_dumpblk_16bit;
302                 db->outblk  = dm9000_outblk_16bit;
303                 db->inblk   = dm9000_inblk_16bit;
304                 break;
305
306         case 4:
307         default:
308                 db->dumpblk = dm9000_dumpblk_32bit;
309                 db->outblk  = dm9000_outblk_32bit;
310                 db->inblk   = dm9000_inblk_32bit;
311                 break;
312         }
313 }
314
315 static void dm9000_schedule_poll(board_info_t *db)
316 {
317         if (db->type == TYPE_DM9000E)
318                 schedule_delayed_work(&db->phy_poll, HZ * 2);
319 }
320
321 /* Our watchdog timed out. Called by the networking layer */
322 static void dm9000_timeout(struct net_device *dev)
323 {
324         board_info_t *db = (board_info_t *) dev->priv;
325         u8 reg_save;
326         unsigned long flags;
327
328         /* Save previous register address */
329         reg_save = readb(db->io_addr);
330         spin_lock_irqsave(&db->lock,flags);
331
332         netif_stop_queue(dev);
333         dm9000_reset(db);
334         dm9000_init_dm9000(dev);
335         /* We can accept TX packets again */
336         dev->trans_start = jiffies;
337         netif_wake_queue(dev);
338
339         /* Restore previous register address */
340         writeb(reg_save, db->io_addr);
341         spin_unlock_irqrestore(&db->lock,flags);
342 }
343
344 #ifdef CONFIG_NET_POLL_CONTROLLER
345 /*
346  *Used by netconsole
347  */
348 static void dm9000_poll_controller(struct net_device *dev)
349 {
350         disable_irq(dev->irq);
351         dm9000_interrupt(dev->irq,dev);
352         enable_irq(dev->irq);
353 }
354 #endif
355
356 static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
357 {
358         board_info_t *dm = to_dm9000_board(dev);
359
360         if (!netif_running(dev))
361                 return -EINVAL;
362
363         return generic_mii_ioctl(&dm->mii, if_mii(req), cmd, NULL);
364 }
365
366 /* ethtool ops */
367
368 static void dm9000_get_drvinfo(struct net_device *dev,
369                                struct ethtool_drvinfo *info)
370 {
371         board_info_t *dm = to_dm9000_board(dev);
372
373         strcpy(info->driver, CARDNAME);
374         strcpy(info->version, DRV_VERSION);
375         strcpy(info->bus_info, to_platform_device(dm->dev)->name);
376 }
377
378 static u32 dm9000_get_msglevel(struct net_device *dev)
379 {
380         board_info_t *dm = to_dm9000_board(dev);
381
382         return dm->msg_enable;
383 }
384
385 static void dm9000_set_msglevel(struct net_device *dev, u32 value)
386 {
387         board_info_t *dm = to_dm9000_board(dev);
388
389         dm->msg_enable = value;
390 }
391
392 static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
393 {
394         board_info_t *dm = to_dm9000_board(dev);
395
396         mii_ethtool_gset(&dm->mii, cmd);
397         return 0;
398 }
399
400 static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
401 {
402         board_info_t *dm = to_dm9000_board(dev);
403
404         return mii_ethtool_sset(&dm->mii, cmd);
405 }
406
407 static int dm9000_nway_reset(struct net_device *dev)
408 {
409         board_info_t *dm = to_dm9000_board(dev);
410         return mii_nway_restart(&dm->mii);
411 }
412
413 static u32 dm9000_get_link(struct net_device *dev)
414 {
415         board_info_t *dm = to_dm9000_board(dev);
416         return mii_link_ok(&dm->mii);
417 }
418
419 #define DM_EEPROM_MAGIC         (0x444D394B)
420
421 static int dm9000_get_eeprom_len(struct net_device *dev)
422 {
423         return 128;
424 }
425
426 static int dm9000_get_eeprom(struct net_device *dev,
427                              struct ethtool_eeprom *ee, u8 *data)
428 {
429         board_info_t *dm = to_dm9000_board(dev);
430         int offset = ee->offset;
431         int len = ee->len;
432         int i;
433
434         /* EEPROM access is aligned to two bytes */
435
436         if ((len & 1) != 0 || (offset & 1) != 0)
437                 return -EINVAL;
438
439         if (dm->flags & DM9000_PLATF_NO_EEPROM)
440                 return -ENOENT;
441
442         ee->magic = DM_EEPROM_MAGIC;
443
444         for (i = 0; i < len; i += 2)
445                 dm9000_read_eeprom(dm, (offset + i) / 2, data + i);
446
447         return 0;
448 }
449
450 static int dm9000_set_eeprom(struct net_device *dev,
451                              struct ethtool_eeprom *ee, u8 *data)
452 {
453         board_info_t *dm = to_dm9000_board(dev);
454         int offset = ee->offset;
455         int len = ee->len;
456         int i;
457
458         /* EEPROM access is aligned to two bytes */
459
460         if ((len & 1) != 0 || (offset & 1) != 0)
461                 return -EINVAL;
462
463         if (dm->flags & DM9000_PLATF_NO_EEPROM)
464                 return -ENOENT;
465
466         if (ee->magic != DM_EEPROM_MAGIC)
467                 return -EINVAL;
468
469         for (i = 0; i < len; i += 2)
470                 dm9000_write_eeprom(dm, (offset + i) / 2, data + i);
471
472         return 0;
473 }
474
475 static const struct ethtool_ops dm9000_ethtool_ops = {
476         .get_drvinfo            = dm9000_get_drvinfo,
477         .get_settings           = dm9000_get_settings,
478         .set_settings           = dm9000_set_settings,
479         .get_msglevel           = dm9000_get_msglevel,
480         .set_msglevel           = dm9000_set_msglevel,
481         .nway_reset             = dm9000_nway_reset,
482         .get_link               = dm9000_get_link,
483         .get_eeprom_len         = dm9000_get_eeprom_len,
484         .get_eeprom             = dm9000_get_eeprom,
485         .set_eeprom             = dm9000_set_eeprom,
486 };
487
488 static void
489 dm9000_poll_work(struct work_struct *w)
490 {
491         struct delayed_work *dw = container_of(w, struct delayed_work, work);
492         board_info_t *db = container_of(dw, board_info_t, phy_poll);
493
494         mii_check_media(&db->mii, netif_msg_link(db), 0);
495         
496         if (netif_running(db->ndev))
497                 dm9000_schedule_poll(db);
498 }
499
500 /* dm9000_release_board
501  *
502  * release a board, and any mapped resources
503  */
504
505 static void
506 dm9000_release_board(struct platform_device *pdev, struct board_info *db)
507 {
508         /* unmap our resources */
509
510         iounmap(db->io_addr);
511         iounmap(db->io_data);
512
513         /* release the resources */
514
515         release_resource(db->data_req);
516         kfree(db->data_req);
517
518         release_resource(db->addr_req);
519         kfree(db->addr_req);
520 }
521
522 static unsigned char dm9000_type_to_char(enum dm9000_type type)
523 {
524         switch (type) {
525         case TYPE_DM9000E: return 'e';
526         case TYPE_DM9000A: return 'a';
527         case TYPE_DM9000B: return 'b';
528         }
529
530         return '?';
531 }
532
533 #define res_size(_r) (((_r)->end - (_r)->start) + 1)
534
535 /*
536  * Search DM9000 board, allocate space and register it
537  */
538 static int __devinit
539 dm9000_probe(struct platform_device *pdev)
540 {
541         struct dm9000_plat_data *pdata = pdev->dev.platform_data;
542         struct board_info *db;  /* Point a board information structure */
543         struct net_device *ndev;
544         const unsigned char *mac_src;
545         int ret = 0;
546         int iosize;
547         int i;
548         u32 id_val;
549
550         /* Init network device */
551         ndev = alloc_etherdev(sizeof (struct board_info));
552         if (!ndev) {
553                 dev_err(&pdev->dev, "could not allocate device.\n");
554                 return -ENOMEM;
555         }
556
557         SET_NETDEV_DEV(ndev, &pdev->dev);
558
559         dev_dbg(&pdev->dev, "dm9000_probe()\n");
560
561         /* setup board info structure */
562         db = (struct board_info *) ndev->priv;
563         memset(db, 0, sizeof (*db));
564
565         db->dev = &pdev->dev;
566         db->ndev = ndev;
567
568         spin_lock_init(&db->lock);
569         mutex_init(&db->addr_lock);
570
571         INIT_DELAYED_WORK(&db->phy_poll, dm9000_poll_work);
572
573         db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
574         db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
575         db->irq_res  = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
576
577         if (db->addr_res == NULL || db->data_res == NULL ||
578             db->irq_res == NULL) {
579                 dev_err(db->dev, "insufficient resources\n");
580                 ret = -ENOENT;
581                 goto out;
582         }
583
584         iosize = res_size(db->addr_res);
585         db->addr_req = request_mem_region(db->addr_res->start, iosize,
586                                           pdev->name);
587
588         if (db->addr_req == NULL) {
589                 dev_err(db->dev, "cannot claim address reg area\n");
590                 ret = -EIO;
591                 goto out;
592         }
593
594         db->io_addr = ioremap(db->addr_res->start, iosize);
595
596         if (db->io_addr == NULL) {
597                 dev_err(db->dev, "failed to ioremap address reg\n");
598                 ret = -EINVAL;
599                 goto out;
600         }
601
602         iosize = res_size(db->data_res);
603         db->data_req = request_mem_region(db->data_res->start, iosize,
604                                           pdev->name);
605
606         if (db->data_req == NULL) {
607                 dev_err(db->dev, "cannot claim data reg area\n");
608                 ret = -EIO;
609                 goto out;
610         }
611
612         db->io_data = ioremap(db->data_res->start, iosize);
613
614         if (db->io_data == NULL) {
615                 dev_err(db->dev, "failed to ioremap data reg\n");
616                 ret = -EINVAL;
617                 goto out;
618         }
619
620         /* fill in parameters for net-dev structure */
621         ndev->base_addr = (unsigned long)db->io_addr;
622         ndev->irq       = db->irq_res->start;
623
624         /* ensure at least we have a default set of IO routines */
625         dm9000_set_io(db, iosize);
626
627         /* check to see if anything is being over-ridden */
628         if (pdata != NULL) {
629                 /* check to see if the driver wants to over-ride the
630                  * default IO width */
631
632                 if (pdata->flags & DM9000_PLATF_8BITONLY)
633                         dm9000_set_io(db, 1);
634
635                 if (pdata->flags & DM9000_PLATF_16BITONLY)
636                         dm9000_set_io(db, 2);
637
638                 if (pdata->flags & DM9000_PLATF_32BITONLY)
639                         dm9000_set_io(db, 4);
640
641                 /* check to see if there are any IO routine
642                  * over-rides */
643
644                 if (pdata->inblk != NULL)
645                         db->inblk = pdata->inblk;
646
647                 if (pdata->outblk != NULL)
648                         db->outblk = pdata->outblk;
649
650                 if (pdata->dumpblk != NULL)
651                         db->dumpblk = pdata->dumpblk;
652
653                 db->flags = pdata->flags;
654         }
655
656         dm9000_reset(db);
657
658         /* try two times, DM9000 sometimes gets the first read wrong */
659         for (i = 0; i < 8; i++) {
660                 id_val  = ior(db, DM9000_VIDL);
661                 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
662                 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
663                 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
664
665                 if (id_val == DM9000_ID)
666                         break;
667                 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
668         }
669
670         if (id_val != DM9000_ID) {
671                 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
672                 ret = -ENODEV;
673                 goto out;
674         }
675
676         /* Identify what type of DM9000 we are working on */
677
678         id_val = ior(db, DM9000_CHIPR);
679         dev_dbg(db->dev, "dm9000 revision 0x%02x\n", id_val);
680
681         switch (id_val) {
682         case CHIPR_DM9000A:
683                 db->type = TYPE_DM9000A;
684                 break;
685         case CHIPR_DM9000B:
686                 db->type = TYPE_DM9000B;
687                 break;
688         default:
689                 dev_dbg(db->dev, "ID %02x => defaulting to DM9000E\n", id_val);
690                 db->type = TYPE_DM9000E;
691         }
692
693         /* from this point we assume that we have found a DM9000 */
694
695         /* driver system function */
696         ether_setup(ndev);
697
698         ndev->open               = &dm9000_open;
699         ndev->hard_start_xmit    = &dm9000_start_xmit;
700         ndev->tx_timeout         = &dm9000_timeout;
701         ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
702         ndev->stop               = &dm9000_stop;
703         ndev->set_multicast_list = &dm9000_hash_table;
704         ndev->ethtool_ops        = &dm9000_ethtool_ops;
705         ndev->do_ioctl           = &dm9000_ioctl;
706
707 #ifdef CONFIG_NET_POLL_CONTROLLER
708         ndev->poll_controller    = &dm9000_poll_controller;
709 #endif
710
711         db->msg_enable       = NETIF_MSG_LINK;
712         db->mii.phy_id_mask  = 0x1f;
713         db->mii.reg_num_mask = 0x1f;
714         db->mii.force_media  = 0;
715         db->mii.full_duplex  = 0;
716         db->mii.dev          = ndev;
717         db->mii.mdio_read    = dm9000_phy_read;
718         db->mii.mdio_write   = dm9000_phy_write;
719
720         mac_src = "eeprom";
721
722         /* try reading the node address from the attached EEPROM */
723         for (i = 0; i < 6; i += 2)
724                 dm9000_read_eeprom(db, i / 2, ndev->dev_addr+i);
725
726         if (!is_valid_ether_addr(ndev->dev_addr)) {
727                 /* try reading from mac */
728
729                 mac_src = "chip";
730                 for (i = 0; i < 6; i++)
731                         ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
732         }
733
734         if (!is_valid_ether_addr(ndev->dev_addr))
735                 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
736                          "set using ifconfig\n", ndev->name);
737
738         platform_set_drvdata(pdev, ndev);
739         ret = register_netdev(ndev);
740
741         if (ret == 0) {
742                 DECLARE_MAC_BUF(mac);
743                 printk(KERN_INFO "%s: dm9000%c at %p,%p IRQ %d MAC: %s (%s)\n",
744                        ndev->name, dm9000_type_to_char(db->type),
745                        db->io_addr, db->io_data, ndev->irq,
746                        print_mac(mac, ndev->dev_addr), mac_src);
747         }
748         return 0;
749
750 out:
751         dev_err(db->dev, "not found (%d).\n", ret);
752
753         dm9000_release_board(pdev, db);
754         free_netdev(ndev);
755
756         return ret;
757 }
758
759 /*
760  *  Open the interface.
761  *  The interface is opened whenever "ifconfig" actives it.
762  */
763 static int
764 dm9000_open(struct net_device *dev)
765 {
766         board_info_t *db = (board_info_t *) dev->priv;
767         unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
768
769         if (netif_msg_ifup(db))
770                 dev_dbg(db->dev, "enabling %s\n", dev->name);
771
772         /* If there is no IRQ type specified, default to something that
773          * may work, and tell the user that this is a problem */
774
775         if (irqflags == IRQF_TRIGGER_NONE) {
776                 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
777                 irqflags = DEFAULT_TRIGGER;
778         }
779
780         irqflags |= IRQF_SHARED;
781
782         if (request_irq(dev->irq, &dm9000_interrupt, irqflags, dev->name, dev))
783                 return -EAGAIN;
784
785         /* Initialize DM9000 board */
786         dm9000_reset(db);
787         dm9000_init_dm9000(dev);
788
789         /* Init driver variable */
790         db->dbug_cnt = 0;
791
792         mii_check_media(&db->mii, netif_msg_link(db), 1);
793         netif_start_queue(dev);
794         
795         dm9000_schedule_poll(db);
796
797         return 0;
798 }
799
800 /*
801  * Initilize dm9000 board
802  */
803 static void
804 dm9000_init_dm9000(struct net_device *dev)
805 {
806         board_info_t *db = (board_info_t *) dev->priv;
807         unsigned int imr;
808
809         dm9000_dbg(db, 1, "entering %s\n", __func__);
810
811         /* I/O mode */
812         db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
813
814         /* GPIO0 on pre-activate PHY */
815         iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
816         iow(db, DM9000_GPCR, GPCR_GEP_CNTL);    /* Let GPIO0 output */
817         iow(db, DM9000_GPR, 0); /* Enable PHY */
818
819         if (db->flags & DM9000_PLATF_EXT_PHY)
820                 iow(db, DM9000_NCR, NCR_EXT_PHY);
821
822         /* Program operating register */
823         iow(db, DM9000_TCR, 0);         /* TX Polling clear */
824         iow(db, DM9000_BPTR, 0x3f);     /* Less 3Kb, 200us */
825         iow(db, DM9000_FCR, 0xff);      /* Flow Control */
826         iow(db, DM9000_SMCR, 0);        /* Special Mode */
827         /* clear TX status */
828         iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
829         iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
830
831         /* Set address filter table */
832         dm9000_hash_table(dev);
833
834         imr = IMR_PAR | IMR_PTM | IMR_PRM;
835         if (db->type != TYPE_DM9000E)
836                 imr |= IMR_LNKCHNG;
837
838         db->imr_all = imr;
839
840         /* Enable TX/RX interrupt mask */
841         iow(db, DM9000_IMR, imr);
842
843         /* Init Driver variable */
844         db->tx_pkt_cnt = 0;
845         db->queue_pkt_len = 0;
846         dev->trans_start = 0;
847 }
848
849 /*
850  *  Hardware start transmission.
851  *  Send a packet to media from the upper layer.
852  */
853 static int
854 dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
855 {
856         unsigned long flags;
857         board_info_t *db = (board_info_t *) dev->priv;
858
859         dm9000_dbg(db, 3, "%s:\n", __func__);
860
861         if (db->tx_pkt_cnt > 1)
862                 return 1;
863
864         spin_lock_irqsave(&db->lock, flags);
865
866         /* Move data to DM9000 TX RAM */
867         writeb(DM9000_MWCMD, db->io_addr);
868
869         (db->outblk)(db->io_data, skb->data, skb->len);
870         dev->stats.tx_bytes += skb->len;
871
872         db->tx_pkt_cnt++;
873         /* TX control: First packet immediately send, second packet queue */
874         if (db->tx_pkt_cnt == 1) {
875                 /* Set TX length to DM9000 */
876                 iow(db, DM9000_TXPLL, skb->len);
877                 iow(db, DM9000_TXPLH, skb->len >> 8);
878
879                 /* Issue TX polling command */
880                 iow(db, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
881
882                 dev->trans_start = jiffies;     /* save the time stamp */
883         } else {
884                 /* Second packet */
885                 db->queue_pkt_len = skb->len;
886                 netif_stop_queue(dev);
887         }
888
889         spin_unlock_irqrestore(&db->lock, flags);
890
891         /* free this SKB */
892         dev_kfree_skb(skb);
893
894         return 0;
895 }
896
897 static void
898 dm9000_shutdown(struct net_device *dev)
899 {
900         board_info_t *db = (board_info_t *) dev->priv;
901
902         /* RESET device */
903         dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
904         iow(db, DM9000_GPR, 0x01);      /* Power-Down PHY */
905         iow(db, DM9000_IMR, IMR_PAR);   /* Disable all interrupt */
906         iow(db, DM9000_RCR, 0x00);      /* Disable RX */
907 }
908
909 /*
910  * Stop the interface.
911  * The interface is stopped when it is brought.
912  */
913 static int
914 dm9000_stop(struct net_device *ndev)
915 {
916         board_info_t *db = (board_info_t *) ndev->priv;
917
918         if (netif_msg_ifdown(db))
919                 dev_dbg(db->dev, "shutting down %s\n", ndev->name);
920
921         cancel_delayed_work_sync(&db->phy_poll);
922
923         netif_stop_queue(ndev);
924         netif_carrier_off(ndev);
925
926         /* free interrupt */
927         free_irq(ndev->irq, ndev);
928
929         dm9000_shutdown(ndev);
930
931         return 0;
932 }
933
934 /*
935  * DM9000 interrupt handler
936  * receive the packet to upper layer, free the transmitted packet
937  */
938
939 static void
940 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                         iow(db, DM9000_TXPLL, db->queue_pkt_len);
955                         iow(db, DM9000_TXPLH, db->queue_pkt_len >> 8);
956                         iow(db, DM9000_TCR, TCR_TXREQ);
957                         dev->trans_start = jiffies;
958                 }
959                 netif_wake_queue(dev);
960         }
961 }
962
963 static irqreturn_t
964 dm9000_interrupt(int irq, void *dev_id)
965 {
966         struct net_device *dev = dev_id;
967         board_info_t *db = (board_info_t *) dev->priv;
968         int int_status;
969         u8 reg_save;
970
971         dm9000_dbg(db, 3, "entering %s\n", __func__);
972
973         /* A real interrupt coming */
974
975         spin_lock(&db->lock);
976
977         /* Save previous register address */
978         reg_save = readb(db->io_addr);
979
980         /* Disable all interrupts */
981         iow(db, DM9000_IMR, IMR_PAR);
982
983         /* Got DM9000 interrupt status */
984         int_status = ior(db, DM9000_ISR);       /* Got ISR */
985         iow(db, DM9000_ISR, int_status);        /* Clear ISR status */
986
987         if (netif_msg_intr(db))
988                 dev_dbg(db->dev, "interrupt status %02x\n", int_status);
989
990         /* Received the coming packet */
991         if (int_status & ISR_PRS)
992                 dm9000_rx(dev);
993
994         /* Trnasmit Interrupt check */
995         if (int_status & ISR_PTS)
996                 dm9000_tx_done(dev, db);
997
998         if (db->type != TYPE_DM9000E) {
999                 if (int_status & ISR_LNKCHNG) {
1000                         /* fire a link-change request */
1001                         schedule_delayed_work(&db->phy_poll, 1);
1002                 }
1003         }
1004
1005         /* Re-enable interrupt mask */
1006         iow(db, DM9000_IMR, db->imr_all);
1007
1008         /* Restore previous register address */
1009         writeb(reg_save, db->io_addr);
1010
1011         spin_unlock(&db->lock);
1012
1013         return IRQ_HANDLED;
1014 }
1015
1016 struct dm9000_rxhdr {
1017         u8      RxPktReady;
1018         u8      RxStatus;
1019         __le16  RxLen;
1020 } __attribute__((__packed__));
1021
1022 /*
1023  *  Received a packet and pass to upper layer
1024  */
1025 static void
1026 dm9000_rx(struct net_device *dev)
1027 {
1028         board_info_t *db = (board_info_t *) dev->priv;
1029         struct dm9000_rxhdr rxhdr;
1030         struct sk_buff *skb;
1031         u8 rxbyte, *rdptr;
1032         bool GoodPacket;
1033         int RxLen;
1034
1035         /* Check packet ready or not */
1036         do {
1037                 ior(db, DM9000_MRCMDX); /* Dummy read */
1038
1039                 /* Get most updated data */
1040                 rxbyte = readb(db->io_data);
1041
1042                 /* Status check: this byte must be 0 or 1 */
1043                 if (rxbyte > DM9000_PKT_RDY) {
1044                         dev_warn(db->dev, "status check fail: %d\n", rxbyte);
1045                         iow(db, DM9000_RCR, 0x00);      /* Stop Device */
1046                         iow(db, DM9000_ISR, IMR_PAR);   /* Stop INT request */
1047                         return;
1048                 }
1049
1050                 if (rxbyte != DM9000_PKT_RDY)
1051                         return;
1052
1053                 /* A packet ready now  & Get status/length */
1054                 GoodPacket = true;
1055                 writeb(DM9000_MRCMD, db->io_addr);
1056
1057                 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
1058
1059                 RxLen = le16_to_cpu(rxhdr.RxLen);
1060
1061                 if (netif_msg_rx_status(db))
1062                         dev_dbg(db->dev, "RX: status %02x, length %04x\n",
1063                                 rxhdr.RxStatus, RxLen);
1064
1065                 /* Packet Status check */
1066                 if (RxLen < 0x40) {
1067                         GoodPacket = false;
1068                         if (netif_msg_rx_err(db))
1069                                 dev_dbg(db->dev, "RX: Bad Packet (runt)\n");
1070                 }
1071
1072                 if (RxLen > DM9000_PKT_MAX) {
1073                         dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
1074                 }
1075
1076                 if (rxhdr.RxStatus & 0xbf) {
1077                         GoodPacket = false;
1078                         if (rxhdr.RxStatus & 0x01) {
1079                                 if (netif_msg_rx_err(db))
1080                                         dev_dbg(db->dev, "fifo error\n");
1081                                 dev->stats.rx_fifo_errors++;
1082                         }
1083                         if (rxhdr.RxStatus & 0x02) {
1084                                 if (netif_msg_rx_err(db))
1085                                         dev_dbg(db->dev, "crc error\n");
1086                                 dev->stats.rx_crc_errors++;
1087                         }
1088                         if (rxhdr.RxStatus & 0x80) {
1089                                 if (netif_msg_rx_err(db))
1090                                         dev_dbg(db->dev, "length error\n");
1091                                 dev->stats.rx_length_errors++;
1092                         }
1093                 }
1094
1095                 /* Move data from DM9000 */
1096                 if (GoodPacket
1097                     && ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
1098                         skb_reserve(skb, 2);
1099                         rdptr = (u8 *) skb_put(skb, RxLen - 4);
1100
1101                         /* Read received packet from RX SRAM */
1102
1103                         (db->inblk)(db->io_data, rdptr, RxLen);
1104                         dev->stats.rx_bytes += RxLen;
1105
1106                         /* Pass to upper layer */
1107                         skb->protocol = eth_type_trans(skb, dev);
1108                         netif_rx(skb);
1109                         dev->stats.rx_packets++;
1110
1111                 } else {
1112                         /* need to dump the packet's data */
1113
1114                         (db->dumpblk)(db->io_data, RxLen);
1115                 }
1116         } while (rxbyte == DM9000_PKT_RDY);
1117 }
1118
1119 static unsigned int
1120 dm9000_read_locked(board_info_t *db, int reg)
1121 {
1122         unsigned long flags;
1123         unsigned int ret;
1124
1125         spin_lock_irqsave(&db->lock, flags);
1126         ret = ior(db, reg);
1127         spin_unlock_irqrestore(&db->lock, flags);
1128
1129         return ret;
1130 }
1131
1132 static int dm9000_wait_eeprom(board_info_t *db)
1133 {
1134         unsigned int status;
1135         int timeout = 8;        /* wait max 8msec */
1136
1137         /* The DM9000 data sheets say we should be able to
1138          * poll the ERRE bit in EPCR to wait for the EEPROM
1139          * operation. From testing several chips, this bit
1140          * does not seem to work.
1141          *
1142          * We attempt to use the bit, but fall back to the
1143          * timeout (which is why we do not return an error
1144          * on expiry) to say that the EEPROM operation has
1145          * completed.
1146          */
1147
1148         while (1) {
1149                 status = dm9000_read_locked(db, DM9000_EPCR);
1150
1151                 if ((status & EPCR_ERRE) == 0)
1152                         break;
1153
1154                 if (timeout-- < 0) {
1155                         dev_dbg(db->dev, "timeout waiting EEPROM\n");
1156                         break;
1157                 }
1158         }
1159
1160         return 0;
1161 }
1162
1163 /*
1164  *  Read a word data from EEPROM
1165  */
1166 static void
1167 dm9000_read_eeprom(board_info_t *db, int offset, u8 *to)
1168 {
1169         unsigned long flags;
1170
1171         if (db->flags & DM9000_PLATF_NO_EEPROM) {
1172                 to[0] = 0xff;
1173                 to[1] = 0xff;
1174                 return;
1175         }
1176
1177         mutex_lock(&db->addr_lock);
1178
1179         spin_lock_irqsave(&db->lock, flags);
1180
1181         iow(db, DM9000_EPAR, offset);
1182         iow(db, DM9000_EPCR, EPCR_ERPRR);
1183
1184         spin_unlock_irqrestore(&db->lock, flags);
1185
1186         dm9000_wait_eeprom(db);
1187
1188         /* delay for at-least 150uS */
1189         msleep(1);
1190
1191         spin_lock_irqsave(&db->lock, flags);
1192
1193         iow(db, DM9000_EPCR, 0x0);
1194
1195         to[0] = ior(db, DM9000_EPDRL);
1196         to[1] = ior(db, DM9000_EPDRH);
1197
1198         spin_unlock_irqrestore(&db->lock, flags);
1199
1200         mutex_unlock(&db->addr_lock);
1201 }
1202
1203 /*
1204  * Write a word data to SROM
1205  */
1206 static void
1207 dm9000_write_eeprom(board_info_t *db, int offset, u8 *data)
1208 {
1209         unsigned long flags;
1210
1211         if (db->flags & DM9000_PLATF_NO_EEPROM)
1212                 return;
1213
1214         mutex_lock(&db->addr_lock);
1215
1216         spin_lock_irqsave(&db->lock, flags);
1217         iow(db, DM9000_EPAR, offset);
1218         iow(db, DM9000_EPDRH, data[1]);
1219         iow(db, DM9000_EPDRL, data[0]);
1220         iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
1221         spin_unlock_irqrestore(&db->lock, flags);
1222
1223         dm9000_wait_eeprom(db);
1224
1225         mdelay(1);      /* wait at least 150uS to clear */
1226
1227         spin_lock_irqsave(&db->lock, flags);
1228         iow(db, DM9000_EPCR, 0);
1229         spin_unlock_irqrestore(&db->lock, flags);
1230
1231         mutex_unlock(&db->addr_lock);
1232 }
1233
1234 /*
1235  *  Set DM9000 multicast address
1236  */
1237 static void
1238 dm9000_hash_table(struct net_device *dev)
1239 {
1240         board_info_t *db = (board_info_t *) dev->priv;
1241         struct dev_mc_list *mcptr = dev->mc_list;
1242         int mc_cnt = dev->mc_count;
1243         int i, oft;
1244         u32 hash_val;
1245         u16 hash_table[4];
1246         u8 rcr = RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN;
1247         unsigned long flags;
1248
1249         dm9000_dbg(db, 1, "entering %s\n", __func__);
1250
1251         spin_lock_irqsave(&db->lock, flags);
1252
1253         for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
1254                 iow(db, oft, dev->dev_addr[i]);
1255
1256         /* Clear Hash Table */
1257         for (i = 0; i < 4; i++)
1258                 hash_table[i] = 0x0;
1259
1260         /* broadcast address */
1261         hash_table[3] = 0x8000;
1262
1263         if (dev->flags & IFF_PROMISC)
1264                 rcr |= RCR_PRMSC;
1265
1266         if (dev->flags & IFF_ALLMULTI)
1267                 rcr |= RCR_ALL;
1268
1269         /* the multicast address in Hash Table : 64 bits */
1270         for (i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
1271                 hash_val = ether_crc_le(6, mcptr->dmi_addr) & 0x3f;
1272                 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
1273         }
1274
1275         /* Write the hash table to MAC MD table */
1276         for (i = 0, oft = DM9000_MAR; i < 4; i++) {
1277                 iow(db, oft++, hash_table[i]);
1278                 iow(db, oft++, hash_table[i] >> 8);
1279         }
1280
1281         iow(db, DM9000_RCR, rcr);
1282         spin_unlock_irqrestore(&db->lock, flags);
1283 }
1284
1285
1286 /*
1287  * Sleep, either by using msleep() or if we are suspending, then
1288  * use mdelay() to sleep.
1289  */
1290 static void dm9000_msleep(board_info_t *db, unsigned int ms)
1291 {
1292         if (db->in_suspend)
1293                 mdelay(ms);
1294         else
1295                 msleep(ms);
1296 }
1297
1298 /*
1299  *   Read a word from phyxcer
1300  */
1301 static int
1302 dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1303 {
1304         board_info_t *db = (board_info_t *) dev->priv;
1305         unsigned long flags;
1306         unsigned int reg_save;
1307         int ret;
1308
1309         mutex_lock(&db->addr_lock);
1310
1311         spin_lock_irqsave(&db->lock,flags);
1312
1313         /* Save previous register address */
1314         reg_save = readb(db->io_addr);
1315
1316         /* Fill the phyxcer register into REG_0C */
1317         iow(db, DM9000_EPAR, DM9000_PHY | reg);
1318
1319         iow(db, DM9000_EPCR, 0xc);      /* Issue phyxcer read command */
1320
1321         writeb(reg_save, db->io_addr);
1322         spin_unlock_irqrestore(&db->lock,flags);
1323
1324         dm9000_msleep(db, 1);           /* Wait read complete */
1325
1326         spin_lock_irqsave(&db->lock,flags);
1327         reg_save = readb(db->io_addr);
1328
1329         iow(db, DM9000_EPCR, 0x0);      /* Clear phyxcer read command */
1330
1331         /* The read data keeps on REG_0D & REG_0E */
1332         ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1333
1334         /* restore the previous address */
1335         writeb(reg_save, db->io_addr);
1336         spin_unlock_irqrestore(&db->lock,flags);
1337
1338         mutex_unlock(&db->addr_lock);
1339
1340         dm9000_dbg(db, 5, "phy_read[%02x] -> %04x\n", reg, ret);
1341         return ret;
1342 }
1343
1344 /*
1345  *   Write a word to phyxcer
1346  */
1347 static void
1348 dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg, int value)
1349 {
1350         board_info_t *db = (board_info_t *) dev->priv;
1351         unsigned long flags;
1352         unsigned long reg_save;
1353
1354         dm9000_dbg(db, 5, "phy_write[%02x] = %04x\n", reg, value);
1355         mutex_lock(&db->addr_lock);
1356
1357         spin_lock_irqsave(&db->lock,flags);
1358
1359         /* Save previous register address */
1360         reg_save = readb(db->io_addr);
1361
1362         /* Fill the phyxcer register into REG_0C */
1363         iow(db, DM9000_EPAR, DM9000_PHY | reg);
1364
1365         /* Fill the written data into REG_0D & REG_0E */
1366         iow(db, DM9000_EPDRL, value);
1367         iow(db, DM9000_EPDRH, value >> 8);
1368
1369         iow(db, DM9000_EPCR, 0xa);      /* Issue phyxcer write command */
1370
1371         writeb(reg_save, db->io_addr);
1372         spin_unlock_irqrestore(&db->lock, flags);
1373
1374         dm9000_msleep(db, 1);           /* Wait write complete */
1375
1376         spin_lock_irqsave(&db->lock,flags);
1377         reg_save = readb(db->io_addr);
1378
1379         iow(db, DM9000_EPCR, 0x0);      /* Clear phyxcer write command */
1380
1381         /* restore the previous address */
1382         writeb(reg_save, db->io_addr);
1383
1384         spin_unlock_irqrestore(&db->lock, flags);
1385         mutex_unlock(&db->addr_lock);
1386 }
1387
1388 static int
1389 dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
1390 {
1391         struct net_device *ndev = platform_get_drvdata(dev);
1392         board_info_t *db;
1393
1394         if (ndev) {
1395                 db = (board_info_t *) ndev->priv;
1396                 db->in_suspend = 1;
1397
1398                 if (netif_running(ndev)) {
1399                         netif_device_detach(ndev);
1400                         dm9000_shutdown(ndev);
1401                 }
1402         }
1403         return 0;
1404 }
1405
1406 static int
1407 dm9000_drv_resume(struct platform_device *dev)
1408 {
1409         struct net_device *ndev = platform_get_drvdata(dev);
1410         board_info_t *db = (board_info_t *) ndev->priv;
1411
1412         if (ndev) {
1413
1414                 if (netif_running(ndev)) {
1415                         dm9000_reset(db);
1416                         dm9000_init_dm9000(ndev);
1417
1418                         netif_device_attach(ndev);
1419                 }
1420
1421                 db->in_suspend = 0;
1422         }
1423         return 0;
1424 }
1425
1426 static int __devexit
1427 dm9000_drv_remove(struct platform_device *pdev)
1428 {
1429         struct net_device *ndev = platform_get_drvdata(pdev);
1430
1431         platform_set_drvdata(pdev, NULL);
1432
1433         unregister_netdev(ndev);
1434         dm9000_release_board(pdev, (board_info_t *) ndev->priv);
1435         free_netdev(ndev);              /* free device structure */
1436
1437         dev_dbg(&pdev->dev, "released and freed device\n");
1438         return 0;
1439 }
1440
1441 static struct platform_driver dm9000_driver = {
1442         .driver = {
1443                 .name    = "dm9000",
1444                 .owner   = THIS_MODULE,
1445         },
1446         .probe   = dm9000_probe,
1447         .remove  = __devexit_p(dm9000_drv_remove),
1448         .suspend = dm9000_drv_suspend,
1449         .resume  = dm9000_drv_resume,
1450 };
1451
1452 static int __init
1453 dm9000_init(void)
1454 {
1455         printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
1456
1457         return platform_driver_register(&dm9000_driver);        /* search board and register */
1458 }
1459
1460 static void __exit
1461 dm9000_cleanup(void)
1462 {
1463         platform_driver_unregister(&dm9000_driver);
1464 }
1465
1466 module_init(dm9000_init);
1467 module_exit(dm9000_cleanup);
1468
1469 MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1470 MODULE_DESCRIPTION("Davicom DM9000 network driver");
1471 MODULE_LICENSE("GPL");
1472 MODULE_ALIAS("platform:dm9000");