]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/ethernet/smsc/smsc911x.c
net: ethernet: smsc: smsc911x: use phydev from struct net_device
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / ethernet / smsc / smsc911x.c
CommitLineData
fd9abb3d
SG
1/***************************************************************************
2 *
3 * Copyright (C) 2004-2008 SMSC
4 * Copyright (C) 2005-2008 ARM
5 *
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.
10 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
0ab75ae8 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
fd9abb3d
SG
18 *
19 ***************************************************************************
20 * Rewritten, heavily based on smsc911x simple driver by SMSC.
21 * Partly uses io macros from smc91x.c by Nicolas Pitre
22 *
23 * Supported devices:
24 * LAN9115, LAN9116, LAN9117, LAN9118
25 * LAN9215, LAN9216, LAN9217, LAN9218
26 * LAN9210, LAN9211
27 * LAN9220, LAN9221
28c21379 28 * LAN89218
fd9abb3d
SG
29 *
30 */
31
dffc6b24
JP
32#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
fd9abb3d 34#include <linux/crc32.h>
b6c23019 35#include <linux/clk.h>
fd9abb3d
SG
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>
a6b7a407 41#include <linux/interrupt.h>
fd9abb3d
SG
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>
c7e963f6 47#include <linux/regulator/consumer.h>
fd9abb3d 48#include <linux/sched.h>
fd9abb3d 49#include <linux/timer.h>
fd9abb3d
SG
50#include <linux/bug.h>
51#include <linux/bitops.h>
52#include <linux/irq.h>
53#include <linux/io.h>
833cc67c 54#include <linux/swab.h>
fd9abb3d
SG
55#include <linux/phy.h>
56#include <linux/smsc911x.h>
6cb87823 57#include <linux/device.h>
79f88ee9
SG
58#include <linux/of.h>
59#include <linux/of_device.h>
60#include <linux/of_gpio.h>
61#include <linux/of_net.h>
0b50dc4f 62#include <linux/acpi.h>
3a611e26 63#include <linux/pm_runtime.h>
0b50dc4f 64#include <linux/property.h>
3a611e26 65
fd9abb3d
SG
66#include "smsc911x.h"
67
68#define SMSC_CHIPNAME "smsc911x"
69#define SMSC_MDIONAME "smsc911x-mdio"
70#define SMSC_DRV_VERSION "2008-10-21"
71
72MODULE_LICENSE("GPL");
73MODULE_VERSION(SMSC_DRV_VERSION);
62038e4a 74MODULE_ALIAS("platform:smsc911x");
fd9abb3d
SG
75
76#if USE_DEBUG > 0
77static int debug = 16;
78#else
79static int debug = 3;
80#endif
81
82module_param(debug, int, 0);
83MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
84
c326de88
MP
85struct smsc911x_data;
86
87struct smsc911x_ops {
88 u32 (*reg_read)(struct smsc911x_data *pdata, u32 reg);
89 void (*reg_write)(struct smsc911x_data *pdata, u32 reg, u32 val);
90 void (*rx_readfifo)(struct smsc911x_data *pdata,
91 unsigned int *buf, unsigned int wordcount);
92 void (*tx_writefifo)(struct smsc911x_data *pdata,
93 unsigned int *buf, unsigned int wordcount);
94};
95
c7e963f6
RM
96#define SMSC911X_NUM_SUPPLIES 2
97
fd9abb3d
SG
98struct smsc911x_data {
99 void __iomem *ioaddr;
100
101 unsigned int idrev;
102
103 /* used to decide which workarounds apply */
104 unsigned int generation;
105
106 /* device configuration (copied from platform_data during probe) */
2107fb8b 107 struct smsc911x_platform_config config;
fd9abb3d
SG
108
109 /* This needs to be acquired before calling any of below:
110 * smsc911x_mac_read(), smsc911x_mac_write()
111 */
112 spinlock_t mac_lock;
113
492c5d94 114 /* spinlock to ensure register accesses are serialised */
fd9abb3d 115 spinlock_t dev_lock;
fd9abb3d 116
fd9abb3d 117 struct mii_bus *mii_bus;
fd9abb3d
SG
118 unsigned int using_extphy;
119 int last_duplex;
120 int last_carrier;
121
122 u32 msg_enable;
123 unsigned int gpio_setting;
124 unsigned int gpio_orig_setting;
125 struct net_device *dev;
126 struct napi_struct napi;
127
128 unsigned int software_irq_signal;
129
130#ifdef USE_PHY_WORK_AROUND
131#define MIN_PACKET_SIZE (64)
132 char loopback_tx_pkt[MIN_PACKET_SIZE];
133 char loopback_rx_pkt[MIN_PACKET_SIZE];
134 unsigned int resetcount;
135#endif
136
137 /* Members for Multicast filter workaround */
138 unsigned int multicast_update_pending;
139 unsigned int set_bits_mask;
140 unsigned int clear_bits_mask;
141 unsigned int hashhi;
142 unsigned int hashlo;
c326de88
MP
143
144 /* register access functions */
145 const struct smsc911x_ops *ops;
c7e963f6
RM
146
147 /* regulators */
148 struct regulator_bulk_data supplies[SMSC911X_NUM_SUPPLIES];
b6c23019
LJ
149
150 /* clock */
151 struct clk *clk;
fd9abb3d
SG
152};
153
c326de88
MP
154/* Easy access to information */
155#define __smsc_shift(pdata, reg) ((reg) << ((pdata)->config.shift))
156
492c5d94 157static inline u32 __smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
fd9abb3d 158{
2107fb8b
SG
159 if (pdata->config.flags & SMSC911X_USE_32BIT)
160 return readl(pdata->ioaddr + reg);
161
492c5d94
CM
162 if (pdata->config.flags & SMSC911X_USE_16BIT)
163 return ((readw(pdata->ioaddr + reg) & 0xFFFF) |
2107fb8b 164 ((readw(pdata->ioaddr + reg + 2) & 0xFFFF) << 16));
fd9abb3d 165
2107fb8b 166 BUG();
702403af 167 return 0;
fd9abb3d
SG
168}
169
c326de88
MP
170static inline u32
171__smsc911x_reg_read_shift(struct smsc911x_data *pdata, u32 reg)
172{
173 if (pdata->config.flags & SMSC911X_USE_32BIT)
174 return readl(pdata->ioaddr + __smsc_shift(pdata, reg));
175
176 if (pdata->config.flags & SMSC911X_USE_16BIT)
177 return (readw(pdata->ioaddr +
178 __smsc_shift(pdata, reg)) & 0xFFFF) |
179 ((readw(pdata->ioaddr +
180 __smsc_shift(pdata, reg + 2)) & 0xFFFF) << 16);
181
182 BUG();
183 return 0;
184}
185
492c5d94
CM
186static inline u32 smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
187{
188 u32 data;
189 unsigned long flags;
190
191 spin_lock_irqsave(&pdata->dev_lock, flags);
c326de88 192 data = pdata->ops->reg_read(pdata, reg);
492c5d94
CM
193 spin_unlock_irqrestore(&pdata->dev_lock, flags);
194
195 return data;
196}
197
198static inline void __smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
199 u32 val)
fd9abb3d 200{
2107fb8b
SG
201 if (pdata->config.flags & SMSC911X_USE_32BIT) {
202 writel(val, pdata->ioaddr + reg);
203 return;
204 }
205
206 if (pdata->config.flags & SMSC911X_USE_16BIT) {
2107fb8b
SG
207 writew(val & 0xFFFF, pdata->ioaddr + reg);
208 writew((val >> 16) & 0xFFFF, pdata->ioaddr + reg + 2);
2107fb8b
SG
209 return;
210 }
fd9abb3d 211
2107fb8b 212 BUG();
fd9abb3d
SG
213}
214
c326de88
MP
215static inline void
216__smsc911x_reg_write_shift(struct smsc911x_data *pdata, u32 reg, u32 val)
217{
218 if (pdata->config.flags & SMSC911X_USE_32BIT) {
219 writel(val, pdata->ioaddr + __smsc_shift(pdata, reg));
220 return;
221 }
222
223 if (pdata->config.flags & SMSC911X_USE_16BIT) {
224 writew(val & 0xFFFF,
225 pdata->ioaddr + __smsc_shift(pdata, reg));
226 writew((val >> 16) & 0xFFFF,
227 pdata->ioaddr + __smsc_shift(pdata, reg + 2));
228 return;
229 }
230
231 BUG();
232}
233
492c5d94
CM
234static inline void smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
235 u32 val)
236{
237 unsigned long flags;
238
239 spin_lock_irqsave(&pdata->dev_lock, flags);
c326de88 240 pdata->ops->reg_write(pdata, reg, val);
492c5d94
CM
241 spin_unlock_irqrestore(&pdata->dev_lock, flags);
242}
243
fd9abb3d
SG
244/* Writes a packet to the TX_DATA_FIFO */
245static inline void
246smsc911x_tx_writefifo(struct smsc911x_data *pdata, unsigned int *buf,
247 unsigned int wordcount)
248{
492c5d94
CM
249 unsigned long flags;
250
251 spin_lock_irqsave(&pdata->dev_lock, flags);
252
833cc67c
MD
253 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
254 while (wordcount--)
492c5d94
CM
255 __smsc911x_reg_write(pdata, TX_DATA_FIFO,
256 swab32(*buf++));
257 goto out;
833cc67c
MD
258 }
259
2107fb8b 260 if (pdata->config.flags & SMSC911X_USE_32BIT) {
2925f6c0 261 iowrite32_rep(pdata->ioaddr + TX_DATA_FIFO, buf, wordcount);
492c5d94 262 goto out;
2107fb8b
SG
263 }
264
265 if (pdata->config.flags & SMSC911X_USE_16BIT) {
266 while (wordcount--)
492c5d94
CM
267 __smsc911x_reg_write(pdata, TX_DATA_FIFO, *buf++);
268 goto out;
2107fb8b
SG
269 }
270
271 BUG();
492c5d94
CM
272out:
273 spin_unlock_irqrestore(&pdata->dev_lock, flags);
fd9abb3d
SG
274}
275
c326de88
MP
276/* Writes a packet to the TX_DATA_FIFO - shifted version */
277static inline void
278smsc911x_tx_writefifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
279 unsigned int wordcount)
280{
281 unsigned long flags;
282
283 spin_lock_irqsave(&pdata->dev_lock, flags);
284
285 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
286 while (wordcount--)
287 __smsc911x_reg_write_shift(pdata, TX_DATA_FIFO,
288 swab32(*buf++));
289 goto out;
290 }
291
292 if (pdata->config.flags & SMSC911X_USE_32BIT) {
2925f6c0 293 iowrite32_rep(pdata->ioaddr + __smsc_shift(pdata,
c326de88
MP
294 TX_DATA_FIFO), buf, wordcount);
295 goto out;
296 }
297
298 if (pdata->config.flags & SMSC911X_USE_16BIT) {
299 while (wordcount--)
300 __smsc911x_reg_write_shift(pdata,
301 TX_DATA_FIFO, *buf++);
302 goto out;
303 }
304
305 BUG();
306out:
307 spin_unlock_irqrestore(&pdata->dev_lock, flags);
308}
309
fd9abb3d
SG
310/* Reads a packet out of the RX_DATA_FIFO */
311static inline void
312smsc911x_rx_readfifo(struct smsc911x_data *pdata, unsigned int *buf,
313 unsigned int wordcount)
314{
492c5d94
CM
315 unsigned long flags;
316
317 spin_lock_irqsave(&pdata->dev_lock, flags);
318
833cc67c
MD
319 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
320 while (wordcount--)
492c5d94
CM
321 *buf++ = swab32(__smsc911x_reg_read(pdata,
322 RX_DATA_FIFO));
323 goto out;
833cc67c
MD
324 }
325
2107fb8b 326 if (pdata->config.flags & SMSC911X_USE_32BIT) {
2925f6c0 327 ioread32_rep(pdata->ioaddr + RX_DATA_FIFO, buf, wordcount);
492c5d94 328 goto out;
2107fb8b 329 }
fd9abb3d 330
2107fb8b
SG
331 if (pdata->config.flags & SMSC911X_USE_16BIT) {
332 while (wordcount--)
492c5d94
CM
333 *buf++ = __smsc911x_reg_read(pdata, RX_DATA_FIFO);
334 goto out;
2107fb8b
SG
335 }
336
337 BUG();
492c5d94
CM
338out:
339 spin_unlock_irqrestore(&pdata->dev_lock, flags);
2107fb8b 340}
fd9abb3d 341
c326de88
MP
342/* Reads a packet out of the RX_DATA_FIFO - shifted version */
343static inline void
344smsc911x_rx_readfifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
345 unsigned int wordcount)
346{
347 unsigned long flags;
348
349 spin_lock_irqsave(&pdata->dev_lock, flags);
350
351 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
352 while (wordcount--)
353 *buf++ = swab32(__smsc911x_reg_read_shift(pdata,
354 RX_DATA_FIFO));
355 goto out;
356 }
357
358 if (pdata->config.flags & SMSC911X_USE_32BIT) {
2925f6c0 359 ioread32_rep(pdata->ioaddr + __smsc_shift(pdata,
c326de88
MP
360 RX_DATA_FIFO), buf, wordcount);
361 goto out;
362 }
363
364 if (pdata->config.flags & SMSC911X_USE_16BIT) {
365 while (wordcount--)
366 *buf++ = __smsc911x_reg_read_shift(pdata,
367 RX_DATA_FIFO);
368 goto out;
369 }
370
371 BUG();
372out:
373 spin_unlock_irqrestore(&pdata->dev_lock, flags);
374}
375
c7e963f6 376/*
b6c23019 377 * enable regulator and clock resources.
c7e963f6
RM
378 */
379static int smsc911x_enable_resources(struct platform_device *pdev)
380{
381 struct net_device *ndev = platform_get_drvdata(pdev);
382 struct smsc911x_data *pdata = netdev_priv(ndev);
383 int ret = 0;
384
385 ret = regulator_bulk_enable(ARRAY_SIZE(pdata->supplies),
386 pdata->supplies);
387 if (ret)
388 netdev_err(ndev, "failed to enable regulators %d\n",
389 ret);
b6c23019
LJ
390
391 if (!IS_ERR(pdata->clk)) {
392 ret = clk_prepare_enable(pdata->clk);
393 if (ret < 0)
394 netdev_err(ndev, "failed to enable clock %d\n", ret);
395 }
396
c7e963f6
RM
397 return ret;
398}
399
400/*
401 * disable resources, currently just regulators.
402 */
403static int smsc911x_disable_resources(struct platform_device *pdev)
404{
405 struct net_device *ndev = platform_get_drvdata(pdev);
406 struct smsc911x_data *pdata = netdev_priv(ndev);
407 int ret = 0;
408
409 ret = regulator_bulk_disable(ARRAY_SIZE(pdata->supplies),
410 pdata->supplies);
b6c23019
LJ
411
412 if (!IS_ERR(pdata->clk))
413 clk_disable_unprepare(pdata->clk);
414
c7e963f6
RM
415 return ret;
416}
417
418/*
419 * Request resources, currently just regulators.
420 *
421 * The SMSC911x has two power pins: vddvario and vdd33a, in designs where
422 * these are not always-on we need to request regulators to be turned on
423 * before we can try to access the device registers.
424 */
425static int smsc911x_request_resources(struct platform_device *pdev)
426{
427 struct net_device *ndev = platform_get_drvdata(pdev);
428 struct smsc911x_data *pdata = netdev_priv(ndev);
429 int ret = 0;
430
431 /* Request regulators */
432 pdata->supplies[0].supply = "vdd33a";
433 pdata->supplies[1].supply = "vddvario";
434 ret = regulator_bulk_get(&pdev->dev,
435 ARRAY_SIZE(pdata->supplies),
436 pdata->supplies);
437 if (ret)
438 netdev_err(ndev, "couldn't get regulators %d\n",
439 ret);
b6c23019
LJ
440
441 /* Request clock */
442 pdata->clk = clk_get(&pdev->dev, NULL);
443 if (IS_ERR(pdata->clk))
1e87af97
FE
444 dev_dbg(&pdev->dev, "couldn't get clock %li\n",
445 PTR_ERR(pdata->clk));
b6c23019 446
c7e963f6
RM
447 return ret;
448}
449
450/*
451 * Free resources, currently just regulators.
452 *
453 */
454static void smsc911x_free_resources(struct platform_device *pdev)
455{
456 struct net_device *ndev = platform_get_drvdata(pdev);
457 struct smsc911x_data *pdata = netdev_priv(ndev);
458
459 /* Free regulators */
460 regulator_bulk_free(ARRAY_SIZE(pdata->supplies),
461 pdata->supplies);
b6c23019
LJ
462
463 /* Free clock */
464 if (!IS_ERR(pdata->clk)) {
465 clk_put(pdata->clk);
466 pdata->clk = NULL;
467 }
c7e963f6
RM
468}
469
fd9abb3d
SG
470/* waits for MAC not busy, with timeout. Only called by smsc911x_mac_read
471 * and smsc911x_mac_write, so assumes mac_lock is held */
472static int smsc911x_mac_complete(struct smsc911x_data *pdata)
473{
474 int i;
475 u32 val;
476
477 SMSC_ASSERT_MAC_LOCK(pdata);
478
479 for (i = 0; i < 40; i++) {
480 val = smsc911x_reg_read(pdata, MAC_CSR_CMD);
481 if (!(val & MAC_CSR_CMD_CSR_BUSY_))
482 return 0;
483 }
dffc6b24
JP
484 SMSC_WARN(pdata, hw, "Timed out waiting for MAC not BUSY. "
485 "MAC_CSR_CMD: 0x%08X", val);
fd9abb3d
SG
486 return -EIO;
487}
488
489/* Fetches a MAC register value. Assumes mac_lock is acquired */
490static u32 smsc911x_mac_read(struct smsc911x_data *pdata, unsigned int offset)
491{
492 unsigned int temp;
493
494 SMSC_ASSERT_MAC_LOCK(pdata);
495
496 temp = smsc911x_reg_read(pdata, MAC_CSR_CMD);
497 if (unlikely(temp & MAC_CSR_CMD_CSR_BUSY_)) {
dffc6b24 498 SMSC_WARN(pdata, hw, "MAC busy at entry");
fd9abb3d
SG
499 return 0xFFFFFFFF;
500 }
501
502 /* Send the MAC cmd */
503 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
504 MAC_CSR_CMD_CSR_BUSY_ | MAC_CSR_CMD_R_NOT_W_));
505
506 /* Workaround for hardware read-after-write restriction */
507 temp = smsc911x_reg_read(pdata, BYTE_TEST);
508
509 /* Wait for the read to complete */
510 if (likely(smsc911x_mac_complete(pdata) == 0))
511 return smsc911x_reg_read(pdata, MAC_CSR_DATA);
512
dffc6b24 513 SMSC_WARN(pdata, hw, "MAC busy after read");
fd9abb3d
SG
514 return 0xFFFFFFFF;
515}
516
517/* Set a mac register, mac_lock must be acquired before calling */
518static void smsc911x_mac_write(struct smsc911x_data *pdata,
519 unsigned int offset, u32 val)
520{
521 unsigned int temp;
522
523 SMSC_ASSERT_MAC_LOCK(pdata);
524
525 temp = smsc911x_reg_read(pdata, MAC_CSR_CMD);
526 if (unlikely(temp & MAC_CSR_CMD_CSR_BUSY_)) {
dffc6b24
JP
527 SMSC_WARN(pdata, hw,
528 "smsc911x_mac_write failed, MAC busy at entry");
fd9abb3d
SG
529 return;
530 }
531
532 /* Send data to write */
533 smsc911x_reg_write(pdata, MAC_CSR_DATA, val);
534
535 /* Write the actual data */
536 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
537 MAC_CSR_CMD_CSR_BUSY_));
538
539 /* Workaround for hardware read-after-write restriction */
540 temp = smsc911x_reg_read(pdata, BYTE_TEST);
541
542 /* Wait for the write to complete */
543 if (likely(smsc911x_mac_complete(pdata) == 0))
544 return;
545
dffc6b24 546 SMSC_WARN(pdata, hw, "smsc911x_mac_write failed, MAC busy after write");
fd9abb3d
SG
547}
548
549/* Get a phy register */
550static int smsc911x_mii_read(struct mii_bus *bus, int phyaddr, int regidx)
551{
552 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
553 unsigned long flags;
554 unsigned int addr;
555 int i, reg;
556
557 spin_lock_irqsave(&pdata->mac_lock, flags);
558
559 /* Confirm MII not busy */
560 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
dffc6b24 561 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_read???");
fd9abb3d
SG
562 reg = -EIO;
563 goto out;
564 }
565
566 /* Set the address, index & direction (read from PHY) */
567 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6);
568 smsc911x_mac_write(pdata, MII_ACC, addr);
569
570 /* Wait for read to complete w/ timeout */
571 for (i = 0; i < 100; i++)
572 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
573 reg = smsc911x_mac_read(pdata, MII_DATA);
574 goto out;
575 }
576
dffc6b24 577 SMSC_WARN(pdata, hw, "Timed out waiting for MII read to finish");
fd9abb3d
SG
578 reg = -EIO;
579
580out:
581 spin_unlock_irqrestore(&pdata->mac_lock, flags);
582 return reg;
583}
584
585/* Set a phy register */
586static int smsc911x_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
587 u16 val)
588{
589 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
590 unsigned long flags;
591 unsigned int addr;
592 int i, reg;
593
594 spin_lock_irqsave(&pdata->mac_lock, flags);
595
596 /* Confirm MII not busy */
597 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
dffc6b24 598 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_write???");
fd9abb3d
SG
599 reg = -EIO;
600 goto out;
601 }
602
603 /* Put the data to write in the MAC */
604 smsc911x_mac_write(pdata, MII_DATA, val);
605
606 /* Set the address, index & direction (write to PHY) */
607 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6) |
608 MII_ACC_MII_WRITE_;
609 smsc911x_mac_write(pdata, MII_ACC, addr);
610
611 /* Wait for write to complete w/ timeout */
612 for (i = 0; i < 100; i++)
613 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
614 reg = 0;
615 goto out;
616 }
617
dffc6b24 618 SMSC_WARN(pdata, hw, "Timed out waiting for MII write to finish");
fd9abb3d
SG
619 reg = -EIO;
620
621out:
622 spin_unlock_irqrestore(&pdata->mac_lock, flags);
623 return reg;
624}
625
d23f028a
SG
626/* Switch to external phy. Assumes tx and rx are stopped. */
627static void smsc911x_phy_enable_external(struct smsc911x_data *pdata)
fd9abb3d
SG
628{
629 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
630
d23f028a
SG
631 /* Disable phy clocks to the MAC */
632 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
633 hwcfg |= HW_CFG_PHY_CLK_SEL_CLK_DIS_;
634 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
635 udelay(10); /* Enough time for clocks to stop */
fd9abb3d 636
d23f028a
SG
637 /* Switch to external phy */
638 hwcfg |= HW_CFG_EXT_PHY_EN_;
639 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
fd9abb3d 640
d23f028a
SG
641 /* Enable phy clocks to the MAC */
642 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
643 hwcfg |= HW_CFG_PHY_CLK_SEL_EXT_PHY_;
644 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
645 udelay(10); /* Enough time for clocks to restart */
fd9abb3d 646
d23f028a
SG
647 hwcfg |= HW_CFG_SMI_SEL_;
648 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
649}
fd9abb3d 650
d23f028a
SG
651/* Autodetects and enables external phy if present on supported chips.
652 * autodetection can be overridden by specifying SMSC911X_FORCE_INTERNAL_PHY
653 * or SMSC911X_FORCE_EXTERNAL_PHY in the platform_data flags. */
654static void smsc911x_phy_initialise_external(struct smsc911x_data *pdata)
655{
656 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
fd9abb3d 657
d23f028a 658 if (pdata->config.flags & SMSC911X_FORCE_INTERNAL_PHY) {
dffc6b24 659 SMSC_TRACE(pdata, hw, "Forcing internal PHY");
d23f028a
SG
660 pdata->using_extphy = 0;
661 } else if (pdata->config.flags & SMSC911X_FORCE_EXTERNAL_PHY) {
dffc6b24 662 SMSC_TRACE(pdata, hw, "Forcing external PHY");
d23f028a
SG
663 smsc911x_phy_enable_external(pdata);
664 pdata->using_extphy = 1;
665 } else if (hwcfg & HW_CFG_EXT_PHY_DET_) {
dffc6b24
JP
666 SMSC_TRACE(pdata, hw,
667 "HW_CFG EXT_PHY_DET set, using external PHY");
d23f028a 668 smsc911x_phy_enable_external(pdata);
fd9abb3d
SG
669 pdata->using_extphy = 1;
670 } else {
dffc6b24
JP
671 SMSC_TRACE(pdata, hw,
672 "HW_CFG EXT_PHY_DET clear, using internal PHY");
d23f028a 673 pdata->using_extphy = 0;
fd9abb3d 674 }
fd9abb3d
SG
675}
676
677/* Fetches a tx status out of the status fifo */
678static unsigned int smsc911x_tx_get_txstatus(struct smsc911x_data *pdata)
679{
680 unsigned int result =
681 smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TSUSED_;
682
683 if (result != 0)
684 result = smsc911x_reg_read(pdata, TX_STATUS_FIFO);
685
686 return result;
687}
688
689/* Fetches the next rx status */
690static unsigned int smsc911x_rx_get_rxstatus(struct smsc911x_data *pdata)
691{
692 unsigned int result =
693 smsc911x_reg_read(pdata, RX_FIFO_INF) & RX_FIFO_INF_RXSUSED_;
694
695 if (result != 0)
696 result = smsc911x_reg_read(pdata, RX_STATUS_FIFO);
697
698 return result;
699}
700
701#ifdef USE_PHY_WORK_AROUND
702static int smsc911x_phy_check_loopbackpkt(struct smsc911x_data *pdata)
703{
704 unsigned int tries;
705 u32 wrsz;
706 u32 rdsz;
707 ulong bufp;
708
709 for (tries = 0; tries < 10; tries++) {
710 unsigned int txcmd_a;
711 unsigned int txcmd_b;
712 unsigned int status;
713 unsigned int pktlength;
714 unsigned int i;
715
716 /* Zero-out rx packet memory */
717 memset(pdata->loopback_rx_pkt, 0, MIN_PACKET_SIZE);
718
719 /* Write tx packet to 118 */
720 txcmd_a = (u32)((ulong)pdata->loopback_tx_pkt & 0x03) << 16;
721 txcmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
722 txcmd_a |= MIN_PACKET_SIZE;
723
724 txcmd_b = MIN_PACKET_SIZE << 16 | MIN_PACKET_SIZE;
725
726 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_a);
727 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_b);
728
729 bufp = (ulong)pdata->loopback_tx_pkt & (~0x3);
730 wrsz = MIN_PACKET_SIZE + 3;
731 wrsz += (u32)((ulong)pdata->loopback_tx_pkt & 0x3);
732 wrsz >>= 2;
733
c326de88 734 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
fd9abb3d
SG
735
736 /* Wait till transmit is done */
737 i = 60;
738 do {
739 udelay(5);
740 status = smsc911x_tx_get_txstatus(pdata);
741 } while ((i--) && (!status));
742
743 if (!status) {
dffc6b24
JP
744 SMSC_WARN(pdata, hw,
745 "Failed to transmit during loopback test");
fd9abb3d
SG
746 continue;
747 }
748 if (status & TX_STS_ES_) {
dffc6b24
JP
749 SMSC_WARN(pdata, hw,
750 "Transmit encountered errors during loopback test");
fd9abb3d
SG
751 continue;
752 }
753
754 /* Wait till receive is done */
755 i = 60;
756 do {
757 udelay(5);
758 status = smsc911x_rx_get_rxstatus(pdata);
759 } while ((i--) && (!status));
760
761 if (!status) {
dffc6b24
JP
762 SMSC_WARN(pdata, hw,
763 "Failed to receive during loopback test");
fd9abb3d
SG
764 continue;
765 }
766 if (status & RX_STS_ES_) {
dffc6b24
JP
767 SMSC_WARN(pdata, hw,
768 "Receive encountered errors during loopback test");
fd9abb3d
SG
769 continue;
770 }
771
772 pktlength = ((status & 0x3FFF0000UL) >> 16);
773 bufp = (ulong)pdata->loopback_rx_pkt;
774 rdsz = pktlength + 3;
775 rdsz += (u32)((ulong)pdata->loopback_rx_pkt & 0x3);
776 rdsz >>= 2;
777
c326de88 778 pdata->ops->rx_readfifo(pdata, (unsigned int *)bufp, rdsz);
fd9abb3d
SG
779
780 if (pktlength != (MIN_PACKET_SIZE + 4)) {
dffc6b24
JP
781 SMSC_WARN(pdata, hw, "Unexpected packet size "
782 "during loop back test, size=%d, will retry",
783 pktlength);
fd9abb3d
SG
784 } else {
785 unsigned int j;
786 int mismatch = 0;
787 for (j = 0; j < MIN_PACKET_SIZE; j++) {
788 if (pdata->loopback_tx_pkt[j]
789 != pdata->loopback_rx_pkt[j]) {
790 mismatch = 1;
791 break;
792 }
793 }
794 if (!mismatch) {
dffc6b24 795 SMSC_TRACE(pdata, hw, "Successfully verified "
fd9abb3d
SG
796 "loopback packet");
797 return 0;
798 } else {
dffc6b24
JP
799 SMSC_WARN(pdata, hw, "Data mismatch "
800 "during loop back test, will retry");
fd9abb3d
SG
801 }
802 }
803 }
804
805 return -EIO;
806}
807
808static int smsc911x_phy_reset(struct smsc911x_data *pdata)
809{
fd9abb3d
SG
810 unsigned int temp;
811 unsigned int i = 100000;
812
cd998ecd
PF
813 temp = smsc911x_reg_read(pdata, PMT_CTRL);
814 smsc911x_reg_write(pdata, PMT_CTRL, temp | PMT_CTRL_PHY_RST_);
fd9abb3d
SG
815 do {
816 msleep(1);
cd998ecd
PF
817 temp = smsc911x_reg_read(pdata, PMT_CTRL);
818 } while ((i--) && (temp & PMT_CTRL_PHY_RST_));
fd9abb3d 819
cd998ecd 820 if (unlikely(temp & PMT_CTRL_PHY_RST_)) {
dffc6b24 821 SMSC_WARN(pdata, hw, "PHY reset failed to complete");
fd9abb3d
SG
822 return -EIO;
823 }
824 /* Extra delay required because the phy may not be completed with
825 * its reset when BMCR_RESET is cleared. Specs say 256 uS is
826 * enough delay but using 1ms here to be safe */
827 msleep(1);
828
829 return 0;
830}
831
832static int smsc911x_phy_loopbacktest(struct net_device *dev)
833{
834 struct smsc911x_data *pdata = netdev_priv(dev);
f788e322 835 struct phy_device *phy_dev = dev->phydev;
fd9abb3d
SG
836 int result = -EIO;
837 unsigned int i, val;
838 unsigned long flags;
839
840 /* Initialise tx packet using broadcast destination address */
c7bf7169 841 eth_broadcast_addr(pdata->loopback_tx_pkt);
fd9abb3d
SG
842
843 /* Use incrementing source address */
844 for (i = 6; i < 12; i++)
845 pdata->loopback_tx_pkt[i] = (char)i;
846
847 /* Set length type field */
848 pdata->loopback_tx_pkt[12] = 0x00;
849 pdata->loopback_tx_pkt[13] = 0x00;
850
851 for (i = 14; i < MIN_PACKET_SIZE; i++)
852 pdata->loopback_tx_pkt[i] = (char)i;
853
854 val = smsc911x_reg_read(pdata, HW_CFG);
855 val &= HW_CFG_TX_FIF_SZ_;
856 val |= HW_CFG_SF_;
857 smsc911x_reg_write(pdata, HW_CFG, val);
858
859 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
860 smsc911x_reg_write(pdata, RX_CFG,
861 (u32)((ulong)pdata->loopback_rx_pkt & 0x03) << 8);
862
863 for (i = 0; i < 10; i++) {
864 /* Set PHY to 10/FD, no ANEG, and loopback mode */
e5a03bfd
AL
865 smsc911x_mii_write(phy_dev->mdio.bus, phy_dev->mdio.addr,
866 MII_BMCR, BMCR_LOOPBACK | BMCR_FULLDPLX);
fd9abb3d
SG
867
868 /* Enable MAC tx/rx, FD */
869 spin_lock_irqsave(&pdata->mac_lock, flags);
870 smsc911x_mac_write(pdata, MAC_CR, MAC_CR_FDPX_
871 | MAC_CR_TXEN_ | MAC_CR_RXEN_);
872 spin_unlock_irqrestore(&pdata->mac_lock, flags);
873
874 if (smsc911x_phy_check_loopbackpkt(pdata) == 0) {
875 result = 0;
876 break;
877 }
878 pdata->resetcount++;
879
880 /* Disable MAC rx */
881 spin_lock_irqsave(&pdata->mac_lock, flags);
882 smsc911x_mac_write(pdata, MAC_CR, 0);
883 spin_unlock_irqrestore(&pdata->mac_lock, flags);
884
885 smsc911x_phy_reset(pdata);
886 }
887
888 /* Disable MAC */
889 spin_lock_irqsave(&pdata->mac_lock, flags);
890 smsc911x_mac_write(pdata, MAC_CR, 0);
891 spin_unlock_irqrestore(&pdata->mac_lock, flags);
892
893 /* Cancel PHY loopback mode */
e5a03bfd 894 smsc911x_mii_write(phy_dev->mdio.bus, phy_dev->mdio.addr, MII_BMCR, 0);
fd9abb3d
SG
895
896 smsc911x_reg_write(pdata, TX_CFG, 0);
897 smsc911x_reg_write(pdata, RX_CFG, 0);
898
899 return result;
900}
901#endif /* USE_PHY_WORK_AROUND */
902
fd9abb3d
SG
903static void smsc911x_phy_update_flowcontrol(struct smsc911x_data *pdata)
904{
f788e322
PR
905 struct net_device *ndev = pdata->dev;
906 struct phy_device *phy_dev = ndev->phydev;
fd9abb3d
SG
907 u32 afc = smsc911x_reg_read(pdata, AFC_CFG);
908 u32 flow;
909 unsigned long flags;
910
911 if (phy_dev->duplex == DUPLEX_FULL) {
912 u16 lcladv = phy_read(phy_dev, MII_ADVERTISE);
913 u16 rmtadv = phy_read(phy_dev, MII_LPA);
bc02ff95 914 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
fd9abb3d
SG
915
916 if (cap & FLOW_CTRL_RX)
917 flow = 0xFFFF0002;
918 else
919 flow = 0;
920
921 if (cap & FLOW_CTRL_TX)
922 afc |= 0xF;
923 else
924 afc &= ~0xF;
925
dffc6b24
JP
926 SMSC_TRACE(pdata, hw, "rx pause %s, tx pause %s",
927 (cap & FLOW_CTRL_RX ? "enabled" : "disabled"),
928 (cap & FLOW_CTRL_TX ? "enabled" : "disabled"));
fd9abb3d 929 } else {
dffc6b24 930 SMSC_TRACE(pdata, hw, "half duplex");
fd9abb3d
SG
931 flow = 0;
932 afc |= 0xF;
933 }
934
935 spin_lock_irqsave(&pdata->mac_lock, flags);
936 smsc911x_mac_write(pdata, FLOW, flow);
937 spin_unlock_irqrestore(&pdata->mac_lock, flags);
938
939 smsc911x_reg_write(pdata, AFC_CFG, afc);
940}
941
942/* Update link mode if anything has changed. Called periodically when the
943 * PHY is in polling mode, even if nothing has changed. */
944static void smsc911x_phy_adjust_link(struct net_device *dev)
945{
946 struct smsc911x_data *pdata = netdev_priv(dev);
f788e322 947 struct phy_device *phy_dev = dev->phydev;
fd9abb3d
SG
948 unsigned long flags;
949 int carrier;
950
951 if (phy_dev->duplex != pdata->last_duplex) {
952 unsigned int mac_cr;
dffc6b24 953 SMSC_TRACE(pdata, hw, "duplex state has changed");
fd9abb3d
SG
954
955 spin_lock_irqsave(&pdata->mac_lock, flags);
956 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
957 if (phy_dev->duplex) {
dffc6b24
JP
958 SMSC_TRACE(pdata, hw,
959 "configuring for full duplex mode");
fd9abb3d
SG
960 mac_cr |= MAC_CR_FDPX_;
961 } else {
dffc6b24
JP
962 SMSC_TRACE(pdata, hw,
963 "configuring for half duplex mode");
fd9abb3d
SG
964 mac_cr &= ~MAC_CR_FDPX_;
965 }
966 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
967 spin_unlock_irqrestore(&pdata->mac_lock, flags);
968
969 smsc911x_phy_update_flowcontrol(pdata);
970 pdata->last_duplex = phy_dev->duplex;
971 }
972
973 carrier = netif_carrier_ok(dev);
974 if (carrier != pdata->last_carrier) {
dffc6b24 975 SMSC_TRACE(pdata, hw, "carrier state has changed");
fd9abb3d 976 if (carrier) {
dffc6b24 977 SMSC_TRACE(pdata, hw, "configuring for carrier OK");
fd9abb3d
SG
978 if ((pdata->gpio_orig_setting & GPIO_CFG_LED1_EN_) &&
979 (!pdata->using_extphy)) {
88393161 980 /* Restore original GPIO configuration */
fd9abb3d
SG
981 pdata->gpio_setting = pdata->gpio_orig_setting;
982 smsc911x_reg_write(pdata, GPIO_CFG,
983 pdata->gpio_setting);
984 }
985 } else {
dffc6b24 986 SMSC_TRACE(pdata, hw, "configuring for no carrier");
fd9abb3d
SG
987 /* Check global setting that LED1
988 * usage is 10/100 indicator */
989 pdata->gpio_setting = smsc911x_reg_read(pdata,
990 GPIO_CFG);
8e95a202
JP
991 if ((pdata->gpio_setting & GPIO_CFG_LED1_EN_) &&
992 (!pdata->using_extphy)) {
fd9abb3d 993 /* Force 10/100 LED off, after saving
88393161 994 * original GPIO configuration */
fd9abb3d
SG
995 pdata->gpio_orig_setting = pdata->gpio_setting;
996
997 pdata->gpio_setting &= ~GPIO_CFG_LED1_EN_;
998 pdata->gpio_setting |= (GPIO_CFG_GPIOBUF0_
999 | GPIO_CFG_GPIODIR0_
1000 | GPIO_CFG_GPIOD0_);
1001 smsc911x_reg_write(pdata, GPIO_CFG,
1002 pdata->gpio_setting);
1003 }
1004 }
1005 pdata->last_carrier = carrier;
1006 }
1007}
1008
1009static int smsc911x_mii_probe(struct net_device *dev)
1010{
1011 struct smsc911x_data *pdata = netdev_priv(dev);
1012 struct phy_device *phydev = NULL;
e4a474f8 1013 int ret;
fd9abb3d
SG
1014
1015 /* find the first phy */
e4a474f8 1016 phydev = phy_find_first(pdata->mii_bus);
fd9abb3d 1017 if (!phydev) {
dffc6b24 1018 netdev_err(dev, "no PHY found\n");
fd9abb3d
SG
1019 return -ENODEV;
1020 }
1021
dffc6b24 1022 SMSC_TRACE(pdata, probe, "PHY: addr %d, phy_id 0x%08X",
e5a03bfd 1023 phydev->mdio.addr, phydev->phy_id);
e4a474f8 1024
f9a8f83b
FF
1025 ret = phy_connect_direct(dev, phydev, &smsc911x_phy_adjust_link,
1026 pdata->config.phy_interface);
fd9abb3d 1027
e4a474f8 1028 if (ret) {
dffc6b24 1029 netdev_err(dev, "Could not attach to PHY\n");
e4a474f8 1030 return ret;
fd9abb3d
SG
1031 }
1032
2220943a 1033 phy_attached_info(phydev);
fd9abb3d
SG
1034
1035 /* mask with MAC supported features */
1036 phydev->supported &= (PHY_BASIC_FEATURES | SUPPORTED_Pause |
1037 SUPPORTED_Asym_Pause);
1038 phydev->advertising = phydev->supported;
1039
fd9abb3d
SG
1040 pdata->last_duplex = -1;
1041 pdata->last_carrier = -1;
1042
1043#ifdef USE_PHY_WORK_AROUND
1044 if (smsc911x_phy_loopbacktest(dev) < 0) {
dffc6b24 1045 SMSC_WARN(pdata, hw, "Failed Loop Back Test");
b43c142f 1046 phy_disconnect(phydev);
fd9abb3d
SG
1047 return -ENODEV;
1048 }
dffc6b24 1049 SMSC_TRACE(pdata, hw, "Passed Loop Back Test");
fd9abb3d
SG
1050#endif /* USE_PHY_WORK_AROUND */
1051
dffc6b24 1052 SMSC_TRACE(pdata, hw, "phy initialised successfully");
fd9abb3d
SG
1053 return 0;
1054}
1055
8489ec1f 1056static int smsc911x_mii_init(struct platform_device *pdev,
1dd06ae8 1057 struct net_device *dev)
fd9abb3d
SG
1058{
1059 struct smsc911x_data *pdata = netdev_priv(dev);
e7f4dc35 1060 int err = -ENXIO;
fd9abb3d
SG
1061
1062 pdata->mii_bus = mdiobus_alloc();
1063 if (!pdata->mii_bus) {
1064 err = -ENOMEM;
1065 goto err_out_1;
1066 }
1067
1068 pdata->mii_bus->name = SMSC_MDIONAME;
09ef0789
FF
1069 snprintf(pdata->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1070 pdev->name, pdev->id);
fd9abb3d
SG
1071 pdata->mii_bus->priv = pdata;
1072 pdata->mii_bus->read = smsc911x_mii_read;
1073 pdata->mii_bus->write = smsc911x_mii_write;
fd9abb3d
SG
1074
1075 pdata->mii_bus->parent = &pdev->dev;
fd9abb3d 1076
fd9abb3d
SG
1077 switch (pdata->idrev & 0xFFFF0000) {
1078 case 0x01170000:
1079 case 0x01150000:
1080 case 0x117A0000:
1081 case 0x115A0000:
1082 /* External PHY supported, try to autodetect */
d23f028a 1083 smsc911x_phy_initialise_external(pdata);
fd9abb3d
SG
1084 break;
1085 default:
dffc6b24
JP
1086 SMSC_TRACE(pdata, hw, "External PHY is not supported, "
1087 "using internal PHY");
d23f028a 1088 pdata->using_extphy = 0;
fd9abb3d
SG
1089 break;
1090 }
1091
1092 if (!pdata->using_extphy) {
1093 /* Mask all PHYs except ID 1 (internal) */
1094 pdata->mii_bus->phy_mask = ~(1 << 1);
1095 }
1096
1097 if (mdiobus_register(pdata->mii_bus)) {
dffc6b24 1098 SMSC_WARN(pdata, probe, "Error registering mii bus");
fd9abb3d
SG
1099 goto err_out_free_bus_2;
1100 }
1101
1102 if (smsc911x_mii_probe(dev) < 0) {
dffc6b24 1103 SMSC_WARN(pdata, probe, "Error registering mii bus");
fd9abb3d
SG
1104 goto err_out_unregister_bus_3;
1105 }
1106
1107 return 0;
1108
1109err_out_unregister_bus_3:
1110 mdiobus_unregister(pdata->mii_bus);
1111err_out_free_bus_2:
1112 mdiobus_free(pdata->mii_bus);
1113err_out_1:
1114 return err;
1115}
1116
1117/* Gets the number of tx statuses in the fifo */
1118static unsigned int smsc911x_tx_get_txstatcount(struct smsc911x_data *pdata)
1119{
1120 return (smsc911x_reg_read(pdata, TX_FIFO_INF)
1121 & TX_FIFO_INF_TSUSED_) >> 16;
1122}
1123
1124/* Reads tx statuses and increments counters where necessary */
1125static void smsc911x_tx_update_txcounters(struct net_device *dev)
1126{
1127 struct smsc911x_data *pdata = netdev_priv(dev);
1128 unsigned int tx_stat;
1129
1130 while ((tx_stat = smsc911x_tx_get_txstatus(pdata)) != 0) {
1131 if (unlikely(tx_stat & 0x80000000)) {
1132 /* In this driver the packet tag is used as the packet
1133 * length. Since a packet length can never reach the
1134 * size of 0x8000, this bit is reserved. It is worth
1135 * noting that the "reserved bit" in the warning above
1136 * does not reference a hardware defined reserved bit
1137 * but rather a driver defined one.
1138 */
dffc6b24 1139 SMSC_WARN(pdata, hw, "Packet tag reserved bit is high");
fd9abb3d 1140 } else {
785b6f97 1141 if (unlikely(tx_stat & TX_STS_ES_)) {
fd9abb3d
SG
1142 dev->stats.tx_errors++;
1143 } else {
1144 dev->stats.tx_packets++;
1145 dev->stats.tx_bytes += (tx_stat >> 16);
1146 }
785b6f97 1147 if (unlikely(tx_stat & TX_STS_EXCESS_COL_)) {
fd9abb3d
SG
1148 dev->stats.collisions += 16;
1149 dev->stats.tx_aborted_errors += 1;
1150 } else {
1151 dev->stats.collisions +=
1152 ((tx_stat >> 3) & 0xF);
1153 }
785b6f97 1154 if (unlikely(tx_stat & TX_STS_LOST_CARRIER_))
fd9abb3d 1155 dev->stats.tx_carrier_errors += 1;
785b6f97 1156 if (unlikely(tx_stat & TX_STS_LATE_COL_)) {
fd9abb3d
SG
1157 dev->stats.collisions++;
1158 dev->stats.tx_aborted_errors++;
1159 }
1160 }
1161 }
1162}
1163
1164/* Increments the Rx error counters */
1165static void
1166smsc911x_rx_counterrors(struct net_device *dev, unsigned int rxstat)
1167{
1168 int crc_err = 0;
1169
785b6f97 1170 if (unlikely(rxstat & RX_STS_ES_)) {
fd9abb3d 1171 dev->stats.rx_errors++;
785b6f97 1172 if (unlikely(rxstat & RX_STS_CRC_ERR_)) {
fd9abb3d
SG
1173 dev->stats.rx_crc_errors++;
1174 crc_err = 1;
1175 }
1176 }
1177 if (likely(!crc_err)) {
785b6f97
SG
1178 if (unlikely((rxstat & RX_STS_FRAME_TYPE_) &&
1179 (rxstat & RX_STS_LENGTH_ERR_)))
fd9abb3d 1180 dev->stats.rx_length_errors++;
fd9abb3d
SG
1181 if (rxstat & RX_STS_MCAST_)
1182 dev->stats.multicast++;
1183 }
1184}
1185
1186/* Quickly dumps bad packets */
1187static void
3c5e979b 1188smsc911x_rx_fastforward(struct smsc911x_data *pdata, unsigned int pktwords)
fd9abb3d 1189{
fd9abb3d
SG
1190 if (likely(pktwords >= 4)) {
1191 unsigned int timeout = 500;
1192 unsigned int val;
1193 smsc911x_reg_write(pdata, RX_DP_CTRL, RX_DP_CTRL_RX_FFWD_);
1194 do {
1195 udelay(1);
1196 val = smsc911x_reg_read(pdata, RX_DP_CTRL);
8dacd548 1197 } while ((val & RX_DP_CTRL_RX_FFWD_) && --timeout);
fd9abb3d
SG
1198
1199 if (unlikely(timeout == 0))
dffc6b24
JP
1200 SMSC_WARN(pdata, hw, "Timed out waiting for "
1201 "RX FFWD to finish, RX_DP_CTRL: 0x%08X", val);
fd9abb3d
SG
1202 } else {
1203 unsigned int temp;
1204 while (pktwords--)
1205 temp = smsc911x_reg_read(pdata, RX_DATA_FIFO);
1206 }
1207}
1208
1209/* NAPI poll function */
1210static int smsc911x_poll(struct napi_struct *napi, int budget)
1211{
1212 struct smsc911x_data *pdata =
1213 container_of(napi, struct smsc911x_data, napi);
1214 struct net_device *dev = pdata->dev;
1215 int npackets = 0;
1216
f88c5b98 1217 while (npackets < budget) {
fd9abb3d
SG
1218 unsigned int pktlength;
1219 unsigned int pktwords;
1220 struct sk_buff *skb;
1221 unsigned int rxstat = smsc911x_rx_get_rxstatus(pdata);
1222
1223 if (!rxstat) {
1224 unsigned int temp;
1225 /* We processed all packets available. Tell NAPI it can
1226 * stop polling then re-enable rx interrupts */
1227 smsc911x_reg_write(pdata, INT_STS, INT_STS_RSFL_);
288379f0 1228 napi_complete(napi);
fd9abb3d
SG
1229 temp = smsc911x_reg_read(pdata, INT_EN);
1230 temp |= INT_EN_RSFL_EN_;
1231 smsc911x_reg_write(pdata, INT_EN, temp);
1232 break;
1233 }
1234
1235 /* Count packet for NAPI scheduling, even if it has an error.
1236 * Error packets still require cycles to discard */
1237 npackets++;
1238
1239 pktlength = ((rxstat & 0x3FFF0000) >> 16);
1240 pktwords = (pktlength + NET_IP_ALIGN + 3) >> 2;
1241 smsc911x_rx_counterrors(dev, rxstat);
1242
1243 if (unlikely(rxstat & RX_STS_ES_)) {
dffc6b24
JP
1244 SMSC_WARN(pdata, rx_err,
1245 "Discarding packet with error bit set");
fd9abb3d
SG
1246 /* Packet has an error, discard it and continue with
1247 * the next */
1248 smsc911x_rx_fastforward(pdata, pktwords);
1249 dev->stats.rx_dropped++;
1250 continue;
1251 }
1252
3c5e979b 1253 skb = netdev_alloc_skb(dev, pktwords << 2);
fd9abb3d 1254 if (unlikely(!skb)) {
dffc6b24
JP
1255 SMSC_WARN(pdata, rx_err,
1256 "Unable to allocate skb for rx packet");
fd9abb3d
SG
1257 /* Drop the packet and stop this polling iteration */
1258 smsc911x_rx_fastforward(pdata, pktwords);
1259 dev->stats.rx_dropped++;
1260 break;
1261 }
1262
3c5e979b
WD
1263 pdata->ops->rx_readfifo(pdata,
1264 (unsigned int *)skb->data, pktwords);
fd9abb3d
SG
1265
1266 /* Align IP on 16B boundary */
1267 skb_reserve(skb, NET_IP_ALIGN);
1268 skb_put(skb, pktlength - 4);
fd9abb3d 1269 skb->protocol = eth_type_trans(skb, dev);
bc8acf2c 1270 skb_checksum_none_assert(skb);
fd9abb3d
SG
1271 netif_receive_skb(skb);
1272
1273 /* Update counters */
1274 dev->stats.rx_packets++;
1275 dev->stats.rx_bytes += (pktlength - 4);
fd9abb3d
SG
1276 }
1277
1278 /* Return total received packets */
1279 return npackets;
1280}
1281
1282/* Returns hash bit number for given MAC address
1283 * Example:
1284 * 01 00 5E 00 00 01 -> returns bit number 31 */
1285static unsigned int smsc911x_hash(char addr[ETH_ALEN])
1286{
1287 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
1288}
1289
1290static void smsc911x_rx_multicast_update(struct smsc911x_data *pdata)
1291{
1292 /* Performs the multicast & mac_cr update. This is called when
1293 * safe on the current hardware, and with the mac_lock held */
1294 unsigned int mac_cr;
1295
1296 SMSC_ASSERT_MAC_LOCK(pdata);
1297
1298 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1299 mac_cr |= pdata->set_bits_mask;
1300 mac_cr &= ~(pdata->clear_bits_mask);
1301 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1302 smsc911x_mac_write(pdata, HASHH, pdata->hashhi);
1303 smsc911x_mac_write(pdata, HASHL, pdata->hashlo);
dffc6b24
JP
1304 SMSC_TRACE(pdata, hw, "maccr 0x%08X, HASHH 0x%08X, HASHL 0x%08X",
1305 mac_cr, pdata->hashhi, pdata->hashlo);
fd9abb3d
SG
1306}
1307
1308static void smsc911x_rx_multicast_update_workaround(struct smsc911x_data *pdata)
1309{
1310 unsigned int mac_cr;
1311
1312 /* This function is only called for older LAN911x devices
1313 * (revA or revB), where MAC_CR, HASHH and HASHL should not
1314 * be modified during Rx - newer devices immediately update the
1315 * registers.
1316 *
1317 * This is called from interrupt context */
1318
1319 spin_lock(&pdata->mac_lock);
1320
1321 /* Check Rx has stopped */
1322 if (smsc911x_mac_read(pdata, MAC_CR) & MAC_CR_RXEN_)
dffc6b24 1323 SMSC_WARN(pdata, drv, "Rx not stopped");
fd9abb3d
SG
1324
1325 /* Perform the update - safe to do now Rx has stopped */
1326 smsc911x_rx_multicast_update(pdata);
1327
1328 /* Re-enable Rx */
1329 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1330 mac_cr |= MAC_CR_RXEN_;
1331 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1332
1333 pdata->multicast_update_pending = 0;
1334
1335 spin_unlock(&pdata->mac_lock);
1336}
1337
ccf899a2
EBS
1338static int smsc911x_phy_general_power_up(struct smsc911x_data *pdata)
1339{
f788e322
PR
1340 struct net_device *ndev = pdata->dev;
1341 struct phy_device *phy_dev = ndev->phydev;
ccf899a2
EBS
1342 int rc = 0;
1343
f788e322 1344 if (!phy_dev)
ccf899a2
EBS
1345 return rc;
1346
1347 /* If the internal PHY is in General Power-Down mode, all, except the
1348 * management interface, is powered-down and stays in that condition as
1349 * long as Phy register bit 0.11 is HIGH.
1350 *
1351 * In that case, clear the bit 0.11, so the PHY powers up and we can
1352 * access to the phy registers.
1353 */
f788e322 1354 rc = phy_read(phy_dev, MII_BMCR);
ccf899a2
EBS
1355 if (rc < 0) {
1356 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1357 return rc;
1358 }
1359
1360 /* If the PHY general power-down bit is not set is not necessary to
1361 * disable the general power down-mode.
1362 */
1363 if (rc & BMCR_PDOWN) {
f788e322 1364 rc = phy_write(phy_dev, MII_BMCR, rc & ~BMCR_PDOWN);
ccf899a2
EBS
1365 if (rc < 0) {
1366 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1367 return rc;
1368 }
1369
1370 usleep_range(1000, 1500);
1371 }
1372
1373 return 0;
1374}
1375
6386994e
JMC
1376static int smsc911x_phy_disable_energy_detect(struct smsc911x_data *pdata)
1377{
f788e322
PR
1378 struct net_device *ndev = pdata->dev;
1379 struct phy_device *phy_dev = ndev->phydev;
6386994e
JMC
1380 int rc = 0;
1381
f788e322 1382 if (!phy_dev)
6386994e
JMC
1383 return rc;
1384
f788e322 1385 rc = phy_read(phy_dev, MII_LAN83C185_CTRL_STATUS);
6386994e
JMC
1386
1387 if (rc < 0) {
1388 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1389 return rc;
1390 }
1391
242bcd5b
AK
1392 /* Only disable if energy detect mode is already enabled */
1393 if (rc & MII_LAN83C185_EDPWRDOWN) {
6386994e 1394 /* Disable energy detect mode for this SMSC Transceivers */
f788e322 1395 rc = phy_write(phy_dev, MII_LAN83C185_CTRL_STATUS,
6386994e
JMC
1396 rc & (~MII_LAN83C185_EDPWRDOWN));
1397
1398 if (rc < 0) {
1399 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1400 return rc;
1401 }
6ff53fd3
AK
1402 /* Allow PHY to wakeup */
1403 mdelay(2);
6386994e
JMC
1404 }
1405
1406 return 0;
1407}
1408
1409static int smsc911x_phy_enable_energy_detect(struct smsc911x_data *pdata)
1410{
f788e322
PR
1411 struct net_device *ndev = pdata->dev;
1412 struct phy_device *phy_dev = ndev->phydev;
6386994e
JMC
1413 int rc = 0;
1414
f788e322 1415 if (!phy_dev)
6386994e
JMC
1416 return rc;
1417
f788e322 1418 rc = phy_read(phy_dev, MII_LAN83C185_CTRL_STATUS);
6386994e
JMC
1419
1420 if (rc < 0) {
1421 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1422 return rc;
1423 }
1424
1425 /* Only enable if energy detect mode is already disabled */
1426 if (!(rc & MII_LAN83C185_EDPWRDOWN)) {
6386994e 1427 /* Enable energy detect mode for this SMSC Transceivers */
f788e322 1428 rc = phy_write(phy_dev, MII_LAN83C185_CTRL_STATUS,
6386994e
JMC
1429 rc | MII_LAN83C185_EDPWRDOWN);
1430
1431 if (rc < 0) {
1432 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1433 return rc;
1434 }
6386994e
JMC
1435 }
1436 return 0;
1437}
1438
fd9abb3d
SG
1439static int smsc911x_soft_reset(struct smsc911x_data *pdata)
1440{
1441 unsigned int timeout;
1442 unsigned int temp;
6386994e
JMC
1443 int ret;
1444
ccf899a2
EBS
1445 /*
1446 * Make sure to power-up the PHY chip before doing a reset, otherwise
1447 * the reset fails.
1448 */
1449 ret = smsc911x_phy_general_power_up(pdata);
1450 if (ret) {
1451 SMSC_WARN(pdata, drv, "Failed to power-up the PHY chip");
1452 return ret;
1453 }
1454
6386994e
JMC
1455 /*
1456 * LAN9210/LAN9211/LAN9220/LAN9221 chips have an internal PHY that
1457 * are initialized in a Energy Detect Power-Down mode that prevents
1458 * the MAC chip to be software reseted. So we have to wakeup the PHY
1459 * before.
1460 */
1461 if (pdata->generation == 4) {
1462 ret = smsc911x_phy_disable_energy_detect(pdata);
1463
1464 if (ret) {
1465 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1466 return ret;
1467 }
1468 }
fd9abb3d
SG
1469
1470 /* Reset the LAN911x */
1471 smsc911x_reg_write(pdata, HW_CFG, HW_CFG_SRST_);
1472 timeout = 10;
1473 do {
1474 udelay(10);
1475 temp = smsc911x_reg_read(pdata, HW_CFG);
1476 } while ((--timeout) && (temp & HW_CFG_SRST_));
1477
1478 if (unlikely(temp & HW_CFG_SRST_)) {
dffc6b24 1479 SMSC_WARN(pdata, drv, "Failed to complete reset");
fd9abb3d
SG
1480 return -EIO;
1481 }
6386994e
JMC
1482
1483 if (pdata->generation == 4) {
1484 ret = smsc911x_phy_enable_energy_detect(pdata);
1485
1486 if (ret) {
1487 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1488 return ret;
1489 }
1490 }
1491
fd9abb3d
SG
1492 return 0;
1493}
1494
1495/* Sets the device MAC address to dev_addr, called with mac_lock held */
1496static void
225ddf49 1497smsc911x_set_hw_mac_address(struct smsc911x_data *pdata, u8 dev_addr[6])
fd9abb3d
SG
1498{
1499 u32 mac_high16 = (dev_addr[5] << 8) | dev_addr[4];
1500 u32 mac_low32 = (dev_addr[3] << 24) | (dev_addr[2] << 16) |
1501 (dev_addr[1] << 8) | dev_addr[0];
1502
1503 SMSC_ASSERT_MAC_LOCK(pdata);
1504
1505 smsc911x_mac_write(pdata, ADDRH, mac_high16);
1506 smsc911x_mac_write(pdata, ADDRL, mac_low32);
1507}
1508
8e27628e
MB
1509static void smsc911x_disable_irq_chip(struct net_device *dev)
1510{
1511 struct smsc911x_data *pdata = netdev_priv(dev);
1512
1513 smsc911x_reg_write(pdata, INT_EN, 0);
1514 smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
1515}
1516
fd9abb3d
SG
1517static int smsc911x_open(struct net_device *dev)
1518{
1519 struct smsc911x_data *pdata = netdev_priv(dev);
1520 unsigned int timeout;
1521 unsigned int temp;
1522 unsigned int intcfg;
1523
1524 /* if the phy is not yet registered, retry later*/
f788e322 1525 if (!dev->phydev) {
dffc6b24 1526 SMSC_WARN(pdata, hw, "phy_dev is NULL");
fd9abb3d
SG
1527 return -EAGAIN;
1528 }
1529
fd9abb3d
SG
1530 /* Reset the LAN911x */
1531 if (smsc911x_soft_reset(pdata)) {
dffc6b24 1532 SMSC_WARN(pdata, hw, "soft reset failed");
fd9abb3d
SG
1533 return -EIO;
1534 }
1535
1536 smsc911x_reg_write(pdata, HW_CFG, 0x00050000);
1537 smsc911x_reg_write(pdata, AFC_CFG, 0x006E3740);
1538
f277e65e
GW
1539 /* Increase the legal frame size of VLAN tagged frames to 1522 bytes */
1540 spin_lock_irq(&pdata->mac_lock);
1541 smsc911x_mac_write(pdata, VLAN1, ETH_P_8021Q);
1542 spin_unlock_irq(&pdata->mac_lock);
1543
fd9abb3d
SG
1544 /* Make sure EEPROM has finished loading before setting GPIO_CFG */
1545 timeout = 50;
f7efb6cc
SG
1546 while ((smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) &&
1547 --timeout) {
fd9abb3d
SG
1548 udelay(10);
1549 }
1550
1551 if (unlikely(timeout == 0))
dffc6b24
JP
1552 SMSC_WARN(pdata, ifup,
1553 "Timed out waiting for EEPROM busy bit to clear");
fd9abb3d
SG
1554
1555 smsc911x_reg_write(pdata, GPIO_CFG, 0x70070000);
1556
1557 /* The soft reset above cleared the device's MAC address,
1558 * restore it from local copy (set in probe) */
1559 spin_lock_irq(&pdata->mac_lock);
225ddf49 1560 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
fd9abb3d
SG
1561 spin_unlock_irq(&pdata->mac_lock);
1562
1563 /* Initialise irqs, but leave all sources disabled */
8e27628e 1564 smsc911x_disable_irq_chip(dev);
fd9abb3d
SG
1565
1566 /* Set interrupt deassertion to 100uS */
1567 intcfg = ((10 << 24) | INT_CFG_IRQ_EN_);
1568
2107fb8b 1569 if (pdata->config.irq_polarity) {
dffc6b24 1570 SMSC_TRACE(pdata, ifup, "irq polarity: active high");
fd9abb3d
SG
1571 intcfg |= INT_CFG_IRQ_POL_;
1572 } else {
dffc6b24 1573 SMSC_TRACE(pdata, ifup, "irq polarity: active low");
fd9abb3d
SG
1574 }
1575
2107fb8b 1576 if (pdata->config.irq_type) {
dffc6b24 1577 SMSC_TRACE(pdata, ifup, "irq type: push-pull");
fd9abb3d
SG
1578 intcfg |= INT_CFG_IRQ_TYPE_;
1579 } else {
dffc6b24 1580 SMSC_TRACE(pdata, ifup, "irq type: open drain");
fd9abb3d
SG
1581 }
1582
1583 smsc911x_reg_write(pdata, INT_CFG, intcfg);
1584
dffc6b24 1585 SMSC_TRACE(pdata, ifup, "Testing irq handler using IRQ %d", dev->irq);
fd9abb3d
SG
1586 pdata->software_irq_signal = 0;
1587 smp_wmb();
1588
1589 temp = smsc911x_reg_read(pdata, INT_EN);
1590 temp |= INT_EN_SW_INT_EN_;
1591 smsc911x_reg_write(pdata, INT_EN, temp);
1592
1593 timeout = 1000;
1594 while (timeout--) {
1595 if (pdata->software_irq_signal)
1596 break;
1597 msleep(1);
1598 }
1599
1600 if (!pdata->software_irq_signal) {
dffc6b24
JP
1601 netdev_warn(dev, "ISR failed signaling test (IRQ %d)\n",
1602 dev->irq);
fd9abb3d
SG
1603 return -ENODEV;
1604 }
dffc6b24
JP
1605 SMSC_TRACE(pdata, ifup, "IRQ handler passed test using IRQ %d",
1606 dev->irq);
fd9abb3d 1607
dffc6b24
JP
1608 netdev_info(dev, "SMSC911x/921x identified at %#08lx, IRQ: %d\n",
1609 (unsigned long)pdata->ioaddr, dev->irq);
fd9abb3d 1610
44c1d6f9
SG
1611 /* Reset the last known duplex and carrier */
1612 pdata->last_duplex = -1;
1613 pdata->last_carrier = -1;
1614
fd9abb3d 1615 /* Bring the PHY up */
f788e322 1616 phy_start(dev->phydev);
fd9abb3d
SG
1617
1618 temp = smsc911x_reg_read(pdata, HW_CFG);
1619 /* Preserve TX FIFO size and external PHY configuration */
1620 temp &= (HW_CFG_TX_FIF_SZ_|0x00000FFF);
1621 temp |= HW_CFG_SF_;
1622 smsc911x_reg_write(pdata, HW_CFG, temp);
1623
1624 temp = smsc911x_reg_read(pdata, FIFO_INT);
1625 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1626 temp &= ~(FIFO_INT_RX_STS_LEVEL_);
1627 smsc911x_reg_write(pdata, FIFO_INT, temp);
1628
1629 /* set RX Data offset to 2 bytes for alignment */
3c5e979b 1630 smsc911x_reg_write(pdata, RX_CFG, (NET_IP_ALIGN << 8));
fd9abb3d
SG
1631
1632 /* enable NAPI polling before enabling RX interrupts */
1633 napi_enable(&pdata->napi);
1634
1635 temp = smsc911x_reg_read(pdata, INT_EN);
1373c0fd 1636 temp |= (INT_EN_TDFA_EN_ | INT_EN_RSFL_EN_ | INT_EN_RXSTOP_INT_EN_);
fd9abb3d
SG
1637 smsc911x_reg_write(pdata, INT_EN, temp);
1638
1639 spin_lock_irq(&pdata->mac_lock);
1640 temp = smsc911x_mac_read(pdata, MAC_CR);
1641 temp |= (MAC_CR_TXEN_ | MAC_CR_RXEN_ | MAC_CR_HBDIS_);
1642 smsc911x_mac_write(pdata, MAC_CR, temp);
1643 spin_unlock_irq(&pdata->mac_lock);
1644
1645 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
1646
1647 netif_start_queue(dev);
1648 return 0;
1649}
1650
1651/* Entry point for stopping the interface */
1652static int smsc911x_stop(struct net_device *dev)
1653{
1654 struct smsc911x_data *pdata = netdev_priv(dev);
1655 unsigned int temp;
1656
fd9abb3d
SG
1657 /* Disable all device interrupts */
1658 temp = smsc911x_reg_read(pdata, INT_CFG);
1659 temp &= ~INT_CFG_IRQ_EN_;
1660 smsc911x_reg_write(pdata, INT_CFG, temp);
1661
1662 /* Stop Tx and Rx polling */
1663 netif_stop_queue(dev);
1664 napi_disable(&pdata->napi);
1665
1666 /* At this point all Rx and Tx activity is stopped */
1667 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1668 smsc911x_tx_update_txcounters(dev);
1669
1670 /* Bring the PHY down */
f788e322
PR
1671 if (dev->phydev)
1672 phy_stop(dev->phydev);
fd9abb3d 1673
dffc6b24 1674 SMSC_TRACE(pdata, ifdown, "Interface stopped");
fd9abb3d
SG
1675 return 0;
1676}
1677
1678/* Entry point for transmitting a packet */
1679static int smsc911x_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1680{
1681 struct smsc911x_data *pdata = netdev_priv(dev);
1682 unsigned int freespace;
1683 unsigned int tx_cmd_a;
1684 unsigned int tx_cmd_b;
1685 unsigned int temp;
1686 u32 wrsz;
1687 ulong bufp;
1688
1689 freespace = smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TDFREE_;
1690
1691 if (unlikely(freespace < TX_FIFO_LOW_THRESHOLD))
dffc6b24
JP
1692 SMSC_WARN(pdata, tx_err,
1693 "Tx data fifo low, space available: %d", freespace);
fd9abb3d
SG
1694
1695 /* Word alignment adjustment */
1696 tx_cmd_a = (u32)((ulong)skb->data & 0x03) << 16;
1697 tx_cmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
1698 tx_cmd_a |= (unsigned int)skb->len;
1699
1700 tx_cmd_b = ((unsigned int)skb->len) << 16;
1701 tx_cmd_b |= (unsigned int)skb->len;
1702
1703 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_a);
1704 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_b);
1705
1706 bufp = (ulong)skb->data & (~0x3);
1707 wrsz = (u32)skb->len + 3;
1708 wrsz += (u32)((ulong)skb->data & 0x3);
1709 wrsz >>= 2;
1710
c326de88 1711 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
fd9abb3d 1712 freespace -= (skb->len + 32);
8c0069ae 1713 skb_tx_timestamp(skb);
89a9eb63 1714 dev_consume_skb_any(skb);
fd9abb3d
SG
1715
1716 if (unlikely(smsc911x_tx_get_txstatcount(pdata) >= 30))
1717 smsc911x_tx_update_txcounters(dev);
1718
1719 if (freespace < TX_FIFO_LOW_THRESHOLD) {
1720 netif_stop_queue(dev);
1721 temp = smsc911x_reg_read(pdata, FIFO_INT);
1722 temp &= 0x00FFFFFF;
1723 temp |= 0x32000000;
1724 smsc911x_reg_write(pdata, FIFO_INT, temp);
1725 }
1726
1727 return NETDEV_TX_OK;
1728}
1729
1730/* Entry point for getting status counters */
1731static struct net_device_stats *smsc911x_get_stats(struct net_device *dev)
1732{
1733 struct smsc911x_data *pdata = netdev_priv(dev);
1734 smsc911x_tx_update_txcounters(dev);
1735 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1736 return &dev->stats;
1737}
1738
1739/* Entry point for setting addressing modes */
1740static void smsc911x_set_multicast_list(struct net_device *dev)
1741{
1742 struct smsc911x_data *pdata = netdev_priv(dev);
1743 unsigned long flags;
1744
1745 if (dev->flags & IFF_PROMISC) {
1746 /* Enabling promiscuous mode */
1747 pdata->set_bits_mask = MAC_CR_PRMS_;
1748 pdata->clear_bits_mask = (MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1749 pdata->hashhi = 0;
1750 pdata->hashlo = 0;
1751 } else if (dev->flags & IFF_ALLMULTI) {
1752 /* Enabling all multicast mode */
1753 pdata->set_bits_mask = MAC_CR_MCPAS_;
1754 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_HPFILT_);
1755 pdata->hashhi = 0;
1756 pdata->hashlo = 0;
4cd24eaf 1757 } else if (!netdev_mc_empty(dev)) {
fd9abb3d
SG
1758 /* Enabling specific multicast addresses */
1759 unsigned int hash_high = 0;
1760 unsigned int hash_low = 0;
22bedad3 1761 struct netdev_hw_addr *ha;
fd9abb3d
SG
1762
1763 pdata->set_bits_mask = MAC_CR_HPFILT_;
1764 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_MCPAS_);
1765
22bedad3
JP
1766 netdev_for_each_mc_addr(ha, dev) {
1767 unsigned int bitnum = smsc911x_hash(ha->addr);
2a0d18f9
JP
1768 unsigned int mask = 0x01 << (bitnum & 0x1F);
1769
1770 if (bitnum & 0x20)
1771 hash_high |= mask;
1772 else
1773 hash_low |= mask;
fd9abb3d 1774 }
fd9abb3d
SG
1775
1776 pdata->hashhi = hash_high;
1777 pdata->hashlo = hash_low;
1778 } else {
1779 /* Enabling local MAC address only */
1780 pdata->set_bits_mask = 0;
1781 pdata->clear_bits_mask =
1782 (MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1783 pdata->hashhi = 0;
1784 pdata->hashlo = 0;
1785 }
1786
1787 spin_lock_irqsave(&pdata->mac_lock, flags);
1788
1789 if (pdata->generation <= 1) {
1790 /* Older hardware revision - cannot change these flags while
1791 * receiving data */
1792 if (!pdata->multicast_update_pending) {
1793 unsigned int temp;
dffc6b24 1794 SMSC_TRACE(pdata, hw, "scheduling mcast update");
fd9abb3d
SG
1795 pdata->multicast_update_pending = 1;
1796
1797 /* Request the hardware to stop, then perform the
1798 * update when we get an RX_STOP interrupt */
fd9abb3d
SG
1799 temp = smsc911x_mac_read(pdata, MAC_CR);
1800 temp &= ~(MAC_CR_RXEN_);
1801 smsc911x_mac_write(pdata, MAC_CR, temp);
1802 } else {
1803 /* There is another update pending, this should now
1804 * use the newer values */
1805 }
1806 } else {
1807 /* Newer hardware revision - can write immediately */
1808 smsc911x_rx_multicast_update(pdata);
1809 }
1810
1811 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1812}
1813
1814static irqreturn_t smsc911x_irqhandler(int irq, void *dev_id)
1815{
1816 struct net_device *dev = dev_id;
1817 struct smsc911x_data *pdata = netdev_priv(dev);
1818 u32 intsts = smsc911x_reg_read(pdata, INT_STS);
1819 u32 inten = smsc911x_reg_read(pdata, INT_EN);
1820 int serviced = IRQ_NONE;
1821 u32 temp;
1822
1823 if (unlikely(intsts & inten & INT_STS_SW_INT_)) {
1824 temp = smsc911x_reg_read(pdata, INT_EN);
1825 temp &= (~INT_EN_SW_INT_EN_);
1826 smsc911x_reg_write(pdata, INT_EN, temp);
1827 smsc911x_reg_write(pdata, INT_STS, INT_STS_SW_INT_);
1828 pdata->software_irq_signal = 1;
1829 smp_wmb();
1830 serviced = IRQ_HANDLED;
1831 }
1832
1833 if (unlikely(intsts & inten & INT_STS_RXSTOP_INT_)) {
1834 /* Called when there is a multicast update scheduled and
1835 * it is now safe to complete the update */
dffc6b24 1836 SMSC_TRACE(pdata, intr, "RX Stop interrupt");
fd9abb3d 1837 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXSTOP_INT_);
1373c0fd
SG
1838 if (pdata->multicast_update_pending)
1839 smsc911x_rx_multicast_update_workaround(pdata);
fd9abb3d
SG
1840 serviced = IRQ_HANDLED;
1841 }
1842
1843 if (intsts & inten & INT_STS_TDFA_) {
1844 temp = smsc911x_reg_read(pdata, FIFO_INT);
1845 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1846 smsc911x_reg_write(pdata, FIFO_INT, temp);
1847 smsc911x_reg_write(pdata, INT_STS, INT_STS_TDFA_);
1848 netif_wake_queue(dev);
1849 serviced = IRQ_HANDLED;
1850 }
1851
1852 if (unlikely(intsts & inten & INT_STS_RXE_)) {
dffc6b24 1853 SMSC_TRACE(pdata, intr, "RX Error interrupt");
fd9abb3d
SG
1854 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXE_);
1855 serviced = IRQ_HANDLED;
1856 }
1857
1858 if (likely(intsts & inten & INT_STS_RSFL_)) {
288379f0 1859 if (likely(napi_schedule_prep(&pdata->napi))) {
fd9abb3d
SG
1860 /* Disable Rx interrupts */
1861 temp = smsc911x_reg_read(pdata, INT_EN);
1862 temp &= (~INT_EN_RSFL_EN_);
1863 smsc911x_reg_write(pdata, INT_EN, temp);
1864 /* Schedule a NAPI poll */
288379f0 1865 __napi_schedule(&pdata->napi);
fd9abb3d 1866 } else {
dffc6b24 1867 SMSC_WARN(pdata, rx_err, "napi_schedule_prep failed");
fd9abb3d
SG
1868 }
1869 serviced = IRQ_HANDLED;
1870 }
1871
1872 return serviced;
1873}
1874
1875#ifdef CONFIG_NET_POLL_CONTROLLER
1757ab2f 1876static void smsc911x_poll_controller(struct net_device *dev)
fd9abb3d
SG
1877{
1878 disable_irq(dev->irq);
1879 smsc911x_irqhandler(0, dev);
1880 enable_irq(dev->irq);
1881}
1882#endif /* CONFIG_NET_POLL_CONTROLLER */
1883
225ddf49
SG
1884static int smsc911x_set_mac_address(struct net_device *dev, void *p)
1885{
1886 struct smsc911x_data *pdata = netdev_priv(dev);
1887 struct sockaddr *addr = p;
1888
1889 /* On older hardware revisions we cannot change the mac address
1890 * registers while receiving data. Newer devices can safely change
1891 * this at any time. */
1892 if (pdata->generation <= 1 && netif_running(dev))
1893 return -EBUSY;
1894
1895 if (!is_valid_ether_addr(addr->sa_data))
1896 return -EADDRNOTAVAIL;
1897
1898 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
1899
1900 spin_lock_irq(&pdata->mac_lock);
1901 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
1902 spin_unlock_irq(&pdata->mac_lock);
1903
dffc6b24 1904 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
225ddf49
SG
1905
1906 return 0;
1907}
1908
fd9abb3d
SG
1909/* Standard ioctls for mii-tool */
1910static int smsc911x_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1911{
f788e322 1912 if (!netif_running(dev) || !dev->phydev)
fd9abb3d
SG
1913 return -EINVAL;
1914
f788e322 1915 return phy_mii_ioctl(dev->phydev, ifr, cmd);
fd9abb3d
SG
1916}
1917
1918static int
1919smsc911x_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1920{
fd9abb3d
SG
1921 cmd->maxtxpkt = 1;
1922 cmd->maxrxpkt = 1;
f788e322 1923 return phy_ethtool_gset(dev->phydev, cmd);
fd9abb3d
SG
1924}
1925
1926static int
1927smsc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1928{
f788e322 1929 return phy_ethtool_sset(dev->phydev, cmd);
fd9abb3d
SG
1930}
1931
1932static void smsc911x_ethtool_getdrvinfo(struct net_device *dev,
1933 struct ethtool_drvinfo *info)
1934{
1935 strlcpy(info->driver, SMSC_CHIPNAME, sizeof(info->driver));
1936 strlcpy(info->version, SMSC_DRV_VERSION, sizeof(info->version));
db1d7bf7 1937 strlcpy(info->bus_info, dev_name(dev->dev.parent),
fd9abb3d
SG
1938 sizeof(info->bus_info));
1939}
1940
1941static int smsc911x_ethtool_nwayreset(struct net_device *dev)
1942{
f788e322 1943 return phy_start_aneg(dev->phydev);
fd9abb3d
SG
1944}
1945
1946static u32 smsc911x_ethtool_getmsglevel(struct net_device *dev)
1947{
1948 struct smsc911x_data *pdata = netdev_priv(dev);
1949 return pdata->msg_enable;
1950}
1951
1952static void smsc911x_ethtool_setmsglevel(struct net_device *dev, u32 level)
1953{
1954 struct smsc911x_data *pdata = netdev_priv(dev);
1955 pdata->msg_enable = level;
1956}
1957
1958static int smsc911x_ethtool_getregslen(struct net_device *dev)
1959{
1960 return (((E2P_DATA - ID_REV) / 4 + 1) + (WUCSR - MAC_CR) + 1 + 32) *
1961 sizeof(u32);
1962}
1963
1964static void
1965smsc911x_ethtool_getregs(struct net_device *dev, struct ethtool_regs *regs,
1966 void *buf)
1967{
1968 struct smsc911x_data *pdata = netdev_priv(dev);
f788e322 1969 struct phy_device *phy_dev = dev->phydev;
fd9abb3d
SG
1970 unsigned long flags;
1971 unsigned int i;
1972 unsigned int j = 0;
1973 u32 *data = buf;
1974
1975 regs->version = pdata->idrev;
1976 for (i = ID_REV; i <= E2P_DATA; i += (sizeof(u32)))
1977 data[j++] = smsc911x_reg_read(pdata, i);
1978
1979 for (i = MAC_CR; i <= WUCSR; i++) {
1980 spin_lock_irqsave(&pdata->mac_lock, flags);
1981 data[j++] = smsc911x_mac_read(pdata, i);
1982 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1983 }
1984
1985 for (i = 0; i <= 31; i++)
e5a03bfd
AL
1986 data[j++] = smsc911x_mii_read(phy_dev->mdio.bus,
1987 phy_dev->mdio.addr, i);
fd9abb3d
SG
1988}
1989
1990static void smsc911x_eeprom_enable_access(struct smsc911x_data *pdata)
1991{
1992 unsigned int temp = smsc911x_reg_read(pdata, GPIO_CFG);
1993 temp &= ~GPIO_CFG_EEPR_EN_;
1994 smsc911x_reg_write(pdata, GPIO_CFG, temp);
1995 msleep(1);
1996}
1997
1998static int smsc911x_eeprom_send_cmd(struct smsc911x_data *pdata, u32 op)
1999{
2000 int timeout = 100;
2001 u32 e2cmd;
2002
dffc6b24 2003 SMSC_TRACE(pdata, drv, "op 0x%08x", op);
fd9abb3d 2004 if (smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) {
dffc6b24 2005 SMSC_WARN(pdata, drv, "Busy at start");
fd9abb3d
SG
2006 return -EBUSY;
2007 }
2008
2009 e2cmd = op | E2P_CMD_EPC_BUSY_;
2010 smsc911x_reg_write(pdata, E2P_CMD, e2cmd);
2011
2012 do {
2013 msleep(1);
2014 e2cmd = smsc911x_reg_read(pdata, E2P_CMD);
2cf0dbed 2015 } while ((e2cmd & E2P_CMD_EPC_BUSY_) && (--timeout));
fd9abb3d
SG
2016
2017 if (!timeout) {
dffc6b24 2018 SMSC_TRACE(pdata, drv, "TIMED OUT");
fd9abb3d
SG
2019 return -EAGAIN;
2020 }
2021
2022 if (e2cmd & E2P_CMD_EPC_TIMEOUT_) {
1c01a80c 2023 SMSC_TRACE(pdata, drv, "Error occurred during eeprom operation");
fd9abb3d
SG
2024 return -EINVAL;
2025 }
2026
2027 return 0;
2028}
2029
2030static int smsc911x_eeprom_read_location(struct smsc911x_data *pdata,
2031 u8 address, u8 *data)
2032{
2033 u32 op = E2P_CMD_EPC_CMD_READ_ | address;
2034 int ret;
2035
dffc6b24 2036 SMSC_TRACE(pdata, drv, "address 0x%x", address);
fd9abb3d
SG
2037 ret = smsc911x_eeprom_send_cmd(pdata, op);
2038
2039 if (!ret)
2040 data[address] = smsc911x_reg_read(pdata, E2P_DATA);
2041
2042 return ret;
2043}
2044
2045static int smsc911x_eeprom_write_location(struct smsc911x_data *pdata,
2046 u8 address, u8 data)
2047{
2048 u32 op = E2P_CMD_EPC_CMD_ERASE_ | address;
58add9fc 2049 u32 temp;
fd9abb3d
SG
2050 int ret;
2051
dffc6b24 2052 SMSC_TRACE(pdata, drv, "address 0x%x, data 0x%x", address, data);
fd9abb3d
SG
2053 ret = smsc911x_eeprom_send_cmd(pdata, op);
2054
2055 if (!ret) {
2056 op = E2P_CMD_EPC_CMD_WRITE_ | address;
2057 smsc911x_reg_write(pdata, E2P_DATA, (u32)data);
58add9fc
SG
2058
2059 /* Workaround for hardware read-after-write restriction */
2060 temp = smsc911x_reg_read(pdata, BYTE_TEST);
2061
fd9abb3d
SG
2062 ret = smsc911x_eeprom_send_cmd(pdata, op);
2063 }
2064
2065 return ret;
2066}
2067
2068static int smsc911x_ethtool_get_eeprom_len(struct net_device *dev)
2069{
2070 return SMSC911X_EEPROM_SIZE;
2071}
2072
2073static int smsc911x_ethtool_get_eeprom(struct net_device *dev,
2074 struct ethtool_eeprom *eeprom, u8 *data)
2075{
2076 struct smsc911x_data *pdata = netdev_priv(dev);
2077 u8 eeprom_data[SMSC911X_EEPROM_SIZE];
2078 int len;
2079 int i;
2080
2081 smsc911x_eeprom_enable_access(pdata);
2082
2083 len = min(eeprom->len, SMSC911X_EEPROM_SIZE);
2084 for (i = 0; i < len; i++) {
2085 int ret = smsc911x_eeprom_read_location(pdata, i, eeprom_data);
2086 if (ret < 0) {
2087 eeprom->len = 0;
2088 return ret;
2089 }
2090 }
2091
2092 memcpy(data, &eeprom_data[eeprom->offset], len);
2093 eeprom->len = len;
2094 return 0;
2095}
2096
2097static int smsc911x_ethtool_set_eeprom(struct net_device *dev,
2098 struct ethtool_eeprom *eeprom, u8 *data)
2099{
2100 int ret;
2101 struct smsc911x_data *pdata = netdev_priv(dev);
2102
2103 smsc911x_eeprom_enable_access(pdata);
2104 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWEN_);
2105 ret = smsc911x_eeprom_write_location(pdata, eeprom->offset, *data);
2106 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWDS_);
2107
2108 /* Single byte write, according to man page */
2109 eeprom->len = 1;
2110
2111 return ret;
2112}
2113
cb5b04fe 2114static const struct ethtool_ops smsc911x_ethtool_ops = {
fd9abb3d
SG
2115 .get_settings = smsc911x_ethtool_getsettings,
2116 .set_settings = smsc911x_ethtool_setsettings,
2117 .get_link = ethtool_op_get_link,
2118 .get_drvinfo = smsc911x_ethtool_getdrvinfo,
2119 .nway_reset = smsc911x_ethtool_nwayreset,
2120 .get_msglevel = smsc911x_ethtool_getmsglevel,
2121 .set_msglevel = smsc911x_ethtool_setmsglevel,
2122 .get_regs_len = smsc911x_ethtool_getregslen,
2123 .get_regs = smsc911x_ethtool_getregs,
2124 .get_eeprom_len = smsc911x_ethtool_get_eeprom_len,
2125 .get_eeprom = smsc911x_ethtool_get_eeprom,
2126 .set_eeprom = smsc911x_ethtool_set_eeprom,
b5d1d256 2127 .get_ts_info = ethtool_op_get_ts_info,
fd9abb3d
SG
2128};
2129
631b7568
SG
2130static const struct net_device_ops smsc911x_netdev_ops = {
2131 .ndo_open = smsc911x_open,
2132 .ndo_stop = smsc911x_stop,
2133 .ndo_start_xmit = smsc911x_hard_start_xmit,
2134 .ndo_get_stats = smsc911x_get_stats,
afc4b13d 2135 .ndo_set_rx_mode = smsc911x_set_multicast_list,
631b7568 2136 .ndo_do_ioctl = smsc911x_do_ioctl,
635ecaa7 2137 .ndo_change_mtu = eth_change_mtu,
631b7568 2138 .ndo_validate_addr = eth_validate_addr,
225ddf49 2139 .ndo_set_mac_address = smsc911x_set_mac_address,
631b7568
SG
2140#ifdef CONFIG_NET_POLL_CONTROLLER
2141 .ndo_poll_controller = smsc911x_poll_controller,
2142#endif
2143};
2144
31f45747 2145/* copies the current mac address from hardware to dev->dev_addr */
8489ec1f 2146static void smsc911x_read_mac_address(struct net_device *dev)
31f45747
SG
2147{
2148 struct smsc911x_data *pdata = netdev_priv(dev);
2149 u32 mac_high16 = smsc911x_mac_read(pdata, ADDRH);
2150 u32 mac_low32 = smsc911x_mac_read(pdata, ADDRL);
2151
2152 dev->dev_addr[0] = (u8)(mac_low32);
2153 dev->dev_addr[1] = (u8)(mac_low32 >> 8);
2154 dev->dev_addr[2] = (u8)(mac_low32 >> 16);
2155 dev->dev_addr[3] = (u8)(mac_low32 >> 24);
2156 dev->dev_addr[4] = (u8)(mac_high16);
2157 dev->dev_addr[5] = (u8)(mac_high16 >> 8);
2158}
2159
fd9abb3d 2160/* Initializing private device structures, only called from probe */
8489ec1f 2161static int smsc911x_init(struct net_device *dev)
fd9abb3d
SG
2162{
2163 struct smsc911x_data *pdata = netdev_priv(dev);
769ce4c9 2164 unsigned int byte_test, mask;
3ac3546e 2165 unsigned int to = 100;
fd9abb3d 2166
dffc6b24
JP
2167 SMSC_TRACE(pdata, probe, "Driver Parameters:");
2168 SMSC_TRACE(pdata, probe, "LAN base: 0x%08lX",
2169 (unsigned long)pdata->ioaddr);
2170 SMSC_TRACE(pdata, probe, "IRQ: %d", dev->irq);
2171 SMSC_TRACE(pdata, probe, "PHY will be autodetected.");
fd9abb3d 2172
fd9abb3d 2173 spin_lock_init(&pdata->dev_lock);
35a67edf 2174 spin_lock_init(&pdata->mac_lock);
fd9abb3d 2175
6fed9592 2176 if (pdata->ioaddr == NULL) {
dffc6b24 2177 SMSC_WARN(pdata, probe, "pdata->ioaddr: 0x00000000");
fd9abb3d
SG
2178 return -ENODEV;
2179 }
2180
3ac3546e
RM
2181 /*
2182 * poll the READY bit in PMT_CTRL. Any other access to the device is
2183 * forbidden while this bit isn't set. Try for 100ms
769ce4c9
KP
2184 *
2185 * Note that this test is done before the WORD_SWAP register is
2186 * programmed. So in some configurations the READY bit is at 16 before
2187 * WORD_SWAP is written to. This issue is worked around by waiting
2188 * until either bit 0 or bit 16 gets set in PMT_CTRL.
2189 *
2190 * SMSC has confirmed that checking bit 16 (marked as reserved in
2191 * the datasheet) is fine since these bits "will either never be set
2192 * or can only go high after READY does (so also indicate the device
2193 * is ready)".
3ac3546e 2194 */
769ce4c9
KP
2195
2196 mask = PMT_CTRL_READY_ | swahw32(PMT_CTRL_READY_);
2197 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & mask) && --to)
3ac3546e 2198 udelay(1000);
769ce4c9 2199
3ac3546e 2200 if (to == 0) {
b1a04a62 2201 netdev_err(dev, "Device not READY in 100ms aborting\n");
3ac3546e
RM
2202 return -ENODEV;
2203 }
2204
fd9abb3d
SG
2205 /* Check byte ordering */
2206 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
dffc6b24 2207 SMSC_TRACE(pdata, probe, "BYTE_TEST: 0x%08X", byte_test);
fd9abb3d 2208 if (byte_test == 0x43218765) {
dffc6b24
JP
2209 SMSC_TRACE(pdata, probe, "BYTE_TEST looks swapped, "
2210 "applying WORD_SWAP");
fd9abb3d
SG
2211 smsc911x_reg_write(pdata, WORD_SWAP, 0xffffffff);
2212
2213 /* 1 dummy read of BYTE_TEST is needed after a write to
2214 * WORD_SWAP before its contents are valid */
2215 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2216
2217 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2218 }
2219
2220 if (byte_test != 0x87654321) {
dffc6b24 2221 SMSC_WARN(pdata, drv, "BYTE_TEST: 0x%08X", byte_test);
fd9abb3d 2222 if (((byte_test >> 16) & 0xFFFF) == (byte_test & 0xFFFF)) {
dffc6b24
JP
2223 SMSC_WARN(pdata, probe,
2224 "top 16 bits equal to bottom 16 bits");
2225 SMSC_TRACE(pdata, probe,
2226 "This may mean the chip is set "
2227 "for 32 bit while the bus is reading 16 bit");
fd9abb3d
SG
2228 }
2229 return -ENODEV;
2230 }
2231
2232 /* Default generation to zero (all workarounds apply) */
2233 pdata->generation = 0;
2234
2235 pdata->idrev = smsc911x_reg_read(pdata, ID_REV);
2236 switch (pdata->idrev & 0xFFFF0000) {
2237 case 0x01180000:
2238 case 0x01170000:
2239 case 0x01160000:
2240 case 0x01150000:
28c21379 2241 case 0x218A0000:
fd9abb3d
SG
2242 /* LAN911[5678] family */
2243 pdata->generation = pdata->idrev & 0x0000FFFF;
2244 break;
2245
2246 case 0x118A0000:
2247 case 0x117A0000:
2248 case 0x116A0000:
2249 case 0x115A0000:
2250 /* LAN921[5678] family */
2251 pdata->generation = 3;
2252 break;
2253
2254 case 0x92100000:
2255 case 0x92110000:
2256 case 0x92200000:
2257 case 0x92210000:
2258 /* LAN9210/LAN9211/LAN9220/LAN9221 */
2259 pdata->generation = 4;
2260 break;
2261
2262 default:
dffc6b24
JP
2263 SMSC_WARN(pdata, probe, "LAN911x not identified, idrev: 0x%08X",
2264 pdata->idrev);
fd9abb3d
SG
2265 return -ENODEV;
2266 }
2267
dffc6b24
JP
2268 SMSC_TRACE(pdata, probe,
2269 "LAN911x identified, idrev: 0x%08X, generation: %d",
2270 pdata->idrev, pdata->generation);
fd9abb3d
SG
2271
2272 if (pdata->generation == 0)
dffc6b24
JP
2273 SMSC_WARN(pdata, probe,
2274 "This driver is not intended for this chip revision");
fd9abb3d 2275
31f45747
SG
2276 /* workaround for platforms without an eeprom, where the mac address
2277 * is stored elsewhere and set by the bootloader. This saves the
2278 * mac address before resetting the device */
35a67edf
EBS
2279 if (pdata->config.flags & SMSC911X_SAVE_MAC_ADDRESS) {
2280 spin_lock_irq(&pdata->mac_lock);
31f45747 2281 smsc911x_read_mac_address(dev);
35a67edf
EBS
2282 spin_unlock_irq(&pdata->mac_lock);
2283 }
31f45747 2284
fd9abb3d 2285 /* Reset the LAN911x */
cd998ecd 2286 if (smsc911x_phy_reset(pdata) || smsc911x_soft_reset(pdata))
fd9abb3d
SG
2287 return -ENODEV;
2288
fd9abb3d 2289 dev->flags |= IFF_MULTICAST;
fd9abb3d 2290 netif_napi_add(dev, &pdata->napi, smsc911x_poll, SMSC_NAPI_WEIGHT);
631b7568 2291 dev->netdev_ops = &smsc911x_netdev_ops;
fd9abb3d
SG
2292 dev->ethtool_ops = &smsc911x_ethtool_ops;
2293
fd9abb3d
SG
2294 return 0;
2295}
2296
8489ec1f 2297static int smsc911x_drv_remove(struct platform_device *pdev)
fd9abb3d
SG
2298{
2299 struct net_device *dev;
2300 struct smsc911x_data *pdata;
2301 struct resource *res;
2302
2303 dev = platform_get_drvdata(pdev);
2304 BUG_ON(!dev);
2305 pdata = netdev_priv(dev);
2306 BUG_ON(!pdata);
2307 BUG_ON(!pdata->ioaddr);
f788e322 2308 BUG_ON(!dev->phydev);
fd9abb3d 2309
dffc6b24 2310 SMSC_TRACE(pdata, ifdown, "Stopping driver");
fd9abb3d 2311
f788e322 2312 phy_disconnect(dev->phydev);
fd9abb3d
SG
2313 mdiobus_unregister(pdata->mii_bus);
2314 mdiobus_free(pdata->mii_bus);
2315
fd9abb3d
SG
2316 unregister_netdev(dev);
2317 free_irq(dev->irq, dev);
2318 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2319 "smsc911x-memory");
2320 if (!res)
d4522739 2321 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
fd9abb3d 2322
39424539 2323 release_mem_region(res->start, resource_size(res));
fd9abb3d
SG
2324
2325 iounmap(pdata->ioaddr);
2326
c7e963f6
RM
2327 (void)smsc911x_disable_resources(pdev);
2328 smsc911x_free_resources(pdev);
2329
fd9abb3d
SG
2330 free_netdev(dev);
2331
3a611e26
GU
2332 pm_runtime_put(&pdev->dev);
2333 pm_runtime_disable(&pdev->dev);
2334
fd9abb3d
SG
2335 return 0;
2336}
2337
c326de88
MP
2338/* standard register acces */
2339static const struct smsc911x_ops standard_smsc911x_ops = {
2340 .reg_read = __smsc911x_reg_read,
2341 .reg_write = __smsc911x_reg_write,
2342 .rx_readfifo = smsc911x_rx_readfifo,
2343 .tx_writefifo = smsc911x_tx_writefifo,
2344};
2345
2346/* shifted register access */
2347static const struct smsc911x_ops shifted_smsc911x_ops = {
2348 .reg_read = __smsc911x_reg_read_shift,
2349 .reg_write = __smsc911x_reg_write_shift,
2350 .rx_readfifo = smsc911x_rx_readfifo_shift,
2351 .tx_writefifo = smsc911x_tx_writefifo_shift,
2352};
2353
0b50dc4f
JL
2354static int smsc911x_probe_config(struct smsc911x_platform_config *config,
2355 struct device *dev)
79f88ee9 2356{
62ee783b 2357 int phy_interface;
79f88ee9 2358 u32 width = 0;
31cb5c9e 2359 int err;
79f88ee9 2360
62ee783b
GR
2361 phy_interface = device_get_phy_mode(dev);
2362 if (phy_interface < 0)
31cb5c9e 2363 phy_interface = PHY_INTERFACE_MODE_NA;
62ee783b 2364 config->phy_interface = phy_interface;
79f88ee9 2365
0b50dc4f 2366 device_get_mac_address(dev, config->mac, ETH_ALEN);
79f88ee9 2367
31cb5c9e
GR
2368 err = device_property_read_u32(dev, "reg-io-width", &width);
2369 if (err == -ENXIO)
2370 return err;
2371 if (!err && width == 4)
79f88ee9 2372 config->flags |= SMSC911X_USE_32BIT;
f26cd41a
DM
2373 else
2374 config->flags |= SMSC911X_USE_16BIT;
79f88ee9 2375
31cb5c9e
GR
2376 device_property_read_u32(dev, "reg-shift", &config->shift);
2377
0b50dc4f 2378 if (device_property_present(dev, "smsc,irq-active-high"))
79f88ee9
SG
2379 config->irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH;
2380
0b50dc4f 2381 if (device_property_present(dev, "smsc,irq-push-pull"))
79f88ee9
SG
2382 config->irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL;
2383
0b50dc4f 2384 if (device_property_present(dev, "smsc,force-internal-phy"))
79f88ee9
SG
2385 config->flags |= SMSC911X_FORCE_INTERNAL_PHY;
2386
0b50dc4f 2387 if (device_property_present(dev, "smsc,force-external-phy"))
79f88ee9
SG
2388 config->flags |= SMSC911X_FORCE_EXTERNAL_PHY;
2389
0b50dc4f 2390 if (device_property_present(dev, "smsc,save-mac-address"))
79f88ee9
SG
2391 config->flags |= SMSC911X_SAVE_MAC_ADDRESS;
2392
2393 return 0;
2394}
79f88ee9 2395
8489ec1f 2396static int smsc911x_drv_probe(struct platform_device *pdev)
fd9abb3d
SG
2397{
2398 struct net_device *dev;
2399 struct smsc911x_data *pdata;
495c765d 2400 struct smsc911x_platform_config *config = dev_get_platdata(&pdev->dev);
965b2aa7 2401 struct resource *res;
fd9abb3d 2402 unsigned int intcfg = 0;
965b2aa7 2403 int res_size, irq, irq_flags;
fd9abb3d 2404 int retval;
fd9abb3d 2405
fd9abb3d
SG
2406 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2407 "smsc911x-memory");
2408 if (!res)
2409 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2410 if (!res) {
dffc6b24 2411 pr_warn("Could not allocate resource\n");
fd9abb3d
SG
2412 retval = -ENODEV;
2413 goto out_0;
2414 }
39424539 2415 res_size = resource_size(res);
fd9abb3d 2416
965b2aa7 2417 irq = platform_get_irq(pdev, 0);
f892a84c
TL
2418 if (irq == -EPROBE_DEFER) {
2419 retval = -EPROBE_DEFER;
2420 goto out_0;
2421 } else if (irq <= 0) {
dffc6b24 2422 pr_warn("Could not allocate irq resource\n");
61307ed8
SG
2423 retval = -ENODEV;
2424 goto out_0;
2425 }
2426
fd9abb3d
SG
2427 if (!request_mem_region(res->start, res_size, SMSC_CHIPNAME)) {
2428 retval = -EBUSY;
2429 goto out_0;
2430 }
2431
2432 dev = alloc_etherdev(sizeof(struct smsc911x_data));
2433 if (!dev) {
fd9abb3d
SG
2434 retval = -ENOMEM;
2435 goto out_release_io_1;
2436 }
2437
2438 SET_NETDEV_DEV(dev, &pdev->dev);
2439
2440 pdata = netdev_priv(dev);
965b2aa7
KP
2441 dev->irq = irq;
2442 irq_flags = irq_get_trigger_type(irq);
fd9abb3d
SG
2443 pdata->ioaddr = ioremap_nocache(res->start, res_size);
2444
fd9abb3d
SG
2445 pdata->dev = dev;
2446 pdata->msg_enable = ((1 << debug) - 1);
2447
c7e963f6
RM
2448 platform_set_drvdata(pdev, dev);
2449
2450 retval = smsc911x_request_resources(pdev);
2451 if (retval)
2e1d4a06 2452 goto out_request_resources_fail;
c7e963f6
RM
2453
2454 retval = smsc911x_enable_resources(pdev);
2455 if (retval)
2e1d4a06 2456 goto out_enable_resources_fail;
c7e963f6 2457
fd9abb3d 2458 if (pdata->ioaddr == NULL) {
dffc6b24 2459 SMSC_WARN(pdata, probe, "Error smsc911x base address invalid");
fd9abb3d 2460 retval = -ENOMEM;
c7e963f6 2461 goto out_disable_resources;
fd9abb3d
SG
2462 }
2463
0b50dc4f 2464 retval = smsc911x_probe_config(&pdata->config, &pdev->dev);
79f88ee9
SG
2465 if (retval && config) {
2466 /* copy config parameters across to pdata */
2467 memcpy(&pdata->config, config, sizeof(pdata->config));
2468 retval = 0;
2469 }
2470
2471 if (retval) {
2472 SMSC_WARN(pdata, probe, "Error smsc911x config not found");
c7e963f6 2473 goto out_disable_resources;
79f88ee9
SG
2474 }
2475
c326de88
MP
2476 /* assume standard, non-shifted, access to HW registers */
2477 pdata->ops = &standard_smsc911x_ops;
2478 /* apply the right access if shifting is needed */
79f88ee9 2479 if (pdata->config.shift)
c326de88
MP
2480 pdata->ops = &shifted_smsc911x_ops;
2481
3a611e26
GU
2482 pm_runtime_enable(&pdev->dev);
2483 pm_runtime_get_sync(&pdev->dev);
2484
fd9abb3d
SG
2485 retval = smsc911x_init(dev);
2486 if (retval < 0)
c7e963f6 2487 goto out_disable_resources;
fd9abb3d
SG
2488
2489 /* configure irq polarity and type before connecting isr */
2107fb8b 2490 if (pdata->config.irq_polarity == SMSC911X_IRQ_POLARITY_ACTIVE_HIGH)
fd9abb3d
SG
2491 intcfg |= INT_CFG_IRQ_POL_;
2492
2107fb8b 2493 if (pdata->config.irq_type == SMSC911X_IRQ_TYPE_PUSH_PULL)
fd9abb3d
SG
2494 intcfg |= INT_CFG_IRQ_TYPE_;
2495
2496 smsc911x_reg_write(pdata, INT_CFG, intcfg);
2497
2498 /* Ensure interrupts are globally disabled before connecting ISR */
8e27628e 2499 smsc911x_disable_irq_chip(dev);
fd9abb3d 2500
61307ed8 2501 retval = request_irq(dev->irq, smsc911x_irqhandler,
e81259b4 2502 irq_flags | IRQF_SHARED, dev->name, dev);
fd9abb3d 2503 if (retval) {
dffc6b24
JP
2504 SMSC_WARN(pdata, probe,
2505 "Unable to claim requested irq: %d", dev->irq);
163faf31 2506 goto out_disable_resources;
fd9abb3d
SG
2507 }
2508
31f6f291
BK
2509 netif_carrier_off(dev);
2510
fd9abb3d
SG
2511 retval = register_netdev(dev);
2512 if (retval) {
dffc6b24 2513 SMSC_WARN(pdata, probe, "Error %i registering device", retval);
c7e963f6 2514 goto out_free_irq;
fd9abb3d 2515 } else {
dffc6b24
JP
2516 SMSC_TRACE(pdata, probe,
2517 "Network interface: \"%s\"", dev->name);
fd9abb3d
SG
2518 }
2519
fd9abb3d
SG
2520 retval = smsc911x_mii_init(pdev, dev);
2521 if (retval) {
dffc6b24 2522 SMSC_WARN(pdata, probe, "Error %i initialising mii", retval);
fd9abb3d
SG
2523 goto out_unregister_netdev_5;
2524 }
2525
2526 spin_lock_irq(&pdata->mac_lock);
2527
2528 /* Check if mac address has been specified when bringing interface up */
2529 if (is_valid_ether_addr(dev->dev_addr)) {
225ddf49 2530 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
dffc6b24
JP
2531 SMSC_TRACE(pdata, probe,
2532 "MAC Address is specified by configuration");
aace4959 2533 } else if (is_valid_ether_addr(pdata->config.mac)) {
d458cdf7 2534 memcpy(dev->dev_addr, pdata->config.mac, ETH_ALEN);
dffc6b24
JP
2535 SMSC_TRACE(pdata, probe,
2536 "MAC Address specified by platform data");
fd9abb3d
SG
2537 } else {
2538 /* Try reading mac address from device. if EEPROM is present
2539 * it will already have been set */
62747cd2 2540 smsc_get_mac(dev);
fd9abb3d
SG
2541
2542 if (is_valid_ether_addr(dev->dev_addr)) {
2543 /* eeprom values are valid so use them */
dffc6b24
JP
2544 SMSC_TRACE(pdata, probe,
2545 "Mac Address is read from LAN911x EEPROM");
fd9abb3d
SG
2546 } else {
2547 /* eeprom values are invalid, generate random MAC */
7ce5d222 2548 eth_hw_addr_random(dev);
225ddf49 2549 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
dffc6b24 2550 SMSC_TRACE(pdata, probe,
7efd26d0 2551 "MAC Address is set to eth_random_addr");
fd9abb3d
SG
2552 }
2553 }
2554
2555 spin_unlock_irq(&pdata->mac_lock);
2556
dffc6b24 2557 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
fd9abb3d
SG
2558
2559 return 0;
2560
2561out_unregister_netdev_5:
2562 unregister_netdev(dev);
c7e963f6 2563out_free_irq:
fd9abb3d 2564 free_irq(dev->irq, dev);
c7e963f6 2565out_disable_resources:
3a611e26
GU
2566 pm_runtime_put(&pdev->dev);
2567 pm_runtime_disable(&pdev->dev);
c7e963f6 2568 (void)smsc911x_disable_resources(pdev);
2e1d4a06 2569out_enable_resources_fail:
c7e963f6 2570 smsc911x_free_resources(pdev);
2e1d4a06 2571out_request_resources_fail:
fd9abb3d 2572 iounmap(pdata->ioaddr);
fd9abb3d
SG
2573 free_netdev(dev);
2574out_release_io_1:
39424539 2575 release_mem_region(res->start, resource_size(res));
fd9abb3d
SG
2576out_0:
2577 return retval;
2578}
2579
b6907b0c
DM
2580#ifdef CONFIG_PM
2581/* This implementation assumes the devices remains powered on its VDDVARIO
2582 * pins during suspend. */
2583
6cb87823
DM
2584/* TODO: implement freeze/thaw callbacks for hibernation.*/
2585
2586static int smsc911x_suspend(struct device *dev)
b6907b0c 2587{
6cb87823
DM
2588 struct net_device *ndev = dev_get_drvdata(dev);
2589 struct smsc911x_data *pdata = netdev_priv(ndev);
b6907b0c
DM
2590
2591 /* enable wake on LAN, energy detection and the external PME
2592 * signal. */
2593 smsc911x_reg_write(pdata, PMT_CTRL,
2594 PMT_CTRL_PM_MODE_D1_ | PMT_CTRL_WOL_EN_ |
2595 PMT_CTRL_ED_EN_ | PMT_CTRL_PME_EN_);
2596
2597 return 0;
2598}
2599
6cb87823 2600static int smsc911x_resume(struct device *dev)
b6907b0c 2601{
6cb87823
DM
2602 struct net_device *ndev = dev_get_drvdata(dev);
2603 struct smsc911x_data *pdata = netdev_priv(ndev);
b6907b0c
DM
2604 unsigned int to = 100;
2605
2606 /* Note 3.11 from the datasheet:
2607 * "When the LAN9220 is in a power saving state, a write of any
2608 * data to the BYTE_TEST register will wake-up the device."
2609 */
2610 smsc911x_reg_write(pdata, BYTE_TEST, 0);
2611
2612 /* poll the READY bit in PMT_CTRL. Any other access to the device is
2613 * forbidden while this bit isn't set. Try for 100ms and return -EIO
2614 * if it failed. */
2615 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & PMT_CTRL_READY_) && --to)
2616 udelay(1000);
2617
2618 return (to == 0) ? -EIO : 0;
2619}
2620
47145210 2621static const struct dev_pm_ops smsc911x_pm_ops = {
6cb87823
DM
2622 .suspend = smsc911x_suspend,
2623 .resume = smsc911x_resume,
2624};
2625
2626#define SMSC911X_PM_OPS (&smsc911x_pm_ops)
2627
b6907b0c 2628#else
6cb87823 2629#define SMSC911X_PM_OPS NULL
b6907b0c
DM
2630#endif
2631
d62fdf8b 2632#ifdef CONFIG_OF
79f88ee9
SG
2633static const struct of_device_id smsc911x_dt_ids[] = {
2634 { .compatible = "smsc,lan9115", },
2635 { /* sentinel */ }
2636};
2637MODULE_DEVICE_TABLE(of, smsc911x_dt_ids);
d62fdf8b 2638#endif
79f88ee9 2639
0b50dc4f
JL
2640static const struct acpi_device_id smsc911x_acpi_match[] = {
2641 { "ARMH9118", 0 },
2642 { }
2643};
2644MODULE_DEVICE_TABLE(acpi, smsc911x_acpi_match);
2645
fd9abb3d
SG
2646static struct platform_driver smsc911x_driver = {
2647 .probe = smsc911x_drv_probe,
8489ec1f 2648 .remove = smsc911x_drv_remove,
fd9abb3d 2649 .driver = {
6cb87823 2650 .name = SMSC_CHIPNAME,
6cb87823 2651 .pm = SMSC911X_PM_OPS,
d62fdf8b 2652 .of_match_table = of_match_ptr(smsc911x_dt_ids),
0b50dc4f 2653 .acpi_match_table = ACPI_PTR(smsc911x_acpi_match),
fd9abb3d
SG
2654 },
2655};
2656
2657/* Entry point for loading the module */
2658static int __init smsc911x_init_module(void)
2659{
62747cd2 2660 SMSC_INITIALIZE();
fd9abb3d
SG
2661 return platform_driver_register(&smsc911x_driver);
2662}
2663
2664/* entry point for unloading the module */
2665static void __exit smsc911x_cleanup_module(void)
2666{
2667 platform_driver_unregister(&smsc911x_driver);
2668}
2669
2670module_init(smsc911x_init_module);
2671module_exit(smsc911x_cleanup_module);