blob: 6a20a5491a9666fad9edb9fabf830e3bccf0bc6d [file] [log] [blame]
Sascha Hauera1365272005-05-05 15:14:15 -07001/*
2 * dm9000.c: Version 1.2 03/18/2003
3 *
4 * A Davicom DM9000 ISA NIC fast Ethernet driver for Linux.
5 * Copyright (C) 1997 Sten Wang
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * (C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
18 *
19 * V0.11 06/20/2001 REG_0A bit3=1, default enable BP with DA match
20 * 06/22/2001 Support DM9801 progrmming
21 * E3: R25 = ((R24 + NF) & 0x00ff) | 0xf000
22 * E4: R25 = ((R24 + NF) & 0x00ff) | 0xc200
23 * R17 = (R17 & 0xfff0) | NF + 3
24 * E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200
25 * R17 = (R17 & 0xfff0) | NF
26 *
27 * v1.00 modify by simon 2001.9.5
28 * change for kernel 2.4.x
29 *
30 * v1.1 11/09/2001 fix force mode bug
31 *
32 * v1.2 03/18/2003 Weilun Huang <weilun_huang@davicom.com.tw>:
33 * Fixed phy reset.
34 * Added tx/rx 32 bit mode.
35 * Cleaned up for kernel merge.
36 *
37 * 03/03/2004 Sascha Hauer <s.hauer@pengutronix.de>
38 * Port to 2.6 kernel
39 *
40 * 24-Sep-2004 Ben Dooks <ben@simtec.co.uk>
41 * Cleanup of code to remove ifdefs
42 * Allowed platform device data to influence access width
43 * Reformatting areas of code
44 *
45 * 17-Mar-2005 Sascha Hauer <s.hauer@pengutronix.de>
46 * * removed 2.4 style module parameters
47 * * removed removed unused stat counter and fixed
48 * net_device_stats
49 * * introduced tx_timeout function
50 * * reworked locking
Ben Dooks9ef9ac52005-07-23 17:25:18 +010051 *
52 * 01-Jul-2005 Ben Dooks <ben@simtec.co.uk>
53 * * fixed spinlock call without pointer
54 * * ensure spinlock is initialised
Sascha Hauera1365272005-05-05 15:14:15 -070055 */
56
57#include <linux/module.h>
58#include <linux/ioport.h>
59#include <linux/netdevice.h>
60#include <linux/etherdevice.h>
61#include <linux/init.h>
62#include <linux/skbuff.h>
Sascha Hauera1365272005-05-05 15:14:15 -070063#include <linux/spinlock.h>
64#include <linux/crc32.h>
65#include <linux/mii.h>
66#include <linux/dm9000.h>
67#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010068#include <linux/platform_device.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010069#include <linux/irq.h>
Sascha Hauera1365272005-05-05 15:14:15 -070070
71#include <asm/delay.h>
72#include <asm/irq.h>
73#include <asm/io.h>
74
75#include "dm9000.h"
76
77/* Board/System/Debug information/definition ---------------- */
78
79#define DM9000_PHY 0x40 /* PHY address 0x01 */
80
Sascha Hauera1365272005-05-05 15:14:15 -070081#define CARDNAME "dm9000"
82#define PFX CARDNAME ": "
83
84#define DM9000_TIMER_WUT jiffies+(HZ*2) /* timer wakeup time : 2 second */
85
86#define DM9000_DEBUG 0
87
88#if DM9000_DEBUG > 2
89#define PRINTK3(args...) printk(CARDNAME ": " args)
90#else
91#define PRINTK3(args...) do { } while(0)
92#endif
93
94#if DM9000_DEBUG > 1
95#define PRINTK2(args...) printk(CARDNAME ": " args)
96#else
97#define PRINTK2(args...) do { } while(0)
98#endif
99
100#if DM9000_DEBUG > 0
101#define PRINTK1(args...) printk(CARDNAME ": " args)
102#define PRINTK(args...) printk(CARDNAME ": " args)
103#else
104#define PRINTK1(args...) do { } while(0)
105#define PRINTK(args...) printk(KERN_DEBUG args)
106#endif
107
Alex Landauf40d24d2007-07-12 12:11:48 +0800108#ifdef CONFIG_BLACKFIN
109#define readsb insb
110#define readsw insw
111#define readsl insl
112#define writesb outsb
113#define writesw outsw
114#define writesl outsl
115#define DM9000_IRQ_FLAGS (IRQF_SHARED | IRQF_TRIGGER_HIGH)
116#else
Daniel Mack4e4fc052008-01-23 14:54:50 +0100117#define DM9000_IRQ_FLAGS (IRQF_SHARED | IRQT_RISING)
Alex Landauf40d24d2007-07-12 12:11:48 +0800118#endif
119
Sascha Hauera1365272005-05-05 15:14:15 -0700120/*
121 * Transmit timeout, default 5 seconds.
122 */
123static int watchdog = 5000;
124module_param(watchdog, int, 0400);
125MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
126
127/* Structure/enum declaration ------------------------------- */
128typedef struct board_info {
129
130 void __iomem *io_addr; /* Register I/O base address */
131 void __iomem *io_data; /* Data I/O address */
132 u16 irq; /* IRQ */
133
134 u16 tx_pkt_cnt;
135 u16 queue_pkt_len;
136 u16 queue_start_addr;
137 u16 dbug_cnt;
138 u8 io_mode; /* 0:word, 2:byte */
139 u8 phy_addr;
140
141 void (*inblk)(void __iomem *port, void *data, int length);
142 void (*outblk)(void __iomem *port, void *data, int length);
143 void (*dumpblk)(void __iomem *port, int length);
144
145 struct resource *addr_res; /* resources found */
146 struct resource *data_res;
147 struct resource *addr_req; /* resources requested */
148 struct resource *data_req;
149 struct resource *irq_res;
150
151 struct timer_list timer;
Sascha Hauera1365272005-05-05 15:14:15 -0700152 unsigned char srom[128];
153 spinlock_t lock;
154
155 struct mii_if_info mii;
156 u32 msg_enable;
157} board_info_t;
158
159/* function declaration ------------------------------------- */
Russell King3ae5eae2005-11-09 22:32:44 +0000160static int dm9000_probe(struct platform_device *);
Sascha Hauera1365272005-05-05 15:14:15 -0700161static int dm9000_open(struct net_device *);
162static int dm9000_start_xmit(struct sk_buff *, struct net_device *);
163static int dm9000_stop(struct net_device *);
Sascha Hauera1365272005-05-05 15:14:15 -0700164
165
166static void dm9000_timer(unsigned long);
167static void dm9000_init_dm9000(struct net_device *);
168
David Howells7d12e782006-10-05 14:55:46 +0100169static irqreturn_t dm9000_interrupt(int, void *);
Sascha Hauera1365272005-05-05 15:14:15 -0700170
171static int dm9000_phy_read(struct net_device *dev, int phyaddr_unsused, int reg);
172static void dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg,
173 int value);
174static u16 read_srom_word(board_info_t *, int);
175static void dm9000_rx(struct net_device *);
176static void dm9000_hash_table(struct net_device *);
177
178//#define DM9000_PROGRAM_EEPROM
179#ifdef DM9000_PROGRAM_EEPROM
180static void program_eeprom(board_info_t * db);
181#endif
182/* DM9000 network board routine ---------------------------- */
183
184static void
185dm9000_reset(board_info_t * db)
186{
187 PRINTK1("dm9000x: resetting\n");
188 /* RESET device */
189 writeb(DM9000_NCR, db->io_addr);
190 udelay(200);
191 writeb(NCR_RST, db->io_data);
192 udelay(200);
193}
194
195/*
196 * Read a byte from I/O port
197 */
198static u8
199ior(board_info_t * db, int reg)
200{
201 writeb(reg, db->io_addr);
202 return readb(db->io_data);
203}
204
205/*
206 * Write a byte to I/O port
207 */
208
209static void
210iow(board_info_t * db, int reg, int value)
211{
212 writeb(reg, db->io_addr);
213 writeb(value, db->io_data);
214}
215
216/* routines for sending block to chip */
217
218static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
219{
220 writesb(reg, data, count);
221}
222
223static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
224{
225 writesw(reg, data, (count+1) >> 1);
226}
227
228static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
229{
230 writesl(reg, data, (count+3) >> 2);
231}
232
233/* input block from chip to memory */
234
235static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
236{
Sascha Hauer5f6b5512005-06-20 15:32:51 -0700237 readsb(reg, data, count);
Sascha Hauera1365272005-05-05 15:14:15 -0700238}
239
240
241static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
242{
243 readsw(reg, data, (count+1) >> 1);
244}
245
246static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
247{
248 readsl(reg, data, (count+3) >> 2);
249}
250
251/* dump block from chip to null */
252
253static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
254{
255 int i;
256 int tmp;
257
258 for (i = 0; i < count; i++)
259 tmp = readb(reg);
260}
261
262static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
263{
264 int i;
265 int tmp;
266
267 count = (count + 1) >> 1;
268
269 for (i = 0; i < count; i++)
270 tmp = readw(reg);
271}
272
273static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
274{
275 int i;
276 int tmp;
277
278 count = (count + 3) >> 2;
279
280 for (i = 0; i < count; i++)
281 tmp = readl(reg);
282}
283
284/* dm9000_set_io
285 *
286 * select the specified set of io routines to use with the
287 * device
288 */
289
290static void dm9000_set_io(struct board_info *db, int byte_width)
291{
292 /* use the size of the data resource to work out what IO
293 * routines we want to use
294 */
295
296 switch (byte_width) {
297 case 1:
298 db->dumpblk = dm9000_dumpblk_8bit;
299 db->outblk = dm9000_outblk_8bit;
300 db->inblk = dm9000_inblk_8bit;
301 break;
302
303 case 2:
304 db->dumpblk = dm9000_dumpblk_16bit;
305 db->outblk = dm9000_outblk_16bit;
306 db->inblk = dm9000_inblk_16bit;
307 break;
308
309 case 3:
310 printk(KERN_ERR PFX ": 3 byte IO, falling back to 16bit\n");
311 db->dumpblk = dm9000_dumpblk_16bit;
312 db->outblk = dm9000_outblk_16bit;
313 db->inblk = dm9000_inblk_16bit;
314 break;
315
316 case 4:
317 default:
318 db->dumpblk = dm9000_dumpblk_32bit;
319 db->outblk = dm9000_outblk_32bit;
320 db->inblk = dm9000_inblk_32bit;
321 break;
322 }
323}
324
325
326/* Our watchdog timed out. Called by the networking layer */
327static void dm9000_timeout(struct net_device *dev)
328{
329 board_info_t *db = (board_info_t *) dev->priv;
330 u8 reg_save;
331 unsigned long flags;
332
333 /* Save previous register address */
334 reg_save = readb(db->io_addr);
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100335 spin_lock_irqsave(&db->lock,flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700336
337 netif_stop_queue(dev);
338 dm9000_reset(db);
339 dm9000_init_dm9000(dev);
340 /* We can accept TX packets again */
341 dev->trans_start = jiffies;
342 netif_wake_queue(dev);
343
344 /* Restore previous register address */
345 writeb(reg_save, db->io_addr);
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100346 spin_unlock_irqrestore(&db->lock,flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700347}
348
Kevin Hao2fd0e332006-08-14 23:00:15 -0700349#ifdef CONFIG_NET_POLL_CONTROLLER
350/*
351 *Used by netconsole
352 */
353static void dm9000_poll_controller(struct net_device *dev)
354{
355 disable_irq(dev->irq);
Al Viro28431142006-10-08 15:00:12 +0100356 dm9000_interrupt(dev->irq,dev);
Kevin Hao2fd0e332006-08-14 23:00:15 -0700357 enable_irq(dev->irq);
358}
359#endif
Sascha Hauera1365272005-05-05 15:14:15 -0700360
361/* dm9000_release_board
362 *
363 * release a board, and any mapped resources
364 */
365
366static void
367dm9000_release_board(struct platform_device *pdev, struct board_info *db)
368{
369 if (db->data_res == NULL) {
370 if (db->addr_res != NULL)
371 release_mem_region((unsigned long)db->io_addr, 4);
372 return;
373 }
374
375 /* unmap our resources */
376
377 iounmap(db->io_addr);
378 iounmap(db->io_data);
379
380 /* release the resources */
381
382 if (db->data_req != NULL) {
383 release_resource(db->data_req);
384 kfree(db->data_req);
385 }
386
Dirk Opfer51985482006-09-06 19:53:32 +0200387 if (db->addr_req != NULL) {
388 release_resource(db->addr_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700389 kfree(db->addr_req);
390 }
391}
392
393#define res_size(_r) (((_r)->end - (_r)->start) + 1)
394
395/*
396 * Search DM9000 board, allocate space and register it
397 */
398static int
Russell King3ae5eae2005-11-09 22:32:44 +0000399dm9000_probe(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -0700400{
Sascha Hauera1365272005-05-05 15:14:15 -0700401 struct dm9000_plat_data *pdata = pdev->dev.platform_data;
402 struct board_info *db; /* Point a board information structure */
403 struct net_device *ndev;
404 unsigned long base;
405 int ret = 0;
406 int iosize;
407 int i;
408 u32 id_val;
409
Sascha Hauera1365272005-05-05 15:14:15 -0700410 /* Init network device */
411 ndev = alloc_etherdev(sizeof (struct board_info));
412 if (!ndev) {
413 printk("%s: could not allocate device.\n", CARDNAME);
414 return -ENOMEM;
415 }
416
Russell King3ae5eae2005-11-09 22:32:44 +0000417 SET_NETDEV_DEV(ndev, &pdev->dev);
Sascha Hauera1365272005-05-05 15:14:15 -0700418
419 PRINTK2("dm9000_probe()");
420
421 /* setup board info structure */
422 db = (struct board_info *) ndev->priv;
423 memset(db, 0, sizeof (*db));
424
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100425 spin_lock_init(&db->lock);
426
Sascha Hauera1365272005-05-05 15:14:15 -0700427 if (pdev->num_resources < 2) {
428 ret = -ENODEV;
429 goto out;
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100430 } else if (pdev->num_resources == 2) {
Sascha Hauera1365272005-05-05 15:14:15 -0700431 base = pdev->resource[0].start;
432
433 if (!request_mem_region(base, 4, ndev->name)) {
434 ret = -EBUSY;
435 goto out;
436 }
437
438 ndev->base_addr = base;
439 ndev->irq = pdev->resource[1].start;
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100440 db->io_addr = (void __iomem *)base;
441 db->io_data = (void __iomem *)(base + 4);
Sascha Hauera1365272005-05-05 15:14:15 -0700442
Alex Landauf40d24d2007-07-12 12:11:48 +0800443 /* ensure at least we have a default set of IO routines */
444 dm9000_set_io(db, 2);
445
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100446 } else {
Sascha Hauera1365272005-05-05 15:14:15 -0700447 db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
448 db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
449 db->irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
450
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100451 if (db->addr_res == NULL || db->data_res == NULL ||
452 db->irq_res == NULL) {
Sascha Hauera1365272005-05-05 15:14:15 -0700453 printk(KERN_ERR PFX "insufficient resources\n");
454 ret = -ENOENT;
455 goto out;
456 }
457
458 i = res_size(db->addr_res);
459 db->addr_req = request_mem_region(db->addr_res->start, i,
460 pdev->name);
461
462 if (db->addr_req == NULL) {
463 printk(KERN_ERR PFX "cannot claim address reg area\n");
464 ret = -EIO;
465 goto out;
466 }
467
468 db->io_addr = ioremap(db->addr_res->start, i);
469
470 if (db->io_addr == NULL) {
471 printk(KERN_ERR "failed to ioremap address reg\n");
472 ret = -EINVAL;
473 goto out;
474 }
475
476 iosize = res_size(db->data_res);
477 db->data_req = request_mem_region(db->data_res->start, iosize,
478 pdev->name);
479
480 if (db->data_req == NULL) {
481 printk(KERN_ERR PFX "cannot claim data reg area\n");
482 ret = -EIO;
483 goto out;
484 }
485
486 db->io_data = ioremap(db->data_res->start, iosize);
487
488 if (db->io_data == NULL) {
489 printk(KERN_ERR "failed to ioremap data reg\n");
490 ret = -EINVAL;
491 goto out;
492 }
493
494 /* fill in parameters for net-dev structure */
495
496 ndev->base_addr = (unsigned long)db->io_addr;
497 ndev->irq = db->irq_res->start;
498
499 /* ensure at least we have a default set of IO routines */
500 dm9000_set_io(db, iosize);
Sascha Hauera1365272005-05-05 15:14:15 -0700501 }
502
503 /* check to see if anything is being over-ridden */
504 if (pdata != NULL) {
505 /* check to see if the driver wants to over-ride the
506 * default IO width */
507
508 if (pdata->flags & DM9000_PLATF_8BITONLY)
509 dm9000_set_io(db, 1);
510
511 if (pdata->flags & DM9000_PLATF_16BITONLY)
512 dm9000_set_io(db, 2);
513
514 if (pdata->flags & DM9000_PLATF_32BITONLY)
515 dm9000_set_io(db, 4);
516
517 /* check to see if there are any IO routine
518 * over-rides */
519
520 if (pdata->inblk != NULL)
521 db->inblk = pdata->inblk;
522
523 if (pdata->outblk != NULL)
524 db->outblk = pdata->outblk;
525
526 if (pdata->dumpblk != NULL)
527 db->dumpblk = pdata->dumpblk;
528 }
529
530 dm9000_reset(db);
531
532 /* try two times, DM9000 sometimes gets the first read wrong */
533 for (i = 0; i < 2; i++) {
534 id_val = ior(db, DM9000_VIDL);
535 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
536 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
537 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
538
539 if (id_val == DM9000_ID)
540 break;
541 printk("%s: read wrong id 0x%08x\n", CARDNAME, id_val);
542 }
543
544 if (id_val != DM9000_ID) {
545 printk("%s: wrong id: 0x%08x\n", CARDNAME, id_val);
Mike Rapoport418d6f82007-10-18 09:23:11 +0200546 ret = -ENODEV;
547 goto out;
Sascha Hauera1365272005-05-05 15:14:15 -0700548 }
549
550 /* from this point we assume that we have found a DM9000 */
551
552 /* driver system function */
553 ether_setup(ndev);
554
555 ndev->open = &dm9000_open;
556 ndev->hard_start_xmit = &dm9000_start_xmit;
557 ndev->tx_timeout = &dm9000_timeout;
558 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
559 ndev->stop = &dm9000_stop;
Sascha Hauera1365272005-05-05 15:14:15 -0700560 ndev->set_multicast_list = &dm9000_hash_table;
Kevin Hao2fd0e332006-08-14 23:00:15 -0700561#ifdef CONFIG_NET_POLL_CONTROLLER
562 ndev->poll_controller = &dm9000_poll_controller;
563#endif
Sascha Hauera1365272005-05-05 15:14:15 -0700564
565#ifdef DM9000_PROGRAM_EEPROM
566 program_eeprom(db);
567#endif
568 db->msg_enable = NETIF_MSG_LINK;
569 db->mii.phy_id_mask = 0x1f;
570 db->mii.reg_num_mask = 0x1f;
571 db->mii.force_media = 0;
572 db->mii.full_duplex = 0;
573 db->mii.dev = ndev;
574 db->mii.mdio_read = dm9000_phy_read;
575 db->mii.mdio_write = dm9000_phy_write;
576
577 /* Read SROM content */
578 for (i = 0; i < 64; i++)
579 ((u16 *) db->srom)[i] = read_srom_word(db, i);
580
581 /* Set Node Address */
582 for (i = 0; i < 6; i++)
583 ndev->dev_addr[i] = db->srom[i];
584
Ben Dooks5b55dda2006-06-13 23:50:15 +0100585 if (!is_valid_ether_addr(ndev->dev_addr)) {
586 /* try reading from mac */
587
588 for (i = 0; i < 6; i++)
589 ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
590 }
591
Sascha Hauera1365272005-05-05 15:14:15 -0700592 if (!is_valid_ether_addr(ndev->dev_addr))
593 printk("%s: Invalid ethernet MAC address. Please "
594 "set using ifconfig\n", ndev->name);
595
Russell King3ae5eae2005-11-09 22:32:44 +0000596 platform_set_drvdata(pdev, ndev);
Sascha Hauera1365272005-05-05 15:14:15 -0700597 ret = register_netdev(ndev);
598
599 if (ret == 0) {
Joe Perches0795af52007-10-03 17:59:30 -0700600 DECLARE_MAC_BUF(mac);
601 printk("%s: dm9000 at %p,%p IRQ %d MAC: %s\n",
602 ndev->name, db->io_addr, db->io_data, ndev->irq,
603 print_mac(mac, ndev->dev_addr));
Sascha Hauera1365272005-05-05 15:14:15 -0700604 }
605 return 0;
606
Mike Rapoport418d6f82007-10-18 09:23:11 +0200607out:
Sascha Hauera1365272005-05-05 15:14:15 -0700608 printk("%s: not found (%d).\n", CARDNAME, ret);
609
610 dm9000_release_board(pdev, db);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +0000611 free_netdev(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -0700612
613 return ret;
614}
615
616/*
617 * Open the interface.
618 * The interface is opened whenever "ifconfig" actives it.
619 */
620static int
621dm9000_open(struct net_device *dev)
622{
623 board_info_t *db = (board_info_t *) dev->priv;
624
625 PRINTK2("entering dm9000_open\n");
626
Alex Landauf40d24d2007-07-12 12:11:48 +0800627 if (request_irq(dev->irq, &dm9000_interrupt, DM9000_IRQ_FLAGS, dev->name, dev))
Sascha Hauera1365272005-05-05 15:14:15 -0700628 return -EAGAIN;
629
630 /* Initialize DM9000 board */
631 dm9000_reset(db);
632 dm9000_init_dm9000(dev);
633
634 /* Init driver variable */
635 db->dbug_cnt = 0;
636
637 /* set and active a timer process */
638 init_timer(&db->timer);
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100639 db->timer.expires = DM9000_TIMER_WUT;
Sascha Hauera1365272005-05-05 15:14:15 -0700640 db->timer.data = (unsigned long) dev;
641 db->timer.function = &dm9000_timer;
642 add_timer(&db->timer);
643
644 mii_check_media(&db->mii, netif_msg_link(db), 1);
645 netif_start_queue(dev);
646
647 return 0;
648}
649
650/*
651 * Initilize dm9000 board
652 */
653static void
654dm9000_init_dm9000(struct net_device *dev)
655{
656 board_info_t *db = (board_info_t *) dev->priv;
657
658 PRINTK1("entering %s\n",__FUNCTION__);
659
660 /* I/O mode */
661 db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
662
663 /* GPIO0 on pre-activate PHY */
664 iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
665 iow(db, DM9000_GPCR, GPCR_GEP_CNTL); /* Let GPIO0 output */
666 iow(db, DM9000_GPR, 0); /* Enable PHY */
667
668 /* Program operating register */
669 iow(db, DM9000_TCR, 0); /* TX Polling clear */
670 iow(db, DM9000_BPTR, 0x3f); /* Less 3Kb, 200us */
671 iow(db, DM9000_FCR, 0xff); /* Flow Control */
672 iow(db, DM9000_SMCR, 0); /* Special Mode */
673 /* clear TX status */
674 iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
675 iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
676
677 /* Set address filter table */
678 dm9000_hash_table(dev);
679
680 /* Activate DM9000 */
681 iow(db, DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);
682 /* Enable TX/RX interrupt mask */
683 iow(db, DM9000_IMR, IMR_PAR | IMR_PTM | IMR_PRM);
684
685 /* Init Driver variable */
686 db->tx_pkt_cnt = 0;
687 db->queue_pkt_len = 0;
688 dev->trans_start = 0;
Sascha Hauera1365272005-05-05 15:14:15 -0700689}
690
691/*
692 * Hardware start transmission.
693 * Send a packet to media from the upper layer.
694 */
695static int
696dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
697{
Florian Westphalc46ac942007-08-21 01:33:42 +0200698 unsigned long flags;
Sascha Hauera1365272005-05-05 15:14:15 -0700699 board_info_t *db = (board_info_t *) dev->priv;
700
701 PRINTK3("dm9000_start_xmit\n");
702
703 if (db->tx_pkt_cnt > 1)
704 return 1;
705
Florian Westphalc46ac942007-08-21 01:33:42 +0200706 spin_lock_irqsave(&db->lock, flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700707
708 /* Move data to DM9000 TX RAM */
709 writeb(DM9000_MWCMD, db->io_addr);
710
711 (db->outblk)(db->io_data, skb->data, skb->len);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700712 dev->stats.tx_bytes += skb->len;
Sascha Hauera1365272005-05-05 15:14:15 -0700713
Florian Westphalc46ac942007-08-21 01:33:42 +0200714 db->tx_pkt_cnt++;
Sascha Hauera1365272005-05-05 15:14:15 -0700715 /* TX control: First packet immediately send, second packet queue */
Florian Westphalc46ac942007-08-21 01:33:42 +0200716 if (db->tx_pkt_cnt == 1) {
Sascha Hauera1365272005-05-05 15:14:15 -0700717 /* Set TX length to DM9000 */
718 iow(db, DM9000_TXPLL, skb->len & 0xff);
719 iow(db, DM9000_TXPLH, (skb->len >> 8) & 0xff);
720
721 /* Issue TX polling command */
722 iow(db, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
723
724 dev->trans_start = jiffies; /* save the time stamp */
Sascha Hauera1365272005-05-05 15:14:15 -0700725 } else {
726 /* Second packet */
Sascha Hauera1365272005-05-05 15:14:15 -0700727 db->queue_pkt_len = skb->len;
Florian Westphalc46ac942007-08-21 01:33:42 +0200728 netif_stop_queue(dev);
Sascha Hauera1365272005-05-05 15:14:15 -0700729 }
730
Florian Westphalc46ac942007-08-21 01:33:42 +0200731 spin_unlock_irqrestore(&db->lock, flags);
732
Sascha Hauera1365272005-05-05 15:14:15 -0700733 /* free this SKB */
734 dev_kfree_skb(skb);
735
Sascha Hauera1365272005-05-05 15:14:15 -0700736 return 0;
737}
738
739static void
740dm9000_shutdown(struct net_device *dev)
741{
742 board_info_t *db = (board_info_t *) dev->priv;
743
744 /* RESET device */
745 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
746 iow(db, DM9000_GPR, 0x01); /* Power-Down PHY */
747 iow(db, DM9000_IMR, IMR_PAR); /* Disable all interrupt */
748 iow(db, DM9000_RCR, 0x00); /* Disable RX */
749}
750
751/*
752 * Stop the interface.
753 * The interface is stopped when it is brought.
754 */
755static int
756dm9000_stop(struct net_device *ndev)
757{
758 board_info_t *db = (board_info_t *) ndev->priv;
759
760 PRINTK1("entering %s\n",__FUNCTION__);
761
762 /* deleted timer */
763 del_timer(&db->timer);
764
765 netif_stop_queue(ndev);
766 netif_carrier_off(ndev);
767
768 /* free interrupt */
769 free_irq(ndev->irq, ndev);
770
771 dm9000_shutdown(ndev);
772
773 return 0;
774}
775
776/*
777 * DM9000 interrupt handler
778 * receive the packet to upper layer, free the transmitted packet
779 */
780
Ben Dooks5d22a312006-06-14 00:09:17 +0100781static void
Sascha Hauera1365272005-05-05 15:14:15 -0700782dm9000_tx_done(struct net_device *dev, board_info_t * db)
783{
784 int tx_status = ior(db, DM9000_NSR); /* Got TX status */
785
786 if (tx_status & (NSR_TX2END | NSR_TX1END)) {
787 /* One packet sent complete */
788 db->tx_pkt_cnt--;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700789 dev->stats.tx_packets++;
Sascha Hauera1365272005-05-05 15:14:15 -0700790
791 /* Queue packet check & send */
792 if (db->tx_pkt_cnt > 0) {
793 iow(db, DM9000_TXPLL, db->queue_pkt_len & 0xff);
794 iow(db, DM9000_TXPLH, (db->queue_pkt_len >> 8) & 0xff);
795 iow(db, DM9000_TCR, TCR_TXREQ);
796 dev->trans_start = jiffies;
797 }
798 netif_wake_queue(dev);
799 }
800}
801
802static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100803dm9000_interrupt(int irq, void *dev_id)
Sascha Hauera1365272005-05-05 15:14:15 -0700804{
805 struct net_device *dev = dev_id;
806 board_info_t *db;
807 int int_status;
808 u8 reg_save;
809
810 PRINTK3("entering %s\n",__FUNCTION__);
811
812 if (!dev) {
813 PRINTK1("dm9000_interrupt() without DEVICE arg\n");
814 return IRQ_HANDLED;
815 }
816
817 /* A real interrupt coming */
818 db = (board_info_t *) dev->priv;
819 spin_lock(&db->lock);
820
821 /* Save previous register address */
822 reg_save = readb(db->io_addr);
823
824 /* Disable all interrupts */
825 iow(db, DM9000_IMR, IMR_PAR);
826
827 /* Got DM9000 interrupt status */
828 int_status = ior(db, DM9000_ISR); /* Got ISR */
829 iow(db, DM9000_ISR, int_status); /* Clear ISR status */
830
831 /* Received the coming packet */
832 if (int_status & ISR_PRS)
833 dm9000_rx(dev);
834
835 /* Trnasmit Interrupt check */
836 if (int_status & ISR_PTS)
837 dm9000_tx_done(dev, db);
838
839 /* Re-enable interrupt mask */
840 iow(db, DM9000_IMR, IMR_PAR | IMR_PTM | IMR_PRM);
841
842 /* Restore previous register address */
843 writeb(reg_save, db->io_addr);
844
845 spin_unlock(&db->lock);
846
847 return IRQ_HANDLED;
848}
849
850/*
Sascha Hauera1365272005-05-05 15:14:15 -0700851 * A periodic timer routine
852 * Dynamic media sense, allocated Rx buffer...
853 */
854static void
855dm9000_timer(unsigned long data)
856{
857 struct net_device *dev = (struct net_device *) data;
858 board_info_t *db = (board_info_t *) dev->priv;
Sascha Hauera1365272005-05-05 15:14:15 -0700859
860 PRINTK3("dm9000_timer()\n");
861
Sascha Hauera1365272005-05-05 15:14:15 -0700862 mii_check_media(&db->mii, netif_msg_link(db), 0);
863
Sascha Hauera1365272005-05-05 15:14:15 -0700864 /* Set timer again */
865 db->timer.expires = DM9000_TIMER_WUT;
866 add_timer(&db->timer);
867}
868
869struct dm9000_rxhdr {
870 u16 RxStatus;
871 u16 RxLen;
872} __attribute__((__packed__));
873
874/*
875 * Received a packet and pass to upper layer
876 */
877static void
878dm9000_rx(struct net_device *dev)
879{
880 board_info_t *db = (board_info_t *) dev->priv;
881 struct dm9000_rxhdr rxhdr;
882 struct sk_buff *skb;
883 u8 rxbyte, *rdptr;
Richard Knutsson6478fac2007-05-01 18:43:27 +0200884 bool GoodPacket;
Sascha Hauera1365272005-05-05 15:14:15 -0700885 int RxLen;
886
887 /* Check packet ready or not */
888 do {
889 ior(db, DM9000_MRCMDX); /* Dummy read */
890
891 /* Get most updated data */
892 rxbyte = readb(db->io_data);
893
894 /* Status check: this byte must be 0 or 1 */
895 if (rxbyte > DM9000_PKT_RDY) {
896 printk("status check failed: %d\n", rxbyte);
897 iow(db, DM9000_RCR, 0x00); /* Stop Device */
898 iow(db, DM9000_ISR, IMR_PAR); /* Stop INT request */
899 return;
900 }
901
902 if (rxbyte != DM9000_PKT_RDY)
903 return;
904
905 /* A packet ready now & Get status/length */
Richard Knutsson6478fac2007-05-01 18:43:27 +0200906 GoodPacket = true;
Sascha Hauera1365272005-05-05 15:14:15 -0700907 writeb(DM9000_MRCMD, db->io_addr);
908
909 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
910
911 RxLen = rxhdr.RxLen;
912
913 /* Packet Status check */
914 if (RxLen < 0x40) {
Richard Knutsson6478fac2007-05-01 18:43:27 +0200915 GoodPacket = false;
Sascha Hauera1365272005-05-05 15:14:15 -0700916 PRINTK1("Bad Packet received (runt)\n");
917 }
918
919 if (RxLen > DM9000_PKT_MAX) {
920 PRINTK1("RST: RX Len:%x\n", RxLen);
921 }
922
923 if (rxhdr.RxStatus & 0xbf00) {
Richard Knutsson6478fac2007-05-01 18:43:27 +0200924 GoodPacket = false;
Sascha Hauera1365272005-05-05 15:14:15 -0700925 if (rxhdr.RxStatus & 0x100) {
926 PRINTK1("fifo error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700927 dev->stats.rx_fifo_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700928 }
929 if (rxhdr.RxStatus & 0x200) {
930 PRINTK1("crc error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700931 dev->stats.rx_crc_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700932 }
933 if (rxhdr.RxStatus & 0x8000) {
934 PRINTK1("length error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700935 dev->stats.rx_length_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700936 }
937 }
938
939 /* Move data from DM9000 */
940 if (GoodPacket
941 && ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
Sascha Hauera1365272005-05-05 15:14:15 -0700942 skb_reserve(skb, 2);
943 rdptr = (u8 *) skb_put(skb, RxLen - 4);
944
945 /* Read received packet from RX SRAM */
946
947 (db->inblk)(db->io_data, rdptr, RxLen);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700948 dev->stats.rx_bytes += RxLen;
Sascha Hauera1365272005-05-05 15:14:15 -0700949
950 /* Pass to upper layer */
951 skb->protocol = eth_type_trans(skb, dev);
952 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700953 dev->stats.rx_packets++;
Sascha Hauera1365272005-05-05 15:14:15 -0700954
955 } else {
956 /* need to dump the packet's data */
957
958 (db->dumpblk)(db->io_data, RxLen);
959 }
960 } while (rxbyte == DM9000_PKT_RDY);
961}
962
963/*
964 * Read a word data from SROM
965 */
966static u16
967read_srom_word(board_info_t * db, int offset)
968{
969 iow(db, DM9000_EPAR, offset);
970 iow(db, DM9000_EPCR, EPCR_ERPRR);
971 mdelay(8); /* according to the datasheet 200us should be enough,
972 but it doesn't work */
973 iow(db, DM9000_EPCR, 0x0);
974 return (ior(db, DM9000_EPDRL) + (ior(db, DM9000_EPDRH) << 8));
975}
976
977#ifdef DM9000_PROGRAM_EEPROM
978/*
979 * Write a word data to SROM
980 */
981static void
982write_srom_word(board_info_t * db, int offset, u16 val)
983{
984 iow(db, DM9000_EPAR, offset);
985 iow(db, DM9000_EPDRH, ((val >> 8) & 0xff));
986 iow(db, DM9000_EPDRL, (val & 0xff));
987 iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
988 mdelay(8); /* same shit */
989 iow(db, DM9000_EPCR, 0);
990}
991
992/*
993 * Only for development:
994 * Here we write static data to the eeprom in case
995 * we don't have valid content on a new board
996 */
997static void
998program_eeprom(board_info_t * db)
999{
1000 u16 eeprom[] = { 0x0c00, 0x007f, 0x1300, /* MAC Address */
1001 0x0000, /* Autoload: accept nothing */
1002 0x0a46, 0x9000, /* Vendor / Product ID */
1003 0x0000, /* pin control */
1004 0x0000,
1005 }; /* Wake-up mode control */
1006 int i;
1007 for (i = 0; i < 8; i++)
1008 write_srom_word(db, i, eeprom[i]);
1009}
1010#endif
1011
1012
1013/*
1014 * Calculate the CRC valude of the Rx packet
1015 * flag = 1 : return the reverse CRC (for the received packet CRC)
1016 * 0 : return the normal CRC (for Hash Table index)
1017 */
1018
1019static unsigned long
1020cal_CRC(unsigned char *Data, unsigned int Len, u8 flag)
1021{
1022
1023 u32 crc = ether_crc_le(Len, Data);
1024
1025 if (flag)
1026 return ~crc;
1027
1028 return crc;
1029}
1030
1031/*
1032 * Set DM9000 multicast address
1033 */
1034static void
1035dm9000_hash_table(struct net_device *dev)
1036{
1037 board_info_t *db = (board_info_t *) dev->priv;
1038 struct dev_mc_list *mcptr = dev->mc_list;
1039 int mc_cnt = dev->mc_count;
1040 u32 hash_val;
1041 u16 i, oft, hash_table[4];
1042 unsigned long flags;
1043
1044 PRINTK2("dm9000_hash_table()\n");
1045
1046 spin_lock_irqsave(&db->lock,flags);
1047
1048 for (i = 0, oft = 0x10; i < 6; i++, oft++)
1049 iow(db, oft, dev->dev_addr[i]);
1050
1051 /* Clear Hash Table */
1052 for (i = 0; i < 4; i++)
1053 hash_table[i] = 0x0;
1054
1055 /* broadcast address */
1056 hash_table[3] = 0x8000;
1057
1058 /* the multicast address in Hash Table : 64 bits */
1059 for (i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
1060 hash_val = cal_CRC((char *) mcptr->dmi_addr, 6, 0) & 0x3f;
1061 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
1062 }
1063
1064 /* Write the hash table to MAC MD table */
1065 for (i = 0, oft = 0x16; i < 4; i++) {
1066 iow(db, oft++, hash_table[i] & 0xff);
1067 iow(db, oft++, (hash_table[i] >> 8) & 0xff);
1068 }
1069
1070 spin_unlock_irqrestore(&db->lock,flags);
1071}
1072
1073
1074/*
1075 * Read a word from phyxcer
1076 */
1077static int
1078dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1079{
1080 board_info_t *db = (board_info_t *) dev->priv;
1081 unsigned long flags;
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001082 unsigned int reg_save;
Sascha Hauera1365272005-05-05 15:14:15 -07001083 int ret;
1084
1085 spin_lock_irqsave(&db->lock,flags);
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001086
1087 /* Save previous register address */
1088 reg_save = readb(db->io_addr);
1089
Sascha Hauera1365272005-05-05 15:14:15 -07001090 /* Fill the phyxcer register into REG_0C */
1091 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1092
1093 iow(db, DM9000_EPCR, 0xc); /* Issue phyxcer read command */
1094 udelay(100); /* Wait read complete */
1095 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer read command */
1096
1097 /* The read data keeps on REG_0D & REG_0E */
1098 ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1099
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001100 /* restore the previous address */
1101 writeb(reg_save, db->io_addr);
1102
Sascha Hauera1365272005-05-05 15:14:15 -07001103 spin_unlock_irqrestore(&db->lock,flags);
1104
1105 return ret;
1106}
1107
1108/*
1109 * Write a word to phyxcer
1110 */
1111static void
1112dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg, int value)
1113{
1114 board_info_t *db = (board_info_t *) dev->priv;
1115 unsigned long flags;
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001116 unsigned long reg_save;
Sascha Hauera1365272005-05-05 15:14:15 -07001117
1118 spin_lock_irqsave(&db->lock,flags);
1119
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001120 /* Save previous register address */
1121 reg_save = readb(db->io_addr);
1122
Sascha Hauera1365272005-05-05 15:14:15 -07001123 /* Fill the phyxcer register into REG_0C */
1124 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1125
1126 /* Fill the written data into REG_0D & REG_0E */
1127 iow(db, DM9000_EPDRL, (value & 0xff));
1128 iow(db, DM9000_EPDRH, ((value >> 8) & 0xff));
1129
1130 iow(db, DM9000_EPCR, 0xa); /* Issue phyxcer write command */
1131 udelay(500); /* Wait write complete */
1132 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer write command */
1133
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001134 /* restore the previous address */
1135 writeb(reg_save, db->io_addr);
1136
Sascha Hauera1365272005-05-05 15:14:15 -07001137 spin_unlock_irqrestore(&db->lock,flags);
1138}
1139
1140static int
Russell King3ae5eae2005-11-09 22:32:44 +00001141dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
Sascha Hauera1365272005-05-05 15:14:15 -07001142{
Russell King3ae5eae2005-11-09 22:32:44 +00001143 struct net_device *ndev = platform_get_drvdata(dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001144
Russell King9480e302005-10-28 09:52:56 -07001145 if (ndev) {
Sascha Hauera1365272005-05-05 15:14:15 -07001146 if (netif_running(ndev)) {
1147 netif_device_detach(ndev);
1148 dm9000_shutdown(ndev);
1149 }
1150 }
1151 return 0;
1152}
1153
1154static int
Russell King3ae5eae2005-11-09 22:32:44 +00001155dm9000_drv_resume(struct platform_device *dev)
Sascha Hauera1365272005-05-05 15:14:15 -07001156{
Russell King3ae5eae2005-11-09 22:32:44 +00001157 struct net_device *ndev = platform_get_drvdata(dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001158 board_info_t *db = (board_info_t *) ndev->priv;
1159
Russell King9480e302005-10-28 09:52:56 -07001160 if (ndev) {
Sascha Hauera1365272005-05-05 15:14:15 -07001161
1162 if (netif_running(ndev)) {
1163 dm9000_reset(db);
1164 dm9000_init_dm9000(ndev);
1165
1166 netif_device_attach(ndev);
1167 }
1168 }
1169 return 0;
1170}
1171
1172static int
Russell King3ae5eae2005-11-09 22:32:44 +00001173dm9000_drv_remove(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001174{
Russell King3ae5eae2005-11-09 22:32:44 +00001175 struct net_device *ndev = platform_get_drvdata(pdev);
Sascha Hauera1365272005-05-05 15:14:15 -07001176
Russell King3ae5eae2005-11-09 22:32:44 +00001177 platform_set_drvdata(pdev, NULL);
Sascha Hauera1365272005-05-05 15:14:15 -07001178
1179 unregister_netdev(ndev);
1180 dm9000_release_board(pdev, (board_info_t *) ndev->priv);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001181 free_netdev(ndev); /* free device structure */
Sascha Hauera1365272005-05-05 15:14:15 -07001182
1183 PRINTK1("clean_module() exit\n");
1184
1185 return 0;
1186}
1187
Russell King3ae5eae2005-11-09 22:32:44 +00001188static struct platform_driver dm9000_driver = {
Ben Dooks5d22a312006-06-14 00:09:17 +01001189 .driver = {
1190 .name = "dm9000",
1191 .owner = THIS_MODULE,
1192 },
Sascha Hauera1365272005-05-05 15:14:15 -07001193 .probe = dm9000_probe,
1194 .remove = dm9000_drv_remove,
1195 .suspend = dm9000_drv_suspend,
1196 .resume = dm9000_drv_resume,
1197};
1198
1199static int __init
1200dm9000_init(void)
1201{
Ben Dooks2ae2d772005-07-23 17:29:38 +01001202 printk(KERN_INFO "%s Ethernet Driver\n", CARDNAME);
1203
Russell King3ae5eae2005-11-09 22:32:44 +00001204 return platform_driver_register(&dm9000_driver); /* search board and register */
Sascha Hauera1365272005-05-05 15:14:15 -07001205}
1206
1207static void __exit
1208dm9000_cleanup(void)
1209{
Russell King3ae5eae2005-11-09 22:32:44 +00001210 platform_driver_unregister(&dm9000_driver);
Sascha Hauera1365272005-05-05 15:14:15 -07001211}
1212
1213module_init(dm9000_init);
1214module_exit(dm9000_cleanup);
1215
1216MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1217MODULE_DESCRIPTION("Davicom DM9000 network driver");
1218MODULE_LICENSE("GPL");