blob: 9105465b2a1a92c5561c99bbda0df7902182ccbb [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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000027#include <linux/interrupt.h>
Sascha Hauera1365272005-05-05 15:14:15 -070028#include <linux/skbuff.h>
Sascha Hauera1365272005-05-05 15:14:15 -070029#include <linux/spinlock.h>
30#include <linux/crc32.h>
31#include <linux/mii.h>
Ben Dooks7da99852008-02-05 00:02:06 +000032#include <linux/ethtool.h>
Sascha Hauera1365272005-05-05 15:14:15 -070033#include <linux/dm9000.h>
34#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010035#include <linux/platform_device.h>
Daniel Mack4e4fc052008-01-23 14:54:50 +010036#include <linux/irq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Sascha Hauera1365272005-05-05 15:14:15 -070038
39#include <asm/delay.h>
40#include <asm/irq.h>
41#include <asm/io.h>
42
43#include "dm9000.h"
44
45/* Board/System/Debug information/definition ---------------- */
46
47#define DM9000_PHY 0x40 /* PHY address 0x01 */
48
Ben Dooks59eae1f2008-06-24 22:16:01 +010049#define CARDNAME "dm9000"
50#define DRV_VERSION "1.31"
Sascha Hauera1365272005-05-05 15:14:15 -070051
Sascha Hauera1365272005-05-05 15:14:15 -070052/*
53 * Transmit timeout, default 5 seconds.
54 */
55static int watchdog = 5000;
56module_param(watchdog, int, 0400);
57MODULE_PARM_DESC(watchdog, "transmit timeout in milliseconds");
58
Vladimir Zapolskiy2e025c72011-08-20 14:15:55 -070059/*
60 * Debug messages level
61 */
62static int debug;
63module_param(debug, int, 0644);
64MODULE_PARM_DESC(debug, "dm9000 debug level (0-4)");
65
Ben Dooks9a2f0372008-02-05 00:02:10 +000066/* DM9000 register address locking.
67 *
68 * The DM9000 uses an address register to control where data written
69 * to the data register goes. This means that the address register
70 * must be preserved over interrupts or similar calls.
71 *
72 * During interrupt and other critical calls, a spinlock is used to
73 * protect the system, but the calls themselves save the address
74 * in the address register in case they are interrupting another
75 * access to the device.
76 *
77 * For general accesses a lock is provided so that calls which are
78 * allowed to sleep are serialised so that the address register does
79 * not need to be saved. This lock also serves to serialise access
80 * to the EEPROM and PHY access registers which are shared between
81 * these two devices.
82 */
83
Ben Dooks6d406b32008-06-24 22:15:59 +010084/* The driver supports the original DM9000E, and now the two newer
85 * devices, DM9000A and DM9000B.
86 */
87
88enum dm9000_type {
89 TYPE_DM9000E, /* original DM9000 */
90 TYPE_DM9000A,
91 TYPE_DM9000B
92};
93
Sascha Hauera1365272005-05-05 15:14:15 -070094/* Structure/enum declaration ------------------------------- */
95typedef struct board_info {
96
Ben Dooks59eae1f2008-06-24 22:16:01 +010097 void __iomem *io_addr; /* Register I/O base address */
98 void __iomem *io_data; /* Data I/O address */
99 u16 irq; /* IRQ */
Sascha Hauera1365272005-05-05 15:14:15 -0700100
Ben Dooks59eae1f2008-06-24 22:16:01 +0100101 u16 tx_pkt_cnt;
102 u16 queue_pkt_len;
103 u16 queue_start_addr;
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700104 u16 queue_ip_summed;
Ben Dooks59eae1f2008-06-24 22:16:01 +0100105 u16 dbug_cnt;
106 u8 io_mode; /* 0:word, 2:byte */
107 u8 phy_addr;
108 u8 imr_all;
109
110 unsigned int flags;
111 unsigned int in_suspend :1;
Ben Dooksc029f442009-11-10 07:22:24 +0000112 unsigned int wake_supported :1;
Sascha Hauera1365272005-05-05 15:14:15 -0700113
Ben Dooks6d406b32008-06-24 22:15:59 +0100114 enum dm9000_type type;
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000115
Sascha Hauera1365272005-05-05 15:14:15 -0700116 void (*inblk)(void __iomem *port, void *data, int length);
117 void (*outblk)(void __iomem *port, void *data, int length);
118 void (*dumpblk)(void __iomem *port, int length);
119
Ben Dooksa76836f2008-02-05 00:02:02 +0000120 struct device *dev; /* parent device */
121
Sascha Hauera1365272005-05-05 15:14:15 -0700122 struct resource *addr_res; /* resources found */
123 struct resource *data_res;
124 struct resource *addr_req; /* resources requested */
125 struct resource *data_req;
126 struct resource *irq_res;
127
Ben Dooksc029f442009-11-10 07:22:24 +0000128 int irq_wake;
129
Ben Dooks9a2f0372008-02-05 00:02:10 +0000130 struct mutex addr_lock; /* phy and eeprom access lock */
131
Ben Dooks8f5bf5f2008-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;
Ben Dooksc029f442009-11-10 07:22:24 +0000139 u32 wake_state;
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700140
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700141 int ip_summed;
Sascha Hauera1365272005-05-05 15:14:15 -0700142} board_info_t;
143
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000144/* debug code */
145
146#define dm9000_dbg(db, lev, msg...) do { \
Vladimir Zapolskiy2e025c72011-08-20 14:15:55 -0700147 if ((lev) < debug) { \
Ben Dooks5b2b4ff2008-02-05 00:02:03 +0000148 dev_dbg(db->dev, msg); \
149 } \
150} while (0)
151
Ben Dooks7da99852008-02-05 00:02:06 +0000152static inline board_info_t *to_dm9000_board(struct net_device *dev)
153{
Wang Chen4cf16532008-11-12 23:38:14 -0800154 return netdev_priv(dev);
Ben Dooks7da99852008-02-05 00:02:06 +0000155}
156
Sascha Hauera1365272005-05-05 15:14:15 -0700157/* DM9000 network board routine ---------------------------- */
158
159static void
160dm9000_reset(board_info_t * db)
161{
Ben Dooksa76836f2008-02-05 00:02:02 +0000162 dev_dbg(db->dev, "resetting device\n");
163
Sascha Hauera1365272005-05-05 15:14:15 -0700164 /* RESET device */
165 writeb(DM9000_NCR, db->io_addr);
166 udelay(200);
167 writeb(NCR_RST, db->io_data);
168 udelay(200);
169}
170
171/*
172 * Read a byte from I/O port
173 */
174static u8
175ior(board_info_t * db, int reg)
176{
177 writeb(reg, db->io_addr);
178 return readb(db->io_data);
179}
180
181/*
182 * Write a byte to I/O port
183 */
184
185static void
186iow(board_info_t * db, int reg, int value)
187{
188 writeb(reg, db->io_addr);
189 writeb(value, db->io_data);
190}
191
192/* routines for sending block to chip */
193
194static void dm9000_outblk_8bit(void __iomem *reg, void *data, int count)
195{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000196 iowrite8_rep(reg, data, count);
Sascha Hauera1365272005-05-05 15:14:15 -0700197}
198
199static void dm9000_outblk_16bit(void __iomem *reg, void *data, int count)
200{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000201 iowrite16_rep(reg, data, (count+1) >> 1);
Sascha Hauera1365272005-05-05 15:14:15 -0700202}
203
204static void dm9000_outblk_32bit(void __iomem *reg, void *data, int count)
205{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000206 iowrite32_rep(reg, data, (count+3) >> 2);
Sascha Hauera1365272005-05-05 15:14:15 -0700207}
208
209/* input block from chip to memory */
210
211static void dm9000_inblk_8bit(void __iomem *reg, void *data, int count)
212{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000213 ioread8_rep(reg, data, count);
Sascha Hauera1365272005-05-05 15:14:15 -0700214}
215
216
217static void dm9000_inblk_16bit(void __iomem *reg, void *data, int count)
218{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000219 ioread16_rep(reg, data, (count+1) >> 1);
Sascha Hauera1365272005-05-05 15:14:15 -0700220}
221
222static void dm9000_inblk_32bit(void __iomem *reg, void *data, int count)
223{
Matthew Leachdaadaf62012-12-10 09:12:37 +0000224 ioread32_rep(reg, data, (count+3) >> 2);
Sascha Hauera1365272005-05-05 15:14:15 -0700225}
226
227/* dump block from chip to null */
228
229static void dm9000_dumpblk_8bit(void __iomem *reg, int count)
230{
231 int i;
232 int tmp;
233
234 for (i = 0; i < count; i++)
235 tmp = readb(reg);
236}
237
238static void dm9000_dumpblk_16bit(void __iomem *reg, int count)
239{
240 int i;
241 int tmp;
242
243 count = (count + 1) >> 1;
244
245 for (i = 0; i < count; i++)
246 tmp = readw(reg);
247}
248
249static void dm9000_dumpblk_32bit(void __iomem *reg, int count)
250{
251 int i;
252 int tmp;
253
254 count = (count + 3) >> 2;
255
256 for (i = 0; i < count; i++)
257 tmp = readl(reg);
258}
259
Joseph CHANG6741f402013-03-28 23:13:42 +0000260/*
261 * Sleep, either by using msleep() or if we are suspending, then
262 * use mdelay() to sleep.
263 */
264static void dm9000_msleep(board_info_t *db, unsigned int ms)
265{
266 if (db->in_suspend)
267 mdelay(ms);
268 else
269 msleep(ms);
270}
271
272/* Read a word from phyxcer */
273static int
274dm9000_phy_read(struct net_device *dev, int phy_reg_unused, int reg)
275{
276 board_info_t *db = netdev_priv(dev);
277 unsigned long flags;
278 unsigned int reg_save;
279 int ret;
280
281 mutex_lock(&db->addr_lock);
282
283 spin_lock_irqsave(&db->lock, flags);
284
285 /* Save previous register address */
286 reg_save = readb(db->io_addr);
287
288 /* Fill the phyxcer register into REG_0C */
289 iow(db, DM9000_EPAR, DM9000_PHY | reg);
290
291 /* Issue phyxcer read command */
292 iow(db, DM9000_EPCR, EPCR_ERPRR | EPCR_EPOS);
293
294 writeb(reg_save, db->io_addr);
295 spin_unlock_irqrestore(&db->lock, flags);
296
297 dm9000_msleep(db, 1); /* Wait read complete */
298
299 spin_lock_irqsave(&db->lock, flags);
300 reg_save = readb(db->io_addr);
301
302 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer read command */
303
304 /* The read data keeps on REG_0D & REG_0E */
305 ret = (ior(db, DM9000_EPDRH) << 8) | ior(db, DM9000_EPDRL);
306
307 /* restore the previous address */
308 writeb(reg_save, db->io_addr);
309 spin_unlock_irqrestore(&db->lock, flags);
310
311 mutex_unlock(&db->addr_lock);
312
313 dm9000_dbg(db, 5, "phy_read[%02x] -> %04x\n", reg, ret);
314 return ret;
315}
316
317/* Write a word to phyxcer */
318static void
319dm9000_phy_write(struct net_device *dev,
320 int phyaddr_unused, int reg, int value)
321{
322 board_info_t *db = netdev_priv(dev);
323 unsigned long flags;
324 unsigned long reg_save;
325
326 dm9000_dbg(db, 5, "phy_write[%02x] = %04x\n", reg, value);
327 mutex_lock(&db->addr_lock);
328
329 spin_lock_irqsave(&db->lock, flags);
330
331 /* Save previous register address */
332 reg_save = readb(db->io_addr);
333
334 /* Fill the phyxcer register into REG_0C */
335 iow(db, DM9000_EPAR, DM9000_PHY | reg);
336
337 /* Fill the written data into REG_0D & REG_0E */
338 iow(db, DM9000_EPDRL, value);
339 iow(db, DM9000_EPDRH, value >> 8);
340
341 /* Issue phyxcer write command */
342 iow(db, DM9000_EPCR, EPCR_EPOS | EPCR_ERPRW);
343
344 writeb(reg_save, db->io_addr);
345 spin_unlock_irqrestore(&db->lock, flags);
346
347 dm9000_msleep(db, 1); /* Wait write complete */
348
349 spin_lock_irqsave(&db->lock, flags);
350 reg_save = readb(db->io_addr);
351
352 iow(db, DM9000_EPCR, 0x0); /* Clear phyxcer write command */
353
354 /* restore the previous address */
355 writeb(reg_save, db->io_addr);
356
357 spin_unlock_irqrestore(&db->lock, flags);
358 mutex_unlock(&db->addr_lock);
359}
360
Sascha Hauera1365272005-05-05 15:14:15 -0700361/* dm9000_set_io
362 *
363 * select the specified set of io routines to use with the
364 * device
365 */
366
367static void dm9000_set_io(struct board_info *db, int byte_width)
368{
369 /* use the size of the data resource to work out what IO
370 * routines we want to use
371 */
372
373 switch (byte_width) {
374 case 1:
375 db->dumpblk = dm9000_dumpblk_8bit;
376 db->outblk = dm9000_outblk_8bit;
377 db->inblk = dm9000_inblk_8bit;
378 break;
379
Sascha Hauera1365272005-05-05 15:14:15 -0700380
381 case 3:
Ben Dooksa76836f2008-02-05 00:02:02 +0000382 dev_dbg(db->dev, ": 3 byte IO, falling back to 16bit\n");
383 case 2:
Sascha Hauera1365272005-05-05 15:14:15 -0700384 db->dumpblk = dm9000_dumpblk_16bit;
385 db->outblk = dm9000_outblk_16bit;
386 db->inblk = dm9000_inblk_16bit;
387 break;
388
389 case 4:
390 default:
391 db->dumpblk = dm9000_dumpblk_32bit;
392 db->outblk = dm9000_outblk_32bit;
393 db->inblk = dm9000_inblk_32bit;
394 break;
395 }
396}
397
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100398static void dm9000_schedule_poll(board_info_t *db)
399{
Ben Dooks6d406b32008-06-24 22:15:59 +0100400 if (db->type == TYPE_DM9000E)
401 schedule_delayed_work(&db->phy_poll, HZ * 2);
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100402}
Sascha Hauera1365272005-05-05 15:14:15 -0700403
Ben Dooksf42d8ae2008-02-05 00:02:21 +0000404static int dm9000_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
405{
406 board_info_t *dm = to_dm9000_board(dev);
407
408 if (!netif_running(dev))
409 return -EINVAL;
410
411 return generic_mii_ioctl(&dm->mii, if_mii(req), cmd, NULL);
412}
413
Ben Dooksf8d79e72008-06-24 22:16:02 +0100414static unsigned int
415dm9000_read_locked(board_info_t *db, int reg)
416{
417 unsigned long flags;
418 unsigned int ret;
419
420 spin_lock_irqsave(&db->lock, flags);
421 ret = ior(db, reg);
422 spin_unlock_irqrestore(&db->lock, flags);
423
424 return ret;
425}
426
427static int dm9000_wait_eeprom(board_info_t *db)
428{
429 unsigned int status;
430 int timeout = 8; /* wait max 8msec */
431
432 /* The DM9000 data sheets say we should be able to
433 * poll the ERRE bit in EPCR to wait for the EEPROM
434 * operation. From testing several chips, this bit
435 * does not seem to work.
436 *
437 * We attempt to use the bit, but fall back to the
438 * timeout (which is why we do not return an error
439 * on expiry) to say that the EEPROM operation has
440 * completed.
441 */
442
443 while (1) {
444 status = dm9000_read_locked(db, DM9000_EPCR);
445
446 if ((status & EPCR_ERRE) == 0)
447 break;
448
Ben Dooks2fcf06c2008-06-24 22:16:05 +0100449 msleep(1);
450
Ben Dooksf8d79e72008-06-24 22:16:02 +0100451 if (timeout-- < 0) {
452 dev_dbg(db->dev, "timeout waiting EEPROM\n");
453 break;
454 }
455 }
456
457 return 0;
458}
459
460/*
461 * Read a word data from EEPROM
462 */
463static void
464dm9000_read_eeprom(board_info_t *db, int offset, u8 *to)
465{
466 unsigned long flags;
467
468 if (db->flags & DM9000_PLATF_NO_EEPROM) {
469 to[0] = 0xff;
470 to[1] = 0xff;
471 return;
472 }
473
474 mutex_lock(&db->addr_lock);
475
476 spin_lock_irqsave(&db->lock, flags);
477
478 iow(db, DM9000_EPAR, offset);
479 iow(db, DM9000_EPCR, EPCR_ERPRR);
480
481 spin_unlock_irqrestore(&db->lock, flags);
482
483 dm9000_wait_eeprom(db);
484
485 /* delay for at-least 150uS */
486 msleep(1);
487
488 spin_lock_irqsave(&db->lock, flags);
489
490 iow(db, DM9000_EPCR, 0x0);
491
492 to[0] = ior(db, DM9000_EPDRL);
493 to[1] = ior(db, DM9000_EPDRH);
494
495 spin_unlock_irqrestore(&db->lock, flags);
496
497 mutex_unlock(&db->addr_lock);
498}
499
500/*
501 * Write a word data to SROM
502 */
503static void
504dm9000_write_eeprom(board_info_t *db, int offset, u8 *data)
505{
506 unsigned long flags;
507
508 if (db->flags & DM9000_PLATF_NO_EEPROM)
509 return;
510
511 mutex_lock(&db->addr_lock);
512
513 spin_lock_irqsave(&db->lock, flags);
514 iow(db, DM9000_EPAR, offset);
515 iow(db, DM9000_EPDRH, data[1]);
516 iow(db, DM9000_EPDRL, data[0]);
517 iow(db, DM9000_EPCR, EPCR_WEP | EPCR_ERPRW);
518 spin_unlock_irqrestore(&db->lock, flags);
519
520 dm9000_wait_eeprom(db);
521
522 mdelay(1); /* wait at least 150uS to clear */
523
524 spin_lock_irqsave(&db->lock, flags);
525 iow(db, DM9000_EPCR, 0);
526 spin_unlock_irqrestore(&db->lock, flags);
527
528 mutex_unlock(&db->addr_lock);
529}
530
Ben Dooks7da99852008-02-05 00:02:06 +0000531/* ethtool ops */
532
533static void dm9000_get_drvinfo(struct net_device *dev,
534 struct ethtool_drvinfo *info)
535{
536 board_info_t *dm = to_dm9000_board(dev);
537
Jiri Pirko7826d432013-01-06 00:44:26 +0000538 strlcpy(info->driver, CARDNAME, sizeof(info->driver));
539 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
540 strlcpy(info->bus_info, to_platform_device(dm->dev)->name,
541 sizeof(info->bus_info));
Ben Dooks7da99852008-02-05 00:02:06 +0000542}
543
Ben Dookse662ee02008-02-05 00:02:12 +0000544static u32 dm9000_get_msglevel(struct net_device *dev)
545{
546 board_info_t *dm = to_dm9000_board(dev);
547
548 return dm->msg_enable;
549}
550
551static void dm9000_set_msglevel(struct net_device *dev, u32 value)
552{
553 board_info_t *dm = to_dm9000_board(dev);
554
555 dm->msg_enable = value;
556}
557
Ben Dooks7da99852008-02-05 00:02:06 +0000558static int dm9000_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
559{
560 board_info_t *dm = to_dm9000_board(dev);
Ben Dooks7da99852008-02-05 00:02:06 +0000561
Ben Dooks7da99852008-02-05 00:02:06 +0000562 mii_ethtool_gset(&dm->mii, cmd);
Ben Dooks7da99852008-02-05 00:02:06 +0000563 return 0;
564}
565
566static int dm9000_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
567{
568 board_info_t *dm = to_dm9000_board(dev);
Ben Dooks7da99852008-02-05 00:02:06 +0000569
Ben Dooks9a2f0372008-02-05 00:02:10 +0000570 return mii_ethtool_sset(&dm->mii, cmd);
Ben Dooks7da99852008-02-05 00:02:06 +0000571}
572
573static int dm9000_nway_reset(struct net_device *dev)
574{
575 board_info_t *dm = to_dm9000_board(dev);
576 return mii_nway_restart(&dm->mii);
577}
578
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000579static int dm9000_set_features(struct net_device *dev,
580 netdev_features_t features)
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700581{
582 board_info_t *dm = to_dm9000_board(dev);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000583 netdev_features_t changed = dev->features ^ features;
Baruch Siach380fefb2010-05-17 17:45:48 -0700584 unsigned long flags;
Michał Mirosławc88fcb32011-04-15 04:50:49 +0000585
586 if (!(changed & NETIF_F_RXCSUM))
587 return 0;
Baruch Siach380fefb2010-05-17 17:45:48 -0700588
589 spin_lock_irqsave(&dm->lock, flags);
Michał Mirosławc88fcb32011-04-15 04:50:49 +0000590 iow(dm, DM9000_RCSR, (features & NETIF_F_RXCSUM) ? RCSR_CSUM : 0);
Baruch Siach380fefb2010-05-17 17:45:48 -0700591 spin_unlock_irqrestore(&dm->lock, flags);
592
Michał Mirosławc88fcb32011-04-15 04:50:49 +0000593 return 0;
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700594}
595
Ben Dooks7da99852008-02-05 00:02:06 +0000596static u32 dm9000_get_link(struct net_device *dev)
597{
598 board_info_t *dm = to_dm9000_board(dev);
Ben Dooksaa1eb452008-06-24 22:16:03 +0100599 u32 ret;
600
601 if (dm->flags & DM9000_PLATF_EXT_PHY)
602 ret = mii_link_ok(&dm->mii);
603 else
604 ret = dm9000_read_locked(dm, DM9000_NSR) & NSR_LINKST ? 1 : 0;
605
606 return ret;
Ben Dooks7da99852008-02-05 00:02:06 +0000607}
608
Ben Dooks29d52e52008-02-05 00:02:11 +0000609#define DM_EEPROM_MAGIC (0x444D394B)
610
611static int dm9000_get_eeprom_len(struct net_device *dev)
612{
613 return 128;
614}
615
616static int dm9000_get_eeprom(struct net_device *dev,
617 struct ethtool_eeprom *ee, u8 *data)
618{
619 board_info_t *dm = to_dm9000_board(dev);
620 int offset = ee->offset;
621 int len = ee->len;
622 int i;
623
624 /* EEPROM access is aligned to two bytes */
625
626 if ((len & 1) != 0 || (offset & 1) != 0)
627 return -EINVAL;
628
Ben Dooksbb44fb702008-02-05 00:02:20 +0000629 if (dm->flags & DM9000_PLATF_NO_EEPROM)
630 return -ENOENT;
631
Ben Dooks29d52e52008-02-05 00:02:11 +0000632 ee->magic = DM_EEPROM_MAGIC;
633
634 for (i = 0; i < len; i += 2)
635 dm9000_read_eeprom(dm, (offset + i) / 2, data + i);
636
637 return 0;
638}
639
640static int dm9000_set_eeprom(struct net_device *dev,
641 struct ethtool_eeprom *ee, u8 *data)
642{
643 board_info_t *dm = to_dm9000_board(dev);
644 int offset = ee->offset;
645 int len = ee->len;
Ben Dooks40d15cd2011-06-10 00:50:32 +0000646 int done;
Ben Dooks29d52e52008-02-05 00:02:11 +0000647
648 /* EEPROM access is aligned to two bytes */
649
Ben Dooksbb44fb702008-02-05 00:02:20 +0000650 if (dm->flags & DM9000_PLATF_NO_EEPROM)
651 return -ENOENT;
652
Ben Dooks29d52e52008-02-05 00:02:11 +0000653 if (ee->magic != DM_EEPROM_MAGIC)
654 return -EINVAL;
655
Ben Dooks40d15cd2011-06-10 00:50:32 +0000656 while (len > 0) {
657 if (len & 1 || offset & 1) {
658 int which = offset & 1;
659 u8 tmp[2];
660
661 dm9000_read_eeprom(dm, offset / 2, tmp);
662 tmp[which] = *data;
663 dm9000_write_eeprom(dm, offset / 2, tmp);
664
665 done = 1;
666 } else {
667 dm9000_write_eeprom(dm, offset / 2, data);
668 done = 2;
669 }
670
671 data += done;
672 offset += done;
673 len -= done;
674 }
Ben Dooks29d52e52008-02-05 00:02:11 +0000675
676 return 0;
677}
678
Ben Dooksc029f442009-11-10 07:22:24 +0000679static void dm9000_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
680{
681 board_info_t *dm = to_dm9000_board(dev);
682
683 memset(w, 0, sizeof(struct ethtool_wolinfo));
684
685 /* note, we could probably support wake-phy too */
686 w->supported = dm->wake_supported ? WAKE_MAGIC : 0;
687 w->wolopts = dm->wake_state;
688}
689
690static int dm9000_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
691{
692 board_info_t *dm = to_dm9000_board(dev);
693 unsigned long flags;
694 u32 opts = w->wolopts;
695 u32 wcr = 0;
696
697 if (!dm->wake_supported)
698 return -EOPNOTSUPP;
699
700 if (opts & ~WAKE_MAGIC)
701 return -EINVAL;
702
703 if (opts & WAKE_MAGIC)
704 wcr |= WCR_MAGICEN;
705
706 mutex_lock(&dm->addr_lock);
707
708 spin_lock_irqsave(&dm->lock, flags);
709 iow(dm, DM9000_WCR, wcr);
710 spin_unlock_irqrestore(&dm->lock, flags);
711
712 mutex_unlock(&dm->addr_lock);
713
714 if (dm->wake_state != opts) {
715 /* change in wol state, update IRQ state */
716
717 if (!dm->wake_state)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200718 irq_set_irq_wake(dm->irq_wake, 1);
Mark Brown83b98fb2011-11-21 07:51:56 +0000719 else if (dm->wake_state && !opts)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200720 irq_set_irq_wake(dm->irq_wake, 0);
Ben Dooksc029f442009-11-10 07:22:24 +0000721 }
722
723 dm->wake_state = opts;
724 return 0;
725}
726
Ben Dooks7da99852008-02-05 00:02:06 +0000727static const struct ethtool_ops dm9000_ethtool_ops = {
728 .get_drvinfo = dm9000_get_drvinfo,
729 .get_settings = dm9000_get_settings,
730 .set_settings = dm9000_set_settings,
Ben Dookse662ee02008-02-05 00:02:12 +0000731 .get_msglevel = dm9000_get_msglevel,
732 .set_msglevel = dm9000_set_msglevel,
Ben Dooks7da99852008-02-05 00:02:06 +0000733 .nway_reset = dm9000_nway_reset,
734 .get_link = dm9000_get_link,
Ben Dooksc029f442009-11-10 07:22:24 +0000735 .get_wol = dm9000_get_wol,
736 .set_wol = dm9000_set_wol,
Ben Dooks29d52e52008-02-05 00:02:11 +0000737 .get_eeprom_len = dm9000_get_eeprom_len,
738 .get_eeprom = dm9000_get_eeprom,
739 .set_eeprom = dm9000_set_eeprom,
Ben Dooks7da99852008-02-05 00:02:06 +0000740};
741
Ben Dooksf8dd0ec2008-06-24 22:16:04 +0100742static void dm9000_show_carrier(board_info_t *db,
743 unsigned carrier, unsigned nsr)
744{
745 struct net_device *ndev = db->ndev;
746 unsigned ncr = dm9000_read_locked(db, DM9000_NCR);
747
748 if (carrier)
749 dev_info(db->dev, "%s: link up, %dMbps, %s-duplex, no LPA\n",
750 ndev->name, (nsr & NSR_SPEED) ? 10 : 100,
751 (ncr & NCR_FDX) ? "full" : "half");
752 else
753 dev_info(db->dev, "%s: link down\n", ndev->name);
754}
755
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100756static void
757dm9000_poll_work(struct work_struct *w)
758{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700759 struct delayed_work *dw = to_delayed_work(w);
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100760 board_info_t *db = container_of(dw, board_info_t, phy_poll);
Ben Dooksf8dd0ec2008-06-24 22:16:04 +0100761 struct net_device *ndev = db->ndev;
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100762
Ben Dooksf8dd0ec2008-06-24 22:16:04 +0100763 if (db->flags & DM9000_PLATF_SIMPLE_PHY &&
764 !(db->flags & DM9000_PLATF_EXT_PHY)) {
765 unsigned nsr = dm9000_read_locked(db, DM9000_NSR);
766 unsigned old_carrier = netif_carrier_ok(ndev) ? 1 : 0;
767 unsigned new_carrier;
768
769 new_carrier = (nsr & NSR_LINKST) ? 1 : 0;
770
771 if (old_carrier != new_carrier) {
772 if (netif_msg_link(db))
773 dm9000_show_carrier(db, new_carrier, nsr);
774
775 if (!new_carrier)
776 netif_carrier_off(ndev);
777 else
778 netif_carrier_on(ndev);
779 }
780 } else
781 mii_check_media(&db->mii, netif_msg_link(db), 0);
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100782
Ben Dooksf8dd0ec2008-06-24 22:16:04 +0100783 if (netif_running(ndev))
Ben Dooks8f5bf5f2008-05-08 11:36:42 +0100784 dm9000_schedule_poll(db);
785}
Ben Dooks7da99852008-02-05 00:02:06 +0000786
Sascha Hauera1365272005-05-05 15:14:15 -0700787/* dm9000_release_board
788 *
789 * release a board, and any mapped resources
790 */
791
792static void
793dm9000_release_board(struct platform_device *pdev, struct board_info *db)
794{
Sascha Hauera1365272005-05-05 15:14:15 -0700795 /* unmap our resources */
796
797 iounmap(db->io_addr);
798 iounmap(db->io_data);
799
800 /* release the resources */
801
Ben Dooks9088fa4f2008-06-24 22:16:00 +0100802 release_resource(db->data_req);
803 kfree(db->data_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700804
Ben Dooks9088fa4f2008-06-24 22:16:00 +0100805 release_resource(db->addr_req);
806 kfree(db->addr_req);
Sascha Hauera1365272005-05-05 15:14:15 -0700807}
808
Ben Dooks6d406b32008-06-24 22:15:59 +0100809static unsigned char dm9000_type_to_char(enum dm9000_type type)
810{
811 switch (type) {
812 case TYPE_DM9000E: return 'e';
813 case TYPE_DM9000A: return 'a';
814 case TYPE_DM9000B: return 'b';
815 }
816
817 return '?';
818}
819
Ben Dooksf8d79e72008-06-24 22:16:02 +0100820/*
821 * Set DM9000 multicast address
822 */
823static void
Baruch Siach380fefb2010-05-17 17:45:48 -0700824dm9000_hash_table_unlocked(struct net_device *dev)
Ben Dooksf8d79e72008-06-24 22:16:02 +0100825{
Wang Chen4cf16532008-11-12 23:38:14 -0800826 board_info_t *db = netdev_priv(dev);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000827 struct netdev_hw_addr *ha;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100828 int i, oft;
829 u32 hash_val;
830 u16 hash_table[4];
831 u8 rcr = RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100832
833 dm9000_dbg(db, 1, "entering %s\n", __func__);
834
Ben Dooksf8d79e72008-06-24 22:16:02 +0100835 for (i = 0, oft = DM9000_PAR; i < 6; i++, oft++)
836 iow(db, oft, dev->dev_addr[i]);
837
838 /* Clear Hash Table */
839 for (i = 0; i < 4; i++)
840 hash_table[i] = 0x0;
841
842 /* broadcast address */
843 hash_table[3] = 0x8000;
844
845 if (dev->flags & IFF_PROMISC)
846 rcr |= RCR_PRMSC;
847
848 if (dev->flags & IFF_ALLMULTI)
849 rcr |= RCR_ALL;
850
851 /* the multicast address in Hash Table : 64 bits */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000852 netdev_for_each_mc_addr(ha, dev) {
853 hash_val = ether_crc_le(6, ha->addr) & 0x3f;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100854 hash_table[hash_val / 16] |= (u16) 1 << (hash_val % 16);
855 }
856
857 /* Write the hash table to MAC MD table */
858 for (i = 0, oft = DM9000_MAR; i < 4; i++) {
859 iow(db, oft++, hash_table[i]);
860 iow(db, oft++, hash_table[i] >> 8);
861 }
862
863 iow(db, DM9000_RCR, rcr);
Baruch Siach380fefb2010-05-17 17:45:48 -0700864}
865
866static void
867dm9000_hash_table(struct net_device *dev)
868{
869 board_info_t *db = netdev_priv(dev);
870 unsigned long flags;
871
872 spin_lock_irqsave(&db->lock, flags);
873 dm9000_hash_table_unlocked(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100874 spin_unlock_irqrestore(&db->lock, flags);
875}
876
877/*
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700878 * Initialize dm9000 board
Ben Dooksf8d79e72008-06-24 22:16:02 +0100879 */
880static void
881dm9000_init_dm9000(struct net_device *dev)
882{
Wang Chen4cf16532008-11-12 23:38:14 -0800883 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100884 unsigned int imr;
Ben Dooksc029f442009-11-10 07:22:24 +0000885 unsigned int ncr;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100886
887 dm9000_dbg(db, 1, "entering %s\n", __func__);
888
889 /* I/O mode */
890 db->io_mode = ior(db, DM9000_ISR) >> 6; /* ISR bit7:6 keeps I/O mode */
891
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700892 /* Checksum mode */
Michał Mirosławc88fcb32011-04-15 04:50:49 +0000893 if (dev->hw_features & NETIF_F_RXCSUM)
Mark Brown56d37f12011-04-18 01:04:37 +0000894 iow(db, DM9000_RCSR,
Michał Mirosławc88fcb32011-04-15 04:50:49 +0000895 (dev->features & NETIF_F_RXCSUM) ? RCSR_CSUM : 0);
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700896
Ben Dooksf8d79e72008-06-24 22:16:02 +0100897 iow(db, DM9000_GPCR, GPCR_GEP_CNTL); /* Let GPIO0 output */
Ben Dooksf8d79e72008-06-24 22:16:02 +0100898
Joseph CHANG6741f402013-03-28 23:13:42 +0000899 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
900 dm9000_phy_write(dev, 0, MII_DM_DSPCR, DSPCR_INIT_PARAM); /* Init */
901
Ben Dooksc029f442009-11-10 07:22:24 +0000902 ncr = (db->flags & DM9000_PLATF_EXT_PHY) ? NCR_EXT_PHY : 0;
903
904 /* if wol is needed, then always set NCR_WAKEEN otherwise we end
905 * up dumping the wake events if we disable this. There is already
906 * a wake-mask in DM9000_WCR */
907 if (db->wake_supported)
908 ncr |= NCR_WAKEEN;
909
910 iow(db, DM9000_NCR, ncr);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100911
912 /* Program operating register */
913 iow(db, DM9000_TCR, 0); /* TX Polling clear */
914 iow(db, DM9000_BPTR, 0x3f); /* Less 3Kb, 200us */
915 iow(db, DM9000_FCR, 0xff); /* Flow Control */
916 iow(db, DM9000_SMCR, 0); /* Special Mode */
917 /* clear TX status */
918 iow(db, DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);
919 iow(db, DM9000_ISR, ISR_CLR_STATUS); /* Clear interrupt status */
920
921 /* Set address filter table */
Baruch Siach380fefb2010-05-17 17:45:48 -0700922 dm9000_hash_table_unlocked(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100923
924 imr = IMR_PAR | IMR_PTM | IMR_PRM;
925 if (db->type != TYPE_DM9000E)
926 imr |= IMR_LNKCHNG;
927
928 db->imr_all = imr;
929
930 /* Enable TX/RX interrupt mask */
931 iow(db, DM9000_IMR, imr);
932
933 /* Init Driver variable */
934 db->tx_pkt_cnt = 0;
935 db->queue_pkt_len = 0;
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700936 dev->trans_start = jiffies;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100937}
938
939/* Our watchdog timed out. Called by the networking layer */
940static void dm9000_timeout(struct net_device *dev)
941{
Wang Chen4cf16532008-11-12 23:38:14 -0800942 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100943 u8 reg_save;
944 unsigned long flags;
945
946 /* Save previous register address */
Ben Dooksf8d79e72008-06-24 22:16:02 +0100947 spin_lock_irqsave(&db->lock, flags);
Henry Nestler8dde9242011-02-20 11:44:58 +0000948 reg_save = readb(db->io_addr);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100949
950 netif_stop_queue(dev);
951 dm9000_reset(db);
952 dm9000_init_dm9000(dev);
953 /* We can accept TX packets again */
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700954 dev->trans_start = jiffies; /* prevent tx timeout */
Ben Dooksf8d79e72008-06-24 22:16:02 +0100955 netif_wake_queue(dev);
956
957 /* Restore previous register address */
958 writeb(reg_save, db->io_addr);
959 spin_unlock_irqrestore(&db->lock, flags);
960}
961
Yeasah Pell5dcc60b2009-07-06 18:12:33 -0700962static void dm9000_send_packet(struct net_device *dev,
963 int ip_summed,
964 u16 pkt_len)
965{
966 board_info_t *dm = to_dm9000_board(dev);
967
968 /* The DM9000 is not smart enough to leave fragmented packets alone. */
969 if (dm->ip_summed != ip_summed) {
970 if (ip_summed == CHECKSUM_NONE)
971 iow(dm, DM9000_TCCR, 0);
972 else
973 iow(dm, DM9000_TCCR, TCCR_IP | TCCR_UDP | TCCR_TCP);
974 dm->ip_summed = ip_summed;
975 }
976
977 /* Set TX length to DM9000 */
978 iow(dm, DM9000_TXPLL, pkt_len);
979 iow(dm, DM9000_TXPLH, pkt_len >> 8);
980
981 /* Issue TX polling command */
982 iow(dm, DM9000_TCR, TCR_TXREQ); /* Cleared after TX complete */
983}
984
Ben Dooksf8d79e72008-06-24 22:16:02 +0100985/*
986 * Hardware start transmission.
987 * Send a packet to media from the upper layer.
988 */
989static int
990dm9000_start_xmit(struct sk_buff *skb, struct net_device *dev)
991{
992 unsigned long flags;
Wang Chen4cf16532008-11-12 23:38:14 -0800993 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +0100994
995 dm9000_dbg(db, 3, "%s:\n", __func__);
996
997 if (db->tx_pkt_cnt > 1)
Patrick McHardy5b548142009-06-12 06:22:29 +0000998 return NETDEV_TX_BUSY;
Ben Dooksf8d79e72008-06-24 22:16:02 +0100999
1000 spin_lock_irqsave(&db->lock, flags);
1001
1002 /* Move data to DM9000 TX RAM */
1003 writeb(DM9000_MWCMD, db->io_addr);
1004
1005 (db->outblk)(db->io_data, skb->data, skb->len);
1006 dev->stats.tx_bytes += skb->len;
1007
1008 db->tx_pkt_cnt++;
1009 /* TX control: First packet immediately send, second packet queue */
1010 if (db->tx_pkt_cnt == 1) {
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001011 dm9000_send_packet(dev, skb->ip_summed, skb->len);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001012 } else {
1013 /* Second packet */
1014 db->queue_pkt_len = skb->len;
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001015 db->queue_ip_summed = skb->ip_summed;
Ben Dooksf8d79e72008-06-24 22:16:02 +01001016 netif_stop_queue(dev);
1017 }
1018
1019 spin_unlock_irqrestore(&db->lock, flags);
1020
1021 /* free this SKB */
1022 dev_kfree_skb(skb);
1023
Patrick McHardy6ed10652009-06-23 06:03:08 +00001024 return NETDEV_TX_OK;
Ben Dooksf8d79e72008-06-24 22:16:02 +01001025}
1026
1027/*
1028 * DM9000 interrupt handler
1029 * receive the packet to upper layer, free the transmitted packet
1030 */
1031
1032static void dm9000_tx_done(struct net_device *dev, board_info_t *db)
1033{
1034 int tx_status = ior(db, DM9000_NSR); /* Got TX status */
1035
1036 if (tx_status & (NSR_TX2END | NSR_TX1END)) {
1037 /* One packet sent complete */
1038 db->tx_pkt_cnt--;
1039 dev->stats.tx_packets++;
1040
1041 if (netif_msg_tx_done(db))
1042 dev_dbg(db->dev, "tx done, NSR %02x\n", tx_status);
1043
1044 /* Queue packet check & send */
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001045 if (db->tx_pkt_cnt > 0)
1046 dm9000_send_packet(dev, db->queue_ip_summed,
1047 db->queue_pkt_len);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001048 netif_wake_queue(dev);
1049 }
1050}
1051
1052struct dm9000_rxhdr {
1053 u8 RxPktReady;
1054 u8 RxStatus;
1055 __le16 RxLen;
Eric Dumazetba2d3582010-06-02 18:10:09 +00001056} __packed;
Ben Dooksf8d79e72008-06-24 22:16:02 +01001057
1058/*
1059 * Received a packet and pass to upper layer
1060 */
1061static void
1062dm9000_rx(struct net_device *dev)
1063{
Wang Chen4cf16532008-11-12 23:38:14 -08001064 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001065 struct dm9000_rxhdr rxhdr;
1066 struct sk_buff *skb;
1067 u8 rxbyte, *rdptr;
1068 bool GoodPacket;
1069 int RxLen;
1070
1071 /* Check packet ready or not */
1072 do {
1073 ior(db, DM9000_MRCMDX); /* Dummy read */
1074
1075 /* Get most updated data */
1076 rxbyte = readb(db->io_data);
1077
1078 /* Status check: this byte must be 0 or 1 */
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001079 if (rxbyte & DM9000_PKT_ERR) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001080 dev_warn(db->dev, "status check fail: %d\n", rxbyte);
1081 iow(db, DM9000_RCR, 0x00); /* Stop Device */
1082 iow(db, DM9000_ISR, IMR_PAR); /* Stop INT request */
1083 return;
1084 }
1085
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001086 if (!(rxbyte & DM9000_PKT_RDY))
Ben Dooksf8d79e72008-06-24 22:16:02 +01001087 return;
1088
1089 /* A packet ready now & Get status/length */
1090 GoodPacket = true;
1091 writeb(DM9000_MRCMD, db->io_addr);
1092
1093 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr));
1094
1095 RxLen = le16_to_cpu(rxhdr.RxLen);
1096
1097 if (netif_msg_rx_status(db))
1098 dev_dbg(db->dev, "RX: status %02x, length %04x\n",
1099 rxhdr.RxStatus, RxLen);
1100
1101 /* Packet Status check */
1102 if (RxLen < 0x40) {
1103 GoodPacket = false;
1104 if (netif_msg_rx_err(db))
1105 dev_dbg(db->dev, "RX: Bad Packet (runt)\n");
1106 }
1107
1108 if (RxLen > DM9000_PKT_MAX) {
1109 dev_dbg(db->dev, "RST: RX Len:%x\n", RxLen);
1110 }
1111
Ben Dooksf8e5e772008-07-17 20:29:13 +01001112 /* rxhdr.RxStatus is identical to RSR register. */
1113 if (rxhdr.RxStatus & (RSR_FOE | RSR_CE | RSR_AE |
1114 RSR_PLE | RSR_RWTO |
1115 RSR_LCS | RSR_RF)) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001116 GoodPacket = false;
Ben Dooksf8e5e772008-07-17 20:29:13 +01001117 if (rxhdr.RxStatus & RSR_FOE) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001118 if (netif_msg_rx_err(db))
1119 dev_dbg(db->dev, "fifo error\n");
1120 dev->stats.rx_fifo_errors++;
1121 }
Ben Dooksf8e5e772008-07-17 20:29:13 +01001122 if (rxhdr.RxStatus & RSR_CE) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001123 if (netif_msg_rx_err(db))
1124 dev_dbg(db->dev, "crc error\n");
1125 dev->stats.rx_crc_errors++;
1126 }
Ben Dooksf8e5e772008-07-17 20:29:13 +01001127 if (rxhdr.RxStatus & RSR_RF) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001128 if (netif_msg_rx_err(db))
1129 dev_dbg(db->dev, "length error\n");
1130 dev->stats.rx_length_errors++;
1131 }
1132 }
1133
1134 /* Move data from DM9000 */
Joe Perches8e95a202009-12-03 07:58:21 +00001135 if (GoodPacket &&
Pradeep A Dalvi21a4e462012-02-05 02:50:10 +00001136 ((skb = netdev_alloc_skb(dev, RxLen + 4)) != NULL)) {
Ben Dooksf8d79e72008-06-24 22:16:02 +01001137 skb_reserve(skb, 2);
1138 rdptr = (u8 *) skb_put(skb, RxLen - 4);
1139
1140 /* Read received packet from RX SRAM */
1141
1142 (db->inblk)(db->io_data, rdptr, RxLen);
1143 dev->stats.rx_bytes += RxLen;
1144
1145 /* Pass to upper layer */
1146 skb->protocol = eth_type_trans(skb, dev);
Michał Mirosławc88fcb32011-04-15 04:50:49 +00001147 if (dev->features & NETIF_F_RXCSUM) {
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001148 if ((((rxbyte & 0x1c) << 3) & rxbyte) == 0)
1149 skb->ip_summed = CHECKSUM_UNNECESSARY;
1150 else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001151 skb_checksum_none_assert(skb);
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001152 }
Ben Dooksf8d79e72008-06-24 22:16:02 +01001153 netif_rx(skb);
1154 dev->stats.rx_packets++;
1155
1156 } else {
1157 /* need to dump the packet's data */
1158
1159 (db->dumpblk)(db->io_data, RxLen);
1160 }
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001161 } while (rxbyte & DM9000_PKT_RDY);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001162}
1163
1164static irqreturn_t dm9000_interrupt(int irq, void *dev_id)
1165{
1166 struct net_device *dev = dev_id;
Wang Chen4cf16532008-11-12 23:38:14 -08001167 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001168 int int_status;
David Brownelle3162d32009-03-22 21:28:39 -07001169 unsigned long flags;
Ben Dooksf8d79e72008-06-24 22:16:02 +01001170 u8 reg_save;
1171
1172 dm9000_dbg(db, 3, "entering %s\n", __func__);
1173
1174 /* A real interrupt coming */
1175
David Brownelle3162d32009-03-22 21:28:39 -07001176 /* holders of db->lock must always block IRQs */
1177 spin_lock_irqsave(&db->lock, flags);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001178
1179 /* Save previous register address */
1180 reg_save = readb(db->io_addr);
1181
1182 /* Disable all interrupts */
1183 iow(db, DM9000_IMR, IMR_PAR);
1184
1185 /* Got DM9000 interrupt status */
1186 int_status = ior(db, DM9000_ISR); /* Got ISR */
1187 iow(db, DM9000_ISR, int_status); /* Clear ISR status */
1188
1189 if (netif_msg_intr(db))
1190 dev_dbg(db->dev, "interrupt status %02x\n", int_status);
1191
1192 /* Received the coming packet */
1193 if (int_status & ISR_PRS)
1194 dm9000_rx(dev);
1195
1196 /* Trnasmit Interrupt check */
1197 if (int_status & ISR_PTS)
1198 dm9000_tx_done(dev, db);
1199
1200 if (db->type != TYPE_DM9000E) {
1201 if (int_status & ISR_LNKCHNG) {
1202 /* fire a link-change request */
1203 schedule_delayed_work(&db->phy_poll, 1);
1204 }
1205 }
1206
1207 /* Re-enable interrupt mask */
1208 iow(db, DM9000_IMR, db->imr_all);
1209
1210 /* Restore previous register address */
1211 writeb(reg_save, db->io_addr);
1212
David Brownelle3162d32009-03-22 21:28:39 -07001213 spin_unlock_irqrestore(&db->lock, flags);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001214
1215 return IRQ_HANDLED;
1216}
1217
Ben Dooksc029f442009-11-10 07:22:24 +00001218static irqreturn_t dm9000_wol_interrupt(int irq, void *dev_id)
1219{
1220 struct net_device *dev = dev_id;
1221 board_info_t *db = netdev_priv(dev);
1222 unsigned long flags;
1223 unsigned nsr, wcr;
1224
1225 spin_lock_irqsave(&db->lock, flags);
1226
1227 nsr = ior(db, DM9000_NSR);
1228 wcr = ior(db, DM9000_WCR);
1229
1230 dev_dbg(db->dev, "%s: NSR=0x%02x, WCR=0x%02x\n", __func__, nsr, wcr);
1231
1232 if (nsr & NSR_WAKEST) {
1233 /* clear, so we can avoid */
1234 iow(db, DM9000_NSR, NSR_WAKEST);
1235
1236 if (wcr & WCR_LINKST)
1237 dev_info(db->dev, "wake by link status change\n");
1238 if (wcr & WCR_SAMPLEST)
1239 dev_info(db->dev, "wake by sample packet\n");
1240 if (wcr & WCR_MAGICST )
1241 dev_info(db->dev, "wake by magic packet\n");
1242 if (!(wcr & (WCR_LINKST | WCR_SAMPLEST | WCR_MAGICST)))
1243 dev_err(db->dev, "wake signalled with no reason? "
1244 "NSR=0x%02x, WSR=0x%02x\n", nsr, wcr);
1245
1246 }
1247
1248 spin_unlock_irqrestore(&db->lock, flags);
1249
1250 return (nsr & NSR_WAKEST) ? IRQ_HANDLED : IRQ_NONE;
1251}
1252
Ben Dooksf8d79e72008-06-24 22:16:02 +01001253#ifdef CONFIG_NET_POLL_CONTROLLER
1254/*
1255 *Used by netconsole
1256 */
1257static void dm9000_poll_controller(struct net_device *dev)
1258{
1259 disable_irq(dev->irq);
1260 dm9000_interrupt(dev->irq, dev);
1261 enable_irq(dev->irq);
1262}
1263#endif
1264
1265/*
1266 * Open the interface.
1267 * The interface is opened whenever "ifconfig" actives it.
1268 */
1269static int
1270dm9000_open(struct net_device *dev)
1271{
Wang Chen4cf16532008-11-12 23:38:14 -08001272 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001273 unsigned long irqflags = db->irq_res->flags & IRQF_TRIGGER_MASK;
1274
1275 if (netif_msg_ifup(db))
1276 dev_dbg(db->dev, "enabling %s\n", dev->name);
1277
1278 /* If there is no IRQ type specified, default to something that
1279 * may work, and tell the user that this is a problem */
1280
Ben Dooks6ff4ff02008-06-24 22:16:07 +01001281 if (irqflags == IRQF_TRIGGER_NONE)
Ben Dooksf8d79e72008-06-24 22:16:02 +01001282 dev_warn(db->dev, "WARNING: no IRQ resource flags set.\n");
Ben Dooks6ff4ff02008-06-24 22:16:07 +01001283
Ben Dooksf8d79e72008-06-24 22:16:02 +01001284 irqflags |= IRQF_SHARED;
1285
Henry Nestler108f5182011-02-22 11:29:42 +00001286 /* GPIO0 on pre-activate PHY, Reg 1F is not set by reset */
1287 iow(db, DM9000_GPR, 0); /* REG_1F bit0 activate phyxcer */
1288 mdelay(1); /* delay needs by DM9000B */
1289
Ben Dooksf8d79e72008-06-24 22:16:02 +01001290 /* Initialize DM9000 board */
1291 dm9000_reset(db);
1292 dm9000_init_dm9000(dev);
1293
Mark Brown6979d5d2011-06-01 10:18:09 +00001294 if (request_irq(dev->irq, dm9000_interrupt, irqflags, dev->name, dev))
1295 return -EAGAIN;
1296
Ben Dooksf8d79e72008-06-24 22:16:02 +01001297 /* Init driver variable */
1298 db->dbug_cnt = 0;
1299
1300 mii_check_media(&db->mii, netif_msg_link(db), 1);
1301 netif_start_queue(dev);
1302
1303 dm9000_schedule_poll(db);
1304
1305 return 0;
1306}
1307
Ben Dooksf8d79e72008-06-24 22:16:02 +01001308static void
1309dm9000_shutdown(struct net_device *dev)
1310{
Wang Chen4cf16532008-11-12 23:38:14 -08001311 board_info_t *db = netdev_priv(dev);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001312
1313 /* RESET device */
1314 dm9000_phy_write(dev, 0, MII_BMCR, BMCR_RESET); /* PHY RESET */
1315 iow(db, DM9000_GPR, 0x01); /* Power-Down PHY */
1316 iow(db, DM9000_IMR, IMR_PAR); /* Disable all interrupt */
1317 iow(db, DM9000_RCR, 0x00); /* Disable RX */
1318}
1319
1320/*
1321 * Stop the interface.
1322 * The interface is stopped when it is brought.
1323 */
1324static int
1325dm9000_stop(struct net_device *ndev)
1326{
Wang Chen4cf16532008-11-12 23:38:14 -08001327 board_info_t *db = netdev_priv(ndev);
Ben Dooksf8d79e72008-06-24 22:16:02 +01001328
1329 if (netif_msg_ifdown(db))
1330 dev_dbg(db->dev, "shutting down %s\n", ndev->name);
1331
1332 cancel_delayed_work_sync(&db->phy_poll);
1333
1334 netif_stop_queue(ndev);
1335 netif_carrier_off(ndev);
1336
1337 /* free interrupt */
1338 free_irq(ndev->irq, ndev);
1339
1340 dm9000_shutdown(ndev);
1341
1342 return 0;
1343}
1344
Alexander Beregalovd88106b2009-04-15 12:52:37 +00001345static const struct net_device_ops dm9000_netdev_ops = {
1346 .ndo_open = dm9000_open,
1347 .ndo_stop = dm9000_stop,
1348 .ndo_start_xmit = dm9000_start_xmit,
1349 .ndo_tx_timeout = dm9000_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001350 .ndo_set_rx_mode = dm9000_hash_table,
Alexander Beregalovd88106b2009-04-15 12:52:37 +00001351 .ndo_do_ioctl = dm9000_ioctl,
1352 .ndo_change_mtu = eth_change_mtu,
Michał Mirosławc88fcb32011-04-15 04:50:49 +00001353 .ndo_set_features = dm9000_set_features,
Alexander Beregalovd88106b2009-04-15 12:52:37 +00001354 .ndo_validate_addr = eth_validate_addr,
1355 .ndo_set_mac_address = eth_mac_addr,
1356#ifdef CONFIG_NET_POLL_CONTROLLER
1357 .ndo_poll_controller = dm9000_poll_controller,
1358#endif
1359};
1360
Sascha Hauera1365272005-05-05 15:14:15 -07001361/*
1362 * Search DM9000 board, allocate space and register it
1363 */
Bill Pemberton6b6a3e72012-12-03 09:23:06 -05001364static int
Russell King3ae5eae2005-11-09 22:32:44 +00001365dm9000_probe(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001366{
Sascha Hauera1365272005-05-05 15:14:15 -07001367 struct dm9000_plat_data *pdata = pdev->dev.platform_data;
1368 struct board_info *db; /* Point a board information structure */
1369 struct net_device *ndev;
Ben Dooks179c7432008-02-05 00:02:23 +00001370 const unsigned char *mac_src;
Sascha Hauera1365272005-05-05 15:14:15 -07001371 int ret = 0;
1372 int iosize;
1373 int i;
1374 u32 id_val;
1375
Sascha Hauera1365272005-05-05 15:14:15 -07001376 /* Init network device */
Ben Dooksf8d79e72008-06-24 22:16:02 +01001377 ndev = alloc_etherdev(sizeof(struct board_info));
Joe Perches41de8d42012-01-29 13:47:52 +00001378 if (!ndev)
Sascha Hauera1365272005-05-05 15:14:15 -07001379 return -ENOMEM;
Sascha Hauera1365272005-05-05 15:14:15 -07001380
Russell King3ae5eae2005-11-09 22:32:44 +00001381 SET_NETDEV_DEV(ndev, &pdev->dev);
Sascha Hauera1365272005-05-05 15:14:15 -07001382
Enrico Scholz37d5dca2008-05-08 11:35:13 +01001383 dev_dbg(&pdev->dev, "dm9000_probe()\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001384
1385 /* setup board info structure */
Wang Chen4cf16532008-11-12 23:38:14 -08001386 db = netdev_priv(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001387
Ben Dooksa76836f2008-02-05 00:02:02 +00001388 db->dev = &pdev->dev;
Ben Dooks8f5bf5f2008-05-08 11:36:42 +01001389 db->ndev = ndev;
Ben Dooksa76836f2008-02-05 00:02:02 +00001390
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001391 spin_lock_init(&db->lock);
Ben Dooks9a2f0372008-02-05 00:02:10 +00001392 mutex_init(&db->addr_lock);
Ben Dooks9ef9ac52005-07-23 17:25:18 +01001393
Ben Dooks8f5bf5f2008-05-08 11:36:42 +01001394 INIT_DELAYED_WORK(&db->phy_poll, dm9000_poll_work);
1395
Laurent Pinchart08c3f572008-06-24 22:15:57 +01001396 db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1397 db->data_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1398 db->irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1399
1400 if (db->addr_res == NULL || db->data_res == NULL ||
1401 db->irq_res == NULL) {
1402 dev_err(db->dev, "insufficient resources\n");
1403 ret = -ENOENT;
1404 goto out;
1405 }
1406
Ben Dooksc029f442009-11-10 07:22:24 +00001407 db->irq_wake = platform_get_irq(pdev, 1);
1408 if (db->irq_wake >= 0) {
1409 dev_dbg(db->dev, "wakeup irq %d\n", db->irq_wake);
1410
1411 ret = request_irq(db->irq_wake, dm9000_wol_interrupt,
1412 IRQF_SHARED, dev_name(db->dev), ndev);
1413 if (ret) {
1414 dev_err(db->dev, "cannot get wakeup irq (%d)\n", ret);
1415 } else {
1416
1417 /* test to see if irq is really wakeup capable */
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001418 ret = irq_set_irq_wake(db->irq_wake, 1);
Ben Dooksc029f442009-11-10 07:22:24 +00001419 if (ret) {
1420 dev_err(db->dev, "irq %d cannot set wakeup (%d)\n",
1421 db->irq_wake, ret);
1422 ret = 0;
1423 } else {
Thomas Gleixnerdced35a2011-03-28 17:49:12 +02001424 irq_set_irq_wake(db->irq_wake, 0);
Ben Dooksc029f442009-11-10 07:22:24 +00001425 db->wake_supported = 1;
1426 }
1427 }
1428 }
1429
Tobias Klauserec282e92009-09-09 01:07:43 +00001430 iosize = resource_size(db->addr_res);
Laurent Pinchart08c3f572008-06-24 22:15:57 +01001431 db->addr_req = request_mem_region(db->addr_res->start, iosize,
1432 pdev->name);
1433
1434 if (db->addr_req == NULL) {
1435 dev_err(db->dev, "cannot claim address reg area\n");
1436 ret = -EIO;
1437 goto out;
1438 }
1439
1440 db->io_addr = ioremap(db->addr_res->start, iosize);
1441
1442 if (db->io_addr == NULL) {
1443 dev_err(db->dev, "failed to ioremap address reg\n");
1444 ret = -EINVAL;
1445 goto out;
1446 }
1447
Tobias Klauserec282e92009-09-09 01:07:43 +00001448 iosize = resource_size(db->data_res);
Laurent Pinchart08c3f572008-06-24 22:15:57 +01001449 db->data_req = request_mem_region(db->data_res->start, iosize,
1450 pdev->name);
1451
1452 if (db->data_req == NULL) {
1453 dev_err(db->dev, "cannot claim data reg area\n");
1454 ret = -EIO;
1455 goto out;
1456 }
1457
1458 db->io_data = ioremap(db->data_res->start, iosize);
1459
1460 if (db->io_data == NULL) {
1461 dev_err(db->dev, "failed to ioremap data reg\n");
1462 ret = -EINVAL;
1463 goto out;
1464 }
1465
1466 /* fill in parameters for net-dev structure */
1467 ndev->base_addr = (unsigned long)db->io_addr;
1468 ndev->irq = db->irq_res->start;
1469
1470 /* ensure at least we have a default set of IO routines */
1471 dm9000_set_io(db, iosize);
1472
Sascha Hauera1365272005-05-05 15:14:15 -07001473 /* check to see if anything is being over-ridden */
1474 if (pdata != NULL) {
1475 /* check to see if the driver wants to over-ride the
1476 * default IO width */
1477
1478 if (pdata->flags & DM9000_PLATF_8BITONLY)
1479 dm9000_set_io(db, 1);
1480
1481 if (pdata->flags & DM9000_PLATF_16BITONLY)
1482 dm9000_set_io(db, 2);
1483
1484 if (pdata->flags & DM9000_PLATF_32BITONLY)
1485 dm9000_set_io(db, 4);
1486
1487 /* check to see if there are any IO routine
1488 * over-rides */
1489
1490 if (pdata->inblk != NULL)
1491 db->inblk = pdata->inblk;
1492
1493 if (pdata->outblk != NULL)
1494 db->outblk = pdata->outblk;
1495
1496 if (pdata->dumpblk != NULL)
1497 db->dumpblk = pdata->dumpblk;
Ben Dooks33ba5092008-02-05 00:02:01 +00001498
1499 db->flags = pdata->flags;
Sascha Hauera1365272005-05-05 15:14:15 -07001500 }
1501
Ben Dooksf8dd0ec2008-06-24 22:16:04 +01001502#ifdef CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL
1503 db->flags |= DM9000_PLATF_SIMPLE_PHY;
1504#endif
1505
Joseph CHANG6741f402013-03-28 23:13:42 +00001506 /* Fixing bug on dm9000_probe, takeover dm9000_reset(db),
1507 * Need 'NCR_MAC_LBK' bit to indeed stable our DM9000 fifo
1508 * while probe stage.
1509 */
1510
1511 iow(db, DM9000_NCR, NCR_MAC_LBK | NCR_RST);
Sascha Hauera1365272005-05-05 15:14:15 -07001512
Ben Dooks59eae1f2008-06-24 22:16:01 +01001513 /* try multiple times, DM9000 sometimes gets the read wrong */
Ben Dooks513b6be2008-02-05 00:02:22 +00001514 for (i = 0; i < 8; i++) {
Sascha Hauera1365272005-05-05 15:14:15 -07001515 id_val = ior(db, DM9000_VIDL);
1516 id_val |= (u32)ior(db, DM9000_VIDH) << 8;
1517 id_val |= (u32)ior(db, DM9000_PIDL) << 16;
1518 id_val |= (u32)ior(db, DM9000_PIDH) << 24;
1519
1520 if (id_val == DM9000_ID)
1521 break;
Ben Dooksa76836f2008-02-05 00:02:02 +00001522 dev_err(db->dev, "read wrong id 0x%08x\n", id_val);
Sascha Hauera1365272005-05-05 15:14:15 -07001523 }
1524
1525 if (id_val != DM9000_ID) {
Ben Dooksa76836f2008-02-05 00:02:02 +00001526 dev_err(db->dev, "wrong id: 0x%08x\n", id_val);
Mike Rapoport418d6f82007-10-18 09:23:11 +02001527 ret = -ENODEV;
1528 goto out;
Sascha Hauera1365272005-05-05 15:14:15 -07001529 }
1530
Ben Dooks6d406b32008-06-24 22:15:59 +01001531 /* Identify what type of DM9000 we are working on */
1532
1533 id_val = ior(db, DM9000_CHIPR);
1534 dev_dbg(db->dev, "dm9000 revision 0x%02x\n", id_val);
1535
1536 switch (id_val) {
1537 case CHIPR_DM9000A:
1538 db->type = TYPE_DM9000A;
1539 break;
1540 case CHIPR_DM9000B:
1541 db->type = TYPE_DM9000B;
1542 break;
1543 default:
1544 dev_dbg(db->dev, "ID %02x => defaulting to DM9000E\n", id_val);
1545 db->type = TYPE_DM9000E;
1546 }
1547
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001548 /* dm9000a/b are capable of hardware checksum offload */
1549 if (db->type == TYPE_DM9000A || db->type == TYPE_DM9000B) {
Michał Mirosławc88fcb32011-04-15 04:50:49 +00001550 ndev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM;
1551 ndev->features |= ndev->hw_features;
Yeasah Pell5dcc60b2009-07-06 18:12:33 -07001552 }
1553
Sascha Hauera1365272005-05-05 15:14:15 -07001554 /* from this point we assume that we have found a DM9000 */
1555
1556 /* driver system function */
1557 ether_setup(ndev);
1558
Alexander Beregalovd88106b2009-04-15 12:52:37 +00001559 ndev->netdev_ops = &dm9000_netdev_ops;
1560 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
1561 ndev->ethtool_ops = &dm9000_ethtool_ops;
Sascha Hauera1365272005-05-05 15:14:15 -07001562
Sascha Hauera1365272005-05-05 15:14:15 -07001563 db->msg_enable = NETIF_MSG_LINK;
1564 db->mii.phy_id_mask = 0x1f;
1565 db->mii.reg_num_mask = 0x1f;
1566 db->mii.force_media = 0;
1567 db->mii.full_duplex = 0;
1568 db->mii.dev = ndev;
1569 db->mii.mdio_read = dm9000_phy_read;
1570 db->mii.mdio_write = dm9000_phy_write;
1571
Ben Dooks179c7432008-02-05 00:02:23 +00001572 mac_src = "eeprom";
1573
Ben Dooks86c62fa2008-02-05 00:02:09 +00001574 /* try reading the node address from the attached EEPROM */
1575 for (i = 0; i < 6; i += 2)
1576 dm9000_read_eeprom(db, i / 2, ndev->dev_addr+i);
Sascha Hauera1365272005-05-05 15:14:15 -07001577
Laurent Pinchartfe414242008-07-23 17:41:52 +02001578 if (!is_valid_ether_addr(ndev->dev_addr) && pdata != NULL) {
1579 mac_src = "platform data";
1580 memcpy(ndev->dev_addr, pdata->dev_addr, 6);
1581 }
1582
Ben Dooks5b55dda2006-06-13 23:50:15 +01001583 if (!is_valid_ether_addr(ndev->dev_addr)) {
1584 /* try reading from mac */
Ben Dooksf8d79e72008-06-24 22:16:02 +01001585
Ben Dooks179c7432008-02-05 00:02:23 +00001586 mac_src = "chip";
Ben Dooks5b55dda2006-06-13 23:50:15 +01001587 for (i = 0; i < 6; i++)
1588 ndev->dev_addr[i] = ior(db, i+DM9000_PAR);
1589 }
1590
Ben Dooks85e6b8c2011-02-24 03:17:12 +00001591 if (!is_valid_ether_addr(ndev->dev_addr)) {
Ben Dooksa76836f2008-02-05 00:02:02 +00001592 dev_warn(db->dev, "%s: Invalid ethernet MAC address. Please "
1593 "set using ifconfig\n", ndev->name);
Sascha Hauera1365272005-05-05 15:14:15 -07001594
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001595 eth_hw_addr_random(ndev);
Ben Dooks85e6b8c2011-02-24 03:17:12 +00001596 mac_src = "random";
1597 }
1598
1599
Russell King3ae5eae2005-11-09 22:32:44 +00001600 platform_set_drvdata(pdev, ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001601 ret = register_netdev(ndev);
1602
Johannes Berge1749612008-10-27 15:59:26 -07001603 if (ret == 0)
1604 printk(KERN_INFO "%s: dm9000%c at %p,%p IRQ %d MAC: %pM (%s)\n",
Ben Dooks6d406b32008-06-24 22:15:59 +01001605 ndev->name, dm9000_type_to_char(db->type),
1606 db->io_addr, db->io_data, ndev->irq,
Johannes Berge1749612008-10-27 15:59:26 -07001607 ndev->dev_addr, mac_src);
Sascha Hauera1365272005-05-05 15:14:15 -07001608 return 0;
1609
Mike Rapoport418d6f82007-10-18 09:23:11 +02001610out:
Ben Dooksa76836f2008-02-05 00:02:02 +00001611 dev_err(db->dev, "not found (%d).\n", ret);
Sascha Hauera1365272005-05-05 15:14:15 -07001612
1613 dm9000_release_board(pdev, db);
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001614 free_netdev(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001615
1616 return ret;
1617}
1618
Sascha Hauera1365272005-05-05 15:14:15 -07001619static int
Mike Rapoport69222e22009-07-21 12:37:18 -07001620dm9000_drv_suspend(struct device *dev)
Sascha Hauera1365272005-05-05 15:14:15 -07001621{
Mike Rapoport69222e22009-07-21 12:37:18 -07001622 struct platform_device *pdev = to_platform_device(dev);
1623 struct net_device *ndev = platform_get_drvdata(pdev);
Ben Dooks321f69a2008-02-05 00:02:08 +00001624 board_info_t *db;
Sascha Hauera1365272005-05-05 15:14:15 -07001625
Russell King9480e302005-10-28 09:52:56 -07001626 if (ndev) {
Wang Chen4cf16532008-11-12 23:38:14 -08001627 db = netdev_priv(ndev);
Ben Dooks321f69a2008-02-05 00:02:08 +00001628 db->in_suspend = 1;
1629
Ben Dooksc029f442009-11-10 07:22:24 +00001630 if (!netif_running(ndev))
1631 return 0;
1632
1633 netif_device_detach(ndev);
1634
1635 /* only shutdown if not using WoL */
1636 if (!db->wake_state)
Sascha Hauera1365272005-05-05 15:14:15 -07001637 dm9000_shutdown(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001638 }
1639 return 0;
1640}
1641
1642static int
Mike Rapoport69222e22009-07-21 12:37:18 -07001643dm9000_drv_resume(struct device *dev)
Sascha Hauera1365272005-05-05 15:14:15 -07001644{
Mike Rapoport69222e22009-07-21 12:37:18 -07001645 struct platform_device *pdev = to_platform_device(dev);
1646 struct net_device *ndev = platform_get_drvdata(pdev);
Wang Chen4cf16532008-11-12 23:38:14 -08001647 board_info_t *db = netdev_priv(ndev);
Sascha Hauera1365272005-05-05 15:14:15 -07001648
Russell King9480e302005-10-28 09:52:56 -07001649 if (ndev) {
Sascha Hauera1365272005-05-05 15:14:15 -07001650 if (netif_running(ndev)) {
Ben Dooksc029f442009-11-10 07:22:24 +00001651 /* reset if we were not in wake mode to ensure if
1652 * the device was powered off it is in a known state */
1653 if (!db->wake_state) {
1654 dm9000_reset(db);
1655 dm9000_init_dm9000(ndev);
1656 }
Sascha Hauera1365272005-05-05 15:14:15 -07001657
1658 netif_device_attach(ndev);
1659 }
Ben Dooks321f69a2008-02-05 00:02:08 +00001660
1661 db->in_suspend = 0;
Sascha Hauera1365272005-05-05 15:14:15 -07001662 }
1663 return 0;
1664}
1665
Alexey Dobriyan47145212009-12-14 18:00:08 -08001666static const struct dev_pm_ops dm9000_drv_pm_ops = {
Mike Rapoport69222e22009-07-21 12:37:18 -07001667 .suspend = dm9000_drv_suspend,
1668 .resume = dm9000_drv_resume,
1669};
1670
Bill Pemberton6b6a3e72012-12-03 09:23:06 -05001671static int
Russell King3ae5eae2005-11-09 22:32:44 +00001672dm9000_drv_remove(struct platform_device *pdev)
Sascha Hauera1365272005-05-05 15:14:15 -07001673{
Russell King3ae5eae2005-11-09 22:32:44 +00001674 struct net_device *ndev = platform_get_drvdata(pdev);
Sascha Hauera1365272005-05-05 15:14:15 -07001675
Russell King3ae5eae2005-11-09 22:32:44 +00001676 platform_set_drvdata(pdev, NULL);
Sascha Hauera1365272005-05-05 15:14:15 -07001677
1678 unregister_netdev(ndev);
Joe Perchesece49152010-11-15 11:12:31 +00001679 dm9000_release_board(pdev, netdev_priv(ndev));
Ben Dooks9fd9f9b2007-05-07 11:13:25 +00001680 free_netdev(ndev); /* free device structure */
Sascha Hauera1365272005-05-05 15:14:15 -07001681
Ben Dooksa76836f2008-02-05 00:02:02 +00001682 dev_dbg(&pdev->dev, "released and freed device\n");
Sascha Hauera1365272005-05-05 15:14:15 -07001683 return 0;
1684}
1685
Russell King3ae5eae2005-11-09 22:32:44 +00001686static struct platform_driver dm9000_driver = {
Ben Dooks5d22a312006-06-14 00:09:17 +01001687 .driver = {
1688 .name = "dm9000",
1689 .owner = THIS_MODULE,
Mike Rapoport69222e22009-07-21 12:37:18 -07001690 .pm = &dm9000_drv_pm_ops,
Ben Dooks5d22a312006-06-14 00:09:17 +01001691 },
Sascha Hauera1365272005-05-05 15:14:15 -07001692 .probe = dm9000_probe,
Bill Pemberton6b6a3e72012-12-03 09:23:06 -05001693 .remove = dm9000_drv_remove,
Sascha Hauera1365272005-05-05 15:14:15 -07001694};
1695
Sachin Kamata8f9c3e2013-03-18 01:50:46 +00001696module_platform_driver(dm9000_driver);
Sascha Hauera1365272005-05-05 15:14:15 -07001697
1698MODULE_AUTHOR("Sascha Hauer, Ben Dooks");
1699MODULE_DESCRIPTION("Davicom DM9000 network driver");
1700MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07001701MODULE_ALIAS("platform:dm9000");