blob: 94ae66999f592a4a8a1c45fdc24505050271d086 [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>
29#include <linux/crc32.h>
30#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Steve Glendinning2f7ca802008-10-02 05:27:57 +000032#include "smsc95xx.h"
33
34#define SMSC_CHIPNAME "smsc95xx"
Steve Glendinningf7b29272008-11-20 04:19:21 -080035#define SMSC_DRIVER_VERSION "1.0.4"
Steve Glendinning2f7ca802008-10-02 05:27:57 +000036#define HS_USB_PKT_SIZE (512)
37#define FS_USB_PKT_SIZE (64)
38#define DEFAULT_HS_BURST_CAP_SIZE (16 * 1024 + 5 * HS_USB_PKT_SIZE)
39#define DEFAULT_FS_BURST_CAP_SIZE (6 * 1024 + 33 * FS_USB_PKT_SIZE)
40#define DEFAULT_BULK_IN_DELAY (0x00002000)
41#define MAX_SINGLE_PACKET_SIZE (2048)
42#define LAN95XX_EEPROM_MAGIC (0x9500)
43#define EEPROM_MAC_OFFSET (0x01)
Steve Glendinningf7b29272008-11-20 04:19:21 -080044#define DEFAULT_TX_CSUM_ENABLE (true)
Steve Glendinning2f7ca802008-10-02 05:27:57 +000045#define DEFAULT_RX_CSUM_ENABLE (true)
46#define SMSC95XX_INTERNAL_PHY_ID (1)
47#define SMSC95XX_TX_OVERHEAD (8)
Steve Glendinningf7b29272008-11-20 04:19:21 -080048#define SMSC95XX_TX_OVERHEAD_CSUM (12)
Steve Glendinning2f7ca802008-10-02 05:27:57 +000049
50struct smsc95xx_priv {
51 u32 mac_cr;
Marc Zyngier3c0f3c62011-03-18 03:53:58 +000052 u32 hash_hi;
53 u32 hash_lo;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000054 spinlock_t mac_cr_lock;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000055};
56
57struct usb_context {
58 struct usb_ctrlrequest req;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000059 struct usbnet *dev;
60};
61
Rusty Russelleb939922011-12-19 14:08:01 +000062static bool turbo_mode = true;
Steve Glendinning2f7ca802008-10-02 05:27:57 +000063module_param(turbo_mode, bool, 0644);
64MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
65
66static int smsc95xx_read_reg(struct usbnet *dev, u32 index, u32 *data)
67{
68 u32 *buf = kmalloc(4, GFP_KERNEL);
69 int ret;
70
71 BUG_ON(!dev);
72
73 if (!buf)
74 return -ENOMEM;
75
76 ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
77 USB_VENDOR_REQUEST_READ_REGISTER,
78 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
79 00, index, buf, 4, USB_CTRL_GET_TIMEOUT);
80
81 if (unlikely(ret < 0))
Joe Perches60b86752010-02-17 10:30:23 +000082 netdev_warn(dev->net, "Failed to read register index 0x%08x\n", index);
Steve Glendinning2f7ca802008-10-02 05:27:57 +000083
84 le32_to_cpus(buf);
85 *data = *buf;
86 kfree(buf);
87
88 return ret;
89}
90
91static int smsc95xx_write_reg(struct usbnet *dev, u32 index, u32 data)
92{
93 u32 *buf = kmalloc(4, GFP_KERNEL);
94 int ret;
95
96 BUG_ON(!dev);
97
98 if (!buf)
99 return -ENOMEM;
100
101 *buf = data;
102 cpu_to_le32s(buf);
103
104 ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
105 USB_VENDOR_REQUEST_WRITE_REGISTER,
106 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
107 00, index, buf, 4, USB_CTRL_SET_TIMEOUT);
108
109 if (unlikely(ret < 0))
Joe Perches60b86752010-02-17 10:30:23 +0000110 netdev_warn(dev->net, "Failed to write register index 0x%08x\n", index);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000111
112 kfree(buf);
113
114 return ret;
115}
116
117/* Loop until the read is completed with timeout
118 * called with phy_mutex held */
119static int smsc95xx_phy_wait_not_busy(struct usbnet *dev)
120{
121 unsigned long start_time = jiffies;
122 u32 val;
123
124 do {
125 smsc95xx_read_reg(dev, MII_ADDR, &val);
126 if (!(val & MII_BUSY_))
127 return 0;
128 } while (!time_after(jiffies, start_time + HZ));
129
130 return -EIO;
131}
132
133static int smsc95xx_mdio_read(struct net_device *netdev, int phy_id, int idx)
134{
135 struct usbnet *dev = netdev_priv(netdev);
136 u32 val, addr;
137
138 mutex_lock(&dev->phy_mutex);
139
140 /* confirm MII not busy */
141 if (smsc95xx_phy_wait_not_busy(dev)) {
Joe Perches60b86752010-02-17 10:30:23 +0000142 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_read\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000143 mutex_unlock(&dev->phy_mutex);
144 return -EIO;
145 }
146
147 /* set the address, index & direction (read from PHY) */
148 phy_id &= dev->mii.phy_id_mask;
149 idx &= dev->mii.reg_num_mask;
150 addr = (phy_id << 11) | (idx << 6) | MII_READ_;
151 smsc95xx_write_reg(dev, MII_ADDR, addr);
152
153 if (smsc95xx_phy_wait_not_busy(dev)) {
Joe Perches60b86752010-02-17 10:30:23 +0000154 netdev_warn(dev->net, "Timed out reading MII reg %02X\n", idx);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000155 mutex_unlock(&dev->phy_mutex);
156 return -EIO;
157 }
158
159 smsc95xx_read_reg(dev, MII_DATA, &val);
160
161 mutex_unlock(&dev->phy_mutex);
162
163 return (u16)(val & 0xFFFF);
164}
165
166static void smsc95xx_mdio_write(struct net_device *netdev, int phy_id, int idx,
167 int regval)
168{
169 struct usbnet *dev = netdev_priv(netdev);
170 u32 val, addr;
171
172 mutex_lock(&dev->phy_mutex);
173
174 /* confirm MII not busy */
175 if (smsc95xx_phy_wait_not_busy(dev)) {
Joe Perches60b86752010-02-17 10:30:23 +0000176 netdev_warn(dev->net, "MII is busy in smsc95xx_mdio_write\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000177 mutex_unlock(&dev->phy_mutex);
178 return;
179 }
180
181 val = regval;
182 smsc95xx_write_reg(dev, MII_DATA, val);
183
184 /* set the address, index & direction (write to PHY) */
185 phy_id &= dev->mii.phy_id_mask;
186 idx &= dev->mii.reg_num_mask;
187 addr = (phy_id << 11) | (idx << 6) | MII_WRITE_;
188 smsc95xx_write_reg(dev, MII_ADDR, addr);
189
190 if (smsc95xx_phy_wait_not_busy(dev))
Joe Perches60b86752010-02-17 10:30:23 +0000191 netdev_warn(dev->net, "Timed out writing MII reg %02X\n", idx);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000192
193 mutex_unlock(&dev->phy_mutex);
194}
195
196static int smsc95xx_wait_eeprom(struct usbnet *dev)
197{
198 unsigned long start_time = jiffies;
199 u32 val;
200
201 do {
202 smsc95xx_read_reg(dev, E2P_CMD, &val);
203 if (!(val & E2P_CMD_BUSY_) || (val & E2P_CMD_TIMEOUT_))
204 break;
205 udelay(40);
206 } while (!time_after(jiffies, start_time + HZ));
207
208 if (val & (E2P_CMD_TIMEOUT_ | E2P_CMD_BUSY_)) {
Joe Perches60b86752010-02-17 10:30:23 +0000209 netdev_warn(dev->net, "EEPROM read operation timeout\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000210 return -EIO;
211 }
212
213 return 0;
214}
215
216static int smsc95xx_eeprom_confirm_not_busy(struct usbnet *dev)
217{
218 unsigned long start_time = jiffies;
219 u32 val;
220
221 do {
222 smsc95xx_read_reg(dev, E2P_CMD, &val);
223
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000224 if (!(val & E2P_CMD_BUSY_))
225 return 0;
226
227 udelay(40);
228 } while (!time_after(jiffies, start_time + HZ));
229
Joe Perches60b86752010-02-17 10:30:23 +0000230 netdev_warn(dev->net, "EEPROM is busy\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000231 return -EIO;
232}
233
234static int smsc95xx_read_eeprom(struct usbnet *dev, u32 offset, u32 length,
235 u8 *data)
236{
237 u32 val;
238 int i, ret;
239
240 BUG_ON(!dev);
241 BUG_ON(!data);
242
243 ret = smsc95xx_eeprom_confirm_not_busy(dev);
244 if (ret)
245 return ret;
246
247 for (i = 0; i < length; i++) {
248 val = E2P_CMD_BUSY_ | E2P_CMD_READ_ | (offset & E2P_CMD_ADDR_);
249 smsc95xx_write_reg(dev, E2P_CMD, val);
250
251 ret = smsc95xx_wait_eeprom(dev);
252 if (ret < 0)
253 return ret;
254
255 smsc95xx_read_reg(dev, E2P_DATA, &val);
256
257 data[i] = val & 0xFF;
258 offset++;
259 }
260
261 return 0;
262}
263
264static int smsc95xx_write_eeprom(struct usbnet *dev, u32 offset, u32 length,
265 u8 *data)
266{
267 u32 val;
268 int i, ret;
269
270 BUG_ON(!dev);
271 BUG_ON(!data);
272
273 ret = smsc95xx_eeprom_confirm_not_busy(dev);
274 if (ret)
275 return ret;
276
277 /* Issue write/erase enable command */
278 val = E2P_CMD_BUSY_ | E2P_CMD_EWEN_;
279 smsc95xx_write_reg(dev, E2P_CMD, val);
280
281 ret = smsc95xx_wait_eeprom(dev);
282 if (ret < 0)
283 return ret;
284
285 for (i = 0; i < length; i++) {
286
287 /* Fill data register */
288 val = data[i];
289 smsc95xx_write_reg(dev, E2P_DATA, val);
290
291 /* Send "write" command */
292 val = E2P_CMD_BUSY_ | E2P_CMD_WRITE_ | (offset & E2P_CMD_ADDR_);
293 smsc95xx_write_reg(dev, E2P_CMD, val);
294
295 ret = smsc95xx_wait_eeprom(dev);
296 if (ret < 0)
297 return ret;
298
299 offset++;
300 }
301
302 return 0;
303}
304
Steve Glendinning150a7fc2009-01-25 17:54:46 -0800305static void smsc95xx_async_cmd_callback(struct urb *urb)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000306{
307 struct usb_context *usb_context = urb->context;
308 struct usbnet *dev = usb_context->dev;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800309 int status = urb->status;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000310
Oliver Neukumc94cb312008-12-18 23:00:59 -0800311 if (status < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000312 netdev_warn(dev->net, "async callback failed with %d\n", status);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000313
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000314 kfree(usb_context);
315 usb_free_urb(urb);
316}
317
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700318static int smsc95xx_write_reg_async(struct usbnet *dev, u16 index, u32 *data)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000319{
320 struct usb_context *usb_context;
321 int status;
322 struct urb *urb;
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700323 const u16 size = 4;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000324
325 urb = usb_alloc_urb(0, GFP_ATOMIC);
326 if (!urb) {
Joe Perches60b86752010-02-17 10:30:23 +0000327 netdev_warn(dev->net, "Error allocating URB\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000328 return -ENOMEM;
329 }
330
331 usb_context = kmalloc(sizeof(struct usb_context), GFP_ATOMIC);
332 if (usb_context == NULL) {
Joe Perches60b86752010-02-17 10:30:23 +0000333 netdev_warn(dev->net, "Error allocating control msg\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000334 usb_free_urb(urb);
335 return -ENOMEM;
336 }
337
338 usb_context->req.bRequestType =
339 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
340 usb_context->req.bRequest = USB_VENDOR_REQUEST_WRITE_REGISTER;
341 usb_context->req.wValue = 00;
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700342 usb_context->req.wIndex = cpu_to_le16(index);
343 usb_context->req.wLength = cpu_to_le16(size);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000344
345 usb_fill_control_urb(urb, dev->udev, usb_sndctrlpipe(dev->udev, 0),
346 (void *)&usb_context->req, data, size,
Steve Glendinning150a7fc2009-01-25 17:54:46 -0800347 smsc95xx_async_cmd_callback,
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000348 (void *)usb_context);
349
350 status = usb_submit_urb(urb, GFP_ATOMIC);
351 if (status < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000352 netdev_warn(dev->net, "Error submitting control msg, sts=%d\n",
353 status);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000354 kfree(usb_context);
355 usb_free_urb(urb);
356 }
357
358 return status;
359}
360
361/* returns hash bit number for given MAC address
362 * example:
363 * 01 00 5E 00 00 01 -> returns bit number 31 */
364static unsigned int smsc95xx_hash(char addr[ETH_ALEN])
365{
366 return (ether_crc(ETH_ALEN, addr) >> 26) & 0x3f;
367}
368
369static void smsc95xx_set_multicast(struct net_device *netdev)
370{
371 struct usbnet *dev = netdev_priv(netdev);
372 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000373 unsigned long flags;
374
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000375 pdata->hash_hi = 0;
376 pdata->hash_lo = 0;
377
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000378 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
379
380 if (dev->net->flags & IFF_PROMISC) {
Joe Perchesa475f602010-02-17 10:30:24 +0000381 netif_dbg(dev, drv, dev->net, "promiscuous mode enabled\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000382 pdata->mac_cr |= MAC_CR_PRMS_;
383 pdata->mac_cr &= ~(MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
384 } else if (dev->net->flags & IFF_ALLMULTI) {
Joe Perchesa475f602010-02-17 10:30:24 +0000385 netif_dbg(dev, drv, dev->net, "receive all multicast enabled\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000386 pdata->mac_cr |= MAC_CR_MCPAS_;
387 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_HPFILT_);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000388 } else if (!netdev_mc_empty(dev->net)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000389 struct netdev_hw_addr *ha;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000390
391 pdata->mac_cr |= MAC_CR_HPFILT_;
392 pdata->mac_cr &= ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_);
393
Jiri Pirko22bedad32010-04-01 21:22:57 +0000394 netdev_for_each_mc_addr(ha, netdev) {
395 u32 bitnum = smsc95xx_hash(ha->addr);
Jiri Pirkoa92635d2010-02-18 04:02:26 +0000396 u32 mask = 0x01 << (bitnum & 0x1F);
397 if (bitnum & 0x20)
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000398 pdata->hash_hi |= mask;
Jiri Pirkoa92635d2010-02-18 04:02:26 +0000399 else
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000400 pdata->hash_lo |= mask;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000401 }
402
Joe Perchesa475f602010-02-17 10:30:24 +0000403 netif_dbg(dev, drv, dev->net, "HASHH=0x%08X, HASHL=0x%08X\n",
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000404 pdata->hash_hi, pdata->hash_lo);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000405 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000406 netif_dbg(dev, drv, dev->net, "receive own packets only\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000407 pdata->mac_cr &=
408 ~(MAC_CR_PRMS_ | MAC_CR_MCPAS_ | MAC_CR_HPFILT_);
409 }
410
411 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
412
413 /* Initiate async writes, as we can't wait for completion here */
Marc Zyngier3c0f3c62011-03-18 03:53:58 +0000414 smsc95xx_write_reg_async(dev, HASHH, &pdata->hash_hi);
415 smsc95xx_write_reg_async(dev, HASHL, &pdata->hash_lo);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000416 smsc95xx_write_reg_async(dev, MAC_CR, &pdata->mac_cr);
417}
418
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000419static void smsc95xx_phy_update_flowcontrol(struct usbnet *dev, u8 duplex,
420 u16 lcladv, u16 rmtadv)
421{
422 u32 flow, afc_cfg = 0;
423
424 int ret = smsc95xx_read_reg(dev, AFC_CFG, &afc_cfg);
425 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000426 netdev_warn(dev->net, "error reading AFC_CFG\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000427 return;
428 }
429
430 if (duplex == DUPLEX_FULL) {
Steve Glendinningbc02ff92008-12-16 02:00:48 -0800431 u8 cap = mii_resolve_flowctrl_fdx(lcladv, rmtadv);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000432
433 if (cap & FLOW_CTRL_RX)
434 flow = 0xFFFF0002;
435 else
436 flow = 0;
437
438 if (cap & FLOW_CTRL_TX)
439 afc_cfg |= 0xF;
440 else
441 afc_cfg &= ~0xF;
442
Joe Perchesa475f602010-02-17 10:30:24 +0000443 netif_dbg(dev, link, dev->net, "rx pause %s, tx pause %s\n",
Joe Perches60b86752010-02-17 10:30:23 +0000444 cap & FLOW_CTRL_RX ? "enabled" : "disabled",
445 cap & FLOW_CTRL_TX ? "enabled" : "disabled");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000446 } else {
Joe Perchesa475f602010-02-17 10:30:24 +0000447 netif_dbg(dev, link, dev->net, "half duplex\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000448 flow = 0;
449 afc_cfg |= 0xF;
450 }
451
452 smsc95xx_write_reg(dev, FLOW, flow);
453 smsc95xx_write_reg(dev, AFC_CFG, afc_cfg);
454}
455
456static int smsc95xx_link_reset(struct usbnet *dev)
457{
458 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
459 struct mii_if_info *mii = &dev->mii;
David Decotigny8ae6dac2011-04-27 18:32:38 +0000460 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000461 unsigned long flags;
462 u16 lcladv, rmtadv;
463 u32 intdata;
464
465 /* clear interrupt status */
466 smsc95xx_mdio_read(dev->net, mii->phy_id, PHY_INT_SRC);
467 intdata = 0xFFFFFFFF;
468 smsc95xx_write_reg(dev, INT_STS, intdata);
469
470 mii_check_media(mii, 1, 1);
471 mii_ethtool_gset(&dev->mii, &ecmd);
472 lcladv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_ADVERTISE);
473 rmtadv = smsc95xx_mdio_read(dev->net, mii->phy_id, MII_LPA);
474
David Decotigny8ae6dac2011-04-27 18:32:38 +0000475 netif_dbg(dev, link, dev->net,
476 "speed: %u duplex: %d lcladv: %04x rmtadv: %04x\n",
477 ethtool_cmd_speed(&ecmd), ecmd.duplex, lcladv, rmtadv);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000478
479 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
480 if (ecmd.duplex != DUPLEX_FULL) {
481 pdata->mac_cr &= ~MAC_CR_FDPX_;
482 pdata->mac_cr |= MAC_CR_RCVOWN_;
483 } else {
484 pdata->mac_cr &= ~MAC_CR_RCVOWN_;
485 pdata->mac_cr |= MAC_CR_FDPX_;
486 }
487 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
488
489 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
490
491 smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
492
493 return 0;
494}
495
496static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
497{
498 u32 intdata;
499
500 if (urb->actual_length != 4) {
Joe Perches60b86752010-02-17 10:30:23 +0000501 netdev_warn(dev->net, "unexpected urb length %d\n",
502 urb->actual_length);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000503 return;
504 }
505
506 memcpy(&intdata, urb->transfer_buffer, 4);
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700507 le32_to_cpus(&intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000508
Joe Perchesa475f602010-02-17 10:30:24 +0000509 netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000510
511 if (intdata & INT_ENP_PHY_INT_)
512 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
513 else
Joe Perches60b86752010-02-17 10:30:23 +0000514 netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
515 intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000516}
517
Steve Glendinningf7b29272008-11-20 04:19:21 -0800518/* Enable or disable Tx & Rx checksum offload engines */
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000519static int smsc95xx_set_features(struct net_device *netdev,
520 netdev_features_t features)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000521{
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700522 struct usbnet *dev = netdev_priv(netdev);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000523 u32 read_buf;
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700524 int ret;
525
526 ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000527 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000528 netdev_warn(dev->net, "Failed to read COE_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000529 return ret;
530 }
531
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700532 if (features & NETIF_F_HW_CSUM)
Steve Glendinningf7b29272008-11-20 04:19:21 -0800533 read_buf |= Tx_COE_EN_;
534 else
535 read_buf &= ~Tx_COE_EN_;
536
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700537 if (features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000538 read_buf |= Rx_COE_EN_;
539 else
540 read_buf &= ~Rx_COE_EN_;
541
542 ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
543 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000544 netdev_warn(dev->net, "Failed to write COE_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000545 return ret;
546 }
547
Joe Perchesa475f602010-02-17 10:30:24 +0000548 netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000549 return 0;
550}
551
552static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
553{
554 return MAX_EEPROM_SIZE;
555}
556
557static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
558 struct ethtool_eeprom *ee, u8 *data)
559{
560 struct usbnet *dev = netdev_priv(netdev);
561
562 ee->magic = LAN95XX_EEPROM_MAGIC;
563
564 return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
565}
566
567static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
568 struct ethtool_eeprom *ee, u8 *data)
569{
570 struct usbnet *dev = netdev_priv(netdev);
571
572 if (ee->magic != LAN95XX_EEPROM_MAGIC) {
Joe Perches60b86752010-02-17 10:30:23 +0000573 netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
574 ee->magic);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000575 return -EINVAL;
576 }
577
578 return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
579}
580
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700581static const struct ethtool_ops smsc95xx_ethtool_ops = {
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000582 .get_link = usbnet_get_link,
583 .nway_reset = usbnet_nway_reset,
584 .get_drvinfo = usbnet_get_drvinfo,
585 .get_msglevel = usbnet_get_msglevel,
586 .set_msglevel = usbnet_set_msglevel,
587 .get_settings = usbnet_get_settings,
588 .set_settings = usbnet_set_settings,
589 .get_eeprom_len = smsc95xx_ethtool_get_eeprom_len,
590 .get_eeprom = smsc95xx_ethtool_get_eeprom,
591 .set_eeprom = smsc95xx_ethtool_set_eeprom,
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000592};
593
594static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
595{
596 struct usbnet *dev = netdev_priv(netdev);
597
598 if (!netif_running(netdev))
599 return -EINVAL;
600
601 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
602}
603
604static void smsc95xx_init_mac_address(struct usbnet *dev)
605{
606 /* try reading mac address from EEPROM */
607 if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
608 dev->net->dev_addr) == 0) {
609 if (is_valid_ether_addr(dev->net->dev_addr)) {
610 /* eeprom values are valid so use them */
Joe Perchesa475f602010-02-17 10:30:24 +0000611 netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000612 return;
613 }
614 }
615
616 /* no eeprom, or eeprom values are invalid. generate random MAC */
Danny Kukawkaf2cedb62012-02-15 06:45:39 +0000617 eth_hw_addr_random(dev->net);
Joe Perchesa475f602010-02-17 10:30:24 +0000618 netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000619}
620
621static int smsc95xx_set_mac_address(struct usbnet *dev)
622{
623 u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
624 dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
625 u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
626 int ret;
627
628 ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
629 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000630 netdev_warn(dev->net, "Failed to write ADDRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000631 return ret;
632 }
633
634 ret = smsc95xx_write_reg(dev, ADDRH, addr_hi);
635 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000636 netdev_warn(dev->net, "Failed to write ADDRH: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000637 return ret;
638 }
639
640 return 0;
641}
642
643/* starts the TX path */
644static void smsc95xx_start_tx_path(struct usbnet *dev)
645{
646 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
647 unsigned long flags;
648 u32 reg_val;
649
650 /* Enable Tx at MAC */
651 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
652 pdata->mac_cr |= MAC_CR_TXEN_;
653 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
654
655 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
656
657 /* Enable Tx at SCSRs */
658 reg_val = TX_CFG_ON_;
659 smsc95xx_write_reg(dev, TX_CFG, reg_val);
660}
661
662/* Starts the Receive path */
663static void smsc95xx_start_rx_path(struct usbnet *dev)
664{
665 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
666 unsigned long flags;
667
668 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
669 pdata->mac_cr |= MAC_CR_RXEN_;
670 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
671
672 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
673}
674
675static int smsc95xx_phy_initialize(struct usbnet *dev)
676{
Steve Glendinningdb443c42010-03-16 09:03:06 +0000677 int bmcr, timeout = 0;
678
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000679 /* Initialize MII structure */
680 dev->mii.dev = dev->net;
681 dev->mii.mdio_read = smsc95xx_mdio_read;
682 dev->mii.mdio_write = smsc95xx_mdio_write;
683 dev->mii.phy_id_mask = 0x1f;
684 dev->mii.reg_num_mask = 0x1f;
685 dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;
686
Steve Glendinningdb443c42010-03-16 09:03:06 +0000687 /* reset phy and wait for reset to complete */
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000688 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
Steve Glendinningdb443c42010-03-16 09:03:06 +0000689
690 do {
691 msleep(10);
692 bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
693 timeout++;
Rabin Vincentd9460922011-04-30 08:29:27 +0000694 } while ((bmcr & BMCR_RESET) && (timeout < 100));
Steve Glendinningdb443c42010-03-16 09:03:06 +0000695
696 if (timeout >= 100) {
697 netdev_warn(dev->net, "timeout on PHY Reset");
698 return -EIO;
699 }
700
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000701 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
702 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
703 ADVERTISE_PAUSE_ASYM);
704
705 /* read to clear */
706 smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
707
708 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
709 PHY_INT_MASK_DEFAULT_);
710 mii_nway_restart(&dev->mii);
711
Joe Perchesa475f602010-02-17 10:30:24 +0000712 netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000713 return 0;
714}
715
716static int smsc95xx_reset(struct usbnet *dev)
717{
718 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
719 u32 read_buf, write_buf, burst_cap;
720 int ret = 0, timeout;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000721
Joe Perchesa475f602010-02-17 10:30:24 +0000722 netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000723
724 write_buf = HW_CFG_LRST_;
725 ret = smsc95xx_write_reg(dev, HW_CFG, write_buf);
726 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000727 netdev_warn(dev->net, "Failed to write HW_CFG_LRST_ bit in HW_CFG register, ret = %d\n",
728 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000729 return ret;
730 }
731
732 timeout = 0;
733 do {
734 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
735 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000736 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000737 return ret;
738 }
739 msleep(10);
740 timeout++;
741 } while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
742
743 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000744 netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000745 return ret;
746 }
747
748 write_buf = PM_CTL_PHY_RST_;
749 ret = smsc95xx_write_reg(dev, PM_CTRL, write_buf);
750 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000751 netdev_warn(dev->net, "Failed to write PM_CTRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000752 return ret;
753 }
754
755 timeout = 0;
756 do {
757 ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
758 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000759 netdev_warn(dev->net, "Failed to read PM_CTRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000760 return ret;
761 }
762 msleep(10);
763 timeout++;
764 } while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
765
766 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000767 netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000768 return ret;
769 }
770
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000771 ret = smsc95xx_set_mac_address(dev);
772 if (ret < 0)
773 return ret;
774
Joe Perchesa475f602010-02-17 10:30:24 +0000775 netif_dbg(dev, ifup, dev->net,
776 "MAC Address: %pM\n", dev->net->dev_addr);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000777
778 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
779 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000780 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000781 return ret;
782 }
783
Joe Perchesa475f602010-02-17 10:30:24 +0000784 netif_dbg(dev, ifup, dev->net,
785 "Read Value from HW_CFG : 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000786
787 read_buf |= HW_CFG_BIR_;
788
789 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
790 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000791 netdev_warn(dev->net, "Failed to write HW_CFG_BIR_ bit in HW_CFG register, ret = %d\n",
792 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000793 return ret;
794 }
795
796 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
797 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000798 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000799 return ret;
800 }
Joe Perchesa475f602010-02-17 10:30:24 +0000801 netif_dbg(dev, ifup, dev->net,
802 "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
803 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000804
805 if (!turbo_mode) {
806 burst_cap = 0;
807 dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
808 } else if (dev->udev->speed == USB_SPEED_HIGH) {
809 burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
810 dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
811 } else {
812 burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
813 dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
814 }
815
Joe Perchesa475f602010-02-17 10:30:24 +0000816 netif_dbg(dev, ifup, dev->net,
817 "rx_urb_size=%ld\n", (ulong)dev->rx_urb_size);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000818
819 ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
820 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000821 netdev_warn(dev->net, "Failed to write BURST_CAP: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000822 return ret;
823 }
824
825 ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
826 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000827 netdev_warn(dev->net, "Failed to read BURST_CAP: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000828 return ret;
829 }
Joe Perchesa475f602010-02-17 10:30:24 +0000830 netif_dbg(dev, ifup, dev->net,
831 "Read Value from BURST_CAP after writing: 0x%08x\n",
832 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000833
834 read_buf = DEFAULT_BULK_IN_DELAY;
835 ret = smsc95xx_write_reg(dev, BULK_IN_DLY, read_buf);
836 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000837 netdev_warn(dev->net, "ret = %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000838 return ret;
839 }
840
841 ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
842 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000843 netdev_warn(dev->net, "Failed to read BULK_IN_DLY: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000844 return ret;
845 }
Joe Perchesa475f602010-02-17 10:30:24 +0000846 netif_dbg(dev, ifup, dev->net,
847 "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
848 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000849
850 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
851 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000852 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000853 return ret;
854 }
Joe Perchesa475f602010-02-17 10:30:24 +0000855 netif_dbg(dev, ifup, dev->net,
856 "Read Value from HW_CFG: 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000857
858 if (turbo_mode)
859 read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
860
861 read_buf &= ~HW_CFG_RXDOFF_;
862
863 /* set Rx data offset=2, Make IP header aligns on word boundary. */
864 read_buf |= NET_IP_ALIGN << 9;
865
866 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
867 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000868 netdev_warn(dev->net, "Failed to write HW_CFG register, ret=%d\n",
869 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000870 return ret;
871 }
872
873 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
874 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000875 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000876 return ret;
877 }
Joe Perchesa475f602010-02-17 10:30:24 +0000878 netif_dbg(dev, ifup, dev->net,
879 "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000880
881 write_buf = 0xFFFFFFFF;
882 ret = smsc95xx_write_reg(dev, INT_STS, write_buf);
883 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000884 netdev_warn(dev->net, "Failed to write INT_STS register, ret=%d\n",
885 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000886 return ret;
887 }
888
889 ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
890 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000891 netdev_warn(dev->net, "Failed to read ID_REV: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000892 return ret;
893 }
Joe Perchesa475f602010-02-17 10:30:24 +0000894 netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000895
Steve Glendinningf2935012009-05-01 05:46:51 +0000896 /* Configure GPIO pins as LED outputs */
897 write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
898 LED_GPIO_CFG_FDX_LED;
899 ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
900 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000901 netdev_warn(dev->net, "Failed to write LED_GPIO_CFG register, ret=%d\n",
902 ret);
Steve Glendinningf2935012009-05-01 05:46:51 +0000903 return ret;
904 }
905
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000906 /* Init Tx */
907 write_buf = 0;
908 ret = smsc95xx_write_reg(dev, FLOW, write_buf);
909 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000910 netdev_warn(dev->net, "Failed to write FLOW: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000911 return ret;
912 }
913
914 read_buf = AFC_CFG_DEFAULT;
915 ret = smsc95xx_write_reg(dev, AFC_CFG, read_buf);
916 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000917 netdev_warn(dev->net, "Failed to write AFC_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000918 return ret;
919 }
920
921 /* Don't need mac_cr_lock during initialisation */
922 ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
923 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000924 netdev_warn(dev->net, "Failed to read MAC_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000925 return ret;
926 }
927
928 /* Init Rx */
929 /* Set Vlan */
930 write_buf = (u32)ETH_P_8021Q;
931 ret = smsc95xx_write_reg(dev, VLAN1, write_buf);
932 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000933 netdev_warn(dev->net, "Failed to write VAN1: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000934 return ret;
935 }
936
Steve Glendinningf7b29272008-11-20 04:19:21 -0800937 /* Enable or disable checksum offload engines */
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700938 smsc95xx_set_features(dev->net, dev->net->features);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000939
940 smsc95xx_set_multicast(dev->net);
941
942 if (smsc95xx_phy_initialize(dev) < 0)
943 return -EIO;
944
945 ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
946 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000947 netdev_warn(dev->net, "Failed to read INT_EP_CTL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000948 return ret;
949 }
950
951 /* enable PHY interrupts */
952 read_buf |= INT_EP_CTL_PHY_INT_;
953
954 ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
955 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000956 netdev_warn(dev->net, "Failed to write INT_EP_CTL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000957 return ret;
958 }
959
960 smsc95xx_start_tx_path(dev);
961 smsc95xx_start_rx_path(dev);
962
Joe Perchesa475f602010-02-17 10:30:24 +0000963 netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000964 return 0;
965}
966
Stephen Hemminger63e77b32009-03-20 19:35:58 +0000967static const struct net_device_ops smsc95xx_netdev_ops = {
968 .ndo_open = usbnet_open,
969 .ndo_stop = usbnet_stop,
970 .ndo_start_xmit = usbnet_start_xmit,
971 .ndo_tx_timeout = usbnet_tx_timeout,
972 .ndo_change_mtu = usbnet_change_mtu,
973 .ndo_set_mac_address = eth_mac_addr,
974 .ndo_validate_addr = eth_validate_addr,
975 .ndo_do_ioctl = smsc95xx_ioctl,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000976 .ndo_set_rx_mode = smsc95xx_set_multicast,
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700977 .ndo_set_features = smsc95xx_set_features,
Stephen Hemminger63e77b32009-03-20 19:35:58 +0000978};
979
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000980static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
981{
982 struct smsc95xx_priv *pdata = NULL;
983 int ret;
984
985 printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
986
987 ret = usbnet_get_endpoints(dev, intf);
988 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000989 netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000990 return ret;
991 }
992
993 dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
994 GFP_KERNEL);
995
996 pdata = (struct smsc95xx_priv *)(dev->data[0]);
997 if (!pdata) {
Joe Perches60b86752010-02-17 10:30:23 +0000998 netdev_warn(dev->net, "Unable to allocate struct smsc95xx_priv\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000999 return -ENOMEM;
1000 }
1001
1002 spin_lock_init(&pdata->mac_cr_lock);
1003
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001004 if (DEFAULT_TX_CSUM_ENABLE)
1005 dev->net->features |= NETIF_F_HW_CSUM;
1006 if (DEFAULT_RX_CSUM_ENABLE)
1007 dev->net->features |= NETIF_F_RXCSUM;
1008
1009 dev->net->hw_features = NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001010
Bernard Blackhamf4e8ab72010-10-18 13:16:39 +00001011 smsc95xx_init_mac_address(dev);
1012
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001013 /* Init all registers */
1014 ret = smsc95xx_reset(dev);
1015
Stephen Hemminger63e77b32009-03-20 19:35:58 +00001016 dev->net->netdev_ops = &smsc95xx_netdev_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001017 dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001018 dev->net->flags |= IFF_MULTICAST;
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001019 dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
Stephane Fillod9bbf5662012-04-20 09:39:23 +00001020 dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001021 return 0;
1022}
1023
1024static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
1025{
1026 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1027 if (pdata) {
Joe Perchesa475f602010-02-17 10:30:24 +00001028 netif_dbg(dev, ifdown, dev->net, "free pdata\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001029 kfree(pdata);
1030 pdata = NULL;
1031 dev->data[0] = 0;
1032 }
1033}
1034
1035static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
1036{
1037 skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
1038 skb->ip_summed = CHECKSUM_COMPLETE;
1039 skb_trim(skb, skb->len - 2);
1040}
1041
1042static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
1043{
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001044 while (skb->len > 0) {
1045 u32 header, align_count;
1046 struct sk_buff *ax_skb;
1047 unsigned char *packet;
1048 u16 size;
1049
1050 memcpy(&header, skb->data, sizeof(header));
1051 le32_to_cpus(&header);
1052 skb_pull(skb, 4 + NET_IP_ALIGN);
1053 packet = skb->data;
1054
1055 /* get the packet length */
1056 size = (u16)((header & RX_STS_FL_) >> 16);
1057 align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
1058
1059 if (unlikely(header & RX_STS_ES_)) {
Joe Perchesa475f602010-02-17 10:30:24 +00001060 netif_dbg(dev, rx_err, dev->net,
1061 "Error header=0x%08x\n", header);
Herbert Xu80667ac2009-06-29 16:53:00 +00001062 dev->net->stats.rx_errors++;
1063 dev->net->stats.rx_dropped++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001064
1065 if (header & RX_STS_CRC_) {
Herbert Xu80667ac2009-06-29 16:53:00 +00001066 dev->net->stats.rx_crc_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001067 } else {
1068 if (header & (RX_STS_TL_ | RX_STS_RF_))
Herbert Xu80667ac2009-06-29 16:53:00 +00001069 dev->net->stats.rx_frame_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001070
1071 if ((header & RX_STS_LE_) &&
1072 (!(header & RX_STS_FT_)))
Herbert Xu80667ac2009-06-29 16:53:00 +00001073 dev->net->stats.rx_length_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001074 }
1075 } else {
1076 /* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
1077 if (unlikely(size > (ETH_FRAME_LEN + 12))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001078 netif_dbg(dev, rx_err, dev->net,
1079 "size err header=0x%08x\n", header);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001080 return 0;
1081 }
1082
1083 /* last frame in this batch */
1084 if (skb->len == size) {
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001085 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001086 smsc95xx_rx_csum_offload(skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001087 skb_trim(skb, skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001088 skb->truesize = size + sizeof(struct sk_buff);
1089
1090 return 1;
1091 }
1092
1093 ax_skb = skb_clone(skb, GFP_ATOMIC);
1094 if (unlikely(!ax_skb)) {
Joe Perches60b86752010-02-17 10:30:23 +00001095 netdev_warn(dev->net, "Error allocating skb\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001096 return 0;
1097 }
1098
1099 ax_skb->len = size;
1100 ax_skb->data = packet;
1101 skb_set_tail_pointer(ax_skb, size);
1102
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001103 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001104 smsc95xx_rx_csum_offload(ax_skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001105 skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001106 ax_skb->truesize = size + sizeof(struct sk_buff);
1107
1108 usbnet_skb_return(dev, ax_skb);
1109 }
1110
1111 skb_pull(skb, size);
1112
1113 /* padding bytes before the next frame starts */
1114 if (skb->len)
1115 skb_pull(skb, align_count);
1116 }
1117
1118 if (unlikely(skb->len < 0)) {
Joe Perches60b86752010-02-17 10:30:23 +00001119 netdev_warn(dev->net, "invalid rx length<0 %d\n", skb->len);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001120 return 0;
1121 }
1122
1123 return 1;
1124}
1125
Steve Glendinningf7b29272008-11-20 04:19:21 -08001126static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1127{
Michał Mirosław55508d62010-12-14 15:24:08 +00001128 u16 low_16 = (u16)skb_checksum_start_offset(skb);
1129 u16 high_16 = low_16 + skb->csum_offset;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001130 return (high_16 << 16) | low_16;
1131}
1132
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001133static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
1134 struct sk_buff *skb, gfp_t flags)
1135{
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001136 bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001137 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001138 u32 tx_cmd_a, tx_cmd_b;
1139
Steve Glendinningf7b29272008-11-20 04:19:21 -08001140 /* We do not advertise SG, so skbs should be already linearized */
1141 BUG_ON(skb_shinfo(skb)->nr_frags);
1142
1143 if (skb_headroom(skb) < overhead) {
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001144 struct sk_buff *skb2 = skb_copy_expand(skb,
Steve Glendinningf7b29272008-11-20 04:19:21 -08001145 overhead, 0, flags);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001146 dev_kfree_skb_any(skb);
1147 skb = skb2;
1148 if (!skb)
1149 return NULL;
1150 }
1151
Steve Glendinningf7b29272008-11-20 04:19:21 -08001152 if (csum) {
Steve Glendinning11bc3082010-03-18 22:18:41 -07001153 if (skb->len <= 45) {
1154 /* workaround - hardware tx checksum does not work
1155 * properly with extremely small packets */
Michał Mirosław55508d62010-12-14 15:24:08 +00001156 long csstart = skb_checksum_start_offset(skb);
Steve Glendinning11bc3082010-03-18 22:18:41 -07001157 __wsum calc = csum_partial(skb->data + csstart,
1158 skb->len - csstart, 0);
1159 *((__sum16 *)(skb->data + csstart
1160 + skb->csum_offset)) = csum_fold(calc);
1161
1162 csum = false;
1163 } else {
1164 u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
1165 skb_push(skb, 4);
1166 memcpy(skb->data, &csum_preamble, 4);
1167 }
Steve Glendinningf7b29272008-11-20 04:19:21 -08001168 }
1169
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001170 skb_push(skb, 4);
1171 tx_cmd_b = (u32)(skb->len - 4);
Steve Glendinningf7b29272008-11-20 04:19:21 -08001172 if (csum)
1173 tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001174 cpu_to_le32s(&tx_cmd_b);
1175 memcpy(skb->data, &tx_cmd_b, 4);
1176
1177 skb_push(skb, 4);
1178 tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
1179 TX_CMD_A_LAST_SEG_;
1180 cpu_to_le32s(&tx_cmd_a);
1181 memcpy(skb->data, &tx_cmd_a, 4);
1182
1183 return skb;
1184}
1185
1186static const struct driver_info smsc95xx_info = {
1187 .description = "smsc95xx USB 2.0 Ethernet",
1188 .bind = smsc95xx_bind,
1189 .unbind = smsc95xx_unbind,
1190 .link_reset = smsc95xx_link_reset,
1191 .reset = smsc95xx_reset,
1192 .rx_fixup = smsc95xx_rx_fixup,
1193 .tx_fixup = smsc95xx_tx_fixup,
1194 .status = smsc95xx_status,
Paolo Pisati07d69d42012-04-23 04:05:20 +00001195 .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001196};
1197
1198static const struct usb_device_id products[] = {
1199 {
1200 /* SMSC9500 USB Ethernet Device */
1201 USB_DEVICE(0x0424, 0x9500),
1202 .driver_info = (unsigned long) &smsc95xx_info,
1203 },
Steve Glendinning726474b2009-05-01 06:07:22 +00001204 {
Steve Glendinning6f41d122009-09-22 05:13:02 +00001205 /* SMSC9505 USB Ethernet Device */
1206 USB_DEVICE(0x0424, 0x9505),
1207 .driver_info = (unsigned long) &smsc95xx_info,
1208 },
1209 {
1210 /* SMSC9500A USB Ethernet Device */
1211 USB_DEVICE(0x0424, 0x9E00),
1212 .driver_info = (unsigned long) &smsc95xx_info,
1213 },
1214 {
1215 /* SMSC9505A USB Ethernet Device */
1216 USB_DEVICE(0x0424, 0x9E01),
1217 .driver_info = (unsigned long) &smsc95xx_info,
1218 },
1219 {
Steve Glendinning726474b2009-05-01 06:07:22 +00001220 /* SMSC9512/9514 USB Hub & Ethernet Device */
1221 USB_DEVICE(0x0424, 0xec00),
1222 .driver_info = (unsigned long) &smsc95xx_info,
1223 },
Steve Glendinning6f41d122009-09-22 05:13:02 +00001224 {
1225 /* SMSC9500 USB Ethernet Device (SAL10) */
1226 USB_DEVICE(0x0424, 0x9900),
1227 .driver_info = (unsigned long) &smsc95xx_info,
1228 },
1229 {
1230 /* SMSC9505 USB Ethernet Device (SAL10) */
1231 USB_DEVICE(0x0424, 0x9901),
1232 .driver_info = (unsigned long) &smsc95xx_info,
1233 },
1234 {
1235 /* SMSC9500A USB Ethernet Device (SAL10) */
1236 USB_DEVICE(0x0424, 0x9902),
1237 .driver_info = (unsigned long) &smsc95xx_info,
1238 },
1239 {
1240 /* SMSC9505A USB Ethernet Device (SAL10) */
1241 USB_DEVICE(0x0424, 0x9903),
1242 .driver_info = (unsigned long) &smsc95xx_info,
1243 },
1244 {
1245 /* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
1246 USB_DEVICE(0x0424, 0x9904),
1247 .driver_info = (unsigned long) &smsc95xx_info,
1248 },
1249 {
1250 /* SMSC9500A USB Ethernet Device (HAL) */
1251 USB_DEVICE(0x0424, 0x9905),
1252 .driver_info = (unsigned long) &smsc95xx_info,
1253 },
1254 {
1255 /* SMSC9505A USB Ethernet Device (HAL) */
1256 USB_DEVICE(0x0424, 0x9906),
1257 .driver_info = (unsigned long) &smsc95xx_info,
1258 },
1259 {
1260 /* SMSC9500 USB Ethernet Device (Alternate ID) */
1261 USB_DEVICE(0x0424, 0x9907),
1262 .driver_info = (unsigned long) &smsc95xx_info,
1263 },
1264 {
1265 /* SMSC9500A USB Ethernet Device (Alternate ID) */
1266 USB_DEVICE(0x0424, 0x9908),
1267 .driver_info = (unsigned long) &smsc95xx_info,
1268 },
1269 {
1270 /* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
1271 USB_DEVICE(0x0424, 0x9909),
1272 .driver_info = (unsigned long) &smsc95xx_info,
1273 },
Steve Glendinning88edaa42011-04-10 18:59:27 -07001274 {
1275 /* SMSC LAN9530 USB Ethernet Device */
1276 USB_DEVICE(0x0424, 0x9530),
1277 .driver_info = (unsigned long) &smsc95xx_info,
1278 },
1279 {
1280 /* SMSC LAN9730 USB Ethernet Device */
1281 USB_DEVICE(0x0424, 0x9730),
1282 .driver_info = (unsigned long) &smsc95xx_info,
1283 },
1284 {
1285 /* SMSC LAN89530 USB Ethernet Device */
1286 USB_DEVICE(0x0424, 0x9E08),
1287 .driver_info = (unsigned long) &smsc95xx_info,
1288 },
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001289 { }, /* END */
1290};
1291MODULE_DEVICE_TABLE(usb, products);
1292
1293static struct usb_driver smsc95xx_driver = {
1294 .name = "smsc95xx",
1295 .id_table = products,
1296 .probe = usbnet_probe,
1297 .suspend = usbnet_suspend,
1298 .resume = usbnet_resume,
1299 .disconnect = usbnet_disconnect,
1300};
1301
Greg Kroah-Hartmand632eb12011-11-18 09:44:20 -08001302module_usb_driver(smsc95xx_driver);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001303
1304MODULE_AUTHOR("Nancy Lin");
1305MODULE_AUTHOR("Steve Glendinning <steve.glendinning@smsc.com>");
1306MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
1307MODULE_LICENSE("GPL");