blob: 2e0add0748897f87d7a339f7ccf86c4bfcc67ae4 [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>
Ben Dooks7da99852008-02-05 00:02:06 +000066#include <linux/ethtool.h>
Sascha Hauera1365272005-05-05 15:14:15 -070067#include <linux/dm9000.h>
68#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010069#include <linux/platform_device.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010070#include <linux/irq.h>
Sascha Hauera1365272005-05-05 15:14:15 -070071
72#include <asm/delay.h>
73#include <asm/irq.h>
74#include <asm/io.h>
75
76#include "dm9000.h"
77
78/* Board/System/Debug information/definition ---------------- */
79
80#define DM9000_PHY 0x40 /* PHY address 0x01 */
81
Sascha Hauera1365272005-05-05 15:14:15 -070082#define CARDNAME "dm9000"
83#define PFX CARDNAME ": "
Ben Dooks7da99852008-02-05 00:02:06 +000084#define DRV_VERSION "1.30"
Sascha Hauera1365272005-05-05 15:14:15 -070085
Alex Landauf40d24d2007-07-12 12:11:48 +080086#ifdef CONFIG_BLACKFIN
87#define readsb insb
88#define readsw insw
89#define readsl insl
90#define writesb outsb
91#define writesw outsw
92#define writesl outsl
Ben Dooks1a5f1c42008-02-05 00:02:04 +000093#define DEFAULT_TRIGGER IRQF_TRIGGER_HIGH
Alex Landauf40d24d2007-07-12 12:11:48 +080094#else
Ben Dooks1a5f1c42008-02-05 00:02:04 +000095#define DEFAULT_TRIGGER (0)
Alex Landauf40d24d2007-07-12 12:11:48 +080096#endif
97
Sascha Hauera1365272005-05-05 15:14:15 -070098/*
99 * Transmit timeout, default 5 seconds.
100 */
101static int watchdog = 5000;
102module_param(watchdog, int, 0400);
103MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
104
105/* Structure/enum declaration ------------------------------- */
106typedef struct board_info {
107
108 void __iomem *io_addr; /* Register I/O base address */
109 void __iomem *io_data; /* Data I/O address */
110 u16 irq; /* IRQ */
111
112 u16 tx_pkt_cnt;
113 u16 queue_pkt_len;
114 u16 queue_start_addr;
115 u16 dbug_cnt;
116 u8 io_mode; /* 0:word, 2:byte */
117 u8 phy_addr;
Ben Dooks33ba5092008-02-05 00:02:01 +0000118 unsigned int flags;
Ben Dooks321f69a2008-02-05 00:02:08 +0000119 unsigned int in_suspend :1;
Sascha Hauera1365272005-05-05 15:14:15 -0700120
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000121 int debug_level;
122
Sascha Hauera1365272005-05-05 15:14:15 -0700123 void (*inblk)(void __iomem *port, void *data, int length);
124 void (*outblk)(void __iomem *port, void *data, int length);
125 void (*dumpblk)(void __iomem *port, int length);
126
Ben Dooksa76836f2008-02-05 00:02:02 +0000127 struct device *dev; /* parent device */
128
Sascha Hauera1365272005-05-05 15:14:15 -0700129 struct resource *addr_res; /* resources found */
130 struct resource *data_res;
131 struct resource *addr_req; /* resources requested */
132 struct resource *data_req;
133 struct resource *irq_res;
134
Sascha Hauera1365272005-05-05 15:14:15 -0700135 unsigned char srom[128];
136 spinlock_t lock;
137
138 struct mii_if_info mii;
139 u32 msg_enable;
140} board_info_t;
141
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000142/* debug code */
143
144#define dm9000_dbg(db, lev, msg...) do { \
145 if ((lev) < CONFIG_DM9000_DEBUGLEVEL && \
146 (lev) < db->debug_level) { \
147 dev_dbg(db->dev, msg); \
148 } \
149} while (0)
150
Ben Dooks7da99852008-02-05 00:02:06 +0000151static inline board_info_t *to_dm9000_board(struct net_device *dev)
152{
153 return dev->priv;
154}
155
Sascha Hauera1365272005-05-05 15:14:15 -0700156/* function declaration ------------------------------------- */
Russell King3ae5eae2005-11-09 22:32:44 +0000157static int dm9000_probe(struct platform_device *);
Sascha Hauera1365272005-05-05 15:14:15 -0700158static int dm9000_open(struct net_device *);
159static int dm9000_start_xmit(struct sk_buff *, struct net_device *);
160static int dm9000_stop(struct net_device *);
Sascha Hauera1365272005-05-05 15:14:15 -0700161
Sascha Hauera1365272005-05-05 15:14:15 -0700162static void dm9000_init_dm9000(struct net_device *);
163
David Howells7d12e782006-10-05 14:55:46 +0100164static irqreturn_t dm9000_interrupt(int, void *);
Sascha Hauera1365272005-05-05 15:14:15 -0700165
166static int dm9000_phy_read(struct net_device *dev, int phyaddr_unsused, int reg);
167static void dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg,
168 int value);
169static u16 read_srom_word(board_info_t *, int);
170static void dm9000_rx(struct net_device *);
171static void dm9000_hash_table(struct net_device *);
172
173//#define DM9000_PROGRAM_EEPROM
174#ifdef DM9000_PROGRAM_EEPROM
175static void program_eeprom(board_info_t * db);
176#endif
177/* DM9000 network board routine ---------------------------- */
178
179static void
180dm9000_reset(board_info_t * db)
181{
Ben Dooksa76836f2008-02-05 00:02:02 +0000182 dev_dbg(db->dev, "resetting device\n");
183
Sascha Hauera1365272005-05-05 15:14:15 -0700184 /* RESET device */
185 writeb(DM9000_NCR, db->io_addr);
186 udelay(200);
187 writeb(NCR_RST, db->io_data);
188 udelay(200);
189}
190
191/*
192 * Read a byte from I/O port
193 */
194static u8
195ior(board_info_t * db, int reg)
196{
197 writeb(reg, db->io_addr);
198 return readb(db->io_data);
199}
200
201/*
202 * Write a byte to I/O port
203 */
204
205static void
206iow(board_info_t * db, int reg, int value)
207{
208 writeb(reg, db->io_addr);
209 writeb(value, db->io_data);
210}
211
212/* routines for sending block to chip */
213
214static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
215{
216 writesb(reg, data, count);
217}
218
219static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
220{
221 writesw(reg, data, (count+1) >> 1);
222}
223
224static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
225{
226 writesl(reg, data, (count+3) >> 2);
227}
228
229/* input block from chip to memory */
230
231static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
232{
Sascha Hauer5f6b5512005-06-20 15:32:51 -0700233 readsb(reg, data, count);
Sascha Hauera1365272005-05-05 15:14:15 -0700234}
235
236
237static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
238{
239 readsw(reg, data, (count+1) >> 1);
240}
241
242static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
243{
244 readsl(reg, data, (count+3) >> 2);
245}
246
247/* dump block from chip to null */
248
249static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
250{
251 int i;
252 int tmp;
253
254 for (i = 0; i < count; i++)
255 tmp = readb(reg);
256}
257
258static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
259{
260 int i;
261 int tmp;
262
263 count = (count + 1) >> 1;
264
265 for (i = 0; i < count; i++)
266 tmp = readw(reg);
267}
268
269static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
270{
271 int i;
272 int tmp;
273
274 count = (count + 3) >> 2;
275
276 for (i = 0; i < count; i++)
277 tmp = readl(reg);
278}
279
280/* dm9000_set_io
281 *
282 * select the specified set of io routines to use with the
283 * device
284 */
285
286static void dm9000_set_io(struct board_info *db, int byte_width)
287{
288 /* use the size of the data resource to work out what IO
289 * routines we want to use
290 */
291
292 switch (byte_width) {
293 case 1:
294 db->dumpblk = dm9000_dumpblk_8bit;
295 db->outblk = dm9000_outblk_8bit;
296 db->inblk = dm9000_inblk_8bit;
297 break;
298
Sascha Hauera1365272005-05-05 15:14:15 -0700299
300 case 3:
Ben Dooksa76836f2008-02-05 00:02:02 +0000301 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
302 case 2:
Sascha Hauera1365272005-05-05 15:14:15 -0700303 db->dumpblk = dm9000_dumpblk_16bit;
304 db->outblk = dm9000_outblk_16bit;
305 db->inblk = dm9000_inblk_16bit;
306 break;
307
308 case 4:
309 default:
310 db->dumpblk = dm9000_dumpblk_32bit;
311 db->outblk = dm9000_outblk_32bit;
312 db->inblk = dm9000_inblk_32bit;
313 break;
314 }
315}
316
317
318/* Our watchdog timed out. Called by the networking layer */
319static void dm9000_timeout(struct net_device *dev)
320{
321 board_info_t *db = (board_info_t *) dev->priv;
322 u8 reg_save;
323 unsigned long flags;
324
325 /* Save previous register address */
326 reg_save = readb(db->io_addr);
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100327 spin_lock_irqsave(&db->lock,flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700328
329 netif_stop_queue(dev);
330 dm9000_reset(db);
331 dm9000_init_dm9000(dev);
332 /* We can accept TX packets again */
333 dev->trans_start = jiffies;
334 netif_wake_queue(dev);
335
336 /* Restore previous register address */
337 writeb(reg_save, db->io_addr);
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100338 spin_unlock_irqrestore(&db->lock,flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700339}
340
Kevin Hao2fd0e332006-08-14 23:00:15 -0700341#ifdef CONFIG_NET_POLL_CONTROLLER
342/*
343 *Used by netconsole
344 */
345static void dm9000_poll_controller(struct net_device *dev)
346{
347 disable_irq(dev->irq);
Al Viro28431142006-10-08 15:00:12 +0100348 dm9000_interrupt(dev->irq,dev);
Kevin Hao2fd0e332006-08-14 23:00:15 -0700349 enable_irq(dev->irq);
350}
351#endif
Sascha Hauera1365272005-05-05 15:14:15 -0700352
Ben Dooks7da99852008-02-05 00:02:06 +0000353/* ethtool ops */
354
355static void dm9000_get_drvinfo(struct net_device *dev,
356 struct ethtool_drvinfo *info)
357{
358 board_info_t *dm = to_dm9000_board(dev);
359
360 strcpy(info->driver, CARDNAME);
361 strcpy(info->version, DRV_VERSION);
362 strcpy(info->bus_info, to_platform_device(dm->dev)->name);
363}
364
365static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
366{
367 board_info_t *dm = to_dm9000_board(dev);
368 unsigned long flags;
369
370 spin_lock_irqsave(&dm->lock, flags);
371 mii_ethtool_gset(&dm->mii, cmd);
372 spin_lock_irqsave(&dm->lock, flags);
373
374 return 0;
375}
376
377static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
378{
379 board_info_t *dm = to_dm9000_board(dev);
380 unsigned long flags;
381 int rc;
382
383 spin_lock_irqsave(&dm->lock, flags);
384 rc = mii_ethtool_sset(&dm->mii, cmd);
385 spin_lock_irqsave(&dm->lock, flags);
386
387 return rc;
388}
389
390static int dm9000_nway_reset(struct net_device *dev)
391{
392 board_info_t *dm = to_dm9000_board(dev);
393 return mii_nway_restart(&dm->mii);
394}
395
396static u32 dm9000_get_link(struct net_device *dev)
397{
398 board_info_t *dm = to_dm9000_board(dev);
399 return mii_link_ok(&dm->mii);
400}
401
402static const struct ethtool_ops dm9000_ethtool_ops = {
403 .get_drvinfo = dm9000_get_drvinfo,
404 .get_settings = dm9000_get_settings,
405 .set_settings = dm9000_set_settings,
406 .nway_reset = dm9000_nway_reset,
407 .get_link = dm9000_get_link,
408};
409
410
Sascha Hauera1365272005-05-05 15:14:15 -0700411/* dm9000_release_board
412 *
413 * release a board, and any mapped resources
414 */
415
416static void
417dm9000_release_board(struct platform_device *pdev, struct board_info *db)
418{
419 if (db->data_res == NULL) {
420 if (db->addr_res != NULL)
421 release_mem_region((unsigned long)db->io_addr, 4);
422 return;
423 }
424
425 /* unmap our resources */
426
427 iounmap(db->io_addr);
428 iounmap(db->io_data);
429
430 /* release the resources */
431
432 if (db->data_req != NULL) {
433 release_resource(db->data_req);
434 kfree(db->data_req);
435 }
436
Dirk Opfer51985482006-09-06 19:53:32 +0200437 if (db->addr_req != NULL) {
438 release_resource(db->addr_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700439 kfree(db->addr_req);
440 }
441}
442
443#define res_size(_r) (((_r)->end - (_r)->start) + 1)
444
445/*
446 * Search DM9000 board, allocate space and register it
447 */
448static int
Russell King3ae5eae2005-11-09 22:32:44 +0000449dm9000_probe(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -0700450{
Sascha Hauera1365272005-05-05 15:14:15 -0700451 struct dm9000_plat_data *pdata = pdev->dev.platform_data;
452 struct board_info *db; /* Point a board information structure */
453 struct net_device *ndev;
454 unsigned long base;
455 int ret = 0;
456 int iosize;
457 int i;
458 u32 id_val;
459
Sascha Hauera1365272005-05-05 15:14:15 -0700460 /* Init network device */
461 ndev = alloc_etherdev(sizeof (struct board_info));
462 if (!ndev) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000463 dev_err(&pdev->dev, "could not allocate device.\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700464 return -ENOMEM;
465 }
466
Russell King3ae5eae2005-11-09 22:32:44 +0000467 SET_NETDEV_DEV(ndev, &pdev->dev);
Sascha Hauera1365272005-05-05 15:14:15 -0700468
Ben Dooksa76836f2008-02-05 00:02:02 +0000469 dev_dbg(&pdev->dev, "dm9000_probe()");
Sascha Hauera1365272005-05-05 15:14:15 -0700470
471 /* setup board info structure */
472 db = (struct board_info *) ndev->priv;
473 memset(db, 0, sizeof (*db));
474
Ben Dooksa76836f2008-02-05 00:02:02 +0000475 db->dev = &pdev->dev;
476
Ben Dooks9ef9ac52005-07-23 17:25:18 +0100477 spin_lock_init(&db->lock);
478
Sascha Hauera1365272005-05-05 15:14:15 -0700479 if (pdev->num_resources < 2) {
480 ret = -ENODEV;
481 goto out;
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100482 } else if (pdev->num_resources == 2) {
Sascha Hauera1365272005-05-05 15:14:15 -0700483 base = pdev->resource[0].start;
484
485 if (!request_mem_region(base, 4, ndev->name)) {
486 ret = -EBUSY;
487 goto out;
488 }
489
490 ndev->base_addr = base;
491 ndev->irq = pdev->resource[1].start;
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100492 db->io_addr = (void __iomem *)base;
493 db->io_data = (void __iomem *)(base + 4);
Sascha Hauera1365272005-05-05 15:14:15 -0700494
Alex Landauf40d24d2007-07-12 12:11:48 +0800495 /* ensure at least we have a default set of IO routines */
496 dm9000_set_io(db, 2);
497
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100498 } else {
Sascha Hauera1365272005-05-05 15:14:15 -0700499 db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
500 db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
501 db->irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
502
Ben Dooksb4ed03f2006-06-13 23:47:19 +0100503 if (db->addr_res == NULL || db->data_res == NULL ||
504 db->irq_res == NULL) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000505 dev_err(db->dev, "insufficient resources\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700506 ret = -ENOENT;
507 goto out;
508 }
509
510 i = res_size(db->addr_res);
511 db->addr_req = request_mem_region(db->addr_res->start, i,
512 pdev->name);
513
514 if (db->addr_req == NULL) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000515 dev_err(db->dev, "cannot claim address reg area\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700516 ret = -EIO;
517 goto out;
518 }
519
520 db->io_addr = ioremap(db->addr_res->start, i);
521
522 if (db->io_addr == NULL) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000523 dev_err(db->dev, "failed to ioremap address reg\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700524 ret = -EINVAL;
525 goto out;
526 }
527
528 iosize = res_size(db->data_res);
529 db->data_req = request_mem_region(db->data_res->start, iosize,
530 pdev->name);
531
532 if (db->data_req == NULL) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000533 dev_err(db->dev, "cannot claim data reg area\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700534 ret = -EIO;
535 goto out;
536 }
537
538 db->io_data = ioremap(db->data_res->start, iosize);
539
540 if (db->io_data == NULL) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000541 dev_err(db->dev,"failed to ioremap data reg\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700542 ret = -EINVAL;
543 goto out;
544 }
545
546 /* fill in parameters for net-dev structure */
547
548 ndev->base_addr = (unsigned long)db->io_addr;
549 ndev->irq = db->irq_res->start;
550
551 /* ensure at least we have a default set of IO routines */
552 dm9000_set_io(db, iosize);
Sascha Hauera1365272005-05-05 15:14:15 -0700553 }
554
555 /* check to see if anything is being over-ridden */
556 if (pdata != NULL) {
557 /* check to see if the driver wants to over-ride the
558 * default IO width */
559
560 if (pdata->flags & DM9000_PLATF_8BITONLY)
561 dm9000_set_io(db, 1);
562
563 if (pdata->flags & DM9000_PLATF_16BITONLY)
564 dm9000_set_io(db, 2);
565
566 if (pdata->flags & DM9000_PLATF_32BITONLY)
567 dm9000_set_io(db, 4);
568
569 /* check to see if there are any IO routine
570 * over-rides */
571
572 if (pdata->inblk != NULL)
573 db->inblk = pdata->inblk;
574
575 if (pdata->outblk != NULL)
576 db->outblk = pdata->outblk;
577
578 if (pdata->dumpblk != NULL)
579 db->dumpblk = pdata->dumpblk;
Ben Dooks33ba5092008-02-05 00:02:01 +0000580
581 db->flags = pdata->flags;
Sascha Hauera1365272005-05-05 15:14:15 -0700582 }
583
584 dm9000_reset(db);
585
586 /* try two times, DM9000 sometimes gets the first read wrong */
587 for (i = 0; i < 2; i++) {
588 id_val = ior(db, DM9000_VIDL);
589 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
590 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
591 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
592
593 if (id_val == DM9000_ID)
594 break;
Ben Dooksa76836f2008-02-05 00:02:02 +0000595 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
Sascha Hauera1365272005-05-05 15:14:15 -0700596 }
597
598 if (id_val != DM9000_ID) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000599 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
Mike Rapoport418d6f82007-10-18 09:23:11 +0200600 ret = -ENODEV;
601 goto out;
Sascha Hauera1365272005-05-05 15:14:15 -0700602 }
603
604 /* from this point we assume that we have found a DM9000 */
605
606 /* driver system function */
607 ether_setup(ndev);
608
609 ndev->open = &dm9000_open;
610 ndev->hard_start_xmit = &dm9000_start_xmit;
611 ndev->tx_timeout = &dm9000_timeout;
612 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
613 ndev->stop = &dm9000_stop;
Sascha Hauera1365272005-05-05 15:14:15 -0700614 ndev->set_multicast_list = &dm9000_hash_table;
Ben Dooks7da99852008-02-05 00:02:06 +0000615 ndev->ethtool_ops = &dm9000_ethtool_ops;
616
Kevin Hao2fd0e332006-08-14 23:00:15 -0700617#ifdef CONFIG_NET_POLL_CONTROLLER
618 ndev->poll_controller = &dm9000_poll_controller;
619#endif
Sascha Hauera1365272005-05-05 15:14:15 -0700620
621#ifdef DM9000_PROGRAM_EEPROM
622 program_eeprom(db);
623#endif
624 db->msg_enable = NETIF_MSG_LINK;
625 db->mii.phy_id_mask = 0x1f;
626 db->mii.reg_num_mask = 0x1f;
627 db->mii.force_media = 0;
628 db->mii.full_duplex = 0;
629 db->mii.dev = ndev;
630 db->mii.mdio_read = dm9000_phy_read;
631 db->mii.mdio_write = dm9000_phy_write;
632
633 /* Read SROM content */
634 for (i = 0; i < 64; i++)
635 ((u16 *) db->srom)[i] = read_srom_word(db, i);
636
637 /* Set Node Address */
638 for (i = 0; i < 6; i++)
639 ndev->dev_addr[i] = db->srom[i];
640
Ben Dooks5b55dda2006-06-13 23:50:15 +0100641 if (!is_valid_ether_addr(ndev->dev_addr)) {
642 /* try reading from mac */
643
644 for (i = 0; i < 6; i++)
645 ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
646 }
647
Sascha Hauera1365272005-05-05 15:14:15 -0700648 if (!is_valid_ether_addr(ndev->dev_addr))
Ben Dooksa76836f2008-02-05 00:02:02 +0000649 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
650 "set using ifconfig\n", ndev->name);
Sascha Hauera1365272005-05-05 15:14:15 -0700651
Russell King3ae5eae2005-11-09 22:32:44 +0000652 platform_set_drvdata(pdev, ndev);
Sascha Hauera1365272005-05-05 15:14:15 -0700653 ret = register_netdev(ndev);
654
655 if (ret == 0) {
Joe Perches0795af52007-10-03 17:59:30 -0700656 DECLARE_MAC_BUF(mac);
657 printk("%s: dm9000 at %p,%p IRQ %d MAC: %s\n",
658 ndev->name, db->io_addr, db->io_data, ndev->irq,
659 print_mac(mac, ndev->dev_addr));
Sascha Hauera1365272005-05-05 15:14:15 -0700660 }
661 return 0;
662
Mike Rapoport418d6f82007-10-18 09:23:11 +0200663out:
Ben Dooksa76836f2008-02-05 00:02:02 +0000664 dev_err(db->dev, "not found (%d).\n", ret);
Sascha Hauera1365272005-05-05 15:14:15 -0700665
666 dm9000_release_board(pdev, db);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +0000667 free_netdev(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -0700668
669 return ret;
670}
671
672/*
673 * Open the interface.
674 * The interface is opened whenever "ifconfig" actives it.
675 */
676static int
677dm9000_open(struct net_device *dev)
678{
679 board_info_t *db = (board_info_t *) dev->priv;
Ben Dooks1a5f1c42008-02-05 00:02:04 +0000680 unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
Sascha Hauera1365272005-05-05 15:14:15 -0700681
Ben Dooksa76836f2008-02-05 00:02:02 +0000682 dev_dbg(db->dev, "entering %s\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -0700683
Ben Dooks1a5f1c42008-02-05 00:02:04 +0000684 /* If there is no IRQ type specified, default to something that
685 * may work, and tell the user that this is a problem */
686
687 if (irqflags == IRQF_TRIGGER_NONE) {
688 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
689 irqflags = DEFAULT_TRIGGER;
690 }
691
692 irqflags |= IRQF_SHARED;
693
694 if (request_irq(dev->irq, &dm9000_interrupt, irqflags, dev->name, dev))
Sascha Hauera1365272005-05-05 15:14:15 -0700695 return -EAGAIN;
696
697 /* Initialize DM9000 board */
698 dm9000_reset(db);
699 dm9000_init_dm9000(dev);
700
701 /* Init driver variable */
702 db->dbug_cnt = 0;
703
Sascha Hauera1365272005-05-05 15:14:15 -0700704 mii_check_media(&db->mii, netif_msg_link(db), 1);
705 netif_start_queue(dev);
706
707 return 0;
708}
709
710/*
711 * Initilize dm9000 board
712 */
713static void
714dm9000_init_dm9000(struct net_device *dev)
715{
716 board_info_t *db = (board_info_t *) dev->priv;
717
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000718 dm9000_dbg(db, 1, "entering %s\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -0700719
720 /* I/O mode */
721 db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
722
723 /* GPIO0 on pre-activate PHY */
724 iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
725 iow(db, DM9000_GPCR, GPCR_GEP_CNTL); /* Let GPIO0 output */
726 iow(db, DM9000_GPR, 0); /* Enable PHY */
727
Ben Dooks33ba5092008-02-05 00:02:01 +0000728 if (db->flags & DM9000_PLATF_EXT_PHY)
729 iow(db, DM9000_NCR, NCR_EXT_PHY);
730
Sascha Hauera1365272005-05-05 15:14:15 -0700731 /* Program operating register */
732 iow(db, DM9000_TCR, 0); /* TX Polling clear */
733 iow(db, DM9000_BPTR, 0x3f); /* Less 3Kb, 200us */
734 iow(db, DM9000_FCR, 0xff); /* Flow Control */
735 iow(db, DM9000_SMCR, 0); /* Special Mode */
736 /* clear TX status */
737 iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
738 iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
739
740 /* Set address filter table */
741 dm9000_hash_table(dev);
742
743 /* Activate DM9000 */
744 iow(db, DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);
745 /* Enable TX/RX interrupt mask */
746 iow(db, DM9000_IMR, IMR_PAR | IMR_PTM | IMR_PRM);
747
748 /* Init Driver variable */
749 db->tx_pkt_cnt = 0;
750 db->queue_pkt_len = 0;
751 dev->trans_start = 0;
Sascha Hauera1365272005-05-05 15:14:15 -0700752}
753
754/*
755 * Hardware start transmission.
756 * Send a packet to media from the upper layer.
757 */
758static int
759dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
760{
Florian Westphalc46ac942007-08-21 01:33:42 +0200761 unsigned long flags;
Sascha Hauera1365272005-05-05 15:14:15 -0700762 board_info_t *db = (board_info_t *) dev->priv;
763
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000764 dm9000_dbg(db, 3, "%s:\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -0700765
766 if (db->tx_pkt_cnt > 1)
767 return 1;
768
Florian Westphalc46ac942007-08-21 01:33:42 +0200769 spin_lock_irqsave(&db->lock, flags);
Sascha Hauera1365272005-05-05 15:14:15 -0700770
771 /* Move data to DM9000 TX RAM */
772 writeb(DM9000_MWCMD, db->io_addr);
773
774 (db->outblk)(db->io_data, skb->data, skb->len);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700775 dev->stats.tx_bytes += skb->len;
Sascha Hauera1365272005-05-05 15:14:15 -0700776
Florian Westphalc46ac942007-08-21 01:33:42 +0200777 db->tx_pkt_cnt++;
Sascha Hauera1365272005-05-05 15:14:15 -0700778 /* TX control: First packet immediately send, second packet queue */
Florian Westphalc46ac942007-08-21 01:33:42 +0200779 if (db->tx_pkt_cnt == 1) {
Sascha Hauera1365272005-05-05 15:14:15 -0700780 /* Set TX length to DM9000 */
781 iow(db, DM9000_TXPLL, skb->len & 0xff);
782 iow(db, DM9000_TXPLH, (skb->len >> 8) & 0xff);
783
784 /* Issue TX polling command */
785 iow(db, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
786
787 dev->trans_start = jiffies; /* save the time stamp */
Sascha Hauera1365272005-05-05 15:14:15 -0700788 } else {
789 /* Second packet */
Sascha Hauera1365272005-05-05 15:14:15 -0700790 db->queue_pkt_len = skb->len;
Florian Westphalc46ac942007-08-21 01:33:42 +0200791 netif_stop_queue(dev);
Sascha Hauera1365272005-05-05 15:14:15 -0700792 }
793
Florian Westphalc46ac942007-08-21 01:33:42 +0200794 spin_unlock_irqrestore(&db->lock, flags);
795
Sascha Hauera1365272005-05-05 15:14:15 -0700796 /* free this SKB */
797 dev_kfree_skb(skb);
798
Sascha Hauera1365272005-05-05 15:14:15 -0700799 return 0;
800}
801
802static void
803dm9000_shutdown(struct net_device *dev)
804{
805 board_info_t *db = (board_info_t *) dev->priv;
806
807 /* RESET device */
808 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
809 iow(db, DM9000_GPR, 0x01); /* Power-Down PHY */
810 iow(db, DM9000_IMR, IMR_PAR); /* Disable all interrupt */
811 iow(db, DM9000_RCR, 0x00); /* Disable RX */
812}
813
814/*
815 * Stop the interface.
816 * The interface is stopped when it is brought.
817 */
818static int
819dm9000_stop(struct net_device *ndev)
820{
821 board_info_t *db = (board_info_t *) ndev->priv;
822
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000823 dm9000_dbg(db, 1, "entering %s\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -0700824
Sascha Hauera1365272005-05-05 15:14:15 -0700825 netif_stop_queue(ndev);
826 netif_carrier_off(ndev);
827
828 /* free interrupt */
829 free_irq(ndev->irq, ndev);
830
831 dm9000_shutdown(ndev);
832
833 return 0;
834}
835
836/*
837 * DM9000 interrupt handler
838 * receive the packet to upper layer, free the transmitted packet
839 */
840
Ben Dooks5d22a312006-06-14 00:09:17 +0100841static void
Sascha Hauera1365272005-05-05 15:14:15 -0700842dm9000_tx_done(struct net_device *dev, board_info_t * db)
843{
844 int tx_status = ior(db, DM9000_NSR); /* Got TX status */
845
846 if (tx_status & (NSR_TX2END | NSR_TX1END)) {
847 /* One packet sent complete */
848 db->tx_pkt_cnt--;
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700849 dev->stats.tx_packets++;
Sascha Hauera1365272005-05-05 15:14:15 -0700850
851 /* Queue packet check & send */
852 if (db->tx_pkt_cnt > 0) {
853 iow(db, DM9000_TXPLL, db->queue_pkt_len & 0xff);
854 iow(db, DM9000_TXPLH, (db->queue_pkt_len >> 8) & 0xff);
855 iow(db, DM9000_TCR, TCR_TXREQ);
856 dev->trans_start = jiffies;
857 }
858 netif_wake_queue(dev);
859 }
860}
861
862static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100863dm9000_interrupt(int irq, void *dev_id)
Sascha Hauera1365272005-05-05 15:14:15 -0700864{
865 struct net_device *dev = dev_id;
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000866 board_info_t *db = (board_info_t *) dev->priv;
Sascha Hauera1365272005-05-05 15:14:15 -0700867 int int_status;
868 u8 reg_save;
869
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000870 dm9000_dbg(db, 3, "entering %s\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -0700871
872 /* A real interrupt coming */
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000873
Sascha Hauera1365272005-05-05 15:14:15 -0700874 spin_lock(&db->lock);
875
876 /* Save previous register address */
877 reg_save = readb(db->io_addr);
878
879 /* Disable all interrupts */
880 iow(db, DM9000_IMR, IMR_PAR);
881
882 /* Got DM9000 interrupt status */
883 int_status = ior(db, DM9000_ISR); /* Got ISR */
884 iow(db, DM9000_ISR, int_status); /* Clear ISR status */
885
886 /* Received the coming packet */
887 if (int_status & ISR_PRS)
888 dm9000_rx(dev);
889
890 /* Trnasmit Interrupt check */
891 if (int_status & ISR_PTS)
892 dm9000_tx_done(dev, db);
893
894 /* Re-enable interrupt mask */
895 iow(db, DM9000_IMR, IMR_PAR | IMR_PTM | IMR_PRM);
896
897 /* Restore previous register address */
898 writeb(reg_save, db->io_addr);
899
900 spin_unlock(&db->lock);
901
902 return IRQ_HANDLED;
903}
904
Sascha Hauera1365272005-05-05 15:14:15 -0700905struct dm9000_rxhdr {
Ben Dooks93116572008-02-05 00:02:00 +0000906 u8 RxPktReady;
907 u8 RxStatus;
Sascha Hauera1365272005-05-05 15:14:15 -0700908 u16 RxLen;
909} __attribute__((__packed__));
910
911/*
912 * Received a packet and pass to upper layer
913 */
914static void
915dm9000_rx(struct net_device *dev)
916{
917 board_info_t *db = (board_info_t *) dev->priv;
918 struct dm9000_rxhdr rxhdr;
919 struct sk_buff *skb;
920 u8 rxbyte, *rdptr;
Richard Knutsson6478fac2007-05-01 18:43:27 +0200921 bool GoodPacket;
Sascha Hauera1365272005-05-05 15:14:15 -0700922 int RxLen;
923
924 /* Check packet ready or not */
925 do {
926 ior(db, DM9000_MRCMDX); /* Dummy read */
927
928 /* Get most updated data */
929 rxbyte = readb(db->io_data);
930
931 /* Status check: this byte must be 0 or 1 */
932 if (rxbyte > DM9000_PKT_RDY) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000933 dev_warn(db->dev, "status check fail: %d\n", rxbyte);
Sascha Hauera1365272005-05-05 15:14:15 -0700934 iow(db, DM9000_RCR, 0x00); /* Stop Device */
935 iow(db, DM9000_ISR, IMR_PAR); /* Stop INT request */
936 return;
937 }
938
939 if (rxbyte != DM9000_PKT_RDY)
940 return;
941
942 /* A packet ready now & Get status/length */
Richard Knutsson6478fac2007-05-01 18:43:27 +0200943 GoodPacket = true;
Sascha Hauera1365272005-05-05 15:14:15 -0700944 writeb(DM9000_MRCMD, db->io_addr);
945
946 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
947
Ben Dooks93116572008-02-05 00:02:00 +0000948 RxLen = le16_to_cpu(rxhdr.RxLen);
Sascha Hauera1365272005-05-05 15:14:15 -0700949
950 /* Packet Status check */
951 if (RxLen < 0x40) {
Richard Knutsson6478fac2007-05-01 18:43:27 +0200952 GoodPacket = false;
Ben Dooksa76836f2008-02-05 00:02:02 +0000953 dev_dbg(db->dev, "Bad Packet received (runt)\n");
Sascha Hauera1365272005-05-05 15:14:15 -0700954 }
955
956 if (RxLen > DM9000_PKT_MAX) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000957 dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
Sascha Hauera1365272005-05-05 15:14:15 -0700958 }
959
Ben Dooks93116572008-02-05 00:02:00 +0000960 if (rxhdr.RxStatus & 0xbf) {
Richard Knutsson6478fac2007-05-01 18:43:27 +0200961 GoodPacket = false;
Ben Dooks93116572008-02-05 00:02:00 +0000962 if (rxhdr.RxStatus & 0x01) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000963 dev_dbg(db->dev, "fifo error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700964 dev->stats.rx_fifo_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700965 }
Ben Dooks93116572008-02-05 00:02:00 +0000966 if (rxhdr.RxStatus & 0x02) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000967 dev_dbg(db->dev, "crc error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700968 dev->stats.rx_crc_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700969 }
Ben Dooks93116572008-02-05 00:02:00 +0000970 if (rxhdr.RxStatus & 0x80) {
Ben Dooksa76836f2008-02-05 00:02:02 +0000971 dev_dbg(db->dev, "length error\n");
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700972 dev->stats.rx_length_errors++;
Sascha Hauera1365272005-05-05 15:14:15 -0700973 }
974 }
975
976 /* Move data from DM9000 */
977 if (GoodPacket
978 && ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
Sascha Hauera1365272005-05-05 15:14:15 -0700979 skb_reserve(skb, 2);
980 rdptr = (u8 *) skb_put(skb, RxLen - 4);
981
982 /* Read received packet from RX SRAM */
983
984 (db->inblk)(db->io_data, rdptr, RxLen);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700985 dev->stats.rx_bytes += RxLen;
Sascha Hauera1365272005-05-05 15:14:15 -0700986
987 /* Pass to upper layer */
988 skb->protocol = eth_type_trans(skb, dev);
989 netif_rx(skb);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700990 dev->stats.rx_packets++;
Sascha Hauera1365272005-05-05 15:14:15 -0700991
992 } else {
993 /* need to dump the packet's data */
994
995 (db->dumpblk)(db->io_data, RxLen);
996 }
997 } while (rxbyte == DM9000_PKT_RDY);
998}
999
1000/*
1001 * Read a word data from SROM
1002 */
1003static u16
1004read_srom_word(board_info_t * db, int offset)
1005{
1006 iow(db, DM9000_EPAR, offset);
1007 iow(db, DM9000_EPCR, EPCR_ERPRR);
1008 mdelay(8); /* according to the datasheet 200us should be enough,
1009 but it doesn't work */
1010 iow(db, DM9000_EPCR, 0x0);
1011 return (ior(db, DM9000_EPDRL) + (ior(db, DM9000_EPDRH) << 8));
1012}
1013
1014#ifdef DM9000_PROGRAM_EEPROM
1015/*
1016 * Write a word data to SROM
1017 */
1018static void
1019write_srom_word(board_info_t * db, int offset, u16 val)
1020{
1021 iow(db, DM9000_EPAR, offset);
1022 iow(db, DM9000_EPDRH, ((val >> 8) & 0xff));
1023 iow(db, DM9000_EPDRL, (val & 0xff));
1024 iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
1025 mdelay(8); /* same shit */
1026 iow(db, DM9000_EPCR, 0);
1027}
1028
1029/*
1030 * Only for development:
1031 * Here we write static data to the eeprom in case
1032 * we don't have valid content on a new board
1033 */
1034static void
1035program_eeprom(board_info_t * db)
1036{
1037 u16 eeprom[] = { 0x0c00, 0x007f, 0x1300, /* MAC Address */
1038 0x0000, /* Autoload: accept nothing */
1039 0x0a46, 0x9000, /* Vendor / Product ID */
1040 0x0000, /* pin control */
1041 0x0000,
1042 }; /* Wake-up mode control */
1043 int i;
1044 for (i = 0; i < 8; i++)
1045 write_srom_word(db, i, eeprom[i]);
1046}
1047#endif
1048
1049
1050/*
1051 * Calculate the CRC valude of the Rx packet
1052 * flag = 1 : return the reverse CRC (for the received packet CRC)
1053 * 0 : return the normal CRC (for Hash Table index)
1054 */
1055
1056static unsigned long
1057cal_CRC(unsigned char *Data, unsigned int Len, u8 flag)
1058{
1059
1060 u32 crc = ether_crc_le(Len, Data);
1061
1062 if (flag)
1063 return ~crc;
1064
1065 return crc;
1066}
1067
1068/*
1069 * Set DM9000 multicast address
1070 */
1071static void
1072dm9000_hash_table(struct net_device *dev)
1073{
1074 board_info_t *db = (board_info_t *) dev->priv;
1075 struct dev_mc_list *mcptr = dev->mc_list;
1076 int mc_cnt = dev->mc_count;
1077 u32 hash_val;
1078 u16 i, oft, hash_table[4];
1079 unsigned long flags;
1080
Ben Dooks5b2b4ff2008-02-05 00:02:03 +00001081 dm9000_dbg(db, 1, "entering %s\n", __func__);
Sascha Hauera1365272005-05-05 15:14:15 -07001082
1083 spin_lock_irqsave(&db->lock,flags);
1084
1085 for (i = 0, oft = 0x10; i < 6; i++, oft++)
1086 iow(db, oft, dev->dev_addr[i]);
1087
1088 /* Clear Hash Table */
1089 for (i = 0; i < 4; i++)
1090 hash_table[i] = 0x0;
1091
1092 /* broadcast address */
1093 hash_table[3] = 0x8000;
1094
1095 /* the multicast address in Hash Table : 64 bits */
1096 for (i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
1097 hash_val = cal_CRC((char *) mcptr->dmi_addr, 6, 0) & 0x3f;
1098 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
1099 }
1100
1101 /* Write the hash table to MAC MD table */
1102 for (i = 0, oft = 0x16; i < 4; i++) {
1103 iow(db, oft++, hash_table[i] & 0xff);
1104 iow(db, oft++, (hash_table[i] >> 8) & 0xff);
1105 }
1106
1107 spin_unlock_irqrestore(&db->lock,flags);
1108}
1109
1110
1111/*
Ben Dooks321f69a2008-02-05 00:02:08 +00001112 * Sleep, either by using msleep() or if we are suspending, then
1113 * use mdelay() to sleep.
1114 */
1115static void dm9000_msleep(board_info_t *db, unsigned int ms)
1116{
1117 if (db->in_suspend)
1118 mdelay(ms);
1119 else
1120 msleep(ms);
1121}
1122
1123/*
Sascha Hauera1365272005-05-05 15:14:15 -07001124 * Read a word from phyxcer
1125 */
1126static int
1127dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1128{
1129 board_info_t *db = (board_info_t *) dev->priv;
1130 unsigned long flags;
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001131 unsigned int reg_save;
Sascha Hauera1365272005-05-05 15:14:15 -07001132 int ret;
1133
1134 spin_lock_irqsave(&db->lock,flags);
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001135
1136 /* Save previous register address */
1137 reg_save = readb(db->io_addr);
1138
Sascha Hauera1365272005-05-05 15:14:15 -07001139 /* Fill the phyxcer register into REG_0C */
1140 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1141
1142 iow(db, DM9000_EPCR, 0xc); /* Issue phyxcer read command */
Ben Dooks89c8b0e2008-02-05 00:02:07 +00001143
1144 writeb(reg_save, db->io_addr);
1145 spin_unlock_irqrestore(&db->lock,flags);
1146
Ben Dooks321f69a2008-02-05 00:02:08 +00001147 dm9000_msleep(db, 1); /* Wait read complete */
Ben Dooks89c8b0e2008-02-05 00:02:07 +00001148
1149 spin_lock_irqsave(&db->lock,flags);
1150 reg_save = readb(db->io_addr);
1151
Sascha Hauera1365272005-05-05 15:14:15 -07001152 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer read command */
1153
1154 /* The read data keeps on REG_0D & REG_0E */
1155 ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1156
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001157 /* restore the previous address */
1158 writeb(reg_save, db->io_addr);
Sascha Hauera1365272005-05-05 15:14:15 -07001159 spin_unlock_irqrestore(&db->lock,flags);
1160
1161 return ret;
1162}
1163
1164/*
1165 * Write a word to phyxcer
1166 */
1167static void
1168dm9000_phy_write(struct net_device *dev, int phyaddr_unused, int reg, int value)
1169{
1170 board_info_t *db = (board_info_t *) dev->priv;
1171 unsigned long flags;
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001172 unsigned long reg_save;
Sascha Hauera1365272005-05-05 15:14:15 -07001173
1174 spin_lock_irqsave(&db->lock,flags);
1175
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001176 /* Save previous register address */
1177 reg_save = readb(db->io_addr);
1178
Sascha Hauera1365272005-05-05 15:14:15 -07001179 /* Fill the phyxcer register into REG_0C */
1180 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1181
1182 /* Fill the written data into REG_0D & REG_0E */
1183 iow(db, DM9000_EPDRL, (value & 0xff));
1184 iow(db, DM9000_EPDRH, ((value >> 8) & 0xff));
1185
1186 iow(db, DM9000_EPCR, 0xa); /* Issue phyxcer write command */
Ben Dooks89c8b0e2008-02-05 00:02:07 +00001187
1188 writeb(reg_save, db->io_addr);
1189 spin_unlock_irqrestore(&db->lock,flags);
1190
Ben Dooks321f69a2008-02-05 00:02:08 +00001191 dm9000_msleep(db, 1); /* Wait write complete */
Ben Dooks89c8b0e2008-02-05 00:02:07 +00001192
1193 spin_lock_irqsave(&db->lock,flags);
1194 reg_save = readb(db->io_addr);
1195
Sascha Hauera1365272005-05-05 15:14:15 -07001196 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer write command */
1197
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001198 /* restore the previous address */
1199 writeb(reg_save, db->io_addr);
1200
Sascha Hauera1365272005-05-05 15:14:15 -07001201 spin_unlock_irqrestore(&db->lock,flags);
1202}
1203
1204static int
Russell King3ae5eae2005-11-09 22:32:44 +00001205dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
Sascha Hauera1365272005-05-05 15:14:15 -07001206{
Russell King3ae5eae2005-11-09 22:32:44 +00001207 struct net_device *ndev = platform_get_drvdata(dev);
Ben Dooks321f69a2008-02-05 00:02:08 +00001208 board_info_t *db;
Sascha Hauera1365272005-05-05 15:14:15 -07001209
Russell King9480e302005-10-28 09:52:56 -07001210 if (ndev) {
Ben Dooks321f69a2008-02-05 00:02:08 +00001211 db = (board_info_t *) ndev->priv;
1212 db->in_suspend = 1;
1213
Sascha Hauera1365272005-05-05 15:14:15 -07001214 if (netif_running(ndev)) {
1215 netif_device_detach(ndev);
1216 dm9000_shutdown(ndev);
1217 }
1218 }
1219 return 0;
1220}
1221
1222static int
Russell King3ae5eae2005-11-09 22:32:44 +00001223dm9000_drv_resume(struct platform_device *dev)
Sascha Hauera1365272005-05-05 15:14:15 -07001224{
Russell King3ae5eae2005-11-09 22:32:44 +00001225 struct net_device *ndev = platform_get_drvdata(dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001226 board_info_t *db = (board_info_t *) ndev->priv;
1227
Russell King9480e302005-10-28 09:52:56 -07001228 if (ndev) {
Sascha Hauera1365272005-05-05 15:14:15 -07001229
1230 if (netif_running(ndev)) {
1231 dm9000_reset(db);
1232 dm9000_init_dm9000(ndev);
1233
1234 netif_device_attach(ndev);
1235 }
Ben Dooks321f69a2008-02-05 00:02:08 +00001236
1237 db->in_suspend = 0;
Sascha Hauera1365272005-05-05 15:14:15 -07001238 }
1239 return 0;
1240}
1241
1242static int
Russell King3ae5eae2005-11-09 22:32:44 +00001243dm9000_drv_remove(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001244{
Russell King3ae5eae2005-11-09 22:32:44 +00001245 struct net_device *ndev = platform_get_drvdata(pdev);
Sascha Hauera1365272005-05-05 15:14:15 -07001246
Russell King3ae5eae2005-11-09 22:32:44 +00001247 platform_set_drvdata(pdev, NULL);
Sascha Hauera1365272005-05-05 15:14:15 -07001248
1249 unregister_netdev(ndev);
1250 dm9000_release_board(pdev, (board_info_t *) ndev->priv);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001251 free_netdev(ndev); /* free device structure */
Sascha Hauera1365272005-05-05 15:14:15 -07001252
Ben Dooksa76836f2008-02-05 00:02:02 +00001253 dev_dbg(&pdev->dev, "released and freed device\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001254 return 0;
1255}
1256
Russell King3ae5eae2005-11-09 22:32:44 +00001257static struct platform_driver dm9000_driver = {
Ben Dooks5d22a312006-06-14 00:09:17 +01001258 .driver = {
1259 .name = "dm9000",
1260 .owner = THIS_MODULE,
1261 },
Sascha Hauera1365272005-05-05 15:14:15 -07001262 .probe = dm9000_probe,
1263 .remove = dm9000_drv_remove,
1264 .suspend = dm9000_drv_suspend,
1265 .resume = dm9000_drv_resume,
1266};
1267
1268static int __init
1269dm9000_init(void)
1270{
Ben Dooks7da99852008-02-05 00:02:06 +00001271 printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
Ben Dooks2ae2d772005-07-23 17:29:38 +01001272
Russell King3ae5eae2005-11-09 22:32:44 +00001273 return platform_driver_register(&dm9000_driver); /* search board and register */
Sascha Hauera1365272005-05-05 15:14:15 -07001274}
1275
1276static void __exit
1277dm9000_cleanup(void)
1278{
Russell King3ae5eae2005-11-09 22:32:44 +00001279 platform_driver_unregister(&dm9000_driver);
Sascha Hauera1365272005-05-05 15:14:15 -07001280}
1281
1282module_init(dm9000_init);
1283module_exit(dm9000_cleanup);
1284
1285MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1286MODULE_DESCRIPTION("Davicom DM9000 network driver");
1287MODULE_LICENSE("GPL");