blob: ff4fa37dfd1db3793f705c59214802acd9cdfd1f [file] [log] [blame]
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001 /***************************************************************************
2 *
3 * Copyright (C) 2007-2008 SMSC
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 *****************************************************************************/
20
21#include <linux/module.h>
22#include <linux/kmod.h>
23#include <linux/init.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/ethtool.h>
27#include <linux/mii.h>
28#include <linux/usb.h>
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +000029#include <linux/bitrev.h>
30#include <linux/crc16.h>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000031#include <linux/crc32.h>
32#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000034#include "smsc95xx.h"
35
36#define SMSC_CHIPNAME "smsc95xx"
Steve Glendinningf7b29272008-11-20 04:19:21 -080037#define SMSC_DRIVER_VERSION "1.0.4"
Steve Glendinning2f7ca802008-10-02 05:27:57 +000038#define HS_USB_PKT_SIZE (512)
39#define FS_USB_PKT_SIZE (64)
40#define DEFAULT_HS_BURST_CAP_SIZE (16 * 1024 + 5 * HS_USB_PKT_SIZE)
41#define DEFAULT_FS_BURST_CAP_SIZE (6 * 1024 + 33 * FS_USB_PKT_SIZE)
42#define DEFAULT_BULK_IN_DELAY (0x00002000)
43#define MAX_SINGLE_PACKET_SIZE (2048)
44#define LAN95XX_EEPROM_MAGIC (0x9500)
45#define EEPROM_MAC_OFFSET (0x01)
Steve Glendinningf7b29272008-11-20 04:19:21 -080046#define DEFAULT_TX_CSUM_ENABLE (true)
Steve Glendinning2f7ca802008-10-02 05:27:57 +000047#define DEFAULT_RX_CSUM_ENABLE (true)
48#define SMSC95XX_INTERNAL_PHY_ID (1)
49#define SMSC95XX_TX_OVERHEAD (8)
Steve Glendinningf7b29272008-11-20 04:19:21 -080050#define SMSC95XX_TX_OVERHEAD_CSUM (12)
Steve Glendinninge5e3af82012-11-22 08:05:24 +000051#define SUPPORTED_WAKE (WAKE_PHY | WAKE_UCAST | WAKE_BCAST | \
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +000052 WAKE_MCAST | WAKE_ARP | WAKE_MAGIC)
Steve Glendinning2f7ca802008-10-02 05:27:57 +000053
Steve Glendinning9ebca502012-11-22 08:05:23 +000054#define FEATURE_8_WAKEUP_FILTERS (0x01)
55#define FEATURE_PHY_NLP_CROSSOVER (0x02)
56#define FEATURE_AUTOSUSPEND (0x04)
57
Steve Glendinningb2d4b152013-01-03 03:00:16 +000058#define SUSPEND_SUSPEND0 (0x01)
59#define SUSPEND_SUSPEND1 (0x02)
60#define SUSPEND_SUSPEND2 (0x04)
61#define SUSPEND_SUSPEND3 (0x08)
62#define SUSPEND_ALLMODES (SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
63 SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
64
Steve Glendinning2f7ca802008-10-02 05:27:57 +000065struct smsc95xx_priv {
66 u32 mac_cr;
Marc Zyngier3c0f3c62011-03-18 03:53:58 +000067 u32 hash_hi;
68 u32 hash_lo;
Steve Glendinninge0e474a2012-09-28 00:07:12 +000069 u32 wolopts;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000070 spinlock_t mac_cr_lock;
Steve Glendinning9ebca502012-11-22 08:05:23 +000071 u8 features;
Steve Glendinningb2d4b152013-01-03 03:00:16 +000072 u8 suspend_flags;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000073};
74
Rusty Russelleb939922011-12-19 14:08:01 +000075static bool turbo_mode = true;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000076module_param(turbo_mode, bool, 0644);
77MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
78
Ming Leiec321152012-11-06 04:53:07 +000079static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index,
80 u32 *data, int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +000081{
Ming Lei72108fd2012-10-24 19:47:04 +000082 u32 buf;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000083 int ret;
Ming Leiec321152012-11-06 04:53:07 +000084 int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16);
Steve Glendinning2f7ca802008-10-02 05:27:57 +000085
86 BUG_ON(!dev);
87
Ming Leiec321152012-11-06 04:53:07 +000088 if (!in_pm)
89 fn = usbnet_read_cmd;
90 else
91 fn = usbnet_read_cmd_nopm;
92
93 ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN
94 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
95 0, index, &buf, 4);
Steve Glendinning2f7ca802008-10-02 05:27:57 +000096 if (unlikely(ret < 0))
Joe Perches1e1d7412012-11-24 01:27:49 +000097 netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n",
98 index, ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +000099
Ming Lei72108fd2012-10-24 19:47:04 +0000100 le32_to_cpus(&buf);
101 *data = buf;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000102
103 return ret;
104}
105
Ming Leiec321152012-11-06 04:53:07 +0000106static int __must_check __smsc95xx_write_reg(struct usbnet *dev, u32 index,
107 u32 data, int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000108{
Ming Lei72108fd2012-10-24 19:47:04 +0000109 u32 buf;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000110 int ret;
Ming Leiec321152012-11-06 04:53:07 +0000111 int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000112
113 BUG_ON(!dev);
114
Ming Leiec321152012-11-06 04:53:07 +0000115 if (!in_pm)
116 fn = usbnet_write_cmd;
117 else
118 fn = usbnet_write_cmd_nopm;
119
Ming Lei72108fd2012-10-24 19:47:04 +0000120 buf = data;
121 cpu_to_le32s(&buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000122
Ming Leiec321152012-11-06 04:53:07 +0000123 ret = fn(dev, USB_VENDOR_REQUEST_WRITE_REGISTER, USB_DIR_OUT
124 | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
125 0, index, &buf, 4);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000126 if (unlikely(ret < 0))
Joe Perches1e1d7412012-11-24 01:27:49 +0000127 netdev_warn(dev->net, "Failed to write reg index 0x%08x: %d\n",
128 index, ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000129
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000130 return ret;
131}
132
Ming Leiec321152012-11-06 04:53:07 +0000133static int __must_check smsc95xx_read_reg_nopm(struct usbnet *dev, u32 index,
134 u32 *data)
135{
136 return __smsc95xx_read_reg(dev, index, data, 1);
137}
138
139static int __must_check smsc95xx_write_reg_nopm(struct usbnet *dev, u32 index,
140 u32 data)
141{
142 return __smsc95xx_write_reg(dev, index, data, 1);
143}
144
145static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
146 u32 *data)
147{
148 return __smsc95xx_read_reg(dev, index, data, 0);
149}
150
151static int __must_check smsc95xx_write_reg(struct usbnet *dev, u32 index,
152 u32 data)
153{
154 return __smsc95xx_write_reg(dev, index, data, 0);
155}
Steve Glendinninge0e474a2012-09-28 00:07:12 +0000156
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000157/* Loop until the read is completed with timeout
158 * called with phy_mutex held */
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000159static int __must_check __smsc95xx_phy_wait_not_busy(struct usbnet *dev,
160 int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000161{
162 unsigned long start_time = jiffies;
163 u32 val;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000164 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000165
166 do {
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000167 ret = __smsc95xx_read_reg(dev, MII_ADDR, &val, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000168 if (ret < 0) {
169 netdev_warn(dev->net, "Error reading MII_ACCESS\n");
170 return ret;
171 }
172
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000173 if (!(val & MII_BUSY_))
174 return 0;
175 } while (!time_after(jiffies, start_time + HZ));
176
177 return -EIO;
178}
179
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000180static int __smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx,
181 int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000182{
183 struct usbnet *dev = netdev_priv(netdev);
184 u32 val, addr;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000185 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000186
187 mutex_lock(&dev->phy_mutex);
188
189 /* confirm MII not busy */
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000190 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000191 if (ret < 0) {
192 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_read\n");
193 goto done;
194 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000195
196 /* set the address, index & direction (read from PHY) */
197 phy_id &= dev->mii.phy_id_mask;
198 idx &= dev->mii.reg_num_mask;
Steve Glendinning80928802012-11-06 00:08:53 +0000199 addr = (phy_id << 11) | (idx << 6) | MII_READ_ | MII_BUSY_;
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000200 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000201 if (ret < 0) {
202 netdev_warn(dev->net, "Error writing MII_ADDR\n");
203 goto done;
204 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000205
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000206 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000207 if (ret < 0) {
208 netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
209 goto done;
210 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000211
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000212 ret = __smsc95xx_read_reg(dev, MII_DATA, &val, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000213 if (ret < 0) {
214 netdev_warn(dev->net, "Error reading MII_DATA\n");
215 goto done;
216 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000217
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000218 ret = (u16)(val & 0xFFFF);
219
220done:
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000221 mutex_unlock(&dev->phy_mutex);
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000222 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000223}
224
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000225static void __smsc95xx_mdio_write(struct net_device *netdev, int phy_id,
226 int idx, int regval, int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000227{
228 struct usbnet *dev = netdev_priv(netdev);
229 u32 val, addr;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000230 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000231
232 mutex_lock(&dev->phy_mutex);
233
234 /* confirm MII not busy */
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000235 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000236 if (ret < 0) {
237 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_write\n");
238 goto done;
239 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000240
241 val = regval;
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000242 ret = __smsc95xx_write_reg(dev, MII_DATA, val, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000243 if (ret < 0) {
244 netdev_warn(dev->net, "Error writing MII_DATA\n");
245 goto done;
246 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000247
248 /* set the address, index & direction (write to PHY) */
249 phy_id &= dev->mii.phy_id_mask;
250 idx &= dev->mii.reg_num_mask;
Steve Glendinning80928802012-11-06 00:08:53 +0000251 addr = (phy_id << 11) | (idx << 6) | MII_WRITE_ | MII_BUSY_;
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000252 ret = __smsc95xx_write_reg(dev, MII_ADDR, addr, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000253 if (ret < 0) {
254 netdev_warn(dev->net, "Error writing MII_ADDR\n");
255 goto done;
256 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000257
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000258 ret = __smsc95xx_phy_wait_not_busy(dev, in_pm);
Steve Glendinningb052e072012-11-30 05:55:52 +0000259 if (ret < 0) {
260 netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
261 goto done;
262 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000263
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000264done:
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000265 mutex_unlock(&dev->phy_mutex);
266}
267
Steve Glendinninge5e3af82012-11-22 08:05:24 +0000268static int smsc95xx_mdio_read_nopm(struct net_device *netdev, int phy_id,
269 int idx)
270{
271 return __smsc95xx_mdio_read(netdev, phy_id, idx, 1);
272}
273
274static void smsc95xx_mdio_write_nopm(struct net_device *netdev, int phy_id,
275 int idx, int regval)
276{
277 __smsc95xx_mdio_write(netdev, phy_id, idx, regval, 1);
278}
279
280static int smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx)
281{
282 return __smsc95xx_mdio_read(netdev, phy_id, idx, 0);
283}
284
285static void smsc95xx_mdio_write(struct net_device *netdev, int phy_id, int idx,
286 int regval)
287{
288 __smsc95xx_mdio_write(netdev, phy_id, idx, regval, 0);
289}
290
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000291static int __must_check smsc95xx_wait_eeprom(struct usbnet *dev)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000292{
293 unsigned long start_time = jiffies;
294 u32 val;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000295 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000296
297 do {
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000298 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000299 if (ret < 0) {
300 netdev_warn(dev->net, "Error reading E2P_CMD\n");
301 return ret;
302 }
303
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000304 if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
305 break;
306 udelay(40);
307 } while (!time_after(jiffies, start_time + HZ));
308
309 if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
Joe Perches60b86752010-02-17 10:30:23 +0000310 netdev_warn(dev->net, "EEPROM read operation timeout\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000311 return -EIO;
312 }
313
314 return 0;
315}
316
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000317static int __must_check smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000318{
319 unsigned long start_time = jiffies;
320 u32 val;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000321 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000322
323 do {
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000324 ret = smsc95xx_read_reg(dev, E2P_CMD, &val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000325 if (ret < 0) {
326 netdev_warn(dev->net, "Error reading E2P_CMD\n");
327 return ret;
328 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000329
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000330 if (!(val & E2P_CMD_BUSY_))
331 return 0;
332
333 udelay(40);
334 } while (!time_after(jiffies, start_time + HZ));
335
Joe Perches60b86752010-02-17 10:30:23 +0000336 netdev_warn(dev->net, "EEPROM is busy\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000337 return -EIO;
338}
339
340static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
341 u8 *data)
342{
343 u32 val;
344 int i, ret;
345
346 BUG_ON(!dev);
347 BUG_ON(!data);
348
349 ret = smsc95xx_eeprom_confirm_not_busy(dev);
350 if (ret)
351 return ret;
352
353 for (i = 0; i < length; i++) {
354 val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000355 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000356 if (ret < 0) {
357 netdev_warn(dev->net, "Error writing E2P_CMD\n");
358 return ret;
359 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000360
361 ret = smsc95xx_wait_eeprom(dev);
362 if (ret < 0)
363 return ret;
364
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000365 ret = smsc95xx_read_reg(dev, E2P_DATA, &val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000366 if (ret < 0) {
367 netdev_warn(dev->net, "Error reading E2P_DATA\n");
368 return ret;
369 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000370
371 data[i] = val & 0xFF;
372 offset++;
373 }
374
375 return 0;
376}
377
378static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
379 u8 *data)
380{
381 u32 val;
382 int i, ret;
383
384 BUG_ON(!dev);
385 BUG_ON(!data);
386
387 ret = smsc95xx_eeprom_confirm_not_busy(dev);
388 if (ret)
389 return ret;
390
391 /* Issue write/erase enable command */
392 val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000393 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000394 if (ret < 0) {
395 netdev_warn(dev->net, "Error writing E2P_DATA\n");
396 return ret;
397 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000398
399 ret = smsc95xx_wait_eeprom(dev);
400 if (ret < 0)
401 return ret;
402
403 for (i = 0; i < length; i++) {
404
405 /* Fill data register */
406 val = data[i];
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000407 ret = smsc95xx_write_reg(dev, E2P_DATA, val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000408 if (ret < 0) {
409 netdev_warn(dev->net, "Error writing E2P_DATA\n");
410 return ret;
411 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000412
413 /* Send "write" command */
414 val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000415 ret = smsc95xx_write_reg(dev, E2P_CMD, val);
Steve Glendinningb052e072012-11-30 05:55:52 +0000416 if (ret < 0) {
417 netdev_warn(dev->net, "Error writing E2P_CMD\n");
418 return ret;
419 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000420
421 ret = smsc95xx_wait_eeprom(dev);
422 if (ret < 0)
423 return ret;
424
425 offset++;
426 }
427
428 return 0;
429}
430
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000431static int __must_check smsc95xx_write_reg_async(struct usbnet *dev, u16 index,
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000432 u32 data)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000433{
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700434 const u16 size = 4;
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000435 u32 buf;
Ming Lei72108fd2012-10-24 19:47:04 +0000436 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000437
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000438 buf = data;
439 cpu_to_le32s(&buf);
440
Ming Lei72108fd2012-10-24 19:47:04 +0000441 ret = usbnet_write_cmd_async(dev, USB_VENDOR_REQUEST_WRITE_REGISTER,
442 USB_DIR_OUT | USB_TYPE_VENDOR |
443 USB_RECIP_DEVICE,
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000444 0, index, &buf, size);
Ming Lei72108fd2012-10-24 19:47:04 +0000445 if (ret < 0)
446 netdev_warn(dev->net, "Error write async cmd, sts=%d\n",
447 ret);
448 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000449}
450
451/* returns hash bit number for given MAC address
452 * example:
453 * 01 00 5E 00 00 01 -> returns bit number 31 */
454static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
455{
456 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
457}
458
459static void smsc95xx_set_multicast(struct net_device *netdev)
460{
461 struct usbnet *dev = netdev_priv(netdev);
462 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000463 unsigned long flags;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000464 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000465
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000466 pdata->hash_hi = 0;
467 pdata->hash_lo = 0;
468
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000469 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
470
471 if (dev->net->flags & IFF_PROMISC) {
Joe Perchesa475f602010-02-17 10:30:24 +0000472 netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000473 pdata->mac_cr |= MAC_CR_PRMS_;
474 pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
475 } else if (dev->net->flags & IFF_ALLMULTI) {
Joe Perchesa475f602010-02-17 10:30:24 +0000476 netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000477 pdata->mac_cr |= MAC_CR_MCPAS_;
478 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000479 } else if (!netdev_mc_empty(dev->net)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000480 struct netdev_hw_addr *ha;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000481
482 pdata->mac_cr |= MAC_CR_HPFILT_;
483 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
484
Jiri Pirko22bedad32010-04-01 21:22:57 +0000485 netdev_for_each_mc_addr(ha, netdev) {
486 u32 bitnum = smsc95xx_hash(ha->addr);
Jiri Pirkoa92635d2010-02-18 04:02:26 +0000487 u32 mask = 0x01 << (bitnum & 0x1F);
488 if (bitnum & 0x20)
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000489 pdata->hash_hi |= mask;
Jiri Pirkoa92635d2010-02-18 04:02:26 +0000490 else
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000491 pdata->hash_lo |= mask;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000492 }
493
Joe Perchesa475f602010-02-17 10:30:24 +0000494 netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000495 pdata->hash_hi, pdata->hash_lo);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000496 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000497 netif_dbg(dev, drv, dev->net, "receive own packets only\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000498 pdata->mac_cr &=
499 ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
500 }
501
502 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
503
504 /* Initiate async writes, as we can't wait for completion here */
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000505 ret = smsc95xx_write_reg_async(dev, HASHH, pdata->hash_hi);
Steve Glendinningb052e072012-11-30 05:55:52 +0000506 if (ret < 0)
507 netdev_warn(dev->net, "failed to initiate async write to HASHH\n");
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000508
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000509 ret = smsc95xx_write_reg_async(dev, HASHL, pdata->hash_lo);
Steve Glendinningb052e072012-11-30 05:55:52 +0000510 if (ret < 0)
511 netdev_warn(dev->net, "failed to initiate async write to HASHL\n");
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000512
Steve Glendinning7b9e7582012-12-10 01:03:08 +0000513 ret = smsc95xx_write_reg_async(dev, MAC_CR, pdata->mac_cr);
Steve Glendinningb052e072012-11-30 05:55:52 +0000514 if (ret < 0)
515 netdev_warn(dev->net, "failed to initiate async write to MAC_CR\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000516}
517
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000518static int smsc95xx_phy_update_flowcontrol(struct usbnet *dev, u8 duplex,
519 u16 lcladv, u16 rmtadv)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000520{
521 u32 flow, afc_cfg = 0;
522
523 int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000524 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000525 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000526
527 if (duplex == DUPLEX_FULL) {
Steve Glendinningbc02ff92008-12-16 02:00:48 -0800528 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000529
530 if (cap & FLOW_CTRL_RX)
531 flow = 0xFFFF0002;
532 else
533 flow = 0;
534
535 if (cap & FLOW_CTRL_TX)
536 afc_cfg |= 0xF;
537 else
538 afc_cfg &= ~0xF;
539
Joe Perchesa475f602010-02-17 10:30:24 +0000540 netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
Joe Perches60b86752010-02-17 10:30:23 +0000541 cap & FLOW_CTRL_RX ? "enabled" : "disabled",
542 cap & FLOW_CTRL_TX ? "enabled" : "disabled");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000543 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000544 netif_dbg(dev, link, dev->net, "half duplex\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000545 flow = 0;
546 afc_cfg |= 0xF;
547 }
548
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000549 ret = smsc95xx_write_reg(dev, FLOW, flow);
Steve Glendinningb052e072012-11-30 05:55:52 +0000550 if (ret < 0)
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000551 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000552
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000553 return smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000554}
555
556static int smsc95xx_link_reset(struct usbnet *dev)
557{
558 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
559 struct mii_if_info *mii = &dev->mii;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000560 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000561 unsigned long flags;
562 u16 lcladv, rmtadv;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000563 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000564
565 /* clear interrupt status */
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000566 ret = smsc95xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000567 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000568 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000569
570 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000571 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000572 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000573
574 mii_check_media(mii, 1, 1);
575 mii_ethtool_gset(&dev->mii, &ecmd);
576 lcladv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE);
577 rmtadv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_LPA);
578
David Decotigny8ae6dac2011-04-27 18:32:38 +0000579 netif_dbg(dev, link, dev->net,
580 "speed: %u duplex: %d lcladv: %04x rmtadv: %04x\n",
581 ethtool_cmd_speed(&ecmd), ecmd.duplex, lcladv, rmtadv);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000582
583 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
584 if (ecmd.duplex != DUPLEX_FULL) {
585 pdata->mac_cr &= ~MAC_CR_FDPX_;
586 pdata->mac_cr |= MAC_CR_RCVOWN_;
587 } else {
588 pdata->mac_cr &= ~MAC_CR_RCVOWN_;
589 pdata->mac_cr |= MAC_CR_FDPX_;
590 }
591 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
592
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000593 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000594 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000595 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000596
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000597 ret = smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
Steve Glendinningb052e072012-11-30 05:55:52 +0000598 if (ret < 0)
599 netdev_warn(dev->net, "Error updating PHY flow control\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000600
Steve Glendinningb052e072012-11-30 05:55:52 +0000601 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000602}
603
604static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
605{
606 u32 intdata;
607
608 if (urb->actual_length != 4) {
Joe Perches60b86752010-02-17 10:30:23 +0000609 netdev_warn(dev->net, "unexpected urb length %d\n",
610 urb->actual_length);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000611 return;
612 }
613
614 memcpy(&intdata, urb->transfer_buffer, 4);
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700615 le32_to_cpus(&intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000616
Joe Perchesa475f602010-02-17 10:30:24 +0000617 netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000618
619 if (intdata & INT_ENP_PHY_INT_)
620 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
621 else
Joe Perches60b86752010-02-17 10:30:23 +0000622 netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
623 intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000624}
625
Steve Glendinningf7b29272008-11-20 04:19:21 -0800626/* Enable or disable Tx & Rx checksum offload engines */
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000627static int smsc95xx_set_features(struct net_device *netdev,
628 netdev_features_t features)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000629{
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700630 struct usbnet *dev = netdev_priv(netdev);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000631 u32 read_buf;
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700632 int ret;
633
634 ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000635 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000636 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000637
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700638 if (features & NETIF_F_HW_CSUM)
Steve Glendinningf7b29272008-11-20 04:19:21 -0800639 read_buf |= Tx_COE_EN_;
640 else
641 read_buf &= ~Tx_COE_EN_;
642
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700643 if (features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000644 read_buf |= Rx_COE_EN_;
645 else
646 read_buf &= ~Rx_COE_EN_;
647
648 ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000649 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000650 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000651
Joe Perchesa475f602010-02-17 10:30:24 +0000652 netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000653 return 0;
654}
655
656static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
657{
658 return MAX_EEPROM_SIZE;
659}
660
661static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
662 struct ethtool_eeprom *ee, u8 *data)
663{
664 struct usbnet *dev = netdev_priv(netdev);
665
666 ee->magic = LAN95XX_EEPROM_MAGIC;
667
668 return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
669}
670
671static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
672 struct ethtool_eeprom *ee, u8 *data)
673{
674 struct usbnet *dev = netdev_priv(netdev);
675
676 if (ee->magic != LAN95XX_EEPROM_MAGIC) {
Joe Perches60b86752010-02-17 10:30:23 +0000677 netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
678 ee->magic);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000679 return -EINVAL;
680 }
681
682 return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
683}
684
Emeric Vigier9fa32e92012-07-09 17:44:45 -0400685static int smsc95xx_ethtool_getregslen(struct net_device *netdev)
686{
687 /* all smsc95xx registers */
Steve Glendinning96245312012-12-10 01:03:07 +0000688 return COE_CR - ID_REV + sizeof(u32);
Emeric Vigier9fa32e92012-07-09 17:44:45 -0400689}
690
691static void
692smsc95xx_ethtool_getregs(struct net_device *netdev, struct ethtool_regs *regs,
693 void *buf)
694{
695 struct usbnet *dev = netdev_priv(netdev);
Dan Carpenterd3484462012-07-10 20:32:51 +0000696 unsigned int i, j;
697 int retval;
Emeric Vigier9fa32e92012-07-09 17:44:45 -0400698 u32 *data = buf;
699
700 retval = smsc95xx_read_reg(dev, ID_REV, &regs->version);
701 if (retval < 0) {
702 netdev_warn(netdev, "REGS: cannot read ID_REV\n");
703 return;
704 }
705
706 for (i = ID_REV, j = 0; i <= COE_CR; i += (sizeof(u32)), j++) {
707 retval = smsc95xx_read_reg(dev, i, &data[j]);
708 if (retval < 0) {
709 netdev_warn(netdev, "REGS: cannot read reg[%x]\n", i);
710 return;
711 }
712 }
713}
714
Steve Glendinninge0e474a2012-09-28 00:07:12 +0000715static void smsc95xx_ethtool_get_wol(struct net_device *net,
716 struct ethtool_wolinfo *wolinfo)
717{
718 struct usbnet *dev = netdev_priv(net);
719 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
720
721 wolinfo->supported = SUPPORTED_WAKE;
722 wolinfo->wolopts = pdata->wolopts;
723}
724
725static int smsc95xx_ethtool_set_wol(struct net_device *net,
726 struct ethtool_wolinfo *wolinfo)
727{
728 struct usbnet *dev = netdev_priv(net);
729 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinning3b146922012-11-30 05:55:50 +0000730 int ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +0000731
732 pdata->wolopts = wolinfo->wolopts & SUPPORTED_WAKE;
Steve Glendinning3b146922012-11-30 05:55:50 +0000733
734 ret = device_set_wakeup_enable(&dev->udev->dev, pdata->wolopts);
Steve Glendinningb052e072012-11-30 05:55:52 +0000735 if (ret < 0)
736 netdev_warn(dev->net, "device_set_wakeup_enable error %d\n", ret);
Steve Glendinning3b146922012-11-30 05:55:50 +0000737
Steve Glendinningb052e072012-11-30 05:55:52 +0000738 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +0000739}
740
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700741static const struct ethtool_ops smsc95xx_ethtool_ops = {
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000742 .get_link = usbnet_get_link,
743 .nway_reset = usbnet_nway_reset,
744 .get_drvinfo = usbnet_get_drvinfo,
745 .get_msglevel = usbnet_get_msglevel,
746 .set_msglevel = usbnet_set_msglevel,
747 .get_settings = usbnet_get_settings,
748 .set_settings = usbnet_set_settings,
749 .get_eeprom_len = smsc95xx_ethtool_get_eeprom_len,
750 .get_eeprom = smsc95xx_ethtool_get_eeprom,
751 .set_eeprom = smsc95xx_ethtool_set_eeprom,
Emeric Vigier9fa32e92012-07-09 17:44:45 -0400752 .get_regs_len = smsc95xx_ethtool_getregslen,
753 .get_regs = smsc95xx_ethtool_getregs,
Steve Glendinninge0e474a2012-09-28 00:07:12 +0000754 .get_wol = smsc95xx_ethtool_get_wol,
755 .set_wol = smsc95xx_ethtool_set_wol,
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000756};
757
758static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
759{
760 struct usbnet *dev = netdev_priv(netdev);
761
762 if (!netif_running(netdev))
763 return -EINVAL;
764
765 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
766}
767
768static void smsc95xx_init_mac_address(struct usbnet *dev)
769{
770 /* try reading mac address from EEPROM */
771 if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
772 dev->net->dev_addr) == 0) {
773 if (is_valid_ether_addr(dev->net->dev_addr)) {
774 /* eeprom values are valid so use them */
Joe Perchesa475f602010-02-17 10:30:24 +0000775 netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000776 return;
777 }
778 }
779
780 /* no eeprom, or eeprom values are invalid. generate random MAC */
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000781 eth_hw_addr_random(dev->net);
Joe Perchesc7e12ea2012-07-12 19:33:07 +0000782 netif_dbg(dev, ifup, dev->net, "MAC address set to eth_random_addr\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000783}
784
785static int smsc95xx_set_mac_address(struct usbnet *dev)
786{
787 u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
788 dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
789 u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
790 int ret;
791
792 ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
Steve Glendinningb052e072012-11-30 05:55:52 +0000793 if (ret < 0)
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000794 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000795
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000796 return smsc95xx_write_reg(dev, ADDRH, addr_hi);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000797}
798
799/* starts the TX path */
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000800static int smsc95xx_start_tx_path(struct usbnet *dev)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000801{
802 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
803 unsigned long flags;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000804 int ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000805
806 /* Enable Tx at MAC */
807 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
808 pdata->mac_cr |= MAC_CR_TXEN_;
809 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
810
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000811 ret = smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000812 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000813 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000814
815 /* Enable Tx at SCSRs */
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000816 return smsc95xx_write_reg(dev, TX_CFG, TX_CFG_ON_);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000817}
818
819/* Starts the Receive path */
Ming Leiec321152012-11-06 04:53:07 +0000820static int smsc95xx_start_rx_path(struct usbnet *dev, int in_pm)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000821{
822 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
823 unsigned long flags;
824
825 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
826 pdata->mac_cr |= MAC_CR_RXEN_;
827 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
828
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000829 return __smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr, in_pm);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000830}
831
832static int smsc95xx_phy_initialize(struct usbnet *dev)
833{
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000834 int bmcr, ret, timeout = 0;
Steve Glendinningdb443c42010-03-16 09:03:06 +0000835
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000836 /* Initialize MII structure */
837 dev->mii.dev = dev->net;
838 dev->mii.mdio_read = smsc95xx_mdio_read;
839 dev->mii.mdio_write = smsc95xx_mdio_write;
840 dev->mii.phy_id_mask = 0x1f;
841 dev->mii.reg_num_mask = 0x1f;
842 dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;
843
Steve Glendinningdb443c42010-03-16 09:03:06 +0000844 /* reset phy and wait for reset to complete */
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000845 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
Steve Glendinningdb443c42010-03-16 09:03:06 +0000846
847 do {
848 msleep(10);
849 bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
850 timeout++;
Rabin Vincentd9460922011-04-30 08:29:27 +0000851 } while ((bmcr & BMCR_RESET) && (timeout < 100));
Steve Glendinningdb443c42010-03-16 09:03:06 +0000852
853 if (timeout >= 100) {
854 netdev_warn(dev->net, "timeout on PHY Reset");
855 return -EIO;
856 }
857
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000858 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
859 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
860 ADVERTISE_PAUSE_ASYM);
861
862 /* read to clear */
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000863 ret = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
Steve Glendinningb052e072012-11-30 05:55:52 +0000864 if (ret < 0) {
865 netdev_warn(dev->net, "Failed to read PHY_INT_SRC during init\n");
866 return ret;
867 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000868
869 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
870 PHY_INT_MASK_DEFAULT_);
871 mii_nway_restart(&dev->mii);
872
Joe Perchesa475f602010-02-17 10:30:24 +0000873 netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000874 return 0;
875}
876
877static int smsc95xx_reset(struct usbnet *dev)
878{
879 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
880 u32 read_buf, write_buf, burst_cap;
881 int ret = 0, timeout;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000882
Joe Perchesa475f602010-02-17 10:30:24 +0000883 netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000884
Steve Glendinning44367612012-09-28 00:07:08 +0000885 ret = smsc95xx_write_reg(dev, HW_CFG, HW_CFG_LRST_);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000886 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000887 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000888
889 timeout = 0;
890 do {
Steve Glendinningcf2acec2012-09-28 00:07:07 +0000891 msleep(10);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000892 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000893 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000894 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000895 timeout++;
896 } while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
897
898 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000899 netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000900 return ret;
901 }
902
Steve Glendinning44367612012-09-28 00:07:08 +0000903 ret = smsc95xx_write_reg(dev, PM_CTRL, PM_CTL_PHY_RST_);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000904 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000905 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000906
907 timeout = 0;
908 do {
Steve Glendinningcf2acec2012-09-28 00:07:07 +0000909 msleep(10);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000910 ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000911 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000912 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000913 timeout++;
914 } while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
915
916 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000917 netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000918 return ret;
919 }
920
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000921 ret = smsc95xx_set_mac_address(dev);
922 if (ret < 0)
923 return ret;
924
Joe Perches1e1d7412012-11-24 01:27:49 +0000925 netif_dbg(dev, ifup, dev->net, "MAC Address: %pM\n",
926 dev->net->dev_addr);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000927
928 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000929 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000930 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000931
Joe Perches1e1d7412012-11-24 01:27:49 +0000932 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG : 0x%08x\n",
933 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000934
935 read_buf |= HW_CFG_BIR_;
936
937 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000938 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000939 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000940
941 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000942 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000943 return ret;
Steve Glendinningb052e072012-11-30 05:55:52 +0000944
Joe Perchesa475f602010-02-17 10:30:24 +0000945 netif_dbg(dev, ifup, dev->net,
946 "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
947 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000948
949 if (!turbo_mode) {
950 burst_cap = 0;
951 dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
952 } else if (dev->udev->speed == USB_SPEED_HIGH) {
953 burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
954 dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
955 } else {
956 burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
957 dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
958 }
959
Joe Perches1e1d7412012-11-24 01:27:49 +0000960 netif_dbg(dev, ifup, dev->net, "rx_urb_size=%ld\n",
961 (ulong)dev->rx_urb_size);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000962
963 ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000964 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000965 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000966
967 ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000968 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000969 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000970
Joe Perchesa475f602010-02-17 10:30:24 +0000971 netif_dbg(dev, ifup, dev->net,
972 "Read Value from BURST_CAP after writing: 0x%08x\n",
973 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000974
Steve Glendinning44367612012-09-28 00:07:08 +0000975 ret = smsc95xx_write_reg(dev, BULK_IN_DLY, DEFAULT_BULK_IN_DELAY);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000976 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000977 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000978
979 ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000980 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000981 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000982
Joe Perchesa475f602010-02-17 10:30:24 +0000983 netif_dbg(dev, ifup, dev->net,
984 "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
985 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000986
987 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +0000988 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +0000989 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +0000990
Joe Perches1e1d7412012-11-24 01:27:49 +0000991 netif_dbg(dev, ifup, dev->net, "Read Value from HW_CFG: 0x%08x\n",
992 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000993
994 if (turbo_mode)
995 read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
996
997 read_buf &= ~HW_CFG_RXDOFF_;
998
999 /* set Rx data offset=2, Make IP header aligns on word boundary. */
1000 read_buf |= NET_IP_ALIGN << 9;
1001
1002 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001003 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001004 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001005
1006 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001007 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001008 return ret;
Steve Glendinning769ea6d2012-09-28 00:07:09 +00001009
Joe Perchesa475f602010-02-17 10:30:24 +00001010 netif_dbg(dev, ifup, dev->net,
1011 "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001012
Steve Glendinning44367612012-09-28 00:07:08 +00001013 ret = smsc95xx_write_reg(dev, INT_STS, INT_STS_CLEAR_ALL_);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001014 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001015 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001016
1017 ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001018 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001019 return ret;
Joe Perchesa475f602010-02-17 10:30:24 +00001020 netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001021
Steve Glendinningf2935012009-05-01 05:46:51 +00001022 /* Configure GPIO pins as LED outputs */
1023 write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
1024 LED_GPIO_CFG_FDX_LED;
1025 ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001026 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001027 return ret;
Steve Glendinningf2935012009-05-01 05:46:51 +00001028
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001029 /* Init Tx */
Steve Glendinning44367612012-09-28 00:07:08 +00001030 ret = smsc95xx_write_reg(dev, FLOW, 0);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001031 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001032 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001033
Steve Glendinning44367612012-09-28 00:07:08 +00001034 ret = smsc95xx_write_reg(dev, AFC_CFG, AFC_CFG_DEFAULT);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001035 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001036 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001037
1038 /* Don't need mac_cr_lock during initialisation */
1039 ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001040 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001041 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001042
1043 /* Init Rx */
1044 /* Set Vlan */
Steve Glendinning44367612012-09-28 00:07:08 +00001045 ret = smsc95xx_write_reg(dev, VLAN1, (u32)ETH_P_8021Q);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001046 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001047 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001048
Steve Glendinningf7b29272008-11-20 04:19:21 -08001049 /* Enable or disable checksum offload engines */
Steve Glendinning769ea6d2012-09-28 00:07:09 +00001050 ret = smsc95xx_set_features(dev->net, dev->net->features);
Steve Glendinningb052e072012-11-30 05:55:52 +00001051 if (ret < 0) {
1052 netdev_warn(dev->net, "Failed to set checksum offload features\n");
1053 return ret;
1054 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001055
1056 smsc95xx_set_multicast(dev->net);
1057
Steve Glendinning769ea6d2012-09-28 00:07:09 +00001058 ret = smsc95xx_phy_initialize(dev);
Steve Glendinningb052e072012-11-30 05:55:52 +00001059 if (ret < 0) {
1060 netdev_warn(dev->net, "Failed to init PHY\n");
1061 return ret;
1062 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001063
1064 ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001065 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001066 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001067
1068 /* enable PHY interrupts */
1069 read_buf |= INT_EP_CTL_PHY_INT_;
1070
1071 ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001072 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001073 return ret;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001074
Steve Glendinning769ea6d2012-09-28 00:07:09 +00001075 ret = smsc95xx_start_tx_path(dev);
Steve Glendinningb052e072012-11-30 05:55:52 +00001076 if (ret < 0) {
1077 netdev_warn(dev->net, "Failed to start TX path\n");
1078 return ret;
1079 }
Steve Glendinning769ea6d2012-09-28 00:07:09 +00001080
Ming Leiec321152012-11-06 04:53:07 +00001081 ret = smsc95xx_start_rx_path(dev, 0);
Steve Glendinningb052e072012-11-30 05:55:52 +00001082 if (ret < 0) {
1083 netdev_warn(dev->net, "Failed to start RX path\n");
1084 return ret;
1085 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001086
Joe Perchesa475f602010-02-17 10:30:24 +00001087 netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001088 return 0;
1089}
1090
Stephen Hemminger63e77b32009-03-20 19:35:58 +00001091static const struct net_device_ops smsc95xx_netdev_ops = {
1092 .ndo_open = usbnet_open,
1093 .ndo_stop = usbnet_stop,
1094 .ndo_start_xmit = usbnet_start_xmit,
1095 .ndo_tx_timeout = usbnet_tx_timeout,
1096 .ndo_change_mtu = usbnet_change_mtu,
1097 .ndo_set_mac_address = eth_mac_addr,
1098 .ndo_validate_addr = eth_validate_addr,
1099 .ndo_do_ioctl = smsc95xx_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001100 .ndo_set_rx_mode = smsc95xx_set_multicast,
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001101 .ndo_set_features = smsc95xx_set_features,
Stephen Hemminger63e77b32009-03-20 19:35:58 +00001102};
1103
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001104static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
1105{
1106 struct smsc95xx_priv *pdata = NULL;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001107 u32 val;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001108 int ret;
1109
1110 printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
1111
1112 ret = usbnet_get_endpoints(dev, intf);
Steve Glendinningb052e072012-11-30 05:55:52 +00001113 if (ret < 0) {
1114 netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
1115 return ret;
1116 }
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001117
1118 dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
Joe Perches38673c82013-02-03 17:28:11 +00001119 GFP_KERNEL);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001120
1121 pdata = (struct smsc95xx_priv *)(dev->data[0]);
Joe Perches38673c82013-02-03 17:28:11 +00001122 if (!pdata)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001123 return -ENOMEM;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001124
1125 spin_lock_init(&pdata->mac_cr_lock);
1126
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001127 if (DEFAULT_TX_CSUM_ENABLE)
1128 dev->net->features |= NETIF_F_HW_CSUM;
1129 if (DEFAULT_RX_CSUM_ENABLE)
1130 dev->net->features |= NETIF_F_RXCSUM;
1131
1132 dev->net->hw_features = NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001133
Bernard Blackhamf4e8ab72010-10-18 13:16:39 +00001134 smsc95xx_init_mac_address(dev);
1135
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001136 /* Init all registers */
1137 ret = smsc95xx_reset(dev);
1138
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001139 /* detect device revision as different features may be available */
1140 ret = smsc95xx_read_reg(dev, ID_REV, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001141 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001142 return ret;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001143 val >>= 16;
Steve Glendinning9ebca502012-11-22 08:05:23 +00001144
1145 if ((val == ID_REV_CHIP_ID_9500A_) || (val == ID_REV_CHIP_ID_9530_) ||
1146 (val == ID_REV_CHIP_ID_89530_) || (val == ID_REV_CHIP_ID_9730_))
1147 pdata->features = (FEATURE_8_WAKEUP_FILTERS |
1148 FEATURE_PHY_NLP_CROSSOVER |
1149 FEATURE_AUTOSUSPEND);
1150 else if (val == ID_REV_CHIP_ID_9512_)
1151 pdata->features = FEATURE_8_WAKEUP_FILTERS;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001152
Stephen Hemminger63e77b32009-03-20 19:35:58 +00001153 dev->net->netdev_ops = &smsc95xx_netdev_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001154 dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001155 dev->net->flags |= IFF_MULTICAST;
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001156 dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
Stephane Fillod9bbf5662012-04-20 09:39:23 +00001157 dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001158 return 0;
1159}
1160
1161static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
1162{
1163 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1164 if (pdata) {
Joe Perchesa475f602010-02-17 10:30:24 +00001165 netif_dbg(dev, ifdown, dev->net, "free pdata\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001166 kfree(pdata);
1167 pdata = NULL;
1168 dev->data[0] = 0;
1169 }
1170}
1171
Steve Glendinning068bb1a2012-11-30 05:55:51 +00001172static u32 smsc_crc(const u8 *buffer, size_t len, int filter)
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001173{
Steve Glendinning068bb1a2012-11-30 05:55:51 +00001174 u32 crc = bitrev16(crc16(0xFFFF, buffer, len));
1175 return crc << ((filter % 2) * 16);
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001176}
1177
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001178static int smsc95xx_enable_phy_wakeup_interrupts(struct usbnet *dev, u16 mask)
1179{
1180 struct mii_if_info *mii = &dev->mii;
1181 int ret;
1182
Joe Perches1e1d7412012-11-24 01:27:49 +00001183 netdev_dbg(dev->net, "enabling PHY wakeup interrupts\n");
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001184
1185 /* read to clear */
1186 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_SRC);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001187 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001188 return ret;
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001189
1190 /* enable interrupt source */
1191 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_INT_MASK);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001192 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001193 return ret;
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001194
1195 ret |= mask;
1196
1197 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_INT_MASK, ret);
1198
1199 return 0;
1200}
1201
1202static int smsc95xx_link_ok_nopm(struct usbnet *dev)
1203{
1204 struct mii_if_info *mii = &dev->mii;
1205 int ret;
1206
1207 /* first, a dummy read, needed to latch some MII phys */
1208 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001209 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001210 return ret;
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001211
1212 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, MII_BMSR);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001213 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001214 return ret;
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001215
1216 return !!(ret & BMSR_LSTATUS);
1217}
1218
Steve Glendinning319b95b2012-11-22 08:05:25 +00001219static int smsc95xx_enter_suspend0(struct usbnet *dev)
1220{
1221 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1222 u32 val;
1223 int ret;
1224
1225 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001226 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001227 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001228
1229 val &= (~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_));
1230 val |= PM_CTL_SUS_MODE_0;
1231
1232 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001233 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001234 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001235
1236 /* clear wol status */
1237 val &= ~PM_CTL_WUPS_;
1238 val |= PM_CTL_WUPS_WOL_;
1239
1240 /* enable energy detection */
1241 if (pdata->wolopts & WAKE_PHY)
1242 val |= PM_CTL_WUPS_ED_;
1243
1244 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001245 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001246 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001247
1248 /* read back PM_CTRL */
1249 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinning319b95b2012-11-22 08:05:25 +00001250
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001251 pdata->suspend_flags |= SUSPEND_SUSPEND0;
1252
Steve Glendinningb052e072012-11-30 05:55:52 +00001253 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001254}
1255
1256static int smsc95xx_enter_suspend1(struct usbnet *dev)
1257{
1258 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1259 struct mii_if_info *mii = &dev->mii;
1260 u32 val;
1261 int ret;
1262
1263 /* reconfigure link pulse detection timing for
1264 * compatibility with non-standard link partners
1265 */
1266 if (pdata->features & FEATURE_PHY_NLP_CROSSOVER)
1267 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_EDPD_CONFIG,
1268 PHY_EDPD_CONFIG_DEFAULT);
1269
1270 /* enable energy detect power-down mode */
1271 ret = smsc95xx_mdio_read_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001272 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001273 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001274
1275 ret |= MODE_CTRL_STS_EDPWRDOWN_;
1276
1277 smsc95xx_mdio_write_nopm(dev->net, mii->phy_id, PHY_MODE_CTRL_STS, ret);
1278
1279 /* enter SUSPEND1 mode */
1280 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001281 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001282 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001283
1284 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1285 val |= PM_CTL_SUS_MODE_1;
1286
1287 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001288 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001289 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001290
1291 /* clear wol status, enable energy detection */
1292 val &= ~PM_CTL_WUPS_;
1293 val |= (PM_CTL_WUPS_ED_ | PM_CTL_ED_EN_);
1294
1295 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinning319b95b2012-11-22 08:05:25 +00001296
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001297 pdata->suspend_flags |= SUSPEND_SUSPEND1;
1298
Steve Glendinningb052e072012-11-30 05:55:52 +00001299 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001300}
1301
1302static int smsc95xx_enter_suspend2(struct usbnet *dev)
1303{
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001304 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinning319b95b2012-11-22 08:05:25 +00001305 u32 val;
1306 int ret;
1307
1308 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001309 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001310 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001311
1312 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1313 val |= PM_CTL_SUS_MODE_2;
1314
1315 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinning319b95b2012-11-22 08:05:25 +00001316
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001317 pdata->suspend_flags |= SUSPEND_SUSPEND2;
1318
Steve Glendinningb052e072012-11-30 05:55:52 +00001319 return ret;
Steve Glendinning319b95b2012-11-22 08:05:25 +00001320}
1321
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001322static int smsc95xx_enter_suspend3(struct usbnet *dev)
1323{
1324 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1325 u32 val;
1326 int ret;
1327
1328 ret = smsc95xx_read_reg_nopm(dev, RX_FIFO_INF, &val);
1329 if (ret < 0)
1330 return ret;
1331
1332 if (val & 0xFFFF) {
1333 netdev_info(dev->net, "rx fifo not empty in autosuspend\n");
1334 return -EBUSY;
1335 }
1336
1337 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
1338 if (ret < 0)
1339 return ret;
1340
1341 val &= ~(PM_CTL_SUS_MODE_ | PM_CTL_WUPS_ | PM_CTL_PHY_RST_);
1342 val |= PM_CTL_SUS_MODE_3 | PM_CTL_RES_CLR_WKP_STS;
1343
1344 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1345 if (ret < 0)
1346 return ret;
1347
1348 /* clear wol status */
1349 val &= ~PM_CTL_WUPS_;
1350 val |= PM_CTL_WUPS_WOL_;
1351
1352 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
1353 if (ret < 0)
1354 return ret;
1355
1356 pdata->suspend_flags |= SUSPEND_SUSPEND3;
1357
1358 return 0;
1359}
1360
1361static int smsc95xx_autosuspend(struct usbnet *dev, u32 link_up)
1362{
1363 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1364 int ret;
1365
1366 if (!netif_running(dev->net)) {
1367 /* interface is ifconfig down so fully power down hw */
1368 netdev_dbg(dev->net, "autosuspend entering SUSPEND2\n");
1369 return smsc95xx_enter_suspend2(dev);
1370 }
1371
1372 if (!link_up) {
1373 /* link is down so enter EDPD mode, but only if device can
1374 * reliably resume from it. This check should be redundant
1375 * as current FEATURE_AUTOSUSPEND parts also support
1376 * FEATURE_PHY_NLP_CROSSOVER but it's included for clarity */
1377 if (!(pdata->features & FEATURE_PHY_NLP_CROSSOVER)) {
1378 netdev_warn(dev->net, "EDPD not supported\n");
1379 return -EBUSY;
1380 }
1381
1382 netdev_dbg(dev->net, "autosuspend entering SUSPEND1\n");
1383
1384 /* enable PHY wakeup events for if cable is attached */
1385 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1386 PHY_INT_MASK_ANEG_COMP_);
1387 if (ret < 0) {
1388 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1389 return ret;
1390 }
1391
1392 netdev_info(dev->net, "entering SUSPEND1 mode\n");
1393 return smsc95xx_enter_suspend1(dev);
1394 }
1395
1396 /* enable PHY wakeup events so we remote wakeup if cable is pulled */
1397 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1398 PHY_INT_MASK_LINK_DOWN_);
1399 if (ret < 0) {
1400 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1401 return ret;
1402 }
1403
1404 netdev_dbg(dev->net, "autosuspend entering SUSPEND3\n");
1405 return smsc95xx_enter_suspend3(dev);
1406}
1407
Steve Glendinningb5a04472012-09-28 00:07:11 +00001408static int smsc95xx_suspend(struct usb_interface *intf, pm_message_t message)
1409{
1410 struct usbnet *dev = usb_get_intfdata(intf);
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001411 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001412 u32 val, link_up;
Steve Glendinningb5a04472012-09-28 00:07:11 +00001413 int ret;
Steve Glendinningb5a04472012-09-28 00:07:11 +00001414
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001415 /* TODO: don't indicate this feature to usb framework if
1416 * our current hardware doesn't have the capability
1417 */
1418 if ((message.event == PM_EVENT_AUTO_SUSPEND) &&
1419 (!(pdata->features & FEATURE_AUTOSUSPEND))) {
1420 netdev_warn(dev->net, "autosuspend not supported\n");
1421 return -EBUSY;
1422 }
1423
Steve Glendinningb5a04472012-09-28 00:07:11 +00001424 ret = usbnet_suspend(intf, message);
Steve Glendinningb052e072012-11-30 05:55:52 +00001425 if (ret < 0) {
1426 netdev_warn(dev->net, "usbnet_suspend error\n");
1427 return ret;
1428 }
Steve Glendinningb5a04472012-09-28 00:07:11 +00001429
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001430 if (pdata->suspend_flags) {
1431 netdev_warn(dev->net, "error during last resume\n");
1432 pdata->suspend_flags = 0;
1433 }
1434
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001435 /* determine if link is up using only _nopm functions */
1436 link_up = smsc95xx_link_ok_nopm(dev);
1437
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001438 if (message.event == PM_EVENT_AUTO_SUSPEND) {
1439 ret = smsc95xx_autosuspend(dev, link_up);
1440 goto done;
1441 }
1442
1443 /* if we get this far we're not autosuspending */
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001444 /* if no wol options set, or if link is down and we're not waking on
1445 * PHY activity, enter lowest power SUSPEND2 mode
1446 */
1447 if (!(pdata->wolopts & SUPPORTED_WAKE) ||
1448 !(link_up || (pdata->wolopts & WAKE_PHY))) {
Joe Perches1e1d7412012-11-24 01:27:49 +00001449 netdev_info(dev->net, "entering SUSPEND2 mode\n");
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001450
1451 /* disable energy detect (link up) & wake up events */
Ming Leiec321152012-11-06 04:53:07 +00001452 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001453 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001454 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001455
1456 val &= ~(WUCSR_MPEN_ | WUCSR_WAKE_EN_);
1457
Ming Leiec321152012-11-06 04:53:07 +00001458 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001459 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001460 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001461
Ming Leiec321152012-11-06 04:53:07 +00001462 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001463 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001464 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001465
1466 val &= ~(PM_CTL_ED_EN_ | PM_CTL_WOL_EN_);
1467
Ming Leiec321152012-11-06 04:53:07 +00001468 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001469 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001470 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001471
Steve Glendinning3b9f7d82012-11-30 05:55:49 +00001472 ret = smsc95xx_enter_suspend2(dev);
1473 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001474 }
1475
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001476 if (pdata->wolopts & WAKE_PHY) {
1477 ret = smsc95xx_enable_phy_wakeup_interrupts(dev,
1478 (PHY_INT_MASK_ANEG_COMP_ | PHY_INT_MASK_LINK_DOWN_));
Steve Glendinningb052e072012-11-30 05:55:52 +00001479 if (ret < 0) {
1480 netdev_warn(dev->net, "error enabling PHY wakeup ints\n");
1481 goto done;
1482 }
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001483
1484 /* if link is down then configure EDPD and enter SUSPEND1,
1485 * otherwise enter SUSPEND0 below
1486 */
1487 if (!link_up) {
Joe Perches1e1d7412012-11-24 01:27:49 +00001488 netdev_info(dev->net, "entering SUSPEND1 mode\n");
Steve Glendinning3b9f7d82012-11-30 05:55:49 +00001489 ret = smsc95xx_enter_suspend1(dev);
1490 goto done;
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001491 }
1492 }
1493
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001494 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
Steve Glendinningeed9a722012-11-30 05:55:48 +00001495 u32 *filter_mask = kzalloc(sizeof(u32) * 32, GFP_KERNEL);
Ming Lei06a221b2012-11-06 04:53:06 +00001496 u32 command[2];
1497 u32 offset[2];
1498 u32 crc[4];
Steve Glendinning9ebca502012-11-22 08:05:23 +00001499 int wuff_filter_count =
1500 (pdata->features & FEATURE_8_WAKEUP_FILTERS) ?
1501 LAN9500A_WUFF_NUM : LAN9500_WUFF_NUM;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001502 int i, filter = 0;
1503
Steve Glendinningeed9a722012-11-30 05:55:48 +00001504 if (!filter_mask) {
1505 netdev_warn(dev->net, "Unable to allocate filter_mask\n");
Steve Glendinning3b9f7d82012-11-30 05:55:49 +00001506 ret = -ENOMEM;
1507 goto done;
Steve Glendinningeed9a722012-11-30 05:55:48 +00001508 }
1509
Ming Lei06a221b2012-11-06 04:53:06 +00001510 memset(command, 0, sizeof(command));
1511 memset(offset, 0, sizeof(offset));
1512 memset(crc, 0, sizeof(crc));
1513
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001514 if (pdata->wolopts & WAKE_BCAST) {
1515 const u8 bcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
Joe Perches1e1d7412012-11-24 01:27:49 +00001516 netdev_info(dev->net, "enabling broadcast detection\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001517 filter_mask[filter * 4] = 0x003F;
1518 filter_mask[filter * 4 + 1] = 0x00;
1519 filter_mask[filter * 4 + 2] = 0x00;
1520 filter_mask[filter * 4 + 3] = 0x00;
1521 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1522 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1523 crc[filter/2] |= smsc_crc(bcast, 6, filter);
1524 filter++;
1525 }
1526
1527 if (pdata->wolopts & WAKE_MCAST) {
1528 const u8 mcast[] = {0x01, 0x00, 0x5E};
Joe Perches1e1d7412012-11-24 01:27:49 +00001529 netdev_info(dev->net, "enabling multicast detection\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001530 filter_mask[filter * 4] = 0x0007;
1531 filter_mask[filter * 4 + 1] = 0x00;
1532 filter_mask[filter * 4 + 2] = 0x00;
1533 filter_mask[filter * 4 + 3] = 0x00;
1534 command[filter/4] |= 0x09UL << ((filter % 4) * 8);
1535 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1536 crc[filter/2] |= smsc_crc(mcast, 3, filter);
1537 filter++;
1538 }
1539
1540 if (pdata->wolopts & WAKE_ARP) {
1541 const u8 arp[] = {0x08, 0x06};
Joe Perches1e1d7412012-11-24 01:27:49 +00001542 netdev_info(dev->net, "enabling ARP detection\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001543 filter_mask[filter * 4] = 0x0003;
1544 filter_mask[filter * 4 + 1] = 0x00;
1545 filter_mask[filter * 4 + 2] = 0x00;
1546 filter_mask[filter * 4 + 3] = 0x00;
1547 command[filter/4] |= 0x05UL << ((filter % 4) * 8);
1548 offset[filter/4] |= 0x0C << ((filter % 4) * 8);
1549 crc[filter/2] |= smsc_crc(arp, 2, filter);
1550 filter++;
1551 }
1552
1553 if (pdata->wolopts & WAKE_UCAST) {
Joe Perches1e1d7412012-11-24 01:27:49 +00001554 netdev_info(dev->net, "enabling unicast detection\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001555 filter_mask[filter * 4] = 0x003F;
1556 filter_mask[filter * 4 + 1] = 0x00;
1557 filter_mask[filter * 4 + 2] = 0x00;
1558 filter_mask[filter * 4 + 3] = 0x00;
1559 command[filter/4] |= 0x01UL << ((filter % 4) * 8);
1560 offset[filter/4] |= 0x00 << ((filter % 4) * 8);
1561 crc[filter/2] |= smsc_crc(dev->net->dev_addr, ETH_ALEN, filter);
1562 filter++;
1563 }
1564
Steve Glendinning9ebca502012-11-22 08:05:23 +00001565 for (i = 0; i < (wuff_filter_count * 4); i++) {
Ming Leiec321152012-11-06 04:53:07 +00001566 ret = smsc95xx_write_reg_nopm(dev, WUFF, filter_mask[i]);
Steve Glendinningb052e072012-11-30 05:55:52 +00001567 if (ret < 0) {
Ming Lei06a221b2012-11-06 04:53:06 +00001568 kfree(filter_mask);
Steve Glendinningb052e072012-11-30 05:55:52 +00001569 goto done;
1570 }
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001571 }
Ming Lei06a221b2012-11-06 04:53:06 +00001572 kfree(filter_mask);
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001573
Steve Glendinning9ebca502012-11-22 08:05:23 +00001574 for (i = 0; i < (wuff_filter_count / 4); i++) {
Ming Leiec321152012-11-06 04:53:07 +00001575 ret = smsc95xx_write_reg_nopm(dev, WUFF, command[i]);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001576 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001577 goto done;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001578 }
1579
Steve Glendinning9ebca502012-11-22 08:05:23 +00001580 for (i = 0; i < (wuff_filter_count / 4); i++) {
Ming Leiec321152012-11-06 04:53:07 +00001581 ret = smsc95xx_write_reg_nopm(dev, WUFF, offset[i]);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001582 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001583 goto done;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001584 }
1585
Steve Glendinning9ebca502012-11-22 08:05:23 +00001586 for (i = 0; i < (wuff_filter_count / 2); i++) {
Ming Leiec321152012-11-06 04:53:07 +00001587 ret = smsc95xx_write_reg_nopm(dev, WUFF, crc[i]);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001588 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001589 goto done;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001590 }
1591
1592 /* clear any pending pattern match packet status */
Ming Leiec321152012-11-06 04:53:07 +00001593 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001594 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001595 goto done;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001596
1597 val |= WUCSR_WUFR_;
1598
Ming Leiec321152012-11-06 04:53:07 +00001599 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001600 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001601 goto done;
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001602 }
1603
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001604 if (pdata->wolopts & WAKE_MAGIC) {
1605 /* clear any pending magic packet status */
Ming Leiec321152012-11-06 04:53:07 +00001606 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001607 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001608 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001609
1610 val |= WUCSR_MPR_;
1611
Ming Leiec321152012-11-06 04:53:07 +00001612 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001613 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001614 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001615 }
1616
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001617 /* enable/disable wakeup sources */
Ming Leiec321152012-11-06 04:53:07 +00001618 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001619 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001620 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001621
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001622 if (pdata->wolopts & (WAKE_BCAST | WAKE_MCAST | WAKE_ARP | WAKE_UCAST)) {
Joe Perches1e1d7412012-11-24 01:27:49 +00001623 netdev_info(dev->net, "enabling pattern match wakeup\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001624 val |= WUCSR_WAKE_EN_;
1625 } else {
Joe Perches1e1d7412012-11-24 01:27:49 +00001626 netdev_info(dev->net, "disabling pattern match wakeup\n");
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001627 val &= ~WUCSR_WAKE_EN_;
1628 }
1629
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001630 if (pdata->wolopts & WAKE_MAGIC) {
Joe Perches1e1d7412012-11-24 01:27:49 +00001631 netdev_info(dev->net, "enabling magic packet wakeup\n");
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001632 val |= WUCSR_MPEN_;
1633 } else {
Joe Perches1e1d7412012-11-24 01:27:49 +00001634 netdev_info(dev->net, "disabling magic packet wakeup\n");
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001635 val &= ~WUCSR_MPEN_;
1636 }
1637
Ming Leiec321152012-11-06 04:53:07 +00001638 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001639 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001640 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001641
1642 /* enable wol wakeup source */
Ming Leiec321152012-11-06 04:53:07 +00001643 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001644 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001645 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001646
1647 val |= PM_CTL_WOL_EN_;
1648
Steve Glendinninge5e3af82012-11-22 08:05:24 +00001649 /* phy energy detect wakeup source */
1650 if (pdata->wolopts & WAKE_PHY)
1651 val |= PM_CTL_ED_EN_;
1652
Ming Leiec321152012-11-06 04:53:07 +00001653 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001654 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001655 goto done;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001656
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001657 /* enable receiver to enable frame reception */
Ming Leiec321152012-11-06 04:53:07 +00001658 smsc95xx_start_rx_path(dev, 1);
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001659
1660 /* some wol options are enabled, so enter SUSPEND0 */
Joe Perches1e1d7412012-11-24 01:27:49 +00001661 netdev_info(dev->net, "entering SUSPEND0 mode\n");
Steve Glendinning3b9f7d82012-11-30 05:55:49 +00001662 ret = smsc95xx_enter_suspend0(dev);
1663
1664done:
1665 if (ret)
1666 usbnet_resume(intf);
1667 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001668}
1669
1670static int smsc95xx_resume(struct usb_interface *intf)
1671{
1672 struct usbnet *dev = usb_get_intfdata(intf);
1673 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001674 u8 suspend_flags = pdata->suspend_flags;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001675 int ret;
1676 u32 val;
1677
1678 BUG_ON(!dev);
1679
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001680 netdev_dbg(dev->net, "resume suspend_flags=0x%02x\n", suspend_flags);
1681
1682 /* do this first to ensure it's cleared even in error case */
1683 pdata->suspend_flags = 0;
1684
1685 if (suspend_flags & SUSPEND_ALLMODES) {
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001686 /* clear wake-up sources */
Ming Leiec321152012-11-06 04:53:07 +00001687 ret = smsc95xx_read_reg_nopm(dev, WUCSR, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001688 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001689 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001690
Steve Glendinningbbd9f9e2012-10-26 03:43:56 +00001691 val &= ~(WUCSR_WAKE_EN_ | WUCSR_MPEN_);
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001692
Ming Leiec321152012-11-06 04:53:07 +00001693 ret = smsc95xx_write_reg_nopm(dev, WUCSR, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001694 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001695 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001696
1697 /* clear wake-up status */
Ming Leiec321152012-11-06 04:53:07 +00001698 ret = smsc95xx_read_reg_nopm(dev, PM_CTRL, &val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001699 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001700 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001701
1702 val &= ~PM_CTL_WOL_EN_;
1703 val |= PM_CTL_WUPS_;
1704
Ming Leiec321152012-11-06 04:53:07 +00001705 ret = smsc95xx_write_reg_nopm(dev, PM_CTRL, val);
Steve Glendinninge360a8b2013-01-03 03:00:15 +00001706 if (ret < 0)
Steve Glendinningb052e072012-11-30 05:55:52 +00001707 return ret;
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001708 }
1709
Steve Glendinningaf3d7c12012-11-22 08:05:22 +00001710 ret = usbnet_resume(intf);
Steve Glendinningb052e072012-11-30 05:55:52 +00001711 if (ret < 0)
1712 netdev_warn(dev->net, "usbnet_resume error\n");
Steve Glendinninge0e474a2012-09-28 00:07:12 +00001713
Steve Glendinningb052e072012-11-30 05:55:52 +00001714 return ret;
Steve Glendinningb5a04472012-09-28 00:07:11 +00001715}
1716
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001717static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
1718{
1719 skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
1720 skb->ip_summed = CHECKSUM_COMPLETE;
1721 skb_trim(skb, skb->len - 2);
1722}
1723
1724static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
1725{
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001726 while (skb->len > 0) {
1727 u32 header, align_count;
1728 struct sk_buff *ax_skb;
1729 unsigned char *packet;
1730 u16 size;
1731
1732 memcpy(&header, skb->data, sizeof(header));
1733 le32_to_cpus(&header);
1734 skb_pull(skb, 4 + NET_IP_ALIGN);
1735 packet = skb->data;
1736
1737 /* get the packet length */
1738 size = (u16)((header & RX_STS_FL_) >> 16);
1739 align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
1740
1741 if (unlikely(header & RX_STS_ES_)) {
Joe Perchesa475f602010-02-17 10:30:24 +00001742 netif_dbg(dev, rx_err, dev->net,
1743 "Error header=0x%08x\n", header);
Herbert Xu80667ac2009-06-29 16:53:00 +00001744 dev->net->stats.rx_errors++;
1745 dev->net->stats.rx_dropped++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001746
1747 if (header & RX_STS_CRC_) {
Herbert Xu80667ac2009-06-29 16:53:00 +00001748 dev->net->stats.rx_crc_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001749 } else {
1750 if (header & (RX_STS_TL_ | RX_STS_RF_))
Herbert Xu80667ac2009-06-29 16:53:00 +00001751 dev->net->stats.rx_frame_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001752
1753 if ((header & RX_STS_LE_) &&
1754 (!(header & RX_STS_FT_)))
Herbert Xu80667ac2009-06-29 16:53:00 +00001755 dev->net->stats.rx_length_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001756 }
1757 } else {
1758 /* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
1759 if (unlikely(size > (ETH_FRAME_LEN + 12))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001760 netif_dbg(dev, rx_err, dev->net,
1761 "size err header=0x%08x\n", header);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001762 return 0;
1763 }
1764
1765 /* last frame in this batch */
1766 if (skb->len == size) {
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001767 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001768 smsc95xx_rx_csum_offload(skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001769 skb_trim(skb, skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001770 skb->truesize = size + sizeof(struct sk_buff);
1771
1772 return 1;
1773 }
1774
1775 ax_skb = skb_clone(skb, GFP_ATOMIC);
1776 if (unlikely(!ax_skb)) {
Joe Perches60b86752010-02-17 10:30:23 +00001777 netdev_warn(dev->net, "Error allocating skb\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001778 return 0;
1779 }
1780
1781 ax_skb->len = size;
1782 ax_skb->data = packet;
1783 skb_set_tail_pointer(ax_skb, size);
1784
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001785 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001786 smsc95xx_rx_csum_offload(ax_skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001787 skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001788 ax_skb->truesize = size + sizeof(struct sk_buff);
1789
1790 usbnet_skb_return(dev, ax_skb);
1791 }
1792
1793 skb_pull(skb, size);
1794
1795 /* padding bytes before the next frame starts */
1796 if (skb->len)
1797 skb_pull(skb, align_count);
1798 }
1799
1800 if (unlikely(skb->len < 0)) {
Joe Perches60b86752010-02-17 10:30:23 +00001801 netdev_warn(dev->net, "invalid rx length<0 %d\n", skb->len);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001802 return 0;
1803 }
1804
1805 return 1;
1806}
1807
Steve Glendinningf7b29272008-11-20 04:19:21 -08001808static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1809{
Michał Mirosław55508d62010-12-14 15:24:08 +00001810 u16 low_16 = (u16)skb_checksum_start_offset(skb);
1811 u16 high_16 = low_16 + skb->csum_offset;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001812 return (high_16 << 16) | low_16;
1813}
1814
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001815static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
1816 struct sk_buff *skb, gfp_t flags)
1817{
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001818 bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001819 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001820 u32 tx_cmd_a, tx_cmd_b;
1821
Steve Glendinningf7b29272008-11-20 04:19:21 -08001822 /* We do not advertise SG, so skbs should be already linearized */
1823 BUG_ON(skb_shinfo(skb)->nr_frags);
1824
1825 if (skb_headroom(skb) < overhead) {
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001826 struct sk_buff *skb2 = skb_copy_expand(skb,
Steve Glendinningf7b29272008-11-20 04:19:21 -08001827 overhead, 0, flags);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001828 dev_kfree_skb_any(skb);
1829 skb = skb2;
1830 if (!skb)
1831 return NULL;
1832 }
1833
Steve Glendinningf7b29272008-11-20 04:19:21 -08001834 if (csum) {
Steve Glendinning11bc3082010-03-18 22:18:41 -07001835 if (skb->len <= 45) {
1836 /* workaround - hardware tx checksum does not work
1837 * properly with extremely small packets */
Michał Mirosław55508d62010-12-14 15:24:08 +00001838 long csstart = skb_checksum_start_offset(skb);
Steve Glendinning11bc3082010-03-18 22:18:41 -07001839 __wsum calc = csum_partial(skb->data + csstart,
1840 skb->len - csstart, 0);
1841 *((__sum16 *)(skb->data + csstart
1842 + skb->csum_offset)) = csum_fold(calc);
1843
1844 csum = false;
1845 } else {
1846 u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
1847 skb_push(skb, 4);
Steve Glendinning00acda62012-11-02 00:44:20 +00001848 cpu_to_le32s(&csum_preamble);
Steve Glendinning11bc3082010-03-18 22:18:41 -07001849 memcpy(skb->data, &csum_preamble, 4);
1850 }
Steve Glendinningf7b29272008-11-20 04:19:21 -08001851 }
1852
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001853 skb_push(skb, 4);
1854 tx_cmd_b = (u32)(skb->len - 4);
Steve Glendinningf7b29272008-11-20 04:19:21 -08001855 if (csum)
1856 tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001857 cpu_to_le32s(&tx_cmd_b);
1858 memcpy(skb->data, &tx_cmd_b, 4);
1859
1860 skb_push(skb, 4);
1861 tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
1862 TX_CMD_A_LAST_SEG_;
1863 cpu_to_le32s(&tx_cmd_a);
1864 memcpy(skb->data, &tx_cmd_a, 4);
1865
1866 return skb;
1867}
1868
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001869static int smsc95xx_manage_power(struct usbnet *dev, int on)
1870{
1871 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1872
1873 dev->intf->needs_remote_wakeup = on;
1874
1875 if (pdata->features & FEATURE_AUTOSUSPEND)
1876 return 0;
1877
1878 /* this chip revision doesn't support autosuspend */
1879 netdev_info(dev->net, "hardware doesn't support USB autosuspend\n");
1880
1881 if (on)
1882 usb_autopm_get_interface_no_resume(dev->intf);
1883 else
1884 usb_autopm_put_interface(dev->intf);
1885
1886 return 0;
1887}
1888
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001889static const struct driver_info smsc95xx_info = {
1890 .description = "smsc95xx USB 2.0 Ethernet",
1891 .bind = smsc95xx_bind,
1892 .unbind = smsc95xx_unbind,
1893 .link_reset = smsc95xx_link_reset,
1894 .reset = smsc95xx_reset,
1895 .rx_fixup = smsc95xx_rx_fixup,
1896 .tx_fixup = smsc95xx_tx_fixup,
1897 .status = smsc95xx_status,
Steve Glendinningb2d4b152013-01-03 03:00:16 +00001898 .manage_power = smsc95xx_manage_power,
Paolo Pisati07d69d42012-04-23 04:05:20 +00001899 .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001900};
1901
1902static const struct usb_device_id products[] = {
1903 {
1904 /* SMSC9500 USB Ethernet Device */
1905 USB_DEVICE(0x0424, 0x9500),
1906 .driver_info = (unsigned long) &smsc95xx_info,
1907 },
Steve Glendinning726474b2009-05-01 06:07:22 +00001908 {
Steve Glendinning6f41d122009-09-22 05:13:02 +00001909 /* SMSC9505 USB Ethernet Device */
1910 USB_DEVICE(0x0424, 0x9505),
1911 .driver_info = (unsigned long) &smsc95xx_info,
1912 },
1913 {
1914 /* SMSC9500A USB Ethernet Device */
1915 USB_DEVICE(0x0424, 0x9E00),
1916 .driver_info = (unsigned long) &smsc95xx_info,
1917 },
1918 {
1919 /* SMSC9505A USB Ethernet Device */
1920 USB_DEVICE(0x0424, 0x9E01),
1921 .driver_info = (unsigned long) &smsc95xx_info,
1922 },
1923 {
Steve Glendinning726474b2009-05-01 06:07:22 +00001924 /* SMSC9512/9514 USB Hub & Ethernet Device */
1925 USB_DEVICE(0x0424, 0xec00),
1926 .driver_info = (unsigned long) &smsc95xx_info,
1927 },
Steve Glendinning6f41d122009-09-22 05:13:02 +00001928 {
1929 /* SMSC9500 USB Ethernet Device (SAL10) */
1930 USB_DEVICE(0x0424, 0x9900),
1931 .driver_info = (unsigned long) &smsc95xx_info,
1932 },
1933 {
1934 /* SMSC9505 USB Ethernet Device (SAL10) */
1935 USB_DEVICE(0x0424, 0x9901),
1936 .driver_info = (unsigned long) &smsc95xx_info,
1937 },
1938 {
1939 /* SMSC9500A USB Ethernet Device (SAL10) */
1940 USB_DEVICE(0x0424, 0x9902),
1941 .driver_info = (unsigned long) &smsc95xx_info,
1942 },
1943 {
1944 /* SMSC9505A USB Ethernet Device (SAL10) */
1945 USB_DEVICE(0x0424, 0x9903),
1946 .driver_info = (unsigned long) &smsc95xx_info,
1947 },
1948 {
1949 /* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
1950 USB_DEVICE(0x0424, 0x9904),
1951 .driver_info = (unsigned long) &smsc95xx_info,
1952 },
1953 {
1954 /* SMSC9500A USB Ethernet Device (HAL) */
1955 USB_DEVICE(0x0424, 0x9905),
1956 .driver_info = (unsigned long) &smsc95xx_info,
1957 },
1958 {
1959 /* SMSC9505A USB Ethernet Device (HAL) */
1960 USB_DEVICE(0x0424, 0x9906),
1961 .driver_info = (unsigned long) &smsc95xx_info,
1962 },
1963 {
1964 /* SMSC9500 USB Ethernet Device (Alternate ID) */
1965 USB_DEVICE(0x0424, 0x9907),
1966 .driver_info = (unsigned long) &smsc95xx_info,
1967 },
1968 {
1969 /* SMSC9500A USB Ethernet Device (Alternate ID) */
1970 USB_DEVICE(0x0424, 0x9908),
1971 .driver_info = (unsigned long) &smsc95xx_info,
1972 },
1973 {
1974 /* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
1975 USB_DEVICE(0x0424, 0x9909),
1976 .driver_info = (unsigned long) &smsc95xx_info,
1977 },
Steve Glendinning88edaa42011-04-10 18:59:27 -07001978 {
1979 /* SMSC LAN9530 USB Ethernet Device */
1980 USB_DEVICE(0x0424, 0x9530),
1981 .driver_info = (unsigned long) &smsc95xx_info,
1982 },
1983 {
1984 /* SMSC LAN9730 USB Ethernet Device */
1985 USB_DEVICE(0x0424, 0x9730),
1986 .driver_info = (unsigned long) &smsc95xx_info,
1987 },
1988 {
1989 /* SMSC LAN89530 USB Ethernet Device */
1990 USB_DEVICE(0x0424, 0x9E08),
1991 .driver_info = (unsigned long) &smsc95xx_info,
1992 },
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001993 { }, /* END */
1994};
1995MODULE_DEVICE_TABLE(usb, products);
1996
1997static struct usb_driver smsc95xx_driver = {
1998 .name = "smsc95xx",
1999 .id_table = products,
2000 .probe = usbnet_probe,
Steve Glendinningb5a04472012-09-28 00:07:11 +00002001 .suspend = smsc95xx_suspend,
Steve Glendinninge0e474a2012-09-28 00:07:12 +00002002 .resume = smsc95xx_resume,
2003 .reset_resume = smsc95xx_resume,
Steve Glendinning2f7ca802008-10-02 05:27:57 +00002004 .disconnect = usbnet_disconnect,
Sarah Sharpe1f12eb2012-04-23 10:08:51 -07002005 .disable_hub_initiated_lpm = 1,
Steve Glendinningb2d4b152013-01-03 03:00:16 +00002006 .supports_autosuspend = 1,
Steve Glendinning2f7ca802008-10-02 05:27:57 +00002007};
2008
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08002009module_usb_driver(smsc95xx_driver);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00002010
2011MODULE_AUTHOR("Nancy Lin");
Steve Glendinning90b24cf2012-04-16 12:13:29 +01002012MODULE_AUTHOR("Steve Glendinning <steve.glendinning@shawell.net>");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00002013MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
2014MODULE_LICENSE("GPL");