blob: b0ef46c51a9d556069c38ed97d0cdf3086555d6f [file] [log] [blame]
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001/*
2 * Microchip ENC28J60 ethernet driver (MAC + PHY)
3 *
4 * Copyright (C) 2007 Eurek srl
5 * Author: Claudio Lanconelli <lanconelli.claudio@eptar.com>
6 * based on enc28j60.c written by David Anders for 2.4 kernel version
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * $Id: enc28j60.c,v 1.22 2007/12/20 10:47:01 claudio Exp $
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/types.h>
19#include <linux/fcntl.h>
20#include <linux/interrupt.h>
21#include <linux/slab.h>
22#include <linux/string.h>
23#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
27#include <linux/ethtool.h>
28#include <linux/tcp.h>
29#include <linux/skbuff.h>
30#include <linux/delay.h>
31#include <linux/spi/spi.h>
32
33#include "enc28j60_hw.h"
34
35#define DRV_NAME "enc28j60"
36#define DRV_VERSION "1.01"
37
38#define SPI_OPLEN 1
39
40#define ENC28J60_MSG_DEFAULT \
41 (NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN | NETIF_MSG_LINK)
42
43/* Buffer size required for the largest SPI transfer (i.e., reading a
44 * frame). */
45#define SPI_TRANSFER_BUF_LEN (4 + MAX_FRAMELEN)
46
47#define TX_TIMEOUT (4 * HZ)
48
49/* Max TX retries in case of collision as suggested by errata datasheet */
50#define MAX_TX_RETRYCOUNT 16
51
52enum {
53 RXFILTER_NORMAL,
54 RXFILTER_MULTI,
55 RXFILTER_PROMISC
56};
57
58/* Driver local data */
59struct enc28j60_net {
60 struct net_device *netdev;
61 struct spi_device *spi;
62 struct mutex lock;
63 struct sk_buff *tx_skb;
64 struct work_struct tx_work;
65 struct work_struct irq_work;
66 struct work_struct setrx_work;
67 struct work_struct restart_work;
68 u8 bank; /* current register bank selected */
69 u16 next_pk_ptr; /* next packet pointer within FIFO */
70 u16 max_pk_counter; /* statistics: max packet counter */
71 u16 tx_retry_count;
72 bool hw_enable;
73 bool full_duplex;
74 int rxfilter;
75 u32 msg_enable;
76 u8 spi_transfer_buf[SPI_TRANSFER_BUF_LEN];
77};
78
79/* use ethtool to change the level for any given device */
80static struct {
81 u32 msg_enable;
82} debug = { -1 };
83
84/*
85 * SPI read buffer
86 * wait for the SPI transfer and copy received data to destination
87 */
88static int
89spi_read_buf(struct enc28j60_net *priv, int len, u8 *data)
90{
91 u8 *rx_buf = priv->spi_transfer_buf + 4;
92 u8 *tx_buf = priv->spi_transfer_buf;
93 struct spi_transfer t = {
94 .tx_buf = tx_buf,
95 .rx_buf = rx_buf,
96 .len = SPI_OPLEN + len,
97 };
98 struct spi_message msg;
99 int ret;
100
101 tx_buf[0] = ENC28J60_READ_BUF_MEM;
102 tx_buf[1] = tx_buf[2] = tx_buf[3] = 0; /* don't care */
103
104 spi_message_init(&msg);
105 spi_message_add_tail(&t, &msg);
106 ret = spi_sync(priv->spi, &msg);
107 if (ret == 0) {
108 memcpy(data, &rx_buf[SPI_OPLEN], len);
109 ret = msg.status;
110 }
111 if (ret && netif_msg_drv(priv))
112 printk(KERN_DEBUG DRV_NAME ": %s() failed: ret = %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700113 __func__, ret);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100114
115 return ret;
116}
117
118/*
119 * SPI write buffer
120 */
121static int spi_write_buf(struct enc28j60_net *priv, int len,
122 const u8 *data)
123{
124 int ret;
125
126 if (len > SPI_TRANSFER_BUF_LEN - 1 || len <= 0)
127 ret = -EINVAL;
128 else {
129 priv->spi_transfer_buf[0] = ENC28J60_WRITE_BUF_MEM;
130 memcpy(&priv->spi_transfer_buf[1], data, len);
131 ret = spi_write(priv->spi, priv->spi_transfer_buf, len + 1);
132 if (ret && netif_msg_drv(priv))
133 printk(KERN_DEBUG DRV_NAME ": %s() failed: ret = %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700134 __func__, ret);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100135 }
136 return ret;
137}
138
139/*
140 * basic SPI read operation
141 */
142static u8 spi_read_op(struct enc28j60_net *priv, u8 op,
143 u8 addr)
144{
145 u8 tx_buf[2];
146 u8 rx_buf[4];
147 u8 val = 0;
148 int ret;
149 int slen = SPI_OPLEN;
150
151 /* do dummy read if needed */
152 if (addr & SPRD_MASK)
153 slen++;
154
155 tx_buf[0] = op | (addr & ADDR_MASK);
156 ret = spi_write_then_read(priv->spi, tx_buf, 1, rx_buf, slen);
157 if (ret)
158 printk(KERN_DEBUG DRV_NAME ": %s() failed: ret = %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700159 __func__, ret);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100160 else
161 val = rx_buf[slen - 1];
162
163 return val;
164}
165
166/*
167 * basic SPI write operation
168 */
169static int spi_write_op(struct enc28j60_net *priv, u8 op,
170 u8 addr, u8 val)
171{
172 int ret;
173
174 priv->spi_transfer_buf[0] = op | (addr & ADDR_MASK);
175 priv->spi_transfer_buf[1] = val;
176 ret = spi_write(priv->spi, priv->spi_transfer_buf, 2);
177 if (ret && netif_msg_drv(priv))
178 printk(KERN_DEBUG DRV_NAME ": %s() failed: ret = %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700179 __func__, ret);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100180 return ret;
181}
182
183static void enc28j60_soft_reset(struct enc28j60_net *priv)
184{
185 if (netif_msg_hw(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700186 printk(KERN_DEBUG DRV_NAME ": %s() enter\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100187
188 spi_write_op(priv, ENC28J60_SOFT_RESET, 0, ENC28J60_SOFT_RESET);
189 /* Errata workaround #1, CLKRDY check is unreliable,
190 * delay at least 1 mS instead */
191 udelay(2000);
192}
193
194/*
195 * select the current register bank if necessary
196 */
197static void enc28j60_set_bank(struct enc28j60_net *priv, u8 addr)
198{
Baruch Siach5664dd52008-12-18 19:39:14 -0800199 u8 b = (addr & BANK_MASK) >> 5;
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100200
Baruch Siach5664dd52008-12-18 19:39:14 -0800201 /* These registers (EIE, EIR, ESTAT, ECON2, ECON1)
202 * are present in all banks, no need to switch bank
203 */
204 if (addr >= EIE && addr <= ECON1)
205 return;
206
207 /* Clear or set each bank selection bit as needed */
208 if ((b & ECON1_BSEL0) != (priv->bank & ECON1_BSEL0)) {
209 if (b & ECON1_BSEL0)
210 spi_write_op(priv, ENC28J60_BIT_FIELD_SET, ECON1,
211 ECON1_BSEL0);
212 else
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100213 spi_write_op(priv, ENC28J60_BIT_FIELD_CLR, ECON1,
Baruch Siach5664dd52008-12-18 19:39:14 -0800214 ECON1_BSEL0);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100215 }
Baruch Siach5664dd52008-12-18 19:39:14 -0800216 if ((b & ECON1_BSEL1) != (priv->bank & ECON1_BSEL1)) {
217 if (b & ECON1_BSEL1)
218 spi_write_op(priv, ENC28J60_BIT_FIELD_SET, ECON1,
219 ECON1_BSEL1);
220 else
221 spi_write_op(priv, ENC28J60_BIT_FIELD_CLR, ECON1,
222 ECON1_BSEL1);
223 }
224 priv->bank = b;
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100225}
226
227/*
228 * Register access routines through the SPI bus.
229 * Every register access comes in two flavours:
230 * - nolock_xxx: caller needs to invoke mutex_lock, usually to access
231 * atomically more than one register
232 * - locked_xxx: caller doesn't need to invoke mutex_lock, single access
233 *
234 * Some registers can be accessed through the bit field clear and
235 * bit field set to avoid a read modify write cycle.
236 */
237
238/*
239 * Register bit field Set
240 */
241static void nolock_reg_bfset(struct enc28j60_net *priv,
242 u8 addr, u8 mask)
243{
244 enc28j60_set_bank(priv, addr);
245 spi_write_op(priv, ENC28J60_BIT_FIELD_SET, addr, mask);
246}
247
248static void locked_reg_bfset(struct enc28j60_net *priv,
249 u8 addr, u8 mask)
250{
251 mutex_lock(&priv->lock);
252 nolock_reg_bfset(priv, addr, mask);
253 mutex_unlock(&priv->lock);
254}
255
256/*
257 * Register bit field Clear
258 */
259static void nolock_reg_bfclr(struct enc28j60_net *priv,
260 u8 addr, u8 mask)
261{
262 enc28j60_set_bank(priv, addr);
263 spi_write_op(priv, ENC28J60_BIT_FIELD_CLR, addr, mask);
264}
265
266static void locked_reg_bfclr(struct enc28j60_net *priv,
267 u8 addr, u8 mask)
268{
269 mutex_lock(&priv->lock);
270 nolock_reg_bfclr(priv, addr, mask);
271 mutex_unlock(&priv->lock);
272}
273
274/*
275 * Register byte read
276 */
277static int nolock_regb_read(struct enc28j60_net *priv,
278 u8 address)
279{
280 enc28j60_set_bank(priv, address);
281 return spi_read_op(priv, ENC28J60_READ_CTRL_REG, address);
282}
283
284static int locked_regb_read(struct enc28j60_net *priv,
285 u8 address)
286{
287 int ret;
288
289 mutex_lock(&priv->lock);
290 ret = nolock_regb_read(priv, address);
291 mutex_unlock(&priv->lock);
292
293 return ret;
294}
295
296/*
297 * Register word read
298 */
299static int nolock_regw_read(struct enc28j60_net *priv,
300 u8 address)
301{
302 int rl, rh;
303
304 enc28j60_set_bank(priv, address);
305 rl = spi_read_op(priv, ENC28J60_READ_CTRL_REG, address);
306 rh = spi_read_op(priv, ENC28J60_READ_CTRL_REG, address + 1);
307
308 return (rh << 8) | rl;
309}
310
311static int locked_regw_read(struct enc28j60_net *priv,
312 u8 address)
313{
314 int ret;
315
316 mutex_lock(&priv->lock);
317 ret = nolock_regw_read(priv, address);
318 mutex_unlock(&priv->lock);
319
320 return ret;
321}
322
323/*
324 * Register byte write
325 */
326static void nolock_regb_write(struct enc28j60_net *priv,
327 u8 address, u8 data)
328{
329 enc28j60_set_bank(priv, address);
330 spi_write_op(priv, ENC28J60_WRITE_CTRL_REG, address, data);
331}
332
333static void locked_regb_write(struct enc28j60_net *priv,
334 u8 address, u8 data)
335{
336 mutex_lock(&priv->lock);
337 nolock_regb_write(priv, address, data);
338 mutex_unlock(&priv->lock);
339}
340
341/*
342 * Register word write
343 */
344static void nolock_regw_write(struct enc28j60_net *priv,
345 u8 address, u16 data)
346{
347 enc28j60_set_bank(priv, address);
348 spi_write_op(priv, ENC28J60_WRITE_CTRL_REG, address, (u8) data);
349 spi_write_op(priv, ENC28J60_WRITE_CTRL_REG, address + 1,
350 (u8) (data >> 8));
351}
352
353static void locked_regw_write(struct enc28j60_net *priv,
354 u8 address, u16 data)
355{
356 mutex_lock(&priv->lock);
357 nolock_regw_write(priv, address, data);
358 mutex_unlock(&priv->lock);
359}
360
361/*
362 * Buffer memory read
363 * Select the starting address and execute a SPI buffer read
364 */
365static void enc28j60_mem_read(struct enc28j60_net *priv,
366 u16 addr, int len, u8 *data)
367{
368 mutex_lock(&priv->lock);
369 nolock_regw_write(priv, ERDPTL, addr);
370#ifdef CONFIG_ENC28J60_WRITEVERIFY
371 if (netif_msg_drv(priv)) {
372 u16 reg;
373 reg = nolock_regw_read(priv, ERDPTL);
374 if (reg != addr)
375 printk(KERN_DEBUG DRV_NAME ": %s() error writing ERDPT "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700376 "(0x%04x - 0x%04x)\n", __func__, reg, addr);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100377 }
378#endif
379 spi_read_buf(priv, len, data);
380 mutex_unlock(&priv->lock);
381}
382
383/*
384 * Write packet to enc28j60 TX buffer memory
385 */
386static void
387enc28j60_packet_write(struct enc28j60_net *priv, int len, const u8 *data)
388{
389 mutex_lock(&priv->lock);
390 /* Set the write pointer to start of transmit buffer area */
391 nolock_regw_write(priv, EWRPTL, TXSTART_INIT);
392#ifdef CONFIG_ENC28J60_WRITEVERIFY
393 if (netif_msg_drv(priv)) {
394 u16 reg;
395 reg = nolock_regw_read(priv, EWRPTL);
396 if (reg != TXSTART_INIT)
397 printk(KERN_DEBUG DRV_NAME
398 ": %s() ERWPT:0x%04x != 0x%04x\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700399 __func__, reg, TXSTART_INIT);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100400 }
401#endif
402 /* Set the TXND pointer to correspond to the packet size given */
403 nolock_regw_write(priv, ETXNDL, TXSTART_INIT + len);
404 /* write per-packet control byte */
405 spi_write_op(priv, ENC28J60_WRITE_BUF_MEM, 0, 0x00);
406 if (netif_msg_hw(priv))
407 printk(KERN_DEBUG DRV_NAME
408 ": %s() after control byte ERWPT:0x%04x\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700409 __func__, nolock_regw_read(priv, EWRPTL));
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100410 /* copy the packet into the transmit buffer */
411 spi_write_buf(priv, len, data);
412 if (netif_msg_hw(priv))
413 printk(KERN_DEBUG DRV_NAME
414 ": %s() after write packet ERWPT:0x%04x, len=%d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700415 __func__, nolock_regw_read(priv, EWRPTL), len);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100416 mutex_unlock(&priv->lock);
417}
418
David Brownell7dac6f82008-06-12 21:38:06 -0700419static unsigned long msec20_to_jiffies;
420
421static int poll_ready(struct enc28j60_net *priv, u8 reg, u8 mask, u8 val)
422{
423 unsigned long timeout = jiffies + msec20_to_jiffies;
424
425 /* 20 msec timeout read */
426 while ((nolock_regb_read(priv, reg) & mask) != val) {
427 if (time_after(jiffies, timeout)) {
428 if (netif_msg_drv(priv))
429 dev_dbg(&priv->spi->dev,
430 "reg %02x ready timeout!\n", reg);
431 return -ETIMEDOUT;
432 }
433 cpu_relax();
434 }
435 return 0;
436}
437
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100438/*
439 * Wait until the PHY operation is complete.
440 */
441static int wait_phy_ready(struct enc28j60_net *priv)
442{
David Brownell7dac6f82008-06-12 21:38:06 -0700443 return poll_ready(priv, MISTAT, MISTAT_BUSY, 0) ? 0 : 1;
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100444}
445
446/*
447 * PHY register read
448 * PHY registers are not accessed directly, but through the MII
449 */
450static u16 enc28j60_phy_read(struct enc28j60_net *priv, u8 address)
451{
452 u16 ret;
453
454 mutex_lock(&priv->lock);
455 /* set the PHY register address */
456 nolock_regb_write(priv, MIREGADR, address);
457 /* start the register read operation */
458 nolock_regb_write(priv, MICMD, MICMD_MIIRD);
459 /* wait until the PHY read completes */
460 wait_phy_ready(priv);
461 /* quit reading */
462 nolock_regb_write(priv, MICMD, 0x00);
463 /* return the data */
464 ret = nolock_regw_read(priv, MIRDL);
465 mutex_unlock(&priv->lock);
466
467 return ret;
468}
469
470static int enc28j60_phy_write(struct enc28j60_net *priv, u8 address, u16 data)
471{
472 int ret;
473
474 mutex_lock(&priv->lock);
475 /* set the PHY register address */
476 nolock_regb_write(priv, MIREGADR, address);
477 /* write the PHY data */
478 nolock_regw_write(priv, MIWRL, data);
479 /* wait until the PHY write completes and return */
480 ret = wait_phy_ready(priv);
481 mutex_unlock(&priv->lock);
482
483 return ret;
484}
485
486/*
487 * Program the hardware MAC address from dev->dev_addr.
488 */
489static int enc28j60_set_hw_macaddr(struct net_device *ndev)
490{
491 int ret;
492 struct enc28j60_net *priv = netdev_priv(ndev);
493
494 mutex_lock(&priv->lock);
495 if (!priv->hw_enable) {
Johannes Berge1749612008-10-27 15:59:26 -0700496 if (netif_msg_drv(priv))
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100497 printk(KERN_INFO DRV_NAME
Johannes Berge1749612008-10-27 15:59:26 -0700498 ": %s: Setting MAC address to %pM\n",
499 ndev->name, ndev->dev_addr);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100500 /* NOTE: MAC address in ENC28J60 is byte-backward */
501 nolock_regb_write(priv, MAADR5, ndev->dev_addr[0]);
502 nolock_regb_write(priv, MAADR4, ndev->dev_addr[1]);
503 nolock_regb_write(priv, MAADR3, ndev->dev_addr[2]);
504 nolock_regb_write(priv, MAADR2, ndev->dev_addr[3]);
505 nolock_regb_write(priv, MAADR1, ndev->dev_addr[4]);
506 nolock_regb_write(priv, MAADR0, ndev->dev_addr[5]);
507 ret = 0;
508 } else {
509 if (netif_msg_drv(priv))
510 printk(KERN_DEBUG DRV_NAME
511 ": %s() Hardware must be disabled to set "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700512 "Mac address\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100513 ret = -EBUSY;
514 }
515 mutex_unlock(&priv->lock);
516 return ret;
517}
518
519/*
520 * Store the new hardware address in dev->dev_addr, and update the MAC.
521 */
522static int enc28j60_set_mac_address(struct net_device *dev, void *addr)
523{
524 struct sockaddr *address = addr;
525
526 if (netif_running(dev))
527 return -EBUSY;
528 if (!is_valid_ether_addr(address->sa_data))
529 return -EADDRNOTAVAIL;
530
531 memcpy(dev->dev_addr, address->sa_data, dev->addr_len);
532 return enc28j60_set_hw_macaddr(dev);
533}
534
535/*
536 * Debug routine to dump useful register contents
537 */
538static void enc28j60_dump_regs(struct enc28j60_net *priv, const char *msg)
539{
540 mutex_lock(&priv->lock);
541 printk(KERN_DEBUG DRV_NAME " %s\n"
542 "HwRevID: 0x%02x\n"
543 "Cntrl: ECON1 ECON2 ESTAT EIR EIE\n"
544 " 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n"
545 "MAC : MACON1 MACON3 MACON4\n"
546 " 0x%02x 0x%02x 0x%02x\n"
547 "Rx : ERXST ERXND ERXWRPT ERXRDPT ERXFCON EPKTCNT MAMXFL\n"
548 " 0x%04x 0x%04x 0x%04x 0x%04x "
549 "0x%02x 0x%02x 0x%04x\n"
550 "Tx : ETXST ETXND MACLCON1 MACLCON2 MAPHSUP\n"
551 " 0x%04x 0x%04x 0x%02x 0x%02x 0x%02x\n",
552 msg, nolock_regb_read(priv, EREVID),
553 nolock_regb_read(priv, ECON1), nolock_regb_read(priv, ECON2),
554 nolock_regb_read(priv, ESTAT), nolock_regb_read(priv, EIR),
555 nolock_regb_read(priv, EIE), nolock_regb_read(priv, MACON1),
556 nolock_regb_read(priv, MACON3), nolock_regb_read(priv, MACON4),
557 nolock_regw_read(priv, ERXSTL), nolock_regw_read(priv, ERXNDL),
558 nolock_regw_read(priv, ERXWRPTL),
559 nolock_regw_read(priv, ERXRDPTL),
560 nolock_regb_read(priv, ERXFCON),
561 nolock_regb_read(priv, EPKTCNT),
562 nolock_regw_read(priv, MAMXFLL), nolock_regw_read(priv, ETXSTL),
563 nolock_regw_read(priv, ETXNDL),
564 nolock_regb_read(priv, MACLCON1),
565 nolock_regb_read(priv, MACLCON2),
566 nolock_regb_read(priv, MAPHSUP));
567 mutex_unlock(&priv->lock);
568}
569
570/*
571 * ERXRDPT need to be set always at odd addresses, refer to errata datasheet
572 */
573static u16 erxrdpt_workaround(u16 next_packet_ptr, u16 start, u16 end)
574{
575 u16 erxrdpt;
576
577 if ((next_packet_ptr - 1 < start) || (next_packet_ptr - 1 > end))
578 erxrdpt = end;
579 else
580 erxrdpt = next_packet_ptr - 1;
581
582 return erxrdpt;
583}
584
Baruch Siach5176da72008-12-02 05:07:01 +0000585/*
586 * Calculate wrap around when reading beyond the end of the RX buffer
587 */
588static u16 rx_packet_start(u16 ptr)
589{
590 if (ptr + RSV_SIZE > RXEND_INIT)
591 return (ptr + RSV_SIZE) - (RXEND_INIT - RXSTART_INIT + 1);
592 else
593 return ptr + RSV_SIZE;
594}
595
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100596static void nolock_rxfifo_init(struct enc28j60_net *priv, u16 start, u16 end)
597{
598 u16 erxrdpt;
599
600 if (start > 0x1FFF || end > 0x1FFF || start > end) {
601 if (netif_msg_drv(priv))
602 printk(KERN_ERR DRV_NAME ": %s(%d, %d) RXFIFO "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700603 "bad parameters!\n", __func__, start, end);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100604 return;
605 }
606 /* set receive buffer start + end */
607 priv->next_pk_ptr = start;
608 nolock_regw_write(priv, ERXSTL, start);
609 erxrdpt = erxrdpt_workaround(priv->next_pk_ptr, start, end);
610 nolock_regw_write(priv, ERXRDPTL, erxrdpt);
611 nolock_regw_write(priv, ERXNDL, end);
612}
613
614static void nolock_txfifo_init(struct enc28j60_net *priv, u16 start, u16 end)
615{
616 if (start > 0x1FFF || end > 0x1FFF || start > end) {
617 if (netif_msg_drv(priv))
618 printk(KERN_ERR DRV_NAME ": %s(%d, %d) TXFIFO "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700619 "bad parameters!\n", __func__, start, end);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100620 return;
621 }
622 /* set transmit buffer start + end */
623 nolock_regw_write(priv, ETXSTL, start);
624 nolock_regw_write(priv, ETXNDL, end);
625}
626
David Brownell7dac6f82008-06-12 21:38:06 -0700627/*
628 * Low power mode shrinks power consumption about 100x, so we'd like
629 * the chip to be in that mode whenever it's inactive. (However, we
630 * can't stay in lowpower mode during suspend with WOL active.)
631 */
632static void enc28j60_lowpower(struct enc28j60_net *priv, bool is_low)
633{
634 if (netif_msg_drv(priv))
635 dev_dbg(&priv->spi->dev, "%s power...\n",
636 is_low ? "low" : "high");
637
638 mutex_lock(&priv->lock);
639 if (is_low) {
640 nolock_reg_bfclr(priv, ECON1, ECON1_RXEN);
641 poll_ready(priv, ESTAT, ESTAT_RXBUSY, 0);
642 poll_ready(priv, ECON1, ECON1_TXRTS, 0);
643 /* ECON2_VRPS was set during initialization */
644 nolock_reg_bfset(priv, ECON2, ECON2_PWRSV);
645 } else {
646 nolock_reg_bfclr(priv, ECON2, ECON2_PWRSV);
647 poll_ready(priv, ESTAT, ESTAT_CLKRDY, ESTAT_CLKRDY);
648 /* caller sets ECON1_RXEN */
649 }
650 mutex_unlock(&priv->lock);
651}
652
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100653static int enc28j60_hw_init(struct enc28j60_net *priv)
654{
655 u8 reg;
656
657 if (netif_msg_drv(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700658 printk(KERN_DEBUG DRV_NAME ": %s() - %s\n", __func__,
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100659 priv->full_duplex ? "FullDuplex" : "HalfDuplex");
660
661 mutex_lock(&priv->lock);
662 /* first reset the chip */
663 enc28j60_soft_reset(priv);
664 /* Clear ECON1 */
665 spi_write_op(priv, ENC28J60_WRITE_CTRL_REG, ECON1, 0x00);
666 priv->bank = 0;
667 priv->hw_enable = false;
668 priv->tx_retry_count = 0;
669 priv->max_pk_counter = 0;
670 priv->rxfilter = RXFILTER_NORMAL;
David Brownell7dac6f82008-06-12 21:38:06 -0700671 /* enable address auto increment and voltage regulator powersave */
672 nolock_regb_write(priv, ECON2, ECON2_AUTOINC | ECON2_VRPS);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100673
674 nolock_rxfifo_init(priv, RXSTART_INIT, RXEND_INIT);
675 nolock_txfifo_init(priv, TXSTART_INIT, TXEND_INIT);
676 mutex_unlock(&priv->lock);
677
678 /*
679 * Check the RevID.
680 * If it's 0x00 or 0xFF probably the enc28j60 is not mounted or
681 * damaged
682 */
683 reg = locked_regb_read(priv, EREVID);
684 if (netif_msg_drv(priv))
685 printk(KERN_INFO DRV_NAME ": chip RevID: 0x%02x\n", reg);
686 if (reg == 0x00 || reg == 0xff) {
687 if (netif_msg_drv(priv))
688 printk(KERN_DEBUG DRV_NAME ": %s() Invalid RevId %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700689 __func__, reg);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100690 return 0;
691 }
692
693 /* default filter mode: (unicast OR broadcast) AND crc valid */
694 locked_regb_write(priv, ERXFCON,
695 ERXFCON_UCEN | ERXFCON_CRCEN | ERXFCON_BCEN);
696
697 /* enable MAC receive */
698 locked_regb_write(priv, MACON1,
699 MACON1_MARXEN | MACON1_TXPAUS | MACON1_RXPAUS);
700 /* enable automatic padding and CRC operations */
701 if (priv->full_duplex) {
702 locked_regb_write(priv, MACON3,
703 MACON3_PADCFG0 | MACON3_TXCRCEN |
704 MACON3_FRMLNEN | MACON3_FULDPX);
705 /* set inter-frame gap (non-back-to-back) */
706 locked_regb_write(priv, MAIPGL, 0x12);
707 /* set inter-frame gap (back-to-back) */
708 locked_regb_write(priv, MABBIPG, 0x15);
709 } else {
710 locked_regb_write(priv, MACON3,
711 MACON3_PADCFG0 | MACON3_TXCRCEN |
712 MACON3_FRMLNEN);
713 locked_regb_write(priv, MACON4, 1 << 6); /* DEFER bit */
714 /* set inter-frame gap (non-back-to-back) */
715 locked_regw_write(priv, MAIPGL, 0x0C12);
716 /* set inter-frame gap (back-to-back) */
717 locked_regb_write(priv, MABBIPG, 0x12);
718 }
719 /*
720 * MACLCON1 (default)
721 * MACLCON2 (default)
722 * Set the maximum packet size which the controller will accept
723 */
724 locked_regw_write(priv, MAMXFLL, MAX_FRAMELEN);
725
726 /* Configure LEDs */
727 if (!enc28j60_phy_write(priv, PHLCON, ENC28J60_LAMPS_MODE))
728 return 0;
729
730 if (priv->full_duplex) {
731 if (!enc28j60_phy_write(priv, PHCON1, PHCON1_PDPXMD))
732 return 0;
733 if (!enc28j60_phy_write(priv, PHCON2, 0x00))
734 return 0;
735 } else {
736 if (!enc28j60_phy_write(priv, PHCON1, 0x00))
737 return 0;
738 if (!enc28j60_phy_write(priv, PHCON2, PHCON2_HDLDIS))
739 return 0;
740 }
741 if (netif_msg_hw(priv))
742 enc28j60_dump_regs(priv, "Hw initialized.");
743
744 return 1;
745}
746
747static void enc28j60_hw_enable(struct enc28j60_net *priv)
748{
David Brownell7dac6f82008-06-12 21:38:06 -0700749 /* enable interrupts */
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100750 if (netif_msg_hw(priv))
751 printk(KERN_DEBUG DRV_NAME ": %s() enabling interrupts.\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700752 __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100753
754 enc28j60_phy_write(priv, PHIE, PHIE_PGEIE | PHIE_PLNKIE);
755
756 mutex_lock(&priv->lock);
757 nolock_reg_bfclr(priv, EIR, EIR_DMAIF | EIR_LINKIF |
758 EIR_TXIF | EIR_TXERIF | EIR_RXERIF | EIR_PKTIF);
759 nolock_regb_write(priv, EIE, EIE_INTIE | EIE_PKTIE | EIE_LINKIE |
760 EIE_TXIE | EIE_TXERIE | EIE_RXERIE);
761
762 /* enable receive logic */
763 nolock_reg_bfset(priv, ECON1, ECON1_RXEN);
764 priv->hw_enable = true;
765 mutex_unlock(&priv->lock);
766}
767
768static void enc28j60_hw_disable(struct enc28j60_net *priv)
769{
770 mutex_lock(&priv->lock);
771 /* disable interrutps and packet reception */
772 nolock_regb_write(priv, EIE, 0x00);
773 nolock_reg_bfclr(priv, ECON1, ECON1_RXEN);
774 priv->hw_enable = false;
775 mutex_unlock(&priv->lock);
776}
777
778static int
779enc28j60_setlink(struct net_device *ndev, u8 autoneg, u16 speed, u8 duplex)
780{
781 struct enc28j60_net *priv = netdev_priv(ndev);
782 int ret = 0;
783
784 if (!priv->hw_enable) {
David Brownell7dac6f82008-06-12 21:38:06 -0700785 /* link is in low power mode now; duplex setting
786 * will take effect on next enc28j60_hw_init().
787 */
788 if (autoneg == AUTONEG_DISABLE && speed == SPEED_10)
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100789 priv->full_duplex = (duplex == DUPLEX_FULL);
David Brownell7dac6f82008-06-12 21:38:06 -0700790 else {
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100791 if (netif_msg_link(priv))
792 dev_warn(&ndev->dev,
793 "unsupported link setting\n");
794 ret = -EOPNOTSUPP;
795 }
796 } else {
797 if (netif_msg_link(priv))
798 dev_warn(&ndev->dev, "Warning: hw must be disabled "
799 "to set link mode\n");
800 ret = -EBUSY;
801 }
802 return ret;
803}
804
805/*
806 * Read the Transmit Status Vector
807 */
808static void enc28j60_read_tsv(struct enc28j60_net *priv, u8 tsv[TSV_SIZE])
809{
810 int endptr;
811
812 endptr = locked_regw_read(priv, ETXNDL);
813 if (netif_msg_hw(priv))
814 printk(KERN_DEBUG DRV_NAME ": reading TSV at addr:0x%04x\n",
815 endptr + 1);
816 enc28j60_mem_read(priv, endptr + 1, sizeof(tsv), tsv);
817}
818
819static void enc28j60_dump_tsv(struct enc28j60_net *priv, const char *msg,
820 u8 tsv[TSV_SIZE])
821{
822 u16 tmp1, tmp2;
823
824 printk(KERN_DEBUG DRV_NAME ": %s - TSV:\n", msg);
825 tmp1 = tsv[1];
826 tmp1 <<= 8;
827 tmp1 |= tsv[0];
828
829 tmp2 = tsv[5];
830 tmp2 <<= 8;
831 tmp2 |= tsv[4];
832
833 printk(KERN_DEBUG DRV_NAME ": ByteCount: %d, CollisionCount: %d,"
834 " TotByteOnWire: %d\n", tmp1, tsv[2] & 0x0f, tmp2);
835 printk(KERN_DEBUG DRV_NAME ": TxDone: %d, CRCErr:%d, LenChkErr: %d,"
836 " LenOutOfRange: %d\n", TSV_GETBIT(tsv, TSV_TXDONE),
837 TSV_GETBIT(tsv, TSV_TXCRCERROR),
838 TSV_GETBIT(tsv, TSV_TXLENCHKERROR),
839 TSV_GETBIT(tsv, TSV_TXLENOUTOFRANGE));
840 printk(KERN_DEBUG DRV_NAME ": Multicast: %d, Broadcast: %d, "
841 "PacketDefer: %d, ExDefer: %d\n",
842 TSV_GETBIT(tsv, TSV_TXMULTICAST),
843 TSV_GETBIT(tsv, TSV_TXBROADCAST),
844 TSV_GETBIT(tsv, TSV_TXPACKETDEFER),
845 TSV_GETBIT(tsv, TSV_TXEXDEFER));
846 printk(KERN_DEBUG DRV_NAME ": ExCollision: %d, LateCollision: %d, "
847 "Giant: %d, Underrun: %d\n",
848 TSV_GETBIT(tsv, TSV_TXEXCOLLISION),
849 TSV_GETBIT(tsv, TSV_TXLATECOLLISION),
850 TSV_GETBIT(tsv, TSV_TXGIANT), TSV_GETBIT(tsv, TSV_TXUNDERRUN));
851 printk(KERN_DEBUG DRV_NAME ": ControlFrame: %d, PauseFrame: %d, "
852 "BackPressApp: %d, VLanTagFrame: %d\n",
853 TSV_GETBIT(tsv, TSV_TXCONTROLFRAME),
854 TSV_GETBIT(tsv, TSV_TXPAUSEFRAME),
855 TSV_GETBIT(tsv, TSV_BACKPRESSUREAPP),
856 TSV_GETBIT(tsv, TSV_TXVLANTAGFRAME));
857}
858
859/*
860 * Receive Status vector
861 */
862static void enc28j60_dump_rsv(struct enc28j60_net *priv, const char *msg,
863 u16 pk_ptr, int len, u16 sts)
864{
865 printk(KERN_DEBUG DRV_NAME ": %s - NextPk: 0x%04x - RSV:\n",
866 msg, pk_ptr);
867 printk(KERN_DEBUG DRV_NAME ": ByteCount: %d, DribbleNibble: %d\n", len,
868 RSV_GETBIT(sts, RSV_DRIBBLENIBBLE));
869 printk(KERN_DEBUG DRV_NAME ": RxOK: %d, CRCErr:%d, LenChkErr: %d,"
870 " LenOutOfRange: %d\n", RSV_GETBIT(sts, RSV_RXOK),
871 RSV_GETBIT(sts, RSV_CRCERROR),
872 RSV_GETBIT(sts, RSV_LENCHECKERR),
873 RSV_GETBIT(sts, RSV_LENOUTOFRANGE));
874 printk(KERN_DEBUG DRV_NAME ": Multicast: %d, Broadcast: %d, "
875 "LongDropEvent: %d, CarrierEvent: %d\n",
876 RSV_GETBIT(sts, RSV_RXMULTICAST),
877 RSV_GETBIT(sts, RSV_RXBROADCAST),
878 RSV_GETBIT(sts, RSV_RXLONGEVDROPEV),
879 RSV_GETBIT(sts, RSV_CARRIEREV));
880 printk(KERN_DEBUG DRV_NAME ": ControlFrame: %d, PauseFrame: %d,"
881 " UnknownOp: %d, VLanTagFrame: %d\n",
882 RSV_GETBIT(sts, RSV_RXCONTROLFRAME),
883 RSV_GETBIT(sts, RSV_RXPAUSEFRAME),
884 RSV_GETBIT(sts, RSV_RXUNKNOWNOPCODE),
885 RSV_GETBIT(sts, RSV_RXTYPEVLAN));
886}
887
888static void dump_packet(const char *msg, int len, const char *data)
889{
890 printk(KERN_DEBUG DRV_NAME ": %s - packet len:%d\n", msg, len);
891 print_hex_dump(KERN_DEBUG, "pk data: ", DUMP_PREFIX_OFFSET, 16, 1,
892 data, len, true);
893}
894
895/*
896 * Hardware receive function.
897 * Read the buffer memory, update the FIFO pointer to free the buffer,
898 * check the status vector and decrement the packet counter.
899 */
900static void enc28j60_hw_rx(struct net_device *ndev)
901{
902 struct enc28j60_net *priv = netdev_priv(ndev);
903 struct sk_buff *skb = NULL;
904 u16 erxrdpt, next_packet, rxstat;
905 u8 rsv[RSV_SIZE];
906 int len;
907
908 if (netif_msg_rx_status(priv))
909 printk(KERN_DEBUG DRV_NAME ": RX pk_addr:0x%04x\n",
910 priv->next_pk_ptr);
911
912 if (unlikely(priv->next_pk_ptr > RXEND_INIT)) {
913 if (netif_msg_rx_err(priv))
914 dev_err(&ndev->dev,
915 "%s() Invalid packet address!! 0x%04x\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700916 __func__, priv->next_pk_ptr);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100917 /* packet address corrupted: reset RX logic */
918 mutex_lock(&priv->lock);
919 nolock_reg_bfclr(priv, ECON1, ECON1_RXEN);
920 nolock_reg_bfset(priv, ECON1, ECON1_RXRST);
921 nolock_reg_bfclr(priv, ECON1, ECON1_RXRST);
922 nolock_rxfifo_init(priv, RXSTART_INIT, RXEND_INIT);
923 nolock_reg_bfclr(priv, EIR, EIR_RXERIF);
924 nolock_reg_bfset(priv, ECON1, ECON1_RXEN);
925 mutex_unlock(&priv->lock);
926 ndev->stats.rx_errors++;
927 return;
928 }
929 /* Read next packet pointer and rx status vector */
930 enc28j60_mem_read(priv, priv->next_pk_ptr, sizeof(rsv), rsv);
931
932 next_packet = rsv[1];
933 next_packet <<= 8;
934 next_packet |= rsv[0];
935
936 len = rsv[3];
937 len <<= 8;
938 len |= rsv[2];
939
940 rxstat = rsv[5];
941 rxstat <<= 8;
942 rxstat |= rsv[4];
943
944 if (netif_msg_rx_status(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700945 enc28j60_dump_rsv(priv, __func__, next_packet, len, rxstat);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100946
947 if (!RSV_GETBIT(rxstat, RSV_RXOK)) {
948 if (netif_msg_rx_err(priv))
949 dev_err(&ndev->dev, "Rx Error (%04x)\n", rxstat);
950 ndev->stats.rx_errors++;
951 if (RSV_GETBIT(rxstat, RSV_CRCERROR))
952 ndev->stats.rx_crc_errors++;
953 if (RSV_GETBIT(rxstat, RSV_LENCHECKERR))
954 ndev->stats.rx_frame_errors++;
955 } else {
David Brownell02ff05c2008-03-05 18:51:19 -0800956 skb = dev_alloc_skb(len + NET_IP_ALIGN);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100957 if (!skb) {
958 if (netif_msg_rx_err(priv))
959 dev_err(&ndev->dev,
960 "out of memory for Rx'd frame\n");
961 ndev->stats.rx_dropped++;
962 } else {
963 skb->dev = ndev;
David Brownell02ff05c2008-03-05 18:51:19 -0800964 skb_reserve(skb, NET_IP_ALIGN);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100965 /* copy the packet from the receive buffer */
Baruch Siach5176da72008-12-02 05:07:01 +0000966 enc28j60_mem_read(priv,
967 rx_packet_start(priv->next_pk_ptr),
968 len, skb_put(skb, len));
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100969 if (netif_msg_pktdata(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700970 dump_packet(__func__, skb->len, skb->data);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100971 skb->protocol = eth_type_trans(skb, ndev);
972 /* update statistics */
973 ndev->stats.rx_packets++;
974 ndev->stats.rx_bytes += len;
Baruch Siach2c413a62008-12-15 20:18:52 +0000975 netif_rx_ni(skb);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100976 }
977 }
978 /*
979 * Move the RX read pointer to the start of the next
980 * received packet.
981 * This frees the memory we just read out
982 */
983 erxrdpt = erxrdpt_workaround(next_packet, RXSTART_INIT, RXEND_INIT);
984 if (netif_msg_hw(priv))
985 printk(KERN_DEBUG DRV_NAME ": %s() ERXRDPT:0x%04x\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700986 __func__, erxrdpt);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100987
988 mutex_lock(&priv->lock);
989 nolock_regw_write(priv, ERXRDPTL, erxrdpt);
990#ifdef CONFIG_ENC28J60_WRITEVERIFY
991 if (netif_msg_drv(priv)) {
992 u16 reg;
993 reg = nolock_regw_read(priv, ERXRDPTL);
994 if (reg != erxrdpt)
995 printk(KERN_DEBUG DRV_NAME ": %s() ERXRDPT verify "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -0700996 "error (0x%04x - 0x%04x)\n", __func__,
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +0100997 reg, erxrdpt);
998 }
999#endif
1000 priv->next_pk_ptr = next_packet;
1001 /* we are done with this packet, decrement the packet counter */
1002 nolock_reg_bfset(priv, ECON2, ECON2_PKTDEC);
1003 mutex_unlock(&priv->lock);
1004}
1005
1006/*
1007 * Calculate free space in RxFIFO
1008 */
1009static int enc28j60_get_free_rxfifo(struct enc28j60_net *priv)
1010{
1011 int epkcnt, erxst, erxnd, erxwr, erxrd;
1012 int free_space;
1013
1014 mutex_lock(&priv->lock);
1015 epkcnt = nolock_regb_read(priv, EPKTCNT);
1016 if (epkcnt >= 255)
1017 free_space = -1;
1018 else {
1019 erxst = nolock_regw_read(priv, ERXSTL);
1020 erxnd = nolock_regw_read(priv, ERXNDL);
1021 erxwr = nolock_regw_read(priv, ERXWRPTL);
1022 erxrd = nolock_regw_read(priv, ERXRDPTL);
1023
1024 if (erxwr > erxrd)
1025 free_space = (erxnd - erxst) - (erxwr - erxrd);
1026 else if (erxwr == erxrd)
1027 free_space = (erxnd - erxst);
1028 else
1029 free_space = erxrd - erxwr - 1;
1030 }
1031 mutex_unlock(&priv->lock);
1032 if (netif_msg_rx_status(priv))
1033 printk(KERN_DEBUG DRV_NAME ": %s() free_space = %d\n",
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001034 __func__, free_space);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001035 return free_space;
1036}
1037
1038/*
1039 * Access the PHY to determine link status
1040 */
1041static void enc28j60_check_link_status(struct net_device *ndev)
1042{
1043 struct enc28j60_net *priv = netdev_priv(ndev);
1044 u16 reg;
1045 int duplex;
1046
1047 reg = enc28j60_phy_read(priv, PHSTAT2);
1048 if (netif_msg_hw(priv))
1049 printk(KERN_DEBUG DRV_NAME ": %s() PHSTAT1: %04x, "
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001050 "PHSTAT2: %04x\n", __func__,
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001051 enc28j60_phy_read(priv, PHSTAT1), reg);
1052 duplex = reg & PHSTAT2_DPXSTAT;
1053
1054 if (reg & PHSTAT2_LSTAT) {
1055 netif_carrier_on(ndev);
1056 if (netif_msg_ifup(priv))
1057 dev_info(&ndev->dev, "link up - %s\n",
1058 duplex ? "Full duplex" : "Half duplex");
1059 } else {
1060 if (netif_msg_ifdown(priv))
1061 dev_info(&ndev->dev, "link down\n");
1062 netif_carrier_off(ndev);
1063 }
1064}
1065
1066static void enc28j60_tx_clear(struct net_device *ndev, bool err)
1067{
1068 struct enc28j60_net *priv = netdev_priv(ndev);
1069
1070 if (err)
1071 ndev->stats.tx_errors++;
1072 else
1073 ndev->stats.tx_packets++;
1074
1075 if (priv->tx_skb) {
1076 if (!err)
1077 ndev->stats.tx_bytes += priv->tx_skb->len;
1078 dev_kfree_skb(priv->tx_skb);
1079 priv->tx_skb = NULL;
1080 }
1081 locked_reg_bfclr(priv, ECON1, ECON1_TXRTS);
1082 netif_wake_queue(ndev);
1083}
1084
1085/*
1086 * RX handler
1087 * ignore PKTIF because is unreliable! (look at the errata datasheet)
1088 * check EPKTCNT is the suggested workaround.
1089 * We don't need to clear interrupt flag, automatically done when
1090 * enc28j60_hw_rx() decrements the packet counter.
1091 * Returns how many packet processed.
1092 */
1093static int enc28j60_rx_interrupt(struct net_device *ndev)
1094{
1095 struct enc28j60_net *priv = netdev_priv(ndev);
1096 int pk_counter, ret;
1097
1098 pk_counter = locked_regb_read(priv, EPKTCNT);
1099 if (pk_counter && netif_msg_intr(priv))
1100 printk(KERN_DEBUG DRV_NAME ": intRX, pk_cnt: %d\n", pk_counter);
1101 if (pk_counter > priv->max_pk_counter) {
1102 /* update statistics */
1103 priv->max_pk_counter = pk_counter;
1104 if (netif_msg_rx_status(priv) && priv->max_pk_counter > 1)
1105 printk(KERN_DEBUG DRV_NAME ": RX max_pk_cnt: %d\n",
1106 priv->max_pk_counter);
1107 }
1108 ret = pk_counter;
1109 while (pk_counter-- > 0)
1110 enc28j60_hw_rx(ndev);
1111
1112 return ret;
1113}
1114
1115static void enc28j60_irq_work_handler(struct work_struct *work)
1116{
1117 struct enc28j60_net *priv =
1118 container_of(work, struct enc28j60_net, irq_work);
1119 struct net_device *ndev = priv->netdev;
1120 int intflags, loop;
1121
1122 if (netif_msg_intr(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001123 printk(KERN_DEBUG DRV_NAME ": %s() enter\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001124 /* disable further interrupts */
1125 locked_reg_bfclr(priv, EIE, EIE_INTIE);
1126
1127 do {
1128 loop = 0;
1129 intflags = locked_regb_read(priv, EIR);
1130 /* DMA interrupt handler (not currently used) */
1131 if ((intflags & EIR_DMAIF) != 0) {
1132 loop++;
1133 if (netif_msg_intr(priv))
1134 printk(KERN_DEBUG DRV_NAME
1135 ": intDMA(%d)\n", loop);
1136 locked_reg_bfclr(priv, EIR, EIR_DMAIF);
1137 }
1138 /* LINK changed handler */
1139 if ((intflags & EIR_LINKIF) != 0) {
1140 loop++;
1141 if (netif_msg_intr(priv))
1142 printk(KERN_DEBUG DRV_NAME
1143 ": intLINK(%d)\n", loop);
1144 enc28j60_check_link_status(ndev);
1145 /* read PHIR to clear the flag */
1146 enc28j60_phy_read(priv, PHIR);
1147 }
1148 /* TX complete handler */
1149 if ((intflags & EIR_TXIF) != 0) {
1150 bool err = false;
1151 loop++;
1152 if (netif_msg_intr(priv))
1153 printk(KERN_DEBUG DRV_NAME
1154 ": intTX(%d)\n", loop);
1155 priv->tx_retry_count = 0;
1156 if (locked_regb_read(priv, ESTAT) & ESTAT_TXABRT) {
1157 if (netif_msg_tx_err(priv))
1158 dev_err(&ndev->dev,
1159 "Tx Error (aborted)\n");
1160 err = true;
1161 }
1162 if (netif_msg_tx_done(priv)) {
1163 u8 tsv[TSV_SIZE];
1164 enc28j60_read_tsv(priv, tsv);
1165 enc28j60_dump_tsv(priv, "Tx Done", tsv);
1166 }
1167 enc28j60_tx_clear(ndev, err);
1168 locked_reg_bfclr(priv, EIR, EIR_TXIF);
1169 }
1170 /* TX Error handler */
1171 if ((intflags & EIR_TXERIF) != 0) {
1172 u8 tsv[TSV_SIZE];
1173
1174 loop++;
1175 if (netif_msg_intr(priv))
1176 printk(KERN_DEBUG DRV_NAME
1177 ": intTXErr(%d)\n", loop);
1178 locked_reg_bfclr(priv, ECON1, ECON1_TXRTS);
1179 enc28j60_read_tsv(priv, tsv);
1180 if (netif_msg_tx_err(priv))
1181 enc28j60_dump_tsv(priv, "Tx Error", tsv);
1182 /* Reset TX logic */
1183 mutex_lock(&priv->lock);
1184 nolock_reg_bfset(priv, ECON1, ECON1_TXRST);
1185 nolock_reg_bfclr(priv, ECON1, ECON1_TXRST);
1186 nolock_txfifo_init(priv, TXSTART_INIT, TXEND_INIT);
1187 mutex_unlock(&priv->lock);
1188 /* Transmit Late collision check for retransmit */
1189 if (TSV_GETBIT(tsv, TSV_TXLATECOLLISION)) {
1190 if (netif_msg_tx_err(priv))
1191 printk(KERN_DEBUG DRV_NAME
1192 ": LateCollision TXErr (%d)\n",
1193 priv->tx_retry_count);
1194 if (priv->tx_retry_count++ < MAX_TX_RETRYCOUNT)
1195 locked_reg_bfset(priv, ECON1,
1196 ECON1_TXRTS);
1197 else
1198 enc28j60_tx_clear(ndev, true);
1199 } else
1200 enc28j60_tx_clear(ndev, true);
1201 locked_reg_bfclr(priv, EIR, EIR_TXERIF);
1202 }
1203 /* RX Error handler */
1204 if ((intflags & EIR_RXERIF) != 0) {
1205 loop++;
1206 if (netif_msg_intr(priv))
1207 printk(KERN_DEBUG DRV_NAME
1208 ": intRXErr(%d)\n", loop);
1209 /* Check free FIFO space to flag RX overrun */
1210 if (enc28j60_get_free_rxfifo(priv) <= 0) {
1211 if (netif_msg_rx_err(priv))
1212 printk(KERN_DEBUG DRV_NAME
1213 ": RX Overrun\n");
1214 ndev->stats.rx_dropped++;
1215 }
1216 locked_reg_bfclr(priv, EIR, EIR_RXERIF);
1217 }
1218 /* RX handler */
1219 if (enc28j60_rx_interrupt(ndev))
1220 loop++;
1221 } while (loop);
1222
1223 /* re-enable interrupts */
1224 locked_reg_bfset(priv, EIE, EIE_INTIE);
1225 if (netif_msg_intr(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001226 printk(KERN_DEBUG DRV_NAME ": %s() exit\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001227}
1228
1229/*
1230 * Hardware transmit function.
1231 * Fill the buffer memory and send the contents of the transmit buffer
1232 * onto the network
1233 */
1234static void enc28j60_hw_tx(struct enc28j60_net *priv)
1235{
1236 if (netif_msg_tx_queued(priv))
1237 printk(KERN_DEBUG DRV_NAME
1238 ": Tx Packet Len:%d\n", priv->tx_skb->len);
1239
1240 if (netif_msg_pktdata(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001241 dump_packet(__func__,
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001242 priv->tx_skb->len, priv->tx_skb->data);
1243 enc28j60_packet_write(priv, priv->tx_skb->len, priv->tx_skb->data);
1244
1245#ifdef CONFIG_ENC28J60_WRITEVERIFY
1246 /* readback and verify written data */
1247 if (netif_msg_drv(priv)) {
1248 int test_len, k;
1249 u8 test_buf[64]; /* limit the test to the first 64 bytes */
1250 int okflag;
1251
1252 test_len = priv->tx_skb->len;
1253 if (test_len > sizeof(test_buf))
1254 test_len = sizeof(test_buf);
1255
1256 /* + 1 to skip control byte */
1257 enc28j60_mem_read(priv, TXSTART_INIT + 1, test_len, test_buf);
1258 okflag = 1;
1259 for (k = 0; k < test_len; k++) {
1260 if (priv->tx_skb->data[k] != test_buf[k]) {
1261 printk(KERN_DEBUG DRV_NAME
1262 ": Error, %d location differ: "
1263 "0x%02x-0x%02x\n", k,
1264 priv->tx_skb->data[k], test_buf[k]);
1265 okflag = 0;
1266 }
1267 }
1268 if (!okflag)
1269 printk(KERN_DEBUG DRV_NAME ": Tx write buffer, "
1270 "verify ERROR!\n");
1271 }
1272#endif
1273 /* set TX request flag */
1274 locked_reg_bfset(priv, ECON1, ECON1_TXRTS);
1275}
1276
1277static int enc28j60_send_packet(struct sk_buff *skb, struct net_device *dev)
1278{
1279 struct enc28j60_net *priv = netdev_priv(dev);
1280
1281 if (netif_msg_tx_queued(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001282 printk(KERN_DEBUG DRV_NAME ": %s() enter\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001283
1284 /* If some error occurs while trying to transmit this
1285 * packet, you should return '1' from this function.
1286 * In such a case you _may not_ do anything to the
1287 * SKB, it is still owned by the network queueing
1288 * layer when an error is returned. This means you
1289 * may not modify any SKB fields, you may not free
1290 * the SKB, etc.
1291 */
1292 netif_stop_queue(dev);
1293
1294 /* save the timestamp */
1295 priv->netdev->trans_start = jiffies;
1296 /* Remember the skb for deferred processing */
1297 priv->tx_skb = skb;
1298 schedule_work(&priv->tx_work);
1299
1300 return 0;
1301}
1302
1303static void enc28j60_tx_work_handler(struct work_struct *work)
1304{
1305 struct enc28j60_net *priv =
1306 container_of(work, struct enc28j60_net, tx_work);
1307
1308 /* actual delivery of data */
1309 enc28j60_hw_tx(priv);
1310}
1311
1312static irqreturn_t enc28j60_irq(int irq, void *dev_id)
1313{
1314 struct enc28j60_net *priv = dev_id;
1315
1316 /*
1317 * Can't do anything in interrupt context because we need to
1318 * block (spi_sync() is blocking) so fire of the interrupt
1319 * handling workqueue.
1320 * Remember that we access enc28j60 registers through SPI bus
1321 * via spi_sync() call.
1322 */
1323 schedule_work(&priv->irq_work);
1324
1325 return IRQ_HANDLED;
1326}
1327
1328static void enc28j60_tx_timeout(struct net_device *ndev)
1329{
1330 struct enc28j60_net *priv = netdev_priv(ndev);
1331
1332 if (netif_msg_timer(priv))
1333 dev_err(&ndev->dev, DRV_NAME " tx timeout\n");
1334
1335 ndev->stats.tx_errors++;
1336 /* can't restart safely under softirq */
1337 schedule_work(&priv->restart_work);
1338}
1339
1340/*
1341 * Open/initialize the board. This is called (in the current kernel)
1342 * sometime after booting when the 'ifconfig' program is run.
1343 *
1344 * This routine should set everything up anew at each open, even
1345 * registers that "should" only need to be set once at boot, so that
1346 * there is non-reboot way to recover if something goes wrong.
1347 */
1348static int enc28j60_net_open(struct net_device *dev)
1349{
1350 struct enc28j60_net *priv = netdev_priv(dev);
1351
1352 if (netif_msg_drv(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001353 printk(KERN_DEBUG DRV_NAME ": %s() enter\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001354
1355 if (!is_valid_ether_addr(dev->dev_addr)) {
Johannes Berge1749612008-10-27 15:59:26 -07001356 if (netif_msg_ifup(priv))
1357 dev_err(&dev->dev, "invalid MAC address %pM\n",
1358 dev->dev_addr);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001359 return -EADDRNOTAVAIL;
1360 }
David Brownell7dac6f82008-06-12 21:38:06 -07001361 /* Reset the hardware here (and take it out of low power mode) */
1362 enc28j60_lowpower(priv, false);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001363 enc28j60_hw_disable(priv);
1364 if (!enc28j60_hw_init(priv)) {
1365 if (netif_msg_ifup(priv))
1366 dev_err(&dev->dev, "hw_reset() failed\n");
1367 return -EINVAL;
1368 }
1369 /* Update the MAC address (in case user has changed it) */
1370 enc28j60_set_hw_macaddr(dev);
1371 /* Enable interrupts */
1372 enc28j60_hw_enable(priv);
1373 /* check link status */
1374 enc28j60_check_link_status(dev);
1375 /* We are now ready to accept transmit requests from
1376 * the queueing layer of the networking.
1377 */
1378 netif_start_queue(dev);
1379
1380 return 0;
1381}
1382
1383/* The inverse routine to net_open(). */
1384static int enc28j60_net_close(struct net_device *dev)
1385{
1386 struct enc28j60_net *priv = netdev_priv(dev);
1387
1388 if (netif_msg_drv(priv))
Harvey Harrisonb39d66a2008-08-20 16:52:04 -07001389 printk(KERN_DEBUG DRV_NAME ": %s() enter\n", __func__);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001390
1391 enc28j60_hw_disable(priv);
David Brownell7dac6f82008-06-12 21:38:06 -07001392 enc28j60_lowpower(priv, true);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001393 netif_stop_queue(dev);
1394
1395 return 0;
1396}
1397
1398/*
1399 * Set or clear the multicast filter for this adapter
1400 * num_addrs == -1 Promiscuous mode, receive all packets
1401 * num_addrs == 0 Normal mode, filter out multicast packets
1402 * num_addrs > 0 Multicast mode, receive normal and MC packets
1403 */
1404static void enc28j60_set_multicast_list(struct net_device *dev)
1405{
1406 struct enc28j60_net *priv = netdev_priv(dev);
1407 int oldfilter = priv->rxfilter;
1408
1409 if (dev->flags & IFF_PROMISC) {
1410 if (netif_msg_link(priv))
1411 dev_info(&dev->dev, "promiscuous mode\n");
1412 priv->rxfilter = RXFILTER_PROMISC;
1413 } else if ((dev->flags & IFF_ALLMULTI) || dev->mc_count) {
1414 if (netif_msg_link(priv))
1415 dev_info(&dev->dev, "%smulticast mode\n",
1416 (dev->flags & IFF_ALLMULTI) ? "all-" : "");
1417 priv->rxfilter = RXFILTER_MULTI;
1418 } else {
1419 if (netif_msg_link(priv))
1420 dev_info(&dev->dev, "normal mode\n");
1421 priv->rxfilter = RXFILTER_NORMAL;
1422 }
1423
1424 if (oldfilter != priv->rxfilter)
1425 schedule_work(&priv->setrx_work);
1426}
1427
1428static void enc28j60_setrx_work_handler(struct work_struct *work)
1429{
1430 struct enc28j60_net *priv =
1431 container_of(work, struct enc28j60_net, setrx_work);
1432
1433 if (priv->rxfilter == RXFILTER_PROMISC) {
1434 if (netif_msg_drv(priv))
1435 printk(KERN_DEBUG DRV_NAME ": promiscuous mode\n");
1436 locked_regb_write(priv, ERXFCON, 0x00);
1437 } else if (priv->rxfilter == RXFILTER_MULTI) {
1438 if (netif_msg_drv(priv))
1439 printk(KERN_DEBUG DRV_NAME ": multicast mode\n");
1440 locked_regb_write(priv, ERXFCON,
1441 ERXFCON_UCEN | ERXFCON_CRCEN |
1442 ERXFCON_BCEN | ERXFCON_MCEN);
1443 } else {
1444 if (netif_msg_drv(priv))
1445 printk(KERN_DEBUG DRV_NAME ": normal mode\n");
1446 locked_regb_write(priv, ERXFCON,
1447 ERXFCON_UCEN | ERXFCON_CRCEN |
1448 ERXFCON_BCEN);
1449 }
1450}
1451
1452static void enc28j60_restart_work_handler(struct work_struct *work)
1453{
1454 struct enc28j60_net *priv =
1455 container_of(work, struct enc28j60_net, restart_work);
1456 struct net_device *ndev = priv->netdev;
1457 int ret;
1458
1459 rtnl_lock();
1460 if (netif_running(ndev)) {
1461 enc28j60_net_close(ndev);
1462 ret = enc28j60_net_open(ndev);
1463 if (unlikely(ret)) {
1464 dev_info(&ndev->dev, " could not restart %d\n", ret);
1465 dev_close(ndev);
1466 }
1467 }
1468 rtnl_unlock();
1469}
1470
1471/* ......................... ETHTOOL SUPPORT ........................... */
1472
1473static void
1474enc28j60_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1475{
1476 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
1477 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
1478 strlcpy(info->bus_info,
Kay Sieversfb28ad352008-11-10 13:55:14 -08001479 dev_name(dev->dev.parent), sizeof(info->bus_info));
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001480}
1481
1482static int
1483enc28j60_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1484{
1485 struct enc28j60_net *priv = netdev_priv(dev);
1486
1487 cmd->transceiver = XCVR_INTERNAL;
1488 cmd->supported = SUPPORTED_10baseT_Half
1489 | SUPPORTED_10baseT_Full
1490 | SUPPORTED_TP;
1491 cmd->speed = SPEED_10;
1492 cmd->duplex = priv->full_duplex ? DUPLEX_FULL : DUPLEX_HALF;
1493 cmd->port = PORT_TP;
1494 cmd->autoneg = AUTONEG_DISABLE;
1495
1496 return 0;
1497}
1498
1499static int
1500enc28j60_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1501{
1502 return enc28j60_setlink(dev, cmd->autoneg, cmd->speed, cmd->duplex);
1503}
1504
1505static u32 enc28j60_get_msglevel(struct net_device *dev)
1506{
1507 struct enc28j60_net *priv = netdev_priv(dev);
1508 return priv->msg_enable;
1509}
1510
1511static void enc28j60_set_msglevel(struct net_device *dev, u32 val)
1512{
1513 struct enc28j60_net *priv = netdev_priv(dev);
1514 priv->msg_enable = val;
1515}
1516
1517static const struct ethtool_ops enc28j60_ethtool_ops = {
1518 .get_settings = enc28j60_get_settings,
1519 .set_settings = enc28j60_set_settings,
1520 .get_drvinfo = enc28j60_get_drvinfo,
1521 .get_msglevel = enc28j60_get_msglevel,
1522 .set_msglevel = enc28j60_set_msglevel,
1523};
1524
1525static int enc28j60_chipset_init(struct net_device *dev)
1526{
1527 struct enc28j60_net *priv = netdev_priv(dev);
1528
1529 return enc28j60_hw_init(priv);
1530}
1531
1532static int __devinit enc28j60_probe(struct spi_device *spi)
1533{
1534 struct net_device *dev;
1535 struct enc28j60_net *priv;
1536 int ret = 0;
1537
1538 if (netif_msg_drv(&debug))
1539 dev_info(&spi->dev, DRV_NAME " Ethernet driver %s loaded\n",
1540 DRV_VERSION);
1541
1542 dev = alloc_etherdev(sizeof(struct enc28j60_net));
1543 if (!dev) {
1544 if (netif_msg_drv(&debug))
1545 dev_err(&spi->dev, DRV_NAME
1546 ": unable to alloc new ethernet\n");
1547 ret = -ENOMEM;
1548 goto error_alloc;
1549 }
1550 priv = netdev_priv(dev);
1551
1552 priv->netdev = dev; /* priv to netdev reference */
1553 priv->spi = spi; /* priv to spi reference */
1554 priv->msg_enable = netif_msg_init(debug.msg_enable,
1555 ENC28J60_MSG_DEFAULT);
1556 mutex_init(&priv->lock);
1557 INIT_WORK(&priv->tx_work, enc28j60_tx_work_handler);
1558 INIT_WORK(&priv->setrx_work, enc28j60_setrx_work_handler);
1559 INIT_WORK(&priv->irq_work, enc28j60_irq_work_handler);
1560 INIT_WORK(&priv->restart_work, enc28j60_restart_work_handler);
1561 dev_set_drvdata(&spi->dev, priv); /* spi to priv reference */
1562 SET_NETDEV_DEV(dev, &spi->dev);
1563
1564 if (!enc28j60_chipset_init(dev)) {
1565 if (netif_msg_probe(priv))
1566 dev_info(&spi->dev, DRV_NAME " chip not found\n");
1567 ret = -EIO;
1568 goto error_irq;
1569 }
1570 random_ether_addr(dev->dev_addr);
1571 enc28j60_set_hw_macaddr(dev);
1572
David Brownellc7b7b042008-07-24 17:47:56 -07001573 /* Board setup must set the relevant edge trigger type;
1574 * level triggers won't currently work.
1575 */
1576 ret = request_irq(spi->irq, enc28j60_irq, 0, DRV_NAME, priv);
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001577 if (ret < 0) {
1578 if (netif_msg_probe(priv))
1579 dev_err(&spi->dev, DRV_NAME ": request irq %d failed "
1580 "(ret = %d)\n", spi->irq, ret);
1581 goto error_irq;
1582 }
1583
1584 dev->if_port = IF_PORT_10BASET;
1585 dev->irq = spi->irq;
1586 dev->open = enc28j60_net_open;
1587 dev->stop = enc28j60_net_close;
1588 dev->hard_start_xmit = enc28j60_send_packet;
1589 dev->set_multicast_list = &enc28j60_set_multicast_list;
1590 dev->set_mac_address = enc28j60_set_mac_address;
1591 dev->tx_timeout = &enc28j60_tx_timeout;
1592 dev->watchdog_timeo = TX_TIMEOUT;
1593 SET_ETHTOOL_OPS(dev, &enc28j60_ethtool_ops);
1594
David Brownell7dac6f82008-06-12 21:38:06 -07001595 enc28j60_lowpower(priv, true);
1596
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001597 ret = register_netdev(dev);
1598 if (ret) {
1599 if (netif_msg_probe(priv))
1600 dev_err(&spi->dev, "register netdev " DRV_NAME
1601 " failed (ret = %d)\n", ret);
1602 goto error_register;
1603 }
1604 dev_info(&dev->dev, DRV_NAME " driver registered\n");
1605
1606 return 0;
1607
1608error_register:
1609 free_irq(spi->irq, priv);
1610error_irq:
1611 free_netdev(dev);
1612error_alloc:
1613 return ret;
1614}
1615
David Brownell6fd65882008-06-12 21:36:24 -07001616static int __devexit enc28j60_remove(struct spi_device *spi)
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001617{
1618 struct enc28j60_net *priv = dev_get_drvdata(&spi->dev);
1619
1620 if (netif_msg_drv(priv))
1621 printk(KERN_DEBUG DRV_NAME ": remove\n");
1622
1623 unregister_netdev(priv->netdev);
1624 free_irq(spi->irq, priv);
1625 free_netdev(priv->netdev);
1626
1627 return 0;
1628}
1629
1630static struct spi_driver enc28j60_driver = {
1631 .driver = {
1632 .name = DRV_NAME,
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001633 .owner = THIS_MODULE,
David Brownell6fd65882008-06-12 21:36:24 -07001634 },
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001635 .probe = enc28j60_probe,
1636 .remove = __devexit_p(enc28j60_remove),
1637};
1638
1639static int __init enc28j60_init(void)
1640{
David Brownell7dac6f82008-06-12 21:38:06 -07001641 msec20_to_jiffies = msecs_to_jiffies(20);
1642
Claudio Lanconelli3ec9c112008-01-14 11:00:28 +01001643 return spi_register_driver(&enc28j60_driver);
1644}
1645
1646module_init(enc28j60_init);
1647
1648static void __exit enc28j60_exit(void)
1649{
1650 spi_unregister_driver(&enc28j60_driver);
1651}
1652
1653module_exit(enc28j60_exit);
1654
1655MODULE_DESCRIPTION(DRV_NAME " ethernet driver");
1656MODULE_AUTHOR("Claudio Lanconelli <lanconelli.claudio@eptar.com>");
1657MODULE_LICENSE("GPL");
1658module_param_named(debug, debug.msg_enable, int, 0);
1659MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., ffff=all)");