1 /***************************************************************************
3 * Copyright (C) 2004-2008 SMSC
4 * Copyright (C) 2005-2008 ARM
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 ***************************************************************************
20 * Rewritten, heavily based on smsc911x simple driver by SMSC.
21 * Partly uses io macros from smc91x.c by Nicolas Pitre
24 * LAN9115, LAN9116, LAN9117, LAN9118
25 * LAN9215, LAN9216, LAN9217, LAN9218
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34 #include <linux/crc32.h>
35 #include <linux/clk.h>
36 #include <linux/delay.h>
37 #include <linux/errno.h>
38 #include <linux/etherdevice.h>
39 #include <linux/ethtool.h>
40 #include <linux/init.h>
41 #include <linux/interrupt.h>
42 #include <linux/ioport.h>
43 #include <linux/kernel.h>
44 #include <linux/module.h>
45 #include <linux/netdevice.h>
46 #include <linux/platform_device.h>
47 #include <linux/regulator/consumer.h>
48 #include <linux/sched.h>
49 #include <linux/timer.h>
50 #include <linux/bug.h>
51 #include <linux/bitops.h>
52 #include <linux/irq.h>
54 #include <linux/swab.h>
55 #include <linux/phy.h>
56 #include <linux/smsc911x.h>
57 #include <linux/device.h>
59 #include <linux/of_device.h>
60 #include <linux/of_gpio.h>
61 #include <linux/of_net.h>
62 #include <linux/acpi.h>
63 #include <linux/pm_runtime.h>
64 #include <linux/property.h>
65 #include <linux/gpio/consumer.h>
69 #define SMSC_CHIPNAME "smsc911x"
70 #define SMSC_MDIONAME "smsc911x-mdio"
71 #define SMSC_DRV_VERSION "2008-10-21"
73 MODULE_LICENSE("GPL");
74 MODULE_VERSION(SMSC_DRV_VERSION
);
75 MODULE_ALIAS("platform:smsc911x");
78 static int debug
= 16;
83 module_param(debug
, int, 0);
84 MODULE_PARM_DESC(debug
, "Debug level (0=none,...,16=all)");
89 u32 (*reg_read
)(struct smsc911x_data
*pdata
, u32 reg
);
90 void (*reg_write
)(struct smsc911x_data
*pdata
, u32 reg
, u32 val
);
91 void (*rx_readfifo
)(struct smsc911x_data
*pdata
,
92 unsigned int *buf
, unsigned int wordcount
);
93 void (*tx_writefifo
)(struct smsc911x_data
*pdata
,
94 unsigned int *buf
, unsigned int wordcount
);
97 #define SMSC911X_NUM_SUPPLIES 2
99 struct smsc911x_data
{
100 void __iomem
*ioaddr
;
104 /* used to decide which workarounds apply */
105 unsigned int generation
;
107 /* device configuration (copied from platform_data during probe) */
108 struct smsc911x_platform_config config
;
110 /* This needs to be acquired before calling any of below:
111 * smsc911x_mac_read(), smsc911x_mac_write()
115 /* spinlock to ensure register accesses are serialised */
118 struct mii_bus
*mii_bus
;
119 unsigned int using_extphy
;
124 unsigned int gpio_setting
;
125 unsigned int gpio_orig_setting
;
126 struct net_device
*dev
;
127 struct napi_struct napi
;
129 unsigned int software_irq_signal
;
131 #ifdef USE_PHY_WORK_AROUND
132 #define MIN_PACKET_SIZE (64)
133 char loopback_tx_pkt
[MIN_PACKET_SIZE
];
134 char loopback_rx_pkt
[MIN_PACKET_SIZE
];
135 unsigned int resetcount
;
138 /* Members for Multicast filter workaround */
139 unsigned int multicast_update_pending
;
140 unsigned int set_bits_mask
;
141 unsigned int clear_bits_mask
;
145 /* register access functions */
146 const struct smsc911x_ops
*ops
;
149 struct regulator_bulk_data supplies
[SMSC911X_NUM_SUPPLIES
];
152 struct gpio_desc
*reset_gpiod
;
158 /* Easy access to information */
159 #define __smsc_shift(pdata, reg) ((reg) << ((pdata)->config.shift))
161 static inline u32
__smsc911x_reg_read(struct smsc911x_data
*pdata
, u32 reg
)
163 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
)
164 return readl(pdata
->ioaddr
+ reg
);
166 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
)
167 return ((readw(pdata
->ioaddr
+ reg
) & 0xFFFF) |
168 ((readw(pdata
->ioaddr
+ reg
+ 2) & 0xFFFF) << 16));
175 __smsc911x_reg_read_shift(struct smsc911x_data
*pdata
, u32 reg
)
177 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
)
178 return readl(pdata
->ioaddr
+ __smsc_shift(pdata
, reg
));
180 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
)
181 return (readw(pdata
->ioaddr
+
182 __smsc_shift(pdata
, reg
)) & 0xFFFF) |
183 ((readw(pdata
->ioaddr
+
184 __smsc_shift(pdata
, reg
+ 2)) & 0xFFFF) << 16);
190 static inline u32
smsc911x_reg_read(struct smsc911x_data
*pdata
, u32 reg
)
195 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
196 data
= pdata
->ops
->reg_read(pdata
, reg
);
197 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
202 static inline void __smsc911x_reg_write(struct smsc911x_data
*pdata
, u32 reg
,
205 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
206 writel(val
, pdata
->ioaddr
+ reg
);
210 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
211 writew(val
& 0xFFFF, pdata
->ioaddr
+ reg
);
212 writew((val
>> 16) & 0xFFFF, pdata
->ioaddr
+ reg
+ 2);
220 __smsc911x_reg_write_shift(struct smsc911x_data
*pdata
, u32 reg
, u32 val
)
222 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
223 writel(val
, pdata
->ioaddr
+ __smsc_shift(pdata
, reg
));
227 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
229 pdata
->ioaddr
+ __smsc_shift(pdata
, reg
));
230 writew((val
>> 16) & 0xFFFF,
231 pdata
->ioaddr
+ __smsc_shift(pdata
, reg
+ 2));
238 static inline void smsc911x_reg_write(struct smsc911x_data
*pdata
, u32 reg
,
243 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
244 pdata
->ops
->reg_write(pdata
, reg
, val
);
245 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
248 /* Writes a packet to the TX_DATA_FIFO */
250 smsc911x_tx_writefifo(struct smsc911x_data
*pdata
, unsigned int *buf
,
251 unsigned int wordcount
)
255 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
257 if (pdata
->config
.flags
& SMSC911X_SWAP_FIFO
) {
259 __smsc911x_reg_write(pdata
, TX_DATA_FIFO
,
264 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
265 iowrite32_rep(pdata
->ioaddr
+ TX_DATA_FIFO
, buf
, wordcount
);
269 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
271 __smsc911x_reg_write(pdata
, TX_DATA_FIFO
, *buf
++);
277 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
280 /* Writes a packet to the TX_DATA_FIFO - shifted version */
282 smsc911x_tx_writefifo_shift(struct smsc911x_data
*pdata
, unsigned int *buf
,
283 unsigned int wordcount
)
287 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
289 if (pdata
->config
.flags
& SMSC911X_SWAP_FIFO
) {
291 __smsc911x_reg_write_shift(pdata
, TX_DATA_FIFO
,
296 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
297 iowrite32_rep(pdata
->ioaddr
+ __smsc_shift(pdata
,
298 TX_DATA_FIFO
), buf
, wordcount
);
302 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
304 __smsc911x_reg_write_shift(pdata
,
305 TX_DATA_FIFO
, *buf
++);
311 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
314 /* Reads a packet out of the RX_DATA_FIFO */
316 smsc911x_rx_readfifo(struct smsc911x_data
*pdata
, unsigned int *buf
,
317 unsigned int wordcount
)
321 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
323 if (pdata
->config
.flags
& SMSC911X_SWAP_FIFO
) {
325 *buf
++ = swab32(__smsc911x_reg_read(pdata
,
330 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
331 ioread32_rep(pdata
->ioaddr
+ RX_DATA_FIFO
, buf
, wordcount
);
335 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
337 *buf
++ = __smsc911x_reg_read(pdata
, RX_DATA_FIFO
);
343 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
346 /* Reads a packet out of the RX_DATA_FIFO - shifted version */
348 smsc911x_rx_readfifo_shift(struct smsc911x_data
*pdata
, unsigned int *buf
,
349 unsigned int wordcount
)
353 spin_lock_irqsave(&pdata
->dev_lock
, flags
);
355 if (pdata
->config
.flags
& SMSC911X_SWAP_FIFO
) {
357 *buf
++ = swab32(__smsc911x_reg_read_shift(pdata
,
362 if (pdata
->config
.flags
& SMSC911X_USE_32BIT
) {
363 ioread32_rep(pdata
->ioaddr
+ __smsc_shift(pdata
,
364 RX_DATA_FIFO
), buf
, wordcount
);
368 if (pdata
->config
.flags
& SMSC911X_USE_16BIT
) {
370 *buf
++ = __smsc911x_reg_read_shift(pdata
,
377 spin_unlock_irqrestore(&pdata
->dev_lock
, flags
);
381 * enable regulator and clock resources.
383 static int smsc911x_enable_resources(struct platform_device
*pdev
)
385 struct net_device
*ndev
= platform_get_drvdata(pdev
);
386 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
389 ret
= regulator_bulk_enable(ARRAY_SIZE(pdata
->supplies
),
392 netdev_err(ndev
, "failed to enable regulators %d\n",
395 if (!IS_ERR(pdata
->clk
)) {
396 ret
= clk_prepare_enable(pdata
->clk
);
398 netdev_err(ndev
, "failed to enable clock %d\n", ret
);
405 * disable resources, currently just regulators.
407 static int smsc911x_disable_resources(struct platform_device
*pdev
)
409 struct net_device
*ndev
= platform_get_drvdata(pdev
);
410 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
413 ret
= regulator_bulk_disable(ARRAY_SIZE(pdata
->supplies
),
416 if (!IS_ERR(pdata
->clk
))
417 clk_disable_unprepare(pdata
->clk
);
423 * Request resources, currently just regulators.
425 * The SMSC911x has two power pins: vddvario and vdd33a, in designs where
426 * these are not always-on we need to request regulators to be turned on
427 * before we can try to access the device registers.
429 static int smsc911x_request_resources(struct platform_device
*pdev
)
431 struct net_device
*ndev
= platform_get_drvdata(pdev
);
432 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
435 /* Request regulators */
436 pdata
->supplies
[0].supply
= "vdd33a";
437 pdata
->supplies
[1].supply
= "vddvario";
438 ret
= regulator_bulk_get(&pdev
->dev
,
439 ARRAY_SIZE(pdata
->supplies
),
443 * Retry on deferrals, else just report the error
444 * and try to continue.
446 if (ret
== -EPROBE_DEFER
)
448 netdev_err(ndev
, "couldn't get regulators %d\n",
452 /* Request optional RESET GPIO */
453 pdata
->reset_gpiod
= devm_gpiod_get_optional(&pdev
->dev
,
458 pdata
->clk
= clk_get(&pdev
->dev
, NULL
);
459 if (IS_ERR(pdata
->clk
))
460 dev_dbg(&pdev
->dev
, "couldn't get clock %li\n",
461 PTR_ERR(pdata
->clk
));
467 * Free resources, currently just regulators.
470 static void smsc911x_free_resources(struct platform_device
*pdev
)
472 struct net_device
*ndev
= platform_get_drvdata(pdev
);
473 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
475 /* Free regulators */
476 regulator_bulk_free(ARRAY_SIZE(pdata
->supplies
),
480 if (!IS_ERR(pdata
->clk
)) {
486 /* waits for MAC not busy, with timeout. Only called by smsc911x_mac_read
487 * and smsc911x_mac_write, so assumes mac_lock is held */
488 static int smsc911x_mac_complete(struct smsc911x_data
*pdata
)
493 SMSC_ASSERT_MAC_LOCK(pdata
);
495 for (i
= 0; i
< 40; i
++) {
496 val
= smsc911x_reg_read(pdata
, MAC_CSR_CMD
);
497 if (!(val
& MAC_CSR_CMD_CSR_BUSY_
))
500 SMSC_WARN(pdata
, hw
, "Timed out waiting for MAC not BUSY. "
501 "MAC_CSR_CMD: 0x%08X", val
);
505 /* Fetches a MAC register value. Assumes mac_lock is acquired */
506 static u32
smsc911x_mac_read(struct smsc911x_data
*pdata
, unsigned int offset
)
510 SMSC_ASSERT_MAC_LOCK(pdata
);
512 temp
= smsc911x_reg_read(pdata
, MAC_CSR_CMD
);
513 if (unlikely(temp
& MAC_CSR_CMD_CSR_BUSY_
)) {
514 SMSC_WARN(pdata
, hw
, "MAC busy at entry");
518 /* Send the MAC cmd */
519 smsc911x_reg_write(pdata
, MAC_CSR_CMD
, ((offset
& 0xFF) |
520 MAC_CSR_CMD_CSR_BUSY_
| MAC_CSR_CMD_R_NOT_W_
));
522 /* Workaround for hardware read-after-write restriction */
523 temp
= smsc911x_reg_read(pdata
, BYTE_TEST
);
525 /* Wait for the read to complete */
526 if (likely(smsc911x_mac_complete(pdata
) == 0))
527 return smsc911x_reg_read(pdata
, MAC_CSR_DATA
);
529 SMSC_WARN(pdata
, hw
, "MAC busy after read");
533 /* Set a mac register, mac_lock must be acquired before calling */
534 static void smsc911x_mac_write(struct smsc911x_data
*pdata
,
535 unsigned int offset
, u32 val
)
539 SMSC_ASSERT_MAC_LOCK(pdata
);
541 temp
= smsc911x_reg_read(pdata
, MAC_CSR_CMD
);
542 if (unlikely(temp
& MAC_CSR_CMD_CSR_BUSY_
)) {
544 "smsc911x_mac_write failed, MAC busy at entry");
548 /* Send data to write */
549 smsc911x_reg_write(pdata
, MAC_CSR_DATA
, val
);
551 /* Write the actual data */
552 smsc911x_reg_write(pdata
, MAC_CSR_CMD
, ((offset
& 0xFF) |
553 MAC_CSR_CMD_CSR_BUSY_
));
555 /* Workaround for hardware read-after-write restriction */
556 temp
= smsc911x_reg_read(pdata
, BYTE_TEST
);
558 /* Wait for the write to complete */
559 if (likely(smsc911x_mac_complete(pdata
) == 0))
562 SMSC_WARN(pdata
, hw
, "smsc911x_mac_write failed, MAC busy after write");
565 /* Get a phy register */
566 static int smsc911x_mii_read(struct mii_bus
*bus
, int phyaddr
, int regidx
)
568 struct smsc911x_data
*pdata
= (struct smsc911x_data
*)bus
->priv
;
573 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
575 /* Confirm MII not busy */
576 if (unlikely(smsc911x_mac_read(pdata
, MII_ACC
) & MII_ACC_MII_BUSY_
)) {
577 SMSC_WARN(pdata
, hw
, "MII is busy in smsc911x_mii_read???");
582 /* Set the address, index & direction (read from PHY) */
583 addr
= ((phyaddr
& 0x1F) << 11) | ((regidx
& 0x1F) << 6);
584 smsc911x_mac_write(pdata
, MII_ACC
, addr
);
586 /* Wait for read to complete w/ timeout */
587 for (i
= 0; i
< 100; i
++)
588 if (!(smsc911x_mac_read(pdata
, MII_ACC
) & MII_ACC_MII_BUSY_
)) {
589 reg
= smsc911x_mac_read(pdata
, MII_DATA
);
593 SMSC_WARN(pdata
, hw
, "Timed out waiting for MII read to finish");
597 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
601 /* Set a phy register */
602 static int smsc911x_mii_write(struct mii_bus
*bus
, int phyaddr
, int regidx
,
605 struct smsc911x_data
*pdata
= (struct smsc911x_data
*)bus
->priv
;
610 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
612 /* Confirm MII not busy */
613 if (unlikely(smsc911x_mac_read(pdata
, MII_ACC
) & MII_ACC_MII_BUSY_
)) {
614 SMSC_WARN(pdata
, hw
, "MII is busy in smsc911x_mii_write???");
619 /* Put the data to write in the MAC */
620 smsc911x_mac_write(pdata
, MII_DATA
, val
);
622 /* Set the address, index & direction (write to PHY) */
623 addr
= ((phyaddr
& 0x1F) << 11) | ((regidx
& 0x1F) << 6) |
625 smsc911x_mac_write(pdata
, MII_ACC
, addr
);
627 /* Wait for write to complete w/ timeout */
628 for (i
= 0; i
< 100; i
++)
629 if (!(smsc911x_mac_read(pdata
, MII_ACC
) & MII_ACC_MII_BUSY_
)) {
634 SMSC_WARN(pdata
, hw
, "Timed out waiting for MII write to finish");
638 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
642 /* Switch to external phy. Assumes tx and rx are stopped. */
643 static void smsc911x_phy_enable_external(struct smsc911x_data
*pdata
)
645 unsigned int hwcfg
= smsc911x_reg_read(pdata
, HW_CFG
);
647 /* Disable phy clocks to the MAC */
648 hwcfg
&= (~HW_CFG_PHY_CLK_SEL_
);
649 hwcfg
|= HW_CFG_PHY_CLK_SEL_CLK_DIS_
;
650 smsc911x_reg_write(pdata
, HW_CFG
, hwcfg
);
651 udelay(10); /* Enough time for clocks to stop */
653 /* Switch to external phy */
654 hwcfg
|= HW_CFG_EXT_PHY_EN_
;
655 smsc911x_reg_write(pdata
, HW_CFG
, hwcfg
);
657 /* Enable phy clocks to the MAC */
658 hwcfg
&= (~HW_CFG_PHY_CLK_SEL_
);
659 hwcfg
|= HW_CFG_PHY_CLK_SEL_EXT_PHY_
;
660 smsc911x_reg_write(pdata
, HW_CFG
, hwcfg
);
661 udelay(10); /* Enough time for clocks to restart */
663 hwcfg
|= HW_CFG_SMI_SEL_
;
664 smsc911x_reg_write(pdata
, HW_CFG
, hwcfg
);
667 /* Autodetects and enables external phy if present on supported chips.
668 * autodetection can be overridden by specifying SMSC911X_FORCE_INTERNAL_PHY
669 * or SMSC911X_FORCE_EXTERNAL_PHY in the platform_data flags. */
670 static void smsc911x_phy_initialise_external(struct smsc911x_data
*pdata
)
672 unsigned int hwcfg
= smsc911x_reg_read(pdata
, HW_CFG
);
674 if (pdata
->config
.flags
& SMSC911X_FORCE_INTERNAL_PHY
) {
675 SMSC_TRACE(pdata
, hw
, "Forcing internal PHY");
676 pdata
->using_extphy
= 0;
677 } else if (pdata
->config
.flags
& SMSC911X_FORCE_EXTERNAL_PHY
) {
678 SMSC_TRACE(pdata
, hw
, "Forcing external PHY");
679 smsc911x_phy_enable_external(pdata
);
680 pdata
->using_extphy
= 1;
681 } else if (hwcfg
& HW_CFG_EXT_PHY_DET_
) {
682 SMSC_TRACE(pdata
, hw
,
683 "HW_CFG EXT_PHY_DET set, using external PHY");
684 smsc911x_phy_enable_external(pdata
);
685 pdata
->using_extphy
= 1;
687 SMSC_TRACE(pdata
, hw
,
688 "HW_CFG EXT_PHY_DET clear, using internal PHY");
689 pdata
->using_extphy
= 0;
693 /* Fetches a tx status out of the status fifo */
694 static unsigned int smsc911x_tx_get_txstatus(struct smsc911x_data
*pdata
)
696 unsigned int result
=
697 smsc911x_reg_read(pdata
, TX_FIFO_INF
) & TX_FIFO_INF_TSUSED_
;
700 result
= smsc911x_reg_read(pdata
, TX_STATUS_FIFO
);
705 /* Fetches the next rx status */
706 static unsigned int smsc911x_rx_get_rxstatus(struct smsc911x_data
*pdata
)
708 unsigned int result
=
709 smsc911x_reg_read(pdata
, RX_FIFO_INF
) & RX_FIFO_INF_RXSUSED_
;
712 result
= smsc911x_reg_read(pdata
, RX_STATUS_FIFO
);
717 #ifdef USE_PHY_WORK_AROUND
718 static int smsc911x_phy_check_loopbackpkt(struct smsc911x_data
*pdata
)
725 for (tries
= 0; tries
< 10; tries
++) {
726 unsigned int txcmd_a
;
727 unsigned int txcmd_b
;
729 unsigned int pktlength
;
732 /* Zero-out rx packet memory */
733 memset(pdata
->loopback_rx_pkt
, 0, MIN_PACKET_SIZE
);
735 /* Write tx packet to 118 */
736 txcmd_a
= (u32
)((ulong
)pdata
->loopback_tx_pkt
& 0x03) << 16;
737 txcmd_a
|= TX_CMD_A_FIRST_SEG_
| TX_CMD_A_LAST_SEG_
;
738 txcmd_a
|= MIN_PACKET_SIZE
;
740 txcmd_b
= MIN_PACKET_SIZE
<< 16 | MIN_PACKET_SIZE
;
742 smsc911x_reg_write(pdata
, TX_DATA_FIFO
, txcmd_a
);
743 smsc911x_reg_write(pdata
, TX_DATA_FIFO
, txcmd_b
);
745 bufp
= (ulong
)pdata
->loopback_tx_pkt
& (~0x3);
746 wrsz
= MIN_PACKET_SIZE
+ 3;
747 wrsz
+= (u32
)((ulong
)pdata
->loopback_tx_pkt
& 0x3);
750 pdata
->ops
->tx_writefifo(pdata
, (unsigned int *)bufp
, wrsz
);
752 /* Wait till transmit is done */
756 status
= smsc911x_tx_get_txstatus(pdata
);
757 } while ((i
--) && (!status
));
761 "Failed to transmit during loopback test");
764 if (status
& TX_STS_ES_
) {
766 "Transmit encountered errors during loopback test");
770 /* Wait till receive is done */
774 status
= smsc911x_rx_get_rxstatus(pdata
);
775 } while ((i
--) && (!status
));
779 "Failed to receive during loopback test");
782 if (status
& RX_STS_ES_
) {
784 "Receive encountered errors during loopback test");
788 pktlength
= ((status
& 0x3FFF0000UL
) >> 16);
789 bufp
= (ulong
)pdata
->loopback_rx_pkt
;
790 rdsz
= pktlength
+ 3;
791 rdsz
+= (u32
)((ulong
)pdata
->loopback_rx_pkt
& 0x3);
794 pdata
->ops
->rx_readfifo(pdata
, (unsigned int *)bufp
, rdsz
);
796 if (pktlength
!= (MIN_PACKET_SIZE
+ 4)) {
797 SMSC_WARN(pdata
, hw
, "Unexpected packet size "
798 "during loop back test, size=%d, will retry",
803 for (j
= 0; j
< MIN_PACKET_SIZE
; j
++) {
804 if (pdata
->loopback_tx_pkt
[j
]
805 != pdata
->loopback_rx_pkt
[j
]) {
811 SMSC_TRACE(pdata
, hw
, "Successfully verified "
815 SMSC_WARN(pdata
, hw
, "Data mismatch "
816 "during loop back test, will retry");
824 static int smsc911x_phy_reset(struct smsc911x_data
*pdata
)
827 unsigned int i
= 100000;
829 temp
= smsc911x_reg_read(pdata
, PMT_CTRL
);
830 smsc911x_reg_write(pdata
, PMT_CTRL
, temp
| PMT_CTRL_PHY_RST_
);
833 temp
= smsc911x_reg_read(pdata
, PMT_CTRL
);
834 } while ((i
--) && (temp
& PMT_CTRL_PHY_RST_
));
836 if (unlikely(temp
& PMT_CTRL_PHY_RST_
)) {
837 SMSC_WARN(pdata
, hw
, "PHY reset failed to complete");
840 /* Extra delay required because the phy may not be completed with
841 * its reset when BMCR_RESET is cleared. Specs say 256 uS is
842 * enough delay but using 1ms here to be safe */
848 static int smsc911x_phy_loopbacktest(struct net_device
*dev
)
850 struct smsc911x_data
*pdata
= netdev_priv(dev
);
851 struct phy_device
*phy_dev
= dev
->phydev
;
856 /* Initialise tx packet using broadcast destination address */
857 eth_broadcast_addr(pdata
->loopback_tx_pkt
);
859 /* Use incrementing source address */
860 for (i
= 6; i
< 12; i
++)
861 pdata
->loopback_tx_pkt
[i
] = (char)i
;
863 /* Set length type field */
864 pdata
->loopback_tx_pkt
[12] = 0x00;
865 pdata
->loopback_tx_pkt
[13] = 0x00;
867 for (i
= 14; i
< MIN_PACKET_SIZE
; i
++)
868 pdata
->loopback_tx_pkt
[i
] = (char)i
;
870 val
= smsc911x_reg_read(pdata
, HW_CFG
);
871 val
&= HW_CFG_TX_FIF_SZ_
;
873 smsc911x_reg_write(pdata
, HW_CFG
, val
);
875 smsc911x_reg_write(pdata
, TX_CFG
, TX_CFG_TX_ON_
);
876 smsc911x_reg_write(pdata
, RX_CFG
,
877 (u32
)((ulong
)pdata
->loopback_rx_pkt
& 0x03) << 8);
879 for (i
= 0; i
< 10; i
++) {
880 /* Set PHY to 10/FD, no ANEG, and loopback mode */
881 smsc911x_mii_write(phy_dev
->mdio
.bus
, phy_dev
->mdio
.addr
,
882 MII_BMCR
, BMCR_LOOPBACK
| BMCR_FULLDPLX
);
884 /* Enable MAC tx/rx, FD */
885 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
886 smsc911x_mac_write(pdata
, MAC_CR
, MAC_CR_FDPX_
887 | MAC_CR_TXEN_
| MAC_CR_RXEN_
);
888 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
890 if (smsc911x_phy_check_loopbackpkt(pdata
) == 0) {
897 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
898 smsc911x_mac_write(pdata
, MAC_CR
, 0);
899 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
901 smsc911x_phy_reset(pdata
);
905 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
906 smsc911x_mac_write(pdata
, MAC_CR
, 0);
907 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
909 /* Cancel PHY loopback mode */
910 smsc911x_mii_write(phy_dev
->mdio
.bus
, phy_dev
->mdio
.addr
, MII_BMCR
, 0);
912 smsc911x_reg_write(pdata
, TX_CFG
, 0);
913 smsc911x_reg_write(pdata
, RX_CFG
, 0);
917 #endif /* USE_PHY_WORK_AROUND */
919 static void smsc911x_phy_update_flowcontrol(struct smsc911x_data
*pdata
)
921 struct net_device
*ndev
= pdata
->dev
;
922 struct phy_device
*phy_dev
= ndev
->phydev
;
923 u32 afc
= smsc911x_reg_read(pdata
, AFC_CFG
);
927 if (phy_dev
->duplex
== DUPLEX_FULL
) {
928 u16 lcladv
= phy_read(phy_dev
, MII_ADVERTISE
);
929 u16 rmtadv
= phy_read(phy_dev
, MII_LPA
);
930 u8 cap
= mii_resolve_flowctrl_fdx(lcladv
, rmtadv
);
932 if (cap
& FLOW_CTRL_RX
)
937 if (cap
& FLOW_CTRL_TX
)
942 SMSC_TRACE(pdata
, hw
, "rx pause %s, tx pause %s",
943 (cap
& FLOW_CTRL_RX
? "enabled" : "disabled"),
944 (cap
& FLOW_CTRL_TX
? "enabled" : "disabled"));
946 SMSC_TRACE(pdata
, hw
, "half duplex");
951 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
952 smsc911x_mac_write(pdata
, FLOW
, flow
);
953 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
955 smsc911x_reg_write(pdata
, AFC_CFG
, afc
);
958 /* Update link mode if anything has changed. Called periodically when the
959 * PHY is in polling mode, even if nothing has changed. */
960 static void smsc911x_phy_adjust_link(struct net_device
*dev
)
962 struct smsc911x_data
*pdata
= netdev_priv(dev
);
963 struct phy_device
*phy_dev
= dev
->phydev
;
967 if (phy_dev
->duplex
!= pdata
->last_duplex
) {
969 SMSC_TRACE(pdata
, hw
, "duplex state has changed");
971 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
972 mac_cr
= smsc911x_mac_read(pdata
, MAC_CR
);
973 if (phy_dev
->duplex
) {
974 SMSC_TRACE(pdata
, hw
,
975 "configuring for full duplex mode");
976 mac_cr
|= MAC_CR_FDPX_
;
978 SMSC_TRACE(pdata
, hw
,
979 "configuring for half duplex mode");
980 mac_cr
&= ~MAC_CR_FDPX_
;
982 smsc911x_mac_write(pdata
, MAC_CR
, mac_cr
);
983 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
985 smsc911x_phy_update_flowcontrol(pdata
);
986 pdata
->last_duplex
= phy_dev
->duplex
;
989 carrier
= netif_carrier_ok(dev
);
990 if (carrier
!= pdata
->last_carrier
) {
991 SMSC_TRACE(pdata
, hw
, "carrier state has changed");
993 SMSC_TRACE(pdata
, hw
, "configuring for carrier OK");
994 if ((pdata
->gpio_orig_setting
& GPIO_CFG_LED1_EN_
) &&
995 (!pdata
->using_extphy
)) {
996 /* Restore original GPIO configuration */
997 pdata
->gpio_setting
= pdata
->gpio_orig_setting
;
998 smsc911x_reg_write(pdata
, GPIO_CFG
,
999 pdata
->gpio_setting
);
1002 SMSC_TRACE(pdata
, hw
, "configuring for no carrier");
1003 /* Check global setting that LED1
1004 * usage is 10/100 indicator */
1005 pdata
->gpio_setting
= smsc911x_reg_read(pdata
,
1007 if ((pdata
->gpio_setting
& GPIO_CFG_LED1_EN_
) &&
1008 (!pdata
->using_extphy
)) {
1009 /* Force 10/100 LED off, after saving
1010 * original GPIO configuration */
1011 pdata
->gpio_orig_setting
= pdata
->gpio_setting
;
1013 pdata
->gpio_setting
&= ~GPIO_CFG_LED1_EN_
;
1014 pdata
->gpio_setting
|= (GPIO_CFG_GPIOBUF0_
1015 | GPIO_CFG_GPIODIR0_
1016 | GPIO_CFG_GPIOD0_
);
1017 smsc911x_reg_write(pdata
, GPIO_CFG
,
1018 pdata
->gpio_setting
);
1021 pdata
->last_carrier
= carrier
;
1025 static int smsc911x_mii_probe(struct net_device
*dev
)
1027 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1028 struct phy_device
*phydev
= NULL
;
1031 /* find the first phy */
1032 phydev
= phy_find_first(pdata
->mii_bus
);
1034 netdev_err(dev
, "no PHY found\n");
1038 SMSC_TRACE(pdata
, probe
, "PHY: addr %d, phy_id 0x%08X",
1039 phydev
->mdio
.addr
, phydev
->phy_id
);
1041 ret
= phy_connect_direct(dev
, phydev
, &smsc911x_phy_adjust_link
,
1042 pdata
->config
.phy_interface
);
1045 netdev_err(dev
, "Could not attach to PHY\n");
1049 phy_attached_info(phydev
);
1051 phy_set_max_speed(phydev
, SPEED_100
);
1053 /* mask with MAC supported features */
1054 phy_support_asym_pause(phydev
);
1056 pdata
->last_duplex
= -1;
1057 pdata
->last_carrier
= -1;
1059 #ifdef USE_PHY_WORK_AROUND
1060 if (smsc911x_phy_loopbacktest(dev
) < 0) {
1061 SMSC_WARN(pdata
, hw
, "Failed Loop Back Test");
1062 phy_disconnect(phydev
);
1065 SMSC_TRACE(pdata
, hw
, "Passed Loop Back Test");
1066 #endif /* USE_PHY_WORK_AROUND */
1068 SMSC_TRACE(pdata
, hw
, "phy initialised successfully");
1072 static int smsc911x_mii_init(struct platform_device
*pdev
,
1073 struct net_device
*dev
)
1075 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1078 pdata
->mii_bus
= mdiobus_alloc();
1079 if (!pdata
->mii_bus
) {
1084 pdata
->mii_bus
->name
= SMSC_MDIONAME
;
1085 snprintf(pdata
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%s-%x",
1086 pdev
->name
, pdev
->id
);
1087 pdata
->mii_bus
->priv
= pdata
;
1088 pdata
->mii_bus
->read
= smsc911x_mii_read
;
1089 pdata
->mii_bus
->write
= smsc911x_mii_write
;
1091 pdata
->mii_bus
->parent
= &pdev
->dev
;
1093 switch (pdata
->idrev
& 0xFFFF0000) {
1098 /* External PHY supported, try to autodetect */
1099 smsc911x_phy_initialise_external(pdata
);
1102 SMSC_TRACE(pdata
, hw
, "External PHY is not supported, "
1103 "using internal PHY");
1104 pdata
->using_extphy
= 0;
1108 if (!pdata
->using_extphy
) {
1109 /* Mask all PHYs except ID 1 (internal) */
1110 pdata
->mii_bus
->phy_mask
= ~(1 << 1);
1113 if (mdiobus_register(pdata
->mii_bus
)) {
1114 SMSC_WARN(pdata
, probe
, "Error registering mii bus");
1115 goto err_out_free_bus_2
;
1121 mdiobus_free(pdata
->mii_bus
);
1126 /* Gets the number of tx statuses in the fifo */
1127 static unsigned int smsc911x_tx_get_txstatcount(struct smsc911x_data
*pdata
)
1129 return (smsc911x_reg_read(pdata
, TX_FIFO_INF
)
1130 & TX_FIFO_INF_TSUSED_
) >> 16;
1133 /* Reads tx statuses and increments counters where necessary */
1134 static void smsc911x_tx_update_txcounters(struct net_device
*dev
)
1136 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1137 unsigned int tx_stat
;
1139 while ((tx_stat
= smsc911x_tx_get_txstatus(pdata
)) != 0) {
1140 if (unlikely(tx_stat
& 0x80000000)) {
1141 /* In this driver the packet tag is used as the packet
1142 * length. Since a packet length can never reach the
1143 * size of 0x8000, this bit is reserved. It is worth
1144 * noting that the "reserved bit" in the warning above
1145 * does not reference a hardware defined reserved bit
1146 * but rather a driver defined one.
1148 SMSC_WARN(pdata
, hw
, "Packet tag reserved bit is high");
1150 if (unlikely(tx_stat
& TX_STS_ES_
)) {
1151 dev
->stats
.tx_errors
++;
1153 dev
->stats
.tx_packets
++;
1154 dev
->stats
.tx_bytes
+= (tx_stat
>> 16);
1156 if (unlikely(tx_stat
& TX_STS_EXCESS_COL_
)) {
1157 dev
->stats
.collisions
+= 16;
1158 dev
->stats
.tx_aborted_errors
+= 1;
1160 dev
->stats
.collisions
+=
1161 ((tx_stat
>> 3) & 0xF);
1163 if (unlikely(tx_stat
& TX_STS_LOST_CARRIER_
))
1164 dev
->stats
.tx_carrier_errors
+= 1;
1165 if (unlikely(tx_stat
& TX_STS_LATE_COL_
)) {
1166 dev
->stats
.collisions
++;
1167 dev
->stats
.tx_aborted_errors
++;
1173 /* Increments the Rx error counters */
1175 smsc911x_rx_counterrors(struct net_device
*dev
, unsigned int rxstat
)
1179 if (unlikely(rxstat
& RX_STS_ES_
)) {
1180 dev
->stats
.rx_errors
++;
1181 if (unlikely(rxstat
& RX_STS_CRC_ERR_
)) {
1182 dev
->stats
.rx_crc_errors
++;
1186 if (likely(!crc_err
)) {
1187 if (unlikely((rxstat
& RX_STS_FRAME_TYPE_
) &&
1188 (rxstat
& RX_STS_LENGTH_ERR_
)))
1189 dev
->stats
.rx_length_errors
++;
1190 if (rxstat
& RX_STS_MCAST_
)
1191 dev
->stats
.multicast
++;
1195 /* Quickly dumps bad packets */
1197 smsc911x_rx_fastforward(struct smsc911x_data
*pdata
, unsigned int pktwords
)
1199 if (likely(pktwords
>= 4)) {
1200 unsigned int timeout
= 500;
1202 smsc911x_reg_write(pdata
, RX_DP_CTRL
, RX_DP_CTRL_RX_FFWD_
);
1205 val
= smsc911x_reg_read(pdata
, RX_DP_CTRL
);
1206 } while ((val
& RX_DP_CTRL_RX_FFWD_
) && --timeout
);
1208 if (unlikely(timeout
== 0))
1209 SMSC_WARN(pdata
, hw
, "Timed out waiting for "
1210 "RX FFWD to finish, RX_DP_CTRL: 0x%08X", val
);
1214 temp
= smsc911x_reg_read(pdata
, RX_DATA_FIFO
);
1218 /* NAPI poll function */
1219 static int smsc911x_poll(struct napi_struct
*napi
, int budget
)
1221 struct smsc911x_data
*pdata
=
1222 container_of(napi
, struct smsc911x_data
, napi
);
1223 struct net_device
*dev
= pdata
->dev
;
1226 while (npackets
< budget
) {
1227 unsigned int pktlength
;
1228 unsigned int pktwords
;
1229 struct sk_buff
*skb
;
1230 unsigned int rxstat
= smsc911x_rx_get_rxstatus(pdata
);
1234 /* We processed all packets available. Tell NAPI it can
1235 * stop polling then re-enable rx interrupts */
1236 smsc911x_reg_write(pdata
, INT_STS
, INT_STS_RSFL_
);
1237 napi_complete(napi
);
1238 temp
= smsc911x_reg_read(pdata
, INT_EN
);
1239 temp
|= INT_EN_RSFL_EN_
;
1240 smsc911x_reg_write(pdata
, INT_EN
, temp
);
1244 /* Count packet for NAPI scheduling, even if it has an error.
1245 * Error packets still require cycles to discard */
1248 pktlength
= ((rxstat
& 0x3FFF0000) >> 16);
1249 pktwords
= (pktlength
+ NET_IP_ALIGN
+ 3) >> 2;
1250 smsc911x_rx_counterrors(dev
, rxstat
);
1252 if (unlikely(rxstat
& RX_STS_ES_
)) {
1253 SMSC_WARN(pdata
, rx_err
,
1254 "Discarding packet with error bit set");
1255 /* Packet has an error, discard it and continue with
1257 smsc911x_rx_fastforward(pdata
, pktwords
);
1258 dev
->stats
.rx_dropped
++;
1262 skb
= netdev_alloc_skb(dev
, pktwords
<< 2);
1263 if (unlikely(!skb
)) {
1264 SMSC_WARN(pdata
, rx_err
,
1265 "Unable to allocate skb for rx packet");
1266 /* Drop the packet and stop this polling iteration */
1267 smsc911x_rx_fastforward(pdata
, pktwords
);
1268 dev
->stats
.rx_dropped
++;
1272 pdata
->ops
->rx_readfifo(pdata
,
1273 (unsigned int *)skb
->data
, pktwords
);
1275 /* Align IP on 16B boundary */
1276 skb_reserve(skb
, NET_IP_ALIGN
);
1277 skb_put(skb
, pktlength
- 4);
1278 skb
->protocol
= eth_type_trans(skb
, dev
);
1279 skb_checksum_none_assert(skb
);
1280 netif_receive_skb(skb
);
1282 /* Update counters */
1283 dev
->stats
.rx_packets
++;
1284 dev
->stats
.rx_bytes
+= (pktlength
- 4);
1287 /* Return total received packets */
1291 /* Returns hash bit number for given MAC address
1293 * 01 00 5E 00 00 01 -> returns bit number 31 */
1294 static unsigned int smsc911x_hash(char addr
[ETH_ALEN
])
1296 return (ether_crc(ETH_ALEN
, addr
) >> 26) & 0x3f;
1299 static void smsc911x_rx_multicast_update(struct smsc911x_data
*pdata
)
1301 /* Performs the multicast & mac_cr update. This is called when
1302 * safe on the current hardware, and with the mac_lock held */
1303 unsigned int mac_cr
;
1305 SMSC_ASSERT_MAC_LOCK(pdata
);
1307 mac_cr
= smsc911x_mac_read(pdata
, MAC_CR
);
1308 mac_cr
|= pdata
->set_bits_mask
;
1309 mac_cr
&= ~(pdata
->clear_bits_mask
);
1310 smsc911x_mac_write(pdata
, MAC_CR
, mac_cr
);
1311 smsc911x_mac_write(pdata
, HASHH
, pdata
->hashhi
);
1312 smsc911x_mac_write(pdata
, HASHL
, pdata
->hashlo
);
1313 SMSC_TRACE(pdata
, hw
, "maccr 0x%08X, HASHH 0x%08X, HASHL 0x%08X",
1314 mac_cr
, pdata
->hashhi
, pdata
->hashlo
);
1317 static void smsc911x_rx_multicast_update_workaround(struct smsc911x_data
*pdata
)
1319 unsigned int mac_cr
;
1321 /* This function is only called for older LAN911x devices
1322 * (revA or revB), where MAC_CR, HASHH and HASHL should not
1323 * be modified during Rx - newer devices immediately update the
1326 * This is called from interrupt context */
1328 spin_lock(&pdata
->mac_lock
);
1330 /* Check Rx has stopped */
1331 if (smsc911x_mac_read(pdata
, MAC_CR
) & MAC_CR_RXEN_
)
1332 SMSC_WARN(pdata
, drv
, "Rx not stopped");
1334 /* Perform the update - safe to do now Rx has stopped */
1335 smsc911x_rx_multicast_update(pdata
);
1338 mac_cr
= smsc911x_mac_read(pdata
, MAC_CR
);
1339 mac_cr
|= MAC_CR_RXEN_
;
1340 smsc911x_mac_write(pdata
, MAC_CR
, mac_cr
);
1342 pdata
->multicast_update_pending
= 0;
1344 spin_unlock(&pdata
->mac_lock
);
1347 static int smsc911x_phy_general_power_up(struct smsc911x_data
*pdata
)
1349 struct net_device
*ndev
= pdata
->dev
;
1350 struct phy_device
*phy_dev
= ndev
->phydev
;
1356 /* If the internal PHY is in General Power-Down mode, all, except the
1357 * management interface, is powered-down and stays in that condition as
1358 * long as Phy register bit 0.11 is HIGH.
1360 * In that case, clear the bit 0.11, so the PHY powers up and we can
1361 * access to the phy registers.
1363 rc
= phy_read(phy_dev
, MII_BMCR
);
1365 SMSC_WARN(pdata
, drv
, "Failed reading PHY control reg");
1369 /* If the PHY general power-down bit is not set is not necessary to
1370 * disable the general power down-mode.
1372 if (rc
& BMCR_PDOWN
) {
1373 rc
= phy_write(phy_dev
, MII_BMCR
, rc
& ~BMCR_PDOWN
);
1375 SMSC_WARN(pdata
, drv
, "Failed writing PHY control reg");
1379 usleep_range(1000, 1500);
1385 static int smsc911x_phy_disable_energy_detect(struct smsc911x_data
*pdata
)
1387 struct net_device
*ndev
= pdata
->dev
;
1388 struct phy_device
*phy_dev
= ndev
->phydev
;
1394 rc
= phy_read(phy_dev
, MII_LAN83C185_CTRL_STATUS
);
1397 SMSC_WARN(pdata
, drv
, "Failed reading PHY control reg");
1401 /* Only disable if energy detect mode is already enabled */
1402 if (rc
& MII_LAN83C185_EDPWRDOWN
) {
1403 /* Disable energy detect mode for this SMSC Transceivers */
1404 rc
= phy_write(phy_dev
, MII_LAN83C185_CTRL_STATUS
,
1405 rc
& (~MII_LAN83C185_EDPWRDOWN
));
1408 SMSC_WARN(pdata
, drv
, "Failed writing PHY control reg");
1411 /* Allow PHY to wakeup */
1418 static int smsc911x_phy_enable_energy_detect(struct smsc911x_data
*pdata
)
1420 struct net_device
*ndev
= pdata
->dev
;
1421 struct phy_device
*phy_dev
= ndev
->phydev
;
1427 rc
= phy_read(phy_dev
, MII_LAN83C185_CTRL_STATUS
);
1430 SMSC_WARN(pdata
, drv
, "Failed reading PHY control reg");
1434 /* Only enable if energy detect mode is already disabled */
1435 if (!(rc
& MII_LAN83C185_EDPWRDOWN
)) {
1436 /* Enable energy detect mode for this SMSC Transceivers */
1437 rc
= phy_write(phy_dev
, MII_LAN83C185_CTRL_STATUS
,
1438 rc
| MII_LAN83C185_EDPWRDOWN
);
1441 SMSC_WARN(pdata
, drv
, "Failed writing PHY control reg");
1448 static int smsc911x_soft_reset(struct smsc911x_data
*pdata
)
1450 unsigned int timeout
;
1453 unsigned int reset_offset
= HW_CFG
;
1454 unsigned int reset_mask
= HW_CFG_SRST_
;
1457 * Make sure to power-up the PHY chip before doing a reset, otherwise
1460 ret
= smsc911x_phy_general_power_up(pdata
);
1462 SMSC_WARN(pdata
, drv
, "Failed to power-up the PHY chip");
1467 * LAN9210/LAN9211/LAN9220/LAN9221 chips have an internal PHY that
1468 * are initialized in a Energy Detect Power-Down mode that prevents
1469 * the MAC chip to be software reseted. So we have to wakeup the PHY
1472 if (pdata
->generation
== 4) {
1473 ret
= smsc911x_phy_disable_energy_detect(pdata
);
1476 SMSC_WARN(pdata
, drv
, "Failed to wakeup the PHY chip");
1481 if ((pdata
->idrev
& 0xFFFF0000) == LAN9250
) {
1482 /* special reset for LAN9250 */
1483 reset_offset
= RESET_CTL
;
1484 reset_mask
= RESET_CTL_DIGITAL_RST_
;
1487 /* Reset the LAN911x */
1488 smsc911x_reg_write(pdata
, reset_offset
, reset_mask
);
1490 /* verify reset bit is cleared */
1494 temp
= smsc911x_reg_read(pdata
, reset_offset
);
1495 } while ((--timeout
) && (temp
& reset_mask
));
1497 if (unlikely(temp
& reset_mask
)) {
1498 SMSC_WARN(pdata
, drv
, "Failed to complete reset");
1502 if (pdata
->generation
== 4) {
1503 ret
= smsc911x_phy_enable_energy_detect(pdata
);
1506 SMSC_WARN(pdata
, drv
, "Failed to wakeup the PHY chip");
1514 /* Sets the device MAC address to dev_addr, called with mac_lock held */
1516 smsc911x_set_hw_mac_address(struct smsc911x_data
*pdata
, u8 dev_addr
[6])
1518 u32 mac_high16
= (dev_addr
[5] << 8) | dev_addr
[4];
1519 u32 mac_low32
= (dev_addr
[3] << 24) | (dev_addr
[2] << 16) |
1520 (dev_addr
[1] << 8) | dev_addr
[0];
1522 SMSC_ASSERT_MAC_LOCK(pdata
);
1524 smsc911x_mac_write(pdata
, ADDRH
, mac_high16
);
1525 smsc911x_mac_write(pdata
, ADDRL
, mac_low32
);
1528 static void smsc911x_disable_irq_chip(struct net_device
*dev
)
1530 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1532 smsc911x_reg_write(pdata
, INT_EN
, 0);
1533 smsc911x_reg_write(pdata
, INT_STS
, 0xFFFFFFFF);
1536 static irqreturn_t
smsc911x_irqhandler(int irq
, void *dev_id
)
1538 struct net_device
*dev
= dev_id
;
1539 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1540 u32 intsts
= smsc911x_reg_read(pdata
, INT_STS
);
1541 u32 inten
= smsc911x_reg_read(pdata
, INT_EN
);
1542 int serviced
= IRQ_NONE
;
1545 if (unlikely(intsts
& inten
& INT_STS_SW_INT_
)) {
1546 temp
= smsc911x_reg_read(pdata
, INT_EN
);
1547 temp
&= (~INT_EN_SW_INT_EN_
);
1548 smsc911x_reg_write(pdata
, INT_EN
, temp
);
1549 smsc911x_reg_write(pdata
, INT_STS
, INT_STS_SW_INT_
);
1550 pdata
->software_irq_signal
= 1;
1552 serviced
= IRQ_HANDLED
;
1555 if (unlikely(intsts
& inten
& INT_STS_RXSTOP_INT_
)) {
1556 /* Called when there is a multicast update scheduled and
1557 * it is now safe to complete the update */
1558 SMSC_TRACE(pdata
, intr
, "RX Stop interrupt");
1559 smsc911x_reg_write(pdata
, INT_STS
, INT_STS_RXSTOP_INT_
);
1560 if (pdata
->multicast_update_pending
)
1561 smsc911x_rx_multicast_update_workaround(pdata
);
1562 serviced
= IRQ_HANDLED
;
1565 if (intsts
& inten
& INT_STS_TDFA_
) {
1566 temp
= smsc911x_reg_read(pdata
, FIFO_INT
);
1567 temp
|= FIFO_INT_TX_AVAIL_LEVEL_
;
1568 smsc911x_reg_write(pdata
, FIFO_INT
, temp
);
1569 smsc911x_reg_write(pdata
, INT_STS
, INT_STS_TDFA_
);
1570 netif_wake_queue(dev
);
1571 serviced
= IRQ_HANDLED
;
1574 if (unlikely(intsts
& inten
& INT_STS_RXE_
)) {
1575 SMSC_TRACE(pdata
, intr
, "RX Error interrupt");
1576 smsc911x_reg_write(pdata
, INT_STS
, INT_STS_RXE_
);
1577 serviced
= IRQ_HANDLED
;
1580 if (likely(intsts
& inten
& INT_STS_RSFL_
)) {
1581 if (likely(napi_schedule_prep(&pdata
->napi
))) {
1582 /* Disable Rx interrupts */
1583 temp
= smsc911x_reg_read(pdata
, INT_EN
);
1584 temp
&= (~INT_EN_RSFL_EN_
);
1585 smsc911x_reg_write(pdata
, INT_EN
, temp
);
1586 /* Schedule a NAPI poll */
1587 __napi_schedule(&pdata
->napi
);
1589 SMSC_WARN(pdata
, rx_err
, "napi_schedule_prep failed");
1591 serviced
= IRQ_HANDLED
;
1597 static int smsc911x_open(struct net_device
*dev
)
1599 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1600 unsigned int timeout
;
1602 unsigned int intcfg
;
1606 /* find and start the given phy */
1608 retval
= smsc911x_mii_probe(dev
);
1610 SMSC_WARN(pdata
, probe
, "Error starting phy");
1615 /* Reset the LAN911x */
1616 retval
= smsc911x_soft_reset(pdata
);
1618 SMSC_WARN(pdata
, hw
, "soft reset failed");
1622 smsc911x_reg_write(pdata
, HW_CFG
, 0x00050000);
1623 smsc911x_reg_write(pdata
, AFC_CFG
, 0x006E3740);
1625 /* Increase the legal frame size of VLAN tagged frames to 1522 bytes */
1626 spin_lock_irq(&pdata
->mac_lock
);
1627 smsc911x_mac_write(pdata
, VLAN1
, ETH_P_8021Q
);
1628 spin_unlock_irq(&pdata
->mac_lock
);
1630 /* Make sure EEPROM has finished loading before setting GPIO_CFG */
1632 while ((smsc911x_reg_read(pdata
, E2P_CMD
) & E2P_CMD_EPC_BUSY_
) &&
1637 if (unlikely(timeout
== 0))
1638 SMSC_WARN(pdata
, ifup
,
1639 "Timed out waiting for EEPROM busy bit to clear");
1641 smsc911x_reg_write(pdata
, GPIO_CFG
, 0x70070000);
1643 /* The soft reset above cleared the device's MAC address,
1644 * restore it from local copy (set in probe) */
1645 spin_lock_irq(&pdata
->mac_lock
);
1646 smsc911x_set_hw_mac_address(pdata
, dev
->dev_addr
);
1647 spin_unlock_irq(&pdata
->mac_lock
);
1649 /* Initialise irqs, but leave all sources disabled */
1650 smsc911x_disable_irq_chip(dev
);
1652 /* Set interrupt deassertion to 100uS */
1653 intcfg
= ((10 << 24) | INT_CFG_IRQ_EN_
);
1655 if (pdata
->config
.irq_polarity
) {
1656 SMSC_TRACE(pdata
, ifup
, "irq polarity: active high");
1657 intcfg
|= INT_CFG_IRQ_POL_
;
1659 SMSC_TRACE(pdata
, ifup
, "irq polarity: active low");
1662 if (pdata
->config
.irq_type
) {
1663 SMSC_TRACE(pdata
, ifup
, "irq type: push-pull");
1664 intcfg
|= INT_CFG_IRQ_TYPE_
;
1666 SMSC_TRACE(pdata
, ifup
, "irq type: open drain");
1669 smsc911x_reg_write(pdata
, INT_CFG
, intcfg
);
1671 SMSC_TRACE(pdata
, ifup
, "Testing irq handler using IRQ %d", dev
->irq
);
1672 pdata
->software_irq_signal
= 0;
1675 irq_flags
= irq_get_trigger_type(dev
->irq
);
1676 retval
= request_irq(dev
->irq
, smsc911x_irqhandler
,
1677 irq_flags
| IRQF_SHARED
, dev
->name
, dev
);
1679 SMSC_WARN(pdata
, probe
,
1680 "Unable to claim requested irq: %d", dev
->irq
);
1684 temp
= smsc911x_reg_read(pdata
, INT_EN
);
1685 temp
|= INT_EN_SW_INT_EN_
;
1686 smsc911x_reg_write(pdata
, INT_EN
, temp
);
1690 if (pdata
->software_irq_signal
)
1695 if (!pdata
->software_irq_signal
) {
1696 netdev_warn(dev
, "ISR failed signaling test (IRQ %d)\n",
1701 SMSC_TRACE(pdata
, ifup
, "IRQ handler passed test using IRQ %d",
1704 netdev_info(dev
, "SMSC911x/921x identified at %#08lx, IRQ: %d\n",
1705 (unsigned long)pdata
->ioaddr
, dev
->irq
);
1707 /* Reset the last known duplex and carrier */
1708 pdata
->last_duplex
= -1;
1709 pdata
->last_carrier
= -1;
1711 /* Bring the PHY up */
1712 phy_start(dev
->phydev
);
1714 temp
= smsc911x_reg_read(pdata
, HW_CFG
);
1715 /* Preserve TX FIFO size and external PHY configuration */
1716 temp
&= (HW_CFG_TX_FIF_SZ_
|0x00000FFF);
1718 smsc911x_reg_write(pdata
, HW_CFG
, temp
);
1720 temp
= smsc911x_reg_read(pdata
, FIFO_INT
);
1721 temp
|= FIFO_INT_TX_AVAIL_LEVEL_
;
1722 temp
&= ~(FIFO_INT_RX_STS_LEVEL_
);
1723 smsc911x_reg_write(pdata
, FIFO_INT
, temp
);
1725 /* set RX Data offset to 2 bytes for alignment */
1726 smsc911x_reg_write(pdata
, RX_CFG
, (NET_IP_ALIGN
<< 8));
1728 /* enable NAPI polling before enabling RX interrupts */
1729 napi_enable(&pdata
->napi
);
1731 temp
= smsc911x_reg_read(pdata
, INT_EN
);
1732 temp
|= (INT_EN_TDFA_EN_
| INT_EN_RSFL_EN_
| INT_EN_RXSTOP_INT_EN_
);
1733 smsc911x_reg_write(pdata
, INT_EN
, temp
);
1735 spin_lock_irq(&pdata
->mac_lock
);
1736 temp
= smsc911x_mac_read(pdata
, MAC_CR
);
1737 temp
|= (MAC_CR_TXEN_
| MAC_CR_RXEN_
| MAC_CR_HBDIS_
);
1738 smsc911x_mac_write(pdata
, MAC_CR
, temp
);
1739 spin_unlock_irq(&pdata
->mac_lock
);
1741 smsc911x_reg_write(pdata
, TX_CFG
, TX_CFG_TX_ON_
);
1743 netif_start_queue(dev
);
1747 free_irq(dev
->irq
, dev
);
1749 phy_disconnect(dev
->phydev
);
1755 /* Entry point for stopping the interface */
1756 static int smsc911x_stop(struct net_device
*dev
)
1758 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1761 /* Disable all device interrupts */
1762 temp
= smsc911x_reg_read(pdata
, INT_CFG
);
1763 temp
&= ~INT_CFG_IRQ_EN_
;
1764 smsc911x_reg_write(pdata
, INT_CFG
, temp
);
1766 /* Stop Tx and Rx polling */
1767 netif_stop_queue(dev
);
1768 napi_disable(&pdata
->napi
);
1770 /* At this point all Rx and Tx activity is stopped */
1771 dev
->stats
.rx_dropped
+= smsc911x_reg_read(pdata
, RX_DROP
);
1772 smsc911x_tx_update_txcounters(dev
);
1774 free_irq(dev
->irq
, dev
);
1776 /* Bring the PHY down */
1778 phy_stop(dev
->phydev
);
1779 phy_disconnect(dev
->phydev
);
1782 netif_carrier_off(dev
);
1784 SMSC_TRACE(pdata
, ifdown
, "Interface stopped");
1788 /* Entry point for transmitting a packet */
1790 smsc911x_hard_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1792 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1793 unsigned int freespace
;
1794 unsigned int tx_cmd_a
;
1795 unsigned int tx_cmd_b
;
1800 freespace
= smsc911x_reg_read(pdata
, TX_FIFO_INF
) & TX_FIFO_INF_TDFREE_
;
1802 if (unlikely(freespace
< TX_FIFO_LOW_THRESHOLD
))
1803 SMSC_WARN(pdata
, tx_err
,
1804 "Tx data fifo low, space available: %d", freespace
);
1806 /* Word alignment adjustment */
1807 tx_cmd_a
= (u32
)((ulong
)skb
->data
& 0x03) << 16;
1808 tx_cmd_a
|= TX_CMD_A_FIRST_SEG_
| TX_CMD_A_LAST_SEG_
;
1809 tx_cmd_a
|= (unsigned int)skb
->len
;
1811 tx_cmd_b
= ((unsigned int)skb
->len
) << 16;
1812 tx_cmd_b
|= (unsigned int)skb
->len
;
1814 smsc911x_reg_write(pdata
, TX_DATA_FIFO
, tx_cmd_a
);
1815 smsc911x_reg_write(pdata
, TX_DATA_FIFO
, tx_cmd_b
);
1817 bufp
= (ulong
)skb
->data
& (~0x3);
1818 wrsz
= (u32
)skb
->len
+ 3;
1819 wrsz
+= (u32
)((ulong
)skb
->data
& 0x3);
1822 pdata
->ops
->tx_writefifo(pdata
, (unsigned int *)bufp
, wrsz
);
1823 freespace
-= (skb
->len
+ 32);
1824 skb_tx_timestamp(skb
);
1825 dev_consume_skb_any(skb
);
1827 if (unlikely(smsc911x_tx_get_txstatcount(pdata
) >= 30))
1828 smsc911x_tx_update_txcounters(dev
);
1830 if (freespace
< TX_FIFO_LOW_THRESHOLD
) {
1831 netif_stop_queue(dev
);
1832 temp
= smsc911x_reg_read(pdata
, FIFO_INT
);
1835 smsc911x_reg_write(pdata
, FIFO_INT
, temp
);
1838 return NETDEV_TX_OK
;
1841 /* Entry point for getting status counters */
1842 static struct net_device_stats
*smsc911x_get_stats(struct net_device
*dev
)
1844 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1845 smsc911x_tx_update_txcounters(dev
);
1846 dev
->stats
.rx_dropped
+= smsc911x_reg_read(pdata
, RX_DROP
);
1850 /* Entry point for setting addressing modes */
1851 static void smsc911x_set_multicast_list(struct net_device
*dev
)
1853 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1854 unsigned long flags
;
1856 if (dev
->flags
& IFF_PROMISC
) {
1857 /* Enabling promiscuous mode */
1858 pdata
->set_bits_mask
= MAC_CR_PRMS_
;
1859 pdata
->clear_bits_mask
= (MAC_CR_MCPAS_
| MAC_CR_HPFILT_
);
1862 } else if (dev
->flags
& IFF_ALLMULTI
) {
1863 /* Enabling all multicast mode */
1864 pdata
->set_bits_mask
= MAC_CR_MCPAS_
;
1865 pdata
->clear_bits_mask
= (MAC_CR_PRMS_
| MAC_CR_HPFILT_
);
1868 } else if (!netdev_mc_empty(dev
)) {
1869 /* Enabling specific multicast addresses */
1870 unsigned int hash_high
= 0;
1871 unsigned int hash_low
= 0;
1872 struct netdev_hw_addr
*ha
;
1874 pdata
->set_bits_mask
= MAC_CR_HPFILT_
;
1875 pdata
->clear_bits_mask
= (MAC_CR_PRMS_
| MAC_CR_MCPAS_
);
1877 netdev_for_each_mc_addr(ha
, dev
) {
1878 unsigned int bitnum
= smsc911x_hash(ha
->addr
);
1879 unsigned int mask
= 0x01 << (bitnum
& 0x1F);
1887 pdata
->hashhi
= hash_high
;
1888 pdata
->hashlo
= hash_low
;
1890 /* Enabling local MAC address only */
1891 pdata
->set_bits_mask
= 0;
1892 pdata
->clear_bits_mask
=
1893 (MAC_CR_PRMS_
| MAC_CR_MCPAS_
| MAC_CR_HPFILT_
);
1898 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
1900 if (pdata
->generation
<= 1) {
1901 /* Older hardware revision - cannot change these flags while
1903 if (!pdata
->multicast_update_pending
) {
1905 SMSC_TRACE(pdata
, hw
, "scheduling mcast update");
1906 pdata
->multicast_update_pending
= 1;
1908 /* Request the hardware to stop, then perform the
1909 * update when we get an RX_STOP interrupt */
1910 temp
= smsc911x_mac_read(pdata
, MAC_CR
);
1911 temp
&= ~(MAC_CR_RXEN_
);
1912 smsc911x_mac_write(pdata
, MAC_CR
, temp
);
1914 /* There is another update pending, this should now
1915 * use the newer values */
1918 /* Newer hardware revision - can write immediately */
1919 smsc911x_rx_multicast_update(pdata
);
1922 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
1925 #ifdef CONFIG_NET_POLL_CONTROLLER
1926 static void smsc911x_poll_controller(struct net_device
*dev
)
1928 disable_irq(dev
->irq
);
1929 smsc911x_irqhandler(0, dev
);
1930 enable_irq(dev
->irq
);
1932 #endif /* CONFIG_NET_POLL_CONTROLLER */
1934 static int smsc911x_set_mac_address(struct net_device
*dev
, void *p
)
1936 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1937 struct sockaddr
*addr
= p
;
1939 /* On older hardware revisions we cannot change the mac address
1940 * registers while receiving data. Newer devices can safely change
1941 * this at any time. */
1942 if (pdata
->generation
<= 1 && netif_running(dev
))
1945 if (!is_valid_ether_addr(addr
->sa_data
))
1946 return -EADDRNOTAVAIL
;
1948 memcpy(dev
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
1950 spin_lock_irq(&pdata
->mac_lock
);
1951 smsc911x_set_hw_mac_address(pdata
, dev
->dev_addr
);
1952 spin_unlock_irq(&pdata
->mac_lock
);
1954 netdev_info(dev
, "MAC Address: %pM\n", dev
->dev_addr
);
1959 /* Standard ioctls for mii-tool */
1960 static int smsc911x_do_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1962 if (!netif_running(dev
) || !dev
->phydev
)
1965 return phy_mii_ioctl(dev
->phydev
, ifr
, cmd
);
1968 static void smsc911x_ethtool_getdrvinfo(struct net_device
*dev
,
1969 struct ethtool_drvinfo
*info
)
1971 strlcpy(info
->driver
, SMSC_CHIPNAME
, sizeof(info
->driver
));
1972 strlcpy(info
->version
, SMSC_DRV_VERSION
, sizeof(info
->version
));
1973 strlcpy(info
->bus_info
, dev_name(dev
->dev
.parent
),
1974 sizeof(info
->bus_info
));
1977 static u32
smsc911x_ethtool_getmsglevel(struct net_device
*dev
)
1979 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1980 return pdata
->msg_enable
;
1983 static void smsc911x_ethtool_setmsglevel(struct net_device
*dev
, u32 level
)
1985 struct smsc911x_data
*pdata
= netdev_priv(dev
);
1986 pdata
->msg_enable
= level
;
1989 static int smsc911x_ethtool_getregslen(struct net_device
*dev
)
1991 return (((E2P_DATA
- ID_REV
) / 4 + 1) + (WUCSR
- MAC_CR
) + 1 + 32) *
1996 smsc911x_ethtool_getregs(struct net_device
*dev
, struct ethtool_regs
*regs
,
1999 struct smsc911x_data
*pdata
= netdev_priv(dev
);
2000 struct phy_device
*phy_dev
= dev
->phydev
;
2001 unsigned long flags
;
2006 regs
->version
= pdata
->idrev
;
2007 for (i
= ID_REV
; i
<= E2P_DATA
; i
+= (sizeof(u32
)))
2008 data
[j
++] = smsc911x_reg_read(pdata
, i
);
2010 for (i
= MAC_CR
; i
<= WUCSR
; i
++) {
2011 spin_lock_irqsave(&pdata
->mac_lock
, flags
);
2012 data
[j
++] = smsc911x_mac_read(pdata
, i
);
2013 spin_unlock_irqrestore(&pdata
->mac_lock
, flags
);
2016 for (i
= 0; i
<= 31; i
++)
2017 data
[j
++] = smsc911x_mii_read(phy_dev
->mdio
.bus
,
2018 phy_dev
->mdio
.addr
, i
);
2021 static void smsc911x_eeprom_enable_access(struct smsc911x_data
*pdata
)
2023 unsigned int temp
= smsc911x_reg_read(pdata
, GPIO_CFG
);
2024 temp
&= ~GPIO_CFG_EEPR_EN_
;
2025 smsc911x_reg_write(pdata
, GPIO_CFG
, temp
);
2029 static int smsc911x_eeprom_send_cmd(struct smsc911x_data
*pdata
, u32 op
)
2034 SMSC_TRACE(pdata
, drv
, "op 0x%08x", op
);
2035 if (smsc911x_reg_read(pdata
, E2P_CMD
) & E2P_CMD_EPC_BUSY_
) {
2036 SMSC_WARN(pdata
, drv
, "Busy at start");
2040 e2cmd
= op
| E2P_CMD_EPC_BUSY_
;
2041 smsc911x_reg_write(pdata
, E2P_CMD
, e2cmd
);
2045 e2cmd
= smsc911x_reg_read(pdata
, E2P_CMD
);
2046 } while ((e2cmd
& E2P_CMD_EPC_BUSY_
) && (--timeout
));
2049 SMSC_TRACE(pdata
, drv
, "TIMED OUT");
2053 if (e2cmd
& E2P_CMD_EPC_TIMEOUT_
) {
2054 SMSC_TRACE(pdata
, drv
, "Error occurred during eeprom operation");
2061 static int smsc911x_eeprom_read_location(struct smsc911x_data
*pdata
,
2062 u8 address
, u8
*data
)
2064 u32 op
= E2P_CMD_EPC_CMD_READ_
| address
;
2067 SMSC_TRACE(pdata
, drv
, "address 0x%x", address
);
2068 ret
= smsc911x_eeprom_send_cmd(pdata
, op
);
2071 data
[address
] = smsc911x_reg_read(pdata
, E2P_DATA
);
2076 static int smsc911x_eeprom_write_location(struct smsc911x_data
*pdata
,
2077 u8 address
, u8 data
)
2079 u32 op
= E2P_CMD_EPC_CMD_ERASE_
| address
;
2083 SMSC_TRACE(pdata
, drv
, "address 0x%x, data 0x%x", address
, data
);
2084 ret
= smsc911x_eeprom_send_cmd(pdata
, op
);
2087 op
= E2P_CMD_EPC_CMD_WRITE_
| address
;
2088 smsc911x_reg_write(pdata
, E2P_DATA
, (u32
)data
);
2090 /* Workaround for hardware read-after-write restriction */
2091 temp
= smsc911x_reg_read(pdata
, BYTE_TEST
);
2093 ret
= smsc911x_eeprom_send_cmd(pdata
, op
);
2099 static int smsc911x_ethtool_get_eeprom_len(struct net_device
*dev
)
2101 return SMSC911X_EEPROM_SIZE
;
2104 static int smsc911x_ethtool_get_eeprom(struct net_device
*dev
,
2105 struct ethtool_eeprom
*eeprom
, u8
*data
)
2107 struct smsc911x_data
*pdata
= netdev_priv(dev
);
2108 u8 eeprom_data
[SMSC911X_EEPROM_SIZE
];
2112 smsc911x_eeprom_enable_access(pdata
);
2114 len
= min(eeprom
->len
, SMSC911X_EEPROM_SIZE
);
2115 for (i
= 0; i
< len
; i
++) {
2116 int ret
= smsc911x_eeprom_read_location(pdata
, i
, eeprom_data
);
2123 memcpy(data
, &eeprom_data
[eeprom
->offset
], len
);
2128 static int smsc911x_ethtool_set_eeprom(struct net_device
*dev
,
2129 struct ethtool_eeprom
*eeprom
, u8
*data
)
2132 struct smsc911x_data
*pdata
= netdev_priv(dev
);
2134 smsc911x_eeprom_enable_access(pdata
);
2135 smsc911x_eeprom_send_cmd(pdata
, E2P_CMD_EPC_CMD_EWEN_
);
2136 ret
= smsc911x_eeprom_write_location(pdata
, eeprom
->offset
, *data
);
2137 smsc911x_eeprom_send_cmd(pdata
, E2P_CMD_EPC_CMD_EWDS_
);
2139 /* Single byte write, according to man page */
2145 static const struct ethtool_ops smsc911x_ethtool_ops
= {
2146 .get_link
= ethtool_op_get_link
,
2147 .get_drvinfo
= smsc911x_ethtool_getdrvinfo
,
2148 .nway_reset
= phy_ethtool_nway_reset
,
2149 .get_msglevel
= smsc911x_ethtool_getmsglevel
,
2150 .set_msglevel
= smsc911x_ethtool_setmsglevel
,
2151 .get_regs_len
= smsc911x_ethtool_getregslen
,
2152 .get_regs
= smsc911x_ethtool_getregs
,
2153 .get_eeprom_len
= smsc911x_ethtool_get_eeprom_len
,
2154 .get_eeprom
= smsc911x_ethtool_get_eeprom
,
2155 .set_eeprom
= smsc911x_ethtool_set_eeprom
,
2156 .get_ts_info
= ethtool_op_get_ts_info
,
2157 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
2158 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
2161 static const struct net_device_ops smsc911x_netdev_ops
= {
2162 .ndo_open
= smsc911x_open
,
2163 .ndo_stop
= smsc911x_stop
,
2164 .ndo_start_xmit
= smsc911x_hard_start_xmit
,
2165 .ndo_get_stats
= smsc911x_get_stats
,
2166 .ndo_set_rx_mode
= smsc911x_set_multicast_list
,
2167 .ndo_do_ioctl
= smsc911x_do_ioctl
,
2168 .ndo_validate_addr
= eth_validate_addr
,
2169 .ndo_set_mac_address
= smsc911x_set_mac_address
,
2170 #ifdef CONFIG_NET_POLL_CONTROLLER
2171 .ndo_poll_controller
= smsc911x_poll_controller
,
2175 /* copies the current mac address from hardware to dev->dev_addr */
2176 static void smsc911x_read_mac_address(struct net_device
*dev
)
2178 struct smsc911x_data
*pdata
= netdev_priv(dev
);
2179 u32 mac_high16
= smsc911x_mac_read(pdata
, ADDRH
);
2180 u32 mac_low32
= smsc911x_mac_read(pdata
, ADDRL
);
2182 dev
->dev_addr
[0] = (u8
)(mac_low32
);
2183 dev
->dev_addr
[1] = (u8
)(mac_low32
>> 8);
2184 dev
->dev_addr
[2] = (u8
)(mac_low32
>> 16);
2185 dev
->dev_addr
[3] = (u8
)(mac_low32
>> 24);
2186 dev
->dev_addr
[4] = (u8
)(mac_high16
);
2187 dev
->dev_addr
[5] = (u8
)(mac_high16
>> 8);
2190 /* Initializing private device structures, only called from probe */
2191 static int smsc911x_init(struct net_device
*dev
)
2193 struct smsc911x_data
*pdata
= netdev_priv(dev
);
2194 unsigned int byte_test
, mask
;
2195 unsigned int to
= 100;
2197 SMSC_TRACE(pdata
, probe
, "Driver Parameters:");
2198 SMSC_TRACE(pdata
, probe
, "LAN base: 0x%08lX",
2199 (unsigned long)pdata
->ioaddr
);
2200 SMSC_TRACE(pdata
, probe
, "IRQ: %d", dev
->irq
);
2201 SMSC_TRACE(pdata
, probe
, "PHY will be autodetected.");
2203 spin_lock_init(&pdata
->dev_lock
);
2204 spin_lock_init(&pdata
->mac_lock
);
2206 if (pdata
->ioaddr
== NULL
) {
2207 SMSC_WARN(pdata
, probe
, "pdata->ioaddr: 0x00000000");
2212 * poll the READY bit in PMT_CTRL. Any other access to the device is
2213 * forbidden while this bit isn't set. Try for 100ms
2215 * Note that this test is done before the WORD_SWAP register is
2216 * programmed. So in some configurations the READY bit is at 16 before
2217 * WORD_SWAP is written to. This issue is worked around by waiting
2218 * until either bit 0 or bit 16 gets set in PMT_CTRL.
2220 * SMSC has confirmed that checking bit 16 (marked as reserved in
2221 * the datasheet) is fine since these bits "will either never be set
2222 * or can only go high after READY does (so also indicate the device
2226 mask
= PMT_CTRL_READY_
| swahw32(PMT_CTRL_READY_
);
2227 while (!(smsc911x_reg_read(pdata
, PMT_CTRL
) & mask
) && --to
)
2231 netdev_err(dev
, "Device not READY in 100ms aborting\n");
2235 /* Check byte ordering */
2236 byte_test
= smsc911x_reg_read(pdata
, BYTE_TEST
);
2237 SMSC_TRACE(pdata
, probe
, "BYTE_TEST: 0x%08X", byte_test
);
2238 if (byte_test
== 0x43218765) {
2239 SMSC_TRACE(pdata
, probe
, "BYTE_TEST looks swapped, "
2240 "applying WORD_SWAP");
2241 smsc911x_reg_write(pdata
, WORD_SWAP
, 0xffffffff);
2243 /* 1 dummy read of BYTE_TEST is needed after a write to
2244 * WORD_SWAP before its contents are valid */
2245 byte_test
= smsc911x_reg_read(pdata
, BYTE_TEST
);
2247 byte_test
= smsc911x_reg_read(pdata
, BYTE_TEST
);
2250 if (byte_test
!= 0x87654321) {
2251 SMSC_WARN(pdata
, drv
, "BYTE_TEST: 0x%08X", byte_test
);
2252 if (((byte_test
>> 16) & 0xFFFF) == (byte_test
& 0xFFFF)) {
2253 SMSC_WARN(pdata
, probe
,
2254 "top 16 bits equal to bottom 16 bits");
2255 SMSC_TRACE(pdata
, probe
,
2256 "This may mean the chip is set "
2257 "for 32 bit while the bus is reading 16 bit");
2262 /* Default generation to zero (all workarounds apply) */
2263 pdata
->generation
= 0;
2265 pdata
->idrev
= smsc911x_reg_read(pdata
, ID_REV
);
2266 switch (pdata
->idrev
& 0xFFFF0000) {
2272 /* LAN911[5678] family */
2273 pdata
->generation
= pdata
->idrev
& 0x0000FFFF;
2280 /* LAN921[5678] family */
2281 pdata
->generation
= 3;
2289 /* LAN9210/LAN9211/LAN9220/LAN9221/LAN9250 */
2290 pdata
->generation
= 4;
2294 SMSC_WARN(pdata
, probe
, "LAN911x not identified, idrev: 0x%08X",
2299 SMSC_TRACE(pdata
, probe
,
2300 "LAN911x identified, idrev: 0x%08X, generation: %d",
2301 pdata
->idrev
, pdata
->generation
);
2303 if (pdata
->generation
== 0)
2304 SMSC_WARN(pdata
, probe
,
2305 "This driver is not intended for this chip revision");
2307 /* workaround for platforms without an eeprom, where the mac address
2308 * is stored elsewhere and set by the bootloader. This saves the
2309 * mac address before resetting the device */
2310 if (pdata
->config
.flags
& SMSC911X_SAVE_MAC_ADDRESS
) {
2311 spin_lock_irq(&pdata
->mac_lock
);
2312 smsc911x_read_mac_address(dev
);
2313 spin_unlock_irq(&pdata
->mac_lock
);
2316 /* Reset the LAN911x */
2317 if (smsc911x_phy_reset(pdata
) || smsc911x_soft_reset(pdata
))
2320 dev
->flags
|= IFF_MULTICAST
;
2321 netif_napi_add(dev
, &pdata
->napi
, smsc911x_poll
, SMSC_NAPI_WEIGHT
);
2322 dev
->netdev_ops
= &smsc911x_netdev_ops
;
2323 dev
->ethtool_ops
= &smsc911x_ethtool_ops
;
2328 static int smsc911x_drv_remove(struct platform_device
*pdev
)
2330 struct net_device
*dev
;
2331 struct smsc911x_data
*pdata
;
2332 struct resource
*res
;
2334 dev
= platform_get_drvdata(pdev
);
2336 pdata
= netdev_priv(dev
);
2338 BUG_ON(!pdata
->ioaddr
);
2340 SMSC_TRACE(pdata
, ifdown
, "Stopping driver");
2342 unregister_netdev(dev
);
2344 mdiobus_unregister(pdata
->mii_bus
);
2345 mdiobus_free(pdata
->mii_bus
);
2347 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
2350 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2352 release_mem_region(res
->start
, resource_size(res
));
2354 iounmap(pdata
->ioaddr
);
2356 (void)smsc911x_disable_resources(pdev
);
2357 smsc911x_free_resources(pdev
);
2361 pm_runtime_put(&pdev
->dev
);
2362 pm_runtime_disable(&pdev
->dev
);
2367 /* standard register acces */
2368 static const struct smsc911x_ops standard_smsc911x_ops
= {
2369 .reg_read
= __smsc911x_reg_read
,
2370 .reg_write
= __smsc911x_reg_write
,
2371 .rx_readfifo
= smsc911x_rx_readfifo
,
2372 .tx_writefifo
= smsc911x_tx_writefifo
,
2375 /* shifted register access */
2376 static const struct smsc911x_ops shifted_smsc911x_ops
= {
2377 .reg_read
= __smsc911x_reg_read_shift
,
2378 .reg_write
= __smsc911x_reg_write_shift
,
2379 .rx_readfifo
= smsc911x_rx_readfifo_shift
,
2380 .tx_writefifo
= smsc911x_tx_writefifo_shift
,
2383 static int smsc911x_probe_config(struct smsc911x_platform_config
*config
,
2390 phy_interface
= device_get_phy_mode(dev
);
2391 if (phy_interface
< 0)
2392 phy_interface
= PHY_INTERFACE_MODE_NA
;
2393 config
->phy_interface
= phy_interface
;
2395 device_get_mac_address(dev
, config
->mac
, ETH_ALEN
);
2397 err
= device_property_read_u32(dev
, "reg-io-width", &width
);
2400 if (!err
&& width
== 4)
2401 config
->flags
|= SMSC911X_USE_32BIT
;
2403 config
->flags
|= SMSC911X_USE_16BIT
;
2405 device_property_read_u32(dev
, "reg-shift", &config
->shift
);
2407 if (device_property_present(dev
, "smsc,irq-active-high"))
2408 config
->irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_HIGH
;
2410 if (device_property_present(dev
, "smsc,irq-push-pull"))
2411 config
->irq_type
= SMSC911X_IRQ_TYPE_PUSH_PULL
;
2413 if (device_property_present(dev
, "smsc,force-internal-phy"))
2414 config
->flags
|= SMSC911X_FORCE_INTERNAL_PHY
;
2416 if (device_property_present(dev
, "smsc,force-external-phy"))
2417 config
->flags
|= SMSC911X_FORCE_EXTERNAL_PHY
;
2419 if (device_property_present(dev
, "smsc,save-mac-address"))
2420 config
->flags
|= SMSC911X_SAVE_MAC_ADDRESS
;
2425 static int smsc911x_drv_probe(struct platform_device
*pdev
)
2427 struct net_device
*dev
;
2428 struct smsc911x_data
*pdata
;
2429 struct smsc911x_platform_config
*config
= dev_get_platdata(&pdev
->dev
);
2430 struct resource
*res
;
2434 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
2437 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2439 pr_warn("Could not allocate resource\n");
2443 res_size
= resource_size(res
);
2445 irq
= platform_get_irq(pdev
, 0);
2446 if (irq
== -EPROBE_DEFER
) {
2447 retval
= -EPROBE_DEFER
;
2449 } else if (irq
<= 0) {
2450 pr_warn("Could not allocate irq resource\n");
2455 if (!request_mem_region(res
->start
, res_size
, SMSC_CHIPNAME
)) {
2460 dev
= alloc_etherdev(sizeof(struct smsc911x_data
));
2463 goto out_release_io_1
;
2466 SET_NETDEV_DEV(dev
, &pdev
->dev
);
2468 pdata
= netdev_priv(dev
);
2470 pdata
->ioaddr
= ioremap_nocache(res
->start
, res_size
);
2471 if (!pdata
->ioaddr
) {
2473 goto out_ioremap_fail
;
2477 pdata
->msg_enable
= ((1 << debug
) - 1);
2479 platform_set_drvdata(pdev
, dev
);
2481 retval
= smsc911x_request_resources(pdev
);
2483 goto out_request_resources_fail
;
2485 retval
= smsc911x_enable_resources(pdev
);
2487 goto out_enable_resources_fail
;
2489 if (pdata
->ioaddr
== NULL
) {
2490 SMSC_WARN(pdata
, probe
, "Error smsc911x base address invalid");
2492 goto out_disable_resources
;
2495 retval
= smsc911x_probe_config(&pdata
->config
, &pdev
->dev
);
2496 if (retval
&& config
) {
2497 /* copy config parameters across to pdata */
2498 memcpy(&pdata
->config
, config
, sizeof(pdata
->config
));
2503 SMSC_WARN(pdata
, probe
, "Error smsc911x config not found");
2504 goto out_disable_resources
;
2507 /* assume standard, non-shifted, access to HW registers */
2508 pdata
->ops
= &standard_smsc911x_ops
;
2509 /* apply the right access if shifting is needed */
2510 if (pdata
->config
.shift
)
2511 pdata
->ops
= &shifted_smsc911x_ops
;
2513 pm_runtime_enable(&pdev
->dev
);
2514 pm_runtime_get_sync(&pdev
->dev
);
2516 retval
= smsc911x_init(dev
);
2518 goto out_disable_resources
;
2520 netif_carrier_off(dev
);
2522 retval
= smsc911x_mii_init(pdev
, dev
);
2524 SMSC_WARN(pdata
, probe
, "Error %i initialising mii", retval
);
2525 goto out_disable_resources
;
2528 retval
= register_netdev(dev
);
2530 SMSC_WARN(pdata
, probe
, "Error %i registering device", retval
);
2531 goto out_disable_resources
;
2533 SMSC_TRACE(pdata
, probe
,
2534 "Network interface: \"%s\"", dev
->name
);
2537 spin_lock_irq(&pdata
->mac_lock
);
2539 /* Check if mac address has been specified when bringing interface up */
2540 if (is_valid_ether_addr(dev
->dev_addr
)) {
2541 smsc911x_set_hw_mac_address(pdata
, dev
->dev_addr
);
2542 SMSC_TRACE(pdata
, probe
,
2543 "MAC Address is specified by configuration");
2544 } else if (is_valid_ether_addr(pdata
->config
.mac
)) {
2545 memcpy(dev
->dev_addr
, pdata
->config
.mac
, ETH_ALEN
);
2546 SMSC_TRACE(pdata
, probe
,
2547 "MAC Address specified by platform data");
2549 /* Try reading mac address from device. if EEPROM is present
2550 * it will already have been set */
2553 if (is_valid_ether_addr(dev
->dev_addr
)) {
2554 /* eeprom values are valid so use them */
2555 SMSC_TRACE(pdata
, probe
,
2556 "Mac Address is read from LAN911x EEPROM");
2558 /* eeprom values are invalid, generate random MAC */
2559 eth_hw_addr_random(dev
);
2560 smsc911x_set_hw_mac_address(pdata
, dev
->dev_addr
);
2561 SMSC_TRACE(pdata
, probe
,
2562 "MAC Address is set to eth_random_addr");
2566 spin_unlock_irq(&pdata
->mac_lock
);
2568 netdev_info(dev
, "MAC Address: %pM\n", dev
->dev_addr
);
2572 out_disable_resources
:
2573 pm_runtime_put(&pdev
->dev
);
2574 pm_runtime_disable(&pdev
->dev
);
2575 (void)smsc911x_disable_resources(pdev
);
2576 out_enable_resources_fail
:
2577 smsc911x_free_resources(pdev
);
2578 out_request_resources_fail
:
2579 iounmap(pdata
->ioaddr
);
2583 release_mem_region(res
->start
, resource_size(res
));
2589 /* This implementation assumes the devices remains powered on its VDDVARIO
2590 * pins during suspend. */
2592 /* TODO: implement freeze/thaw callbacks for hibernation.*/
2594 static int smsc911x_suspend(struct device
*dev
)
2596 struct net_device
*ndev
= dev_get_drvdata(dev
);
2597 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
2599 if (netif_running(ndev
)) {
2600 netif_stop_queue(ndev
);
2601 netif_device_detach(ndev
);
2604 /* enable wake on LAN, energy detection and the external PME
2606 smsc911x_reg_write(pdata
, PMT_CTRL
,
2607 PMT_CTRL_PM_MODE_D1_
| PMT_CTRL_WOL_EN_
|
2608 PMT_CTRL_ED_EN_
| PMT_CTRL_PME_EN_
);
2610 pm_runtime_disable(dev
);
2611 pm_runtime_set_suspended(dev
);
2616 static int smsc911x_resume(struct device
*dev
)
2618 struct net_device
*ndev
= dev_get_drvdata(dev
);
2619 struct smsc911x_data
*pdata
= netdev_priv(ndev
);
2620 unsigned int to
= 100;
2622 pm_runtime_enable(dev
);
2623 pm_runtime_resume(dev
);
2625 /* Note 3.11 from the datasheet:
2626 * "When the LAN9220 is in a power saving state, a write of any
2627 * data to the BYTE_TEST register will wake-up the device."
2629 smsc911x_reg_write(pdata
, BYTE_TEST
, 0);
2631 /* poll the READY bit in PMT_CTRL. Any other access to the device is
2632 * forbidden while this bit isn't set. Try for 100ms and return -EIO
2634 while (!(smsc911x_reg_read(pdata
, PMT_CTRL
) & PMT_CTRL_READY_
) && --to
)
2640 if (netif_running(ndev
)) {
2641 netif_device_attach(ndev
);
2642 netif_start_queue(ndev
);
2648 static const struct dev_pm_ops smsc911x_pm_ops
= {
2649 .suspend
= smsc911x_suspend
,
2650 .resume
= smsc911x_resume
,
2653 #define SMSC911X_PM_OPS (&smsc911x_pm_ops)
2656 #define SMSC911X_PM_OPS NULL
2660 static const struct of_device_id smsc911x_dt_ids
[] = {
2661 { .compatible
= "smsc,lan9115", },
2664 MODULE_DEVICE_TABLE(of
, smsc911x_dt_ids
);
2667 static const struct acpi_device_id smsc911x_acpi_match
[] = {
2671 MODULE_DEVICE_TABLE(acpi
, smsc911x_acpi_match
);
2673 static struct platform_driver smsc911x_driver
= {
2674 .probe
= smsc911x_drv_probe
,
2675 .remove
= smsc911x_drv_remove
,
2677 .name
= SMSC_CHIPNAME
,
2678 .pm
= SMSC911X_PM_OPS
,
2679 .of_match_table
= of_match_ptr(smsc911x_dt_ids
),
2680 .acpi_match_table
= ACPI_PTR(smsc911x_acpi_match
),
2684 /* Entry point for loading the module */
2685 static int __init
smsc911x_init_module(void)
2688 return platform_driver_register(&smsc911x_driver
);
2691 /* entry point for unloading the module */
2692 static void __exit
smsc911x_cleanup_module(void)
2694 platform_driver_unregister(&smsc911x_driver
);
2697 module_init(smsc911x_init_module
);
2698 module_exit(smsc911x_cleanup_module
);