blob: 708f2083898b2d628a5e8bf287dc75361fb0eb03 [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
Hannes Eder0227abc2009-02-14 11:47:47 +000062static int 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 Pirko22bedad2010-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 Pirko22bedad2010-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;
460 struct ethtool_cmd ecmd;
461 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
Joe Perchesa475f602010-02-17 10:30:24 +0000475 netif_dbg(dev, link, dev->net, "speed: %d duplex: %d lcladv: %04x rmtadv: %04x\n",
476 ecmd.speed, ecmd.duplex, lcladv, rmtadv);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000477
478 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
479 if (ecmd.duplex != DUPLEX_FULL) {
480 pdata->mac_cr &= ~MAC_CR_FDPX_;
481 pdata->mac_cr |= MAC_CR_RCVOWN_;
482 } else {
483 pdata->mac_cr &= ~MAC_CR_RCVOWN_;
484 pdata->mac_cr |= MAC_CR_FDPX_;
485 }
486 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
487
488 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
489
490 smsc95xx_phy_update_flowcontrol(dev, ecmd.duplex, lcladv, rmtadv);
491
492 return 0;
493}
494
495static void smsc95xx_status(struct usbnet *dev, struct urb *urb)
496{
497 u32 intdata;
498
499 if (urb->actual_length != 4) {
Joe Perches60b86752010-02-17 10:30:23 +0000500 netdev_warn(dev->net, "unexpected urb length %d\n",
501 urb->actual_length);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000502 return;
503 }
504
505 memcpy(&intdata, urb->transfer_buffer, 4);
Steve Glendinning1d74a6b2008-10-09 14:34:47 -0700506 le32_to_cpus(&intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000507
Joe Perchesa475f602010-02-17 10:30:24 +0000508 netif_dbg(dev, link, dev->net, "intdata: 0x%08X\n", intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000509
510 if (intdata & INT_ENP_PHY_INT_)
511 usbnet_defer_kevent(dev, EVENT_LINK_RESET);
512 else
Joe Perches60b86752010-02-17 10:30:23 +0000513 netdev_warn(dev->net, "unexpected interrupt, intdata=0x%08X\n",
514 intdata);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000515}
516
Steve Glendinningf7b29272008-11-20 04:19:21 -0800517/* Enable or disable Tx & Rx checksum offload engines */
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700518static int smsc95xx_set_features(struct net_device *netdev, u32 features)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000519{
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700520 struct usbnet *dev = netdev_priv(netdev);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000521 u32 read_buf;
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700522 int ret;
523
524 ret = smsc95xx_read_reg(dev, COE_CR, &read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000525 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000526 netdev_warn(dev->net, "Failed to read COE_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000527 return ret;
528 }
529
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700530 if (features & NETIF_F_HW_CSUM)
Steve Glendinningf7b29272008-11-20 04:19:21 -0800531 read_buf |= Tx_COE_EN_;
532 else
533 read_buf &= ~Tx_COE_EN_;
534
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700535 if (features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000536 read_buf |= Rx_COE_EN_;
537 else
538 read_buf &= ~Rx_COE_EN_;
539
540 ret = smsc95xx_write_reg(dev, COE_CR, read_buf);
541 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000542 netdev_warn(dev->net, "Failed to write COE_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000543 return ret;
544 }
545
Joe Perchesa475f602010-02-17 10:30:24 +0000546 netif_dbg(dev, hw, dev->net, "COE_CR = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000547 return 0;
548}
549
550static int smsc95xx_ethtool_get_eeprom_len(struct net_device *net)
551{
552 return MAX_EEPROM_SIZE;
553}
554
555static int smsc95xx_ethtool_get_eeprom(struct net_device *netdev,
556 struct ethtool_eeprom *ee, u8 *data)
557{
558 struct usbnet *dev = netdev_priv(netdev);
559
560 ee->magic = LAN95XX_EEPROM_MAGIC;
561
562 return smsc95xx_read_eeprom(dev, ee->offset, ee->len, data);
563}
564
565static int smsc95xx_ethtool_set_eeprom(struct net_device *netdev,
566 struct ethtool_eeprom *ee, u8 *data)
567{
568 struct usbnet *dev = netdev_priv(netdev);
569
570 if (ee->magic != LAN95XX_EEPROM_MAGIC) {
Joe Perches60b86752010-02-17 10:30:23 +0000571 netdev_warn(dev->net, "EEPROM: magic value mismatch, magic = 0x%x\n",
572 ee->magic);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000573 return -EINVAL;
574 }
575
576 return smsc95xx_write_eeprom(dev, ee->offset, ee->len, data);
577}
578
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700579static const struct ethtool_ops smsc95xx_ethtool_ops = {
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000580 .get_link = usbnet_get_link,
581 .nway_reset = usbnet_nway_reset,
582 .get_drvinfo = usbnet_get_drvinfo,
583 .get_msglevel = usbnet_get_msglevel,
584 .set_msglevel = usbnet_set_msglevel,
585 .get_settings = usbnet_get_settings,
586 .set_settings = usbnet_set_settings,
587 .get_eeprom_len = smsc95xx_ethtool_get_eeprom_len,
588 .get_eeprom = smsc95xx_ethtool_get_eeprom,
589 .set_eeprom = smsc95xx_ethtool_set_eeprom,
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000590};
591
592static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
593{
594 struct usbnet *dev = netdev_priv(netdev);
595
596 if (!netif_running(netdev))
597 return -EINVAL;
598
599 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
600}
601
602static void smsc95xx_init_mac_address(struct usbnet *dev)
603{
604 /* try reading mac address from EEPROM */
605 if (smsc95xx_read_eeprom(dev, EEPROM_MAC_OFFSET, ETH_ALEN,
606 dev->net->dev_addr) == 0) {
607 if (is_valid_ether_addr(dev->net->dev_addr)) {
608 /* eeprom values are valid so use them */
Joe Perchesa475f602010-02-17 10:30:24 +0000609 netif_dbg(dev, ifup, dev->net, "MAC address read from EEPROM\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000610 return;
611 }
612 }
613
614 /* no eeprom, or eeprom values are invalid. generate random MAC */
615 random_ether_addr(dev->net->dev_addr);
Joe Perchesa475f602010-02-17 10:30:24 +0000616 netif_dbg(dev, ifup, dev->net, "MAC address set to random_ether_addr\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000617}
618
619static int smsc95xx_set_mac_address(struct usbnet *dev)
620{
621 u32 addr_lo = dev->net->dev_addr[0] | dev->net->dev_addr[1] << 8 |
622 dev->net->dev_addr[2] << 16 | dev->net->dev_addr[3] << 24;
623 u32 addr_hi = dev->net->dev_addr[4] | dev->net->dev_addr[5] << 8;
624 int ret;
625
626 ret = smsc95xx_write_reg(dev, ADDRL, addr_lo);
627 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000628 netdev_warn(dev->net, "Failed to write ADDRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000629 return ret;
630 }
631
632 ret = smsc95xx_write_reg(dev, ADDRH, addr_hi);
633 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000634 netdev_warn(dev->net, "Failed to write ADDRH: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000635 return ret;
636 }
637
638 return 0;
639}
640
641/* starts the TX path */
642static void smsc95xx_start_tx_path(struct usbnet *dev)
643{
644 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
645 unsigned long flags;
646 u32 reg_val;
647
648 /* Enable Tx at MAC */
649 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
650 pdata->mac_cr |= MAC_CR_TXEN_;
651 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
652
653 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
654
655 /* Enable Tx at SCSRs */
656 reg_val = TX_CFG_ON_;
657 smsc95xx_write_reg(dev, TX_CFG, reg_val);
658}
659
660/* Starts the Receive path */
661static void smsc95xx_start_rx_path(struct usbnet *dev)
662{
663 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
664 unsigned long flags;
665
666 spin_lock_irqsave(&pdata->mac_cr_lock, flags);
667 pdata->mac_cr |= MAC_CR_RXEN_;
668 spin_unlock_irqrestore(&pdata->mac_cr_lock, flags);
669
670 smsc95xx_write_reg(dev, MAC_CR, pdata->mac_cr);
671}
672
673static int smsc95xx_phy_initialize(struct usbnet *dev)
674{
Steve Glendinningdb443c42010-03-16 09:03:06 +0000675 int bmcr, timeout = 0;
676
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000677 /* Initialize MII structure */
678 dev->mii.dev = dev->net;
679 dev->mii.mdio_read = smsc95xx_mdio_read;
680 dev->mii.mdio_write = smsc95xx_mdio_write;
681 dev->mii.phy_id_mask = 0x1f;
682 dev->mii.reg_num_mask = 0x1f;
683 dev->mii.phy_id = SMSC95XX_INTERNAL_PHY_ID;
684
Steve Glendinningdb443c42010-03-16 09:03:06 +0000685 /* reset phy and wait for reset to complete */
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000686 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
Steve Glendinningdb443c42010-03-16 09:03:06 +0000687
688 do {
689 msleep(10);
690 bmcr = smsc95xx_mdio_read(dev->net, dev->mii.phy_id, MII_BMCR);
691 timeout++;
692 } while ((bmcr & MII_BMCR) && (timeout < 100));
693
694 if (timeout >= 100) {
695 netdev_warn(dev->net, "timeout on PHY Reset");
696 return -EIO;
697 }
698
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000699 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
700 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP |
701 ADVERTISE_PAUSE_ASYM);
702
703 /* read to clear */
704 smsc95xx_mdio_read(dev->net, dev->mii.phy_id, PHY_INT_SRC);
705
706 smsc95xx_mdio_write(dev->net, dev->mii.phy_id, PHY_INT_MASK,
707 PHY_INT_MASK_DEFAULT_);
708 mii_nway_restart(&dev->mii);
709
Joe Perchesa475f602010-02-17 10:30:24 +0000710 netif_dbg(dev, ifup, dev->net, "phy initialised successfully\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000711 return 0;
712}
713
714static int smsc95xx_reset(struct usbnet *dev)
715{
716 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
717 u32 read_buf, write_buf, burst_cap;
718 int ret = 0, timeout;
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000719
Joe Perchesa475f602010-02-17 10:30:24 +0000720 netif_dbg(dev, ifup, dev->net, "entering smsc95xx_reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000721
722 write_buf = HW_CFG_LRST_;
723 ret = smsc95xx_write_reg(dev, HW_CFG, write_buf);
724 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000725 netdev_warn(dev->net, "Failed to write HW_CFG_LRST_ bit in HW_CFG register, ret = %d\n",
726 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000727 return ret;
728 }
729
730 timeout = 0;
731 do {
732 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
733 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000734 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000735 return ret;
736 }
737 msleep(10);
738 timeout++;
739 } while ((read_buf & HW_CFG_LRST_) && (timeout < 100));
740
741 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000742 netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000743 return ret;
744 }
745
746 write_buf = PM_CTL_PHY_RST_;
747 ret = smsc95xx_write_reg(dev, PM_CTRL, write_buf);
748 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000749 netdev_warn(dev->net, "Failed to write PM_CTRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000750 return ret;
751 }
752
753 timeout = 0;
754 do {
755 ret = smsc95xx_read_reg(dev, PM_CTRL, &read_buf);
756 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000757 netdev_warn(dev->net, "Failed to read PM_CTRL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000758 return ret;
759 }
760 msleep(10);
761 timeout++;
762 } while ((read_buf & PM_CTL_PHY_RST_) && (timeout < 100));
763
764 if (timeout >= 100) {
Joe Perches60b86752010-02-17 10:30:23 +0000765 netdev_warn(dev->net, "timeout waiting for PHY Reset\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000766 return ret;
767 }
768
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000769 ret = smsc95xx_set_mac_address(dev);
770 if (ret < 0)
771 return ret;
772
Joe Perchesa475f602010-02-17 10:30:24 +0000773 netif_dbg(dev, ifup, dev->net,
774 "MAC Address: %pM\n", dev->net->dev_addr);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000775
776 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
777 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000778 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000779 return ret;
780 }
781
Joe Perchesa475f602010-02-17 10:30:24 +0000782 netif_dbg(dev, ifup, dev->net,
783 "Read Value from HW_CFG : 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000784
785 read_buf |= HW_CFG_BIR_;
786
787 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
788 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000789 netdev_warn(dev->net, "Failed to write HW_CFG_BIR_ bit in HW_CFG register, ret = %d\n",
790 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000791 return ret;
792 }
793
794 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
795 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000796 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000797 return ret;
798 }
Joe Perchesa475f602010-02-17 10:30:24 +0000799 netif_dbg(dev, ifup, dev->net,
800 "Read Value from HW_CFG after writing HW_CFG_BIR_: 0x%08x\n",
801 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000802
803 if (!turbo_mode) {
804 burst_cap = 0;
805 dev->rx_urb_size = MAX_SINGLE_PACKET_SIZE;
806 } else if (dev->udev->speed == USB_SPEED_HIGH) {
807 burst_cap = DEFAULT_HS_BURST_CAP_SIZE / HS_USB_PKT_SIZE;
808 dev->rx_urb_size = DEFAULT_HS_BURST_CAP_SIZE;
809 } else {
810 burst_cap = DEFAULT_FS_BURST_CAP_SIZE / FS_USB_PKT_SIZE;
811 dev->rx_urb_size = DEFAULT_FS_BURST_CAP_SIZE;
812 }
813
Joe Perchesa475f602010-02-17 10:30:24 +0000814 netif_dbg(dev, ifup, dev->net,
815 "rx_urb_size=%ld\n", (ulong)dev->rx_urb_size);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000816
817 ret = smsc95xx_write_reg(dev, BURST_CAP, burst_cap);
818 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000819 netdev_warn(dev->net, "Failed to write BURST_CAP: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000820 return ret;
821 }
822
823 ret = smsc95xx_read_reg(dev, BURST_CAP, &read_buf);
824 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000825 netdev_warn(dev->net, "Failed to read BURST_CAP: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000826 return ret;
827 }
Joe Perchesa475f602010-02-17 10:30:24 +0000828 netif_dbg(dev, ifup, dev->net,
829 "Read Value from BURST_CAP after writing: 0x%08x\n",
830 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000831
832 read_buf = DEFAULT_BULK_IN_DELAY;
833 ret = smsc95xx_write_reg(dev, BULK_IN_DLY, read_buf);
834 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000835 netdev_warn(dev->net, "ret = %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000836 return ret;
837 }
838
839 ret = smsc95xx_read_reg(dev, BULK_IN_DLY, &read_buf);
840 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000841 netdev_warn(dev->net, "Failed to read BULK_IN_DLY: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000842 return ret;
843 }
Joe Perchesa475f602010-02-17 10:30:24 +0000844 netif_dbg(dev, ifup, dev->net,
845 "Read Value from BULK_IN_DLY after writing: 0x%08x\n",
846 read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000847
848 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
849 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000850 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000851 return ret;
852 }
Joe Perchesa475f602010-02-17 10:30:24 +0000853 netif_dbg(dev, ifup, dev->net,
854 "Read Value from HW_CFG: 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000855
856 if (turbo_mode)
857 read_buf |= (HW_CFG_MEF_ | HW_CFG_BCE_);
858
859 read_buf &= ~HW_CFG_RXDOFF_;
860
861 /* set Rx data offset=2, Make IP header aligns on word boundary. */
862 read_buf |= NET_IP_ALIGN << 9;
863
864 ret = smsc95xx_write_reg(dev, HW_CFG, read_buf);
865 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000866 netdev_warn(dev->net, "Failed to write HW_CFG register, ret=%d\n",
867 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000868 return ret;
869 }
870
871 ret = smsc95xx_read_reg(dev, HW_CFG, &read_buf);
872 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000873 netdev_warn(dev->net, "Failed to read HW_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000874 return ret;
875 }
Joe Perchesa475f602010-02-17 10:30:24 +0000876 netif_dbg(dev, ifup, dev->net,
877 "Read Value from HW_CFG after writing: 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000878
879 write_buf = 0xFFFFFFFF;
880 ret = smsc95xx_write_reg(dev, INT_STS, write_buf);
881 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000882 netdev_warn(dev->net, "Failed to write INT_STS register, ret=%d\n",
883 ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000884 return ret;
885 }
886
887 ret = smsc95xx_read_reg(dev, ID_REV, &read_buf);
888 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000889 netdev_warn(dev->net, "Failed to read ID_REV: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000890 return ret;
891 }
Joe Perchesa475f602010-02-17 10:30:24 +0000892 netif_dbg(dev, ifup, dev->net, "ID_REV = 0x%08x\n", read_buf);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000893
Steve Glendinningf2935012009-05-01 05:46:51 +0000894 /* Configure GPIO pins as LED outputs */
895 write_buf = LED_GPIO_CFG_SPD_LED | LED_GPIO_CFG_LNK_LED |
896 LED_GPIO_CFG_FDX_LED;
897 ret = smsc95xx_write_reg(dev, LED_GPIO_CFG, write_buf);
898 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000899 netdev_warn(dev->net, "Failed to write LED_GPIO_CFG register, ret=%d\n",
900 ret);
Steve Glendinningf2935012009-05-01 05:46:51 +0000901 return ret;
902 }
903
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000904 /* Init Tx */
905 write_buf = 0;
906 ret = smsc95xx_write_reg(dev, FLOW, write_buf);
907 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000908 netdev_warn(dev->net, "Failed to write FLOW: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000909 return ret;
910 }
911
912 read_buf = AFC_CFG_DEFAULT;
913 ret = smsc95xx_write_reg(dev, AFC_CFG, read_buf);
914 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000915 netdev_warn(dev->net, "Failed to write AFC_CFG: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000916 return ret;
917 }
918
919 /* Don't need mac_cr_lock during initialisation */
920 ret = smsc95xx_read_reg(dev, MAC_CR, &pdata->mac_cr);
921 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000922 netdev_warn(dev->net, "Failed to read MAC_CR: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000923 return ret;
924 }
925
926 /* Init Rx */
927 /* Set Vlan */
928 write_buf = (u32)ETH_P_8021Q;
929 ret = smsc95xx_write_reg(dev, VLAN1, write_buf);
930 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000931 netdev_warn(dev->net, "Failed to write VAN1: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000932 return ret;
933 }
934
Steve Glendinningf7b29272008-11-20 04:19:21 -0800935 /* Enable or disable checksum offload engines */
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700936 smsc95xx_set_features(dev->net, dev->net->features);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000937
938 smsc95xx_set_multicast(dev->net);
939
940 if (smsc95xx_phy_initialize(dev) < 0)
941 return -EIO;
942
943 ret = smsc95xx_read_reg(dev, INT_EP_CTL, &read_buf);
944 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000945 netdev_warn(dev->net, "Failed to read INT_EP_CTL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000946 return ret;
947 }
948
949 /* enable PHY interrupts */
950 read_buf |= INT_EP_CTL_PHY_INT_;
951
952 ret = smsc95xx_write_reg(dev, INT_EP_CTL, read_buf);
953 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000954 netdev_warn(dev->net, "Failed to write INT_EP_CTL: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000955 return ret;
956 }
957
958 smsc95xx_start_tx_path(dev);
959 smsc95xx_start_rx_path(dev);
960
Joe Perchesa475f602010-02-17 10:30:24 +0000961 netif_dbg(dev, ifup, dev->net, "smsc95xx_reset, return 0\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000962 return 0;
963}
964
Stephen Hemminger63e77b32009-03-20 19:35:58 +0000965static const struct net_device_ops smsc95xx_netdev_ops = {
966 .ndo_open = usbnet_open,
967 .ndo_stop = usbnet_stop,
968 .ndo_start_xmit = usbnet_start_xmit,
969 .ndo_tx_timeout = usbnet_tx_timeout,
970 .ndo_change_mtu = usbnet_change_mtu,
971 .ndo_set_mac_address = eth_mac_addr,
972 .ndo_validate_addr = eth_validate_addr,
973 .ndo_do_ioctl = smsc95xx_ioctl,
974 .ndo_set_multicast_list = smsc95xx_set_multicast,
Michał Mirosław78e47fe2011-04-01 20:56:23 -0700975 .ndo_set_features = smsc95xx_set_features,
Stephen Hemminger63e77b32009-03-20 19:35:58 +0000976};
977
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000978static int smsc95xx_bind(struct usbnet *dev, struct usb_interface *intf)
979{
980 struct smsc95xx_priv *pdata = NULL;
981 int ret;
982
983 printk(KERN_INFO SMSC_CHIPNAME " v" SMSC_DRIVER_VERSION "\n");
984
985 ret = usbnet_get_endpoints(dev, intf);
986 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000987 netdev_warn(dev->net, "usbnet_get_endpoints failed: %d\n", ret);
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000988 return ret;
989 }
990
991 dev->data[0] = (unsigned long)kzalloc(sizeof(struct smsc95xx_priv),
992 GFP_KERNEL);
993
994 pdata = (struct smsc95xx_priv *)(dev->data[0]);
995 if (!pdata) {
Joe Perches60b86752010-02-17 10:30:23 +0000996 netdev_warn(dev->net, "Unable to allocate struct smsc95xx_priv\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +0000997 return -ENOMEM;
998 }
999
1000 spin_lock_init(&pdata->mac_cr_lock);
1001
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001002 if (DEFAULT_TX_CSUM_ENABLE)
1003 dev->net->features |= NETIF_F_HW_CSUM;
1004 if (DEFAULT_RX_CSUM_ENABLE)
1005 dev->net->features |= NETIF_F_RXCSUM;
1006
1007 dev->net->hw_features = NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001008
Bernard Blackhamf4e8ab72010-10-18 13:16:39 +00001009 smsc95xx_init_mac_address(dev);
1010
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001011 /* Init all registers */
1012 ret = smsc95xx_reset(dev);
1013
Stephen Hemminger63e77b32009-03-20 19:35:58 +00001014 dev->net->netdev_ops = &smsc95xx_netdev_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001015 dev->net->ethtool_ops = &smsc95xx_ethtool_ops;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001016 dev->net->flags |= IFF_MULTICAST;
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001017 dev->net->hard_header_len += SMSC95XX_TX_OVERHEAD_CSUM;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001018 return 0;
1019}
1020
1021static void smsc95xx_unbind(struct usbnet *dev, struct usb_interface *intf)
1022{
1023 struct smsc95xx_priv *pdata = (struct smsc95xx_priv *)(dev->data[0]);
1024 if (pdata) {
Joe Perchesa475f602010-02-17 10:30:24 +00001025 netif_dbg(dev, ifdown, dev->net, "free pdata\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001026 kfree(pdata);
1027 pdata = NULL;
1028 dev->data[0] = 0;
1029 }
1030}
1031
1032static void smsc95xx_rx_csum_offload(struct sk_buff *skb)
1033{
1034 skb->csum = *(u16 *)(skb_tail_pointer(skb) - 2);
1035 skb->ip_summed = CHECKSUM_COMPLETE;
1036 skb_trim(skb, skb->len - 2);
1037}
1038
1039static int smsc95xx_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
1040{
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001041 while (skb->len > 0) {
1042 u32 header, align_count;
1043 struct sk_buff *ax_skb;
1044 unsigned char *packet;
1045 u16 size;
1046
1047 memcpy(&header, skb->data, sizeof(header));
1048 le32_to_cpus(&header);
1049 skb_pull(skb, 4 + NET_IP_ALIGN);
1050 packet = skb->data;
1051
1052 /* get the packet length */
1053 size = (u16)((header & RX_STS_FL_) >> 16);
1054 align_count = (4 - ((size + NET_IP_ALIGN) % 4)) % 4;
1055
1056 if (unlikely(header & RX_STS_ES_)) {
Joe Perchesa475f602010-02-17 10:30:24 +00001057 netif_dbg(dev, rx_err, dev->net,
1058 "Error header=0x%08x\n", header);
Herbert Xu80667ac2009-06-29 16:53:00 +00001059 dev->net->stats.rx_errors++;
1060 dev->net->stats.rx_dropped++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001061
1062 if (header & RX_STS_CRC_) {
Herbert Xu80667ac2009-06-29 16:53:00 +00001063 dev->net->stats.rx_crc_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001064 } else {
1065 if (header & (RX_STS_TL_ | RX_STS_RF_))
Herbert Xu80667ac2009-06-29 16:53:00 +00001066 dev->net->stats.rx_frame_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001067
1068 if ((header & RX_STS_LE_) &&
1069 (!(header & RX_STS_FT_)))
Herbert Xu80667ac2009-06-29 16:53:00 +00001070 dev->net->stats.rx_length_errors++;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001071 }
1072 } else {
1073 /* ETH_FRAME_LEN + 4(CRC) + 2(COE) + 4(Vlan) */
1074 if (unlikely(size > (ETH_FRAME_LEN + 12))) {
Joe Perchesa475f602010-02-17 10:30:24 +00001075 netif_dbg(dev, rx_err, dev->net,
1076 "size err header=0x%08x\n", header);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001077 return 0;
1078 }
1079
1080 /* last frame in this batch */
1081 if (skb->len == size) {
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001082 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001083 smsc95xx_rx_csum_offload(skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001084 skb_trim(skb, skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001085 skb->truesize = size + sizeof(struct sk_buff);
1086
1087 return 1;
1088 }
1089
1090 ax_skb = skb_clone(skb, GFP_ATOMIC);
1091 if (unlikely(!ax_skb)) {
Joe Perches60b86752010-02-17 10:30:23 +00001092 netdev_warn(dev->net, "Error allocating skb\n");
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001093 return 0;
1094 }
1095
1096 ax_skb->len = size;
1097 ax_skb->data = packet;
1098 skb_set_tail_pointer(ax_skb, size);
1099
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001100 if (dev->net->features & NETIF_F_RXCSUM)
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001101 smsc95xx_rx_csum_offload(ax_skb);
Peter Korsgaarddf18acc2009-05-13 10:10:41 +00001102 skb_trim(ax_skb, ax_skb->len - 4); /* remove fcs */
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001103 ax_skb->truesize = size + sizeof(struct sk_buff);
1104
1105 usbnet_skb_return(dev, ax_skb);
1106 }
1107
1108 skb_pull(skb, size);
1109
1110 /* padding bytes before the next frame starts */
1111 if (skb->len)
1112 skb_pull(skb, align_count);
1113 }
1114
1115 if (unlikely(skb->len < 0)) {
Joe Perches60b86752010-02-17 10:30:23 +00001116 netdev_warn(dev->net, "invalid rx length<0 %d\n", skb->len);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001117 return 0;
1118 }
1119
1120 return 1;
1121}
1122
Steve Glendinningf7b29272008-11-20 04:19:21 -08001123static u32 smsc95xx_calc_csum_preamble(struct sk_buff *skb)
1124{
Michał Mirosław55508d62010-12-14 15:24:08 +00001125 u16 low_16 = (u16)skb_checksum_start_offset(skb);
1126 u16 high_16 = low_16 + skb->csum_offset;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001127 return (high_16 << 16) | low_16;
1128}
1129
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001130static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
1131 struct sk_buff *skb, gfp_t flags)
1132{
Michał Mirosław78e47fe2011-04-01 20:56:23 -07001133 bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
Steve Glendinningf7b29272008-11-20 04:19:21 -08001134 int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001135 u32 tx_cmd_a, tx_cmd_b;
1136
Steve Glendinningf7b29272008-11-20 04:19:21 -08001137 /* We do not advertise SG, so skbs should be already linearized */
1138 BUG_ON(skb_shinfo(skb)->nr_frags);
1139
1140 if (skb_headroom(skb) < overhead) {
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001141 struct sk_buff *skb2 = skb_copy_expand(skb,
Steve Glendinningf7b29272008-11-20 04:19:21 -08001142 overhead, 0, flags);
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001143 dev_kfree_skb_any(skb);
1144 skb = skb2;
1145 if (!skb)
1146 return NULL;
1147 }
1148
Steve Glendinningf7b29272008-11-20 04:19:21 -08001149 if (csum) {
Steve Glendinning11bc3082010-03-18 22:18:41 -07001150 if (skb->len <= 45) {
1151 /* workaround - hardware tx checksum does not work
1152 * properly with extremely small packets */
Michał Mirosław55508d62010-12-14 15:24:08 +00001153 long csstart = skb_checksum_start_offset(skb);
Steve Glendinning11bc3082010-03-18 22:18:41 -07001154 __wsum calc = csum_partial(skb->data + csstart,
1155 skb->len - csstart, 0);
1156 *((__sum16 *)(skb->data + csstart
1157 + skb->csum_offset)) = csum_fold(calc);
1158
1159 csum = false;
1160 } else {
1161 u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
1162 skb_push(skb, 4);
1163 memcpy(skb->data, &csum_preamble, 4);
1164 }
Steve Glendinningf7b29272008-11-20 04:19:21 -08001165 }
1166
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001167 skb_push(skb, 4);
1168 tx_cmd_b = (u32)(skb->len - 4);
Steve Glendinningf7b29272008-11-20 04:19:21 -08001169 if (csum)
1170 tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001171 cpu_to_le32s(&tx_cmd_b);
1172 memcpy(skb->data, &tx_cmd_b, 4);
1173
1174 skb_push(skb, 4);
1175 tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
1176 TX_CMD_A_LAST_SEG_;
1177 cpu_to_le32s(&tx_cmd_a);
1178 memcpy(skb->data, &tx_cmd_a, 4);
1179
1180 return skb;
1181}
1182
1183static const struct driver_info smsc95xx_info = {
1184 .description = "smsc95xx USB 2.0 Ethernet",
1185 .bind = smsc95xx_bind,
1186 .unbind = smsc95xx_unbind,
1187 .link_reset = smsc95xx_link_reset,
1188 .reset = smsc95xx_reset,
1189 .rx_fixup = smsc95xx_rx_fixup,
1190 .tx_fixup = smsc95xx_tx_fixup,
1191 .status = smsc95xx_status,
Steve Glendinningec475622009-09-22 04:00:27 +00001192 .flags = FLAG_ETHER | FLAG_SEND_ZLP,
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001193};
1194
1195static const struct usb_device_id products[] = {
1196 {
1197 /* SMSC9500 USB Ethernet Device */
1198 USB_DEVICE(0x0424, 0x9500),
1199 .driver_info = (unsigned long) &smsc95xx_info,
1200 },
Steve Glendinning726474b2009-05-01 06:07:22 +00001201 {
Steve Glendinning6f41d122009-09-22 05:13:02 +00001202 /* SMSC9505 USB Ethernet Device */
1203 USB_DEVICE(0x0424, 0x9505),
1204 .driver_info = (unsigned long) &smsc95xx_info,
1205 },
1206 {
1207 /* SMSC9500A USB Ethernet Device */
1208 USB_DEVICE(0x0424, 0x9E00),
1209 .driver_info = (unsigned long) &smsc95xx_info,
1210 },
1211 {
1212 /* SMSC9505A USB Ethernet Device */
1213 USB_DEVICE(0x0424, 0x9E01),
1214 .driver_info = (unsigned long) &smsc95xx_info,
1215 },
1216 {
Steve Glendinning726474b2009-05-01 06:07:22 +00001217 /* SMSC9512/9514 USB Hub & Ethernet Device */
1218 USB_DEVICE(0x0424, 0xec00),
1219 .driver_info = (unsigned long) &smsc95xx_info,
1220 },
Steve Glendinning6f41d122009-09-22 05:13:02 +00001221 {
1222 /* SMSC9500 USB Ethernet Device (SAL10) */
1223 USB_DEVICE(0x0424, 0x9900),
1224 .driver_info = (unsigned long) &smsc95xx_info,
1225 },
1226 {
1227 /* SMSC9505 USB Ethernet Device (SAL10) */
1228 USB_DEVICE(0x0424, 0x9901),
1229 .driver_info = (unsigned long) &smsc95xx_info,
1230 },
1231 {
1232 /* SMSC9500A USB Ethernet Device (SAL10) */
1233 USB_DEVICE(0x0424, 0x9902),
1234 .driver_info = (unsigned long) &smsc95xx_info,
1235 },
1236 {
1237 /* SMSC9505A USB Ethernet Device (SAL10) */
1238 USB_DEVICE(0x0424, 0x9903),
1239 .driver_info = (unsigned long) &smsc95xx_info,
1240 },
1241 {
1242 /* SMSC9512/9514 USB Hub & Ethernet Device (SAL10) */
1243 USB_DEVICE(0x0424, 0x9904),
1244 .driver_info = (unsigned long) &smsc95xx_info,
1245 },
1246 {
1247 /* SMSC9500A USB Ethernet Device (HAL) */
1248 USB_DEVICE(0x0424, 0x9905),
1249 .driver_info = (unsigned long) &smsc95xx_info,
1250 },
1251 {
1252 /* SMSC9505A USB Ethernet Device (HAL) */
1253 USB_DEVICE(0x0424, 0x9906),
1254 .driver_info = (unsigned long) &smsc95xx_info,
1255 },
1256 {
1257 /* SMSC9500 USB Ethernet Device (Alternate ID) */
1258 USB_DEVICE(0x0424, 0x9907),
1259 .driver_info = (unsigned long) &smsc95xx_info,
1260 },
1261 {
1262 /* SMSC9500A USB Ethernet Device (Alternate ID) */
1263 USB_DEVICE(0x0424, 0x9908),
1264 .driver_info = (unsigned long) &smsc95xx_info,
1265 },
1266 {
1267 /* SMSC9512/9514 USB Hub & Ethernet Device (Alternate ID) */
1268 USB_DEVICE(0x0424, 0x9909),
1269 .driver_info = (unsigned long) &smsc95xx_info,
1270 },
Steve Glendinning2f7ca802008-10-02 05:27:57 +00001271 { }, /* END */
1272};
1273MODULE_DEVICE_TABLE(usb, products);
1274
1275static struct usb_driver smsc95xx_driver = {
1276 .name = "smsc95xx",
1277 .id_table = products,
1278 .probe = usbnet_probe,
1279 .suspend = usbnet_suspend,
1280 .resume = usbnet_resume,
1281 .disconnect = usbnet_disconnect,
1282};
1283
1284static int __init smsc95xx_init(void)
1285{
1286 return usb_register(&smsc95xx_driver);
1287}
1288module_init(smsc95xx_init);
1289
1290static void __exit smsc95xx_exit(void)
1291{
1292 usb_deregister(&smsc95xx_driver);
1293}
1294module_exit(smsc95xx_exit);
1295
1296MODULE_AUTHOR("Nancy Lin");
1297MODULE_AUTHOR("Steve Glendinning <steve.glendinning@smsc.com>");
1298MODULE_DESCRIPTION("SMSC95XX USB 2.0 Ethernet Devices");
1299MODULE_LICENSE("GPL");