2 * Davicom DM9000 Fast Ethernet driver for Linux.
3 * Copyright (C) 1997 Sten Wang
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.
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.
15 * (C) Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
17 * Additional updates, Copyright:
18 * Ben Dooks <ben@simtec.co.uk>
19 * Sascha Hauer <s.hauer@pengutronix.de>
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>
37 #include <asm/delay.h>
43 /* Board/System/Debug information/definition ---------------- */
45 #define DM9000_PHY 0x40 /* PHY address 0x01 */
47 #define CARDNAME "dm9000"
48 #define PFX CARDNAME ": "
49 #define DRV_VERSION "1.30"
51 #ifdef CONFIG_BLACKFIN
58 #define DEFAULT_TRIGGER IRQF_TRIGGER_HIGH
60 #define DEFAULT_TRIGGER (0)
64 * Transmit timeout, default 5 seconds.
66 static int watchdog
= 5000;
67 module_param(watchdog
, int, 0400);
68 MODULE_PARM_DESC(watchdog
, "transmit timeout in milliseconds");
70 /* DM9000 register address locking.
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.
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.
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
88 /* Structure/enum declaration ------------------------------- */
89 typedef struct board_info
{
91 void __iomem
*io_addr
; /* Register I/O base address */
92 void __iomem
*io_data
; /* Data I/O address */
99 u8 io_mode
; /* 0:word, 2:byte */
102 unsigned int in_suspend
:1;
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
);
110 struct device
*dev
; /* parent device */
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
;
118 struct mutex addr_lock
; /* phy and eeprom access lock */
122 struct mii_if_info mii
;
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); \
135 static inline board_info_t
*to_dm9000_board(struct net_device
*dev
)
140 /* function declaration ------------------------------------- */
141 static int dm9000_probe(struct platform_device
*);
142 static int dm9000_open(struct net_device
*);
143 static int dm9000_start_xmit(struct sk_buff
*, struct net_device
*);
144 static int dm9000_stop(struct net_device
*);
145 static int dm9000_ioctl(struct net_device
*dev
, struct ifreq
*req
, int cmd
);
147 static void dm9000_init_dm9000(struct net_device
*);
149 static irqreturn_t
dm9000_interrupt(int, void *);
151 static int dm9000_phy_read(struct net_device
*dev
, int phyaddr_unsused
, int reg
);
152 static void dm9000_phy_write(struct net_device
*dev
, int phyaddr_unused
, int reg
,
155 static void dm9000_read_eeprom(board_info_t
*, int addr
, u8
*to
);
156 static void dm9000_write_eeprom(board_info_t
*, int addr
, u8
*dp
);
157 static void dm9000_rx(struct net_device
*);
158 static void dm9000_hash_table(struct net_device
*);
160 /* DM9000 network board routine ---------------------------- */
163 dm9000_reset(board_info_t
* db
)
165 dev_dbg(db
->dev
, "resetting device\n");
168 writeb(DM9000_NCR
, db
->io_addr
);
170 writeb(NCR_RST
, db
->io_data
);
175 * Read a byte from I/O port
178 ior(board_info_t
* db
, int reg
)
180 writeb(reg
, db
->io_addr
);
181 return readb(db
->io_data
);
185 * Write a byte to I/O port
189 iow(board_info_t
* db
, int reg
, int value
)
191 writeb(reg
, db
->io_addr
);
192 writeb(value
, db
->io_data
);
195 /* routines for sending block to chip */
197 static void dm9000_outblk_8bit(void __iomem
*reg
, void *data
, int count
)
199 writesb(reg
, data
, count
);
202 static void dm9000_outblk_16bit(void __iomem
*reg
, void *data
, int count
)
204 writesw(reg
, data
, (count
+1) >> 1);
207 static void dm9000_outblk_32bit(void __iomem
*reg
, void *data
, int count
)
209 writesl(reg
, data
, (count
+3) >> 2);
212 /* input block from chip to memory */
214 static void dm9000_inblk_8bit(void __iomem
*reg
, void *data
, int count
)
216 readsb(reg
, data
, count
);
220 static void dm9000_inblk_16bit(void __iomem
*reg
, void *data
, int count
)
222 readsw(reg
, data
, (count
+1) >> 1);
225 static void dm9000_inblk_32bit(void __iomem
*reg
, void *data
, int count
)
227 readsl(reg
, data
, (count
+3) >> 2);
230 /* dump block from chip to null */
232 static void dm9000_dumpblk_8bit(void __iomem
*reg
, int count
)
237 for (i
= 0; i
< count
; i
++)
241 static void dm9000_dumpblk_16bit(void __iomem
*reg
, int count
)
246 count
= (count
+ 1) >> 1;
248 for (i
= 0; i
< count
; i
++)
252 static void dm9000_dumpblk_32bit(void __iomem
*reg
, int count
)
257 count
= (count
+ 3) >> 2;
259 for (i
= 0; i
< count
; i
++)
265 * select the specified set of io routines to use with the
269 static void dm9000_set_io(struct board_info
*db
, int byte_width
)
271 /* use the size of the data resource to work out what IO
272 * routines we want to use
275 switch (byte_width
) {
277 db
->dumpblk
= dm9000_dumpblk_8bit
;
278 db
->outblk
= dm9000_outblk_8bit
;
279 db
->inblk
= dm9000_inblk_8bit
;
284 dev_dbg(db
->dev
, ": 3 byte IO, falling back to 16bit\n");
286 db
->dumpblk
= dm9000_dumpblk_16bit
;
287 db
->outblk
= dm9000_outblk_16bit
;
288 db
->inblk
= dm9000_inblk_16bit
;
293 db
->dumpblk
= dm9000_dumpblk_32bit
;
294 db
->outblk
= dm9000_outblk_32bit
;
295 db
->inblk
= dm9000_inblk_32bit
;
301 /* Our watchdog timed out. Called by the networking layer */
302 static void dm9000_timeout(struct net_device
*dev
)
304 board_info_t
*db
= (board_info_t
*) dev
->priv
;
308 /* Save previous register address */
309 reg_save
= readb(db
->io_addr
);
310 spin_lock_irqsave(&db
->lock
,flags
);
312 netif_stop_queue(dev
);
314 dm9000_init_dm9000(dev
);
315 /* We can accept TX packets again */
316 dev
->trans_start
= jiffies
;
317 netif_wake_queue(dev
);
319 /* Restore previous register address */
320 writeb(reg_save
, db
->io_addr
);
321 spin_unlock_irqrestore(&db
->lock
,flags
);
324 #ifdef CONFIG_NET_POLL_CONTROLLER
328 static void dm9000_poll_controller(struct net_device
*dev
)
330 disable_irq(dev
->irq
);
331 dm9000_interrupt(dev
->irq
,dev
);
332 enable_irq(dev
->irq
);
336 static int dm9000_ioctl(struct net_device
*dev
, struct ifreq
*req
, int cmd
)
338 board_info_t
*dm
= to_dm9000_board(dev
);
340 if (!netif_running(dev
))
343 return generic_mii_ioctl(&dm
->mii
, if_mii(req
), cmd
, NULL
);
348 static void dm9000_get_drvinfo(struct net_device
*dev
,
349 struct ethtool_drvinfo
*info
)
351 board_info_t
*dm
= to_dm9000_board(dev
);
353 strcpy(info
->driver
, CARDNAME
);
354 strcpy(info
->version
, DRV_VERSION
);
355 strcpy(info
->bus_info
, to_platform_device(dm
->dev
)->name
);
358 static u32
dm9000_get_msglevel(struct net_device
*dev
)
360 board_info_t
*dm
= to_dm9000_board(dev
);
362 return dm
->msg_enable
;
365 static void dm9000_set_msglevel(struct net_device
*dev
, u32 value
)
367 board_info_t
*dm
= to_dm9000_board(dev
);
369 dm
->msg_enable
= value
;
372 static int dm9000_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
374 board_info_t
*dm
= to_dm9000_board(dev
);
376 mii_ethtool_gset(&dm
->mii
, cmd
);
380 static int dm9000_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
382 board_info_t
*dm
= to_dm9000_board(dev
);
384 return mii_ethtool_sset(&dm
->mii
, cmd
);
387 static int dm9000_nway_reset(struct net_device
*dev
)
389 board_info_t
*dm
= to_dm9000_board(dev
);
390 return mii_nway_restart(&dm
->mii
);
393 static u32
dm9000_get_link(struct net_device
*dev
)
395 board_info_t
*dm
= to_dm9000_board(dev
);
396 return mii_link_ok(&dm
->mii
);
399 #define DM_EEPROM_MAGIC (0x444D394B)
401 static int dm9000_get_eeprom_len(struct net_device
*dev
)
406 static int dm9000_get_eeprom(struct net_device
*dev
,
407 struct ethtool_eeprom
*ee
, u8
*data
)
409 board_info_t
*dm
= to_dm9000_board(dev
);
410 int offset
= ee
->offset
;
414 /* EEPROM access is aligned to two bytes */
416 if ((len
& 1) != 0 || (offset
& 1) != 0)
419 if (dm
->flags
& DM9000_PLATF_NO_EEPROM
)
422 ee
->magic
= DM_EEPROM_MAGIC
;
424 for (i
= 0; i
< len
; i
+= 2)
425 dm9000_read_eeprom(dm
, (offset
+ i
) / 2, data
+ i
);
430 static int dm9000_set_eeprom(struct net_device
*dev
,
431 struct ethtool_eeprom
*ee
, u8
*data
)
433 board_info_t
*dm
= to_dm9000_board(dev
);
434 int offset
= ee
->offset
;
438 /* EEPROM access is aligned to two bytes */
440 if ((len
& 1) != 0 || (offset
& 1) != 0)
443 if (dm
->flags
& DM9000_PLATF_NO_EEPROM
)
446 if (ee
->magic
!= DM_EEPROM_MAGIC
)
449 for (i
= 0; i
< len
; i
+= 2)
450 dm9000_write_eeprom(dm
, (offset
+ i
) / 2, data
+ i
);
455 static const struct ethtool_ops dm9000_ethtool_ops
= {
456 .get_drvinfo
= dm9000_get_drvinfo
,
457 .get_settings
= dm9000_get_settings
,
458 .set_settings
= dm9000_set_settings
,
459 .get_msglevel
= dm9000_get_msglevel
,
460 .set_msglevel
= dm9000_set_msglevel
,
461 .nway_reset
= dm9000_nway_reset
,
462 .get_link
= dm9000_get_link
,
463 .get_eeprom_len
= dm9000_get_eeprom_len
,
464 .get_eeprom
= dm9000_get_eeprom
,
465 .set_eeprom
= dm9000_set_eeprom
,
469 /* dm9000_release_board
471 * release a board, and any mapped resources
475 dm9000_release_board(struct platform_device
*pdev
, struct board_info
*db
)
477 if (db
->data_res
== NULL
) {
478 if (db
->addr_res
!= NULL
)
479 release_mem_region((unsigned long)db
->io_addr
, 4);
483 /* unmap our resources */
485 iounmap(db
->io_addr
);
486 iounmap(db
->io_data
);
488 /* release the resources */
490 if (db
->data_req
!= NULL
) {
491 release_resource(db
->data_req
);
495 if (db
->addr_req
!= NULL
) {
496 release_resource(db
->addr_req
);
501 #define res_size(_r) (((_r)->end - (_r)->start) + 1)
504 * Search DM9000 board, allocate space and register it
507 dm9000_probe(struct platform_device
*pdev
)
509 struct dm9000_plat_data
*pdata
= pdev
->dev
.platform_data
;
510 struct board_info
*db
; /* Point a board information structure */
511 struct net_device
*ndev
;
512 const unsigned char *mac_src
;
519 /* Init network device */
520 ndev
= alloc_etherdev(sizeof (struct board_info
));
522 dev_err(&pdev
->dev
, "could not allocate device.\n");
526 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
528 dev_dbg(&pdev
->dev
, "dm9000_probe()");
530 /* setup board info structure */
531 db
= (struct board_info
*) ndev
->priv
;
532 memset(db
, 0, sizeof (*db
));
534 db
->dev
= &pdev
->dev
;
536 spin_lock_init(&db
->lock
);
537 mutex_init(&db
->addr_lock
);
539 if (pdev
->num_resources
< 2) {
542 } else if (pdev
->num_resources
== 2) {
543 base
= pdev
->resource
[0].start
;
545 if (!request_mem_region(base
, 4, ndev
->name
)) {
550 ndev
->base_addr
= base
;
551 ndev
->irq
= pdev
->resource
[1].start
;
552 db
->io_addr
= (void __iomem
*)base
;
553 db
->io_data
= (void __iomem
*)(base
+ 4);
555 /* ensure at least we have a default set of IO routines */
556 dm9000_set_io(db
, 2);
559 db
->addr_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
560 db
->data_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
561 db
->irq_res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
563 if (db
->addr_res
== NULL
|| db
->data_res
== NULL
||
564 db
->irq_res
== NULL
) {
565 dev_err(db
->dev
, "insufficient resources\n");
570 i
= res_size(db
->addr_res
);
571 db
->addr_req
= request_mem_region(db
->addr_res
->start
, i
,
574 if (db
->addr_req
== NULL
) {
575 dev_err(db
->dev
, "cannot claim address reg area\n");
580 db
->io_addr
= ioremap(db
->addr_res
->start
, i
);
582 if (db
->io_addr
== NULL
) {
583 dev_err(db
->dev
, "failed to ioremap address reg\n");
588 iosize
= res_size(db
->data_res
);
589 db
->data_req
= request_mem_region(db
->data_res
->start
, iosize
,
592 if (db
->data_req
== NULL
) {
593 dev_err(db
->dev
, "cannot claim data reg area\n");
598 db
->io_data
= ioremap(db
->data_res
->start
, iosize
);
600 if (db
->io_data
== NULL
) {
601 dev_err(db
->dev
,"failed to ioremap data reg\n");
606 /* fill in parameters for net-dev structure */
608 ndev
->base_addr
= (unsigned long)db
->io_addr
;
609 ndev
->irq
= db
->irq_res
->start
;
611 /* ensure at least we have a default set of IO routines */
612 dm9000_set_io(db
, iosize
);
615 /* check to see if anything is being over-ridden */
617 /* check to see if the driver wants to over-ride the
618 * default IO width */
620 if (pdata
->flags
& DM9000_PLATF_8BITONLY
)
621 dm9000_set_io(db
, 1);
623 if (pdata
->flags
& DM9000_PLATF_16BITONLY
)
624 dm9000_set_io(db
, 2);
626 if (pdata
->flags
& DM9000_PLATF_32BITONLY
)
627 dm9000_set_io(db
, 4);
629 /* check to see if there are any IO routine
632 if (pdata
->inblk
!= NULL
)
633 db
->inblk
= pdata
->inblk
;
635 if (pdata
->outblk
!= NULL
)
636 db
->outblk
= pdata
->outblk
;
638 if (pdata
->dumpblk
!= NULL
)
639 db
->dumpblk
= pdata
->dumpblk
;
641 db
->flags
= pdata
->flags
;
646 /* try two times, DM9000 sometimes gets the first read wrong */
647 for (i
= 0; i
< 8; i
++) {
648 id_val
= ior(db
, DM9000_VIDL
);
649 id_val
|= (u32
)ior(db
, DM9000_VIDH
) << 8;
650 id_val
|= (u32
)ior(db
, DM9000_PIDL
) << 16;
651 id_val
|= (u32
)ior(db
, DM9000_PIDH
) << 24;
653 if (id_val
== DM9000_ID
)
655 dev_err(db
->dev
, "read wrong id 0x%08x\n", id_val
);
658 if (id_val
!= DM9000_ID
) {
659 dev_err(db
->dev
, "wrong id: 0x%08x\n", id_val
);
664 /* from this point we assume that we have found a DM9000 */
666 /* driver system function */
669 ndev
->open
= &dm9000_open
;
670 ndev
->hard_start_xmit
= &dm9000_start_xmit
;
671 ndev
->tx_timeout
= &dm9000_timeout
;
672 ndev
->watchdog_timeo
= msecs_to_jiffies(watchdog
);
673 ndev
->stop
= &dm9000_stop
;
674 ndev
->set_multicast_list
= &dm9000_hash_table
;
675 ndev
->ethtool_ops
= &dm9000_ethtool_ops
;
676 ndev
->do_ioctl
= &dm9000_ioctl
;
678 #ifdef CONFIG_NET_POLL_CONTROLLER
679 ndev
->poll_controller
= &dm9000_poll_controller
;
682 db
->msg_enable
= NETIF_MSG_LINK
;
683 db
->mii
.phy_id_mask
= 0x1f;
684 db
->mii
.reg_num_mask
= 0x1f;
685 db
->mii
.force_media
= 0;
686 db
->mii
.full_duplex
= 0;
688 db
->mii
.mdio_read
= dm9000_phy_read
;
689 db
->mii
.mdio_write
= dm9000_phy_write
;
693 /* try reading the node address from the attached EEPROM */
694 for (i
= 0; i
< 6; i
+= 2)
695 dm9000_read_eeprom(db
, i
/ 2, ndev
->dev_addr
+i
);
697 if (!is_valid_ether_addr(ndev
->dev_addr
)) {
698 /* try reading from mac */
701 for (i
= 0; i
< 6; i
++)
702 ndev
->dev_addr
[i
] = ior(db
, i
+DM9000_PAR
);
705 if (!is_valid_ether_addr(ndev
->dev_addr
))
706 dev_warn(db
->dev
, "%s: Invalid ethernet MAC address. Please "
707 "set using ifconfig\n", ndev
->name
);
709 platform_set_drvdata(pdev
, ndev
);
710 ret
= register_netdev(ndev
);
713 DECLARE_MAC_BUF(mac
);
714 printk("%s: dm9000 at %p,%p IRQ %d MAC: %s (%s)\n",
715 ndev
->name
, db
->io_addr
, db
->io_data
, ndev
->irq
,
716 print_mac(mac
, ndev
->dev_addr
), mac_src
);
721 dev_err(db
->dev
, "not found (%d).\n", ret
);
723 dm9000_release_board(pdev
, db
);
730 * Open the interface.
731 * The interface is opened whenever "ifconfig" actives it.
734 dm9000_open(struct net_device
*dev
)
736 board_info_t
*db
= (board_info_t
*) dev
->priv
;
737 unsigned long irqflags
= db
->irq_res
->flags
& IRQF_TRIGGER_MASK
;
739 if (netif_msg_ifup(db
))
740 dev_dbg(db
->dev
, "enabling %s\n", dev
->name
);
742 /* If there is no IRQ type specified, default to something that
743 * may work, and tell the user that this is a problem */
745 if (irqflags
== IRQF_TRIGGER_NONE
) {
746 dev_warn(db
->dev
, "WARNING: no IRQ resource flags set.\n");
747 irqflags
= DEFAULT_TRIGGER
;
750 irqflags
|= IRQF_SHARED
;
752 if (request_irq(dev
->irq
, &dm9000_interrupt
, irqflags
, dev
->name
, dev
))
755 /* Initialize DM9000 board */
757 dm9000_init_dm9000(dev
);
759 /* Init driver variable */
762 mii_check_media(&db
->mii
, netif_msg_link(db
), 1);
763 netif_start_queue(dev
);
769 * Initilize dm9000 board
772 dm9000_init_dm9000(struct net_device
*dev
)
774 board_info_t
*db
= (board_info_t
*) dev
->priv
;
776 dm9000_dbg(db
, 1, "entering %s\n", __func__
);
779 db
->io_mode
= ior(db
, DM9000_ISR
) >> 6; /* ISR bit7:6 keeps I/O mode */
781 /* GPIO0 on pre-activate PHY */
782 iow(db
, DM9000_GPR
, 0); /* REG_1F bit0 activate phyxcer */
783 iow(db
, DM9000_GPCR
, GPCR_GEP_CNTL
); /* Let GPIO0 output */
784 iow(db
, DM9000_GPR
, 0); /* Enable PHY */
786 if (db
->flags
& DM9000_PLATF_EXT_PHY
)
787 iow(db
, DM9000_NCR
, NCR_EXT_PHY
);
789 /* Program operating register */
790 iow(db
, DM9000_TCR
, 0); /* TX Polling clear */
791 iow(db
, DM9000_BPTR
, 0x3f); /* Less 3Kb, 200us */
792 iow(db
, DM9000_FCR
, 0xff); /* Flow Control */
793 iow(db
, DM9000_SMCR
, 0); /* Special Mode */
794 /* clear TX status */
795 iow(db
, DM9000_NSR
, NSR_WAKEST
| NSR_TX2END
| NSR_TX1END
);
796 iow(db
, DM9000_ISR
, ISR_CLR_STATUS
); /* Clear interrupt status */
798 /* Set address filter table */
799 dm9000_hash_table(dev
);
801 /* Activate DM9000 */
802 iow(db
, DM9000_RCR
, RCR_DIS_LONG
| RCR_DIS_CRC
| RCR_RXEN
);
803 /* Enable TX/RX interrupt mask */
804 iow(db
, DM9000_IMR
, IMR_PAR
| IMR_PTM
| IMR_PRM
);
806 /* Init Driver variable */
808 db
->queue_pkt_len
= 0;
809 dev
->trans_start
= 0;
813 * Hardware start transmission.
814 * Send a packet to media from the upper layer.
817 dm9000_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
820 board_info_t
*db
= (board_info_t
*) dev
->priv
;
822 dm9000_dbg(db
, 3, "%s:\n", __func__
);
824 if (db
->tx_pkt_cnt
> 1)
827 spin_lock_irqsave(&db
->lock
, flags
);
829 /* Move data to DM9000 TX RAM */
830 writeb(DM9000_MWCMD
, db
->io_addr
);
832 (db
->outblk
)(db
->io_data
, skb
->data
, skb
->len
);
833 dev
->stats
.tx_bytes
+= skb
->len
;
836 /* TX control: First packet immediately send, second packet queue */
837 if (db
->tx_pkt_cnt
== 1) {
838 /* Set TX length to DM9000 */
839 iow(db
, DM9000_TXPLL
, skb
->len
);
840 iow(db
, DM9000_TXPLH
, skb
->len
>> 8);
842 /* Issue TX polling command */
843 iow(db
, DM9000_TCR
, TCR_TXREQ
); /* Cleared after TX complete */
845 dev
->trans_start
= jiffies
; /* save the time stamp */
848 db
->queue_pkt_len
= skb
->len
;
849 netif_stop_queue(dev
);
852 spin_unlock_irqrestore(&db
->lock
, flags
);
861 dm9000_shutdown(struct net_device
*dev
)
863 board_info_t
*db
= (board_info_t
*) dev
->priv
;
866 dm9000_phy_write(dev
, 0, MII_BMCR
, BMCR_RESET
); /* PHY RESET */
867 iow(db
, DM9000_GPR
, 0x01); /* Power-Down PHY */
868 iow(db
, DM9000_IMR
, IMR_PAR
); /* Disable all interrupt */
869 iow(db
, DM9000_RCR
, 0x00); /* Disable RX */
873 * Stop the interface.
874 * The interface is stopped when it is brought.
877 dm9000_stop(struct net_device
*ndev
)
879 board_info_t
*db
= (board_info_t
*) ndev
->priv
;
881 if (netif_msg_ifdown(db
))
882 dev_dbg(db
->dev
, "shutting down %s\n", ndev
->name
);
884 netif_stop_queue(ndev
);
885 netif_carrier_off(ndev
);
888 free_irq(ndev
->irq
, ndev
);
890 dm9000_shutdown(ndev
);
896 * DM9000 interrupt handler
897 * receive the packet to upper layer, free the transmitted packet
901 dm9000_tx_done(struct net_device
*dev
, board_info_t
* db
)
903 int tx_status
= ior(db
, DM9000_NSR
); /* Got TX status */
905 if (tx_status
& (NSR_TX2END
| NSR_TX1END
)) {
906 /* One packet sent complete */
908 dev
->stats
.tx_packets
++;
910 if (netif_msg_tx_done(db
))
911 dev_dbg(db
->dev
, "tx done, NSR %02x\n", tx_status
);
913 /* Queue packet check & send */
914 if (db
->tx_pkt_cnt
> 0) {
915 iow(db
, DM9000_TXPLL
, db
->queue_pkt_len
);
916 iow(db
, DM9000_TXPLH
, db
->queue_pkt_len
>> 8);
917 iow(db
, DM9000_TCR
, TCR_TXREQ
);
918 dev
->trans_start
= jiffies
;
920 netif_wake_queue(dev
);
925 dm9000_interrupt(int irq
, void *dev_id
)
927 struct net_device
*dev
= dev_id
;
928 board_info_t
*db
= (board_info_t
*) dev
->priv
;
932 dm9000_dbg(db
, 3, "entering %s\n", __func__
);
934 /* A real interrupt coming */
936 spin_lock(&db
->lock
);
938 /* Save previous register address */
939 reg_save
= readb(db
->io_addr
);
941 /* Disable all interrupts */
942 iow(db
, DM9000_IMR
, IMR_PAR
);
944 /* Got DM9000 interrupt status */
945 int_status
= ior(db
, DM9000_ISR
); /* Got ISR */
946 iow(db
, DM9000_ISR
, int_status
); /* Clear ISR status */
948 if (netif_msg_intr(db
))
949 dev_dbg(db
->dev
, "interrupt status %02x\n", int_status
);
951 /* Received the coming packet */
952 if (int_status
& ISR_PRS
)
955 /* Trnasmit Interrupt check */
956 if (int_status
& ISR_PTS
)
957 dm9000_tx_done(dev
, db
);
959 /* Re-enable interrupt mask */
960 iow(db
, DM9000_IMR
, IMR_PAR
| IMR_PTM
| IMR_PRM
);
962 /* Restore previous register address */
963 writeb(reg_save
, db
->io_addr
);
965 spin_unlock(&db
->lock
);
970 struct dm9000_rxhdr
{
974 } __attribute__((__packed__
));
977 * Received a packet and pass to upper layer
980 dm9000_rx(struct net_device
*dev
)
982 board_info_t
*db
= (board_info_t
*) dev
->priv
;
983 struct dm9000_rxhdr rxhdr
;
989 /* Check packet ready or not */
991 ior(db
, DM9000_MRCMDX
); /* Dummy read */
993 /* Get most updated data */
994 rxbyte
= readb(db
->io_data
);
996 /* Status check: this byte must be 0 or 1 */
997 if (rxbyte
> DM9000_PKT_RDY
) {
998 dev_warn(db
->dev
, "status check fail: %d\n", rxbyte
);
999 iow(db
, DM9000_RCR
, 0x00); /* Stop Device */
1000 iow(db
, DM9000_ISR
, IMR_PAR
); /* Stop INT request */
1004 if (rxbyte
!= DM9000_PKT_RDY
)
1007 /* A packet ready now & Get status/length */
1009 writeb(DM9000_MRCMD
, db
->io_addr
);
1011 (db
->inblk
)(db
->io_data
, &rxhdr
, sizeof(rxhdr
));
1013 RxLen
= le16_to_cpu(rxhdr
.RxLen
);
1015 if (netif_msg_rx_status(db
))
1016 dev_dbg(db
->dev
, "RX: status %02x, length %04x\n",
1017 rxhdr
.RxStatus
, RxLen
);
1019 /* Packet Status check */
1022 if (netif_msg_rx_err(db
))
1023 dev_dbg(db
->dev
, "RX: Bad Packet (runt)\n");
1026 if (RxLen
> DM9000_PKT_MAX
) {
1027 dev_dbg(db
->dev
, "RST: RX Len:%x\n", RxLen
);
1030 if (rxhdr
.RxStatus
& 0xbf) {
1032 if (rxhdr
.RxStatus
& 0x01) {
1033 if (netif_msg_rx_err(db
))
1034 dev_dbg(db
->dev
, "fifo error\n");
1035 dev
->stats
.rx_fifo_errors
++;
1037 if (rxhdr
.RxStatus
& 0x02) {
1038 if (netif_msg_rx_err(db
))
1039 dev_dbg(db
->dev
, "crc error\n");
1040 dev
->stats
.rx_crc_errors
++;
1042 if (rxhdr
.RxStatus
& 0x80) {
1043 if (netif_msg_rx_err(db
))
1044 dev_dbg(db
->dev
, "length error\n");
1045 dev
->stats
.rx_length_errors
++;
1049 /* Move data from DM9000 */
1051 && ((skb
= dev_alloc_skb(RxLen
+ 4)) != NULL
)) {
1052 skb_reserve(skb
, 2);
1053 rdptr
= (u8
*) skb_put(skb
, RxLen
- 4);
1055 /* Read received packet from RX SRAM */
1057 (db
->inblk
)(db
->io_data
, rdptr
, RxLen
);
1058 dev
->stats
.rx_bytes
+= RxLen
;
1060 /* Pass to upper layer */
1061 skb
->protocol
= eth_type_trans(skb
, dev
);
1063 dev
->stats
.rx_packets
++;
1066 /* need to dump the packet's data */
1068 (db
->dumpblk
)(db
->io_data
, RxLen
);
1070 } while (rxbyte
== DM9000_PKT_RDY
);
1074 dm9000_read_locked(board_info_t
*db
, int reg
)
1076 unsigned long flags
;
1079 spin_lock_irqsave(&db
->lock
, flags
);
1081 spin_unlock_irqrestore(&db
->lock
, flags
);
1086 static int dm9000_wait_eeprom(board_info_t
*db
)
1088 unsigned int status
;
1089 int timeout
= 8; /* wait max 8msec */
1091 /* The DM9000 data sheets say we should be able to
1092 * poll the ERRE bit in EPCR to wait for the EEPROM
1093 * operation. From testing several chips, this bit
1094 * does not seem to work.
1096 * We attempt to use the bit, but fall back to the
1097 * timeout (which is why we do not return an error
1098 * on expiry) to say that the EEPROM operation has
1103 status
= dm9000_read_locked(db
, DM9000_EPCR
);
1105 if ((status
& EPCR_ERRE
) == 0)
1108 if (timeout
-- < 0) {
1109 dev_dbg(db
->dev
, "timeout waiting EEPROM\n");
1118 * Read a word data from EEPROM
1121 dm9000_read_eeprom(board_info_t
*db
, int offset
, u8
*to
)
1123 unsigned long flags
;
1125 if (db
->flags
& DM9000_PLATF_NO_EEPROM
) {
1131 mutex_lock(&db
->addr_lock
);
1133 spin_lock_irqsave(&db
->lock
, flags
);
1135 iow(db
, DM9000_EPAR
, offset
);
1136 iow(db
, DM9000_EPCR
, EPCR_ERPRR
);
1138 spin_unlock_irqrestore(&db
->lock
, flags
);
1140 dm9000_wait_eeprom(db
);
1142 /* delay for at-least 150uS */
1145 spin_lock_irqsave(&db
->lock
, flags
);
1147 iow(db
, DM9000_EPCR
, 0x0);
1149 to
[0] = ior(db
, DM9000_EPDRL
);
1150 to
[1] = ior(db
, DM9000_EPDRH
);
1152 spin_unlock_irqrestore(&db
->lock
, flags
);
1154 mutex_unlock(&db
->addr_lock
);
1158 * Write a word data to SROM
1161 dm9000_write_eeprom(board_info_t
*db
, int offset
, u8
*data
)
1163 unsigned long flags
;
1165 if (db
->flags
& DM9000_PLATF_NO_EEPROM
)
1168 mutex_lock(&db
->addr_lock
);
1170 spin_lock_irqsave(&db
->lock
, flags
);
1171 iow(db
, DM9000_EPAR
, offset
);
1172 iow(db
, DM9000_EPDRH
, data
[1]);
1173 iow(db
, DM9000_EPDRL
, data
[0]);
1174 iow(db
, DM9000_EPCR
, EPCR_WEP
| EPCR_ERPRW
);
1175 spin_unlock_irqrestore(&db
->lock
, flags
);
1177 dm9000_wait_eeprom(db
);
1179 mdelay(1); /* wait at least 150uS to clear */
1181 spin_lock_irqsave(&db
->lock
, flags
);
1182 iow(db
, DM9000_EPCR
, 0);
1183 spin_unlock_irqrestore(&db
->lock
, flags
);
1185 mutex_unlock(&db
->addr_lock
);
1189 * Set DM9000 multicast address
1192 dm9000_hash_table(struct net_device
*dev
)
1194 board_info_t
*db
= (board_info_t
*) dev
->priv
;
1195 struct dev_mc_list
*mcptr
= dev
->mc_list
;
1196 int mc_cnt
= dev
->mc_count
;
1200 unsigned long flags
;
1202 dm9000_dbg(db
, 1, "entering %s\n", __func__
);
1204 spin_lock_irqsave(&db
->lock
, flags
);
1206 for (i
= 0, oft
= DM9000_PAR
; i
< 6; i
++, oft
++)
1207 iow(db
, oft
, dev
->dev_addr
[i
]);
1209 /* Clear Hash Table */
1210 for (i
= 0; i
< 4; i
++)
1211 hash_table
[i
] = 0x0;
1213 /* broadcast address */
1214 hash_table
[3] = 0x8000;
1216 /* the multicast address in Hash Table : 64 bits */
1217 for (i
= 0; i
< mc_cnt
; i
++, mcptr
= mcptr
->next
) {
1218 hash_val
= ether_crc_le(6, mcptr
->dmi_addr
) & 0x3f;
1219 hash_table
[hash_val
/ 16] |= (u16
) 1 << (hash_val
% 16);
1222 /* Write the hash table to MAC MD table */
1223 for (i
= 0, oft
= DM9000_MAR
; i
< 4; i
++) {
1224 iow(db
, oft
++, hash_table
[i
]);
1225 iow(db
, oft
++, hash_table
[i
] >> 8);
1228 spin_unlock_irqrestore(&db
->lock
, flags
);
1233 * Sleep, either by using msleep() or if we are suspending, then
1234 * use mdelay() to sleep.
1236 static void dm9000_msleep(board_info_t
*db
, unsigned int ms
)
1245 * Read a word from phyxcer
1248 dm9000_phy_read(struct net_device
*dev
, int phy_reg_unused
, int reg
)
1250 board_info_t
*db
= (board_info_t
*) dev
->priv
;
1251 unsigned long flags
;
1252 unsigned int reg_save
;
1255 mutex_lock(&db
->addr_lock
);
1257 spin_lock_irqsave(&db
->lock
,flags
);
1259 /* Save previous register address */
1260 reg_save
= readb(db
->io_addr
);
1262 /* Fill the phyxcer register into REG_0C */
1263 iow(db
, DM9000_EPAR
, DM9000_PHY
| reg
);
1265 iow(db
, DM9000_EPCR
, 0xc); /* Issue phyxcer read command */
1267 writeb(reg_save
, db
->io_addr
);
1268 spin_unlock_irqrestore(&db
->lock
,flags
);
1270 dm9000_msleep(db
, 1); /* Wait read complete */
1272 spin_lock_irqsave(&db
->lock
,flags
);
1273 reg_save
= readb(db
->io_addr
);
1275 iow(db
, DM9000_EPCR
, 0x0); /* Clear phyxcer read command */
1277 /* The read data keeps on REG_0D & REG_0E */
1278 ret
= (ior(db
, DM9000_EPDRH
) << 8) | ior(db
, DM9000_EPDRL
);
1280 /* restore the previous address */
1281 writeb(reg_save
, db
->io_addr
);
1282 spin_unlock_irqrestore(&db
->lock
,flags
);
1284 mutex_unlock(&db
->addr_lock
);
1289 * Write a word to phyxcer
1292 dm9000_phy_write(struct net_device
*dev
, int phyaddr_unused
, int reg
, int value
)
1294 board_info_t
*db
= (board_info_t
*) dev
->priv
;
1295 unsigned long flags
;
1296 unsigned long reg_save
;
1298 mutex_lock(&db
->addr_lock
);
1300 spin_lock_irqsave(&db
->lock
,flags
);
1302 /* Save previous register address */
1303 reg_save
= readb(db
->io_addr
);
1305 /* Fill the phyxcer register into REG_0C */
1306 iow(db
, DM9000_EPAR
, DM9000_PHY
| reg
);
1308 /* Fill the written data into REG_0D & REG_0E */
1309 iow(db
, DM9000_EPDRL
, value
);
1310 iow(db
, DM9000_EPDRH
, value
>> 8);
1312 iow(db
, DM9000_EPCR
, 0xa); /* Issue phyxcer write command */
1314 writeb(reg_save
, db
->io_addr
);
1315 spin_unlock_irqrestore(&db
->lock
, flags
);
1317 dm9000_msleep(db
, 1); /* Wait write complete */
1319 spin_lock_irqsave(&db
->lock
,flags
);
1320 reg_save
= readb(db
->io_addr
);
1322 iow(db
, DM9000_EPCR
, 0x0); /* Clear phyxcer write command */
1324 /* restore the previous address */
1325 writeb(reg_save
, db
->io_addr
);
1327 spin_unlock_irqrestore(&db
->lock
, flags
);
1328 mutex_unlock(&db
->addr_lock
);
1332 dm9000_drv_suspend(struct platform_device
*dev
, pm_message_t state
)
1334 struct net_device
*ndev
= platform_get_drvdata(dev
);
1338 db
= (board_info_t
*) ndev
->priv
;
1341 if (netif_running(ndev
)) {
1342 netif_device_detach(ndev
);
1343 dm9000_shutdown(ndev
);
1350 dm9000_drv_resume(struct platform_device
*dev
)
1352 struct net_device
*ndev
= platform_get_drvdata(dev
);
1353 board_info_t
*db
= (board_info_t
*) ndev
->priv
;
1357 if (netif_running(ndev
)) {
1359 dm9000_init_dm9000(ndev
);
1361 netif_device_attach(ndev
);
1370 dm9000_drv_remove(struct platform_device
*pdev
)
1372 struct net_device
*ndev
= platform_get_drvdata(pdev
);
1374 platform_set_drvdata(pdev
, NULL
);
1376 unregister_netdev(ndev
);
1377 dm9000_release_board(pdev
, (board_info_t
*) ndev
->priv
);
1378 free_netdev(ndev
); /* free device structure */
1380 dev_dbg(&pdev
->dev
, "released and freed device\n");
1384 static struct platform_driver dm9000_driver
= {
1387 .owner
= THIS_MODULE
,
1389 .probe
= dm9000_probe
,
1390 .remove
= dm9000_drv_remove
,
1391 .suspend
= dm9000_drv_suspend
,
1392 .resume
= dm9000_drv_resume
,
1398 printk(KERN_INFO
"%s Ethernet Driver, V%s\n", CARDNAME
, DRV_VERSION
);
1400 return platform_driver_register(&dm9000_driver
); /* search board and register */
1404 dm9000_cleanup(void)
1406 platform_driver_unregister(&dm9000_driver
);
1409 module_init(dm9000_init
);
1410 module_exit(dm9000_cleanup
);
1412 MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1413 MODULE_DESCRIPTION("Davicom DM9000 network driver");
1414 MODULE_LICENSE("GPL");