blob: 9d0b8ced0234b5ae7468abcf732af6b080618d8d [file] [log] [blame]
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001/***************************************************************************
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 ***************************************************************************
21 * Rewritten, heavily based on smsc911x simple driver by SMSC.
22 * Partly uses io macros from smc91x.c by Nicolas Pitre
23 *
24 * Supported devices:
25 * LAN9115, LAN9116, LAN9117, LAN9118
26 * LAN9215, LAN9216, LAN9217, LAN9218
27 * LAN9210, LAN9211
28 * LAN9220, LAN9221
David S. Miller1805b2f2011-10-24 18:18:09 -040029 * LAN89218
Steve Glendinningfd9abb32008-11-05 00:35:37 +000030 *
31 */
32
Joe Perchesdffc6b22011-03-25 14:21:22 +000033#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34
Steve Glendinningfd9abb32008-11-05 00:35:37 +000035#include <linux/crc32.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>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000041#include <linux/interrupt.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000042#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>
Robert Marklundc7e963f2011-11-24 01:03:07 +000047#include <linux/regulator/consumer.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000048#include <linux/sched.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000049#include <linux/timer.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000050#include <linux/bug.h>
51#include <linux/bitops.h>
52#include <linux/irq.h>
53#include <linux/io.h>
Magnus Damm833cc672009-04-27 21:32:16 +000054#include <linux/swab.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000055#include <linux/phy.h>
56#include <linux/smsc911x.h>
Daniel Mack6cb87822009-08-05 08:29:31 +000057#include <linux/device.h>
Shawn Guo79f88ee2011-07-30 08:26:00 +000058#include <linux/of.h>
59#include <linux/of_device.h>
60#include <linux/of_gpio.h>
61#include <linux/of_net.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000062#include "smsc911x.h"
63
64#define SMSC_CHIPNAME "smsc911x"
65#define SMSC_MDIONAME "smsc911x-mdio"
66#define SMSC_DRV_VERSION "2008-10-21"
67
68MODULE_LICENSE("GPL");
69MODULE_VERSION(SMSC_DRV_VERSION);
Vincent Stehlé62038e42010-09-26 18:50:05 -070070MODULE_ALIAS("platform:smsc911x");
Steve Glendinningfd9abb32008-11-05 00:35:37 +000071
72#if USE_DEBUG > 0
73static int debug = 16;
74#else
75static int debug = 3;
76#endif
77
78module_param(debug, int, 0);
79MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
80
Mathieu J. Poirierc326de82011-04-13 17:13:00 -070081struct smsc911x_data;
82
83struct smsc911x_ops {
84 u32 (*reg_read)(struct smsc911x_data *pdata, u32 reg);
85 void (*reg_write)(struct smsc911x_data *pdata, u32 reg, u32 val);
86 void (*rx_readfifo)(struct smsc911x_data *pdata,
87 unsigned int *buf, unsigned int wordcount);
88 void (*tx_writefifo)(struct smsc911x_data *pdata,
89 unsigned int *buf, unsigned int wordcount);
90};
91
Robert Marklundc7e963f2011-11-24 01:03:07 +000092#define SMSC911X_NUM_SUPPLIES 2
93
Steve Glendinningfd9abb32008-11-05 00:35:37 +000094struct smsc911x_data {
95 void __iomem *ioaddr;
96
97 unsigned int idrev;
98
99 /* used to decide which workarounds apply */
100 unsigned int generation;
101
102 /* device configuration (copied from platform_data during probe) */
Steve Glendinning2107fb82008-11-05 00:35:38 +0000103 struct smsc911x_platform_config config;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000104
105 /* This needs to be acquired before calling any of below:
106 * smsc911x_mac_read(), smsc911x_mac_write()
107 */
108 spinlock_t mac_lock;
109
Catalin Marinas492c5d92010-07-19 13:36:21 -0700110 /* spinlock to ensure register accesses are serialised */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000111 spinlock_t dev_lock;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000112
113 struct phy_device *phy_dev;
114 struct mii_bus *mii_bus;
115 int phy_irq[PHY_MAX_ADDR];
116 unsigned int using_extphy;
117 int last_duplex;
118 int last_carrier;
119
120 u32 msg_enable;
121 unsigned int gpio_setting;
122 unsigned int gpio_orig_setting;
123 struct net_device *dev;
124 struct napi_struct napi;
125
126 unsigned int software_irq_signal;
127
128#ifdef USE_PHY_WORK_AROUND
129#define MIN_PACKET_SIZE (64)
130 char loopback_tx_pkt[MIN_PACKET_SIZE];
131 char loopback_rx_pkt[MIN_PACKET_SIZE];
132 unsigned int resetcount;
133#endif
134
135 /* Members for Multicast filter workaround */
136 unsigned int multicast_update_pending;
137 unsigned int set_bits_mask;
138 unsigned int clear_bits_mask;
139 unsigned int hashhi;
140 unsigned int hashlo;
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700141
142 /* register access functions */
143 const struct smsc911x_ops *ops;
Robert Marklundc7e963f2011-11-24 01:03:07 +0000144
145 /* regulators */
146 struct regulator_bulk_data supplies[SMSC911X_NUM_SUPPLIES];
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000147};
148
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700149/* Easy access to information */
150#define __smsc_shift(pdata, reg) ((reg) << ((pdata)->config.shift))
151
Catalin Marinas492c5d92010-07-19 13:36:21 -0700152static inline u32 __smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000153{
Steve Glendinning2107fb82008-11-05 00:35:38 +0000154 if (pdata->config.flags & SMSC911X_USE_32BIT)
155 return readl(pdata->ioaddr + reg);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000156
Catalin Marinas492c5d92010-07-19 13:36:21 -0700157 if (pdata->config.flags & SMSC911X_USE_16BIT)
158 return ((readw(pdata->ioaddr + reg) & 0xFFFF) |
Steve Glendinning2107fb82008-11-05 00:35:38 +0000159 ((readw(pdata->ioaddr + reg + 2) & 0xFFFF) << 16));
Steve Glendinning2107fb82008-11-05 00:35:38 +0000160
161 BUG();
Steve Glendinning702403a2009-01-11 00:14:27 -0800162 return 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000163}
164
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700165static inline u32
166__smsc911x_reg_read_shift(struct smsc911x_data *pdata, u32 reg)
167{
168 if (pdata->config.flags & SMSC911X_USE_32BIT)
169 return readl(pdata->ioaddr + __smsc_shift(pdata, reg));
170
171 if (pdata->config.flags & SMSC911X_USE_16BIT)
172 return (readw(pdata->ioaddr +
173 __smsc_shift(pdata, reg)) & 0xFFFF) |
174 ((readw(pdata->ioaddr +
175 __smsc_shift(pdata, reg + 2)) & 0xFFFF) << 16);
176
177 BUG();
178 return 0;
179}
180
Catalin Marinas492c5d92010-07-19 13:36:21 -0700181static inline u32 smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
182{
183 u32 data;
184 unsigned long flags;
185
186 spin_lock_irqsave(&pdata->dev_lock, flags);
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700187 data = pdata->ops->reg_read(pdata, reg);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700188 spin_unlock_irqrestore(&pdata->dev_lock, flags);
189
190 return data;
191}
192
193static inline void __smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
194 u32 val)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000195{
Steve Glendinning2107fb82008-11-05 00:35:38 +0000196 if (pdata->config.flags & SMSC911X_USE_32BIT) {
197 writel(val, pdata->ioaddr + reg);
198 return;
199 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000200
Steve Glendinning2107fb82008-11-05 00:35:38 +0000201 if (pdata->config.flags & SMSC911X_USE_16BIT) {
Steve Glendinning2107fb82008-11-05 00:35:38 +0000202 writew(val & 0xFFFF, pdata->ioaddr + reg);
203 writew((val >> 16) & 0xFFFF, pdata->ioaddr + reg + 2);
Steve Glendinning2107fb82008-11-05 00:35:38 +0000204 return;
205 }
206
207 BUG();
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000208}
209
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700210static inline void
211__smsc911x_reg_write_shift(struct smsc911x_data *pdata, u32 reg, u32 val)
212{
213 if (pdata->config.flags & SMSC911X_USE_32BIT) {
214 writel(val, pdata->ioaddr + __smsc_shift(pdata, reg));
215 return;
216 }
217
218 if (pdata->config.flags & SMSC911X_USE_16BIT) {
219 writew(val & 0xFFFF,
220 pdata->ioaddr + __smsc_shift(pdata, reg));
221 writew((val >> 16) & 0xFFFF,
222 pdata->ioaddr + __smsc_shift(pdata, reg + 2));
223 return;
224 }
225
226 BUG();
227}
228
Catalin Marinas492c5d92010-07-19 13:36:21 -0700229static inline void smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
230 u32 val)
231{
232 unsigned long flags;
233
234 spin_lock_irqsave(&pdata->dev_lock, flags);
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700235 pdata->ops->reg_write(pdata, reg, val);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700236 spin_unlock_irqrestore(&pdata->dev_lock, flags);
237}
238
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000239/* Writes a packet to the TX_DATA_FIFO */
240static inline void
241smsc911x_tx_writefifo(struct smsc911x_data *pdata, unsigned int *buf,
242 unsigned int wordcount)
243{
Catalin Marinas492c5d92010-07-19 13:36:21 -0700244 unsigned long flags;
245
246 spin_lock_irqsave(&pdata->dev_lock, flags);
247
Magnus Damm833cc672009-04-27 21:32:16 +0000248 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
249 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700250 __smsc911x_reg_write(pdata, TX_DATA_FIFO,
251 swab32(*buf++));
252 goto out;
Magnus Damm833cc672009-04-27 21:32:16 +0000253 }
254
Steve Glendinning2107fb82008-11-05 00:35:38 +0000255 if (pdata->config.flags & SMSC911X_USE_32BIT) {
256 writesl(pdata->ioaddr + TX_DATA_FIFO, buf, wordcount);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700257 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000258 }
259
260 if (pdata->config.flags & SMSC911X_USE_16BIT) {
261 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700262 __smsc911x_reg_write(pdata, TX_DATA_FIFO, *buf++);
263 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000264 }
265
266 BUG();
Catalin Marinas492c5d92010-07-19 13:36:21 -0700267out:
268 spin_unlock_irqrestore(&pdata->dev_lock, flags);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000269}
270
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700271/* Writes a packet to the TX_DATA_FIFO - shifted version */
272static inline void
273smsc911x_tx_writefifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
274 unsigned int wordcount)
275{
276 unsigned long flags;
277
278 spin_lock_irqsave(&pdata->dev_lock, flags);
279
280 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
281 while (wordcount--)
282 __smsc911x_reg_write_shift(pdata, TX_DATA_FIFO,
283 swab32(*buf++));
284 goto out;
285 }
286
287 if (pdata->config.flags & SMSC911X_USE_32BIT) {
288 writesl(pdata->ioaddr + __smsc_shift(pdata,
289 TX_DATA_FIFO), buf, wordcount);
290 goto out;
291 }
292
293 if (pdata->config.flags & SMSC911X_USE_16BIT) {
294 while (wordcount--)
295 __smsc911x_reg_write_shift(pdata,
296 TX_DATA_FIFO, *buf++);
297 goto out;
298 }
299
300 BUG();
301out:
302 spin_unlock_irqrestore(&pdata->dev_lock, flags);
303}
304
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000305/* Reads a packet out of the RX_DATA_FIFO */
306static inline void
307smsc911x_rx_readfifo(struct smsc911x_data *pdata, unsigned int *buf,
308 unsigned int wordcount)
309{
Catalin Marinas492c5d92010-07-19 13:36:21 -0700310 unsigned long flags;
311
312 spin_lock_irqsave(&pdata->dev_lock, flags);
313
Magnus Damm833cc672009-04-27 21:32:16 +0000314 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
315 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700316 *buf++ = swab32(__smsc911x_reg_read(pdata,
317 RX_DATA_FIFO));
318 goto out;
Magnus Damm833cc672009-04-27 21:32:16 +0000319 }
320
Steve Glendinning2107fb82008-11-05 00:35:38 +0000321 if (pdata->config.flags & SMSC911X_USE_32BIT) {
322 readsl(pdata->ioaddr + RX_DATA_FIFO, buf, wordcount);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700323 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000324 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000325
Steve Glendinning2107fb82008-11-05 00:35:38 +0000326 if (pdata->config.flags & SMSC911X_USE_16BIT) {
327 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700328 *buf++ = __smsc911x_reg_read(pdata, RX_DATA_FIFO);
329 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000330 }
331
332 BUG();
Catalin Marinas492c5d92010-07-19 13:36:21 -0700333out:
334 spin_unlock_irqrestore(&pdata->dev_lock, flags);
Steve Glendinning2107fb82008-11-05 00:35:38 +0000335}
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000336
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700337/* Reads a packet out of the RX_DATA_FIFO - shifted version */
338static inline void
339smsc911x_rx_readfifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
340 unsigned int wordcount)
341{
342 unsigned long flags;
343
344 spin_lock_irqsave(&pdata->dev_lock, flags);
345
346 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
347 while (wordcount--)
348 *buf++ = swab32(__smsc911x_reg_read_shift(pdata,
349 RX_DATA_FIFO));
350 goto out;
351 }
352
353 if (pdata->config.flags & SMSC911X_USE_32BIT) {
354 readsl(pdata->ioaddr + __smsc_shift(pdata,
355 RX_DATA_FIFO), buf, wordcount);
356 goto out;
357 }
358
359 if (pdata->config.flags & SMSC911X_USE_16BIT) {
360 while (wordcount--)
361 *buf++ = __smsc911x_reg_read_shift(pdata,
362 RX_DATA_FIFO);
363 goto out;
364 }
365
366 BUG();
367out:
368 spin_unlock_irqrestore(&pdata->dev_lock, flags);
369}
370
Robert Marklundc7e963f2011-11-24 01:03:07 +0000371/*
372 * enable resources, currently just regulators.
373 */
374static int smsc911x_enable_resources(struct platform_device *pdev)
375{
376 struct net_device *ndev = platform_get_drvdata(pdev);
377 struct smsc911x_data *pdata = netdev_priv(ndev);
378 int ret = 0;
379
380 ret = regulator_bulk_enable(ARRAY_SIZE(pdata->supplies),
381 pdata->supplies);
382 if (ret)
383 netdev_err(ndev, "failed to enable regulators %d\n",
384 ret);
385 return ret;
386}
387
388/*
389 * disable resources, currently just regulators.
390 */
391static int smsc911x_disable_resources(struct platform_device *pdev)
392{
393 struct net_device *ndev = platform_get_drvdata(pdev);
394 struct smsc911x_data *pdata = netdev_priv(ndev);
395 int ret = 0;
396
397 ret = regulator_bulk_disable(ARRAY_SIZE(pdata->supplies),
398 pdata->supplies);
399 return ret;
400}
401
402/*
403 * Request resources, currently just regulators.
404 *
405 * The SMSC911x has two power pins: vddvario and vdd33a, in designs where
406 * these are not always-on we need to request regulators to be turned on
407 * before we can try to access the device registers.
408 */
409static int smsc911x_request_resources(struct platform_device *pdev)
410{
411 struct net_device *ndev = platform_get_drvdata(pdev);
412 struct smsc911x_data *pdata = netdev_priv(ndev);
413 int ret = 0;
414
415 /* Request regulators */
416 pdata->supplies[0].supply = "vdd33a";
417 pdata->supplies[1].supply = "vddvario";
418 ret = regulator_bulk_get(&pdev->dev,
419 ARRAY_SIZE(pdata->supplies),
420 pdata->supplies);
421 if (ret)
422 netdev_err(ndev, "couldn't get regulators %d\n",
423 ret);
424 return ret;
425}
426
427/*
428 * Free resources, currently just regulators.
429 *
430 */
431static void smsc911x_free_resources(struct platform_device *pdev)
432{
433 struct net_device *ndev = platform_get_drvdata(pdev);
434 struct smsc911x_data *pdata = netdev_priv(ndev);
435
436 /* Free regulators */
437 regulator_bulk_free(ARRAY_SIZE(pdata->supplies),
438 pdata->supplies);
439}
440
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000441/* waits for MAC not busy, with timeout. Only called by smsc911x_mac_read
442 * and smsc911x_mac_write, so assumes mac_lock is held */
443static int smsc911x_mac_complete(struct smsc911x_data *pdata)
444{
445 int i;
446 u32 val;
447
448 SMSC_ASSERT_MAC_LOCK(pdata);
449
450 for (i = 0; i < 40; i++) {
451 val = smsc911x_reg_read(pdata, MAC_CSR_CMD);
452 if (!(val & MAC_CSR_CMD_CSR_BUSY_))
453 return 0;
454 }
Joe Perchesdffc6b22011-03-25 14:21:22 +0000455 SMSC_WARN(pdata, hw, "Timed out waiting for MAC not BUSY. "
456 "MAC_CSR_CMD: 0x%08X", val);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000457 return -EIO;
458}
459
460/* Fetches a MAC register value. Assumes mac_lock is acquired */
461static u32 smsc911x_mac_read(struct smsc911x_data *pdata, unsigned int offset)
462{
463 unsigned int temp;
464
465 SMSC_ASSERT_MAC_LOCK(pdata);
466
467 temp = smsc911x_reg_read(pdata, MAC_CSR_CMD);
468 if (unlikely(temp & MAC_CSR_CMD_CSR_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000469 SMSC_WARN(pdata, hw, "MAC busy at entry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000470 return 0xFFFFFFFF;
471 }
472
473 /* Send the MAC cmd */
474 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
475 MAC_CSR_CMD_CSR_BUSY_ | MAC_CSR_CMD_R_NOT_W_));
476
477 /* Workaround for hardware read-after-write restriction */
478 temp = smsc911x_reg_read(pdata, BYTE_TEST);
479
480 /* Wait for the read to complete */
481 if (likely(smsc911x_mac_complete(pdata) == 0))
482 return smsc911x_reg_read(pdata, MAC_CSR_DATA);
483
Joe Perchesdffc6b22011-03-25 14:21:22 +0000484 SMSC_WARN(pdata, hw, "MAC busy after read");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000485 return 0xFFFFFFFF;
486}
487
488/* Set a mac register, mac_lock must be acquired before calling */
489static void smsc911x_mac_write(struct smsc911x_data *pdata,
490 unsigned int offset, u32 val)
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_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000498 SMSC_WARN(pdata, hw,
499 "smsc911x_mac_write failed, MAC busy at entry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000500 return;
501 }
502
503 /* Send data to write */
504 smsc911x_reg_write(pdata, MAC_CSR_DATA, val);
505
506 /* Write the actual data */
507 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
508 MAC_CSR_CMD_CSR_BUSY_));
509
510 /* Workaround for hardware read-after-write restriction */
511 temp = smsc911x_reg_read(pdata, BYTE_TEST);
512
513 /* Wait for the write to complete */
514 if (likely(smsc911x_mac_complete(pdata) == 0))
515 return;
516
Joe Perchesdffc6b22011-03-25 14:21:22 +0000517 SMSC_WARN(pdata, hw, "smsc911x_mac_write failed, MAC busy after write");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000518}
519
520/* Get a phy register */
521static int smsc911x_mii_read(struct mii_bus *bus, int phyaddr, int regidx)
522{
523 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
524 unsigned long flags;
525 unsigned int addr;
526 int i, reg;
527
528 spin_lock_irqsave(&pdata->mac_lock, flags);
529
530 /* Confirm MII not busy */
531 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000532 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_read???");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000533 reg = -EIO;
534 goto out;
535 }
536
537 /* Set the address, index & direction (read from PHY) */
538 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6);
539 smsc911x_mac_write(pdata, MII_ACC, addr);
540
541 /* Wait for read to complete w/ timeout */
542 for (i = 0; i < 100; i++)
543 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
544 reg = smsc911x_mac_read(pdata, MII_DATA);
545 goto out;
546 }
547
Joe Perchesdffc6b22011-03-25 14:21:22 +0000548 SMSC_WARN(pdata, hw, "Timed out waiting for MII read to finish");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000549 reg = -EIO;
550
551out:
552 spin_unlock_irqrestore(&pdata->mac_lock, flags);
553 return reg;
554}
555
556/* Set a phy register */
557static int smsc911x_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
558 u16 val)
559{
560 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
561 unsigned long flags;
562 unsigned int addr;
563 int i, reg;
564
565 spin_lock_irqsave(&pdata->mac_lock, flags);
566
567 /* Confirm MII not busy */
568 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000569 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_write???");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000570 reg = -EIO;
571 goto out;
572 }
573
574 /* Put the data to write in the MAC */
575 smsc911x_mac_write(pdata, MII_DATA, val);
576
577 /* Set the address, index & direction (write to PHY) */
578 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6) |
579 MII_ACC_MII_WRITE_;
580 smsc911x_mac_write(pdata, MII_ACC, addr);
581
582 /* Wait for write to complete w/ timeout */
583 for (i = 0; i < 100; i++)
584 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
585 reg = 0;
586 goto out;
587 }
588
Joe Perchesdffc6b22011-03-25 14:21:22 +0000589 SMSC_WARN(pdata, hw, "Timed out waiting for MII write to finish");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000590 reg = -EIO;
591
592out:
593 spin_unlock_irqrestore(&pdata->mac_lock, flags);
594 return reg;
595}
596
Steve Glendinningd23f0282009-01-27 06:51:11 +0000597/* Switch to external phy. Assumes tx and rx are stopped. */
598static void smsc911x_phy_enable_external(struct smsc911x_data *pdata)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000599{
600 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
601
Steve Glendinningd23f0282009-01-27 06:51:11 +0000602 /* Disable phy clocks to the MAC */
603 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
604 hwcfg |= HW_CFG_PHY_CLK_SEL_CLK_DIS_;
605 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
606 udelay(10); /* Enough time for clocks to stop */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000607
Steve Glendinningd23f0282009-01-27 06:51:11 +0000608 /* Switch to external phy */
609 hwcfg |= HW_CFG_EXT_PHY_EN_;
610 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000611
Steve Glendinningd23f0282009-01-27 06:51:11 +0000612 /* Enable phy clocks to the MAC */
613 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
614 hwcfg |= HW_CFG_PHY_CLK_SEL_EXT_PHY_;
615 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
616 udelay(10); /* Enough time for clocks to restart */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000617
Steve Glendinningd23f0282009-01-27 06:51:11 +0000618 hwcfg |= HW_CFG_SMI_SEL_;
619 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
620}
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000621
Steve Glendinningd23f0282009-01-27 06:51:11 +0000622/* Autodetects and enables external phy if present on supported chips.
623 * autodetection can be overridden by specifying SMSC911X_FORCE_INTERNAL_PHY
624 * or SMSC911X_FORCE_EXTERNAL_PHY in the platform_data flags. */
625static void smsc911x_phy_initialise_external(struct smsc911x_data *pdata)
626{
627 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000628
Steve Glendinningd23f0282009-01-27 06:51:11 +0000629 if (pdata->config.flags & SMSC911X_FORCE_INTERNAL_PHY) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000630 SMSC_TRACE(pdata, hw, "Forcing internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000631 pdata->using_extphy = 0;
632 } else if (pdata->config.flags & SMSC911X_FORCE_EXTERNAL_PHY) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000633 SMSC_TRACE(pdata, hw, "Forcing external PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000634 smsc911x_phy_enable_external(pdata);
635 pdata->using_extphy = 1;
636 } else if (hwcfg & HW_CFG_EXT_PHY_DET_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000637 SMSC_TRACE(pdata, hw,
638 "HW_CFG EXT_PHY_DET set, using external PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000639 smsc911x_phy_enable_external(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000640 pdata->using_extphy = 1;
641 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000642 SMSC_TRACE(pdata, hw,
643 "HW_CFG EXT_PHY_DET clear, using internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000644 pdata->using_extphy = 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000645 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000646}
647
648/* Fetches a tx status out of the status fifo */
649static unsigned int smsc911x_tx_get_txstatus(struct smsc911x_data *pdata)
650{
651 unsigned int result =
652 smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TSUSED_;
653
654 if (result != 0)
655 result = smsc911x_reg_read(pdata, TX_STATUS_FIFO);
656
657 return result;
658}
659
660/* Fetches the next rx status */
661static unsigned int smsc911x_rx_get_rxstatus(struct smsc911x_data *pdata)
662{
663 unsigned int result =
664 smsc911x_reg_read(pdata, RX_FIFO_INF) & RX_FIFO_INF_RXSUSED_;
665
666 if (result != 0)
667 result = smsc911x_reg_read(pdata, RX_STATUS_FIFO);
668
669 return result;
670}
671
672#ifdef USE_PHY_WORK_AROUND
673static int smsc911x_phy_check_loopbackpkt(struct smsc911x_data *pdata)
674{
675 unsigned int tries;
676 u32 wrsz;
677 u32 rdsz;
678 ulong bufp;
679
680 for (tries = 0; tries < 10; tries++) {
681 unsigned int txcmd_a;
682 unsigned int txcmd_b;
683 unsigned int status;
684 unsigned int pktlength;
685 unsigned int i;
686
687 /* Zero-out rx packet memory */
688 memset(pdata->loopback_rx_pkt, 0, MIN_PACKET_SIZE);
689
690 /* Write tx packet to 118 */
691 txcmd_a = (u32)((ulong)pdata->loopback_tx_pkt & 0x03) << 16;
692 txcmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
693 txcmd_a |= MIN_PACKET_SIZE;
694
695 txcmd_b = MIN_PACKET_SIZE << 16 | MIN_PACKET_SIZE;
696
697 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_a);
698 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_b);
699
700 bufp = (ulong)pdata->loopback_tx_pkt & (~0x3);
701 wrsz = MIN_PACKET_SIZE + 3;
702 wrsz += (u32)((ulong)pdata->loopback_tx_pkt & 0x3);
703 wrsz >>= 2;
704
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700705 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000706
707 /* Wait till transmit is done */
708 i = 60;
709 do {
710 udelay(5);
711 status = smsc911x_tx_get_txstatus(pdata);
712 } while ((i--) && (!status));
713
714 if (!status) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000715 SMSC_WARN(pdata, hw,
716 "Failed to transmit during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000717 continue;
718 }
719 if (status & TX_STS_ES_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000720 SMSC_WARN(pdata, hw,
721 "Transmit encountered errors during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000722 continue;
723 }
724
725 /* Wait till receive is done */
726 i = 60;
727 do {
728 udelay(5);
729 status = smsc911x_rx_get_rxstatus(pdata);
730 } while ((i--) && (!status));
731
732 if (!status) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000733 SMSC_WARN(pdata, hw,
734 "Failed to receive during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000735 continue;
736 }
737 if (status & RX_STS_ES_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000738 SMSC_WARN(pdata, hw,
739 "Receive encountered errors during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000740 continue;
741 }
742
743 pktlength = ((status & 0x3FFF0000UL) >> 16);
744 bufp = (ulong)pdata->loopback_rx_pkt;
745 rdsz = pktlength + 3;
746 rdsz += (u32)((ulong)pdata->loopback_rx_pkt & 0x3);
747 rdsz >>= 2;
748
Mathieu J. Poirierc326de82011-04-13 17:13:00 -0700749 pdata->ops->rx_readfifo(pdata, (unsigned int *)bufp, rdsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000750
751 if (pktlength != (MIN_PACKET_SIZE + 4)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000752 SMSC_WARN(pdata, hw, "Unexpected packet size "
753 "during loop back test, size=%d, will retry",
754 pktlength);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000755 } else {
756 unsigned int j;
757 int mismatch = 0;
758 for (j = 0; j < MIN_PACKET_SIZE; j++) {
759 if (pdata->loopback_tx_pkt[j]
760 != pdata->loopback_rx_pkt[j]) {
761 mismatch = 1;
762 break;
763 }
764 }
765 if (!mismatch) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000766 SMSC_TRACE(pdata, hw, "Successfully verified "
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000767 "loopback packet");
768 return 0;
769 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000770 SMSC_WARN(pdata, hw, "Data mismatch "
771 "during loop back test, will retry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000772 }
773 }
774 }
775
776 return -EIO;
777}
778
779static int smsc911x_phy_reset(struct smsc911x_data *pdata)
780{
781 struct phy_device *phy_dev = pdata->phy_dev;
782 unsigned int temp;
783 unsigned int i = 100000;
784
785 BUG_ON(!phy_dev);
786 BUG_ON(!phy_dev->bus);
787
Joe Perchesdffc6b22011-03-25 14:21:22 +0000788 SMSC_TRACE(pdata, hw, "Performing PHY BCR Reset");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000789 smsc911x_mii_write(phy_dev->bus, phy_dev->addr, MII_BMCR, BMCR_RESET);
790 do {
791 msleep(1);
792 temp = smsc911x_mii_read(phy_dev->bus, phy_dev->addr,
793 MII_BMCR);
794 } while ((i--) && (temp & BMCR_RESET));
795
796 if (temp & BMCR_RESET) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000797 SMSC_WARN(pdata, hw, "PHY reset failed to complete");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000798 return -EIO;
799 }
800 /* Extra delay required because the phy may not be completed with
801 * its reset when BMCR_RESET is cleared. Specs say 256 uS is
802 * enough delay but using 1ms here to be safe */
803 msleep(1);
804
805 return 0;
806}
807
808static int smsc911x_phy_loopbacktest(struct net_device *dev)
809{
810 struct smsc911x_data *pdata = netdev_priv(dev);
811 struct phy_device *phy_dev = pdata->phy_dev;
812 int result = -EIO;
813 unsigned int i, val;
814 unsigned long flags;
815
816 /* Initialise tx packet using broadcast destination address */
817 memset(pdata->loopback_tx_pkt, 0xff, ETH_ALEN);
818
819 /* Use incrementing source address */
820 for (i = 6; i < 12; i++)
821 pdata->loopback_tx_pkt[i] = (char)i;
822
823 /* Set length type field */
824 pdata->loopback_tx_pkt[12] = 0x00;
825 pdata->loopback_tx_pkt[13] = 0x00;
826
827 for (i = 14; i < MIN_PACKET_SIZE; i++)
828 pdata->loopback_tx_pkt[i] = (char)i;
829
830 val = smsc911x_reg_read(pdata, HW_CFG);
831 val &= HW_CFG_TX_FIF_SZ_;
832 val |= HW_CFG_SF_;
833 smsc911x_reg_write(pdata, HW_CFG, val);
834
835 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
836 smsc911x_reg_write(pdata, RX_CFG,
837 (u32)((ulong)pdata->loopback_rx_pkt & 0x03) << 8);
838
839 for (i = 0; i < 10; i++) {
840 /* Set PHY to 10/FD, no ANEG, and loopback mode */
841 smsc911x_mii_write(phy_dev->bus, phy_dev->addr, MII_BMCR,
842 BMCR_LOOPBACK | BMCR_FULLDPLX);
843
844 /* Enable MAC tx/rx, FD */
845 spin_lock_irqsave(&pdata->mac_lock, flags);
846 smsc911x_mac_write(pdata, MAC_CR, MAC_CR_FDPX_
847 | MAC_CR_TXEN_ | MAC_CR_RXEN_);
848 spin_unlock_irqrestore(&pdata->mac_lock, flags);
849
850 if (smsc911x_phy_check_loopbackpkt(pdata) == 0) {
851 result = 0;
852 break;
853 }
854 pdata->resetcount++;
855
856 /* Disable MAC rx */
857 spin_lock_irqsave(&pdata->mac_lock, flags);
858 smsc911x_mac_write(pdata, MAC_CR, 0);
859 spin_unlock_irqrestore(&pdata->mac_lock, flags);
860
861 smsc911x_phy_reset(pdata);
862 }
863
864 /* Disable MAC */
865 spin_lock_irqsave(&pdata->mac_lock, flags);
866 smsc911x_mac_write(pdata, MAC_CR, 0);
867 spin_unlock_irqrestore(&pdata->mac_lock, flags);
868
869 /* Cancel PHY loopback mode */
870 smsc911x_mii_write(phy_dev->bus, phy_dev->addr, MII_BMCR, 0);
871
872 smsc911x_reg_write(pdata, TX_CFG, 0);
873 smsc911x_reg_write(pdata, RX_CFG, 0);
874
875 return result;
876}
877#endif /* USE_PHY_WORK_AROUND */
878
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000879static void smsc911x_phy_update_flowcontrol(struct smsc911x_data *pdata)
880{
881 struct phy_device *phy_dev = pdata->phy_dev;
882 u32 afc = smsc911x_reg_read(pdata, AFC_CFG);
883 u32 flow;
884 unsigned long flags;
885
886 if (phy_dev->duplex == DUPLEX_FULL) {
887 u16 lcladv = phy_read(phy_dev, MII_ADVERTISE);
888 u16 rmtadv = phy_read(phy_dev, MII_LPA);
Steve Glendinningbc02ff92008-12-16 02:00:48 -0800889 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000890
891 if (cap & FLOW_CTRL_RX)
892 flow = 0xFFFF0002;
893 else
894 flow = 0;
895
896 if (cap & FLOW_CTRL_TX)
897 afc |= 0xF;
898 else
899 afc &= ~0xF;
900
Joe Perchesdffc6b22011-03-25 14:21:22 +0000901 SMSC_TRACE(pdata, hw, "rx pause %s, tx pause %s",
902 (cap & FLOW_CTRL_RX ? "enabled" : "disabled"),
903 (cap & FLOW_CTRL_TX ? "enabled" : "disabled"));
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000904 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000905 SMSC_TRACE(pdata, hw, "half duplex");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000906 flow = 0;
907 afc |= 0xF;
908 }
909
910 spin_lock_irqsave(&pdata->mac_lock, flags);
911 smsc911x_mac_write(pdata, FLOW, flow);
912 spin_unlock_irqrestore(&pdata->mac_lock, flags);
913
914 smsc911x_reg_write(pdata, AFC_CFG, afc);
915}
916
917/* Update link mode if anything has changed. Called periodically when the
918 * PHY is in polling mode, even if nothing has changed. */
919static void smsc911x_phy_adjust_link(struct net_device *dev)
920{
921 struct smsc911x_data *pdata = netdev_priv(dev);
922 struct phy_device *phy_dev = pdata->phy_dev;
923 unsigned long flags;
924 int carrier;
925
926 if (phy_dev->duplex != pdata->last_duplex) {
927 unsigned int mac_cr;
Joe Perchesdffc6b22011-03-25 14:21:22 +0000928 SMSC_TRACE(pdata, hw, "duplex state has changed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000929
930 spin_lock_irqsave(&pdata->mac_lock, flags);
931 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
932 if (phy_dev->duplex) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000933 SMSC_TRACE(pdata, hw,
934 "configuring for full duplex mode");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000935 mac_cr |= MAC_CR_FDPX_;
936 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000937 SMSC_TRACE(pdata, hw,
938 "configuring for half duplex mode");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000939 mac_cr &= ~MAC_CR_FDPX_;
940 }
941 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
942 spin_unlock_irqrestore(&pdata->mac_lock, flags);
943
944 smsc911x_phy_update_flowcontrol(pdata);
945 pdata->last_duplex = phy_dev->duplex;
946 }
947
948 carrier = netif_carrier_ok(dev);
949 if (carrier != pdata->last_carrier) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000950 SMSC_TRACE(pdata, hw, "carrier state has changed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000951 if (carrier) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000952 SMSC_TRACE(pdata, hw, "configuring for carrier OK");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000953 if ((pdata->gpio_orig_setting & GPIO_CFG_LED1_EN_) &&
954 (!pdata->using_extphy)) {
Thomas Weber88393162010-03-16 11:47:56 +0100955 /* Restore original GPIO configuration */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000956 pdata->gpio_setting = pdata->gpio_orig_setting;
957 smsc911x_reg_write(pdata, GPIO_CFG,
958 pdata->gpio_setting);
959 }
960 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000961 SMSC_TRACE(pdata, hw, "configuring for no carrier");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000962 /* Check global setting that LED1
963 * usage is 10/100 indicator */
964 pdata->gpio_setting = smsc911x_reg_read(pdata,
965 GPIO_CFG);
Joe Perches8e95a202009-12-03 07:58:21 +0000966 if ((pdata->gpio_setting & GPIO_CFG_LED1_EN_) &&
967 (!pdata->using_extphy)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000968 /* Force 10/100 LED off, after saving
Thomas Weber88393162010-03-16 11:47:56 +0100969 * original GPIO configuration */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000970 pdata->gpio_orig_setting = pdata->gpio_setting;
971
972 pdata->gpio_setting &= ~GPIO_CFG_LED1_EN_;
973 pdata->gpio_setting |= (GPIO_CFG_GPIOBUF0_
974 | GPIO_CFG_GPIODIR0_
975 | GPIO_CFG_GPIOD0_);
976 smsc911x_reg_write(pdata, GPIO_CFG,
977 pdata->gpio_setting);
978 }
979 }
980 pdata->last_carrier = carrier;
981 }
982}
983
984static int smsc911x_mii_probe(struct net_device *dev)
985{
986 struct smsc911x_data *pdata = netdev_priv(dev);
987 struct phy_device *phydev = NULL;
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +0000988 int ret;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000989
990 /* find the first phy */
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +0000991 phydev = phy_find_first(pdata->mii_bus);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000992 if (!phydev) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000993 netdev_err(dev, "no PHY found\n");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000994 return -ENODEV;
995 }
996
Joe Perchesdffc6b22011-03-25 14:21:22 +0000997 SMSC_TRACE(pdata, probe, "PHY: addr %d, phy_id 0x%08X",
998 phydev->addr, phydev->phy_id);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000999
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001000 ret = phy_connect_direct(dev, phydev,
1001 &smsc911x_phy_adjust_link, 0,
1002 pdata->config.phy_interface);
1003
1004 if (ret) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001005 netdev_err(dev, "Could not attach to PHY\n");
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001006 return ret;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001007 }
1008
Joe Perchesdffc6b22011-03-25 14:21:22 +00001009 netdev_info(dev,
1010 "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
1011 phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001012
1013 /* mask with MAC supported features */
1014 phydev->supported &= (PHY_BASIC_FEATURES | SUPPORTED_Pause |
1015 SUPPORTED_Asym_Pause);
1016 phydev->advertising = phydev->supported;
1017
1018 pdata->phy_dev = phydev;
1019 pdata->last_duplex = -1;
1020 pdata->last_carrier = -1;
1021
1022#ifdef USE_PHY_WORK_AROUND
1023 if (smsc911x_phy_loopbacktest(dev) < 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001024 SMSC_WARN(pdata, hw, "Failed Loop Back Test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001025 return -ENODEV;
1026 }
Joe Perchesdffc6b22011-03-25 14:21:22 +00001027 SMSC_TRACE(pdata, hw, "Passed Loop Back Test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001028#endif /* USE_PHY_WORK_AROUND */
1029
Joe Perchesdffc6b22011-03-25 14:21:22 +00001030 SMSC_TRACE(pdata, hw, "phy initialised successfully");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001031 return 0;
1032}
1033
1034static int __devinit smsc911x_mii_init(struct platform_device *pdev,
1035 struct net_device *dev)
1036{
1037 struct smsc911x_data *pdata = netdev_priv(dev);
1038 int err = -ENXIO, i;
1039
1040 pdata->mii_bus = mdiobus_alloc();
1041 if (!pdata->mii_bus) {
1042 err = -ENOMEM;
1043 goto err_out_1;
1044 }
1045
1046 pdata->mii_bus->name = SMSC_MDIONAME;
1047 snprintf(pdata->mii_bus->id, MII_BUS_ID_SIZE, "%x", pdev->id);
1048 pdata->mii_bus->priv = pdata;
1049 pdata->mii_bus->read = smsc911x_mii_read;
1050 pdata->mii_bus->write = smsc911x_mii_write;
1051 pdata->mii_bus->irq = pdata->phy_irq;
1052 for (i = 0; i < PHY_MAX_ADDR; ++i)
1053 pdata->mii_bus->irq[i] = PHY_POLL;
1054
1055 pdata->mii_bus->parent = &pdev->dev;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001056
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001057 switch (pdata->idrev & 0xFFFF0000) {
1058 case 0x01170000:
1059 case 0x01150000:
1060 case 0x117A0000:
1061 case 0x115A0000:
1062 /* External PHY supported, try to autodetect */
Steve Glendinningd23f0282009-01-27 06:51:11 +00001063 smsc911x_phy_initialise_external(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001064 break;
1065 default:
Joe Perchesdffc6b22011-03-25 14:21:22 +00001066 SMSC_TRACE(pdata, hw, "External PHY is not supported, "
1067 "using internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +00001068 pdata->using_extphy = 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001069 break;
1070 }
1071
1072 if (!pdata->using_extphy) {
1073 /* Mask all PHYs except ID 1 (internal) */
1074 pdata->mii_bus->phy_mask = ~(1 << 1);
1075 }
1076
1077 if (mdiobus_register(pdata->mii_bus)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001078 SMSC_WARN(pdata, probe, "Error registering mii bus");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001079 goto err_out_free_bus_2;
1080 }
1081
1082 if (smsc911x_mii_probe(dev) < 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001083 SMSC_WARN(pdata, probe, "Error registering mii bus");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001084 goto err_out_unregister_bus_3;
1085 }
1086
1087 return 0;
1088
1089err_out_unregister_bus_3:
1090 mdiobus_unregister(pdata->mii_bus);
1091err_out_free_bus_2:
1092 mdiobus_free(pdata->mii_bus);
1093err_out_1:
1094 return err;
1095}
1096
1097/* Gets the number of tx statuses in the fifo */
1098static unsigned int smsc911x_tx_get_txstatcount(struct smsc911x_data *pdata)
1099{
1100 return (smsc911x_reg_read(pdata, TX_FIFO_INF)
1101 & TX_FIFO_INF_TSUSED_) >> 16;
1102}
1103
1104/* Reads tx statuses and increments counters where necessary */
1105static void smsc911x_tx_update_txcounters(struct net_device *dev)
1106{
1107 struct smsc911x_data *pdata = netdev_priv(dev);
1108 unsigned int tx_stat;
1109
1110 while ((tx_stat = smsc911x_tx_get_txstatus(pdata)) != 0) {
1111 if (unlikely(tx_stat & 0x80000000)) {
1112 /* In this driver the packet tag is used as the packet
1113 * length. Since a packet length can never reach the
1114 * size of 0x8000, this bit is reserved. It is worth
1115 * noting that the "reserved bit" in the warning above
1116 * does not reference a hardware defined reserved bit
1117 * but rather a driver defined one.
1118 */
Joe Perchesdffc6b22011-03-25 14:21:22 +00001119 SMSC_WARN(pdata, hw, "Packet tag reserved bit is high");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001120 } else {
Steve Glendinning785b6f92009-03-19 00:24:44 +00001121 if (unlikely(tx_stat & TX_STS_ES_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001122 dev->stats.tx_errors++;
1123 } else {
1124 dev->stats.tx_packets++;
1125 dev->stats.tx_bytes += (tx_stat >> 16);
1126 }
Steve Glendinning785b6f92009-03-19 00:24:44 +00001127 if (unlikely(tx_stat & TX_STS_EXCESS_COL_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001128 dev->stats.collisions += 16;
1129 dev->stats.tx_aborted_errors += 1;
1130 } else {
1131 dev->stats.collisions +=
1132 ((tx_stat >> 3) & 0xF);
1133 }
Steve Glendinning785b6f92009-03-19 00:24:44 +00001134 if (unlikely(tx_stat & TX_STS_LOST_CARRIER_))
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001135 dev->stats.tx_carrier_errors += 1;
Steve Glendinning785b6f92009-03-19 00:24:44 +00001136 if (unlikely(tx_stat & TX_STS_LATE_COL_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001137 dev->stats.collisions++;
1138 dev->stats.tx_aborted_errors++;
1139 }
1140 }
1141 }
1142}
1143
1144/* Increments the Rx error counters */
1145static void
1146smsc911x_rx_counterrors(struct net_device *dev, unsigned int rxstat)
1147{
1148 int crc_err = 0;
1149
Steve Glendinning785b6f92009-03-19 00:24:44 +00001150 if (unlikely(rxstat & RX_STS_ES_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001151 dev->stats.rx_errors++;
Steve Glendinning785b6f92009-03-19 00:24:44 +00001152 if (unlikely(rxstat & RX_STS_CRC_ERR_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001153 dev->stats.rx_crc_errors++;
1154 crc_err = 1;
1155 }
1156 }
1157 if (likely(!crc_err)) {
Steve Glendinning785b6f92009-03-19 00:24:44 +00001158 if (unlikely((rxstat & RX_STS_FRAME_TYPE_) &&
1159 (rxstat & RX_STS_LENGTH_ERR_)))
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001160 dev->stats.rx_length_errors++;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001161 if (rxstat & RX_STS_MCAST_)
1162 dev->stats.multicast++;
1163 }
1164}
1165
1166/* Quickly dumps bad packets */
1167static void
1168smsc911x_rx_fastforward(struct smsc911x_data *pdata, unsigned int pktbytes)
1169{
1170 unsigned int pktwords = (pktbytes + NET_IP_ALIGN + 3) >> 2;
1171
1172 if (likely(pktwords >= 4)) {
1173 unsigned int timeout = 500;
1174 unsigned int val;
1175 smsc911x_reg_write(pdata, RX_DP_CTRL, RX_DP_CTRL_RX_FFWD_);
1176 do {
1177 udelay(1);
1178 val = smsc911x_reg_read(pdata, RX_DP_CTRL);
Steve Glendinning8dacd542009-03-04 07:33:24 +00001179 } while ((val & RX_DP_CTRL_RX_FFWD_) && --timeout);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001180
1181 if (unlikely(timeout == 0))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001182 SMSC_WARN(pdata, hw, "Timed out waiting for "
1183 "RX FFWD to finish, RX_DP_CTRL: 0x%08X", val);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001184 } else {
1185 unsigned int temp;
1186 while (pktwords--)
1187 temp = smsc911x_reg_read(pdata, RX_DATA_FIFO);
1188 }
1189}
1190
1191/* NAPI poll function */
1192static int smsc911x_poll(struct napi_struct *napi, int budget)
1193{
1194 struct smsc911x_data *pdata =
1195 container_of(napi, struct smsc911x_data, napi);
1196 struct net_device *dev = pdata->dev;
1197 int npackets = 0;
1198
Sriramf88c5b92009-11-12 02:14:38 +00001199 while (npackets < budget) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001200 unsigned int pktlength;
1201 unsigned int pktwords;
1202 struct sk_buff *skb;
1203 unsigned int rxstat = smsc911x_rx_get_rxstatus(pdata);
1204
1205 if (!rxstat) {
1206 unsigned int temp;
1207 /* We processed all packets available. Tell NAPI it can
1208 * stop polling then re-enable rx interrupts */
1209 smsc911x_reg_write(pdata, INT_STS, INT_STS_RSFL_);
Ben Hutchings288379f2009-01-19 16:43:59 -08001210 napi_complete(napi);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001211 temp = smsc911x_reg_read(pdata, INT_EN);
1212 temp |= INT_EN_RSFL_EN_;
1213 smsc911x_reg_write(pdata, INT_EN, temp);
1214 break;
1215 }
1216
1217 /* Count packet for NAPI scheduling, even if it has an error.
1218 * Error packets still require cycles to discard */
1219 npackets++;
1220
1221 pktlength = ((rxstat & 0x3FFF0000) >> 16);
1222 pktwords = (pktlength + NET_IP_ALIGN + 3) >> 2;
1223 smsc911x_rx_counterrors(dev, rxstat);
1224
1225 if (unlikely(rxstat & RX_STS_ES_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001226 SMSC_WARN(pdata, rx_err,
1227 "Discarding packet with error bit set");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001228 /* Packet has an error, discard it and continue with
1229 * the next */
1230 smsc911x_rx_fastforward(pdata, pktwords);
1231 dev->stats.rx_dropped++;
1232 continue;
1233 }
1234
1235 skb = netdev_alloc_skb(dev, pktlength + NET_IP_ALIGN);
1236 if (unlikely(!skb)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001237 SMSC_WARN(pdata, rx_err,
1238 "Unable to allocate skb for rx packet");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001239 /* Drop the packet and stop this polling iteration */
1240 smsc911x_rx_fastforward(pdata, pktwords);
1241 dev->stats.rx_dropped++;
1242 break;
1243 }
1244
1245 skb->data = skb->head;
1246 skb_reset_tail_pointer(skb);
1247
1248 /* Align IP on 16B boundary */
1249 skb_reserve(skb, NET_IP_ALIGN);
1250 skb_put(skb, pktlength - 4);
Mathieu J. Poirierc326de82011-04-13 17:13:00 -07001251 pdata->ops->rx_readfifo(pdata,
1252 (unsigned int *)skb->head, pktwords);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001253 skb->protocol = eth_type_trans(skb, dev);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001254 skb_checksum_none_assert(skb);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001255 netif_receive_skb(skb);
1256
1257 /* Update counters */
1258 dev->stats.rx_packets++;
1259 dev->stats.rx_bytes += (pktlength - 4);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001260 }
1261
1262 /* Return total received packets */
1263 return npackets;
1264}
1265
1266/* Returns hash bit number for given MAC address
1267 * Example:
1268 * 01 00 5E 00 00 01 -> returns bit number 31 */
1269static unsigned int smsc911x_hash(char addr[ETH_ALEN])
1270{
1271 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
1272}
1273
1274static void smsc911x_rx_multicast_update(struct smsc911x_data *pdata)
1275{
1276 /* Performs the multicast & mac_cr update. This is called when
1277 * safe on the current hardware, and with the mac_lock held */
1278 unsigned int mac_cr;
1279
1280 SMSC_ASSERT_MAC_LOCK(pdata);
1281
1282 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1283 mac_cr |= pdata->set_bits_mask;
1284 mac_cr &= ~(pdata->clear_bits_mask);
1285 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1286 smsc911x_mac_write(pdata, HASHH, pdata->hashhi);
1287 smsc911x_mac_write(pdata, HASHL, pdata->hashlo);
Joe Perchesdffc6b22011-03-25 14:21:22 +00001288 SMSC_TRACE(pdata, hw, "maccr 0x%08X, HASHH 0x%08X, HASHL 0x%08X",
1289 mac_cr, pdata->hashhi, pdata->hashlo);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001290}
1291
1292static void smsc911x_rx_multicast_update_workaround(struct smsc911x_data *pdata)
1293{
1294 unsigned int mac_cr;
1295
1296 /* This function is only called for older LAN911x devices
1297 * (revA or revB), where MAC_CR, HASHH and HASHL should not
1298 * be modified during Rx - newer devices immediately update the
1299 * registers.
1300 *
1301 * This is called from interrupt context */
1302
1303 spin_lock(&pdata->mac_lock);
1304
1305 /* Check Rx has stopped */
1306 if (smsc911x_mac_read(pdata, MAC_CR) & MAC_CR_RXEN_)
Joe Perchesdffc6b22011-03-25 14:21:22 +00001307 SMSC_WARN(pdata, drv, "Rx not stopped");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001308
1309 /* Perform the update - safe to do now Rx has stopped */
1310 smsc911x_rx_multicast_update(pdata);
1311
1312 /* Re-enable Rx */
1313 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1314 mac_cr |= MAC_CR_RXEN_;
1315 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1316
1317 pdata->multicast_update_pending = 0;
1318
1319 spin_unlock(&pdata->mac_lock);
1320}
1321
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001322static int smsc911x_phy_disable_energy_detect(struct smsc911x_data *pdata)
1323{
1324 int rc = 0;
1325
1326 if (!pdata->phy_dev)
1327 return rc;
1328
1329 rc = phy_read(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS);
1330
1331 if (rc < 0) {
1332 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1333 return rc;
1334 }
1335
1336 /*
1337 * If energy is detected the PHY is already awake so is not necessary
1338 * to disable the energy detect power-down mode.
1339 */
1340 if ((rc & MII_LAN83C185_EDPWRDOWN) &&
1341 !(rc & MII_LAN83C185_ENERGYON)) {
1342 /* Disable energy detect mode for this SMSC Transceivers */
1343 rc = phy_write(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS,
1344 rc & (~MII_LAN83C185_EDPWRDOWN));
1345
1346 if (rc < 0) {
1347 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1348 return rc;
1349 }
1350
1351 mdelay(1);
1352 }
1353
1354 return 0;
1355}
1356
1357static int smsc911x_phy_enable_energy_detect(struct smsc911x_data *pdata)
1358{
1359 int rc = 0;
1360
1361 if (!pdata->phy_dev)
1362 return rc;
1363
1364 rc = phy_read(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS);
1365
1366 if (rc < 0) {
1367 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1368 return rc;
1369 }
1370
1371 /* Only enable if energy detect mode is already disabled */
1372 if (!(rc & MII_LAN83C185_EDPWRDOWN)) {
1373 mdelay(100);
1374 /* Enable energy detect mode for this SMSC Transceivers */
1375 rc = phy_write(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS,
1376 rc | MII_LAN83C185_EDPWRDOWN);
1377
1378 if (rc < 0) {
1379 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1380 return rc;
1381 }
1382
1383 mdelay(1);
1384 }
1385 return 0;
1386}
1387
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001388static int smsc911x_soft_reset(struct smsc911x_data *pdata)
1389{
1390 unsigned int timeout;
1391 unsigned int temp;
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001392 int ret;
1393
1394 /*
1395 * LAN9210/LAN9211/LAN9220/LAN9221 chips have an internal PHY that
1396 * are initialized in a Energy Detect Power-Down mode that prevents
1397 * the MAC chip to be software reseted. So we have to wakeup the PHY
1398 * before.
1399 */
1400 if (pdata->generation == 4) {
1401 ret = smsc911x_phy_disable_energy_detect(pdata);
1402
1403 if (ret) {
1404 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1405 return ret;
1406 }
1407 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001408
1409 /* Reset the LAN911x */
1410 smsc911x_reg_write(pdata, HW_CFG, HW_CFG_SRST_);
1411 timeout = 10;
1412 do {
1413 udelay(10);
1414 temp = smsc911x_reg_read(pdata, HW_CFG);
1415 } while ((--timeout) && (temp & HW_CFG_SRST_));
1416
1417 if (unlikely(temp & HW_CFG_SRST_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001418 SMSC_WARN(pdata, drv, "Failed to complete reset");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001419 return -EIO;
1420 }
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001421
1422 if (pdata->generation == 4) {
1423 ret = smsc911x_phy_enable_energy_detect(pdata);
1424
1425 if (ret) {
1426 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1427 return ret;
1428 }
1429 }
1430
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001431 return 0;
1432}
1433
1434/* Sets the device MAC address to dev_addr, called with mac_lock held */
1435static void
Steve Glendinning225ddf42009-03-19 00:24:46 +00001436smsc911x_set_hw_mac_address(struct smsc911x_data *pdata, u8 dev_addr[6])
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001437{
1438 u32 mac_high16 = (dev_addr[5] << 8) | dev_addr[4];
1439 u32 mac_low32 = (dev_addr[3] << 24) | (dev_addr[2] << 16) |
1440 (dev_addr[1] << 8) | dev_addr[0];
1441
1442 SMSC_ASSERT_MAC_LOCK(pdata);
1443
1444 smsc911x_mac_write(pdata, ADDRH, mac_high16);
1445 smsc911x_mac_write(pdata, ADDRL, mac_low32);
1446}
1447
1448static int smsc911x_open(struct net_device *dev)
1449{
1450 struct smsc911x_data *pdata = netdev_priv(dev);
1451 unsigned int timeout;
1452 unsigned int temp;
1453 unsigned int intcfg;
1454
1455 /* if the phy is not yet registered, retry later*/
1456 if (!pdata->phy_dev) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001457 SMSC_WARN(pdata, hw, "phy_dev is NULL");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001458 return -EAGAIN;
1459 }
1460
1461 if (!is_valid_ether_addr(dev->dev_addr)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001462 SMSC_WARN(pdata, hw, "dev_addr is not a valid MAC address");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001463 return -EADDRNOTAVAIL;
1464 }
1465
1466 /* Reset the LAN911x */
1467 if (smsc911x_soft_reset(pdata)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001468 SMSC_WARN(pdata, hw, "soft reset failed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001469 return -EIO;
1470 }
1471
1472 smsc911x_reg_write(pdata, HW_CFG, 0x00050000);
1473 smsc911x_reg_write(pdata, AFC_CFG, 0x006E3740);
1474
Göran Weinholtf277e652011-03-02 04:07:21 +00001475 /* Increase the legal frame size of VLAN tagged frames to 1522 bytes */
1476 spin_lock_irq(&pdata->mac_lock);
1477 smsc911x_mac_write(pdata, VLAN1, ETH_P_8021Q);
1478 spin_unlock_irq(&pdata->mac_lock);
1479
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001480 /* Make sure EEPROM has finished loading before setting GPIO_CFG */
1481 timeout = 50;
Steve Glendinningf7efb6c2009-03-04 07:33:25 +00001482 while ((smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) &&
1483 --timeout) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001484 udelay(10);
1485 }
1486
1487 if (unlikely(timeout == 0))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001488 SMSC_WARN(pdata, ifup,
1489 "Timed out waiting for EEPROM busy bit to clear");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001490
1491 smsc911x_reg_write(pdata, GPIO_CFG, 0x70070000);
1492
1493 /* The soft reset above cleared the device's MAC address,
1494 * restore it from local copy (set in probe) */
1495 spin_lock_irq(&pdata->mac_lock);
Steve Glendinning225ddf42009-03-19 00:24:46 +00001496 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001497 spin_unlock_irq(&pdata->mac_lock);
1498
1499 /* Initialise irqs, but leave all sources disabled */
1500 smsc911x_reg_write(pdata, INT_EN, 0);
1501 smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
1502
1503 /* Set interrupt deassertion to 100uS */
1504 intcfg = ((10 << 24) | INT_CFG_IRQ_EN_);
1505
Steve Glendinning2107fb82008-11-05 00:35:38 +00001506 if (pdata->config.irq_polarity) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001507 SMSC_TRACE(pdata, ifup, "irq polarity: active high");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001508 intcfg |= INT_CFG_IRQ_POL_;
1509 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001510 SMSC_TRACE(pdata, ifup, "irq polarity: active low");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001511 }
1512
Steve Glendinning2107fb82008-11-05 00:35:38 +00001513 if (pdata->config.irq_type) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001514 SMSC_TRACE(pdata, ifup, "irq type: push-pull");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001515 intcfg |= INT_CFG_IRQ_TYPE_;
1516 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001517 SMSC_TRACE(pdata, ifup, "irq type: open drain");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001518 }
1519
1520 smsc911x_reg_write(pdata, INT_CFG, intcfg);
1521
Joe Perchesdffc6b22011-03-25 14:21:22 +00001522 SMSC_TRACE(pdata, ifup, "Testing irq handler using IRQ %d", dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001523 pdata->software_irq_signal = 0;
1524 smp_wmb();
1525
1526 temp = smsc911x_reg_read(pdata, INT_EN);
1527 temp |= INT_EN_SW_INT_EN_;
1528 smsc911x_reg_write(pdata, INT_EN, temp);
1529
1530 timeout = 1000;
1531 while (timeout--) {
1532 if (pdata->software_irq_signal)
1533 break;
1534 msleep(1);
1535 }
1536
1537 if (!pdata->software_irq_signal) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001538 netdev_warn(dev, "ISR failed signaling test (IRQ %d)\n",
1539 dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001540 return -ENODEV;
1541 }
Joe Perchesdffc6b22011-03-25 14:21:22 +00001542 SMSC_TRACE(pdata, ifup, "IRQ handler passed test using IRQ %d",
1543 dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001544
Joe Perchesdffc6b22011-03-25 14:21:22 +00001545 netdev_info(dev, "SMSC911x/921x identified at %#08lx, IRQ: %d\n",
1546 (unsigned long)pdata->ioaddr, dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001547
Steve Glendinning44c1d6f2009-03-18 23:37:18 -07001548 /* Reset the last known duplex and carrier */
1549 pdata->last_duplex = -1;
1550 pdata->last_carrier = -1;
1551
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001552 /* Bring the PHY up */
1553 phy_start(pdata->phy_dev);
1554
1555 temp = smsc911x_reg_read(pdata, HW_CFG);
1556 /* Preserve TX FIFO size and external PHY configuration */
1557 temp &= (HW_CFG_TX_FIF_SZ_|0x00000FFF);
1558 temp |= HW_CFG_SF_;
1559 smsc911x_reg_write(pdata, HW_CFG, temp);
1560
1561 temp = smsc911x_reg_read(pdata, FIFO_INT);
1562 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1563 temp &= ~(FIFO_INT_RX_STS_LEVEL_);
1564 smsc911x_reg_write(pdata, FIFO_INT, temp);
1565
1566 /* set RX Data offset to 2 bytes for alignment */
1567 smsc911x_reg_write(pdata, RX_CFG, (2 << 8));
1568
1569 /* enable NAPI polling before enabling RX interrupts */
1570 napi_enable(&pdata->napi);
1571
1572 temp = smsc911x_reg_read(pdata, INT_EN);
Steve Glendinning1373c0f2009-01-26 21:33:16 -08001573 temp |= (INT_EN_TDFA_EN_ | INT_EN_RSFL_EN_ | INT_EN_RXSTOP_INT_EN_);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001574 smsc911x_reg_write(pdata, INT_EN, temp);
1575
1576 spin_lock_irq(&pdata->mac_lock);
1577 temp = smsc911x_mac_read(pdata, MAC_CR);
1578 temp |= (MAC_CR_TXEN_ | MAC_CR_RXEN_ | MAC_CR_HBDIS_);
1579 smsc911x_mac_write(pdata, MAC_CR, temp);
1580 spin_unlock_irq(&pdata->mac_lock);
1581
1582 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
1583
1584 netif_start_queue(dev);
1585 return 0;
1586}
1587
1588/* Entry point for stopping the interface */
1589static int smsc911x_stop(struct net_device *dev)
1590{
1591 struct smsc911x_data *pdata = netdev_priv(dev);
1592 unsigned int temp;
1593
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001594 /* Disable all device interrupts */
1595 temp = smsc911x_reg_read(pdata, INT_CFG);
1596 temp &= ~INT_CFG_IRQ_EN_;
1597 smsc911x_reg_write(pdata, INT_CFG, temp);
1598
1599 /* Stop Tx and Rx polling */
1600 netif_stop_queue(dev);
1601 napi_disable(&pdata->napi);
1602
1603 /* At this point all Rx and Tx activity is stopped */
1604 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1605 smsc911x_tx_update_txcounters(dev);
1606
1607 /* Bring the PHY down */
Steve Glendinningdd045192008-12-25 16:40:19 -08001608 if (pdata->phy_dev)
1609 phy_stop(pdata->phy_dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001610
Joe Perchesdffc6b22011-03-25 14:21:22 +00001611 SMSC_TRACE(pdata, ifdown, "Interface stopped");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001612 return 0;
1613}
1614
1615/* Entry point for transmitting a packet */
1616static int smsc911x_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1617{
1618 struct smsc911x_data *pdata = netdev_priv(dev);
1619 unsigned int freespace;
1620 unsigned int tx_cmd_a;
1621 unsigned int tx_cmd_b;
1622 unsigned int temp;
1623 u32 wrsz;
1624 ulong bufp;
1625
1626 freespace = smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TDFREE_;
1627
1628 if (unlikely(freespace < TX_FIFO_LOW_THRESHOLD))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001629 SMSC_WARN(pdata, tx_err,
1630 "Tx data fifo low, space available: %d", freespace);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001631
1632 /* Word alignment adjustment */
1633 tx_cmd_a = (u32)((ulong)skb->data & 0x03) << 16;
1634 tx_cmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
1635 tx_cmd_a |= (unsigned int)skb->len;
1636
1637 tx_cmd_b = ((unsigned int)skb->len) << 16;
1638 tx_cmd_b |= (unsigned int)skb->len;
1639
1640 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_a);
1641 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_b);
1642
1643 bufp = (ulong)skb->data & (~0x3);
1644 wrsz = (u32)skb->len + 3;
1645 wrsz += (u32)((ulong)skb->data & 0x3);
1646 wrsz >>= 2;
1647
Mathieu J. Poirierc326de82011-04-13 17:13:00 -07001648 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001649 freespace -= (skb->len + 32);
Richard Cochran8c0069a2011-06-19 21:51:30 +00001650 skb_tx_timestamp(skb);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001651 dev_kfree_skb(skb);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001652
1653 if (unlikely(smsc911x_tx_get_txstatcount(pdata) >= 30))
1654 smsc911x_tx_update_txcounters(dev);
1655
1656 if (freespace < TX_FIFO_LOW_THRESHOLD) {
1657 netif_stop_queue(dev);
1658 temp = smsc911x_reg_read(pdata, FIFO_INT);
1659 temp &= 0x00FFFFFF;
1660 temp |= 0x32000000;
1661 smsc911x_reg_write(pdata, FIFO_INT, temp);
1662 }
1663
1664 return NETDEV_TX_OK;
1665}
1666
1667/* Entry point for getting status counters */
1668static struct net_device_stats *smsc911x_get_stats(struct net_device *dev)
1669{
1670 struct smsc911x_data *pdata = netdev_priv(dev);
1671 smsc911x_tx_update_txcounters(dev);
1672 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1673 return &dev->stats;
1674}
1675
1676/* Entry point for setting addressing modes */
1677static void smsc911x_set_multicast_list(struct net_device *dev)
1678{
1679 struct smsc911x_data *pdata = netdev_priv(dev);
1680 unsigned long flags;
1681
1682 if (dev->flags & IFF_PROMISC) {
1683 /* Enabling promiscuous mode */
1684 pdata->set_bits_mask = MAC_CR_PRMS_;
1685 pdata->clear_bits_mask = (MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1686 pdata->hashhi = 0;
1687 pdata->hashlo = 0;
1688 } else if (dev->flags & IFF_ALLMULTI) {
1689 /* Enabling all multicast mode */
1690 pdata->set_bits_mask = MAC_CR_MCPAS_;
1691 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_HPFILT_);
1692 pdata->hashhi = 0;
1693 pdata->hashlo = 0;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001694 } else if (!netdev_mc_empty(dev)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001695 /* Enabling specific multicast addresses */
1696 unsigned int hash_high = 0;
1697 unsigned int hash_low = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001698 struct netdev_hw_addr *ha;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001699
1700 pdata->set_bits_mask = MAC_CR_HPFILT_;
1701 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_MCPAS_);
1702
Jiri Pirko22bedad2010-04-01 21:22:57 +00001703 netdev_for_each_mc_addr(ha, dev) {
1704 unsigned int bitnum = smsc911x_hash(ha->addr);
Jiri Pirko2a0d18f2010-02-17 23:22:38 +00001705 unsigned int mask = 0x01 << (bitnum & 0x1F);
1706
1707 if (bitnum & 0x20)
1708 hash_high |= mask;
1709 else
1710 hash_low |= mask;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001711 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001712
1713 pdata->hashhi = hash_high;
1714 pdata->hashlo = hash_low;
1715 } else {
1716 /* Enabling local MAC address only */
1717 pdata->set_bits_mask = 0;
1718 pdata->clear_bits_mask =
1719 (MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1720 pdata->hashhi = 0;
1721 pdata->hashlo = 0;
1722 }
1723
1724 spin_lock_irqsave(&pdata->mac_lock, flags);
1725
1726 if (pdata->generation <= 1) {
1727 /* Older hardware revision - cannot change these flags while
1728 * receiving data */
1729 if (!pdata->multicast_update_pending) {
1730 unsigned int temp;
Joe Perchesdffc6b22011-03-25 14:21:22 +00001731 SMSC_TRACE(pdata, hw, "scheduling mcast update");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001732 pdata->multicast_update_pending = 1;
1733
1734 /* Request the hardware to stop, then perform the
1735 * update when we get an RX_STOP interrupt */
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001736 temp = smsc911x_mac_read(pdata, MAC_CR);
1737 temp &= ~(MAC_CR_RXEN_);
1738 smsc911x_mac_write(pdata, MAC_CR, temp);
1739 } else {
1740 /* There is another update pending, this should now
1741 * use the newer values */
1742 }
1743 } else {
1744 /* Newer hardware revision - can write immediately */
1745 smsc911x_rx_multicast_update(pdata);
1746 }
1747
1748 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1749}
1750
1751static irqreturn_t smsc911x_irqhandler(int irq, void *dev_id)
1752{
1753 struct net_device *dev = dev_id;
1754 struct smsc911x_data *pdata = netdev_priv(dev);
1755 u32 intsts = smsc911x_reg_read(pdata, INT_STS);
1756 u32 inten = smsc911x_reg_read(pdata, INT_EN);
1757 int serviced = IRQ_NONE;
1758 u32 temp;
1759
1760 if (unlikely(intsts & inten & INT_STS_SW_INT_)) {
1761 temp = smsc911x_reg_read(pdata, INT_EN);
1762 temp &= (~INT_EN_SW_INT_EN_);
1763 smsc911x_reg_write(pdata, INT_EN, temp);
1764 smsc911x_reg_write(pdata, INT_STS, INT_STS_SW_INT_);
1765 pdata->software_irq_signal = 1;
1766 smp_wmb();
1767 serviced = IRQ_HANDLED;
1768 }
1769
1770 if (unlikely(intsts & inten & INT_STS_RXSTOP_INT_)) {
1771 /* Called when there is a multicast update scheduled and
1772 * it is now safe to complete the update */
Joe Perchesdffc6b22011-03-25 14:21:22 +00001773 SMSC_TRACE(pdata, intr, "RX Stop interrupt");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001774 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXSTOP_INT_);
Steve Glendinning1373c0f2009-01-26 21:33:16 -08001775 if (pdata->multicast_update_pending)
1776 smsc911x_rx_multicast_update_workaround(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001777 serviced = IRQ_HANDLED;
1778 }
1779
1780 if (intsts & inten & INT_STS_TDFA_) {
1781 temp = smsc911x_reg_read(pdata, FIFO_INT);
1782 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1783 smsc911x_reg_write(pdata, FIFO_INT, temp);
1784 smsc911x_reg_write(pdata, INT_STS, INT_STS_TDFA_);
1785 netif_wake_queue(dev);
1786 serviced = IRQ_HANDLED;
1787 }
1788
1789 if (unlikely(intsts & inten & INT_STS_RXE_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001790 SMSC_TRACE(pdata, intr, "RX Error interrupt");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001791 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXE_);
1792 serviced = IRQ_HANDLED;
1793 }
1794
1795 if (likely(intsts & inten & INT_STS_RSFL_)) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001796 if (likely(napi_schedule_prep(&pdata->napi))) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001797 /* Disable Rx interrupts */
1798 temp = smsc911x_reg_read(pdata, INT_EN);
1799 temp &= (~INT_EN_RSFL_EN_);
1800 smsc911x_reg_write(pdata, INT_EN, temp);
1801 /* Schedule a NAPI poll */
Ben Hutchings288379f2009-01-19 16:43:59 -08001802 __napi_schedule(&pdata->napi);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001803 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001804 SMSC_WARN(pdata, rx_err, "napi_schedule_prep failed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001805 }
1806 serviced = IRQ_HANDLED;
1807 }
1808
1809 return serviced;
1810}
1811
1812#ifdef CONFIG_NET_POLL_CONTROLLER
Steve Glendinning1757ab22008-12-12 22:31:16 -08001813static void smsc911x_poll_controller(struct net_device *dev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001814{
1815 disable_irq(dev->irq);
1816 smsc911x_irqhandler(0, dev);
1817 enable_irq(dev->irq);
1818}
1819#endif /* CONFIG_NET_POLL_CONTROLLER */
1820
Steve Glendinning225ddf42009-03-19 00:24:46 +00001821static int smsc911x_set_mac_address(struct net_device *dev, void *p)
1822{
1823 struct smsc911x_data *pdata = netdev_priv(dev);
1824 struct sockaddr *addr = p;
1825
1826 /* On older hardware revisions we cannot change the mac address
1827 * registers while receiving data. Newer devices can safely change
1828 * this at any time. */
1829 if (pdata->generation <= 1 && netif_running(dev))
1830 return -EBUSY;
1831
1832 if (!is_valid_ether_addr(addr->sa_data))
1833 return -EADDRNOTAVAIL;
1834
1835 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
1836
1837 spin_lock_irq(&pdata->mac_lock);
1838 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
1839 spin_unlock_irq(&pdata->mac_lock);
1840
Joe Perchesdffc6b22011-03-25 14:21:22 +00001841 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
Steve Glendinning225ddf42009-03-19 00:24:46 +00001842
1843 return 0;
1844}
1845
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001846/* Standard ioctls for mii-tool */
1847static int smsc911x_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1848{
1849 struct smsc911x_data *pdata = netdev_priv(dev);
1850
1851 if (!netif_running(dev) || !pdata->phy_dev)
1852 return -EINVAL;
1853
Richard Cochran28b04112010-07-17 08:48:55 +00001854 return phy_mii_ioctl(pdata->phy_dev, ifr, cmd);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001855}
1856
1857static int
1858smsc911x_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1859{
1860 struct smsc911x_data *pdata = netdev_priv(dev);
1861
1862 cmd->maxtxpkt = 1;
1863 cmd->maxrxpkt = 1;
1864 return phy_ethtool_gset(pdata->phy_dev, cmd);
1865}
1866
1867static int
1868smsc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1869{
1870 struct smsc911x_data *pdata = netdev_priv(dev);
1871
1872 return phy_ethtool_sset(pdata->phy_dev, cmd);
1873}
1874
1875static void smsc911x_ethtool_getdrvinfo(struct net_device *dev,
1876 struct ethtool_drvinfo *info)
1877{
1878 strlcpy(info->driver, SMSC_CHIPNAME, sizeof(info->driver));
1879 strlcpy(info->version, SMSC_DRV_VERSION, sizeof(info->version));
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08001880 strlcpy(info->bus_info, dev_name(dev->dev.parent),
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001881 sizeof(info->bus_info));
1882}
1883
1884static int smsc911x_ethtool_nwayreset(struct net_device *dev)
1885{
1886 struct smsc911x_data *pdata = netdev_priv(dev);
1887
1888 return phy_start_aneg(pdata->phy_dev);
1889}
1890
1891static u32 smsc911x_ethtool_getmsglevel(struct net_device *dev)
1892{
1893 struct smsc911x_data *pdata = netdev_priv(dev);
1894 return pdata->msg_enable;
1895}
1896
1897static void smsc911x_ethtool_setmsglevel(struct net_device *dev, u32 level)
1898{
1899 struct smsc911x_data *pdata = netdev_priv(dev);
1900 pdata->msg_enable = level;
1901}
1902
1903static int smsc911x_ethtool_getregslen(struct net_device *dev)
1904{
1905 return (((E2P_DATA - ID_REV) / 4 + 1) + (WUCSR - MAC_CR) + 1 + 32) *
1906 sizeof(u32);
1907}
1908
1909static void
1910smsc911x_ethtool_getregs(struct net_device *dev, struct ethtool_regs *regs,
1911 void *buf)
1912{
1913 struct smsc911x_data *pdata = netdev_priv(dev);
1914 struct phy_device *phy_dev = pdata->phy_dev;
1915 unsigned long flags;
1916 unsigned int i;
1917 unsigned int j = 0;
1918 u32 *data = buf;
1919
1920 regs->version = pdata->idrev;
1921 for (i = ID_REV; i <= E2P_DATA; i += (sizeof(u32)))
1922 data[j++] = smsc911x_reg_read(pdata, i);
1923
1924 for (i = MAC_CR; i <= WUCSR; i++) {
1925 spin_lock_irqsave(&pdata->mac_lock, flags);
1926 data[j++] = smsc911x_mac_read(pdata, i);
1927 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1928 }
1929
1930 for (i = 0; i <= 31; i++)
1931 data[j++] = smsc911x_mii_read(phy_dev->bus, phy_dev->addr, i);
1932}
1933
1934static void smsc911x_eeprom_enable_access(struct smsc911x_data *pdata)
1935{
1936 unsigned int temp = smsc911x_reg_read(pdata, GPIO_CFG);
1937 temp &= ~GPIO_CFG_EEPR_EN_;
1938 smsc911x_reg_write(pdata, GPIO_CFG, temp);
1939 msleep(1);
1940}
1941
1942static int smsc911x_eeprom_send_cmd(struct smsc911x_data *pdata, u32 op)
1943{
1944 int timeout = 100;
1945 u32 e2cmd;
1946
Joe Perchesdffc6b22011-03-25 14:21:22 +00001947 SMSC_TRACE(pdata, drv, "op 0x%08x", op);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001948 if (smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001949 SMSC_WARN(pdata, drv, "Busy at start");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001950 return -EBUSY;
1951 }
1952
1953 e2cmd = op | E2P_CMD_EPC_BUSY_;
1954 smsc911x_reg_write(pdata, E2P_CMD, e2cmd);
1955
1956 do {
1957 msleep(1);
1958 e2cmd = smsc911x_reg_read(pdata, E2P_CMD);
Roel Kluin2cf0dbe2009-02-20 00:52:19 -08001959 } while ((e2cmd & E2P_CMD_EPC_BUSY_) && (--timeout));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001960
1961 if (!timeout) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001962 SMSC_TRACE(pdata, drv, "TIMED OUT");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001963 return -EAGAIN;
1964 }
1965
1966 if (e2cmd & E2P_CMD_EPC_TIMEOUT_) {
David S. Miller1c01a802011-04-11 13:44:25 -07001967 SMSC_TRACE(pdata, drv, "Error occurred during eeprom operation");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001968 return -EINVAL;
1969 }
1970
1971 return 0;
1972}
1973
1974static int smsc911x_eeprom_read_location(struct smsc911x_data *pdata,
1975 u8 address, u8 *data)
1976{
1977 u32 op = E2P_CMD_EPC_CMD_READ_ | address;
1978 int ret;
1979
Joe Perchesdffc6b22011-03-25 14:21:22 +00001980 SMSC_TRACE(pdata, drv, "address 0x%x", address);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001981 ret = smsc911x_eeprom_send_cmd(pdata, op);
1982
1983 if (!ret)
1984 data[address] = smsc911x_reg_read(pdata, E2P_DATA);
1985
1986 return ret;
1987}
1988
1989static int smsc911x_eeprom_write_location(struct smsc911x_data *pdata,
1990 u8 address, u8 data)
1991{
1992 u32 op = E2P_CMD_EPC_CMD_ERASE_ | address;
Steve Glendinning58add9f2009-03-26 07:14:36 +00001993 u32 temp;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001994 int ret;
1995
Joe Perchesdffc6b22011-03-25 14:21:22 +00001996 SMSC_TRACE(pdata, drv, "address 0x%x, data 0x%x", address, data);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001997 ret = smsc911x_eeprom_send_cmd(pdata, op);
1998
1999 if (!ret) {
2000 op = E2P_CMD_EPC_CMD_WRITE_ | address;
2001 smsc911x_reg_write(pdata, E2P_DATA, (u32)data);
Steve Glendinning58add9f2009-03-26 07:14:36 +00002002
2003 /* Workaround for hardware read-after-write restriction */
2004 temp = smsc911x_reg_read(pdata, BYTE_TEST);
2005
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002006 ret = smsc911x_eeprom_send_cmd(pdata, op);
2007 }
2008
2009 return ret;
2010}
2011
2012static int smsc911x_ethtool_get_eeprom_len(struct net_device *dev)
2013{
2014 return SMSC911X_EEPROM_SIZE;
2015}
2016
2017static int smsc911x_ethtool_get_eeprom(struct net_device *dev,
2018 struct ethtool_eeprom *eeprom, u8 *data)
2019{
2020 struct smsc911x_data *pdata = netdev_priv(dev);
2021 u8 eeprom_data[SMSC911X_EEPROM_SIZE];
2022 int len;
2023 int i;
2024
2025 smsc911x_eeprom_enable_access(pdata);
2026
2027 len = min(eeprom->len, SMSC911X_EEPROM_SIZE);
2028 for (i = 0; i < len; i++) {
2029 int ret = smsc911x_eeprom_read_location(pdata, i, eeprom_data);
2030 if (ret < 0) {
2031 eeprom->len = 0;
2032 return ret;
2033 }
2034 }
2035
2036 memcpy(data, &eeprom_data[eeprom->offset], len);
2037 eeprom->len = len;
2038 return 0;
2039}
2040
2041static int smsc911x_ethtool_set_eeprom(struct net_device *dev,
2042 struct ethtool_eeprom *eeprom, u8 *data)
2043{
2044 int ret;
2045 struct smsc911x_data *pdata = netdev_priv(dev);
2046
2047 smsc911x_eeprom_enable_access(pdata);
2048 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWEN_);
2049 ret = smsc911x_eeprom_write_location(pdata, eeprom->offset, *data);
2050 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWDS_);
2051
2052 /* Single byte write, according to man page */
2053 eeprom->len = 1;
2054
2055 return ret;
2056}
2057
Steve Glendinningcb5b04f2008-12-25 16:41:09 -08002058static const struct ethtool_ops smsc911x_ethtool_ops = {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002059 .get_settings = smsc911x_ethtool_getsettings,
2060 .set_settings = smsc911x_ethtool_setsettings,
2061 .get_link = ethtool_op_get_link,
2062 .get_drvinfo = smsc911x_ethtool_getdrvinfo,
2063 .nway_reset = smsc911x_ethtool_nwayreset,
2064 .get_msglevel = smsc911x_ethtool_getmsglevel,
2065 .set_msglevel = smsc911x_ethtool_setmsglevel,
2066 .get_regs_len = smsc911x_ethtool_getregslen,
2067 .get_regs = smsc911x_ethtool_getregs,
2068 .get_eeprom_len = smsc911x_ethtool_get_eeprom_len,
2069 .get_eeprom = smsc911x_ethtool_get_eeprom,
2070 .set_eeprom = smsc911x_ethtool_set_eeprom,
2071};
2072
Steve Glendinning631b7562008-12-25 16:40:47 -08002073static const struct net_device_ops smsc911x_netdev_ops = {
2074 .ndo_open = smsc911x_open,
2075 .ndo_stop = smsc911x_stop,
2076 .ndo_start_xmit = smsc911x_hard_start_xmit,
2077 .ndo_get_stats = smsc911x_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002078 .ndo_set_rx_mode = smsc911x_set_multicast_list,
Steve Glendinning631b7562008-12-25 16:40:47 -08002079 .ndo_do_ioctl = smsc911x_do_ioctl,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00002080 .ndo_change_mtu = eth_change_mtu,
Steve Glendinning631b7562008-12-25 16:40:47 -08002081 .ndo_validate_addr = eth_validate_addr,
Steve Glendinning225ddf42009-03-19 00:24:46 +00002082 .ndo_set_mac_address = smsc911x_set_mac_address,
Steve Glendinning631b7562008-12-25 16:40:47 -08002083#ifdef CONFIG_NET_POLL_CONTROLLER
2084 .ndo_poll_controller = smsc911x_poll_controller,
2085#endif
2086};
2087
Steve Glendinning31f45742009-01-27 06:51:12 +00002088/* copies the current mac address from hardware to dev->dev_addr */
2089static void __devinit smsc911x_read_mac_address(struct net_device *dev)
2090{
2091 struct smsc911x_data *pdata = netdev_priv(dev);
2092 u32 mac_high16 = smsc911x_mac_read(pdata, ADDRH);
2093 u32 mac_low32 = smsc911x_mac_read(pdata, ADDRL);
2094
2095 dev->dev_addr[0] = (u8)(mac_low32);
2096 dev->dev_addr[1] = (u8)(mac_low32 >> 8);
2097 dev->dev_addr[2] = (u8)(mac_low32 >> 16);
2098 dev->dev_addr[3] = (u8)(mac_low32 >> 24);
2099 dev->dev_addr[4] = (u8)(mac_high16);
2100 dev->dev_addr[5] = (u8)(mac_high16 >> 8);
2101}
2102
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002103/* Initializing private device structures, only called from probe */
2104static int __devinit smsc911x_init(struct net_device *dev)
2105{
2106 struct smsc911x_data *pdata = netdev_priv(dev);
2107 unsigned int byte_test;
Robert Marklund3ac35462011-10-25 22:05:43 +00002108 unsigned int to = 100;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002109
Joe Perchesdffc6b22011-03-25 14:21:22 +00002110 SMSC_TRACE(pdata, probe, "Driver Parameters:");
2111 SMSC_TRACE(pdata, probe, "LAN base: 0x%08lX",
2112 (unsigned long)pdata->ioaddr);
2113 SMSC_TRACE(pdata, probe, "IRQ: %d", dev->irq);
2114 SMSC_TRACE(pdata, probe, "PHY will be autodetected.");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002115
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002116 spin_lock_init(&pdata->dev_lock);
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002117 spin_lock_init(&pdata->mac_lock);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002118
2119 if (pdata->ioaddr == 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002120 SMSC_WARN(pdata, probe, "pdata->ioaddr: 0x00000000");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002121 return -ENODEV;
2122 }
2123
Robert Marklund3ac35462011-10-25 22:05:43 +00002124 /*
2125 * poll the READY bit in PMT_CTRL. Any other access to the device is
2126 * forbidden while this bit isn't set. Try for 100ms
2127 */
2128 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & PMT_CTRL_READY_) && --to)
2129 udelay(1000);
2130 if (to == 0) {
2131 pr_err("Device not READY in 100ms aborting\n");
2132 return -ENODEV;
2133 }
2134
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002135 /* Check byte ordering */
2136 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002137 SMSC_TRACE(pdata, probe, "BYTE_TEST: 0x%08X", byte_test);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002138 if (byte_test == 0x43218765) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002139 SMSC_TRACE(pdata, probe, "BYTE_TEST looks swapped, "
2140 "applying WORD_SWAP");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002141 smsc911x_reg_write(pdata, WORD_SWAP, 0xffffffff);
2142
2143 /* 1 dummy read of BYTE_TEST is needed after a write to
2144 * WORD_SWAP before its contents are valid */
2145 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2146
2147 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2148 }
2149
2150 if (byte_test != 0x87654321) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002151 SMSC_WARN(pdata, drv, "BYTE_TEST: 0x%08X", byte_test);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002152 if (((byte_test >> 16) & 0xFFFF) == (byte_test & 0xFFFF)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002153 SMSC_WARN(pdata, probe,
2154 "top 16 bits equal to bottom 16 bits");
2155 SMSC_TRACE(pdata, probe,
2156 "This may mean the chip is set "
2157 "for 32 bit while the bus is reading 16 bit");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002158 }
2159 return -ENODEV;
2160 }
2161
2162 /* Default generation to zero (all workarounds apply) */
2163 pdata->generation = 0;
2164
2165 pdata->idrev = smsc911x_reg_read(pdata, ID_REV);
2166 switch (pdata->idrev & 0xFFFF0000) {
2167 case 0x01180000:
2168 case 0x01170000:
2169 case 0x01160000:
2170 case 0x01150000:
David S. Miller1805b2f2011-10-24 18:18:09 -04002171 case 0x218A0000:
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002172 /* LAN911[5678] family */
2173 pdata->generation = pdata->idrev & 0x0000FFFF;
2174 break;
2175
2176 case 0x118A0000:
2177 case 0x117A0000:
2178 case 0x116A0000:
2179 case 0x115A0000:
2180 /* LAN921[5678] family */
2181 pdata->generation = 3;
2182 break;
2183
2184 case 0x92100000:
2185 case 0x92110000:
2186 case 0x92200000:
2187 case 0x92210000:
2188 /* LAN9210/LAN9211/LAN9220/LAN9221 */
2189 pdata->generation = 4;
2190 break;
2191
2192 default:
Joe Perchesdffc6b22011-03-25 14:21:22 +00002193 SMSC_WARN(pdata, probe, "LAN911x not identified, idrev: 0x%08X",
2194 pdata->idrev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002195 return -ENODEV;
2196 }
2197
Joe Perchesdffc6b22011-03-25 14:21:22 +00002198 SMSC_TRACE(pdata, probe,
2199 "LAN911x identified, idrev: 0x%08X, generation: %d",
2200 pdata->idrev, pdata->generation);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002201
2202 if (pdata->generation == 0)
Joe Perchesdffc6b22011-03-25 14:21:22 +00002203 SMSC_WARN(pdata, probe,
2204 "This driver is not intended for this chip revision");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002205
Steve Glendinning31f45742009-01-27 06:51:12 +00002206 /* workaround for platforms without an eeprom, where the mac address
2207 * is stored elsewhere and set by the bootloader. This saves the
2208 * mac address before resetting the device */
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002209 if (pdata->config.flags & SMSC911X_SAVE_MAC_ADDRESS) {
2210 spin_lock_irq(&pdata->mac_lock);
Steve Glendinning31f45742009-01-27 06:51:12 +00002211 smsc911x_read_mac_address(dev);
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002212 spin_unlock_irq(&pdata->mac_lock);
2213 }
Steve Glendinning31f45742009-01-27 06:51:12 +00002214
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002215 /* Reset the LAN911x */
2216 if (smsc911x_soft_reset(pdata))
2217 return -ENODEV;
2218
2219 /* Disable all interrupt sources until we bring the device up */
2220 smsc911x_reg_write(pdata, INT_EN, 0);
2221
2222 ether_setup(dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002223 dev->flags |= IFF_MULTICAST;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002224 netif_napi_add(dev, &pdata->napi, smsc911x_poll, SMSC_NAPI_WEIGHT);
Steve Glendinning631b7562008-12-25 16:40:47 -08002225 dev->netdev_ops = &smsc911x_netdev_ops;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002226 dev->ethtool_ops = &smsc911x_ethtool_ops;
2227
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002228 return 0;
2229}
2230
2231static int __devexit smsc911x_drv_remove(struct platform_device *pdev)
2232{
2233 struct net_device *dev;
2234 struct smsc911x_data *pdata;
2235 struct resource *res;
2236
2237 dev = platform_get_drvdata(pdev);
2238 BUG_ON(!dev);
2239 pdata = netdev_priv(dev);
2240 BUG_ON(!pdata);
2241 BUG_ON(!pdata->ioaddr);
2242 BUG_ON(!pdata->phy_dev);
2243
Joe Perchesdffc6b22011-03-25 14:21:22 +00002244 SMSC_TRACE(pdata, ifdown, "Stopping driver");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002245
2246 phy_disconnect(pdata->phy_dev);
2247 pdata->phy_dev = NULL;
2248 mdiobus_unregister(pdata->mii_bus);
2249 mdiobus_free(pdata->mii_bus);
2250
2251 platform_set_drvdata(pdev, NULL);
2252 unregister_netdev(dev);
2253 free_irq(dev->irq, dev);
2254 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2255 "smsc911x-memory");
2256 if (!res)
Steve Glendinningd4522732008-12-25 16:44:01 -08002257 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002258
Julia Lawall39424532009-07-04 11:31:47 +00002259 release_mem_region(res->start, resource_size(res));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002260
2261 iounmap(pdata->ioaddr);
2262
Robert Marklundc7e963f2011-11-24 01:03:07 +00002263 (void)smsc911x_disable_resources(pdev);
2264 smsc911x_free_resources(pdev);
2265
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002266 free_netdev(dev);
2267
2268 return 0;
2269}
2270
Mathieu J. Poirierc326de82011-04-13 17:13:00 -07002271/* standard register acces */
2272static const struct smsc911x_ops standard_smsc911x_ops = {
2273 .reg_read = __smsc911x_reg_read,
2274 .reg_write = __smsc911x_reg_write,
2275 .rx_readfifo = smsc911x_rx_readfifo,
2276 .tx_writefifo = smsc911x_tx_writefifo,
2277};
2278
2279/* shifted register access */
2280static const struct smsc911x_ops shifted_smsc911x_ops = {
2281 .reg_read = __smsc911x_reg_read_shift,
2282 .reg_write = __smsc911x_reg_write_shift,
2283 .rx_readfifo = smsc911x_rx_readfifo_shift,
2284 .tx_writefifo = smsc911x_tx_writefifo_shift,
2285};
2286
Shawn Guo79f88ee2011-07-30 08:26:00 +00002287#ifdef CONFIG_OF
2288static int __devinit smsc911x_probe_config_dt(
2289 struct smsc911x_platform_config *config,
2290 struct device_node *np)
2291{
2292 const char *mac;
2293 u32 width = 0;
2294
2295 if (!np)
2296 return -ENODEV;
2297
2298 config->phy_interface = of_get_phy_mode(np);
2299
2300 mac = of_get_mac_address(np);
2301 if (mac)
2302 memcpy(config->mac, mac, ETH_ALEN);
2303
2304 of_property_read_u32(np, "reg-shift", &config->shift);
2305
2306 of_property_read_u32(np, "reg-io-width", &width);
2307 if (width == 4)
2308 config->flags |= SMSC911X_USE_32BIT;
Dave Martinf26cd412011-09-13 00:49:29 +00002309 else
2310 config->flags |= SMSC911X_USE_16BIT;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002311
2312 if (of_get_property(np, "smsc,irq-active-high", NULL))
2313 config->irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH;
2314
2315 if (of_get_property(np, "smsc,irq-push-pull", NULL))
2316 config->irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL;
2317
2318 if (of_get_property(np, "smsc,force-internal-phy", NULL))
2319 config->flags |= SMSC911X_FORCE_INTERNAL_PHY;
2320
2321 if (of_get_property(np, "smsc,force-external-phy", NULL))
2322 config->flags |= SMSC911X_FORCE_EXTERNAL_PHY;
2323
2324 if (of_get_property(np, "smsc,save-mac-address", NULL))
2325 config->flags |= SMSC911X_SAVE_MAC_ADDRESS;
2326
2327 return 0;
2328}
2329#else
2330static inline int smsc911x_probe_config_dt(
2331 struct smsc911x_platform_config *config,
2332 struct device_node *np)
2333{
2334 return -ENODEV;
2335}
2336#endif /* CONFIG_OF */
2337
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002338static int __devinit smsc911x_drv_probe(struct platform_device *pdev)
2339{
Shawn Guo79f88ee2011-07-30 08:26:00 +00002340 struct device_node *np = pdev->dev.of_node;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002341 struct net_device *dev;
2342 struct smsc911x_data *pdata;
Steve Glendinning2107fb82008-11-05 00:35:38 +00002343 struct smsc911x_platform_config *config = pdev->dev.platform_data;
Steve Glendinning61307ed2009-01-27 06:51:09 +00002344 struct resource *res, *irq_res;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002345 unsigned int intcfg = 0;
Steve Glendinning61307ed2009-01-27 06:51:09 +00002346 int res_size, irq_flags;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002347 int retval;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002348
Joe Perchesdffc6b22011-03-25 14:21:22 +00002349 pr_info("Driver version %s\n", SMSC_DRV_VERSION);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002350
2351 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2352 "smsc911x-memory");
2353 if (!res)
2354 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2355 if (!res) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002356 pr_warn("Could not allocate resource\n");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002357 retval = -ENODEV;
2358 goto out_0;
2359 }
Julia Lawall39424532009-07-04 11:31:47 +00002360 res_size = resource_size(res);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002361
Steve Glendinning61307ed2009-01-27 06:51:09 +00002362 irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2363 if (!irq_res) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002364 pr_warn("Could not allocate irq resource\n");
Steve Glendinning61307ed2009-01-27 06:51:09 +00002365 retval = -ENODEV;
2366 goto out_0;
2367 }
2368
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002369 if (!request_mem_region(res->start, res_size, SMSC_CHIPNAME)) {
2370 retval = -EBUSY;
2371 goto out_0;
2372 }
2373
2374 dev = alloc_etherdev(sizeof(struct smsc911x_data));
2375 if (!dev) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002376 pr_warn("Could not allocate device\n");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002377 retval = -ENOMEM;
2378 goto out_release_io_1;
2379 }
2380
2381 SET_NETDEV_DEV(dev, &pdev->dev);
2382
2383 pdata = netdev_priv(dev);
2384
Steve Glendinning61307ed2009-01-27 06:51:09 +00002385 dev->irq = irq_res->start;
2386 irq_flags = irq_res->flags & IRQF_TRIGGER_MASK;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002387 pdata->ioaddr = ioremap_nocache(res->start, res_size);
2388
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002389 pdata->dev = dev;
2390 pdata->msg_enable = ((1 << debug) - 1);
2391
Robert Marklundc7e963f2011-11-24 01:03:07 +00002392 platform_set_drvdata(pdev, dev);
2393
2394 retval = smsc911x_request_resources(pdev);
2395 if (retval)
2396 goto out_return_resources;
2397
2398 retval = smsc911x_enable_resources(pdev);
2399 if (retval)
2400 goto out_disable_resources;
2401
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002402 if (pdata->ioaddr == NULL) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002403 SMSC_WARN(pdata, probe, "Error smsc911x base address invalid");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002404 retval = -ENOMEM;
Robert Marklundc7e963f2011-11-24 01:03:07 +00002405 goto out_disable_resources;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002406 }
2407
Shawn Guo79f88ee2011-07-30 08:26:00 +00002408 retval = smsc911x_probe_config_dt(&pdata->config, np);
2409 if (retval && config) {
2410 /* copy config parameters across to pdata */
2411 memcpy(&pdata->config, config, sizeof(pdata->config));
2412 retval = 0;
2413 }
2414
2415 if (retval) {
2416 SMSC_WARN(pdata, probe, "Error smsc911x config not found");
Robert Marklundc7e963f2011-11-24 01:03:07 +00002417 goto out_disable_resources;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002418 }
2419
Mathieu J. Poirierc326de82011-04-13 17:13:00 -07002420 /* assume standard, non-shifted, access to HW registers */
2421 pdata->ops = &standard_smsc911x_ops;
2422 /* apply the right access if shifting is needed */
Shawn Guo79f88ee2011-07-30 08:26:00 +00002423 if (pdata->config.shift)
Mathieu J. Poirierc326de82011-04-13 17:13:00 -07002424 pdata->ops = &shifted_smsc911x_ops;
2425
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002426 retval = smsc911x_init(dev);
2427 if (retval < 0)
Robert Marklundc7e963f2011-11-24 01:03:07 +00002428 goto out_disable_resources;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002429
2430 /* configure irq polarity and type before connecting isr */
Steve Glendinning2107fb82008-11-05 00:35:38 +00002431 if (pdata->config.irq_polarity == SMSC911X_IRQ_POLARITY_ACTIVE_HIGH)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002432 intcfg |= INT_CFG_IRQ_POL_;
2433
Steve Glendinning2107fb82008-11-05 00:35:38 +00002434 if (pdata->config.irq_type == SMSC911X_IRQ_TYPE_PUSH_PULL)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002435 intcfg |= INT_CFG_IRQ_TYPE_;
2436
2437 smsc911x_reg_write(pdata, INT_CFG, intcfg);
2438
2439 /* Ensure interrupts are globally disabled before connecting ISR */
2440 smsc911x_reg_write(pdata, INT_EN, 0);
2441 smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
2442
Steve Glendinning61307ed2009-01-27 06:51:09 +00002443 retval = request_irq(dev->irq, smsc911x_irqhandler,
Steve Glendinninge81259b2009-01-27 06:51:10 +00002444 irq_flags | IRQF_SHARED, dev->name, dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002445 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002446 SMSC_WARN(pdata, probe,
2447 "Unable to claim requested irq: %d", dev->irq);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002448 goto out_free_irq;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002449 }
2450
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002451 retval = register_netdev(dev);
2452 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002453 SMSC_WARN(pdata, probe, "Error %i registering device", retval);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002454 goto out_free_irq;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002455 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002456 SMSC_TRACE(pdata, probe,
2457 "Network interface: \"%s\"", dev->name);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002458 }
2459
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002460 retval = smsc911x_mii_init(pdev, dev);
2461 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002462 SMSC_WARN(pdata, probe, "Error %i initialising mii", retval);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002463 goto out_unregister_netdev_5;
2464 }
2465
2466 spin_lock_irq(&pdata->mac_lock);
2467
2468 /* Check if mac address has been specified when bringing interface up */
2469 if (is_valid_ether_addr(dev->dev_addr)) {
Steve Glendinning225ddf42009-03-19 00:24:46 +00002470 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002471 SMSC_TRACE(pdata, probe,
2472 "MAC Address is specified by configuration");
Manuel Laussaace4952009-10-13 07:25:49 +00002473 } else if (is_valid_ether_addr(pdata->config.mac)) {
2474 memcpy(dev->dev_addr, pdata->config.mac, 6);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002475 SMSC_TRACE(pdata, probe,
2476 "MAC Address specified by platform data");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002477 } else {
2478 /* Try reading mac address from device. if EEPROM is present
2479 * it will already have been set */
Akira Takeuchi62747cd2010-10-27 17:28:58 +01002480 smsc_get_mac(dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002481
2482 if (is_valid_ether_addr(dev->dev_addr)) {
2483 /* eeprom values are valid so use them */
Joe Perchesdffc6b22011-03-25 14:21:22 +00002484 SMSC_TRACE(pdata, probe,
2485 "Mac Address is read from LAN911x EEPROM");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002486 } else {
2487 /* eeprom values are invalid, generate random MAC */
2488 random_ether_addr(dev->dev_addr);
Steve Glendinning225ddf42009-03-19 00:24:46 +00002489 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002490 SMSC_TRACE(pdata, probe,
2491 "MAC Address is set to random_ether_addr");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002492 }
2493 }
2494
2495 spin_unlock_irq(&pdata->mac_lock);
2496
Joe Perchesdffc6b22011-03-25 14:21:22 +00002497 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002498
2499 return 0;
2500
2501out_unregister_netdev_5:
2502 unregister_netdev(dev);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002503out_free_irq:
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002504 free_irq(dev->irq, dev);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002505out_disable_resources:
2506 (void)smsc911x_disable_resources(pdev);
2507out_return_resources:
2508 smsc911x_free_resources(pdev);
2509 platform_set_drvdata(pdev, NULL);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002510 iounmap(pdata->ioaddr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002511 free_netdev(dev);
2512out_release_io_1:
Julia Lawall39424532009-07-04 11:31:47 +00002513 release_mem_region(res->start, resource_size(res));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002514out_0:
2515 return retval;
2516}
2517
Daniel Mackb6907b02009-05-05 12:22:53 -07002518#ifdef CONFIG_PM
2519/* This implementation assumes the devices remains powered on its VDDVARIO
2520 * pins during suspend. */
2521
Daniel Mack6cb87822009-08-05 08:29:31 +00002522/* TODO: implement freeze/thaw callbacks for hibernation.*/
2523
2524static int smsc911x_suspend(struct device *dev)
Daniel Mackb6907b02009-05-05 12:22:53 -07002525{
Daniel Mack6cb87822009-08-05 08:29:31 +00002526 struct net_device *ndev = dev_get_drvdata(dev);
2527 struct smsc911x_data *pdata = netdev_priv(ndev);
Daniel Mackb6907b02009-05-05 12:22:53 -07002528
2529 /* enable wake on LAN, energy detection and the external PME
2530 * signal. */
2531 smsc911x_reg_write(pdata, PMT_CTRL,
2532 PMT_CTRL_PM_MODE_D1_ | PMT_CTRL_WOL_EN_ |
2533 PMT_CTRL_ED_EN_ | PMT_CTRL_PME_EN_);
2534
2535 return 0;
2536}
2537
Daniel Mack6cb87822009-08-05 08:29:31 +00002538static int smsc911x_resume(struct device *dev)
Daniel Mackb6907b02009-05-05 12:22:53 -07002539{
Daniel Mack6cb87822009-08-05 08:29:31 +00002540 struct net_device *ndev = dev_get_drvdata(dev);
2541 struct smsc911x_data *pdata = netdev_priv(ndev);
Daniel Mackb6907b02009-05-05 12:22:53 -07002542 unsigned int to = 100;
2543
2544 /* Note 3.11 from the datasheet:
2545 * "When the LAN9220 is in a power saving state, a write of any
2546 * data to the BYTE_TEST register will wake-up the device."
2547 */
2548 smsc911x_reg_write(pdata, BYTE_TEST, 0);
2549
2550 /* poll the READY bit in PMT_CTRL. Any other access to the device is
2551 * forbidden while this bit isn't set. Try for 100ms and return -EIO
2552 * if it failed. */
2553 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & PMT_CTRL_READY_) && --to)
2554 udelay(1000);
2555
2556 return (to == 0) ? -EIO : 0;
2557}
2558
Alexey Dobriyan47145212009-12-14 18:00:08 -08002559static const struct dev_pm_ops smsc911x_pm_ops = {
Daniel Mack6cb87822009-08-05 08:29:31 +00002560 .suspend = smsc911x_suspend,
2561 .resume = smsc911x_resume,
2562};
2563
2564#define SMSC911X_PM_OPS (&smsc911x_pm_ops)
2565
Daniel Mackb6907b02009-05-05 12:22:53 -07002566#else
Daniel Mack6cb87822009-08-05 08:29:31 +00002567#define SMSC911X_PM_OPS NULL
Daniel Mackb6907b02009-05-05 12:22:53 -07002568#endif
2569
Shawn Guo79f88ee2011-07-30 08:26:00 +00002570static const struct of_device_id smsc911x_dt_ids[] = {
2571 { .compatible = "smsc,lan9115", },
2572 { /* sentinel */ }
2573};
2574MODULE_DEVICE_TABLE(of, smsc911x_dt_ids);
2575
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002576static struct platform_driver smsc911x_driver = {
2577 .probe = smsc911x_drv_probe,
Mike Frysingerdf911e22009-06-05 14:37:20 +00002578 .remove = __devexit_p(smsc911x_drv_remove),
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002579 .driver = {
Daniel Mack6cb87822009-08-05 08:29:31 +00002580 .name = SMSC_CHIPNAME,
2581 .owner = THIS_MODULE,
2582 .pm = SMSC911X_PM_OPS,
Shawn Guo79f88ee2011-07-30 08:26:00 +00002583 .of_match_table = smsc911x_dt_ids,
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002584 },
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002585};
2586
2587/* Entry point for loading the module */
2588static int __init smsc911x_init_module(void)
2589{
Akira Takeuchi62747cd2010-10-27 17:28:58 +01002590 SMSC_INITIALIZE();
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002591 return platform_driver_register(&smsc911x_driver);
2592}
2593
2594/* entry point for unloading the module */
2595static void __exit smsc911x_cleanup_module(void)
2596{
2597 platform_driver_unregister(&smsc911x_driver);
2598}
2599
2600module_init(smsc911x_init_module);
2601module_exit(smsc911x_cleanup_module);