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