blob: 139b99b04099e1a819d6db78b4b2313bf16dd757 [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
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080017 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Steve Glendinningfd9abb32008-11-05 00:35:37 +000018 *
19 ***************************************************************************
20 * Rewritten, heavily based on smsc911x simple driver by SMSC.
21 * Partly uses io macros from smc91x.c by Nicolas Pitre
22 *
23 * Supported devices:
24 * LAN9115, LAN9116, LAN9117, LAN9118
25 * LAN9215, LAN9216, LAN9217, LAN9218
26 * LAN9210, LAN9211
27 * LAN9220, LAN9221
David S. Miller1805b2f2011-10-24 18:18:09 -040028 * LAN89218
Steve Glendinningfd9abb32008-11-05 00:35:37 +000029 *
30 */
31
Joe Perchesdffc6b22011-03-25 14:21:22 +000032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
Steve Glendinningfd9abb32008-11-05 00:35:37 +000034#include <linux/crc32.h>
Lee Jonesb6c23012012-12-19 17:03:48 +000035#include <linux/clk.h>
Steve Glendinningfd9abb32008-11-05 00:35:37 +000036#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>
Jeremy Linton0b50dc42015-08-12 17:06:27 -050062#include <linux/acpi.h>
Geert Uytterhoeven3a611e22014-11-24 19:58:17 +010063#include <linux/pm_runtime.h>
Jeremy Linton0b50dc42015-08-12 17:06:27 -050064#include <linux/property.h>
Geert Uytterhoeven3a611e22014-11-24 19:58:17 +010065
Steve Glendinningfd9abb32008-11-05 00:35:37 +000066#include "smsc911x.h"
67
68#define SMSC_CHIPNAME "smsc911x"
69#define SMSC_MDIONAME "smsc911x-mdio"
70#define SMSC_DRV_VERSION "2008-10-21"
71
72MODULE_LICENSE("GPL");
73MODULE_VERSION(SMSC_DRV_VERSION);
Vincent Stehlé62038e42010-09-26 18:50:05 -070074MODULE_ALIAS("platform:smsc911x");
Steve Glendinningfd9abb32008-11-05 00:35:37 +000075
76#if USE_DEBUG > 0
77static int debug = 16;
78#else
79static int debug = 3;
80#endif
81
82module_param(debug, int, 0);
83MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
84
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -070085struct smsc911x_data;
86
87struct smsc911x_ops {
88 u32 (*reg_read)(struct smsc911x_data *pdata, u32 reg);
89 void (*reg_write)(struct smsc911x_data *pdata, u32 reg, u32 val);
90 void (*rx_readfifo)(struct smsc911x_data *pdata,
91 unsigned int *buf, unsigned int wordcount);
92 void (*tx_writefifo)(struct smsc911x_data *pdata,
93 unsigned int *buf, unsigned int wordcount);
94};
95
Robert Marklundc7e963f2011-11-24 01:03:07 +000096#define SMSC911X_NUM_SUPPLIES 2
97
Steve Glendinningfd9abb32008-11-05 00:35:37 +000098struct smsc911x_data {
99 void __iomem *ioaddr;
100
101 unsigned int idrev;
102
103 /* used to decide which workarounds apply */
104 unsigned int generation;
105
106 /* device configuration (copied from platform_data during probe) */
Steve Glendinning2107fb82008-11-05 00:35:38 +0000107 struct smsc911x_platform_config config;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000108
109 /* This needs to be acquired before calling any of below:
110 * smsc911x_mac_read(), smsc911x_mac_write()
111 */
112 spinlock_t mac_lock;
113
Catalin Marinas492c5d92010-07-19 13:36:21 -0700114 /* spinlock to ensure register accesses are serialised */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000115 spinlock_t dev_lock;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000116
117 struct phy_device *phy_dev;
118 struct mii_bus *mii_bus;
119 int phy_irq[PHY_MAX_ADDR];
120 unsigned int using_extphy;
121 int last_duplex;
122 int last_carrier;
123
124 u32 msg_enable;
125 unsigned int gpio_setting;
126 unsigned int gpio_orig_setting;
127 struct net_device *dev;
128 struct napi_struct napi;
129
130 unsigned int software_irq_signal;
131
132#ifdef USE_PHY_WORK_AROUND
133#define MIN_PACKET_SIZE (64)
134 char loopback_tx_pkt[MIN_PACKET_SIZE];
135 char loopback_rx_pkt[MIN_PACKET_SIZE];
136 unsigned int resetcount;
137#endif
138
139 /* Members for Multicast filter workaround */
140 unsigned int multicast_update_pending;
141 unsigned int set_bits_mask;
142 unsigned int clear_bits_mask;
143 unsigned int hashhi;
144 unsigned int hashlo;
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700145
146 /* register access functions */
147 const struct smsc911x_ops *ops;
Robert Marklundc7e963f2011-11-24 01:03:07 +0000148
149 /* regulators */
150 struct regulator_bulk_data supplies[SMSC911X_NUM_SUPPLIES];
Lee Jonesb6c23012012-12-19 17:03:48 +0000151
152 /* clock */
153 struct clk *clk;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000154};
155
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700156/* Easy access to information */
157#define __smsc_shift(pdata, reg) ((reg) << ((pdata)->config.shift))
158
Catalin Marinas492c5d92010-07-19 13:36:21 -0700159static inline u32 __smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000160{
Steve Glendinning2107fb82008-11-05 00:35:38 +0000161 if (pdata->config.flags & SMSC911X_USE_32BIT)
162 return readl(pdata->ioaddr + reg);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000163
Catalin Marinas492c5d92010-07-19 13:36:21 -0700164 if (pdata->config.flags & SMSC911X_USE_16BIT)
165 return ((readw(pdata->ioaddr + reg) & 0xFFFF) |
Steve Glendinning2107fb82008-11-05 00:35:38 +0000166 ((readw(pdata->ioaddr + reg + 2) & 0xFFFF) << 16));
Steve Glendinning2107fb82008-11-05 00:35:38 +0000167
168 BUG();
Steve Glendinning702403a2009-01-11 00:14:27 -0800169 return 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000170}
171
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700172static inline u32
173__smsc911x_reg_read_shift(struct smsc911x_data *pdata, u32 reg)
174{
175 if (pdata->config.flags & SMSC911X_USE_32BIT)
176 return readl(pdata->ioaddr + __smsc_shift(pdata, reg));
177
178 if (pdata->config.flags & SMSC911X_USE_16BIT)
179 return (readw(pdata->ioaddr +
180 __smsc_shift(pdata, reg)) & 0xFFFF) |
181 ((readw(pdata->ioaddr +
182 __smsc_shift(pdata, reg + 2)) & 0xFFFF) << 16);
183
184 BUG();
185 return 0;
186}
187
Catalin Marinas492c5d92010-07-19 13:36:21 -0700188static inline u32 smsc911x_reg_read(struct smsc911x_data *pdata, u32 reg)
189{
190 u32 data;
191 unsigned long flags;
192
193 spin_lock_irqsave(&pdata->dev_lock, flags);
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700194 data = pdata->ops->reg_read(pdata, reg);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700195 spin_unlock_irqrestore(&pdata->dev_lock, flags);
196
197 return data;
198}
199
200static inline void __smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
201 u32 val)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000202{
Steve Glendinning2107fb82008-11-05 00:35:38 +0000203 if (pdata->config.flags & SMSC911X_USE_32BIT) {
204 writel(val, pdata->ioaddr + reg);
205 return;
206 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000207
Steve Glendinning2107fb82008-11-05 00:35:38 +0000208 if (pdata->config.flags & SMSC911X_USE_16BIT) {
Steve Glendinning2107fb82008-11-05 00:35:38 +0000209 writew(val & 0xFFFF, pdata->ioaddr + reg);
210 writew((val >> 16) & 0xFFFF, pdata->ioaddr + reg + 2);
Steve Glendinning2107fb82008-11-05 00:35:38 +0000211 return;
212 }
213
214 BUG();
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000215}
216
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700217static inline void
218__smsc911x_reg_write_shift(struct smsc911x_data *pdata, u32 reg, u32 val)
219{
220 if (pdata->config.flags & SMSC911X_USE_32BIT) {
221 writel(val, pdata->ioaddr + __smsc_shift(pdata, reg));
222 return;
223 }
224
225 if (pdata->config.flags & SMSC911X_USE_16BIT) {
226 writew(val & 0xFFFF,
227 pdata->ioaddr + __smsc_shift(pdata, reg));
228 writew((val >> 16) & 0xFFFF,
229 pdata->ioaddr + __smsc_shift(pdata, reg + 2));
230 return;
231 }
232
233 BUG();
234}
235
Catalin Marinas492c5d92010-07-19 13:36:21 -0700236static inline void smsc911x_reg_write(struct smsc911x_data *pdata, u32 reg,
237 u32 val)
238{
239 unsigned long flags;
240
241 spin_lock_irqsave(&pdata->dev_lock, flags);
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700242 pdata->ops->reg_write(pdata, reg, val);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700243 spin_unlock_irqrestore(&pdata->dev_lock, flags);
244}
245
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000246/* Writes a packet to the TX_DATA_FIFO */
247static inline void
248smsc911x_tx_writefifo(struct smsc911x_data *pdata, unsigned int *buf,
249 unsigned int wordcount)
250{
Catalin Marinas492c5d92010-07-19 13:36:21 -0700251 unsigned long flags;
252
253 spin_lock_irqsave(&pdata->dev_lock, flags);
254
Magnus Damm833cc672009-04-27 21:32:16 +0000255 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
256 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700257 __smsc911x_reg_write(pdata, TX_DATA_FIFO,
258 swab32(*buf++));
259 goto out;
Magnus Damm833cc672009-04-27 21:32:16 +0000260 }
261
Steve Glendinning2107fb82008-11-05 00:35:38 +0000262 if (pdata->config.flags & SMSC911X_USE_32BIT) {
Matthew Leach2925f6c2012-12-11 04:49:49 +0000263 iowrite32_rep(pdata->ioaddr + TX_DATA_FIFO, buf, wordcount);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700264 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000265 }
266
267 if (pdata->config.flags & SMSC911X_USE_16BIT) {
268 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700269 __smsc911x_reg_write(pdata, TX_DATA_FIFO, *buf++);
270 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000271 }
272
273 BUG();
Catalin Marinas492c5d92010-07-19 13:36:21 -0700274out:
275 spin_unlock_irqrestore(&pdata->dev_lock, flags);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000276}
277
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700278/* Writes a packet to the TX_DATA_FIFO - shifted version */
279static inline void
280smsc911x_tx_writefifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
281 unsigned int wordcount)
282{
283 unsigned long flags;
284
285 spin_lock_irqsave(&pdata->dev_lock, flags);
286
287 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
288 while (wordcount--)
289 __smsc911x_reg_write_shift(pdata, TX_DATA_FIFO,
290 swab32(*buf++));
291 goto out;
292 }
293
294 if (pdata->config.flags & SMSC911X_USE_32BIT) {
Matthew Leach2925f6c2012-12-11 04:49:49 +0000295 iowrite32_rep(pdata->ioaddr + __smsc_shift(pdata,
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700296 TX_DATA_FIFO), buf, wordcount);
297 goto out;
298 }
299
300 if (pdata->config.flags & SMSC911X_USE_16BIT) {
301 while (wordcount--)
302 __smsc911x_reg_write_shift(pdata,
303 TX_DATA_FIFO, *buf++);
304 goto out;
305 }
306
307 BUG();
308out:
309 spin_unlock_irqrestore(&pdata->dev_lock, flags);
310}
311
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000312/* Reads a packet out of the RX_DATA_FIFO */
313static inline void
314smsc911x_rx_readfifo(struct smsc911x_data *pdata, unsigned int *buf,
315 unsigned int wordcount)
316{
Catalin Marinas492c5d92010-07-19 13:36:21 -0700317 unsigned long flags;
318
319 spin_lock_irqsave(&pdata->dev_lock, flags);
320
Magnus Damm833cc672009-04-27 21:32:16 +0000321 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
322 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700323 *buf++ = swab32(__smsc911x_reg_read(pdata,
324 RX_DATA_FIFO));
325 goto out;
Magnus Damm833cc672009-04-27 21:32:16 +0000326 }
327
Steve Glendinning2107fb82008-11-05 00:35:38 +0000328 if (pdata->config.flags & SMSC911X_USE_32BIT) {
Matthew Leach2925f6c2012-12-11 04:49:49 +0000329 ioread32_rep(pdata->ioaddr + RX_DATA_FIFO, buf, wordcount);
Catalin Marinas492c5d92010-07-19 13:36:21 -0700330 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000331 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000332
Steve Glendinning2107fb82008-11-05 00:35:38 +0000333 if (pdata->config.flags & SMSC911X_USE_16BIT) {
334 while (wordcount--)
Catalin Marinas492c5d92010-07-19 13:36:21 -0700335 *buf++ = __smsc911x_reg_read(pdata, RX_DATA_FIFO);
336 goto out;
Steve Glendinning2107fb82008-11-05 00:35:38 +0000337 }
338
339 BUG();
Catalin Marinas492c5d92010-07-19 13:36:21 -0700340out:
341 spin_unlock_irqrestore(&pdata->dev_lock, flags);
Steve Glendinning2107fb82008-11-05 00:35:38 +0000342}
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000343
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700344/* Reads a packet out of the RX_DATA_FIFO - shifted version */
345static inline void
346smsc911x_rx_readfifo_shift(struct smsc911x_data *pdata, unsigned int *buf,
347 unsigned int wordcount)
348{
349 unsigned long flags;
350
351 spin_lock_irqsave(&pdata->dev_lock, flags);
352
353 if (pdata->config.flags & SMSC911X_SWAP_FIFO) {
354 while (wordcount--)
355 *buf++ = swab32(__smsc911x_reg_read_shift(pdata,
356 RX_DATA_FIFO));
357 goto out;
358 }
359
360 if (pdata->config.flags & SMSC911X_USE_32BIT) {
Matthew Leach2925f6c2012-12-11 04:49:49 +0000361 ioread32_rep(pdata->ioaddr + __smsc_shift(pdata,
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700362 RX_DATA_FIFO), buf, wordcount);
363 goto out;
364 }
365
366 if (pdata->config.flags & SMSC911X_USE_16BIT) {
367 while (wordcount--)
368 *buf++ = __smsc911x_reg_read_shift(pdata,
369 RX_DATA_FIFO);
370 goto out;
371 }
372
373 BUG();
374out:
375 spin_unlock_irqrestore(&pdata->dev_lock, flags);
376}
377
Robert Marklundc7e963f2011-11-24 01:03:07 +0000378/*
Lee Jonesb6c23012012-12-19 17:03:48 +0000379 * enable regulator and clock resources.
Robert Marklundc7e963f2011-11-24 01:03:07 +0000380 */
381static int smsc911x_enable_resources(struct platform_device *pdev)
382{
383 struct net_device *ndev = platform_get_drvdata(pdev);
384 struct smsc911x_data *pdata = netdev_priv(ndev);
385 int ret = 0;
386
387 ret = regulator_bulk_enable(ARRAY_SIZE(pdata->supplies),
388 pdata->supplies);
389 if (ret)
390 netdev_err(ndev, "failed to enable regulators %d\n",
391 ret);
Lee Jonesb6c23012012-12-19 17:03:48 +0000392
393 if (!IS_ERR(pdata->clk)) {
394 ret = clk_prepare_enable(pdata->clk);
395 if (ret < 0)
396 netdev_err(ndev, "failed to enable clock %d\n", ret);
397 }
398
Robert Marklundc7e963f2011-11-24 01:03:07 +0000399 return ret;
400}
401
402/*
403 * disable resources, currently just regulators.
404 */
405static int smsc911x_disable_resources(struct platform_device *pdev)
406{
407 struct net_device *ndev = platform_get_drvdata(pdev);
408 struct smsc911x_data *pdata = netdev_priv(ndev);
409 int ret = 0;
410
411 ret = regulator_bulk_disable(ARRAY_SIZE(pdata->supplies),
412 pdata->supplies);
Lee Jonesb6c23012012-12-19 17:03:48 +0000413
414 if (!IS_ERR(pdata->clk))
415 clk_disable_unprepare(pdata->clk);
416
Robert Marklundc7e963f2011-11-24 01:03:07 +0000417 return ret;
418}
419
420/*
421 * Request resources, currently just regulators.
422 *
423 * The SMSC911x has two power pins: vddvario and vdd33a, in designs where
424 * these are not always-on we need to request regulators to be turned on
425 * before we can try to access the device registers.
426 */
427static int smsc911x_request_resources(struct platform_device *pdev)
428{
429 struct net_device *ndev = platform_get_drvdata(pdev);
430 struct smsc911x_data *pdata = netdev_priv(ndev);
431 int ret = 0;
432
433 /* Request regulators */
434 pdata->supplies[0].supply = "vdd33a";
435 pdata->supplies[1].supply = "vddvario";
436 ret = regulator_bulk_get(&pdev->dev,
437 ARRAY_SIZE(pdata->supplies),
438 pdata->supplies);
439 if (ret)
440 netdev_err(ndev, "couldn't get regulators %d\n",
441 ret);
Lee Jonesb6c23012012-12-19 17:03:48 +0000442
443 /* Request clock */
444 pdata->clk = clk_get(&pdev->dev, NULL);
445 if (IS_ERR(pdata->clk))
Fabio Estevam1e87af92014-03-24 12:57:25 -0300446 dev_dbg(&pdev->dev, "couldn't get clock %li\n",
447 PTR_ERR(pdata->clk));
Lee Jonesb6c23012012-12-19 17:03:48 +0000448
Robert Marklundc7e963f2011-11-24 01:03:07 +0000449 return ret;
450}
451
452/*
453 * Free resources, currently just regulators.
454 *
455 */
456static void smsc911x_free_resources(struct platform_device *pdev)
457{
458 struct net_device *ndev = platform_get_drvdata(pdev);
459 struct smsc911x_data *pdata = netdev_priv(ndev);
460
461 /* Free regulators */
462 regulator_bulk_free(ARRAY_SIZE(pdata->supplies),
463 pdata->supplies);
Lee Jonesb6c23012012-12-19 17:03:48 +0000464
465 /* Free clock */
466 if (!IS_ERR(pdata->clk)) {
467 clk_put(pdata->clk);
468 pdata->clk = NULL;
469 }
Robert Marklundc7e963f2011-11-24 01:03:07 +0000470}
471
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000472/* waits for MAC not busy, with timeout. Only called by smsc911x_mac_read
473 * and smsc911x_mac_write, so assumes mac_lock is held */
474static int smsc911x_mac_complete(struct smsc911x_data *pdata)
475{
476 int i;
477 u32 val;
478
479 SMSC_ASSERT_MAC_LOCK(pdata);
480
481 for (i = 0; i < 40; i++) {
482 val = smsc911x_reg_read(pdata, MAC_CSR_CMD);
483 if (!(val & MAC_CSR_CMD_CSR_BUSY_))
484 return 0;
485 }
Joe Perchesdffc6b22011-03-25 14:21:22 +0000486 SMSC_WARN(pdata, hw, "Timed out waiting for MAC not BUSY. "
487 "MAC_CSR_CMD: 0x%08X", val);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000488 return -EIO;
489}
490
491/* Fetches a MAC register value. Assumes mac_lock is acquired */
492static u32 smsc911x_mac_read(struct smsc911x_data *pdata, unsigned int offset)
493{
494 unsigned int temp;
495
496 SMSC_ASSERT_MAC_LOCK(pdata);
497
498 temp = smsc911x_reg_read(pdata, MAC_CSR_CMD);
499 if (unlikely(temp & MAC_CSR_CMD_CSR_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000500 SMSC_WARN(pdata, hw, "MAC busy at entry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000501 return 0xFFFFFFFF;
502 }
503
504 /* Send the MAC cmd */
505 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
506 MAC_CSR_CMD_CSR_BUSY_ | MAC_CSR_CMD_R_NOT_W_));
507
508 /* Workaround for hardware read-after-write restriction */
509 temp = smsc911x_reg_read(pdata, BYTE_TEST);
510
511 /* Wait for the read to complete */
512 if (likely(smsc911x_mac_complete(pdata) == 0))
513 return smsc911x_reg_read(pdata, MAC_CSR_DATA);
514
Joe Perchesdffc6b22011-03-25 14:21:22 +0000515 SMSC_WARN(pdata, hw, "MAC busy after read");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000516 return 0xFFFFFFFF;
517}
518
519/* Set a mac register, mac_lock must be acquired before calling */
520static void smsc911x_mac_write(struct smsc911x_data *pdata,
521 unsigned int offset, u32 val)
522{
523 unsigned int temp;
524
525 SMSC_ASSERT_MAC_LOCK(pdata);
526
527 temp = smsc911x_reg_read(pdata, MAC_CSR_CMD);
528 if (unlikely(temp & MAC_CSR_CMD_CSR_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000529 SMSC_WARN(pdata, hw,
530 "smsc911x_mac_write failed, MAC busy at entry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000531 return;
532 }
533
534 /* Send data to write */
535 smsc911x_reg_write(pdata, MAC_CSR_DATA, val);
536
537 /* Write the actual data */
538 smsc911x_reg_write(pdata, MAC_CSR_CMD, ((offset & 0xFF) |
539 MAC_CSR_CMD_CSR_BUSY_));
540
541 /* Workaround for hardware read-after-write restriction */
542 temp = smsc911x_reg_read(pdata, BYTE_TEST);
543
544 /* Wait for the write to complete */
545 if (likely(smsc911x_mac_complete(pdata) == 0))
546 return;
547
Joe Perchesdffc6b22011-03-25 14:21:22 +0000548 SMSC_WARN(pdata, hw, "smsc911x_mac_write failed, MAC busy after write");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000549}
550
551/* Get a phy register */
552static int smsc911x_mii_read(struct mii_bus *bus, int phyaddr, int regidx)
553{
554 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
555 unsigned long flags;
556 unsigned int addr;
557 int i, reg;
558
559 spin_lock_irqsave(&pdata->mac_lock, flags);
560
561 /* Confirm MII not busy */
562 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000563 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_read???");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000564 reg = -EIO;
565 goto out;
566 }
567
568 /* Set the address, index & direction (read from PHY) */
569 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6);
570 smsc911x_mac_write(pdata, MII_ACC, addr);
571
572 /* Wait for read to complete w/ timeout */
573 for (i = 0; i < 100; i++)
574 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
575 reg = smsc911x_mac_read(pdata, MII_DATA);
576 goto out;
577 }
578
Joe Perchesdffc6b22011-03-25 14:21:22 +0000579 SMSC_WARN(pdata, hw, "Timed out waiting for MII read to finish");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000580 reg = -EIO;
581
582out:
583 spin_unlock_irqrestore(&pdata->mac_lock, flags);
584 return reg;
585}
586
587/* Set a phy register */
588static int smsc911x_mii_write(struct mii_bus *bus, int phyaddr, int regidx,
589 u16 val)
590{
591 struct smsc911x_data *pdata = (struct smsc911x_data *)bus->priv;
592 unsigned long flags;
593 unsigned int addr;
594 int i, reg;
595
596 spin_lock_irqsave(&pdata->mac_lock, flags);
597
598 /* Confirm MII not busy */
599 if (unlikely(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000600 SMSC_WARN(pdata, hw, "MII is busy in smsc911x_mii_write???");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000601 reg = -EIO;
602 goto out;
603 }
604
605 /* Put the data to write in the MAC */
606 smsc911x_mac_write(pdata, MII_DATA, val);
607
608 /* Set the address, index & direction (write to PHY) */
609 addr = ((phyaddr & 0x1F) << 11) | ((regidx & 0x1F) << 6) |
610 MII_ACC_MII_WRITE_;
611 smsc911x_mac_write(pdata, MII_ACC, addr);
612
613 /* Wait for write to complete w/ timeout */
614 for (i = 0; i < 100; i++)
615 if (!(smsc911x_mac_read(pdata, MII_ACC) & MII_ACC_MII_BUSY_)) {
616 reg = 0;
617 goto out;
618 }
619
Joe Perchesdffc6b22011-03-25 14:21:22 +0000620 SMSC_WARN(pdata, hw, "Timed out waiting for MII write to finish");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000621 reg = -EIO;
622
623out:
624 spin_unlock_irqrestore(&pdata->mac_lock, flags);
625 return reg;
626}
627
Steve Glendinningd23f0282009-01-27 06:51:11 +0000628/* Switch to external phy. Assumes tx and rx are stopped. */
629static void smsc911x_phy_enable_external(struct smsc911x_data *pdata)
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000630{
631 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
632
Steve Glendinningd23f0282009-01-27 06:51:11 +0000633 /* Disable phy clocks to the MAC */
634 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
635 hwcfg |= HW_CFG_PHY_CLK_SEL_CLK_DIS_;
636 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
637 udelay(10); /* Enough time for clocks to stop */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000638
Steve Glendinningd23f0282009-01-27 06:51:11 +0000639 /* Switch to external phy */
640 hwcfg |= HW_CFG_EXT_PHY_EN_;
641 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000642
Steve Glendinningd23f0282009-01-27 06:51:11 +0000643 /* Enable phy clocks to the MAC */
644 hwcfg &= (~HW_CFG_PHY_CLK_SEL_);
645 hwcfg |= HW_CFG_PHY_CLK_SEL_EXT_PHY_;
646 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
647 udelay(10); /* Enough time for clocks to restart */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000648
Steve Glendinningd23f0282009-01-27 06:51:11 +0000649 hwcfg |= HW_CFG_SMI_SEL_;
650 smsc911x_reg_write(pdata, HW_CFG, hwcfg);
651}
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000652
Steve Glendinningd23f0282009-01-27 06:51:11 +0000653/* Autodetects and enables external phy if present on supported chips.
654 * autodetection can be overridden by specifying SMSC911X_FORCE_INTERNAL_PHY
655 * or SMSC911X_FORCE_EXTERNAL_PHY in the platform_data flags. */
656static void smsc911x_phy_initialise_external(struct smsc911x_data *pdata)
657{
658 unsigned int hwcfg = smsc911x_reg_read(pdata, HW_CFG);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000659
Steve Glendinningd23f0282009-01-27 06:51:11 +0000660 if (pdata->config.flags & SMSC911X_FORCE_INTERNAL_PHY) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000661 SMSC_TRACE(pdata, hw, "Forcing internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000662 pdata->using_extphy = 0;
663 } else if (pdata->config.flags & SMSC911X_FORCE_EXTERNAL_PHY) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000664 SMSC_TRACE(pdata, hw, "Forcing external PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000665 smsc911x_phy_enable_external(pdata);
666 pdata->using_extphy = 1;
667 } else if (hwcfg & HW_CFG_EXT_PHY_DET_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000668 SMSC_TRACE(pdata, hw,
669 "HW_CFG EXT_PHY_DET set, using external PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000670 smsc911x_phy_enable_external(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000671 pdata->using_extphy = 1;
672 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000673 SMSC_TRACE(pdata, hw,
674 "HW_CFG EXT_PHY_DET clear, using internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +0000675 pdata->using_extphy = 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000676 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000677}
678
679/* Fetches a tx status out of the status fifo */
680static unsigned int smsc911x_tx_get_txstatus(struct smsc911x_data *pdata)
681{
682 unsigned int result =
683 smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TSUSED_;
684
685 if (result != 0)
686 result = smsc911x_reg_read(pdata, TX_STATUS_FIFO);
687
688 return result;
689}
690
691/* Fetches the next rx status */
692static unsigned int smsc911x_rx_get_rxstatus(struct smsc911x_data *pdata)
693{
694 unsigned int result =
695 smsc911x_reg_read(pdata, RX_FIFO_INF) & RX_FIFO_INF_RXSUSED_;
696
697 if (result != 0)
698 result = smsc911x_reg_read(pdata, RX_STATUS_FIFO);
699
700 return result;
701}
702
703#ifdef USE_PHY_WORK_AROUND
704static int smsc911x_phy_check_loopbackpkt(struct smsc911x_data *pdata)
705{
706 unsigned int tries;
707 u32 wrsz;
708 u32 rdsz;
709 ulong bufp;
710
711 for (tries = 0; tries < 10; tries++) {
712 unsigned int txcmd_a;
713 unsigned int txcmd_b;
714 unsigned int status;
715 unsigned int pktlength;
716 unsigned int i;
717
718 /* Zero-out rx packet memory */
719 memset(pdata->loopback_rx_pkt, 0, MIN_PACKET_SIZE);
720
721 /* Write tx packet to 118 */
722 txcmd_a = (u32)((ulong)pdata->loopback_tx_pkt & 0x03) << 16;
723 txcmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
724 txcmd_a |= MIN_PACKET_SIZE;
725
726 txcmd_b = MIN_PACKET_SIZE << 16 | MIN_PACKET_SIZE;
727
728 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_a);
729 smsc911x_reg_write(pdata, TX_DATA_FIFO, txcmd_b);
730
731 bufp = (ulong)pdata->loopback_tx_pkt & (~0x3);
732 wrsz = MIN_PACKET_SIZE + 3;
733 wrsz += (u32)((ulong)pdata->loopback_tx_pkt & 0x3);
734 wrsz >>= 2;
735
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700736 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000737
738 /* Wait till transmit is done */
739 i = 60;
740 do {
741 udelay(5);
742 status = smsc911x_tx_get_txstatus(pdata);
743 } while ((i--) && (!status));
744
745 if (!status) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000746 SMSC_WARN(pdata, hw,
747 "Failed to transmit during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000748 continue;
749 }
750 if (status & TX_STS_ES_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000751 SMSC_WARN(pdata, hw,
752 "Transmit encountered errors during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000753 continue;
754 }
755
756 /* Wait till receive is done */
757 i = 60;
758 do {
759 udelay(5);
760 status = smsc911x_rx_get_rxstatus(pdata);
761 } while ((i--) && (!status));
762
763 if (!status) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000764 SMSC_WARN(pdata, hw,
765 "Failed to receive during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000766 continue;
767 }
768 if (status & RX_STS_ES_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000769 SMSC_WARN(pdata, hw,
770 "Receive encountered errors during loopback test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000771 continue;
772 }
773
774 pktlength = ((status & 0x3FFF0000UL) >> 16);
775 bufp = (ulong)pdata->loopback_rx_pkt;
776 rdsz = pktlength + 3;
777 rdsz += (u32)((ulong)pdata->loopback_rx_pkt & 0x3);
778 rdsz >>= 2;
779
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -0700780 pdata->ops->rx_readfifo(pdata, (unsigned int *)bufp, rdsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000781
782 if (pktlength != (MIN_PACKET_SIZE + 4)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000783 SMSC_WARN(pdata, hw, "Unexpected packet size "
784 "during loop back test, size=%d, will retry",
785 pktlength);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000786 } else {
787 unsigned int j;
788 int mismatch = 0;
789 for (j = 0; j < MIN_PACKET_SIZE; j++) {
790 if (pdata->loopback_tx_pkt[j]
791 != pdata->loopback_rx_pkt[j]) {
792 mismatch = 1;
793 break;
794 }
795 }
796 if (!mismatch) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000797 SMSC_TRACE(pdata, hw, "Successfully verified "
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000798 "loopback packet");
799 return 0;
800 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000801 SMSC_WARN(pdata, hw, "Data mismatch "
802 "during loop back test, will retry");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000803 }
804 }
805 }
806
807 return -EIO;
808}
809
810static int smsc911x_phy_reset(struct smsc911x_data *pdata)
811{
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000812 unsigned int temp;
813 unsigned int i = 100000;
814
Pavel Fedincd998ec2015-11-13 09:46:59 +0300815 temp = smsc911x_reg_read(pdata, PMT_CTRL);
816 smsc911x_reg_write(pdata, PMT_CTRL, temp | PMT_CTRL_PHY_RST_);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000817 do {
818 msleep(1);
Pavel Fedincd998ec2015-11-13 09:46:59 +0300819 temp = smsc911x_reg_read(pdata, PMT_CTRL);
820 } while ((i--) && (temp & PMT_CTRL_PHY_RST_));
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000821
Pavel Fedincd998ec2015-11-13 09:46:59 +0300822 if (unlikely(temp & PMT_CTRL_PHY_RST_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000823 SMSC_WARN(pdata, hw, "PHY reset failed to complete");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000824 return -EIO;
825 }
826 /* Extra delay required because the phy may not be completed with
827 * its reset when BMCR_RESET is cleared. Specs say 256 uS is
828 * enough delay but using 1ms here to be safe */
829 msleep(1);
830
831 return 0;
832}
833
834static int smsc911x_phy_loopbacktest(struct net_device *dev)
835{
836 struct smsc911x_data *pdata = netdev_priv(dev);
837 struct phy_device *phy_dev = pdata->phy_dev;
838 int result = -EIO;
839 unsigned int i, val;
840 unsigned long flags;
841
842 /* Initialise tx packet using broadcast destination address */
Joe Perchesc7bf7162015-03-02 19:54:47 -0800843 eth_broadcast_addr(pdata->loopback_tx_pkt);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000844
845 /* Use incrementing source address */
846 for (i = 6; i < 12; i++)
847 pdata->loopback_tx_pkt[i] = (char)i;
848
849 /* Set length type field */
850 pdata->loopback_tx_pkt[12] = 0x00;
851 pdata->loopback_tx_pkt[13] = 0x00;
852
853 for (i = 14; i < MIN_PACKET_SIZE; i++)
854 pdata->loopback_tx_pkt[i] = (char)i;
855
856 val = smsc911x_reg_read(pdata, HW_CFG);
857 val &= HW_CFG_TX_FIF_SZ_;
858 val |= HW_CFG_SF_;
859 smsc911x_reg_write(pdata, HW_CFG, val);
860
861 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
862 smsc911x_reg_write(pdata, RX_CFG,
863 (u32)((ulong)pdata->loopback_rx_pkt & 0x03) << 8);
864
865 for (i = 0; i < 10; i++) {
866 /* Set PHY to 10/FD, no ANEG, and loopback mode */
867 smsc911x_mii_write(phy_dev->bus, phy_dev->addr, MII_BMCR,
868 BMCR_LOOPBACK | BMCR_FULLDPLX);
869
870 /* Enable MAC tx/rx, FD */
871 spin_lock_irqsave(&pdata->mac_lock, flags);
872 smsc911x_mac_write(pdata, MAC_CR, MAC_CR_FDPX_
873 | MAC_CR_TXEN_ | MAC_CR_RXEN_);
874 spin_unlock_irqrestore(&pdata->mac_lock, flags);
875
876 if (smsc911x_phy_check_loopbackpkt(pdata) == 0) {
877 result = 0;
878 break;
879 }
880 pdata->resetcount++;
881
882 /* Disable MAC rx */
883 spin_lock_irqsave(&pdata->mac_lock, flags);
884 smsc911x_mac_write(pdata, MAC_CR, 0);
885 spin_unlock_irqrestore(&pdata->mac_lock, flags);
886
887 smsc911x_phy_reset(pdata);
888 }
889
890 /* Disable MAC */
891 spin_lock_irqsave(&pdata->mac_lock, flags);
892 smsc911x_mac_write(pdata, MAC_CR, 0);
893 spin_unlock_irqrestore(&pdata->mac_lock, flags);
894
895 /* Cancel PHY loopback mode */
896 smsc911x_mii_write(phy_dev->bus, phy_dev->addr, MII_BMCR, 0);
897
898 smsc911x_reg_write(pdata, TX_CFG, 0);
899 smsc911x_reg_write(pdata, RX_CFG, 0);
900
901 return result;
902}
903#endif /* USE_PHY_WORK_AROUND */
904
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000905static void smsc911x_phy_update_flowcontrol(struct smsc911x_data *pdata)
906{
907 struct phy_device *phy_dev = pdata->phy_dev;
908 u32 afc = smsc911x_reg_read(pdata, AFC_CFG);
909 u32 flow;
910 unsigned long flags;
911
912 if (phy_dev->duplex == DUPLEX_FULL) {
913 u16 lcladv = phy_read(phy_dev, MII_ADVERTISE);
914 u16 rmtadv = phy_read(phy_dev, MII_LPA);
Steve Glendinningbc02ff92008-12-16 02:00:48 -0800915 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000916
917 if (cap & FLOW_CTRL_RX)
918 flow = 0xFFFF0002;
919 else
920 flow = 0;
921
922 if (cap & FLOW_CTRL_TX)
923 afc |= 0xF;
924 else
925 afc &= ~0xF;
926
Joe Perchesdffc6b22011-03-25 14:21:22 +0000927 SMSC_TRACE(pdata, hw, "rx pause %s, tx pause %s",
928 (cap & FLOW_CTRL_RX ? "enabled" : "disabled"),
929 (cap & FLOW_CTRL_TX ? "enabled" : "disabled"));
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000930 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000931 SMSC_TRACE(pdata, hw, "half duplex");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000932 flow = 0;
933 afc |= 0xF;
934 }
935
936 spin_lock_irqsave(&pdata->mac_lock, flags);
937 smsc911x_mac_write(pdata, FLOW, flow);
938 spin_unlock_irqrestore(&pdata->mac_lock, flags);
939
940 smsc911x_reg_write(pdata, AFC_CFG, afc);
941}
942
943/* Update link mode if anything has changed. Called periodically when the
944 * PHY is in polling mode, even if nothing has changed. */
945static void smsc911x_phy_adjust_link(struct net_device *dev)
946{
947 struct smsc911x_data *pdata = netdev_priv(dev);
948 struct phy_device *phy_dev = pdata->phy_dev;
949 unsigned long flags;
950 int carrier;
951
952 if (phy_dev->duplex != pdata->last_duplex) {
953 unsigned int mac_cr;
Joe Perchesdffc6b22011-03-25 14:21:22 +0000954 SMSC_TRACE(pdata, hw, "duplex state has changed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000955
956 spin_lock_irqsave(&pdata->mac_lock, flags);
957 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
958 if (phy_dev->duplex) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000959 SMSC_TRACE(pdata, hw,
960 "configuring for full duplex mode");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000961 mac_cr |= MAC_CR_FDPX_;
962 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000963 SMSC_TRACE(pdata, hw,
964 "configuring for half duplex mode");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000965 mac_cr &= ~MAC_CR_FDPX_;
966 }
967 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
968 spin_unlock_irqrestore(&pdata->mac_lock, flags);
969
970 smsc911x_phy_update_flowcontrol(pdata);
971 pdata->last_duplex = phy_dev->duplex;
972 }
973
974 carrier = netif_carrier_ok(dev);
975 if (carrier != pdata->last_carrier) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000976 SMSC_TRACE(pdata, hw, "carrier state has changed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000977 if (carrier) {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000978 SMSC_TRACE(pdata, hw, "configuring for carrier OK");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000979 if ((pdata->gpio_orig_setting & GPIO_CFG_LED1_EN_) &&
980 (!pdata->using_extphy)) {
Thomas Weber88393162010-03-16 11:47:56 +0100981 /* Restore original GPIO configuration */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000982 pdata->gpio_setting = pdata->gpio_orig_setting;
983 smsc911x_reg_write(pdata, GPIO_CFG,
984 pdata->gpio_setting);
985 }
986 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +0000987 SMSC_TRACE(pdata, hw, "configuring for no carrier");
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000988 /* Check global setting that LED1
989 * usage is 10/100 indicator */
990 pdata->gpio_setting = smsc911x_reg_read(pdata,
991 GPIO_CFG);
Joe Perches8e95a202009-12-03 07:58:21 +0000992 if ((pdata->gpio_setting & GPIO_CFG_LED1_EN_) &&
993 (!pdata->using_extphy)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000994 /* Force 10/100 LED off, after saving
Thomas Weber88393162010-03-16 11:47:56 +0100995 * original GPIO configuration */
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000996 pdata->gpio_orig_setting = pdata->gpio_setting;
997
998 pdata->gpio_setting &= ~GPIO_CFG_LED1_EN_;
999 pdata->gpio_setting |= (GPIO_CFG_GPIOBUF0_
1000 | GPIO_CFG_GPIODIR0_
1001 | GPIO_CFG_GPIOD0_);
1002 smsc911x_reg_write(pdata, GPIO_CFG,
1003 pdata->gpio_setting);
1004 }
1005 }
1006 pdata->last_carrier = carrier;
1007 }
1008}
1009
1010static int smsc911x_mii_probe(struct net_device *dev)
1011{
1012 struct smsc911x_data *pdata = netdev_priv(dev);
1013 struct phy_device *phydev = NULL;
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001014 int ret;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001015
1016 /* find the first phy */
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001017 phydev = phy_find_first(pdata->mii_bus);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001018 if (!phydev) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001019 netdev_err(dev, "no PHY found\n");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001020 return -ENODEV;
1021 }
1022
Joe Perchesdffc6b22011-03-25 14:21:22 +00001023 SMSC_TRACE(pdata, probe, "PHY: addr %d, phy_id 0x%08X",
1024 phydev->addr, phydev->phy_id);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001025
Florian Fainellif9a8f832013-01-14 00:52:52 +00001026 ret = phy_connect_direct(dev, phydev, &smsc911x_phy_adjust_link,
1027 pdata->config.phy_interface);
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001028
1029 if (ret) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001030 netdev_err(dev, "Could not attach to PHY\n");
kirjanov@gmail.come4a474f2010-02-16 21:54:58 +00001031 return ret;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001032 }
1033
Andrew Lunn22209432016-01-06 20:11:13 +01001034 phy_attached_info(phydev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001035
1036 /* mask with MAC supported features */
1037 phydev->supported &= (PHY_BASIC_FEATURES | SUPPORTED_Pause |
1038 SUPPORTED_Asym_Pause);
1039 phydev->advertising = phydev->supported;
1040
1041 pdata->phy_dev = phydev;
1042 pdata->last_duplex = -1;
1043 pdata->last_carrier = -1;
1044
1045#ifdef USE_PHY_WORK_AROUND
1046 if (smsc911x_phy_loopbacktest(dev) < 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001047 SMSC_WARN(pdata, hw, "Failed Loop Back Test");
Pavel Fedinb43c1422015-10-29 09:45:22 +03001048 phy_disconnect(phydev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001049 return -ENODEV;
1050 }
Joe Perchesdffc6b22011-03-25 14:21:22 +00001051 SMSC_TRACE(pdata, hw, "Passed Loop Back Test");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001052#endif /* USE_PHY_WORK_AROUND */
1053
Joe Perchesdffc6b22011-03-25 14:21:22 +00001054 SMSC_TRACE(pdata, hw, "phy initialised successfully");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001055 return 0;
1056}
1057
Bill Pemberton8489ec12012-12-03 09:23:38 -05001058static int smsc911x_mii_init(struct platform_device *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001059 struct net_device *dev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001060{
1061 struct smsc911x_data *pdata = netdev_priv(dev);
1062 int err = -ENXIO, i;
1063
1064 pdata->mii_bus = mdiobus_alloc();
1065 if (!pdata->mii_bus) {
1066 err = -ENOMEM;
1067 goto err_out_1;
1068 }
1069
1070 pdata->mii_bus->name = SMSC_MDIONAME;
Florian Fainelli09ef0782012-01-09 23:59:19 +00001071 snprintf(pdata->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
1072 pdev->name, pdev->id);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001073 pdata->mii_bus->priv = pdata;
1074 pdata->mii_bus->read = smsc911x_mii_read;
1075 pdata->mii_bus->write = smsc911x_mii_write;
1076 pdata->mii_bus->irq = pdata->phy_irq;
1077 for (i = 0; i < PHY_MAX_ADDR; ++i)
1078 pdata->mii_bus->irq[i] = PHY_POLL;
1079
1080 pdata->mii_bus->parent = &pdev->dev;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001081
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001082 switch (pdata->idrev & 0xFFFF0000) {
1083 case 0x01170000:
1084 case 0x01150000:
1085 case 0x117A0000:
1086 case 0x115A0000:
1087 /* External PHY supported, try to autodetect */
Steve Glendinningd23f0282009-01-27 06:51:11 +00001088 smsc911x_phy_initialise_external(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001089 break;
1090 default:
Joe Perchesdffc6b22011-03-25 14:21:22 +00001091 SMSC_TRACE(pdata, hw, "External PHY is not supported, "
1092 "using internal PHY");
Steve Glendinningd23f0282009-01-27 06:51:11 +00001093 pdata->using_extphy = 0;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001094 break;
1095 }
1096
1097 if (!pdata->using_extphy) {
1098 /* Mask all PHYs except ID 1 (internal) */
1099 pdata->mii_bus->phy_mask = ~(1 << 1);
1100 }
1101
1102 if (mdiobus_register(pdata->mii_bus)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001103 SMSC_WARN(pdata, probe, "Error registering mii bus");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001104 goto err_out_free_bus_2;
1105 }
1106
1107 if (smsc911x_mii_probe(dev) < 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001108 SMSC_WARN(pdata, probe, "Error registering mii bus");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001109 goto err_out_unregister_bus_3;
1110 }
1111
1112 return 0;
1113
1114err_out_unregister_bus_3:
1115 mdiobus_unregister(pdata->mii_bus);
1116err_out_free_bus_2:
1117 mdiobus_free(pdata->mii_bus);
1118err_out_1:
1119 return err;
1120}
1121
1122/* Gets the number of tx statuses in the fifo */
1123static unsigned int smsc911x_tx_get_txstatcount(struct smsc911x_data *pdata)
1124{
1125 return (smsc911x_reg_read(pdata, TX_FIFO_INF)
1126 & TX_FIFO_INF_TSUSED_) >> 16;
1127}
1128
1129/* Reads tx statuses and increments counters where necessary */
1130static void smsc911x_tx_update_txcounters(struct net_device *dev)
1131{
1132 struct smsc911x_data *pdata = netdev_priv(dev);
1133 unsigned int tx_stat;
1134
1135 while ((tx_stat = smsc911x_tx_get_txstatus(pdata)) != 0) {
1136 if (unlikely(tx_stat & 0x80000000)) {
1137 /* In this driver the packet tag is used as the packet
1138 * length. Since a packet length can never reach the
1139 * size of 0x8000, this bit is reserved. It is worth
1140 * noting that the "reserved bit" in the warning above
1141 * does not reference a hardware defined reserved bit
1142 * but rather a driver defined one.
1143 */
Joe Perchesdffc6b22011-03-25 14:21:22 +00001144 SMSC_WARN(pdata, hw, "Packet tag reserved bit is high");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001145 } else {
Steve Glendinning785b6f92009-03-19 00:24:44 +00001146 if (unlikely(tx_stat & TX_STS_ES_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001147 dev->stats.tx_errors++;
1148 } else {
1149 dev->stats.tx_packets++;
1150 dev->stats.tx_bytes += (tx_stat >> 16);
1151 }
Steve Glendinning785b6f92009-03-19 00:24:44 +00001152 if (unlikely(tx_stat & TX_STS_EXCESS_COL_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001153 dev->stats.collisions += 16;
1154 dev->stats.tx_aborted_errors += 1;
1155 } else {
1156 dev->stats.collisions +=
1157 ((tx_stat >> 3) & 0xF);
1158 }
Steve Glendinning785b6f92009-03-19 00:24:44 +00001159 if (unlikely(tx_stat & TX_STS_LOST_CARRIER_))
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001160 dev->stats.tx_carrier_errors += 1;
Steve Glendinning785b6f92009-03-19 00:24:44 +00001161 if (unlikely(tx_stat & TX_STS_LATE_COL_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001162 dev->stats.collisions++;
1163 dev->stats.tx_aborted_errors++;
1164 }
1165 }
1166 }
1167}
1168
1169/* Increments the Rx error counters */
1170static void
1171smsc911x_rx_counterrors(struct net_device *dev, unsigned int rxstat)
1172{
1173 int crc_err = 0;
1174
Steve Glendinning785b6f92009-03-19 00:24:44 +00001175 if (unlikely(rxstat & RX_STS_ES_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001176 dev->stats.rx_errors++;
Steve Glendinning785b6f92009-03-19 00:24:44 +00001177 if (unlikely(rxstat & RX_STS_CRC_ERR_)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001178 dev->stats.rx_crc_errors++;
1179 crc_err = 1;
1180 }
1181 }
1182 if (likely(!crc_err)) {
Steve Glendinning785b6f92009-03-19 00:24:44 +00001183 if (unlikely((rxstat & RX_STS_FRAME_TYPE_) &&
1184 (rxstat & RX_STS_LENGTH_ERR_)))
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001185 dev->stats.rx_length_errors++;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001186 if (rxstat & RX_STS_MCAST_)
1187 dev->stats.multicast++;
1188 }
1189}
1190
1191/* Quickly dumps bad packets */
1192static void
Will Deacon3c5e9792012-04-12 05:54:09 +00001193smsc911x_rx_fastforward(struct smsc911x_data *pdata, unsigned int pktwords)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001194{
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001195 if (likely(pktwords >= 4)) {
1196 unsigned int timeout = 500;
1197 unsigned int val;
1198 smsc911x_reg_write(pdata, RX_DP_CTRL, RX_DP_CTRL_RX_FFWD_);
1199 do {
1200 udelay(1);
1201 val = smsc911x_reg_read(pdata, RX_DP_CTRL);
Steve Glendinning8dacd542009-03-04 07:33:24 +00001202 } while ((val & RX_DP_CTRL_RX_FFWD_) && --timeout);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001203
1204 if (unlikely(timeout == 0))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001205 SMSC_WARN(pdata, hw, "Timed out waiting for "
1206 "RX FFWD to finish, RX_DP_CTRL: 0x%08X", val);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001207 } else {
1208 unsigned int temp;
1209 while (pktwords--)
1210 temp = smsc911x_reg_read(pdata, RX_DATA_FIFO);
1211 }
1212}
1213
1214/* NAPI poll function */
1215static int smsc911x_poll(struct napi_struct *napi, int budget)
1216{
1217 struct smsc911x_data *pdata =
1218 container_of(napi, struct smsc911x_data, napi);
1219 struct net_device *dev = pdata->dev;
1220 int npackets = 0;
1221
Sriramf88c5b92009-11-12 02:14:38 +00001222 while (npackets < budget) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001223 unsigned int pktlength;
1224 unsigned int pktwords;
1225 struct sk_buff *skb;
1226 unsigned int rxstat = smsc911x_rx_get_rxstatus(pdata);
1227
1228 if (!rxstat) {
1229 unsigned int temp;
1230 /* We processed all packets available. Tell NAPI it can
1231 * stop polling then re-enable rx interrupts */
1232 smsc911x_reg_write(pdata, INT_STS, INT_STS_RSFL_);
Ben Hutchings288379f2009-01-19 16:43:59 -08001233 napi_complete(napi);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001234 temp = smsc911x_reg_read(pdata, INT_EN);
1235 temp |= INT_EN_RSFL_EN_;
1236 smsc911x_reg_write(pdata, INT_EN, temp);
1237 break;
1238 }
1239
1240 /* Count packet for NAPI scheduling, even if it has an error.
1241 * Error packets still require cycles to discard */
1242 npackets++;
1243
1244 pktlength = ((rxstat & 0x3FFF0000) >> 16);
1245 pktwords = (pktlength + NET_IP_ALIGN + 3) >> 2;
1246 smsc911x_rx_counterrors(dev, rxstat);
1247
1248 if (unlikely(rxstat & RX_STS_ES_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001249 SMSC_WARN(pdata, rx_err,
1250 "Discarding packet with error bit set");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001251 /* Packet has an error, discard it and continue with
1252 * the next */
1253 smsc911x_rx_fastforward(pdata, pktwords);
1254 dev->stats.rx_dropped++;
1255 continue;
1256 }
1257
Will Deacon3c5e9792012-04-12 05:54:09 +00001258 skb = netdev_alloc_skb(dev, pktwords << 2);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001259 if (unlikely(!skb)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001260 SMSC_WARN(pdata, rx_err,
1261 "Unable to allocate skb for rx packet");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001262 /* Drop the packet and stop this polling iteration */
1263 smsc911x_rx_fastforward(pdata, pktwords);
1264 dev->stats.rx_dropped++;
1265 break;
1266 }
1267
Will Deacon3c5e9792012-04-12 05:54:09 +00001268 pdata->ops->rx_readfifo(pdata,
1269 (unsigned int *)skb->data, pktwords);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001270
1271 /* Align IP on 16B boundary */
1272 skb_reserve(skb, NET_IP_ALIGN);
1273 skb_put(skb, pktlength - 4);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001274 skb->protocol = eth_type_trans(skb, dev);
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001275 skb_checksum_none_assert(skb);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001276 netif_receive_skb(skb);
1277
1278 /* Update counters */
1279 dev->stats.rx_packets++;
1280 dev->stats.rx_bytes += (pktlength - 4);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001281 }
1282
1283 /* Return total received packets */
1284 return npackets;
1285}
1286
1287/* Returns hash bit number for given MAC address
1288 * Example:
1289 * 01 00 5E 00 00 01 -> returns bit number 31 */
1290static unsigned int smsc911x_hash(char addr[ETH_ALEN])
1291{
1292 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
1293}
1294
1295static void smsc911x_rx_multicast_update(struct smsc911x_data *pdata)
1296{
1297 /* Performs the multicast & mac_cr update. This is called when
1298 * safe on the current hardware, and with the mac_lock held */
1299 unsigned int mac_cr;
1300
1301 SMSC_ASSERT_MAC_LOCK(pdata);
1302
1303 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1304 mac_cr |= pdata->set_bits_mask;
1305 mac_cr &= ~(pdata->clear_bits_mask);
1306 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1307 smsc911x_mac_write(pdata, HASHH, pdata->hashhi);
1308 smsc911x_mac_write(pdata, HASHL, pdata->hashlo);
Joe Perchesdffc6b22011-03-25 14:21:22 +00001309 SMSC_TRACE(pdata, hw, "maccr 0x%08X, HASHH 0x%08X, HASHL 0x%08X",
1310 mac_cr, pdata->hashhi, pdata->hashlo);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001311}
1312
1313static void smsc911x_rx_multicast_update_workaround(struct smsc911x_data *pdata)
1314{
1315 unsigned int mac_cr;
1316
1317 /* This function is only called for older LAN911x devices
1318 * (revA or revB), where MAC_CR, HASHH and HASHL should not
1319 * be modified during Rx - newer devices immediately update the
1320 * registers.
1321 *
1322 * This is called from interrupt context */
1323
1324 spin_lock(&pdata->mac_lock);
1325
1326 /* Check Rx has stopped */
1327 if (smsc911x_mac_read(pdata, MAC_CR) & MAC_CR_RXEN_)
Joe Perchesdffc6b22011-03-25 14:21:22 +00001328 SMSC_WARN(pdata, drv, "Rx not stopped");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001329
1330 /* Perform the update - safe to do now Rx has stopped */
1331 smsc911x_rx_multicast_update(pdata);
1332
1333 /* Re-enable Rx */
1334 mac_cr = smsc911x_mac_read(pdata, MAC_CR);
1335 mac_cr |= MAC_CR_RXEN_;
1336 smsc911x_mac_write(pdata, MAC_CR, mac_cr);
1337
1338 pdata->multicast_update_pending = 0;
1339
1340 spin_unlock(&pdata->mac_lock);
1341}
1342
Enric Balletbo i Serraccf899a2014-11-13 09:14:34 +01001343static int smsc911x_phy_general_power_up(struct smsc911x_data *pdata)
1344{
1345 int rc = 0;
1346
1347 if (!pdata->phy_dev)
1348 return rc;
1349
1350 /* If the internal PHY is in General Power-Down mode, all, except the
1351 * management interface, is powered-down and stays in that condition as
1352 * long as Phy register bit 0.11 is HIGH.
1353 *
1354 * In that case, clear the bit 0.11, so the PHY powers up and we can
1355 * access to the phy registers.
1356 */
1357 rc = phy_read(pdata->phy_dev, MII_BMCR);
1358 if (rc < 0) {
1359 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1360 return rc;
1361 }
1362
1363 /* If the PHY general power-down bit is not set is not necessary to
1364 * disable the general power down-mode.
1365 */
1366 if (rc & BMCR_PDOWN) {
1367 rc = phy_write(pdata->phy_dev, MII_BMCR, rc & ~BMCR_PDOWN);
1368 if (rc < 0) {
1369 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1370 return rc;
1371 }
1372
1373 usleep_range(1000, 1500);
1374 }
1375
1376 return 0;
1377}
1378
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001379static int smsc911x_phy_disable_energy_detect(struct smsc911x_data *pdata)
1380{
1381 int rc = 0;
1382
1383 if (!pdata->phy_dev)
1384 return rc;
1385
1386 rc = phy_read(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS);
1387
1388 if (rc < 0) {
1389 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1390 return rc;
1391 }
1392
Alexander Kochetkov242bcd52014-11-13 05:26:19 +04001393 /* Only disable if energy detect mode is already enabled */
1394 if (rc & MII_LAN83C185_EDPWRDOWN) {
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001395 /* Disable energy detect mode for this SMSC Transceivers */
1396 rc = phy_write(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS,
1397 rc & (~MII_LAN83C185_EDPWRDOWN));
1398
1399 if (rc < 0) {
1400 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1401 return rc;
1402 }
Alexander Kochetkov6ff53fd2014-11-13 05:26:20 +04001403 /* Allow PHY to wakeup */
1404 mdelay(2);
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001405 }
1406
1407 return 0;
1408}
1409
1410static int smsc911x_phy_enable_energy_detect(struct smsc911x_data *pdata)
1411{
1412 int rc = 0;
1413
1414 if (!pdata->phy_dev)
1415 return rc;
1416
1417 rc = phy_read(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS);
1418
1419 if (rc < 0) {
1420 SMSC_WARN(pdata, drv, "Failed reading PHY control reg");
1421 return rc;
1422 }
1423
1424 /* Only enable if energy detect mode is already disabled */
1425 if (!(rc & MII_LAN83C185_EDPWRDOWN)) {
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001426 /* Enable energy detect mode for this SMSC Transceivers */
1427 rc = phy_write(pdata->phy_dev, MII_LAN83C185_CTRL_STATUS,
1428 rc | MII_LAN83C185_EDPWRDOWN);
1429
1430 if (rc < 0) {
1431 SMSC_WARN(pdata, drv, "Failed writing PHY control reg");
1432 return rc;
1433 }
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001434 }
1435 return 0;
1436}
1437
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001438static int smsc911x_soft_reset(struct smsc911x_data *pdata)
1439{
1440 unsigned int timeout;
1441 unsigned int temp;
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001442 int ret;
1443
1444 /*
Enric Balletbo i Serraccf899a2014-11-13 09:14:34 +01001445 * Make sure to power-up the PHY chip before doing a reset, otherwise
1446 * the reset fails.
1447 */
1448 ret = smsc911x_phy_general_power_up(pdata);
1449 if (ret) {
1450 SMSC_WARN(pdata, drv, "Failed to power-up the PHY chip");
1451 return ret;
1452 }
1453
1454 /*
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001455 * LAN9210/LAN9211/LAN9220/LAN9221 chips have an internal PHY that
1456 * are initialized in a Energy Detect Power-Down mode that prevents
1457 * the MAC chip to be software reseted. So we have to wakeup the PHY
1458 * before.
1459 */
1460 if (pdata->generation == 4) {
1461 ret = smsc911x_phy_disable_energy_detect(pdata);
1462
1463 if (ret) {
1464 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1465 return ret;
1466 }
1467 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001468
1469 /* Reset the LAN911x */
1470 smsc911x_reg_write(pdata, HW_CFG, HW_CFG_SRST_);
1471 timeout = 10;
1472 do {
1473 udelay(10);
1474 temp = smsc911x_reg_read(pdata, HW_CFG);
1475 } while ((--timeout) && (temp & HW_CFG_SRST_));
1476
1477 if (unlikely(temp & HW_CFG_SRST_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001478 SMSC_WARN(pdata, drv, "Failed to complete reset");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001479 return -EIO;
1480 }
Javier Martinez Canillas63869942012-01-03 13:36:19 +00001481
1482 if (pdata->generation == 4) {
1483 ret = smsc911x_phy_enable_energy_detect(pdata);
1484
1485 if (ret) {
1486 SMSC_WARN(pdata, drv, "Failed to wakeup the PHY chip");
1487 return ret;
1488 }
1489 }
1490
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001491 return 0;
1492}
1493
1494/* Sets the device MAC address to dev_addr, called with mac_lock held */
1495static void
Steve Glendinning225ddf42009-03-19 00:24:46 +00001496smsc911x_set_hw_mac_address(struct smsc911x_data *pdata, u8 dev_addr[6])
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001497{
1498 u32 mac_high16 = (dev_addr[5] << 8) | dev_addr[4];
1499 u32 mac_low32 = (dev_addr[3] << 24) | (dev_addr[2] << 16) |
1500 (dev_addr[1] << 8) | dev_addr[0];
1501
1502 SMSC_ASSERT_MAC_LOCK(pdata);
1503
1504 smsc911x_mac_write(pdata, ADDRH, mac_high16);
1505 smsc911x_mac_write(pdata, ADDRL, mac_low32);
1506}
1507
Matthias Brugger8e276282012-06-22 01:10:15 +00001508static void smsc911x_disable_irq_chip(struct net_device *dev)
1509{
1510 struct smsc911x_data *pdata = netdev_priv(dev);
1511
1512 smsc911x_reg_write(pdata, INT_EN, 0);
1513 smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
1514}
1515
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001516static int smsc911x_open(struct net_device *dev)
1517{
1518 struct smsc911x_data *pdata = netdev_priv(dev);
1519 unsigned int timeout;
1520 unsigned int temp;
1521 unsigned int intcfg;
1522
1523 /* if the phy is not yet registered, retry later*/
1524 if (!pdata->phy_dev) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001525 SMSC_WARN(pdata, hw, "phy_dev is NULL");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001526 return -EAGAIN;
1527 }
1528
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001529 /* Reset the LAN911x */
1530 if (smsc911x_soft_reset(pdata)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001531 SMSC_WARN(pdata, hw, "soft reset failed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001532 return -EIO;
1533 }
1534
1535 smsc911x_reg_write(pdata, HW_CFG, 0x00050000);
1536 smsc911x_reg_write(pdata, AFC_CFG, 0x006E3740);
1537
Göran Weinholtf277e652011-03-02 04:07:21 +00001538 /* Increase the legal frame size of VLAN tagged frames to 1522 bytes */
1539 spin_lock_irq(&pdata->mac_lock);
1540 smsc911x_mac_write(pdata, VLAN1, ETH_P_8021Q);
1541 spin_unlock_irq(&pdata->mac_lock);
1542
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001543 /* Make sure EEPROM has finished loading before setting GPIO_CFG */
1544 timeout = 50;
Steve Glendinningf7efb6c2009-03-04 07:33:25 +00001545 while ((smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) &&
1546 --timeout) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001547 udelay(10);
1548 }
1549
1550 if (unlikely(timeout == 0))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001551 SMSC_WARN(pdata, ifup,
1552 "Timed out waiting for EEPROM busy bit to clear");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001553
1554 smsc911x_reg_write(pdata, GPIO_CFG, 0x70070000);
1555
1556 /* The soft reset above cleared the device's MAC address,
1557 * restore it from local copy (set in probe) */
1558 spin_lock_irq(&pdata->mac_lock);
Steve Glendinning225ddf42009-03-19 00:24:46 +00001559 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001560 spin_unlock_irq(&pdata->mac_lock);
1561
1562 /* Initialise irqs, but leave all sources disabled */
Matthias Brugger8e276282012-06-22 01:10:15 +00001563 smsc911x_disable_irq_chip(dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001564
1565 /* Set interrupt deassertion to 100uS */
1566 intcfg = ((10 << 24) | INT_CFG_IRQ_EN_);
1567
Steve Glendinning2107fb82008-11-05 00:35:38 +00001568 if (pdata->config.irq_polarity) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001569 SMSC_TRACE(pdata, ifup, "irq polarity: active high");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001570 intcfg |= INT_CFG_IRQ_POL_;
1571 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001572 SMSC_TRACE(pdata, ifup, "irq polarity: active low");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001573 }
1574
Steve Glendinning2107fb82008-11-05 00:35:38 +00001575 if (pdata->config.irq_type) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001576 SMSC_TRACE(pdata, ifup, "irq type: push-pull");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001577 intcfg |= INT_CFG_IRQ_TYPE_;
1578 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001579 SMSC_TRACE(pdata, ifup, "irq type: open drain");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001580 }
1581
1582 smsc911x_reg_write(pdata, INT_CFG, intcfg);
1583
Joe Perchesdffc6b22011-03-25 14:21:22 +00001584 SMSC_TRACE(pdata, ifup, "Testing irq handler using IRQ %d", dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001585 pdata->software_irq_signal = 0;
1586 smp_wmb();
1587
1588 temp = smsc911x_reg_read(pdata, INT_EN);
1589 temp |= INT_EN_SW_INT_EN_;
1590 smsc911x_reg_write(pdata, INT_EN, temp);
1591
1592 timeout = 1000;
1593 while (timeout--) {
1594 if (pdata->software_irq_signal)
1595 break;
1596 msleep(1);
1597 }
1598
1599 if (!pdata->software_irq_signal) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001600 netdev_warn(dev, "ISR failed signaling test (IRQ %d)\n",
1601 dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001602 return -ENODEV;
1603 }
Joe Perchesdffc6b22011-03-25 14:21:22 +00001604 SMSC_TRACE(pdata, ifup, "IRQ handler passed test using IRQ %d",
1605 dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001606
Joe Perchesdffc6b22011-03-25 14:21:22 +00001607 netdev_info(dev, "SMSC911x/921x identified at %#08lx, IRQ: %d\n",
1608 (unsigned long)pdata->ioaddr, dev->irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001609
Steve Glendinning44c1d6f2009-03-18 23:37:18 -07001610 /* Reset the last known duplex and carrier */
1611 pdata->last_duplex = -1;
1612 pdata->last_carrier = -1;
1613
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001614 /* Bring the PHY up */
1615 phy_start(pdata->phy_dev);
1616
1617 temp = smsc911x_reg_read(pdata, HW_CFG);
1618 /* Preserve TX FIFO size and external PHY configuration */
1619 temp &= (HW_CFG_TX_FIF_SZ_|0x00000FFF);
1620 temp |= HW_CFG_SF_;
1621 smsc911x_reg_write(pdata, HW_CFG, temp);
1622
1623 temp = smsc911x_reg_read(pdata, FIFO_INT);
1624 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1625 temp &= ~(FIFO_INT_RX_STS_LEVEL_);
1626 smsc911x_reg_write(pdata, FIFO_INT, temp);
1627
1628 /* set RX Data offset to 2 bytes for alignment */
Will Deacon3c5e9792012-04-12 05:54:09 +00001629 smsc911x_reg_write(pdata, RX_CFG, (NET_IP_ALIGN << 8));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001630
1631 /* enable NAPI polling before enabling RX interrupts */
1632 napi_enable(&pdata->napi);
1633
1634 temp = smsc911x_reg_read(pdata, INT_EN);
Steve Glendinning1373c0f2009-01-26 21:33:16 -08001635 temp |= (INT_EN_TDFA_EN_ | INT_EN_RSFL_EN_ | INT_EN_RXSTOP_INT_EN_);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001636 smsc911x_reg_write(pdata, INT_EN, temp);
1637
1638 spin_lock_irq(&pdata->mac_lock);
1639 temp = smsc911x_mac_read(pdata, MAC_CR);
1640 temp |= (MAC_CR_TXEN_ | MAC_CR_RXEN_ | MAC_CR_HBDIS_);
1641 smsc911x_mac_write(pdata, MAC_CR, temp);
1642 spin_unlock_irq(&pdata->mac_lock);
1643
1644 smsc911x_reg_write(pdata, TX_CFG, TX_CFG_TX_ON_);
1645
1646 netif_start_queue(dev);
1647 return 0;
1648}
1649
1650/* Entry point for stopping the interface */
1651static int smsc911x_stop(struct net_device *dev)
1652{
1653 struct smsc911x_data *pdata = netdev_priv(dev);
1654 unsigned int temp;
1655
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001656 /* Disable all device interrupts */
1657 temp = smsc911x_reg_read(pdata, INT_CFG);
1658 temp &= ~INT_CFG_IRQ_EN_;
1659 smsc911x_reg_write(pdata, INT_CFG, temp);
1660
1661 /* Stop Tx and Rx polling */
1662 netif_stop_queue(dev);
1663 napi_disable(&pdata->napi);
1664
1665 /* At this point all Rx and Tx activity is stopped */
1666 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1667 smsc911x_tx_update_txcounters(dev);
1668
1669 /* Bring the PHY down */
Steve Glendinningdd045192008-12-25 16:40:19 -08001670 if (pdata->phy_dev)
1671 phy_stop(pdata->phy_dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001672
Joe Perchesdffc6b22011-03-25 14:21:22 +00001673 SMSC_TRACE(pdata, ifdown, "Interface stopped");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001674 return 0;
1675}
1676
1677/* Entry point for transmitting a packet */
1678static int smsc911x_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1679{
1680 struct smsc911x_data *pdata = netdev_priv(dev);
1681 unsigned int freespace;
1682 unsigned int tx_cmd_a;
1683 unsigned int tx_cmd_b;
1684 unsigned int temp;
1685 u32 wrsz;
1686 ulong bufp;
1687
1688 freespace = smsc911x_reg_read(pdata, TX_FIFO_INF) & TX_FIFO_INF_TDFREE_;
1689
1690 if (unlikely(freespace < TX_FIFO_LOW_THRESHOLD))
Joe Perchesdffc6b22011-03-25 14:21:22 +00001691 SMSC_WARN(pdata, tx_err,
1692 "Tx data fifo low, space available: %d", freespace);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001693
1694 /* Word alignment adjustment */
1695 tx_cmd_a = (u32)((ulong)skb->data & 0x03) << 16;
1696 tx_cmd_a |= TX_CMD_A_FIRST_SEG_ | TX_CMD_A_LAST_SEG_;
1697 tx_cmd_a |= (unsigned int)skb->len;
1698
1699 tx_cmd_b = ((unsigned int)skb->len) << 16;
1700 tx_cmd_b |= (unsigned int)skb->len;
1701
1702 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_a);
1703 smsc911x_reg_write(pdata, TX_DATA_FIFO, tx_cmd_b);
1704
1705 bufp = (ulong)skb->data & (~0x3);
1706 wrsz = (u32)skb->len + 3;
1707 wrsz += (u32)((ulong)skb->data & 0x3);
1708 wrsz >>= 2;
1709
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -07001710 pdata->ops->tx_writefifo(pdata, (unsigned int *)bufp, wrsz);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001711 freespace -= (skb->len + 32);
Richard Cochran8c0069a2011-06-19 21:51:30 +00001712 skb_tx_timestamp(skb);
Eric W. Biederman89a9eb62014-03-15 18:08:52 -07001713 dev_consume_skb_any(skb);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001714
1715 if (unlikely(smsc911x_tx_get_txstatcount(pdata) >= 30))
1716 smsc911x_tx_update_txcounters(dev);
1717
1718 if (freespace < TX_FIFO_LOW_THRESHOLD) {
1719 netif_stop_queue(dev);
1720 temp = smsc911x_reg_read(pdata, FIFO_INT);
1721 temp &= 0x00FFFFFF;
1722 temp |= 0x32000000;
1723 smsc911x_reg_write(pdata, FIFO_INT, temp);
1724 }
1725
1726 return NETDEV_TX_OK;
1727}
1728
1729/* Entry point for getting status counters */
1730static struct net_device_stats *smsc911x_get_stats(struct net_device *dev)
1731{
1732 struct smsc911x_data *pdata = netdev_priv(dev);
1733 smsc911x_tx_update_txcounters(dev);
1734 dev->stats.rx_dropped += smsc911x_reg_read(pdata, RX_DROP);
1735 return &dev->stats;
1736}
1737
1738/* Entry point for setting addressing modes */
1739static void smsc911x_set_multicast_list(struct net_device *dev)
1740{
1741 struct smsc911x_data *pdata = netdev_priv(dev);
1742 unsigned long flags;
1743
1744 if (dev->flags & IFF_PROMISC) {
1745 /* Enabling promiscuous mode */
1746 pdata->set_bits_mask = MAC_CR_PRMS_;
1747 pdata->clear_bits_mask = (MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1748 pdata->hashhi = 0;
1749 pdata->hashlo = 0;
1750 } else if (dev->flags & IFF_ALLMULTI) {
1751 /* Enabling all multicast mode */
1752 pdata->set_bits_mask = MAC_CR_MCPAS_;
1753 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_HPFILT_);
1754 pdata->hashhi = 0;
1755 pdata->hashlo = 0;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001756 } else if (!netdev_mc_empty(dev)) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001757 /* Enabling specific multicast addresses */
1758 unsigned int hash_high = 0;
1759 unsigned int hash_low = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001760 struct netdev_hw_addr *ha;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001761
1762 pdata->set_bits_mask = MAC_CR_HPFILT_;
1763 pdata->clear_bits_mask = (MAC_CR_PRMS_ | MAC_CR_MCPAS_);
1764
Jiri Pirko22bedad32010-04-01 21:22:57 +00001765 netdev_for_each_mc_addr(ha, dev) {
1766 unsigned int bitnum = smsc911x_hash(ha->addr);
Jiri Pirko2a0d18f2010-02-17 23:22:38 +00001767 unsigned int mask = 0x01 << (bitnum & 0x1F);
1768
1769 if (bitnum & 0x20)
1770 hash_high |= mask;
1771 else
1772 hash_low |= mask;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001773 }
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001774
1775 pdata->hashhi = hash_high;
1776 pdata->hashlo = hash_low;
1777 } else {
1778 /* Enabling local MAC address only */
1779 pdata->set_bits_mask = 0;
1780 pdata->clear_bits_mask =
1781 (MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
1782 pdata->hashhi = 0;
1783 pdata->hashlo = 0;
1784 }
1785
1786 spin_lock_irqsave(&pdata->mac_lock, flags);
1787
1788 if (pdata->generation <= 1) {
1789 /* Older hardware revision - cannot change these flags while
1790 * receiving data */
1791 if (!pdata->multicast_update_pending) {
1792 unsigned int temp;
Joe Perchesdffc6b22011-03-25 14:21:22 +00001793 SMSC_TRACE(pdata, hw, "scheduling mcast update");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001794 pdata->multicast_update_pending = 1;
1795
1796 /* Request the hardware to stop, then perform the
1797 * update when we get an RX_STOP interrupt */
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001798 temp = smsc911x_mac_read(pdata, MAC_CR);
1799 temp &= ~(MAC_CR_RXEN_);
1800 smsc911x_mac_write(pdata, MAC_CR, temp);
1801 } else {
1802 /* There is another update pending, this should now
1803 * use the newer values */
1804 }
1805 } else {
1806 /* Newer hardware revision - can write immediately */
1807 smsc911x_rx_multicast_update(pdata);
1808 }
1809
1810 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1811}
1812
1813static irqreturn_t smsc911x_irqhandler(int irq, void *dev_id)
1814{
1815 struct net_device *dev = dev_id;
1816 struct smsc911x_data *pdata = netdev_priv(dev);
1817 u32 intsts = smsc911x_reg_read(pdata, INT_STS);
1818 u32 inten = smsc911x_reg_read(pdata, INT_EN);
1819 int serviced = IRQ_NONE;
1820 u32 temp;
1821
1822 if (unlikely(intsts & inten & INT_STS_SW_INT_)) {
1823 temp = smsc911x_reg_read(pdata, INT_EN);
1824 temp &= (~INT_EN_SW_INT_EN_);
1825 smsc911x_reg_write(pdata, INT_EN, temp);
1826 smsc911x_reg_write(pdata, INT_STS, INT_STS_SW_INT_);
1827 pdata->software_irq_signal = 1;
1828 smp_wmb();
1829 serviced = IRQ_HANDLED;
1830 }
1831
1832 if (unlikely(intsts & inten & INT_STS_RXSTOP_INT_)) {
1833 /* Called when there is a multicast update scheduled and
1834 * it is now safe to complete the update */
Joe Perchesdffc6b22011-03-25 14:21:22 +00001835 SMSC_TRACE(pdata, intr, "RX Stop interrupt");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001836 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXSTOP_INT_);
Steve Glendinning1373c0f2009-01-26 21:33:16 -08001837 if (pdata->multicast_update_pending)
1838 smsc911x_rx_multicast_update_workaround(pdata);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001839 serviced = IRQ_HANDLED;
1840 }
1841
1842 if (intsts & inten & INT_STS_TDFA_) {
1843 temp = smsc911x_reg_read(pdata, FIFO_INT);
1844 temp |= FIFO_INT_TX_AVAIL_LEVEL_;
1845 smsc911x_reg_write(pdata, FIFO_INT, temp);
1846 smsc911x_reg_write(pdata, INT_STS, INT_STS_TDFA_);
1847 netif_wake_queue(dev);
1848 serviced = IRQ_HANDLED;
1849 }
1850
1851 if (unlikely(intsts & inten & INT_STS_RXE_)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001852 SMSC_TRACE(pdata, intr, "RX Error interrupt");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001853 smsc911x_reg_write(pdata, INT_STS, INT_STS_RXE_);
1854 serviced = IRQ_HANDLED;
1855 }
1856
1857 if (likely(intsts & inten & INT_STS_RSFL_)) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001858 if (likely(napi_schedule_prep(&pdata->napi))) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001859 /* Disable Rx interrupts */
1860 temp = smsc911x_reg_read(pdata, INT_EN);
1861 temp &= (~INT_EN_RSFL_EN_);
1862 smsc911x_reg_write(pdata, INT_EN, temp);
1863 /* Schedule a NAPI poll */
Ben Hutchings288379f2009-01-19 16:43:59 -08001864 __napi_schedule(&pdata->napi);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001865 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00001866 SMSC_WARN(pdata, rx_err, "napi_schedule_prep failed");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001867 }
1868 serviced = IRQ_HANDLED;
1869 }
1870
1871 return serviced;
1872}
1873
1874#ifdef CONFIG_NET_POLL_CONTROLLER
Steve Glendinning1757ab22008-12-12 22:31:16 -08001875static void smsc911x_poll_controller(struct net_device *dev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001876{
1877 disable_irq(dev->irq);
1878 smsc911x_irqhandler(0, dev);
1879 enable_irq(dev->irq);
1880}
1881#endif /* CONFIG_NET_POLL_CONTROLLER */
1882
Steve Glendinning225ddf42009-03-19 00:24:46 +00001883static int smsc911x_set_mac_address(struct net_device *dev, void *p)
1884{
1885 struct smsc911x_data *pdata = netdev_priv(dev);
1886 struct sockaddr *addr = p;
1887
1888 /* On older hardware revisions we cannot change the mac address
1889 * registers while receiving data. Newer devices can safely change
1890 * this at any time. */
1891 if (pdata->generation <= 1 && netif_running(dev))
1892 return -EBUSY;
1893
1894 if (!is_valid_ether_addr(addr->sa_data))
1895 return -EADDRNOTAVAIL;
1896
1897 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
1898
1899 spin_lock_irq(&pdata->mac_lock);
1900 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
1901 spin_unlock_irq(&pdata->mac_lock);
1902
Joe Perchesdffc6b22011-03-25 14:21:22 +00001903 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
Steve Glendinning225ddf42009-03-19 00:24:46 +00001904
1905 return 0;
1906}
1907
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001908/* Standard ioctls for mii-tool */
1909static int smsc911x_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1910{
1911 struct smsc911x_data *pdata = netdev_priv(dev);
1912
1913 if (!netif_running(dev) || !pdata->phy_dev)
1914 return -EINVAL;
1915
Richard Cochran28b04112010-07-17 08:48:55 +00001916 return phy_mii_ioctl(pdata->phy_dev, ifr, cmd);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001917}
1918
1919static int
1920smsc911x_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1921{
1922 struct smsc911x_data *pdata = netdev_priv(dev);
1923
1924 cmd->maxtxpkt = 1;
1925 cmd->maxrxpkt = 1;
1926 return phy_ethtool_gset(pdata->phy_dev, cmd);
1927}
1928
1929static int
1930smsc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)
1931{
1932 struct smsc911x_data *pdata = netdev_priv(dev);
1933
1934 return phy_ethtool_sset(pdata->phy_dev, cmd);
1935}
1936
1937static void smsc911x_ethtool_getdrvinfo(struct net_device *dev,
1938 struct ethtool_drvinfo *info)
1939{
1940 strlcpy(info->driver, SMSC_CHIPNAME, sizeof(info->driver));
1941 strlcpy(info->version, SMSC_DRV_VERSION, sizeof(info->version));
Kay Sieversdb1d7bf2009-01-26 21:12:58 -08001942 strlcpy(info->bus_info, dev_name(dev->dev.parent),
Steve Glendinningfd9abb32008-11-05 00:35:37 +00001943 sizeof(info->bus_info));
1944}
1945
1946static int smsc911x_ethtool_nwayreset(struct net_device *dev)
1947{
1948 struct smsc911x_data *pdata = netdev_priv(dev);
1949
1950 return phy_start_aneg(pdata->phy_dev);
1951}
1952
1953static u32 smsc911x_ethtool_getmsglevel(struct net_device *dev)
1954{
1955 struct smsc911x_data *pdata = netdev_priv(dev);
1956 return pdata->msg_enable;
1957}
1958
1959static void smsc911x_ethtool_setmsglevel(struct net_device *dev, u32 level)
1960{
1961 struct smsc911x_data *pdata = netdev_priv(dev);
1962 pdata->msg_enable = level;
1963}
1964
1965static int smsc911x_ethtool_getregslen(struct net_device *dev)
1966{
1967 return (((E2P_DATA - ID_REV) / 4 + 1) + (WUCSR - MAC_CR) + 1 + 32) *
1968 sizeof(u32);
1969}
1970
1971static void
1972smsc911x_ethtool_getregs(struct net_device *dev, struct ethtool_regs *regs,
1973 void *buf)
1974{
1975 struct smsc911x_data *pdata = netdev_priv(dev);
1976 struct phy_device *phy_dev = pdata->phy_dev;
1977 unsigned long flags;
1978 unsigned int i;
1979 unsigned int j = 0;
1980 u32 *data = buf;
1981
1982 regs->version = pdata->idrev;
1983 for (i = ID_REV; i <= E2P_DATA; i += (sizeof(u32)))
1984 data[j++] = smsc911x_reg_read(pdata, i);
1985
1986 for (i = MAC_CR; i <= WUCSR; i++) {
1987 spin_lock_irqsave(&pdata->mac_lock, flags);
1988 data[j++] = smsc911x_mac_read(pdata, i);
1989 spin_unlock_irqrestore(&pdata->mac_lock, flags);
1990 }
1991
1992 for (i = 0; i <= 31; i++)
1993 data[j++] = smsc911x_mii_read(phy_dev->bus, phy_dev->addr, i);
1994}
1995
1996static void smsc911x_eeprom_enable_access(struct smsc911x_data *pdata)
1997{
1998 unsigned int temp = smsc911x_reg_read(pdata, GPIO_CFG);
1999 temp &= ~GPIO_CFG_EEPR_EN_;
2000 smsc911x_reg_write(pdata, GPIO_CFG, temp);
2001 msleep(1);
2002}
2003
2004static int smsc911x_eeprom_send_cmd(struct smsc911x_data *pdata, u32 op)
2005{
2006 int timeout = 100;
2007 u32 e2cmd;
2008
Joe Perchesdffc6b22011-03-25 14:21:22 +00002009 SMSC_TRACE(pdata, drv, "op 0x%08x", op);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002010 if (smsc911x_reg_read(pdata, E2P_CMD) & E2P_CMD_EPC_BUSY_) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002011 SMSC_WARN(pdata, drv, "Busy at start");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002012 return -EBUSY;
2013 }
2014
2015 e2cmd = op | E2P_CMD_EPC_BUSY_;
2016 smsc911x_reg_write(pdata, E2P_CMD, e2cmd);
2017
2018 do {
2019 msleep(1);
2020 e2cmd = smsc911x_reg_read(pdata, E2P_CMD);
Roel Kluin2cf0dbe2009-02-20 00:52:19 -08002021 } while ((e2cmd & E2P_CMD_EPC_BUSY_) && (--timeout));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002022
2023 if (!timeout) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002024 SMSC_TRACE(pdata, drv, "TIMED OUT");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002025 return -EAGAIN;
2026 }
2027
2028 if (e2cmd & E2P_CMD_EPC_TIMEOUT_) {
David S. Miller1c01a802011-04-11 13:44:25 -07002029 SMSC_TRACE(pdata, drv, "Error occurred during eeprom operation");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002030 return -EINVAL;
2031 }
2032
2033 return 0;
2034}
2035
2036static int smsc911x_eeprom_read_location(struct smsc911x_data *pdata,
2037 u8 address, u8 *data)
2038{
2039 u32 op = E2P_CMD_EPC_CMD_READ_ | address;
2040 int ret;
2041
Joe Perchesdffc6b22011-03-25 14:21:22 +00002042 SMSC_TRACE(pdata, drv, "address 0x%x", address);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002043 ret = smsc911x_eeprom_send_cmd(pdata, op);
2044
2045 if (!ret)
2046 data[address] = smsc911x_reg_read(pdata, E2P_DATA);
2047
2048 return ret;
2049}
2050
2051static int smsc911x_eeprom_write_location(struct smsc911x_data *pdata,
2052 u8 address, u8 data)
2053{
2054 u32 op = E2P_CMD_EPC_CMD_ERASE_ | address;
Steve Glendinning58add9f2009-03-26 07:14:36 +00002055 u32 temp;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002056 int ret;
2057
Joe Perchesdffc6b22011-03-25 14:21:22 +00002058 SMSC_TRACE(pdata, drv, "address 0x%x, data 0x%x", address, data);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002059 ret = smsc911x_eeprom_send_cmd(pdata, op);
2060
2061 if (!ret) {
2062 op = E2P_CMD_EPC_CMD_WRITE_ | address;
2063 smsc911x_reg_write(pdata, E2P_DATA, (u32)data);
Steve Glendinning58add9f2009-03-26 07:14:36 +00002064
2065 /* Workaround for hardware read-after-write restriction */
2066 temp = smsc911x_reg_read(pdata, BYTE_TEST);
2067
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002068 ret = smsc911x_eeprom_send_cmd(pdata, op);
2069 }
2070
2071 return ret;
2072}
2073
2074static int smsc911x_ethtool_get_eeprom_len(struct net_device *dev)
2075{
2076 return SMSC911X_EEPROM_SIZE;
2077}
2078
2079static int smsc911x_ethtool_get_eeprom(struct net_device *dev,
2080 struct ethtool_eeprom *eeprom, u8 *data)
2081{
2082 struct smsc911x_data *pdata = netdev_priv(dev);
2083 u8 eeprom_data[SMSC911X_EEPROM_SIZE];
2084 int len;
2085 int i;
2086
2087 smsc911x_eeprom_enable_access(pdata);
2088
2089 len = min(eeprom->len, SMSC911X_EEPROM_SIZE);
2090 for (i = 0; i < len; i++) {
2091 int ret = smsc911x_eeprom_read_location(pdata, i, eeprom_data);
2092 if (ret < 0) {
2093 eeprom->len = 0;
2094 return ret;
2095 }
2096 }
2097
2098 memcpy(data, &eeprom_data[eeprom->offset], len);
2099 eeprom->len = len;
2100 return 0;
2101}
2102
2103static int smsc911x_ethtool_set_eeprom(struct net_device *dev,
2104 struct ethtool_eeprom *eeprom, u8 *data)
2105{
2106 int ret;
2107 struct smsc911x_data *pdata = netdev_priv(dev);
2108
2109 smsc911x_eeprom_enable_access(pdata);
2110 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWEN_);
2111 ret = smsc911x_eeprom_write_location(pdata, eeprom->offset, *data);
2112 smsc911x_eeprom_send_cmd(pdata, E2P_CMD_EPC_CMD_EWDS_);
2113
2114 /* Single byte write, according to man page */
2115 eeprom->len = 1;
2116
2117 return ret;
2118}
2119
Steve Glendinningcb5b04f2008-12-25 16:41:09 -08002120static const struct ethtool_ops smsc911x_ethtool_ops = {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002121 .get_settings = smsc911x_ethtool_getsettings,
2122 .set_settings = smsc911x_ethtool_setsettings,
2123 .get_link = ethtool_op_get_link,
2124 .get_drvinfo = smsc911x_ethtool_getdrvinfo,
2125 .nway_reset = smsc911x_ethtool_nwayreset,
2126 .get_msglevel = smsc911x_ethtool_getmsglevel,
2127 .set_msglevel = smsc911x_ethtool_setmsglevel,
2128 .get_regs_len = smsc911x_ethtool_getregslen,
2129 .get_regs = smsc911x_ethtool_getregs,
2130 .get_eeprom_len = smsc911x_ethtool_get_eeprom_len,
2131 .get_eeprom = smsc911x_ethtool_get_eeprom,
2132 .set_eeprom = smsc911x_ethtool_set_eeprom,
Richard Cochranb5d1d252012-04-03 22:59:36 +00002133 .get_ts_info = ethtool_op_get_ts_info,
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002134};
2135
Steve Glendinning631b7562008-12-25 16:40:47 -08002136static const struct net_device_ops smsc911x_netdev_ops = {
2137 .ndo_open = smsc911x_open,
2138 .ndo_stop = smsc911x_stop,
2139 .ndo_start_xmit = smsc911x_hard_start_xmit,
2140 .ndo_get_stats = smsc911x_get_stats,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002141 .ndo_set_rx_mode = smsc911x_set_multicast_list,
Steve Glendinning631b7562008-12-25 16:40:47 -08002142 .ndo_do_ioctl = smsc911x_do_ioctl,
Ben Hutchings635ecaa2009-07-09 17:59:01 +00002143 .ndo_change_mtu = eth_change_mtu,
Steve Glendinning631b7562008-12-25 16:40:47 -08002144 .ndo_validate_addr = eth_validate_addr,
Steve Glendinning225ddf42009-03-19 00:24:46 +00002145 .ndo_set_mac_address = smsc911x_set_mac_address,
Steve Glendinning631b7562008-12-25 16:40:47 -08002146#ifdef CONFIG_NET_POLL_CONTROLLER
2147 .ndo_poll_controller = smsc911x_poll_controller,
2148#endif
2149};
2150
Steve Glendinning31f45742009-01-27 06:51:12 +00002151/* copies the current mac address from hardware to dev->dev_addr */
Bill Pemberton8489ec12012-12-03 09:23:38 -05002152static void smsc911x_read_mac_address(struct net_device *dev)
Steve Glendinning31f45742009-01-27 06:51:12 +00002153{
2154 struct smsc911x_data *pdata = netdev_priv(dev);
2155 u32 mac_high16 = smsc911x_mac_read(pdata, ADDRH);
2156 u32 mac_low32 = smsc911x_mac_read(pdata, ADDRL);
2157
2158 dev->dev_addr[0] = (u8)(mac_low32);
2159 dev->dev_addr[1] = (u8)(mac_low32 >> 8);
2160 dev->dev_addr[2] = (u8)(mac_low32 >> 16);
2161 dev->dev_addr[3] = (u8)(mac_low32 >> 24);
2162 dev->dev_addr[4] = (u8)(mac_high16);
2163 dev->dev_addr[5] = (u8)(mac_high16 >> 8);
2164}
2165
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002166/* Initializing private device structures, only called from probe */
Bill Pemberton8489ec12012-12-03 09:23:38 -05002167static int smsc911x_init(struct net_device *dev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002168{
2169 struct smsc911x_data *pdata = netdev_priv(dev);
Kamlakant Patel769ce4c2012-11-14 01:41:38 +00002170 unsigned int byte_test, mask;
Robert Marklund3ac35462011-10-25 22:05:43 +00002171 unsigned int to = 100;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002172
Joe Perchesdffc6b22011-03-25 14:21:22 +00002173 SMSC_TRACE(pdata, probe, "Driver Parameters:");
2174 SMSC_TRACE(pdata, probe, "LAN base: 0x%08lX",
2175 (unsigned long)pdata->ioaddr);
2176 SMSC_TRACE(pdata, probe, "IRQ: %d", dev->irq);
2177 SMSC_TRACE(pdata, probe, "PHY will be autodetected.");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002178
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002179 spin_lock_init(&pdata->dev_lock);
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002180 spin_lock_init(&pdata->mac_lock);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002181
Sachin Kamat6fed9592013-03-18 21:01:38 +00002182 if (pdata->ioaddr == NULL) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002183 SMSC_WARN(pdata, probe, "pdata->ioaddr: 0x00000000");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002184 return -ENODEV;
2185 }
2186
Robert Marklund3ac35462011-10-25 22:05:43 +00002187 /*
2188 * poll the READY bit in PMT_CTRL. Any other access to the device is
2189 * forbidden while this bit isn't set. Try for 100ms
Kamlakant Patel769ce4c2012-11-14 01:41:38 +00002190 *
2191 * Note that this test is done before the WORD_SWAP register is
2192 * programmed. So in some configurations the READY bit is at 16 before
2193 * WORD_SWAP is written to. This issue is worked around by waiting
2194 * until either bit 0 or bit 16 gets set in PMT_CTRL.
2195 *
2196 * SMSC has confirmed that checking bit 16 (marked as reserved in
2197 * the datasheet) is fine since these bits "will either never be set
2198 * or can only go high after READY does (so also indicate the device
2199 * is ready)".
Robert Marklund3ac35462011-10-25 22:05:43 +00002200 */
Kamlakant Patel769ce4c2012-11-14 01:41:38 +00002201
2202 mask = PMT_CTRL_READY_ | swahw32(PMT_CTRL_READY_);
2203 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & mask) && --to)
Robert Marklund3ac35462011-10-25 22:05:43 +00002204 udelay(1000);
Kamlakant Patel769ce4c2012-11-14 01:41:38 +00002205
Robert Marklund3ac35462011-10-25 22:05:43 +00002206 if (to == 0) {
Ben Boeckelb1a04a62013-11-01 08:53:33 -04002207 netdev_err(dev, "Device not READY in 100ms aborting\n");
Robert Marklund3ac35462011-10-25 22:05:43 +00002208 return -ENODEV;
2209 }
2210
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002211 /* Check byte ordering */
2212 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002213 SMSC_TRACE(pdata, probe, "BYTE_TEST: 0x%08X", byte_test);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002214 if (byte_test == 0x43218765) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002215 SMSC_TRACE(pdata, probe, "BYTE_TEST looks swapped, "
2216 "applying WORD_SWAP");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002217 smsc911x_reg_write(pdata, WORD_SWAP, 0xffffffff);
2218
2219 /* 1 dummy read of BYTE_TEST is needed after a write to
2220 * WORD_SWAP before its contents are valid */
2221 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2222
2223 byte_test = smsc911x_reg_read(pdata, BYTE_TEST);
2224 }
2225
2226 if (byte_test != 0x87654321) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002227 SMSC_WARN(pdata, drv, "BYTE_TEST: 0x%08X", byte_test);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002228 if (((byte_test >> 16) & 0xFFFF) == (byte_test & 0xFFFF)) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002229 SMSC_WARN(pdata, probe,
2230 "top 16 bits equal to bottom 16 bits");
2231 SMSC_TRACE(pdata, probe,
2232 "This may mean the chip is set "
2233 "for 32 bit while the bus is reading 16 bit");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002234 }
2235 return -ENODEV;
2236 }
2237
2238 /* Default generation to zero (all workarounds apply) */
2239 pdata->generation = 0;
2240
2241 pdata->idrev = smsc911x_reg_read(pdata, ID_REV);
2242 switch (pdata->idrev & 0xFFFF0000) {
2243 case 0x01180000:
2244 case 0x01170000:
2245 case 0x01160000:
2246 case 0x01150000:
David S. Miller1805b2f2011-10-24 18:18:09 -04002247 case 0x218A0000:
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002248 /* LAN911[5678] family */
2249 pdata->generation = pdata->idrev & 0x0000FFFF;
2250 break;
2251
2252 case 0x118A0000:
2253 case 0x117A0000:
2254 case 0x116A0000:
2255 case 0x115A0000:
2256 /* LAN921[5678] family */
2257 pdata->generation = 3;
2258 break;
2259
2260 case 0x92100000:
2261 case 0x92110000:
2262 case 0x92200000:
2263 case 0x92210000:
2264 /* LAN9210/LAN9211/LAN9220/LAN9221 */
2265 pdata->generation = 4;
2266 break;
2267
2268 default:
Joe Perchesdffc6b22011-03-25 14:21:22 +00002269 SMSC_WARN(pdata, probe, "LAN911x not identified, idrev: 0x%08X",
2270 pdata->idrev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002271 return -ENODEV;
2272 }
2273
Joe Perchesdffc6b22011-03-25 14:21:22 +00002274 SMSC_TRACE(pdata, probe,
2275 "LAN911x identified, idrev: 0x%08X, generation: %d",
2276 pdata->idrev, pdata->generation);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002277
2278 if (pdata->generation == 0)
Joe Perchesdffc6b22011-03-25 14:21:22 +00002279 SMSC_WARN(pdata, probe,
2280 "This driver is not intended for this chip revision");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002281
Steve Glendinning31f45742009-01-27 06:51:12 +00002282 /* workaround for platforms without an eeprom, where the mac address
2283 * is stored elsewhere and set by the bootloader. This saves the
2284 * mac address before resetting the device */
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002285 if (pdata->config.flags & SMSC911X_SAVE_MAC_ADDRESS) {
2286 spin_lock_irq(&pdata->mac_lock);
Steve Glendinning31f45742009-01-27 06:51:12 +00002287 smsc911x_read_mac_address(dev);
Enric Balletbo i Serra35a67ed2011-04-05 06:52:49 +00002288 spin_unlock_irq(&pdata->mac_lock);
2289 }
Steve Glendinning31f45742009-01-27 06:51:12 +00002290
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002291 /* Reset the LAN911x */
Pavel Fedincd998ec2015-11-13 09:46:59 +03002292 if (smsc911x_phy_reset(pdata) || smsc911x_soft_reset(pdata))
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002293 return -ENODEV;
2294
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002295 dev->flags |= IFF_MULTICAST;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002296 netif_napi_add(dev, &pdata->napi, smsc911x_poll, SMSC_NAPI_WEIGHT);
Steve Glendinning631b7562008-12-25 16:40:47 -08002297 dev->netdev_ops = &smsc911x_netdev_ops;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002298 dev->ethtool_ops = &smsc911x_ethtool_ops;
2299
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002300 return 0;
2301}
2302
Bill Pemberton8489ec12012-12-03 09:23:38 -05002303static int smsc911x_drv_remove(struct platform_device *pdev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002304{
2305 struct net_device *dev;
2306 struct smsc911x_data *pdata;
2307 struct resource *res;
2308
2309 dev = platform_get_drvdata(pdev);
2310 BUG_ON(!dev);
2311 pdata = netdev_priv(dev);
2312 BUG_ON(!pdata);
2313 BUG_ON(!pdata->ioaddr);
2314 BUG_ON(!pdata->phy_dev);
2315
Joe Perchesdffc6b22011-03-25 14:21:22 +00002316 SMSC_TRACE(pdata, ifdown, "Stopping driver");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002317
2318 phy_disconnect(pdata->phy_dev);
2319 pdata->phy_dev = NULL;
2320 mdiobus_unregister(pdata->mii_bus);
2321 mdiobus_free(pdata->mii_bus);
2322
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002323 unregister_netdev(dev);
2324 free_irq(dev->irq, dev);
2325 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2326 "smsc911x-memory");
2327 if (!res)
Steve Glendinningd4522732008-12-25 16:44:01 -08002328 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002329
Julia Lawall39424532009-07-04 11:31:47 +00002330 release_mem_region(res->start, resource_size(res));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002331
2332 iounmap(pdata->ioaddr);
2333
Robert Marklundc7e963f2011-11-24 01:03:07 +00002334 (void)smsc911x_disable_resources(pdev);
2335 smsc911x_free_resources(pdev);
2336
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002337 free_netdev(dev);
2338
Geert Uytterhoeven3a611e22014-11-24 19:58:17 +01002339 pm_runtime_put(&pdev->dev);
2340 pm_runtime_disable(&pdev->dev);
2341
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002342 return 0;
2343}
2344
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -07002345/* standard register acces */
2346static const struct smsc911x_ops standard_smsc911x_ops = {
2347 .reg_read = __smsc911x_reg_read,
2348 .reg_write = __smsc911x_reg_write,
2349 .rx_readfifo = smsc911x_rx_readfifo,
2350 .tx_writefifo = smsc911x_tx_writefifo,
2351};
2352
2353/* shifted register access */
2354static const struct smsc911x_ops shifted_smsc911x_ops = {
2355 .reg_read = __smsc911x_reg_read_shift,
2356 .reg_write = __smsc911x_reg_write_shift,
2357 .rx_readfifo = smsc911x_rx_readfifo_shift,
2358 .tx_writefifo = smsc911x_tx_writefifo_shift,
2359};
2360
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002361static int smsc911x_probe_config(struct smsc911x_platform_config *config,
2362 struct device *dev)
Shawn Guo79f88ee2011-07-30 08:26:00 +00002363{
Guenter Roeck62ee7832015-08-17 13:45:36 -07002364 int phy_interface;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002365 u32 width = 0;
Guenter Roeck31cb5c92015-08-26 20:27:05 -07002366 int err;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002367
Guenter Roeck62ee7832015-08-17 13:45:36 -07002368 phy_interface = device_get_phy_mode(dev);
2369 if (phy_interface < 0)
Guenter Roeck31cb5c92015-08-26 20:27:05 -07002370 phy_interface = PHY_INTERFACE_MODE_NA;
Guenter Roeck62ee7832015-08-17 13:45:36 -07002371 config->phy_interface = phy_interface;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002372
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002373 device_get_mac_address(dev, config->mac, ETH_ALEN);
Shawn Guo79f88ee2011-07-30 08:26:00 +00002374
Guenter Roeck31cb5c92015-08-26 20:27:05 -07002375 err = device_property_read_u32(dev, "reg-io-width", &width);
2376 if (err == -ENXIO)
2377 return err;
2378 if (!err && width == 4)
Shawn Guo79f88ee2011-07-30 08:26:00 +00002379 config->flags |= SMSC911X_USE_32BIT;
Dave Martinf26cd412011-09-13 00:49:29 +00002380 else
2381 config->flags |= SMSC911X_USE_16BIT;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002382
Guenter Roeck31cb5c92015-08-26 20:27:05 -07002383 device_property_read_u32(dev, "reg-shift", &config->shift);
2384
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002385 if (device_property_present(dev, "smsc,irq-active-high"))
Shawn Guo79f88ee2011-07-30 08:26:00 +00002386 config->irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH;
2387
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002388 if (device_property_present(dev, "smsc,irq-push-pull"))
Shawn Guo79f88ee2011-07-30 08:26:00 +00002389 config->irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL;
2390
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002391 if (device_property_present(dev, "smsc,force-internal-phy"))
Shawn Guo79f88ee2011-07-30 08:26:00 +00002392 config->flags |= SMSC911X_FORCE_INTERNAL_PHY;
2393
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002394 if (device_property_present(dev, "smsc,force-external-phy"))
Shawn Guo79f88ee2011-07-30 08:26:00 +00002395 config->flags |= SMSC911X_FORCE_EXTERNAL_PHY;
2396
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002397 if (device_property_present(dev, "smsc,save-mac-address"))
Shawn Guo79f88ee2011-07-30 08:26:00 +00002398 config->flags |= SMSC911X_SAVE_MAC_ADDRESS;
2399
2400 return 0;
2401}
Shawn Guo79f88ee2011-07-30 08:26:00 +00002402
Bill Pemberton8489ec12012-12-03 09:23:38 -05002403static int smsc911x_drv_probe(struct platform_device *pdev)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002404{
2405 struct net_device *dev;
2406 struct smsc911x_data *pdata;
Jingoo Han495c765d2013-08-30 14:02:57 +09002407 struct smsc911x_platform_config *config = dev_get_platdata(&pdev->dev);
Kamlakant Patel965b2aa2015-05-04 14:39:49 +05302408 struct resource *res;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002409 unsigned int intcfg = 0;
Kamlakant Patel965b2aa2015-05-04 14:39:49 +05302410 int res_size, irq, irq_flags;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002411 int retval;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002412
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002413 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2414 "smsc911x-memory");
2415 if (!res)
2416 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2417 if (!res) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002418 pr_warn("Could not allocate resource\n");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002419 retval = -ENODEV;
2420 goto out_0;
2421 }
Julia Lawall39424532009-07-04 11:31:47 +00002422 res_size = resource_size(res);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002423
Kamlakant Patel965b2aa2015-05-04 14:39:49 +05302424 irq = platform_get_irq(pdev, 0);
Tony Lindgrenf892a842015-08-28 11:50:15 -07002425 if (irq == -EPROBE_DEFER) {
2426 retval = -EPROBE_DEFER;
2427 goto out_0;
2428 } else if (irq <= 0) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002429 pr_warn("Could not allocate irq resource\n");
Steve Glendinning61307ed2009-01-27 06:51:09 +00002430 retval = -ENODEV;
2431 goto out_0;
2432 }
2433
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002434 if (!request_mem_region(res->start, res_size, SMSC_CHIPNAME)) {
2435 retval = -EBUSY;
2436 goto out_0;
2437 }
2438
2439 dev = alloc_etherdev(sizeof(struct smsc911x_data));
2440 if (!dev) {
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002441 retval = -ENOMEM;
2442 goto out_release_io_1;
2443 }
2444
2445 SET_NETDEV_DEV(dev, &pdev->dev);
2446
2447 pdata = netdev_priv(dev);
Kamlakant Patel965b2aa2015-05-04 14:39:49 +05302448 dev->irq = irq;
2449 irq_flags = irq_get_trigger_type(irq);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002450 pdata->ioaddr = ioremap_nocache(res->start, res_size);
2451
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002452 pdata->dev = dev;
2453 pdata->msg_enable = ((1 << debug) - 1);
2454
Robert Marklundc7e963f2011-11-24 01:03:07 +00002455 platform_set_drvdata(pdev, dev);
2456
2457 retval = smsc911x_request_resources(pdev);
2458 if (retval)
Lee Jones2e1d4a02012-05-29 18:47:37 +00002459 goto out_request_resources_fail;
Robert Marklundc7e963f2011-11-24 01:03:07 +00002460
2461 retval = smsc911x_enable_resources(pdev);
2462 if (retval)
Lee Jones2e1d4a02012-05-29 18:47:37 +00002463 goto out_enable_resources_fail;
Robert Marklundc7e963f2011-11-24 01:03:07 +00002464
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002465 if (pdata->ioaddr == NULL) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002466 SMSC_WARN(pdata, probe, "Error smsc911x base address invalid");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002467 retval = -ENOMEM;
Robert Marklundc7e963f2011-11-24 01:03:07 +00002468 goto out_disable_resources;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002469 }
2470
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002471 retval = smsc911x_probe_config(&pdata->config, &pdev->dev);
Shawn Guo79f88ee2011-07-30 08:26:00 +00002472 if (retval && config) {
2473 /* copy config parameters across to pdata */
2474 memcpy(&pdata->config, config, sizeof(pdata->config));
2475 retval = 0;
2476 }
2477
2478 if (retval) {
2479 SMSC_WARN(pdata, probe, "Error smsc911x config not found");
Robert Marklundc7e963f2011-11-24 01:03:07 +00002480 goto out_disable_resources;
Shawn Guo79f88ee2011-07-30 08:26:00 +00002481 }
2482
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -07002483 /* assume standard, non-shifted, access to HW registers */
2484 pdata->ops = &standard_smsc911x_ops;
2485 /* apply the right access if shifting is needed */
Shawn Guo79f88ee2011-07-30 08:26:00 +00002486 if (pdata->config.shift)
Mathieu J. Poirierc326de88b2011-04-13 17:13:00 -07002487 pdata->ops = &shifted_smsc911x_ops;
2488
Geert Uytterhoeven3a611e22014-11-24 19:58:17 +01002489 pm_runtime_enable(&pdev->dev);
2490 pm_runtime_get_sync(&pdev->dev);
2491
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002492 retval = smsc911x_init(dev);
2493 if (retval < 0)
Robert Marklundc7e963f2011-11-24 01:03:07 +00002494 goto out_disable_resources;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002495
2496 /* configure irq polarity and type before connecting isr */
Steve Glendinning2107fb82008-11-05 00:35:38 +00002497 if (pdata->config.irq_polarity == SMSC911X_IRQ_POLARITY_ACTIVE_HIGH)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002498 intcfg |= INT_CFG_IRQ_POL_;
2499
Steve Glendinning2107fb82008-11-05 00:35:38 +00002500 if (pdata->config.irq_type == SMSC911X_IRQ_TYPE_PUSH_PULL)
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002501 intcfg |= INT_CFG_IRQ_TYPE_;
2502
2503 smsc911x_reg_write(pdata, INT_CFG, intcfg);
2504
2505 /* Ensure interrupts are globally disabled before connecting ISR */
Matthias Brugger8e276282012-06-22 01:10:15 +00002506 smsc911x_disable_irq_chip(dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002507
Steve Glendinning61307ed2009-01-27 06:51:09 +00002508 retval = request_irq(dev->irq, smsc911x_irqhandler,
Steve Glendinninge81259b2009-01-27 06:51:10 +00002509 irq_flags | IRQF_SHARED, dev->name, dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002510 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002511 SMSC_WARN(pdata, probe,
2512 "Unable to claim requested irq: %d", dev->irq);
Lee Jones163faf32012-04-19 10:36:33 +00002513 goto out_disable_resources;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002514 }
2515
Balakumaran Kannan31f6f292014-06-03 22:13:48 +05302516 netif_carrier_off(dev);
2517
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002518 retval = register_netdev(dev);
2519 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002520 SMSC_WARN(pdata, probe, "Error %i registering device", retval);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002521 goto out_free_irq;
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002522 } else {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002523 SMSC_TRACE(pdata, probe,
2524 "Network interface: \"%s\"", dev->name);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002525 }
2526
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002527 retval = smsc911x_mii_init(pdev, dev);
2528 if (retval) {
Joe Perchesdffc6b22011-03-25 14:21:22 +00002529 SMSC_WARN(pdata, probe, "Error %i initialising mii", retval);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002530 goto out_unregister_netdev_5;
2531 }
2532
2533 spin_lock_irq(&pdata->mac_lock);
2534
2535 /* Check if mac address has been specified when bringing interface up */
2536 if (is_valid_ether_addr(dev->dev_addr)) {
Steve Glendinning225ddf42009-03-19 00:24:46 +00002537 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002538 SMSC_TRACE(pdata, probe,
2539 "MAC Address is specified by configuration");
Manuel Laussaace4952009-10-13 07:25:49 +00002540 } else if (is_valid_ether_addr(pdata->config.mac)) {
Joe Perchesd458cdf2013-10-01 19:04:40 -07002541 memcpy(dev->dev_addr, pdata->config.mac, ETH_ALEN);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002542 SMSC_TRACE(pdata, probe,
2543 "MAC Address specified by platform data");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002544 } else {
2545 /* Try reading mac address from device. if EEPROM is present
2546 * it will already have been set */
Akira Takeuchi62747cd2010-10-27 17:28:58 +01002547 smsc_get_mac(dev);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002548
2549 if (is_valid_ether_addr(dev->dev_addr)) {
2550 /* eeprom values are valid so use them */
Joe Perchesdffc6b22011-03-25 14:21:22 +00002551 SMSC_TRACE(pdata, probe,
2552 "Mac Address is read from LAN911x EEPROM");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002553 } else {
2554 /* eeprom values are invalid, generate random MAC */
Danny Kukawka7ce5d222012-02-15 06:45:40 +00002555 eth_hw_addr_random(dev);
Steve Glendinning225ddf42009-03-19 00:24:46 +00002556 smsc911x_set_hw_mac_address(pdata, dev->dev_addr);
Joe Perchesdffc6b22011-03-25 14:21:22 +00002557 SMSC_TRACE(pdata, probe,
Joe Perches7efd26d2012-07-12 19:33:06 +00002558 "MAC Address is set to eth_random_addr");
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002559 }
2560 }
2561
2562 spin_unlock_irq(&pdata->mac_lock);
2563
Joe Perchesdffc6b22011-03-25 14:21:22 +00002564 netdev_info(dev, "MAC Address: %pM\n", dev->dev_addr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002565
2566 return 0;
2567
2568out_unregister_netdev_5:
2569 unregister_netdev(dev);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002570out_free_irq:
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002571 free_irq(dev->irq, dev);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002572out_disable_resources:
Geert Uytterhoeven3a611e22014-11-24 19:58:17 +01002573 pm_runtime_put(&pdev->dev);
2574 pm_runtime_disable(&pdev->dev);
Robert Marklundc7e963f2011-11-24 01:03:07 +00002575 (void)smsc911x_disable_resources(pdev);
Lee Jones2e1d4a02012-05-29 18:47:37 +00002576out_enable_resources_fail:
Robert Marklundc7e963f2011-11-24 01:03:07 +00002577 smsc911x_free_resources(pdev);
Lee Jones2e1d4a02012-05-29 18:47:37 +00002578out_request_resources_fail:
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002579 iounmap(pdata->ioaddr);
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002580 free_netdev(dev);
2581out_release_io_1:
Julia Lawall39424532009-07-04 11:31:47 +00002582 release_mem_region(res->start, resource_size(res));
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002583out_0:
2584 return retval;
2585}
2586
Daniel Mackb6907b02009-05-05 12:22:53 -07002587#ifdef CONFIG_PM
2588/* This implementation assumes the devices remains powered on its VDDVARIO
2589 * pins during suspend. */
2590
Daniel Mack6cb87822009-08-05 08:29:31 +00002591/* TODO: implement freeze/thaw callbacks for hibernation.*/
2592
2593static int smsc911x_suspend(struct device *dev)
Daniel Mackb6907b02009-05-05 12:22:53 -07002594{
Daniel Mack6cb87822009-08-05 08:29:31 +00002595 struct net_device *ndev = dev_get_drvdata(dev);
2596 struct smsc911x_data *pdata = netdev_priv(ndev);
Daniel Mackb6907b02009-05-05 12:22:53 -07002597
2598 /* enable wake on LAN, energy detection and the external PME
2599 * signal. */
2600 smsc911x_reg_write(pdata, PMT_CTRL,
2601 PMT_CTRL_PM_MODE_D1_ | PMT_CTRL_WOL_EN_ |
2602 PMT_CTRL_ED_EN_ | PMT_CTRL_PME_EN_);
2603
2604 return 0;
2605}
2606
Daniel Mack6cb87822009-08-05 08:29:31 +00002607static int smsc911x_resume(struct device *dev)
Daniel Mackb6907b02009-05-05 12:22:53 -07002608{
Daniel Mack6cb87822009-08-05 08:29:31 +00002609 struct net_device *ndev = dev_get_drvdata(dev);
2610 struct smsc911x_data *pdata = netdev_priv(ndev);
Daniel Mackb6907b02009-05-05 12:22:53 -07002611 unsigned int to = 100;
2612
2613 /* Note 3.11 from the datasheet:
2614 * "When the LAN9220 is in a power saving state, a write of any
2615 * data to the BYTE_TEST register will wake-up the device."
2616 */
2617 smsc911x_reg_write(pdata, BYTE_TEST, 0);
2618
2619 /* poll the READY bit in PMT_CTRL. Any other access to the device is
2620 * forbidden while this bit isn't set. Try for 100ms and return -EIO
2621 * if it failed. */
2622 while (!(smsc911x_reg_read(pdata, PMT_CTRL) & PMT_CTRL_READY_) && --to)
2623 udelay(1000);
2624
2625 return (to == 0) ? -EIO : 0;
2626}
2627
Alexey Dobriyan47145212009-12-14 18:00:08 -08002628static const struct dev_pm_ops smsc911x_pm_ops = {
Daniel Mack6cb87822009-08-05 08:29:31 +00002629 .suspend = smsc911x_suspend,
2630 .resume = smsc911x_resume,
2631};
2632
2633#define SMSC911X_PM_OPS (&smsc911x_pm_ops)
2634
Daniel Mackb6907b02009-05-05 12:22:53 -07002635#else
Daniel Mack6cb87822009-08-05 08:29:31 +00002636#define SMSC911X_PM_OPS NULL
Daniel Mackb6907b02009-05-05 12:22:53 -07002637#endif
2638
Sachin Kamatd62fdf82012-12-19 01:17:10 +00002639#ifdef CONFIG_OF
Shawn Guo79f88ee2011-07-30 08:26:00 +00002640static const struct of_device_id smsc911x_dt_ids[] = {
2641 { .compatible = "smsc,lan9115", },
2642 { /* sentinel */ }
2643};
2644MODULE_DEVICE_TABLE(of, smsc911x_dt_ids);
Sachin Kamatd62fdf82012-12-19 01:17:10 +00002645#endif
Shawn Guo79f88ee2011-07-30 08:26:00 +00002646
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002647static const struct acpi_device_id smsc911x_acpi_match[] = {
2648 { "ARMH9118", 0 },
2649 { }
2650};
2651MODULE_DEVICE_TABLE(acpi, smsc911x_acpi_match);
2652
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002653static struct platform_driver smsc911x_driver = {
2654 .probe = smsc911x_drv_probe,
Bill Pemberton8489ec12012-12-03 09:23:38 -05002655 .remove = smsc911x_drv_remove,
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002656 .driver = {
Daniel Mack6cb87822009-08-05 08:29:31 +00002657 .name = SMSC_CHIPNAME,
Daniel Mack6cb87822009-08-05 08:29:31 +00002658 .pm = SMSC911X_PM_OPS,
Sachin Kamatd62fdf82012-12-19 01:17:10 +00002659 .of_match_table = of_match_ptr(smsc911x_dt_ids),
Jeremy Linton0b50dc42015-08-12 17:06:27 -05002660 .acpi_match_table = ACPI_PTR(smsc911x_acpi_match),
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002661 },
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002662};
2663
2664/* Entry point for loading the module */
2665static int __init smsc911x_init_module(void)
2666{
Akira Takeuchi62747cd2010-10-27 17:28:58 +01002667 SMSC_INITIALIZE();
Steve Glendinningfd9abb32008-11-05 00:35:37 +00002668 return platform_driver_register(&smsc911x_driver);
2669}
2670
2671/* entry point for unloading the module */
2672static void __exit smsc911x_cleanup_module(void)
2673{
2674 platform_driver_unregister(&smsc911x_driver);
2675}
2676
2677module_init(smsc911x_init_module);
2678module_exit(smsc911x_cleanup_module);