DM9000: Add support for DM9000A and DM9000B chips
[linux-2.6/zen-sources.git] / drivers / net / dm9000.c
blob73270d93ae38fb13cedb7c33f25928fe788b02ad
1 /*
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>
38 #include <asm/irq.h>
39 #include <asm/io.h>
41 #include "dm9000.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
52 #define readsb insb
53 #define readsw insw
54 #define readsl insl
55 #define writesb outsb
56 #define writesw outsw
57 #define writesl outsl
58 #define DEFAULT_TRIGGER IRQF_TRIGGER_HIGH
59 #else
60 #define DEFAULT_TRIGGER (0)
61 #endif
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
85 * these two devices.
88 /* The driver supports the original DM9000E, and now the two newer
89 * devices, DM9000A and DM9000B.
92 enum dm9000_type {
93 TYPE_DM9000E, /* original DM9000 */
94 TYPE_DM9000A,
95 TYPE_DM9000B
98 /* Structure/enum declaration ------------------------------- */
99 typedef struct board_info {
101 void __iomem *io_addr; /* Register I/O base address */
102 void __iomem *io_data; /* Data I/O address */
103 u16 irq; /* IRQ */
105 u16 tx_pkt_cnt;
106 u16 queue_pkt_len;
107 u16 queue_start_addr;
108 u16 dbug_cnt;
109 u8 io_mode; /* 0:word, 2:byte */
110 u8 phy_addr;
111 u8 imr_all;
112 unsigned int flags;
113 unsigned int in_suspend :1;
115 enum dm9000_type type;
116 int debug_level;
118 void (*inblk)(void __iomem *port, void *data, int length);
119 void (*outblk)(void __iomem *port, void *data, int length);
120 void (*dumpblk)(void __iomem *port, int length);
122 struct device *dev; /* parent device */
124 struct resource *addr_res; /* resources found */
125 struct resource *data_res;
126 struct resource *addr_req; /* resources requested */
127 struct resource *data_req;
128 struct resource *irq_res;
130 struct mutex addr_lock; /* phy and eeprom access lock */
132 struct delayed_work phy_poll;
133 struct net_device *ndev;
135 spinlock_t lock;
137 struct mii_if_info mii;
138 u32 msg_enable;
139 } board_info_t;
141 /* debug code */
143 #define dm9000_dbg(db, lev, msg...) do { \
144 if ((lev) < CONFIG_DM9000_DEBUGLEVEL && \
145 (lev) < db->debug_level) { \
146 dev_dbg(db->dev, msg); \
148 } while (0)
150 static inline board_info_t *to_dm9000_board(struct net_device *dev)
152 return dev->priv;
155 /* function declaration ------------------------------------- */
156 static int dm9000_probe(struct platform_device *);
157 static int dm9000_open(struct net_device *);
158 static int dm9000_start_xmit(struct sk_buff *, struct net_device *);
159 static int dm9000_stop(struct net_device *);
160 static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd);
162 static void dm9000_init_dm9000(struct net_device *);
164 static irqreturn_t dm9000_interrupt(int, void *);
166 static int dm9000_phy_read(struct net_device *dev, int phyaddr_unsused, int reg);
167 static void dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg,
168 int value);
170 static void dm9000_read_eeprom(board_info_t *, int addr, u8 *to);
171 static void dm9000_write_eeprom(board_info_t *, int addr, u8 *dp);
172 static void dm9000_rx(struct net_device *);
173 static void dm9000_hash_table(struct net_device *);
175 /* DM9000 network board routine ---------------------------- */
177 static void
178 dm9000_reset(board_info_t * db)
180 dev_dbg(db->dev, "resetting device\n");
182 /* RESET device */
183 writeb(DM9000_NCR, db->io_addr);
184 udelay(200);
185 writeb(NCR_RST, db->io_data);
186 udelay(200);
190 * Read a byte from I/O port
192 static u8
193 ior(board_info_t * db, int reg)
195 writeb(reg, db->io_addr);
196 return readb(db->io_data);
200 * Write a byte to I/O port
203 static void
204 iow(board_info_t * db, int reg, int value)
206 writeb(reg, db->io_addr);
207 writeb(value, db->io_data);
210 /* routines for sending block to chip */
212 static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
214 writesb(reg, data, count);
217 static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
219 writesw(reg, data, (count+1) >> 1);
222 static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
224 writesl(reg, data, (count+3) >> 2);
227 /* input block from chip to memory */
229 static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
231 readsb(reg, data, count);
235 static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
237 readsw(reg, data, (count+1) >> 1);
240 static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
242 readsl(reg, data, (count+3) >> 2);
245 /* dump block from chip to null */
247 static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
249 int i;
250 int tmp;
252 for (i = 0; i < count; i++)
253 tmp = readb(reg);
256 static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
258 int i;
259 int tmp;
261 count = (count + 1) >> 1;
263 for (i = 0; i < count; i++)
264 tmp = readw(reg);
267 static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
269 int i;
270 int tmp;
272 count = (count + 3) >> 2;
274 for (i = 0; i < count; i++)
275 tmp = readl(reg);
278 /* dm9000_set_io
280 * select the specified set of io routines to use with the
281 * device
284 static void dm9000_set_io(struct board_info *db, int byte_width)
286 /* use the size of the data resource to work out what IO
287 * routines we want to use
290 switch (byte_width) {
291 case 1:
292 db->dumpblk = dm9000_dumpblk_8bit;
293 db->outblk = dm9000_outblk_8bit;
294 db->inblk = dm9000_inblk_8bit;
295 break;
298 case 3:
299 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
300 case 2:
301 db->dumpblk = dm9000_dumpblk_16bit;
302 db->outblk = dm9000_outblk_16bit;
303 db->inblk = dm9000_inblk_16bit;
304 break;
306 case 4:
307 default:
308 db->dumpblk = dm9000_dumpblk_32bit;
309 db->outblk = dm9000_outblk_32bit;
310 db->inblk = dm9000_inblk_32bit;
311 break;
315 static void dm9000_schedule_poll(board_info_t *db)
317 if (db->type == TYPE_DM9000E)
318 schedule_delayed_work(&db->phy_poll, HZ * 2);
321 /* Our watchdog timed out. Called by the networking layer */
322 static void dm9000_timeout(struct net_device *dev)
324 board_info_t *db = (board_info_t *) dev->priv;
325 u8 reg_save;
326 unsigned long flags;
328 /* Save previous register address */
329 reg_save = readb(db->io_addr);
330 spin_lock_irqsave(&db->lock,flags);
332 netif_stop_queue(dev);
333 dm9000_reset(db);
334 dm9000_init_dm9000(dev);
335 /* We can accept TX packets again */
336 dev->trans_start = jiffies;
337 netif_wake_queue(dev);
339 /* Restore previous register address */
340 writeb(reg_save, db->io_addr);
341 spin_unlock_irqrestore(&db->lock,flags);
344 #ifdef CONFIG_NET_POLL_CONTROLLER
346 *Used by netconsole
348 static void dm9000_poll_controller(struct net_device *dev)
350 disable_irq(dev->irq);
351 dm9000_interrupt(dev->irq,dev);
352 enable_irq(dev->irq);
354 #endif
356 static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
358 board_info_t *dm = to_dm9000_board(dev);
360 if (!netif_running(dev))
361 return -EINVAL;
363 return generic_mii_ioctl(&dm->mii, if_mii(req), cmd, NULL);
366 /* ethtool ops */
368 static void dm9000_get_drvinfo(struct net_device *dev,
369 struct ethtool_drvinfo *info)
371 board_info_t *dm = to_dm9000_board(dev);
373 strcpy(info->driver, CARDNAME);
374 strcpy(info->version, DRV_VERSION);
375 strcpy(info->bus_info, to_platform_device(dm->dev)->name);
378 static u32 dm9000_get_msglevel(struct net_device *dev)
380 board_info_t *dm = to_dm9000_board(dev);
382 return dm->msg_enable;
385 static void dm9000_set_msglevel(struct net_device *dev, u32 value)
387 board_info_t *dm = to_dm9000_board(dev);
389 dm->msg_enable = value;
392 static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
394 board_info_t *dm = to_dm9000_board(dev);
396 mii_ethtool_gset(&dm->mii, cmd);
397 return 0;
400 static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
402 board_info_t *dm = to_dm9000_board(dev);
404 return mii_ethtool_sset(&dm->mii, cmd);
407 static int dm9000_nway_reset(struct net_device *dev)
409 board_info_t *dm = to_dm9000_board(dev);
410 return mii_nway_restart(&dm->mii);
413 static u32 dm9000_get_link(struct net_device *dev)
415 board_info_t *dm = to_dm9000_board(dev);
416 return mii_link_ok(&dm->mii);
419 #define DM_EEPROM_MAGIC (0x444D394B)
421 static int dm9000_get_eeprom_len(struct net_device *dev)
423 return 128;
426 static int dm9000_get_eeprom(struct net_device *dev,
427 struct ethtool_eeprom *ee, u8 *data)
429 board_info_t *dm = to_dm9000_board(dev);
430 int offset = ee->offset;
431 int len = ee->len;
432 int i;
434 /* EEPROM access is aligned to two bytes */
436 if ((len & 1) != 0 || (offset & 1) != 0)
437 return -EINVAL;
439 if (dm->flags & DM9000_PLATF_NO_EEPROM)
440 return -ENOENT;
442 ee->magic = DM_EEPROM_MAGIC;
444 for (i = 0; i < len; i += 2)
445 dm9000_read_eeprom(dm, (offset + i) / 2, data + i);
447 return 0;
450 static int dm9000_set_eeprom(struct net_device *dev,
451 struct ethtool_eeprom *ee, u8 *data)
453 board_info_t *dm = to_dm9000_board(dev);
454 int offset = ee->offset;
455 int len = ee->len;
456 int i;
458 /* EEPROM access is aligned to two bytes */
460 if ((len & 1) != 0 || (offset & 1) != 0)
461 return -EINVAL;
463 if (dm->flags & DM9000_PLATF_NO_EEPROM)
464 return -ENOENT;
466 if (ee->magic != DM_EEPROM_MAGIC)
467 return -EINVAL;
469 for (i = 0; i < len; i += 2)
470 dm9000_write_eeprom(dm, (offset + i) / 2, data + i);
472 return 0;
475 static const struct ethtool_ops dm9000_ethtool_ops = {
476 .get_drvinfo = dm9000_get_drvinfo,
477 .get_settings = dm9000_get_settings,
478 .set_settings = dm9000_set_settings,
479 .get_msglevel = dm9000_get_msglevel,
480 .set_msglevel = dm9000_set_msglevel,
481 .nway_reset = dm9000_nway_reset,
482 .get_link = dm9000_get_link,
483 .get_eeprom_len = dm9000_get_eeprom_len,
484 .get_eeprom = dm9000_get_eeprom,
485 .set_eeprom = dm9000_set_eeprom,
488 static void
489 dm9000_poll_work(struct work_struct *w)
491 struct delayed_work *dw = container_of(w, struct delayed_work, work);
492 board_info_t *db = container_of(dw, board_info_t, phy_poll);
494 mii_check_media(&db->mii, netif_msg_link(db), 0);
496 if (netif_running(db->ndev))
497 dm9000_schedule_poll(db);
500 /* dm9000_release_board
502 * release a board, and any mapped resources
505 static void
506 dm9000_release_board(struct platform_device *pdev, struct board_info *db)
508 if (db->data_res == NULL) {
509 if (db->addr_res != NULL)
510 release_mem_region((unsigned long)db->io_addr, 4);
511 return;
514 /* unmap our resources */
516 iounmap(db->io_addr);
517 iounmap(db->io_data);
519 /* release the resources */
521 if (db->data_req != NULL) {
522 release_resource(db->data_req);
523 kfree(db->data_req);
526 if (db->addr_req != NULL) {
527 release_resource(db->addr_req);
528 kfree(db->addr_req);
532 static unsigned char dm9000_type_to_char(enum dm9000_type type)
534 switch (type) {
535 case TYPE_DM9000E: return 'e';
536 case TYPE_DM9000A: return 'a';
537 case TYPE_DM9000B: return 'b';
540 return '?';
543 #define res_size(_r) (((_r)->end - (_r)->start) + 1)
546 * Search DM9000 board, allocate space and register it
548 static int __devinit
549 dm9000_probe(struct platform_device *pdev)
551 struct dm9000_plat_data *pdata = pdev->dev.platform_data;
552 struct board_info *db; /* Point a board information structure */
553 struct net_device *ndev;
554 const unsigned char *mac_src;
555 int ret = 0;
556 int iosize;
557 int i;
558 u32 id_val;
560 /* Init network device */
561 ndev = alloc_etherdev(sizeof (struct board_info));
562 if (!ndev) {
563 dev_err(&pdev->dev, "could not allocate device.\n");
564 return -ENOMEM;
567 SET_NETDEV_DEV(ndev, &pdev->dev);
569 dev_dbg(&pdev->dev, "dm9000_probe()\n");
571 /* setup board info structure */
572 db = (struct board_info *) ndev->priv;
573 memset(db, 0, sizeof (*db));
575 db->dev = &pdev->dev;
576 db->ndev = ndev;
578 spin_lock_init(&db->lock);
579 mutex_init(&db->addr_lock);
581 INIT_DELAYED_WORK(&db->phy_poll, dm9000_poll_work);
584 if (pdev->num_resources < 3) {
585 ret = -ENODEV;
586 goto out;
589 db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
590 db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
591 db->irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
593 if (db->addr_res == NULL || db->data_res == NULL ||
594 db->irq_res == NULL) {
595 dev_err(db->dev, "insufficient resources\n");
596 ret = -ENOENT;
597 goto out;
600 iosize = res_size(db->addr_res);
601 db->addr_req = request_mem_region(db->addr_res->start, iosize,
602 pdev->name);
604 if (db->addr_req == NULL) {
605 dev_err(db->dev, "cannot claim address reg area\n");
606 ret = -EIO;
607 goto out;
610 db->io_addr = ioremap(db->addr_res->start, iosize);
612 if (db->io_addr == NULL) {
613 dev_err(db->dev, "failed to ioremap address reg\n");
614 ret = -EINVAL;
615 goto out;
618 iosize = res_size(db->data_res);
619 db->data_req = request_mem_region(db->data_res->start, iosize,
620 pdev->name);
622 if (db->data_req == NULL) {
623 dev_err(db->dev, "cannot claim data reg area\n");
624 ret = -EIO;
625 goto out;
628 db->io_data = ioremap(db->data_res->start, iosize);
630 if (db->io_data == NULL) {
631 dev_err(db->dev, "failed to ioremap data reg\n");
632 ret = -EINVAL;
633 goto out;
636 /* fill in parameters for net-dev structure */
637 ndev->base_addr = (unsigned long)db->io_addr;
638 ndev->irq = db->irq_res->start;
640 /* ensure at least we have a default set of IO routines */
641 dm9000_set_io(db, iosize);
643 /* check to see if anything is being over-ridden */
644 if (pdata != NULL) {
645 /* check to see if the driver wants to over-ride the
646 * default IO width */
648 if (pdata->flags & DM9000_PLATF_8BITONLY)
649 dm9000_set_io(db, 1);
651 if (pdata->flags & DM9000_PLATF_16BITONLY)
652 dm9000_set_io(db, 2);
654 if (pdata->flags & DM9000_PLATF_32BITONLY)
655 dm9000_set_io(db, 4);
657 /* check to see if there are any IO routine
658 * over-rides */
660 if (pdata->inblk != NULL)
661 db->inblk = pdata->inblk;
663 if (pdata->outblk != NULL)
664 db->outblk = pdata->outblk;
666 if (pdata->dumpblk != NULL)
667 db->dumpblk = pdata->dumpblk;
669 db->flags = pdata->flags;
672 dm9000_reset(db);
674 /* try two times, DM9000 sometimes gets the first read wrong */
675 for (i = 0; i < 8; i++) {
676 id_val = ior(db, DM9000_VIDL);
677 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
678 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
679 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
681 if (id_val == DM9000_ID)
682 break;
683 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
686 if (id_val != DM9000_ID) {
687 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
688 ret = -ENODEV;
689 goto out;
692 /* Identify what type of DM9000 we are working on */
694 id_val = ior(db, DM9000_CHIPR);
695 dev_dbg(db->dev, "dm9000 revision 0x%02x\n", id_val);
697 switch (id_val) {
698 case CHIPR_DM9000A:
699 db->type = TYPE_DM9000A;
700 break;
701 case CHIPR_DM9000B:
702 db->type = TYPE_DM9000B;
703 break;
704 default:
705 dev_dbg(db->dev, "ID %02x => defaulting to DM9000E\n", id_val);
706 db->type = TYPE_DM9000E;
709 /* from this point we assume that we have found a DM9000 */
711 /* driver system function */
712 ether_setup(ndev);
714 ndev->open = &dm9000_open;
715 ndev->hard_start_xmit = &dm9000_start_xmit;
716 ndev->tx_timeout = &dm9000_timeout;
717 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
718 ndev->stop = &dm9000_stop;
719 ndev->set_multicast_list = &dm9000_hash_table;
720 ndev->ethtool_ops = &dm9000_ethtool_ops;
721 ndev->do_ioctl = &dm9000_ioctl;
723 #ifdef CONFIG_NET_POLL_CONTROLLER
724 ndev->poll_controller = &dm9000_poll_controller;
725 #endif
727 db->msg_enable = NETIF_MSG_LINK;
728 db->mii.phy_id_mask = 0x1f;
729 db->mii.reg_num_mask = 0x1f;
730 db->mii.force_media = 0;
731 db->mii.full_duplex = 0;
732 db->mii.dev = ndev;
733 db->mii.mdio_read = dm9000_phy_read;
734 db->mii.mdio_write = dm9000_phy_write;
736 mac_src = "eeprom";
738 /* try reading the node address from the attached EEPROM */
739 for (i = 0; i < 6; i += 2)
740 dm9000_read_eeprom(db, i / 2, ndev->dev_addr+i);
742 if (!is_valid_ether_addr(ndev->dev_addr)) {
743 /* try reading from mac */
745 mac_src = "chip";
746 for (i = 0; i < 6; i++)
747 ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
750 if (!is_valid_ether_addr(ndev->dev_addr))
751 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
752 "set using ifconfig\n", ndev->name);
754 platform_set_drvdata(pdev, ndev);
755 ret = register_netdev(ndev);
757 if (ret == 0) {
758 DECLARE_MAC_BUF(mac);
759 printk(KERN_INFO "%s: dm9000%c at %p,%p IRQ %d MAC: %s (%s)\n",
760 ndev->name, dm9000_type_to_char(db->type),
761 db->io_addr, db->io_data, ndev->irq,
762 print_mac(mac, ndev->dev_addr), mac_src);
764 return 0;
766 out:
767 dev_err(db->dev, "not found (%d).\n", ret);
769 dm9000_release_board(pdev, db);
770 free_netdev(ndev);
772 return ret;
776 * Open the interface.
777 * The interface is opened whenever "ifconfig" actives it.
779 static int
780 dm9000_open(struct net_device *dev)
782 board_info_t *db = (board_info_t *) dev->priv;
783 unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
785 if (netif_msg_ifup(db))
786 dev_dbg(db->dev, "enabling %s\n", dev->name);
788 /* If there is no IRQ type specified, default to something that
789 * may work, and tell the user that this is a problem */
791 if (irqflags == IRQF_TRIGGER_NONE) {
792 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
793 irqflags = DEFAULT_TRIGGER;
796 irqflags |= IRQF_SHARED;
798 if (request_irq(dev->irq, &dm9000_interrupt, irqflags, dev->name, dev))
799 return -EAGAIN;
801 /* Initialize DM9000 board */
802 dm9000_reset(db);
803 dm9000_init_dm9000(dev);
805 /* Init driver variable */
806 db->dbug_cnt = 0;
808 mii_check_media(&db->mii, netif_msg_link(db), 1);
809 netif_start_queue(dev);
811 dm9000_schedule_poll(db);
813 return 0;
817 * Initilize dm9000 board
819 static void
820 dm9000_init_dm9000(struct net_device *dev)
822 board_info_t *db = (board_info_t *) dev->priv;
823 unsigned int imr;
825 dm9000_dbg(db, 1, "entering %s\n", __func__);
827 /* I/O mode */
828 db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
830 /* GPIO0 on pre-activate PHY */
831 iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
832 iow(db, DM9000_GPCR, GPCR_GEP_CNTL); /* Let GPIO0 output */
833 iow(db, DM9000_GPR, 0); /* Enable PHY */
835 if (db->flags & DM9000_PLATF_EXT_PHY)
836 iow(db, DM9000_NCR, NCR_EXT_PHY);
838 /* Program operating register */
839 iow(db, DM9000_TCR, 0); /* TX Polling clear */
840 iow(db, DM9000_BPTR, 0x3f); /* Less 3Kb, 200us */
841 iow(db, DM9000_FCR, 0xff); /* Flow Control */
842 iow(db, DM9000_SMCR, 0); /* Special Mode */
843 /* clear TX status */
844 iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
845 iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
847 /* Set address filter table */
848 dm9000_hash_table(dev);
850 imr = IMR_PAR | IMR_PTM | IMR_PRM;
851 if (db->type != TYPE_DM9000E)
852 imr |= IMR_LNKCHNG;
854 db->imr_all = imr;
856 /* Enable TX/RX interrupt mask */
857 iow(db, DM9000_IMR, imr);
859 /* Init Driver variable */
860 db->tx_pkt_cnt = 0;
861 db->queue_pkt_len = 0;
862 dev->trans_start = 0;
866 * Hardware start transmission.
867 * Send a packet to media from the upper layer.
869 static int
870 dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
872 unsigned long flags;
873 board_info_t *db = (board_info_t *) dev->priv;
875 dm9000_dbg(db, 3, "%s:\n", __func__);
877 if (db->tx_pkt_cnt > 1)
878 return 1;
880 spin_lock_irqsave(&db->lock, flags);
882 /* Move data to DM9000 TX RAM */
883 writeb(DM9000_MWCMD, db->io_addr);
885 (db->outblk)(db->io_data, skb->data, skb->len);
886 dev->stats.tx_bytes += skb->len;
888 db->tx_pkt_cnt++;
889 /* TX control: First packet immediately send, second packet queue */
890 if (db->tx_pkt_cnt == 1) {
891 /* Set TX length to DM9000 */
892 iow(db, DM9000_TXPLL, skb->len);
893 iow(db, DM9000_TXPLH, skb->len >> 8);
895 /* Issue TX polling command */
896 iow(db, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
898 dev->trans_start = jiffies; /* save the time stamp */
899 } else {
900 /* Second packet */
901 db->queue_pkt_len = skb->len;
902 netif_stop_queue(dev);
905 spin_unlock_irqrestore(&db->lock, flags);
907 /* free this SKB */
908 dev_kfree_skb(skb);
910 return 0;
913 static void
914 dm9000_shutdown(struct net_device *dev)
916 board_info_t *db = (board_info_t *) dev->priv;
918 /* RESET device */
919 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
920 iow(db, DM9000_GPR, 0x01); /* Power-Down PHY */
921 iow(db, DM9000_IMR, IMR_PAR); /* Disable all interrupt */
922 iow(db, DM9000_RCR, 0x00); /* Disable RX */
926 * Stop the interface.
927 * The interface is stopped when it is brought.
929 static int
930 dm9000_stop(struct net_device *ndev)
932 board_info_t *db = (board_info_t *) ndev->priv;
934 if (netif_msg_ifdown(db))
935 dev_dbg(db->dev, "shutting down %s\n", ndev->name);
937 cancel_delayed_work_sync(&db->phy_poll);
939 netif_stop_queue(ndev);
940 netif_carrier_off(ndev);
942 /* free interrupt */
943 free_irq(ndev->irq, ndev);
945 dm9000_shutdown(ndev);
947 return 0;
951 * DM9000 interrupt handler
952 * receive the packet to upper layer, free the transmitted packet
955 static void
956 dm9000_tx_done(struct net_device *dev, board_info_t * db)
958 int tx_status = ior(db, DM9000_NSR); /* Got TX status */
960 if (tx_status & (NSR_TX2END | NSR_TX1END)) {
961 /* One packet sent complete */
962 db->tx_pkt_cnt--;
963 dev->stats.tx_packets++;
965 if (netif_msg_tx_done(db))
966 dev_dbg(db->dev, "tx done, NSR %02x\n", tx_status);
968 /* Queue packet check & send */
969 if (db->tx_pkt_cnt > 0) {
970 iow(db, DM9000_TXPLL, db->queue_pkt_len);
971 iow(db, DM9000_TXPLH, db->queue_pkt_len >> 8);
972 iow(db, DM9000_TCR, TCR_TXREQ);
973 dev->trans_start = jiffies;
975 netif_wake_queue(dev);
979 static irqreturn_t
980 dm9000_interrupt(int irq, void *dev_id)
982 struct net_device *dev = dev_id;
983 board_info_t *db = (board_info_t *) dev->priv;
984 int int_status;
985 u8 reg_save;
987 dm9000_dbg(db, 3, "entering %s\n", __func__);
989 /* A real interrupt coming */
991 spin_lock(&db->lock);
993 /* Save previous register address */
994 reg_save = readb(db->io_addr);
996 /* Disable all interrupts */
997 iow(db, DM9000_IMR, IMR_PAR);
999 /* Got DM9000 interrupt status */
1000 int_status = ior(db, DM9000_ISR); /* Got ISR */
1001 iow(db, DM9000_ISR, int_status); /* Clear ISR status */
1003 if (netif_msg_intr(db))
1004 dev_dbg(db->dev, "interrupt status %02x\n", int_status);
1006 /* Received the coming packet */
1007 if (int_status & ISR_PRS)
1008 dm9000_rx(dev);
1010 /* Trnasmit Interrupt check */
1011 if (int_status & ISR_PTS)
1012 dm9000_tx_done(dev, db);
1014 if (db->type != TYPE_DM9000E) {
1015 if (int_status & ISR_LNKCHNG) {
1016 /* fire a link-change request */
1017 schedule_delayed_work(&db->phy_poll, 1);
1021 /* Re-enable interrupt mask */
1022 iow(db, DM9000_IMR, db->imr_all);
1024 /* Restore previous register address */
1025 writeb(reg_save, db->io_addr);
1027 spin_unlock(&db->lock);
1029 return IRQ_HANDLED;
1032 struct dm9000_rxhdr {
1033 u8 RxPktReady;
1034 u8 RxStatus;
1035 __le16 RxLen;
1036 } __attribute__((__packed__));
1039 * Received a packet and pass to upper layer
1041 static void
1042 dm9000_rx(struct net_device *dev)
1044 board_info_t *db = (board_info_t *) dev->priv;
1045 struct dm9000_rxhdr rxhdr;
1046 struct sk_buff *skb;
1047 u8 rxbyte, *rdptr;
1048 bool GoodPacket;
1049 int RxLen;
1051 /* Check packet ready or not */
1052 do {
1053 ior(db, DM9000_MRCMDX); /* Dummy read */
1055 /* Get most updated data */
1056 rxbyte = readb(db->io_data);
1058 /* Status check: this byte must be 0 or 1 */
1059 if (rxbyte > DM9000_PKT_RDY) {
1060 dev_warn(db->dev, "status check fail: %d\n", rxbyte);
1061 iow(db, DM9000_RCR, 0x00); /* Stop Device */
1062 iow(db, DM9000_ISR, IMR_PAR); /* Stop INT request */
1063 return;
1066 if (rxbyte != DM9000_PKT_RDY)
1067 return;
1069 /* A packet ready now & Get status/length */
1070 GoodPacket = true;
1071 writeb(DM9000_MRCMD, db->io_addr);
1073 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
1075 RxLen = le16_to_cpu(rxhdr.RxLen);
1077 if (netif_msg_rx_status(db))
1078 dev_dbg(db->dev, "RX: status %02x, length %04x\n",
1079 rxhdr.RxStatus, RxLen);
1081 /* Packet Status check */
1082 if (RxLen < 0x40) {
1083 GoodPacket = false;
1084 if (netif_msg_rx_err(db))
1085 dev_dbg(db->dev, "RX: Bad Packet (runt)\n");
1088 if (RxLen > DM9000_PKT_MAX) {
1089 dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
1092 if (rxhdr.RxStatus & 0xbf) {
1093 GoodPacket = false;
1094 if (rxhdr.RxStatus & 0x01) {
1095 if (netif_msg_rx_err(db))
1096 dev_dbg(db->dev, "fifo error\n");
1097 dev->stats.rx_fifo_errors++;
1099 if (rxhdr.RxStatus & 0x02) {
1100 if (netif_msg_rx_err(db))
1101 dev_dbg(db->dev, "crc error\n");
1102 dev->stats.rx_crc_errors++;
1104 if (rxhdr.RxStatus & 0x80) {
1105 if (netif_msg_rx_err(db))
1106 dev_dbg(db->dev, "length error\n");
1107 dev->stats.rx_length_errors++;
1111 /* Move data from DM9000 */
1112 if (GoodPacket
1113 && ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
1114 skb_reserve(skb, 2);
1115 rdptr = (u8 *) skb_put(skb, RxLen - 4);
1117 /* Read received packet from RX SRAM */
1119 (db->inblk)(db->io_data, rdptr, RxLen);
1120 dev->stats.rx_bytes += RxLen;
1122 /* Pass to upper layer */
1123 skb->protocol = eth_type_trans(skb, dev);
1124 netif_rx(skb);
1125 dev->stats.rx_packets++;
1127 } else {
1128 /* need to dump the packet's data */
1130 (db->dumpblk)(db->io_data, RxLen);
1132 } while (rxbyte == DM9000_PKT_RDY);
1135 static unsigned int
1136 dm9000_read_locked(board_info_t *db, int reg)
1138 unsigned long flags;
1139 unsigned int ret;
1141 spin_lock_irqsave(&db->lock, flags);
1142 ret = ior(db, reg);
1143 spin_unlock_irqrestore(&db->lock, flags);
1145 return ret;
1148 static int dm9000_wait_eeprom(board_info_t *db)
1150 unsigned int status;
1151 int timeout = 8; /* wait max 8msec */
1153 /* The DM9000 data sheets say we should be able to
1154 * poll the ERRE bit in EPCR to wait for the EEPROM
1155 * operation. From testing several chips, this bit
1156 * does not seem to work.
1158 * We attempt to use the bit, but fall back to the
1159 * timeout (which is why we do not return an error
1160 * on expiry) to say that the EEPROM operation has
1161 * completed.
1164 while (1) {
1165 status = dm9000_read_locked(db, DM9000_EPCR);
1167 if ((status & EPCR_ERRE) == 0)
1168 break;
1170 if (timeout-- < 0) {
1171 dev_dbg(db->dev, "timeout waiting EEPROM\n");
1172 break;
1176 return 0;
1180 * Read a word data from EEPROM
1182 static void
1183 dm9000_read_eeprom(board_info_t *db, int offset, u8 *to)
1185 unsigned long flags;
1187 if (db->flags & DM9000_PLATF_NO_EEPROM) {
1188 to[0] = 0xff;
1189 to[1] = 0xff;
1190 return;
1193 mutex_lock(&db->addr_lock);
1195 spin_lock_irqsave(&db->lock, flags);
1197 iow(db, DM9000_EPAR, offset);
1198 iow(db, DM9000_EPCR, EPCR_ERPRR);
1200 spin_unlock_irqrestore(&db->lock, flags);
1202 dm9000_wait_eeprom(db);
1204 /* delay for at-least 150uS */
1205 msleep(1);
1207 spin_lock_irqsave(&db->lock, flags);
1209 iow(db, DM9000_EPCR, 0x0);
1211 to[0] = ior(db, DM9000_EPDRL);
1212 to[1] = ior(db, DM9000_EPDRH);
1214 spin_unlock_irqrestore(&db->lock, flags);
1216 mutex_unlock(&db->addr_lock);
1220 * Write a word data to SROM
1222 static void
1223 dm9000_write_eeprom(board_info_t *db, int offset, u8 *data)
1225 unsigned long flags;
1227 if (db->flags & DM9000_PLATF_NO_EEPROM)
1228 return;
1230 mutex_lock(&db->addr_lock);
1232 spin_lock_irqsave(&db->lock, flags);
1233 iow(db, DM9000_EPAR, offset);
1234 iow(db, DM9000_EPDRH, data[1]);
1235 iow(db, DM9000_EPDRL, data[0]);
1236 iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
1237 spin_unlock_irqrestore(&db->lock, flags);
1239 dm9000_wait_eeprom(db);
1241 mdelay(1); /* wait at least 150uS to clear */
1243 spin_lock_irqsave(&db->lock, flags);
1244 iow(db, DM9000_EPCR, 0);
1245 spin_unlock_irqrestore(&db->lock, flags);
1247 mutex_unlock(&db->addr_lock);
1251 * Set DM9000 multicast address
1253 static void
1254 dm9000_hash_table(struct net_device *dev)
1256 board_info_t *db = (board_info_t *) dev->priv;
1257 struct dev_mc_list *mcptr = dev->mc_list;
1258 int mc_cnt = dev->mc_count;
1259 int i, oft;
1260 u32 hash_val;
1261 u16 hash_table[4];
1262 u8 rcr = RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN;
1263 unsigned long flags;
1265 dm9000_dbg(db, 1, "entering %s\n", __func__);
1267 spin_lock_irqsave(&db->lock, flags);
1269 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
1270 iow(db, oft, dev->dev_addr[i]);
1272 /* Clear Hash Table */
1273 for (i = 0; i < 4; i++)
1274 hash_table[i] = 0x0;
1276 /* broadcast address */
1277 hash_table[3] = 0x8000;
1279 if (dev->flags & IFF_PROMISC)
1280 rcr |= RCR_PRMSC;
1282 if (dev->flags & IFF_ALLMULTI)
1283 rcr |= RCR_ALL;
1285 /* the multicast address in Hash Table : 64 bits */
1286 for (i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
1287 hash_val = ether_crc_le(6, mcptr->dmi_addr) & 0x3f;
1288 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
1291 /* Write the hash table to MAC MD table */
1292 for (i = 0, oft = DM9000_MAR; i < 4; i++) {
1293 iow(db, oft++, hash_table[i]);
1294 iow(db, oft++, hash_table[i] >> 8);
1297 iow(db, DM9000_RCR, rcr);
1298 spin_unlock_irqrestore(&db->lock, flags);
1303 * Sleep, either by using msleep() or if we are suspending, then
1304 * use mdelay() to sleep.
1306 static void dm9000_msleep(board_info_t *db, unsigned int ms)
1308 if (db->in_suspend)
1309 mdelay(ms);
1310 else
1311 msleep(ms);
1315 * Read a word from phyxcer
1317 static int
1318 dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1320 board_info_t *db = (board_info_t *) dev->priv;
1321 unsigned long flags;
1322 unsigned int reg_save;
1323 int ret;
1325 mutex_lock(&db->addr_lock);
1327 spin_lock_irqsave(&db->lock,flags);
1329 /* Save previous register address */
1330 reg_save = readb(db->io_addr);
1332 /* Fill the phyxcer register into REG_0C */
1333 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1335 iow(db, DM9000_EPCR, 0xc); /* Issue phyxcer read command */
1337 writeb(reg_save, db->io_addr);
1338 spin_unlock_irqrestore(&db->lock,flags);
1340 dm9000_msleep(db, 1); /* Wait read complete */
1342 spin_lock_irqsave(&db->lock,flags);
1343 reg_save = readb(db->io_addr);
1345 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer read command */
1347 /* The read data keeps on REG_0D & REG_0E */
1348 ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1350 /* restore the previous address */
1351 writeb(reg_save, db->io_addr);
1352 spin_unlock_irqrestore(&db->lock,flags);
1354 mutex_unlock(&db->addr_lock);
1356 dm9000_dbg(db, 5, "phy_read[%02x] -> %04x\n", reg, ret);
1357 return ret;
1361 * Write a word to phyxcer
1363 static void
1364 dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg, int value)
1366 board_info_t *db = (board_info_t *) dev->priv;
1367 unsigned long flags;
1368 unsigned long reg_save;
1370 dm9000_dbg(db, 5, "phy_write[%02x] = %04x\n", reg, value);
1371 mutex_lock(&db->addr_lock);
1373 spin_lock_irqsave(&db->lock,flags);
1375 /* Save previous register address */
1376 reg_save = readb(db->io_addr);
1378 /* Fill the phyxcer register into REG_0C */
1379 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1381 /* Fill the written data into REG_0D & REG_0E */
1382 iow(db, DM9000_EPDRL, value);
1383 iow(db, DM9000_EPDRH, value >> 8);
1385 iow(db, DM9000_EPCR, 0xa); /* Issue phyxcer write command */
1387 writeb(reg_save, db->io_addr);
1388 spin_unlock_irqrestore(&db->lock, flags);
1390 dm9000_msleep(db, 1); /* Wait write complete */
1392 spin_lock_irqsave(&db->lock,flags);
1393 reg_save = readb(db->io_addr);
1395 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer write command */
1397 /* restore the previous address */
1398 writeb(reg_save, db->io_addr);
1400 spin_unlock_irqrestore(&db->lock, flags);
1401 mutex_unlock(&db->addr_lock);
1404 static int
1405 dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
1407 struct net_device *ndev = platform_get_drvdata(dev);
1408 board_info_t *db;
1410 if (ndev) {
1411 db = (board_info_t *) ndev->priv;
1412 db->in_suspend = 1;
1414 if (netif_running(ndev)) {
1415 netif_device_detach(ndev);
1416 dm9000_shutdown(ndev);
1419 return 0;
1422 static int
1423 dm9000_drv_resume(struct platform_device *dev)
1425 struct net_device *ndev = platform_get_drvdata(dev);
1426 board_info_t *db = (board_info_t *) ndev->priv;
1428 if (ndev) {
1430 if (netif_running(ndev)) {
1431 dm9000_reset(db);
1432 dm9000_init_dm9000(ndev);
1434 netif_device_attach(ndev);
1437 db->in_suspend = 0;
1439 return 0;
1442 static int __devexit
1443 dm9000_drv_remove(struct platform_device *pdev)
1445 struct net_device *ndev = platform_get_drvdata(pdev);
1447 platform_set_drvdata(pdev, NULL);
1449 unregister_netdev(ndev);
1450 dm9000_release_board(pdev, (board_info_t *) ndev->priv);
1451 free_netdev(ndev); /* free device structure */
1453 dev_dbg(&pdev->dev, "released and freed device\n");
1454 return 0;
1457 static struct platform_driver dm9000_driver = {
1458 .driver = {
1459 .name = "dm9000",
1460 .owner = THIS_MODULE,
1462 .probe = dm9000_probe,
1463 .remove = __devexit_p(dm9000_drv_remove),
1464 .suspend = dm9000_drv_suspend,
1465 .resume = dm9000_drv_resume,
1468 static int __init
1469 dm9000_init(void)
1471 printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
1473 return platform_driver_register(&dm9000_driver); /* search board and register */
1476 static void __exit
1477 dm9000_cleanup(void)
1479 platform_driver_unregister(&dm9000_driver);
1482 module_init(dm9000_init);
1483 module_exit(dm9000_cleanup);
1485 MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1486 MODULE_DESCRIPTION("Davicom DM9000 network driver");
1487 MODULE_LICENSE("GPL");
1488 MODULE_ALIAS("platform:dm9000");