blob: 679c291107f563d88ddd2a8ca30258807e4f8078 [file] [log] [blame]
Sascha Hauera1365272005-05-05 15:14:15 -07001/*
Ben Dooks41c340f2008-02-05 00:02:15 +00002 * Davicom DM9000 Fast Ethernet driver for Linux.
Sascha Hauera1365272005-05-05 15:14:15 -07003 * Copyright (C) 1997 Sten Wang
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
Ben Dooks41c340f2008-02-05 00:02:15 +000015 * (C) Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.
Sascha Hauera1365272005-05-05 15:14:15 -070016 *
Ben Dooks41c340f2008-02-05 00:02:15 +000017 * Additional updates, Copyright:
18 * Ben Dooks <ben@simtec.co.uk>
19 * Sascha Hauer <s.hauer@pengutronix.de>
Sascha Hauera1365272005-05-05 15:14:15 -070020 */
21
22#include <linux/module.h>
23#include <linux/ioport.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/init.h>
27#include <linux/skbuff.h>
Sascha Hauera1365272005-05-05 15:14:15 -070028#include <linux/spinlock.h>
29#include <linux/crc32.h>
30#include <linux/mii.h>
Ben Dooks7da99852008-02-05 00:02:06 +000031#include <linux/ethtool.h>
Sascha Hauera1365272005-05-05 15:14:15 -070032#include <linux/dm9000.h>
33#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010034#include <linux/platform_device.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010035#include <linux/irq.h>
Sascha Hauera1365272005-05-05 15:14:15 -070036
37#include <asm/delay.h>
38#include <asm/irq.h>
39#include <asm/io.h>
40
41#include "dm9000.h"
42
43/* Board/System/Debug information/definition ---------------- */
44
45#define DM9000_PHY 0x40 /* PHY address 0x01 */
46
Ben Dooks59eae1f2008-06-24 22:16:01 +010047#define CARDNAME "dm9000"
48#define DRV_VERSION "1.31"
Sascha Hauera1365272005-05-05 15:14:15 -070049
Alex Landauf40d24d2007-07-12 12:11:48 +080050#ifdef CONFIG_BLACKFIN
51#define readsb insb
52#define readsw insw
53#define readsl insl
54#define writesb outsb
55#define writesw outsw
56#define writesl outsl
Ben Dooks1a5f1c42008-02-05 00:02:04 +000057#define DEFAULT_TRIGGER IRQF_TRIGGER_HIGH
Alex Landauf40d24d2007-07-12 12:11:48 +080058#else
Ben Dooks1a5f1c42008-02-05 00:02:04 +000059#define DEFAULT_TRIGGER (0)
Alex Landauf40d24d2007-07-12 12:11:48 +080060#endif
61
Sascha Hauera1365272005-05-05 15:14:15 -070062/*
63 * Transmit timeout, default 5 seconds.
64 */
65static int watchdog = 5000;
66module_param(watchdog, int, 0400);
67MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
68
Ben Dooks9a2f0372008-02-05 00:02:10 +000069/* DM9000 register address locking.
70 *
71 * The DM9000 uses an address register to control where data written
72 * to the data register goes. This means that the address register
73 * must be preserved over interrupts or similar calls.
74 *
75 * During interrupt and other critical calls, a spinlock is used to
76 * protect the system, but the calls themselves save the address
77 * in the address register in case they are interrupting another
78 * access to the device.
79 *
80 * For general accesses a lock is provided so that calls which are
81 * allowed to sleep are serialised so that the address register does
82 * not need to be saved. This lock also serves to serialise access
83 * to the EEPROM and PHY access registers which are shared between
84 * these two devices.
85 */
86
Ben Dooks6d406b32008-06-24 22:15:59 +010087/* The driver supports the original DM9000E, and now the two newer
88 * devices, DM9000A and DM9000B.
89 */
90
91enum dm9000_type {
92 TYPE_DM9000E, /* original DM9000 */
93 TYPE_DM9000A,
94 TYPE_DM9000B
95};
96
Sascha Hauera1365272005-05-05 15:14:15 -070097/* Structure/enum declaration ------------------------------- */
98typedef struct board_info {
99
Ben Dooks59eae1f2008-06-24 22:16:01 +0100100 void __iomem *io_addr; /* Register I/O base address */
101 void __iomem *io_data; /* Data I/O address */
102 u16 irq; /* IRQ */
Sascha Hauera1365272005-05-05 15:14:15 -0700103
Ben Dooks59eae1f2008-06-24 22:16:01 +0100104 u16 tx_pkt_cnt;
105 u16 queue_pkt_len;
106 u16 queue_start_addr;
107 u16 dbug_cnt;
108 u8 io_mode; /* 0:word, 2:byte */
109 u8 phy_addr;
110 u8 imr_all;
111
112 unsigned int flags;
113 unsigned int in_suspend :1;
114 int debug_level;
Sascha Hauera1365272005-05-05 15:14:15 -0700115
Ben Dooks6d406b32008-06-24 22:15:59 +0100116 enum dm9000_type type;
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000117
Sascha Hauera1365272005-05-05 15:14:15 -0700118 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);
121
Ben Dooksa76836f2008-02-05 00:02:02 +0000122 struct device *dev; /* parent device */
123
Sascha Hauera1365272005-05-05 15:14:15 -0700124 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;
129
Ben Dooks9a2f0372008-02-05 00:02:10 +0000130 struct mutex addr_lock; /* phy and eeprom access lock */
131
Ben Dooks8f5bf5f22008-05-08 11:36:42 +0100132 struct delayed_work phy_poll;
133 struct net_device *ndev;
134
Ben Dooks59eae1f2008-06-24 22:16:01 +0100135 spinlock_t lock;
Sascha Hauera1365272005-05-05 15:14:15 -0700136
137 struct mii_if_info mii;
Ben Dooks59eae1f2008-06-24 22:16:01 +0100138 u32 msg_enable;
Sascha Hauera1365272005-05-05 15:14:15 -0700139} board_info_t;
140
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000141/* debug code */
142
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); \
147 } \
148} while (0)
149
Ben Dooks7da99852008-02-05 00:02:06 +0000150static inline board_info_t *to_dm9000_board(struct net_device *dev)
151{
152 return dev->priv;
153}
154
Sascha Hauera1365272005-05-05 15:14:15 -0700155/* DM9000 network board routine ---------------------------- */
156
157static void
158dm9000_reset(board_info_t * db)
159{
Ben Dooksa76836f2008-02-05 00:02:02 +0000160 dev_dbg(db->dev, "resetting device\n");
161
Sascha Hauera1365272005-05-05 15:14:15 -0700162 /* RESET device */
163 writeb(DM9000_NCR, db->io_addr);
164 udelay(200);
165 writeb(NCR_RST, db->io_data);
166 udelay(200);
167}
168
169/*
170 * Read a byte from I/O port
171 */
172static u8
173ior(board_info_t * db, int reg)
174{
175 writeb(reg, db->io_addr);
176 return readb(db->io_data);
177}
178
179/*
180 * Write a byte to I/O port
181 */
182
183static void
184iow(board_info_t * db, int reg, int value)
185{
186 writeb(reg, db->io_addr);
187 writeb(value, db->io_data);
188}
189
190/* routines for sending block to chip */
191
192static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
193{
194 writesb(reg, data, count);
195}
196
197static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
198{
199 writesw(reg, data, (count+1) >> 1);
200}
201
202static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
203{
204 writesl(reg, data, (count+3) >> 2);
205}
206
207/* input block from chip to memory */
208
209static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
210{
Sascha Hauer5f6b5512005-06-20 15:32:51 -0700211 readsb(reg, data, count);
Sascha Hauera1365272005-05-05 15:14:15 -0700212}
213
214
215static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
216{
217 readsw(reg, data, (count+1) >> 1);
218}
219
220static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
221{
222 readsl(reg, data, (count+3) >> 2);
223}
224
225/* dump block from chip to null */
226
227static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
228{
229 int i;
230 int tmp;
231
232 for (i = 0; i < count; i++)
233 tmp = readb(reg);
234}
235
236static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
237{
238 int i;
239 int tmp;
240
241 count = (count + 1) >> 1;
242
243 for (i = 0; i < count; i++)
244 tmp = readw(reg);
245}
246
247static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
248{
249 int i;
250 int tmp;
251
252 count = (count + 3) >> 2;
253
254 for (i = 0; i < count; i++)
255 tmp = readl(reg);
256}
257
258/* dm9000_set_io
259 *
260 * select the specified set of io routines to use with the
261 * device
262 */
263
264static void dm9000_set_io(struct board_info *db, int byte_width)
265{
266 /* use the size of the data resource to work out what IO
267 * routines we want to use
268 */
269
270 switch (byte_width) {
271 case 1:
272 db->dumpblk = dm9000_dumpblk_8bit;
273 db->outblk = dm9000_outblk_8bit;
274 db->inblk = dm9000_inblk_8bit;
275 break;
276
Sascha Hauera1365272005-05-05 15:14:15 -0700277
278 case 3:
Ben Dooksa76836f2008-02-05 00:02:02 +0000279 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
280 case 2:
Sascha Hauera1365272005-05-05 15:14:15 -0700281 db->dumpblk = dm9000_dumpblk_16bit;
282 db->outblk = dm9000_outblk_16bit;
283 db->inblk = dm9000_inblk_16bit;
284 break;
285
286 case 4:
287 default:
288 db->dumpblk = dm9000_dumpblk_32bit;
289 db->outblk = dm9000_outblk_32bit;
290 db->inblk = dm9000_inblk_32bit;
291 break;
292 }
293}
294
Ben Dooks8f5bf5f22008-05-08 11:36:42 +0100295static void dm9000_schedule_poll(board_info_t *db)
296{
Ben Dooks6d406b32008-06-24 22:15:59 +0100297 if (db->type == TYPE_DM9000E)
298 schedule_delayed_work(&db->phy_poll, HZ * 2);
Ben Dooks8f5bf5f22008-05-08 11:36:42 +0100299}
Sascha Hauera1365272005-05-05 15:14:15 -0700300
Ben Dooksf42d8ae2008-02-05 00:02:21 +0000301static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
302{
303 board_info_t *dm = to_dm9000_board(dev);
304
305 if (!netif_running(dev))
306 return -EINVAL;
307
308 return generic_mii_ioctl(&dm->mii, if_mii(req), cmd, NULL);
309}
310
Ben Dooksf8d79e72008-06-24 22:16:02 +0100311static unsigned int
312dm9000_read_locked(board_info_t *db, int reg)
313{
314 unsigned long flags;
315 unsigned int ret;
316
317 spin_lock_irqsave(&db->lock, flags);
318 ret = ior(db, reg);
319 spin_unlock_irqrestore(&db->lock, flags);
320
321 return ret;
322}
323
324static int dm9000_wait_eeprom(board_info_t *db)
325{
326 unsigned int status;
327 int timeout = 8; /* wait max 8msec */
328
329 /* The DM9000 data sheets say we should be able to
330 * poll the ERRE bit in EPCR to wait for the EEPROM
331 * operation. From testing several chips, this bit
332 * does not seem to work.
333 *
334 * We attempt to use the bit, but fall back to the
335 * timeout (which is why we do not return an error
336 * on expiry) to say that the EEPROM operation has
337 * completed.
338 */
339
340 while (1) {
341 status = dm9000_read_locked(db, DM9000_EPCR);
342
343 if ((status & EPCR_ERRE) == 0)
344 break;
345
346 if (timeout-- < 0) {
347 dev_dbg(db->dev, "timeout waiting EEPROM\n");
348 break;
349 }
350 }
351
352 return 0;
353}
354
355/*
356 * Read a word data from EEPROM
357 */
358static void
359dm9000_read_eeprom(board_info_t *db, int offset, u8 *to)
360{
361 unsigned long flags;
362
363 if (db->flags & DM9000_PLATF_NO_EEPROM) {
364 to[0] = 0xff;
365 to[1] = 0xff;
366 return;
367 }
368
369 mutex_lock(&db->addr_lock);
370
371 spin_lock_irqsave(&db->lock, flags);
372
373 iow(db, DM9000_EPAR, offset);
374 iow(db, DM9000_EPCR, EPCR_ERPRR);
375
376 spin_unlock_irqrestore(&db->lock, flags);
377
378 dm9000_wait_eeprom(db);
379
380 /* delay for at-least 150uS */
381 msleep(1);
382
383 spin_lock_irqsave(&db->lock, flags);
384
385 iow(db, DM9000_EPCR, 0x0);
386
387 to[0] = ior(db, DM9000_EPDRL);
388 to[1] = ior(db, DM9000_EPDRH);
389
390 spin_unlock_irqrestore(&db->lock, flags);
391
392 mutex_unlock(&db->addr_lock);
393}
394
395/*
396 * Write a word data to SROM
397 */
398static void
399dm9000_write_eeprom(board_info_t *db, int offset, u8 *data)
400{
401 unsigned long flags;
402
403 if (db->flags & DM9000_PLATF_NO_EEPROM)
404 return;
405
406 mutex_lock(&db->addr_lock);
407
408 spin_lock_irqsave(&db->lock, flags);
409 iow(db, DM9000_EPAR, offset);
410 iow(db, DM9000_EPDRH, data[1]);
411 iow(db, DM9000_EPDRL, data[0]);
412 iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
413 spin_unlock_irqrestore(&db->lock, flags);
414
415 dm9000_wait_eeprom(db);
416
417 mdelay(1); /* wait at least 150uS to clear */
418
419 spin_lock_irqsave(&db->lock, flags);
420 iow(db, DM9000_EPCR, 0);
421 spin_unlock_irqrestore(&db->lock, flags);
422
423 mutex_unlock(&db->addr_lock);
424}
425
Ben Dooks7da99852008-02-05 00:02:06 +0000426/* ethtool ops */
427
428static void dm9000_get_drvinfo(struct net_device *dev,
429 struct ethtool_drvinfo *info)
430{
431 board_info_t *dm = to_dm9000_board(dev);
432
433 strcpy(info->driver, CARDNAME);
434 strcpy(info->version, DRV_VERSION);
435 strcpy(info->bus_info, to_platform_device(dm->dev)->name);
436}
437
Ben Dookse662ee02008-02-05 00:02:12 +0000438static u32 dm9000_get_msglevel(struct net_device *dev)
439{
440 board_info_t *dm = to_dm9000_board(dev);
441
442 return dm->msg_enable;
443}
444
445static void dm9000_set_msglevel(struct net_device *dev, u32 value)
446{
447 board_info_t *dm = to_dm9000_board(dev);
448
449 dm->msg_enable = value;
450}
451
Ben Dooks7da99852008-02-05 00:02:06 +0000452static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
453{
454 board_info_t *dm = to_dm9000_board(dev);
Ben Dooks7da99852008-02-05 00:02:06 +0000455
Ben Dooks7da99852008-02-05 00:02:06 +0000456 mii_ethtool_gset(&dm->mii, cmd);
Ben Dooks7da99852008-02-05 00:02:06 +0000457 return 0;
458}
459
460static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
461{
462 board_info_t *dm = to_dm9000_board(dev);
Ben Dooks7da99852008-02-05 00:02:06 +0000463
Ben Dooks9a2f0372008-02-05 00:02:10 +0000464 return mii_ethtool_sset(&dm->mii, cmd);
Ben Dooks7da99852008-02-05 00:02:06 +0000465}
466
467static int dm9000_nway_reset(struct net_device *dev)
468{
469 board_info_t *dm = to_dm9000_board(dev);
470 return mii_nway_restart(&dm->mii);
471}
472
473static u32 dm9000_get_link(struct net_device *dev)
474{
475 board_info_t *dm = to_dm9000_board(dev);
476 return mii_link_ok(&dm->mii);
477}
478
Ben Dooks29d52e52008-02-05 00:02:11 +0000479#define DM_EEPROM_MAGIC (0x444D394B)
480
481static int dm9000_get_eeprom_len(struct net_device *dev)
482{
483 return 128;
484}
485
486static int dm9000_get_eeprom(struct net_device *dev,
487 struct ethtool_eeprom *ee, u8 *data)
488{
489 board_info_t *dm = to_dm9000_board(dev);
490 int offset = ee->offset;
491 int len = ee->len;
492 int i;
493
494 /* EEPROM access is aligned to two bytes */
495
496 if ((len & 1) != 0 || (offset & 1) != 0)
497 return -EINVAL;
498
Ben Dooksbb44fb702008-02-05 00:02:20 +0000499 if (dm->flags & DM9000_PLATF_NO_EEPROM)
500 return -ENOENT;
501
Ben Dooks29d52e52008-02-05 00:02:11 +0000502 ee->magic = DM_EEPROM_MAGIC;
503
504 for (i = 0; i < len; i += 2)
505 dm9000_read_eeprom(dm, (offset + i) / 2, data + i);
506
507 return 0;
508}
509
510static int dm9000_set_eeprom(struct net_device *dev,
511 struct ethtool_eeprom *ee, u8 *data)
512{
513 board_info_t *dm = to_dm9000_board(dev);
514 int offset = ee->offset;
515 int len = ee->len;
516 int i;
517
518 /* EEPROM access is aligned to two bytes */
519
520 if ((len & 1) != 0 || (offset & 1) != 0)
521 return -EINVAL;
522
Ben Dooksbb44fb702008-02-05 00:02:20 +0000523 if (dm->flags & DM9000_PLATF_NO_EEPROM)
524 return -ENOENT;
525
Ben Dooks29d52e52008-02-05 00:02:11 +0000526 if (ee->magic != DM_EEPROM_MAGIC)
527 return -EINVAL;
528
529 for (i = 0; i < len; i += 2)
530 dm9000_write_eeprom(dm, (offset + i) / 2, data + i);
531
532 return 0;
533}
534
Ben Dooks7da99852008-02-05 00:02:06 +0000535static const struct ethtool_ops dm9000_ethtool_ops = {
536 .get_drvinfo = dm9000_get_drvinfo,
537 .get_settings = dm9000_get_settings,
538 .set_settings = dm9000_set_settings,
Ben Dookse662ee02008-02-05 00:02:12 +0000539 .get_msglevel = dm9000_get_msglevel,
540 .set_msglevel = dm9000_set_msglevel,
Ben Dooks7da99852008-02-05 00:02:06 +0000541 .nway_reset = dm9000_nway_reset,
542 .get_link = dm9000_get_link,
Ben Dooks29d52e52008-02-05 00:02:11 +0000543 .get_eeprom_len = dm9000_get_eeprom_len,
544 .get_eeprom = dm9000_get_eeprom,
545 .set_eeprom = dm9000_set_eeprom,
Ben Dooks7da99852008-02-05 00:02:06 +0000546};
547
Ben Dooks8f5bf5f22008-05-08 11:36:42 +0100548static void
549dm9000_poll_work(struct work_struct *w)
550{
551 struct delayed_work *dw = container_of(w, struct delayed_work, work);
552 board_info_t *db = container_of(dw, board_info_t, phy_poll);
553
554 mii_check_media(&db->mii, netif_msg_link(db), 0);
555
556 if (netif_running(db->ndev))
557 dm9000_schedule_poll(db);
558}
Ben Dooks7da99852008-02-05 00:02:06 +0000559
Sascha Hauera1365272005-05-05 15:14:15 -0700560/* dm9000_release_board
561 *
562 * release a board, and any mapped resources
563 */
564
565static void
566dm9000_release_board(struct platform_device *pdev, struct board_info *db)
567{
Sascha Hauera1365272005-05-05 15:14:15 -0700568 /* unmap our resources */
569
570 iounmap(db->io_addr);
571 iounmap(db->io_data);
572
573 /* release the resources */
574
Ben Dooks9088fa4f2008-06-24 22:16:00 +0100575 release_resource(db->data_req);
576 kfree(db->data_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700577
Ben Dooks9088fa4f2008-06-24 22:16:00 +0100578 release_resource(db->addr_req);
579 kfree(db->addr_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700580}
581
Ben Dooks6d406b32008-06-24 22:15:59 +0100582static unsigned char dm9000_type_to_char(enum dm9000_type type)
583{
584 switch (type) {
585 case TYPE_DM9000E: return 'e';
586 case TYPE_DM9000A: return 'a';
587 case TYPE_DM9000B: return 'b';
588 }
589
590 return '?';
591}
592
Ben Dooksf8d79e72008-06-24 22:16:02 +0100593/*
594 * Set DM9000 multicast address
595 */
596static void
597dm9000_hash_table(struct net_device *dev)
598{
599 board_info_t *db = (board_info_t *) dev->priv;
600 struct dev_mc_list *mcptr = dev->mc_list;
601 int mc_cnt = dev->mc_count;
602 int i, oft;
603 u32 hash_val;
604 u16 hash_table[4];
605 u8 rcr = RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN;
606 unsigned long flags;
607
608 dm9000_dbg(db, 1, "entering %s\n", __func__);
609
610 spin_lock_irqsave(&db->lock, flags);
611
612 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
613 iow(db, oft, dev->dev_addr[i]);
614
615 /* Clear Hash Table */
616 for (i = 0; i < 4; i++)
617 hash_table[i] = 0x0;
618
619 /* broadcast address */
620 hash_table[3] = 0x8000;
621
622 if (dev->flags & IFF_PROMISC)
623 rcr |= RCR_PRMSC;
624
625 if (dev->flags & IFF_ALLMULTI)
626 rcr |= RCR_ALL;
627
628 /* the multicast address in Hash Table : 64 bits */
629 for (i = 0; i < mc_cnt; i++, mcptr = mcptr->next) {
630 hash_val = ether_crc_le(6, mcptr->dmi_addr) & 0x3f;
631 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
632 }
633
634 /* Write the hash table to MAC MD table */
635 for (i = 0, oft = DM9000_MAR; i < 4; i++) {
636 iow(db, oft++, hash_table[i]);
637 iow(db, oft++, hash_table[i] >> 8);
638 }
639
640 iow(db, DM9000_RCR, rcr);
641 spin_unlock_irqrestore(&db->lock, flags);
642}
643
644/*
645 * Initilize dm9000 board
646 */
647static void
648dm9000_init_dm9000(struct net_device *dev)
649{
650 board_info_t *db = dev->priv;
651 unsigned int imr;
652
653 dm9000_dbg(db, 1, "entering %s\n", __func__);
654
655 /* I/O mode */
656 db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
657
658 /* GPIO0 on pre-activate PHY */
659 iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
660 iow(db, DM9000_GPCR, GPCR_GEP_CNTL); /* Let GPIO0 output */
661 iow(db, DM9000_GPR, 0); /* Enable PHY */
662
663 if (db->flags & DM9000_PLATF_EXT_PHY)
664 iow(db, DM9000_NCR, NCR_EXT_PHY);
665
666 /* Program operating register */
667 iow(db, DM9000_TCR, 0); /* TX Polling clear */
668 iow(db, DM9000_BPTR, 0x3f); /* Less 3Kb, 200us */
669 iow(db, DM9000_FCR, 0xff); /* Flow Control */
670 iow(db, DM9000_SMCR, 0); /* Special Mode */
671 /* clear TX status */
672 iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
673 iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
674
675 /* Set address filter table */
676 dm9000_hash_table(dev);
677
678 imr = IMR_PAR | IMR_PTM | IMR_PRM;
679 if (db->type != TYPE_DM9000E)
680 imr |= IMR_LNKCHNG;
681
682 db->imr_all = imr;
683
684 /* Enable TX/RX interrupt mask */
685 iow(db, DM9000_IMR, imr);
686
687 /* Init Driver variable */
688 db->tx_pkt_cnt = 0;
689 db->queue_pkt_len = 0;
690 dev->trans_start = 0;
691}
692
693/* Our watchdog timed out. Called by the networking layer */
694static void dm9000_timeout(struct net_device *dev)
695{
696 board_info_t *db = (board_info_t *) dev->priv;
697 u8 reg_save;
698 unsigned long flags;
699
700 /* Save previous register address */
701 reg_save = readb(db->io_addr);
702 spin_lock_irqsave(&db->lock, flags);
703
704 netif_stop_queue(dev);
705 dm9000_reset(db);
706 dm9000_init_dm9000(dev);
707 /* We can accept TX packets again */
708 dev->trans_start = jiffies;
709 netif_wake_queue(dev);
710
711 /* Restore previous register address */
712 writeb(reg_save, db->io_addr);
713 spin_unlock_irqrestore(&db->lock, flags);
714}
715
716/*
717 * Hardware start transmission.
718 * Send a packet to media from the upper layer.
719 */
720static int
721dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
722{
723 unsigned long flags;
724 board_info_t *db = dev->priv;
725
726 dm9000_dbg(db, 3, "%s:\n", __func__);
727
728 if (db->tx_pkt_cnt > 1)
729 return 1;
730
731 spin_lock_irqsave(&db->lock, flags);
732
733 /* Move data to DM9000 TX RAM */
734 writeb(DM9000_MWCMD, db->io_addr);
735
736 (db->outblk)(db->io_data, skb->data, skb->len);
737 dev->stats.tx_bytes += skb->len;
738
739 db->tx_pkt_cnt++;
740 /* TX control: First packet immediately send, second packet queue */
741 if (db->tx_pkt_cnt == 1) {
742 /* Set TX length to DM9000 */
743 iow(db, DM9000_TXPLL, skb->len);
744 iow(db, DM9000_TXPLH, skb->len >> 8);
745
746 /* Issue TX polling command */
747 iow(db, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
748
749 dev->trans_start = jiffies; /* save the time stamp */
750 } else {
751 /* Second packet */
752 db->queue_pkt_len = skb->len;
753 netif_stop_queue(dev);
754 }
755
756 spin_unlock_irqrestore(&db->lock, flags);
757
758 /* free this SKB */
759 dev_kfree_skb(skb);
760
761 return 0;
762}
763
764/*
765 * DM9000 interrupt handler
766 * receive the packet to upper layer, free the transmitted packet
767 */
768
769static void dm9000_tx_done(struct net_device *dev, board_info_t *db)
770{
771 int tx_status = ior(db, DM9000_NSR); /* Got TX status */
772
773 if (tx_status & (NSR_TX2END | NSR_TX1END)) {
774 /* One packet sent complete */
775 db->tx_pkt_cnt--;
776 dev->stats.tx_packets++;
777
778 if (netif_msg_tx_done(db))
779 dev_dbg(db->dev, "tx done, NSR %02x\n", tx_status);
780
781 /* Queue packet check & send */
782 if (db->tx_pkt_cnt > 0) {
783 iow(db, DM9000_TXPLL, db->queue_pkt_len);
784 iow(db, DM9000_TXPLH, db->queue_pkt_len >> 8);
785 iow(db, DM9000_TCR, TCR_TXREQ);
786 dev->trans_start = jiffies;
787 }
788 netif_wake_queue(dev);
789 }
790}
791
792struct dm9000_rxhdr {
793 u8 RxPktReady;
794 u8 RxStatus;
795 __le16 RxLen;
796} __attribute__((__packed__));
797
798/*
799 * Received a packet and pass to upper layer
800 */
801static void
802dm9000_rx(struct net_device *dev)
803{
804 board_info_t *db = (board_info_t *) dev->priv;
805 struct dm9000_rxhdr rxhdr;
806 struct sk_buff *skb;
807 u8 rxbyte, *rdptr;
808 bool GoodPacket;
809 int RxLen;
810
811 /* Check packet ready or not */
812 do {
813 ior(db, DM9000_MRCMDX); /* Dummy read */
814
815 /* Get most updated data */
816 rxbyte = readb(db->io_data);
817
818 /* Status check: this byte must be 0 or 1 */
819 if (rxbyte > DM9000_PKT_RDY) {
820 dev_warn(db->dev, "status check fail: %d\n", rxbyte);
821 iow(db, DM9000_RCR, 0x00); /* Stop Device */
822 iow(db, DM9000_ISR, IMR_PAR); /* Stop INT request */
823 return;
824 }
825
826 if (rxbyte != DM9000_PKT_RDY)
827 return;
828
829 /* A packet ready now & Get status/length */
830 GoodPacket = true;
831 writeb(DM9000_MRCMD, db->io_addr);
832
833 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
834
835 RxLen = le16_to_cpu(rxhdr.RxLen);
836
837 if (netif_msg_rx_status(db))
838 dev_dbg(db->dev, "RX: status %02x, length %04x\n",
839 rxhdr.RxStatus, RxLen);
840
841 /* Packet Status check */
842 if (RxLen < 0x40) {
843 GoodPacket = false;
844 if (netif_msg_rx_err(db))
845 dev_dbg(db->dev, "RX: Bad Packet (runt)\n");
846 }
847
848 if (RxLen > DM9000_PKT_MAX) {
849 dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
850 }
851
852 if (rxhdr.RxStatus & 0xbf) {
853 GoodPacket = false;
854 if (rxhdr.RxStatus & 0x01) {
855 if (netif_msg_rx_err(db))
856 dev_dbg(db->dev, "fifo error\n");
857 dev->stats.rx_fifo_errors++;
858 }
859 if (rxhdr.RxStatus & 0x02) {
860 if (netif_msg_rx_err(db))
861 dev_dbg(db->dev, "crc error\n");
862 dev->stats.rx_crc_errors++;
863 }
864 if (rxhdr.RxStatus & 0x80) {
865 if (netif_msg_rx_err(db))
866 dev_dbg(db->dev, "length error\n");
867 dev->stats.rx_length_errors++;
868 }
869 }
870
871 /* Move data from DM9000 */
872 if (GoodPacket
873 && ((skb = dev_alloc_skb(RxLen + 4)) != NULL)) {
874 skb_reserve(skb, 2);
875 rdptr = (u8 *) skb_put(skb, RxLen - 4);
876
877 /* Read received packet from RX SRAM */
878
879 (db->inblk)(db->io_data, rdptr, RxLen);
880 dev->stats.rx_bytes += RxLen;
881
882 /* Pass to upper layer */
883 skb->protocol = eth_type_trans(skb, dev);
884 netif_rx(skb);
885 dev->stats.rx_packets++;
886
887 } else {
888 /* need to dump the packet's data */
889
890 (db->dumpblk)(db->io_data, RxLen);
891 }
892 } while (rxbyte == DM9000_PKT_RDY);
893}
894
895static irqreturn_t dm9000_interrupt(int irq, void *dev_id)
896{
897 struct net_device *dev = dev_id;
898 board_info_t *db = dev->priv;
899 int int_status;
900 u8 reg_save;
901
902 dm9000_dbg(db, 3, "entering %s\n", __func__);
903
904 /* A real interrupt coming */
905
906 spin_lock(&db->lock);
907
908 /* Save previous register address */
909 reg_save = readb(db->io_addr);
910
911 /* Disable all interrupts */
912 iow(db, DM9000_IMR, IMR_PAR);
913
914 /* Got DM9000 interrupt status */
915 int_status = ior(db, DM9000_ISR); /* Got ISR */
916 iow(db, DM9000_ISR, int_status); /* Clear ISR status */
917
918 if (netif_msg_intr(db))
919 dev_dbg(db->dev, "interrupt status %02x\n", int_status);
920
921 /* Received the coming packet */
922 if (int_status & ISR_PRS)
923 dm9000_rx(dev);
924
925 /* Trnasmit Interrupt check */
926 if (int_status & ISR_PTS)
927 dm9000_tx_done(dev, db);
928
929 if (db->type != TYPE_DM9000E) {
930 if (int_status & ISR_LNKCHNG) {
931 /* fire a link-change request */
932 schedule_delayed_work(&db->phy_poll, 1);
933 }
934 }
935
936 /* Re-enable interrupt mask */
937 iow(db, DM9000_IMR, db->imr_all);
938
939 /* Restore previous register address */
940 writeb(reg_save, db->io_addr);
941
942 spin_unlock(&db->lock);
943
944 return IRQ_HANDLED;
945}
946
947#ifdef CONFIG_NET_POLL_CONTROLLER
948/*
949 *Used by netconsole
950 */
951static void dm9000_poll_controller(struct net_device *dev)
952{
953 disable_irq(dev->irq);
954 dm9000_interrupt(dev->irq, dev);
955 enable_irq(dev->irq);
956}
957#endif
958
959/*
960 * Open the interface.
961 * The interface is opened whenever "ifconfig" actives it.
962 */
963static int
964dm9000_open(struct net_device *dev)
965{
966 board_info_t *db = dev->priv;
967 unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
968
969 if (netif_msg_ifup(db))
970 dev_dbg(db->dev, "enabling %s\n", dev->name);
971
972 /* If there is no IRQ type specified, default to something that
973 * may work, and tell the user that this is a problem */
974
975 if (irqflags == IRQF_TRIGGER_NONE) {
976 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
977 irqflags = DEFAULT_TRIGGER;
978 }
979
980 irqflags |= IRQF_SHARED;
981
982 if (request_irq(dev->irq, &dm9000_interrupt, irqflags, dev->name, dev))
983 return -EAGAIN;
984
985 /* Initialize DM9000 board */
986 dm9000_reset(db);
987 dm9000_init_dm9000(dev);
988
989 /* Init driver variable */
990 db->dbug_cnt = 0;
991
992 mii_check_media(&db->mii, netif_msg_link(db), 1);
993 netif_start_queue(dev);
994
995 dm9000_schedule_poll(db);
996
997 return 0;
998}
999
1000/*
1001 * Sleep, either by using msleep() or if we are suspending, then
1002 * use mdelay() to sleep.
1003 */
1004static void dm9000_msleep(board_info_t *db, unsigned int ms)
1005{
1006 if (db->in_suspend)
1007 mdelay(ms);
1008 else
1009 msleep(ms);
1010}
1011
1012/*
1013 * Read a word from phyxcer
1014 */
1015static int
1016dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
1017{
1018 board_info_t *db = (board_info_t *) dev->priv;
1019 unsigned long flags;
1020 unsigned int reg_save;
1021 int ret;
1022
1023 mutex_lock(&db->addr_lock);
1024
1025 spin_lock_irqsave(&db->lock,flags);
1026
1027 /* Save previous register address */
1028 reg_save = readb(db->io_addr);
1029
1030 /* Fill the phyxcer register into REG_0C */
1031 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1032
1033 iow(db, DM9000_EPCR, 0xc); /* Issue phyxcer read command */
1034
1035 writeb(reg_save, db->io_addr);
1036 spin_unlock_irqrestore(&db->lock,flags);
1037
1038 dm9000_msleep(db, 1); /* Wait read complete */
1039
1040 spin_lock_irqsave(&db->lock,flags);
1041 reg_save = readb(db->io_addr);
1042
1043 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer read command */
1044
1045 /* The read data keeps on REG_0D & REG_0E */
1046 ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
1047
1048 /* restore the previous address */
1049 writeb(reg_save, db->io_addr);
1050 spin_unlock_irqrestore(&db->lock,flags);
1051
1052 mutex_unlock(&db->addr_lock);
1053
1054 dm9000_dbg(db, 5, "phy_read[%02x] -> %04x\n", reg, ret);
1055 return ret;
1056}
1057
1058/*
1059 * Write a word to phyxcer
1060 */
1061static void
1062dm9000_phy_write(struct net_device *dev,
1063 int phyaddr_unused, int reg, int value)
1064{
1065 board_info_t *db = (board_info_t *) dev->priv;
1066 unsigned long flags;
1067 unsigned long reg_save;
1068
1069 dm9000_dbg(db, 5, "phy_write[%02x] = %04x\n", reg, value);
1070 mutex_lock(&db->addr_lock);
1071
1072 spin_lock_irqsave(&db->lock,flags);
1073
1074 /* Save previous register address */
1075 reg_save = readb(db->io_addr);
1076
1077 /* Fill the phyxcer register into REG_0C */
1078 iow(db, DM9000_EPAR, DM9000_PHY | reg);
1079
1080 /* Fill the written data into REG_0D & REG_0E */
1081 iow(db, DM9000_EPDRL, value);
1082 iow(db, DM9000_EPDRH, value >> 8);
1083
1084 iow(db, DM9000_EPCR, 0xa); /* Issue phyxcer write command */
1085
1086 writeb(reg_save, db->io_addr);
1087 spin_unlock_irqrestore(&db->lock, flags);
1088
1089 dm9000_msleep(db, 1); /* Wait write complete */
1090
1091 spin_lock_irqsave(&db->lock,flags);
1092 reg_save = readb(db->io_addr);
1093
1094 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer write command */
1095
1096 /* restore the previous address */
1097 writeb(reg_save, db->io_addr);
1098
1099 spin_unlock_irqrestore(&db->lock, flags);
1100 mutex_unlock(&db->addr_lock);
1101}
1102
1103static void
1104dm9000_shutdown(struct net_device *dev)
1105{
1106 board_info_t *db = dev->priv;
1107
1108 /* RESET device */
1109 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
1110 iow(db, DM9000_GPR, 0x01); /* Power-Down PHY */
1111 iow(db, DM9000_IMR, IMR_PAR); /* Disable all interrupt */
1112 iow(db, DM9000_RCR, 0x00); /* Disable RX */
1113}
1114
1115/*
1116 * Stop the interface.
1117 * The interface is stopped when it is brought.
1118 */
1119static int
1120dm9000_stop(struct net_device *ndev)
1121{
1122 board_info_t *db = ndev->priv;
1123
1124 if (netif_msg_ifdown(db))
1125 dev_dbg(db->dev, "shutting down %s\n", ndev->name);
1126
1127 cancel_delayed_work_sync(&db->phy_poll);
1128
1129 netif_stop_queue(ndev);
1130 netif_carrier_off(ndev);
1131
1132 /* free interrupt */
1133 free_irq(ndev->irq, ndev);
1134
1135 dm9000_shutdown(ndev);
1136
1137 return 0;
1138}
1139
Sascha Hauera1365272005-05-05 15:14:15 -07001140#define res_size(_r) (((_r)->end - (_r)->start) + 1)
1141
1142/*
1143 * Search DM9000 board, allocate space and register it
1144 */
Enrico Scholze21fd4f02008-05-08 11:33:03 +01001145static int __devinit
Russell King3ae5eae2005-11-09 22:32:44 +00001146dm9000_probe(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001147{
Sascha Hauera1365272005-05-05 15:14:15 -07001148 struct dm9000_plat_data *pdata = pdev->dev.platform_data;
1149 struct board_info *db; /* Point a board information structure */
1150 struct net_device *ndev;
Ben Dooks179c7432008-02-05 00:02:23 +00001151 const unsigned char *mac_src;
Sascha Hauera1365272005-05-05 15:14:15 -07001152 int ret = 0;
1153 int iosize;
1154 int i;
1155 u32 id_val;
1156
Sascha Hauera1365272005-05-05 15:14:15 -07001157 /* Init network device */
Ben Dooksf8d79e72008-06-24 22:16:02 +01001158 ndev = alloc_etherdev(sizeof(struct board_info));
Sascha Hauera1365272005-05-05 15:14:15 -07001159 if (!ndev) {
Ben Dooksa76836f2008-02-05 00:02:02 +00001160 dev_err(&pdev->dev, "could not allocate device.\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001161 return -ENOMEM;
1162 }
1163
Russell King3ae5eae2005-11-09 22:32:44 +00001164 SET_NETDEV_DEV(ndev, &pdev->dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001165
Enrico Scholz37d5dca2008-05-08 11:35:13 +01001166 dev_dbg(&pdev->dev, "dm9000_probe()\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001167
1168 /* setup board info structure */
Ben Dooksf8d79e72008-06-24 22:16:02 +01001169 db = ndev->priv;
1170 memset(db, 0, sizeof(*db));
Sascha Hauera1365272005-05-05 15:14:15 -07001171
Ben Dooksa76836f2008-02-05 00:02:02 +00001172 db->dev = &pdev->dev;
Ben Dooks8f5bf5f22008-05-08 11:36:42 +01001173 db->ndev = ndev;
Ben Dooksa76836f2008-02-05 00:02:02 +00001174
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001175 spin_lock_init(&db->lock);
Ben Dooks9a2f0372008-02-05 00:02:10 +00001176 mutex_init(&db->addr_lock);
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001177
Ben Dooks8f5bf5f22008-05-08 11:36:42 +01001178 INIT_DELAYED_WORK(&db->phy_poll, dm9000_poll_work);
1179
Laurent Pinchart08c3f572008-06-24 22:15:57 +01001180 db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1181 db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1182 db->irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1183
1184 if (db->addr_res == NULL || db->data_res == NULL ||
1185 db->irq_res == NULL) {
1186 dev_err(db->dev, "insufficient resources\n");
1187 ret = -ENOENT;
1188 goto out;
1189 }
1190
1191 iosize = res_size(db->addr_res);
1192 db->addr_req = request_mem_region(db->addr_res->start, iosize,
1193 pdev->name);
1194
1195 if (db->addr_req == NULL) {
1196 dev_err(db->dev, "cannot claim address reg area\n");
1197 ret = -EIO;
1198 goto out;
1199 }
1200
1201 db->io_addr = ioremap(db->addr_res->start, iosize);
1202
1203 if (db->io_addr == NULL) {
1204 dev_err(db->dev, "failed to ioremap address reg\n");
1205 ret = -EINVAL;
1206 goto out;
1207 }
1208
1209 iosize = res_size(db->data_res);
1210 db->data_req = request_mem_region(db->data_res->start, iosize,
1211 pdev->name);
1212
1213 if (db->data_req == NULL) {
1214 dev_err(db->dev, "cannot claim data reg area\n");
1215 ret = -EIO;
1216 goto out;
1217 }
1218
1219 db->io_data = ioremap(db->data_res->start, iosize);
1220
1221 if (db->io_data == NULL) {
1222 dev_err(db->dev, "failed to ioremap data reg\n");
1223 ret = -EINVAL;
1224 goto out;
1225 }
1226
1227 /* fill in parameters for net-dev structure */
1228 ndev->base_addr = (unsigned long)db->io_addr;
1229 ndev->irq = db->irq_res->start;
1230
1231 /* ensure at least we have a default set of IO routines */
1232 dm9000_set_io(db, iosize);
1233
Sascha Hauera1365272005-05-05 15:14:15 -07001234 /* check to see if anything is being over-ridden */
1235 if (pdata != NULL) {
1236 /* check to see if the driver wants to over-ride the
1237 * default IO width */
1238
1239 if (pdata->flags & DM9000_PLATF_8BITONLY)
1240 dm9000_set_io(db, 1);
1241
1242 if (pdata->flags & DM9000_PLATF_16BITONLY)
1243 dm9000_set_io(db, 2);
1244
1245 if (pdata->flags & DM9000_PLATF_32BITONLY)
1246 dm9000_set_io(db, 4);
1247
1248 /* check to see if there are any IO routine
1249 * over-rides */
1250
1251 if (pdata->inblk != NULL)
1252 db->inblk = pdata->inblk;
1253
1254 if (pdata->outblk != NULL)
1255 db->outblk = pdata->outblk;
1256
1257 if (pdata->dumpblk != NULL)
1258 db->dumpblk = pdata->dumpblk;
Ben Dooks33ba5092008-02-05 00:02:01 +00001259
1260 db->flags = pdata->flags;
Sascha Hauera1365272005-05-05 15:14:15 -07001261 }
1262
1263 dm9000_reset(db);
1264
Ben Dooks59eae1f2008-06-24 22:16:01 +01001265 /* try multiple times, DM9000 sometimes gets the read wrong */
Ben Dooks513b6be2008-02-05 00:02:22 +00001266 for (i = 0; i < 8; i++) {
Sascha Hauera1365272005-05-05 15:14:15 -07001267 id_val = ior(db, DM9000_VIDL);
1268 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
1269 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
1270 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
1271
1272 if (id_val == DM9000_ID)
1273 break;
Ben Dooksa76836f2008-02-05 00:02:02 +00001274 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
Sascha Hauera1365272005-05-05 15:14:15 -07001275 }
1276
1277 if (id_val != DM9000_ID) {
Ben Dooksa76836f2008-02-05 00:02:02 +00001278 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
Mike Rapoport418d6f82007-10-18 09:23:11 +02001279 ret = -ENODEV;
1280 goto out;
Sascha Hauera1365272005-05-05 15:14:15 -07001281 }
1282
Ben Dooks6d406b32008-06-24 22:15:59 +01001283 /* Identify what type of DM9000 we are working on */
1284
1285 id_val = ior(db, DM9000_CHIPR);
1286 dev_dbg(db->dev, "dm9000 revision 0x%02x\n", id_val);
1287
1288 switch (id_val) {
1289 case CHIPR_DM9000A:
1290 db->type = TYPE_DM9000A;
1291 break;
1292 case CHIPR_DM9000B:
1293 db->type = TYPE_DM9000B;
1294 break;
1295 default:
1296 dev_dbg(db->dev, "ID %02x => defaulting to DM9000E\n", id_val);
1297 db->type = TYPE_DM9000E;
1298 }
1299
Sascha Hauera1365272005-05-05 15:14:15 -07001300 /* from this point we assume that we have found a DM9000 */
1301
1302 /* driver system function */
1303 ether_setup(ndev);
1304
1305 ndev->open = &dm9000_open;
1306 ndev->hard_start_xmit = &dm9000_start_xmit;
1307 ndev->tx_timeout = &dm9000_timeout;
1308 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
1309 ndev->stop = &dm9000_stop;
Sascha Hauera1365272005-05-05 15:14:15 -07001310 ndev->set_multicast_list = &dm9000_hash_table;
Ben Dooks7da99852008-02-05 00:02:06 +00001311 ndev->ethtool_ops = &dm9000_ethtool_ops;
Ben Dooksf42d8ae2008-02-05 00:02:21 +00001312 ndev->do_ioctl = &dm9000_ioctl;
Ben Dooks7da99852008-02-05 00:02:06 +00001313
Kevin Hao2fd0e332006-08-14 23:00:15 -07001314#ifdef CONFIG_NET_POLL_CONTROLLER
1315 ndev->poll_controller = &dm9000_poll_controller;
1316#endif
Sascha Hauera1365272005-05-05 15:14:15 -07001317
Sascha Hauera1365272005-05-05 15:14:15 -07001318 db->msg_enable = NETIF_MSG_LINK;
1319 db->mii.phy_id_mask = 0x1f;
1320 db->mii.reg_num_mask = 0x1f;
1321 db->mii.force_media = 0;
1322 db->mii.full_duplex = 0;
1323 db->mii.dev = ndev;
1324 db->mii.mdio_read = dm9000_phy_read;
1325 db->mii.mdio_write = dm9000_phy_write;
1326
Ben Dooks179c7432008-02-05 00:02:23 +00001327 mac_src = "eeprom";
1328
Ben Dooks86c62fa2008-02-05 00:02:09 +00001329 /* try reading the node address from the attached EEPROM */
1330 for (i = 0; i < 6; i += 2)
1331 dm9000_read_eeprom(db, i / 2, ndev->dev_addr+i);
Sascha Hauera1365272005-05-05 15:14:15 -07001332
Ben Dooks5b55dda2006-06-13 23:50:15 +01001333 if (!is_valid_ether_addr(ndev->dev_addr)) {
1334 /* try reading from mac */
Ben Dooksf8d79e72008-06-24 22:16:02 +01001335
Ben Dooks179c7432008-02-05 00:02:23 +00001336 mac_src = "chip";
Ben Dooks5b55dda2006-06-13 23:50:15 +01001337 for (i = 0; i < 6; i++)
1338 ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
1339 }
1340
Sascha Hauera1365272005-05-05 15:14:15 -07001341 if (!is_valid_ether_addr(ndev->dev_addr))
Ben Dooksa76836f2008-02-05 00:02:02 +00001342 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
1343 "set using ifconfig\n", ndev->name);
Sascha Hauera1365272005-05-05 15:14:15 -07001344
Russell King3ae5eae2005-11-09 22:32:44 +00001345 platform_set_drvdata(pdev, ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001346 ret = register_netdev(ndev);
1347
1348 if (ret == 0) {
Joe Perches0795af52007-10-03 17:59:30 -07001349 DECLARE_MAC_BUF(mac);
Ben Dooks6d406b32008-06-24 22:15:59 +01001350 printk(KERN_INFO "%s: dm9000%c at %p,%p IRQ %d MAC: %s (%s)\n",
1351 ndev->name, dm9000_type_to_char(db->type),
1352 db->io_addr, db->io_data, ndev->irq,
Ben Dooks179c7432008-02-05 00:02:23 +00001353 print_mac(mac, ndev->dev_addr), mac_src);
Sascha Hauera1365272005-05-05 15:14:15 -07001354 }
1355 return 0;
1356
Mike Rapoport418d6f82007-10-18 09:23:11 +02001357out:
Ben Dooksa76836f2008-02-05 00:02:02 +00001358 dev_err(db->dev, "not found (%d).\n", ret);
Sascha Hauera1365272005-05-05 15:14:15 -07001359
1360 dm9000_release_board(pdev, db);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001361 free_netdev(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001362
1363 return ret;
1364}
1365
Sascha Hauera1365272005-05-05 15:14:15 -07001366static int
Russell King3ae5eae2005-11-09 22:32:44 +00001367dm9000_drv_suspend(struct platform_device *dev, pm_message_t state)
Sascha Hauera1365272005-05-05 15:14:15 -07001368{
Russell King3ae5eae2005-11-09 22:32:44 +00001369 struct net_device *ndev = platform_get_drvdata(dev);
Ben Dooks321f69a2008-02-05 00:02:08 +00001370 board_info_t *db;
Sascha Hauera1365272005-05-05 15:14:15 -07001371
Russell King9480e302005-10-28 09:52:56 -07001372 if (ndev) {
Ben Dooks321f69a2008-02-05 00:02:08 +00001373 db = (board_info_t *) ndev->priv;
1374 db->in_suspend = 1;
1375
Sascha Hauera1365272005-05-05 15:14:15 -07001376 if (netif_running(ndev)) {
1377 netif_device_detach(ndev);
1378 dm9000_shutdown(ndev);
1379 }
1380 }
1381 return 0;
1382}
1383
1384static int
Russell King3ae5eae2005-11-09 22:32:44 +00001385dm9000_drv_resume(struct platform_device *dev)
Sascha Hauera1365272005-05-05 15:14:15 -07001386{
Russell King3ae5eae2005-11-09 22:32:44 +00001387 struct net_device *ndev = platform_get_drvdata(dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001388 board_info_t *db = (board_info_t *) ndev->priv;
1389
Russell King9480e302005-10-28 09:52:56 -07001390 if (ndev) {
Sascha Hauera1365272005-05-05 15:14:15 -07001391
1392 if (netif_running(ndev)) {
1393 dm9000_reset(db);
1394 dm9000_init_dm9000(ndev);
1395
1396 netif_device_attach(ndev);
1397 }
Ben Dooks321f69a2008-02-05 00:02:08 +00001398
1399 db->in_suspend = 0;
Sascha Hauera1365272005-05-05 15:14:15 -07001400 }
1401 return 0;
1402}
1403
Enrico Scholze21fd4f02008-05-08 11:33:03 +01001404static int __devexit
Russell King3ae5eae2005-11-09 22:32:44 +00001405dm9000_drv_remove(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001406{
Russell King3ae5eae2005-11-09 22:32:44 +00001407 struct net_device *ndev = platform_get_drvdata(pdev);
Sascha Hauera1365272005-05-05 15:14:15 -07001408
Russell King3ae5eae2005-11-09 22:32:44 +00001409 platform_set_drvdata(pdev, NULL);
Sascha Hauera1365272005-05-05 15:14:15 -07001410
1411 unregister_netdev(ndev);
1412 dm9000_release_board(pdev, (board_info_t *) ndev->priv);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001413 free_netdev(ndev); /* free device structure */
Sascha Hauera1365272005-05-05 15:14:15 -07001414
Ben Dooksa76836f2008-02-05 00:02:02 +00001415 dev_dbg(&pdev->dev, "released and freed device\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001416 return 0;
1417}
1418
Russell King3ae5eae2005-11-09 22:32:44 +00001419static struct platform_driver dm9000_driver = {
Ben Dooks5d22a312006-06-14 00:09:17 +01001420 .driver = {
1421 .name = "dm9000",
1422 .owner = THIS_MODULE,
1423 },
Sascha Hauera1365272005-05-05 15:14:15 -07001424 .probe = dm9000_probe,
Enrico Scholze21fd4f02008-05-08 11:33:03 +01001425 .remove = __devexit_p(dm9000_drv_remove),
Sascha Hauera1365272005-05-05 15:14:15 -07001426 .suspend = dm9000_drv_suspend,
1427 .resume = dm9000_drv_resume,
1428};
1429
1430static int __init
1431dm9000_init(void)
1432{
Ben Dooks7da99852008-02-05 00:02:06 +00001433 printk(KERN_INFO "%s Ethernet Driver, V%s\n", CARDNAME, DRV_VERSION);
Ben Dooks2ae2d772005-07-23 17:29:38 +01001434
Ben Dooks59eae1f2008-06-24 22:16:01 +01001435 return platform_driver_register(&dm9000_driver);
Sascha Hauera1365272005-05-05 15:14:15 -07001436}
1437
1438static void __exit
1439dm9000_cleanup(void)
1440{
Russell King3ae5eae2005-11-09 22:32:44 +00001441 platform_driver_unregister(&dm9000_driver);
Sascha Hauera1365272005-05-05 15:14:15 -07001442}
1443
1444module_init(dm9000_init);
1445module_exit(dm9000_cleanup);
1446
1447MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1448MODULE_DESCRIPTION("Davicom DM9000 network driver");
1449MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07001450MODULE_ALIAS("platform:dm9000");