blob: 66c5e89326c11c67d42ab22d56e9948f2c3bf9fc [file] [log] [blame]
David Brownell2e55cc72005-08-31 09:53:10 -07001/*
2 * ASIX AX8817X based USB 2.0 Ethernet Devices
David Hollis933a27d2006-07-29 10:12:50 -04003 * Copyright (C) 2003-2006 David Hollis <dhollis@davehollis.com>
David Brownell2e55cc72005-08-31 09:53:10 -07004 * Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net>
David Hollis933a27d2006-07-29 10:12:50 -04005 * Copyright (C) 2006 James Painter <jamie.painter@iname.com>
David Brownell2e55cc72005-08-31 09:53:10 -07006 * Copyright (c) 2002-2003 TiVo Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23// #define DEBUG // error path messages, extra info
24// #define VERBOSE // more; success messages
25
David Brownell2e55cc72005-08-31 09:53:10 -070026#include <linux/module.h>
27#include <linux/kmod.h>
David Brownell2e55cc72005-08-31 09:53:10 -070028#include <linux/init.h>
29#include <linux/netdevice.h>
30#include <linux/etherdevice.h>
31#include <linux/ethtool.h>
32#include <linux/workqueue.h>
33#include <linux/mii.h>
34#include <linux/usb.h>
35#include <linux/crc32.h>
Jussi Kivilinna3692e942008-01-26 00:51:45 +020036#include <linux/usb/usbnet.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
David Brownell2e55cc72005-08-31 09:53:10 -070038
David Hollis933a27d2006-07-29 10:12:50 -040039#define DRIVER_VERSION "14-Jun-2006"
40static const char driver_name [] = "asix";
41
David Brownell2e55cc72005-08-31 09:53:10 -070042/* ASIX AX8817X based USB 2.0 Ethernet Devices */
43
44#define AX_CMD_SET_SW_MII 0x06
45#define AX_CMD_READ_MII_REG 0x07
46#define AX_CMD_WRITE_MII_REG 0x08
47#define AX_CMD_SET_HW_MII 0x0a
48#define AX_CMD_READ_EEPROM 0x0b
49#define AX_CMD_WRITE_EEPROM 0x0c
50#define AX_CMD_WRITE_ENABLE 0x0d
51#define AX_CMD_WRITE_DISABLE 0x0e
David Hollis933a27d2006-07-29 10:12:50 -040052#define AX_CMD_READ_RX_CTL 0x0f
David Brownell2e55cc72005-08-31 09:53:10 -070053#define AX_CMD_WRITE_RX_CTL 0x10
54#define AX_CMD_READ_IPG012 0x11
55#define AX_CMD_WRITE_IPG0 0x12
56#define AX_CMD_WRITE_IPG1 0x13
David Hollis933a27d2006-07-29 10:12:50 -040057#define AX_CMD_READ_NODE_ID 0x13
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +000058#define AX_CMD_WRITE_NODE_ID 0x14
David Brownell2e55cc72005-08-31 09:53:10 -070059#define AX_CMD_WRITE_IPG2 0x14
60#define AX_CMD_WRITE_MULTI_FILTER 0x16
David Hollis933a27d2006-07-29 10:12:50 -040061#define AX88172_CMD_READ_NODE_ID 0x17
David Brownell2e55cc72005-08-31 09:53:10 -070062#define AX_CMD_READ_PHY_ID 0x19
63#define AX_CMD_READ_MEDIUM_STATUS 0x1a
64#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
65#define AX_CMD_READ_MONITOR_MODE 0x1c
66#define AX_CMD_WRITE_MONITOR_MODE 0x1d
David Hollis933a27d2006-07-29 10:12:50 -040067#define AX_CMD_READ_GPIOS 0x1e
David Brownell2e55cc72005-08-31 09:53:10 -070068#define AX_CMD_WRITE_GPIOS 0x1f
69#define AX_CMD_SW_RESET 0x20
70#define AX_CMD_SW_PHY_STATUS 0x21
71#define AX_CMD_SW_PHY_SELECT 0x22
David Brownell2e55cc72005-08-31 09:53:10 -070072
73#define AX_MONITOR_MODE 0x01
74#define AX_MONITOR_LINK 0x02
75#define AX_MONITOR_MAGIC 0x04
76#define AX_MONITOR_HSFS 0x10
77
78/* AX88172 Medium Status Register values */
David Hollis933a27d2006-07-29 10:12:50 -040079#define AX88172_MEDIUM_FD 0x02
80#define AX88172_MEDIUM_TX 0x04
81#define AX88172_MEDIUM_FC 0x10
82#define AX88172_MEDIUM_DEFAULT \
83 ( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
David Brownell2e55cc72005-08-31 09:53:10 -070084
85#define AX_MCAST_FILTER_SIZE 8
86#define AX_MAX_MCAST 64
87
David Brownell2e55cc72005-08-31 09:53:10 -070088#define AX_SWRESET_CLEAR 0x00
89#define AX_SWRESET_RR 0x01
90#define AX_SWRESET_RT 0x02
91#define AX_SWRESET_PRTE 0x04
92#define AX_SWRESET_PRL 0x08
93#define AX_SWRESET_BZ 0x10
94#define AX_SWRESET_IPRL 0x20
95#define AX_SWRESET_IPPD 0x40
96
97#define AX88772_IPG0_DEFAULT 0x15
98#define AX88772_IPG1_DEFAULT 0x0c
99#define AX88772_IPG2_DEFAULT 0x12
100
David Hollis933a27d2006-07-29 10:12:50 -0400101/* AX88772 & AX88178 Medium Mode Register */
102#define AX_MEDIUM_PF 0x0080
103#define AX_MEDIUM_JFE 0x0040
104#define AX_MEDIUM_TFC 0x0020
105#define AX_MEDIUM_RFC 0x0010
106#define AX_MEDIUM_ENCK 0x0008
107#define AX_MEDIUM_AC 0x0004
108#define AX_MEDIUM_FD 0x0002
109#define AX_MEDIUM_GM 0x0001
110#define AX_MEDIUM_SM 0x1000
111#define AX_MEDIUM_SBP 0x0800
112#define AX_MEDIUM_PS 0x0200
113#define AX_MEDIUM_RE 0x0100
David Brownell2e55cc72005-08-31 09:53:10 -0700114
David Hollis933a27d2006-07-29 10:12:50 -0400115#define AX88178_MEDIUM_DEFAULT \
116 (AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
117 AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
118 AX_MEDIUM_RE )
119
120#define AX88772_MEDIUM_DEFAULT \
121 (AX_MEDIUM_FD | AX_MEDIUM_RFC | \
122 AX_MEDIUM_TFC | AX_MEDIUM_PS | \
123 AX_MEDIUM_AC | AX_MEDIUM_RE )
124
125/* AX88772 & AX88178 RX_CTL values */
126#define AX_RX_CTL_SO 0x0080
127#define AX_RX_CTL_AP 0x0020
128#define AX_RX_CTL_AM 0x0010
129#define AX_RX_CTL_AB 0x0008
130#define AX_RX_CTL_SEP 0x0004
131#define AX_RX_CTL_AMALL 0x0002
132#define AX_RX_CTL_PRO 0x0001
133#define AX_RX_CTL_MFB_2048 0x0000
134#define AX_RX_CTL_MFB_4096 0x0100
135#define AX_RX_CTL_MFB_8192 0x0200
136#define AX_RX_CTL_MFB_16384 0x0300
137
138#define AX_DEFAULT_RX_CTL \
139 (AX_RX_CTL_SO | AX_RX_CTL_AB )
140
141/* GPIO 0 .. 2 toggles */
142#define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
143#define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
144#define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
145#define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
146#define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
147#define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
148#define AX_GPIO_RESERVED 0x40 /* Reserved */
149#define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
150
151#define AX_EEPROM_MAGIC 0xdeadbeef
152#define AX88172_EEPROM_LEN 0x40
153#define AX88772_EEPROM_LEN 0xff
154
155#define PHY_MODE_MARVELL 0x0000
156#define MII_MARVELL_LED_CTRL 0x0018
157#define MII_MARVELL_STATUS 0x001b
158#define MII_MARVELL_CTRL 0x0014
159
160#define MARVELL_LED_MANUAL 0x0019
161
162#define MARVELL_STATUS_HWCFG 0x0004
163
164#define MARVELL_CTRL_TXDELAY 0x0002
165#define MARVELL_CTRL_RXDELAY 0x0080
David Brownell2e55cc72005-08-31 09:53:10 -0700166
167/* This structure cannot exceed sizeof(unsigned long [5]) AKA 20 bytes */
David Hollis48b1be62006-03-28 20:15:42 -0500168struct asix_data {
David Brownell2e55cc72005-08-31 09:53:10 -0700169 u8 multi_filter[AX_MCAST_FILTER_SIZE];
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000170 u8 mac_addr[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400171 u8 phymode;
172 u8 ledmode;
173 u8 eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700174};
175
176struct ax88172_int_data {
Al Viro51bf2972007-12-22 17:42:36 +0000177 __le16 res1;
David Brownell2e55cc72005-08-31 09:53:10 -0700178 u8 link;
Al Viro51bf2972007-12-22 17:42:36 +0000179 __le16 res2;
David Brownell2e55cc72005-08-31 09:53:10 -0700180 u8 status;
Al Viro51bf2972007-12-22 17:42:36 +0000181 __le16 res3;
David Brownell2e55cc72005-08-31 09:53:10 -0700182} __attribute__ ((packed));
183
David Hollis48b1be62006-03-28 20:15:42 -0500184static int asix_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700185 u16 size, void *data)
186{
Al Viro51bf2972007-12-22 17:42:36 +0000187 void *buf;
188 int err = -ENOMEM;
189
Joe Perches60b86752010-02-17 10:30:23 +0000190 netdev_dbg(dev->net, "asix_read_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
191 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000192
193 buf = kmalloc(size, GFP_KERNEL);
194 if (!buf)
195 goto out;
196
197 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700198 dev->udev,
199 usb_rcvctrlpipe(dev->udev, 0),
200 cmd,
201 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
202 value,
203 index,
Al Viro51bf2972007-12-22 17:42:36 +0000204 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700205 size,
206 USB_CTRL_GET_TIMEOUT);
Russ Dill94d43362008-01-09 21:32:07 -0700207 if (err == size)
Al Viro51bf2972007-12-22 17:42:36 +0000208 memcpy(data, buf, size);
Russ Dill94d43362008-01-09 21:32:07 -0700209 else if (err >= 0)
210 err = -EINVAL;
Al Viro51bf2972007-12-22 17:42:36 +0000211 kfree(buf);
212
213out:
214 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700215}
216
David Hollis48b1be62006-03-28 20:15:42 -0500217static int asix_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index,
David Brownell2e55cc72005-08-31 09:53:10 -0700218 u16 size, void *data)
219{
Al Viro51bf2972007-12-22 17:42:36 +0000220 void *buf = NULL;
221 int err = -ENOMEM;
222
Joe Perches60b86752010-02-17 10:30:23 +0000223 netdev_dbg(dev->net, "asix_write_cmd() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
224 cmd, value, index, size);
Al Viro51bf2972007-12-22 17:42:36 +0000225
226 if (data) {
227 buf = kmalloc(size, GFP_KERNEL);
228 if (!buf)
229 goto out;
230 memcpy(buf, data, size);
231 }
232
233 err = usb_control_msg(
David Brownell2e55cc72005-08-31 09:53:10 -0700234 dev->udev,
235 usb_sndctrlpipe(dev->udev, 0),
236 cmd,
237 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
238 value,
239 index,
Al Viro51bf2972007-12-22 17:42:36 +0000240 buf,
David Brownell2e55cc72005-08-31 09:53:10 -0700241 size,
242 USB_CTRL_SET_TIMEOUT);
Al Viro51bf2972007-12-22 17:42:36 +0000243 kfree(buf);
244
245out:
246 return err;
David Brownell2e55cc72005-08-31 09:53:10 -0700247}
248
David Howells7d12e782006-10-05 14:55:46 +0100249static void asix_async_cmd_callback(struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700250{
251 struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
Oliver Neukumc94cb312008-12-18 23:00:59 -0800252 int status = urb->status;
David Brownell2e55cc72005-08-31 09:53:10 -0700253
Oliver Neukumc94cb312008-12-18 23:00:59 -0800254 if (status < 0)
David Hollis48b1be62006-03-28 20:15:42 -0500255 printk(KERN_DEBUG "asix_async_cmd_callback() failed with %d",
Oliver Neukumc94cb312008-12-18 23:00:59 -0800256 status);
David Brownell2e55cc72005-08-31 09:53:10 -0700257
258 kfree(req);
259 usb_free_urb(urb);
260}
261
David Hollis933a27d2006-07-29 10:12:50 -0400262static void
263asix_write_cmd_async(struct usbnet *dev, u8 cmd, u16 value, u16 index,
264 u16 size, void *data)
David Hollis48b1be62006-03-28 20:15:42 -0500265{
David Hollis933a27d2006-07-29 10:12:50 -0400266 struct usb_ctrlrequest *req;
267 int status;
268 struct urb *urb;
David Hollis48b1be62006-03-28 20:15:42 -0500269
Joe Perches60b86752010-02-17 10:30:23 +0000270 netdev_dbg(dev->net, "asix_write_cmd_async() cmd=0x%02x value=0x%04x index=0x%04x size=%d\n",
271 cmd, value, index, size);
David Hollis933a27d2006-07-29 10:12:50 -0400272 if ((urb = usb_alloc_urb(0, GFP_ATOMIC)) == NULL) {
Joe Perches60b86752010-02-17 10:30:23 +0000273 netdev_err(dev->net, "Error allocating URB in write_cmd_async!\n");
David Hollis933a27d2006-07-29 10:12:50 -0400274 return;
David Hollis48b1be62006-03-28 20:15:42 -0500275 }
David Hollis933a27d2006-07-29 10:12:50 -0400276
277 if ((req = kmalloc(sizeof(struct usb_ctrlrequest), GFP_ATOMIC)) == NULL) {
Joe Perches60b86752010-02-17 10:30:23 +0000278 netdev_err(dev->net, "Failed to allocate memory for control request\n");
David Hollis933a27d2006-07-29 10:12:50 -0400279 usb_free_urb(urb);
280 return;
281 }
282
283 req->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE;
284 req->bRequest = cmd;
Oliver Neukum9aa742e2006-11-23 12:45:31 +0100285 req->wValue = cpu_to_le16(value);
286 req->wIndex = cpu_to_le16(index);
287 req->wLength = cpu_to_le16(size);
David Hollis933a27d2006-07-29 10:12:50 -0400288
289 usb_fill_control_urb(urb, dev->udev,
290 usb_sndctrlpipe(dev->udev, 0),
291 (void *)req, data, size,
292 asix_async_cmd_callback, req);
293
294 if((status = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000295 netdev_err(dev->net, "Error submitting the control message: status=%d\n",
296 status);
David Hollis933a27d2006-07-29 10:12:50 -0400297 kfree(req);
298 usb_free_urb(urb);
299 }
David Hollis48b1be62006-03-28 20:15:42 -0500300}
301
David Hollis933a27d2006-07-29 10:12:50 -0400302static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
David Hollis48b1be62006-03-28 20:15:42 -0500303{
David Hollis933a27d2006-07-29 10:12:50 -0400304 u8 *head;
305 u32 header;
306 char *packet;
307 struct sk_buff *ax_skb;
308 u16 size;
David Hollis48b1be62006-03-28 20:15:42 -0500309
David Hollis933a27d2006-07-29 10:12:50 -0400310 head = (u8 *) skb->data;
311 memcpy(&header, head, sizeof(header));
312 le32_to_cpus(&header);
313 packet = head + sizeof(header);
David Hollis48b1be62006-03-28 20:15:42 -0500314
David Hollis933a27d2006-07-29 10:12:50 -0400315 skb_pull(skb, 4);
316
317 while (skb->len > 0) {
318 if ((short)(header & 0x0000ffff) !=
319 ~((short)((header & 0xffff0000) >> 16))) {
Joe Perches60b86752010-02-17 10:30:23 +0000320 netdev_err(dev->net, "asix_rx_fixup() Bad Header Length\n");
David Hollis933a27d2006-07-29 10:12:50 -0400321 }
322 /* get the packet length */
323 size = (u16) (header & 0x0000ffff);
324
Neil Jones3f78d1f2010-05-17 17:18:28 -0700325 if ((skb->len) - ((size + 1) & 0xfffe) == 0) {
326 u8 alignment = (u32)skb->data & 0x3;
327 if (alignment != 0x2) {
328 /*
329 * not 16bit aligned so use the room provided by
330 * the 32 bit header to align the data
331 *
332 * note we want 16bit alignment as MAC header is
333 * 14bytes thus ip header will be aligned on
334 * 32bit boundary so accessing ipheader elements
335 * using a cast to struct ip header wont cause
336 * an unaligned accesses.
337 */
338 u8 realignment = (alignment + 2) & 0x3;
339 memmove(skb->data - realignment,
340 skb->data,
341 size);
342 skb->data -= realignment;
343 skb_set_tail_pointer(skb, size);
344 }
David Hollis933a27d2006-07-29 10:12:50 -0400345 return 2;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700346 }
347
David Hollis933a27d2006-07-29 10:12:50 -0400348 if (size > ETH_FRAME_LEN) {
Joe Perches60b86752010-02-17 10:30:23 +0000349 netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
350 size);
David Hollis933a27d2006-07-29 10:12:50 -0400351 return 0;
352 }
353 ax_skb = skb_clone(skb, GFP_ATOMIC);
354 if (ax_skb) {
Neil Jones3f78d1f2010-05-17 17:18:28 -0700355 u8 alignment = (u32)packet & 0x3;
David Hollis933a27d2006-07-29 10:12:50 -0400356 ax_skb->len = size;
Neil Jones3f78d1f2010-05-17 17:18:28 -0700357
358 if (alignment != 0x2) {
359 /*
360 * not 16bit aligned use the room provided by
361 * the 32 bit header to align the data
362 */
363 u8 realignment = (alignment + 2) & 0x3;
364 memmove(packet - realignment, packet, size);
365 packet -= realignment;
366 }
David Hollis933a27d2006-07-29 10:12:50 -0400367 ax_skb->data = packet;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700368 skb_set_tail_pointer(ax_skb, size);
David Hollis933a27d2006-07-29 10:12:50 -0400369 usbnet_skb_return(dev, ax_skb);
370 } else {
371 return 0;
372 }
373
374 skb_pull(skb, (size + 1) & 0xfffe);
375
376 if (skb->len == 0)
377 break;
378
379 head = (u8 *) skb->data;
380 memcpy(&header, head, sizeof(header));
381 le32_to_cpus(&header);
382 packet = head + sizeof(header);
383 skb_pull(skb, 4);
384 }
385
386 if (skb->len < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000387 netdev_err(dev->net, "asix_rx_fixup() Bad SKB Length %d\n",
388 skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400389 return 0;
390 }
391 return 1;
David Hollis48b1be62006-03-28 20:15:42 -0500392}
393
David Hollis933a27d2006-07-29 10:12:50 -0400394static struct sk_buff *asix_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
395 gfp_t flags)
David Hollis48b1be62006-03-28 20:15:42 -0500396{
David Hollis933a27d2006-07-29 10:12:50 -0400397 int padlen;
398 int headroom = skb_headroom(skb);
399 int tailroom = skb_tailroom(skb);
400 u32 packet_len;
401 u32 padbytes = 0xffff0000;
David Hollis48b1be62006-03-28 20:15:42 -0500402
David Hollis933a27d2006-07-29 10:12:50 -0400403 padlen = ((skb->len + 4) % 512) ? 0 : 4;
David Hollis48b1be62006-03-28 20:15:42 -0500404
Joe Perches8e95a202009-12-03 07:58:21 +0000405 if ((!skb_cloned(skb)) &&
406 ((headroom + tailroom) >= (4 + padlen))) {
David Hollis933a27d2006-07-29 10:12:50 -0400407 if ((headroom < 4) || (tailroom < padlen)) {
408 skb->data = memmove(skb->head + 4, skb->data, skb->len);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700409 skb_set_tail_pointer(skb, skb->len);
David Hollis933a27d2006-07-29 10:12:50 -0400410 }
411 } else {
412 struct sk_buff *skb2;
413 skb2 = skb_copy_expand(skb, 4, padlen, flags);
414 dev_kfree_skb_any(skb);
415 skb = skb2;
416 if (!skb)
417 return NULL;
418 }
419
420 skb_push(skb, 4);
421 packet_len = (((skb->len - 4) ^ 0x0000ffff) << 16) + (skb->len - 4);
David Hollis57e4f042007-02-05 12:03:03 -0500422 cpu_to_le32s(&packet_len);
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300423 skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len));
David Hollis933a27d2006-07-29 10:12:50 -0400424
425 if ((skb->len % 512) == 0) {
David Hollis57e4f042007-02-05 12:03:03 -0500426 cpu_to_le32s(&padbytes);
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700427 memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes));
David Hollis933a27d2006-07-29 10:12:50 -0400428 skb_put(skb, sizeof(padbytes));
429 }
430 return skb;
David Hollis48b1be62006-03-28 20:15:42 -0500431}
432
433static void asix_status(struct usbnet *dev, struct urb *urb)
David Brownell2e55cc72005-08-31 09:53:10 -0700434{
435 struct ax88172_int_data *event;
436 int link;
437
438 if (urb->actual_length < 8)
439 return;
440
441 event = urb->transfer_buffer;
442 link = event->link & 0x01;
443 if (netif_carrier_ok(dev->net) != link) {
444 if (link) {
445 netif_carrier_on(dev->net);
446 usbnet_defer_kevent (dev, EVENT_LINK_RESET );
447 } else
448 netif_carrier_off(dev->net);
Joe Perches60b86752010-02-17 10:30:23 +0000449 netdev_dbg(dev->net, "Link Status is: %d\n", link);
David Brownell2e55cc72005-08-31 09:53:10 -0700450 }
451}
452
David Hollis933a27d2006-07-29 10:12:50 -0400453static inline int asix_set_sw_mii(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700454{
David Hollis933a27d2006-07-29 10:12:50 -0400455 int ret;
456 ret = asix_write_cmd(dev, AX_CMD_SET_SW_MII, 0x0000, 0, 0, NULL);
457 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000458 netdev_err(dev->net, "Failed to enable software MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400459 return ret;
David Brownell2e55cc72005-08-31 09:53:10 -0700460}
461
David Hollis933a27d2006-07-29 10:12:50 -0400462static inline int asix_set_hw_mii(struct usbnet *dev)
463{
464 int ret;
465 ret = asix_write_cmd(dev, AX_CMD_SET_HW_MII, 0x0000, 0, 0, NULL);
466 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000467 netdev_err(dev->net, "Failed to enable hardware MII access\n");
David Hollis933a27d2006-07-29 10:12:50 -0400468 return ret;
469}
470
471static inline int asix_get_phy_addr(struct usbnet *dev)
472{
Al Viro51bf2972007-12-22 17:42:36 +0000473 u8 buf[2];
474 int ret = asix_read_cmd(dev, AX_CMD_READ_PHY_ID, 0, 0, 2, buf);
David Hollis933a27d2006-07-29 10:12:50 -0400475
Joe Perches60b86752010-02-17 10:30:23 +0000476 netdev_dbg(dev->net, "asix_get_phy_addr()\n");
David Hollis933a27d2006-07-29 10:12:50 -0400477
Al Viro51bf2972007-12-22 17:42:36 +0000478 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000479 netdev_err(dev->net, "Error reading PHYID register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000480 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400481 }
Joe Perches60b86752010-02-17 10:30:23 +0000482 netdev_dbg(dev->net, "asix_get_phy_addr() returning 0x%04x\n",
483 *((__le16 *)buf));
Al Viro51bf2972007-12-22 17:42:36 +0000484 ret = buf[1];
485
486out:
David Hollis933a27d2006-07-29 10:12:50 -0400487 return ret;
488}
489
490static int asix_sw_reset(struct usbnet *dev, u8 flags)
491{
492 int ret;
493
494 ret = asix_write_cmd(dev, AX_CMD_SW_RESET, flags, 0, 0, NULL);
495 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000496 netdev_err(dev->net, "Failed to send software reset: %02x\n", ret);
David Hollis933a27d2006-07-29 10:12:50 -0400497
498 return ret;
499}
500
501static u16 asix_read_rx_ctl(struct usbnet *dev)
502{
Al Viro51bf2972007-12-22 17:42:36 +0000503 __le16 v;
504 int ret = asix_read_cmd(dev, AX_CMD_READ_RX_CTL, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400505
Al Viro51bf2972007-12-22 17:42:36 +0000506 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000507 netdev_err(dev->net, "Error reading RX_CTL register: %02x\n", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000508 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400509 }
Al Viro51bf2972007-12-22 17:42:36 +0000510 ret = le16_to_cpu(v);
511out:
David Hollis933a27d2006-07-29 10:12:50 -0400512 return ret;
513}
514
515static int asix_write_rx_ctl(struct usbnet *dev, u16 mode)
516{
517 int ret;
518
Joe Perches60b86752010-02-17 10:30:23 +0000519 netdev_dbg(dev->net, "asix_write_rx_ctl() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400520 ret = asix_write_cmd(dev, AX_CMD_WRITE_RX_CTL, mode, 0, 0, NULL);
521 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000522 netdev_err(dev->net, "Failed to write RX_CTL mode to 0x%04x: %02x\n",
523 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400524
525 return ret;
526}
527
528static u16 asix_read_medium_status(struct usbnet *dev)
529{
Al Viro51bf2972007-12-22 17:42:36 +0000530 __le16 v;
531 int ret = asix_read_cmd(dev, AX_CMD_READ_MEDIUM_STATUS, 0, 0, 2, &v);
David Hollis933a27d2006-07-29 10:12:50 -0400532
Al Viro51bf2972007-12-22 17:42:36 +0000533 if (ret < 0) {
Joe Perches60b86752010-02-17 10:30:23 +0000534 netdev_err(dev->net, "Error reading Medium Status register: %02x\n",
535 ret);
Al Viro51bf2972007-12-22 17:42:36 +0000536 goto out;
David Hollis933a27d2006-07-29 10:12:50 -0400537 }
Al Viro51bf2972007-12-22 17:42:36 +0000538 ret = le16_to_cpu(v);
539out:
David Hollis933a27d2006-07-29 10:12:50 -0400540 return ret;
541}
542
543static int asix_write_medium_mode(struct usbnet *dev, u16 mode)
544{
545 int ret;
546
Joe Perches60b86752010-02-17 10:30:23 +0000547 netdev_dbg(dev->net, "asix_write_medium_mode() - mode = 0x%04x\n", mode);
David Hollis933a27d2006-07-29 10:12:50 -0400548 ret = asix_write_cmd(dev, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, 0, NULL);
549 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000550 netdev_err(dev->net, "Failed to write Medium Mode mode to 0x%04x: %02x\n",
551 mode, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400552
553 return ret;
554}
555
556static int asix_write_gpio(struct usbnet *dev, u16 value, int sleep)
557{
558 int ret;
559
Joe Perches60b86752010-02-17 10:30:23 +0000560 netdev_dbg(dev->net, "asix_write_gpio() - value = 0x%04x\n", value);
David Hollis933a27d2006-07-29 10:12:50 -0400561 ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS, value, 0, 0, NULL);
562 if (ret < 0)
Joe Perches60b86752010-02-17 10:30:23 +0000563 netdev_err(dev->net, "Failed to write GPIO value 0x%04x: %02x\n",
564 value, ret);
David Hollis933a27d2006-07-29 10:12:50 -0400565
566 if (sleep)
567 msleep(sleep);
568
569 return ret;
570}
571
572/*
573 * AX88772 & AX88178 have a 16-bit RX_CTL value
574 */
David Hollis48b1be62006-03-28 20:15:42 -0500575static void asix_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700576{
577 struct usbnet *dev = netdev_priv(net);
David Hollis48b1be62006-03-28 20:15:42 -0500578 struct asix_data *data = (struct asix_data *)&dev->data;
David Hollis933a27d2006-07-29 10:12:50 -0400579 u16 rx_ctl = AX_DEFAULT_RX_CTL;
David Brownell2e55cc72005-08-31 09:53:10 -0700580
581 if (net->flags & IFF_PROMISC) {
David Hollis933a27d2006-07-29 10:12:50 -0400582 rx_ctl |= AX_RX_CTL_PRO;
Joe Perches8e95a202009-12-03 07:58:21 +0000583 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000584 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400585 rx_ctl |= AX_RX_CTL_AMALL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000586 } else if (netdev_mc_empty(net)) {
David Brownell2e55cc72005-08-31 09:53:10 -0700587 /* just broadcast and directed */
588 } else {
589 /* We use the 20 byte dev->data
590 * for our 8 byte filter buffer
591 * to avoid allocating memory that
592 * is tricky to free later */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000593 struct netdev_hw_addr *ha;
David Brownell2e55cc72005-08-31 09:53:10 -0700594 u32 crc_bits;
David Brownell2e55cc72005-08-31 09:53:10 -0700595
596 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
597
598 /* Build the multicast hash filter. */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000599 netdev_for_each_mc_addr(ha, net) {
600 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Brownell2e55cc72005-08-31 09:53:10 -0700601 data->multi_filter[crc_bits >> 3] |=
602 1 << (crc_bits & 7);
David Brownell2e55cc72005-08-31 09:53:10 -0700603 }
604
David Hollis48b1be62006-03-28 20:15:42 -0500605 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
David Brownell2e55cc72005-08-31 09:53:10 -0700606 AX_MCAST_FILTER_SIZE, data->multi_filter);
607
David Hollis933a27d2006-07-29 10:12:50 -0400608 rx_ctl |= AX_RX_CTL_AM;
David Brownell2e55cc72005-08-31 09:53:10 -0700609 }
610
David Hollis48b1be62006-03-28 20:15:42 -0500611 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700612}
613
David Hollis48b1be62006-03-28 20:15:42 -0500614static int asix_mdio_read(struct net_device *netdev, int phy_id, int loc)
David Brownell2e55cc72005-08-31 09:53:10 -0700615{
616 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000617 __le16 res;
David Brownell2e55cc72005-08-31 09:53:10 -0700618
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200619 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500620 asix_set_sw_mii(dev);
621 asix_read_cmd(dev, AX_CMD_READ_MII_REG, phy_id,
Al Viro51bf2972007-12-22 17:42:36 +0000622 (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500623 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200624 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700625
Joe Perches60b86752010-02-17 10:30:23 +0000626 netdev_dbg(dev->net, "asix_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n",
627 phy_id, loc, le16_to_cpu(res));
David Brownell2e55cc72005-08-31 09:53:10 -0700628
Al Viro51bf2972007-12-22 17:42:36 +0000629 return le16_to_cpu(res);
David Brownell2e55cc72005-08-31 09:53:10 -0700630}
631
632static void
David Hollis48b1be62006-03-28 20:15:42 -0500633asix_mdio_write(struct net_device *netdev, int phy_id, int loc, int val)
David Brownell2e55cc72005-08-31 09:53:10 -0700634{
635 struct usbnet *dev = netdev_priv(netdev);
Al Viro51bf2972007-12-22 17:42:36 +0000636 __le16 res = cpu_to_le16(val);
David Brownell2e55cc72005-08-31 09:53:10 -0700637
Joe Perches60b86752010-02-17 10:30:23 +0000638 netdev_dbg(dev->net, "asix_mdio_write() phy_id=0x%02x, loc=0x%02x, val=0x%04x\n",
639 phy_id, loc, val);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200640 mutex_lock(&dev->phy_mutex);
David Hollis48b1be62006-03-28 20:15:42 -0500641 asix_set_sw_mii(dev);
Al Viro51bf2972007-12-22 17:42:36 +0000642 asix_write_cmd(dev, AX_CMD_WRITE_MII_REG, phy_id, (__u16)loc, 2, &res);
David Hollis48b1be62006-03-28 20:15:42 -0500643 asix_set_hw_mii(dev);
Arnd Bergmanna9fc6332006-10-09 00:08:02 +0200644 mutex_unlock(&dev->phy_mutex);
David Brownell2e55cc72005-08-31 09:53:10 -0700645}
646
David Hollis933a27d2006-07-29 10:12:50 -0400647/* Get the PHY Identifier from the PHYSID1 & PHYSID2 MII registers */
648static u32 asix_get_phyid(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -0700649{
David Hollis933a27d2006-07-29 10:12:50 -0400650 int phy_reg;
651 u32 phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700652
David Hollis933a27d2006-07-29 10:12:50 -0400653 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID1);
654 if (phy_reg < 0)
655 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700656
David Hollis933a27d2006-07-29 10:12:50 -0400657 phy_id = (phy_reg & 0xffff) << 16;
David Brownell2e55cc72005-08-31 09:53:10 -0700658
David Hollis933a27d2006-07-29 10:12:50 -0400659 phy_reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_PHYSID2);
660 if (phy_reg < 0)
661 return 0;
662
663 phy_id |= (phy_reg & 0xffff);
664
665 return phy_id;
David Brownell2e55cc72005-08-31 09:53:10 -0700666}
667
668static void
David Hollis48b1be62006-03-28 20:15:42 -0500669asix_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700670{
671 struct usbnet *dev = netdev_priv(net);
672 u8 opt;
673
David Hollis48b1be62006-03-28 20:15:42 -0500674 if (asix_read_cmd(dev, AX_CMD_READ_MONITOR_MODE, 0, 0, 1, &opt) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700675 wolinfo->supported = 0;
676 wolinfo->wolopts = 0;
677 return;
678 }
679 wolinfo->supported = WAKE_PHY | WAKE_MAGIC;
680 wolinfo->wolopts = 0;
681 if (opt & AX_MONITOR_MODE) {
682 if (opt & AX_MONITOR_LINK)
683 wolinfo->wolopts |= WAKE_PHY;
684 if (opt & AX_MONITOR_MAGIC)
685 wolinfo->wolopts |= WAKE_MAGIC;
686 }
687}
688
689static int
David Hollis48b1be62006-03-28 20:15:42 -0500690asix_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo)
David Brownell2e55cc72005-08-31 09:53:10 -0700691{
692 struct usbnet *dev = netdev_priv(net);
693 u8 opt = 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700694
695 if (wolinfo->wolopts & WAKE_PHY)
696 opt |= AX_MONITOR_LINK;
697 if (wolinfo->wolopts & WAKE_MAGIC)
698 opt |= AX_MONITOR_MAGIC;
699 if (opt != 0)
700 opt |= AX_MONITOR_MODE;
701
David Hollis48b1be62006-03-28 20:15:42 -0500702 if (asix_write_cmd(dev, AX_CMD_WRITE_MONITOR_MODE,
Al Viro51bf2972007-12-22 17:42:36 +0000703 opt, 0, 0, NULL) < 0)
David Brownell2e55cc72005-08-31 09:53:10 -0700704 return -EINVAL;
705
706 return 0;
707}
708
David Hollis48b1be62006-03-28 20:15:42 -0500709static int asix_get_eeprom_len(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700710{
David Hollis933a27d2006-07-29 10:12:50 -0400711 struct usbnet *dev = netdev_priv(net);
712 struct asix_data *data = (struct asix_data *)&dev->data;
713
714 return data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700715}
716
David Hollis48b1be62006-03-28 20:15:42 -0500717static int asix_get_eeprom(struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700718 struct ethtool_eeprom *eeprom, u8 *data)
719{
720 struct usbnet *dev = netdev_priv(net);
Al Viro51bf2972007-12-22 17:42:36 +0000721 __le16 *ebuf = (__le16 *)data;
David Brownell2e55cc72005-08-31 09:53:10 -0700722 int i;
723
724 /* Crude hack to ensure that we don't overwrite memory
725 * if an odd length is supplied
726 */
727 if (eeprom->len % 2)
728 return -EINVAL;
729
730 eeprom->magic = AX_EEPROM_MAGIC;
731
732 /* ax8817x returns 2 bytes from eeprom on read */
733 for (i=0; i < eeprom->len / 2; i++) {
David Hollis48b1be62006-03-28 20:15:42 -0500734 if (asix_read_cmd(dev, AX_CMD_READ_EEPROM,
David Brownell2e55cc72005-08-31 09:53:10 -0700735 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
736 return -EINVAL;
737 }
738 return 0;
739}
740
David Hollis48b1be62006-03-28 20:15:42 -0500741static void asix_get_drvinfo (struct net_device *net,
David Brownell2e55cc72005-08-31 09:53:10 -0700742 struct ethtool_drvinfo *info)
743{
David Hollis933a27d2006-07-29 10:12:50 -0400744 struct usbnet *dev = netdev_priv(net);
745 struct asix_data *data = (struct asix_data *)&dev->data;
746
David Brownell2e55cc72005-08-31 09:53:10 -0700747 /* Inherit standard device info */
748 usbnet_get_drvinfo(net, info);
David Hollis933a27d2006-07-29 10:12:50 -0400749 strncpy (info->driver, driver_name, sizeof info->driver);
750 strncpy (info->version, DRIVER_VERSION, sizeof info->version);
751 info->eedump_len = data->eeprom_len;
David Brownell2e55cc72005-08-31 09:53:10 -0700752}
753
David Hollis933a27d2006-07-29 10:12:50 -0400754static u32 asix_get_link(struct net_device *net)
755{
756 struct usbnet *dev = netdev_priv(net);
757
758 return mii_link_ok(&dev->mii);
759}
760
761static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
762{
763 struct usbnet *dev = netdev_priv(net);
764
765 return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
David Brownell2e55cc72005-08-31 09:53:10 -0700766}
767
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000768static int asix_set_mac_address(struct net_device *net, void *p)
769{
770 struct usbnet *dev = netdev_priv(net);
771 struct asix_data *data = (struct asix_data *)&dev->data;
772 struct sockaddr *addr = p;
773
774 if (netif_running(net))
775 return -EBUSY;
776 if (!is_valid_ether_addr(addr->sa_data))
777 return -EADDRNOTAVAIL;
778
779 memcpy(net->dev_addr, addr->sa_data, ETH_ALEN);
780
781 /* We use the 20 byte dev->data
782 * for our 6 byte mac buffer
783 * to avoid allocating memory that
784 * is tricky to free later */
785 memcpy(data->mac_addr, addr->sa_data, ETH_ALEN);
786 asix_write_cmd_async(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN,
787 data->mac_addr);
788
789 return 0;
790}
791
David Brownell2e55cc72005-08-31 09:53:10 -0700792/* We need to override some ethtool_ops so we require our
793 own structure so we don't interfere with other usbnet
794 devices that may be connected at the same time. */
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700795static const struct ethtool_ops ax88172_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500796 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400797 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700798 .get_msglevel = usbnet_get_msglevel,
799 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500800 .get_wol = asix_get_wol,
801 .set_wol = asix_set_wol,
802 .get_eeprom_len = asix_get_eeprom_len,
803 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200804 .get_settings = usbnet_get_settings,
805 .set_settings = usbnet_set_settings,
806 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700807};
808
David Hollis933a27d2006-07-29 10:12:50 -0400809static void ax88172_set_multicast(struct net_device *net)
David Brownell2e55cc72005-08-31 09:53:10 -0700810{
811 struct usbnet *dev = netdev_priv(net);
David Hollis933a27d2006-07-29 10:12:50 -0400812 struct asix_data *data = (struct asix_data *)&dev->data;
813 u8 rx_ctl = 0x8c;
David Brownell2e55cc72005-08-31 09:53:10 -0700814
David Hollis933a27d2006-07-29 10:12:50 -0400815 if (net->flags & IFF_PROMISC) {
816 rx_ctl |= 0x01;
Joe Perches8e95a202009-12-03 07:58:21 +0000817 } else if (net->flags & IFF_ALLMULTI ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000818 netdev_mc_count(net) > AX_MAX_MCAST) {
David Hollis933a27d2006-07-29 10:12:50 -0400819 rx_ctl |= 0x02;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000820 } else if (netdev_mc_empty(net)) {
David Hollis933a27d2006-07-29 10:12:50 -0400821 /* just broadcast and directed */
822 } else {
823 /* We use the 20 byte dev->data
824 * for our 8 byte filter buffer
825 * to avoid allocating memory that
826 * is tricky to free later */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000827 struct netdev_hw_addr *ha;
David Hollis933a27d2006-07-29 10:12:50 -0400828 u32 crc_bits;
David Hollis933a27d2006-07-29 10:12:50 -0400829
830 memset(data->multi_filter, 0, AX_MCAST_FILTER_SIZE);
831
832 /* Build the multicast hash filter. */
Jiri Pirko22bedad2010-04-01 21:22:57 +0000833 netdev_for_each_mc_addr(ha, net) {
834 crc_bits = ether_crc(ETH_ALEN, ha->addr) >> 26;
David Hollis933a27d2006-07-29 10:12:50 -0400835 data->multi_filter[crc_bits >> 3] |=
836 1 << (crc_bits & 7);
David Hollis933a27d2006-07-29 10:12:50 -0400837 }
838
839 asix_write_cmd_async(dev, AX_CMD_WRITE_MULTI_FILTER, 0, 0,
840 AX_MCAST_FILTER_SIZE, data->multi_filter);
841
842 rx_ctl |= 0x10;
843 }
844
845 asix_write_cmd_async(dev, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, 0, NULL);
846}
847
848static int ax88172_link_reset(struct usbnet *dev)
849{
850 u8 mode;
851 struct ethtool_cmd ecmd;
852
853 mii_check_media(&dev->mii, 1, 1);
854 mii_ethtool_gset(&dev->mii, &ecmd);
855 mode = AX88172_MEDIUM_DEFAULT;
856
857 if (ecmd.duplex != DUPLEX_FULL)
858 mode |= ~AX88172_MEDIUM_FD;
859
Joe Perches60b86752010-02-17 10:30:23 +0000860 netdev_dbg(dev->net, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
861 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400862
863 asix_write_medium_mode(dev, mode);
864
865 return 0;
David Brownell2e55cc72005-08-31 09:53:10 -0700866}
867
Stephen Hemminger17033382009-03-20 19:35:55 +0000868static const struct net_device_ops ax88172_netdev_ops = {
869 .ndo_open = usbnet_open,
870 .ndo_stop = usbnet_stop,
871 .ndo_start_xmit = usbnet_start_xmit,
872 .ndo_tx_timeout = usbnet_tx_timeout,
873 .ndo_change_mtu = usbnet_change_mtu,
874 .ndo_set_mac_address = eth_mac_addr,
875 .ndo_validate_addr = eth_validate_addr,
876 .ndo_do_ioctl = asix_ioctl,
877 .ndo_set_multicast_list = ax88172_set_multicast,
878};
879
David Hollis48b1be62006-03-28 20:15:42 -0500880static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
David Brownell2e55cc72005-08-31 09:53:10 -0700881{
882 int ret = 0;
Al Viro51bf2972007-12-22 17:42:36 +0000883 u8 buf[ETH_ALEN];
David Brownell2e55cc72005-08-31 09:53:10 -0700884 int i;
885 unsigned long gpio_bits = dev->driver_info->data;
David Hollis933a27d2006-07-29 10:12:50 -0400886 struct asix_data *data = (struct asix_data *)&dev->data;
887
888 data->eeprom_len = AX88172_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700889
890 usbnet_get_endpoints(dev,intf);
891
David Brownell2e55cc72005-08-31 09:53:10 -0700892 /* Toggle the GPIOs in a manufacturer/model specific way */
893 for (i = 2; i >= 0; i--) {
David Hollis48b1be62006-03-28 20:15:42 -0500894 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_GPIOS,
David Brownell2e55cc72005-08-31 09:53:10 -0700895 (gpio_bits >> (i * 8)) & 0xff, 0, 0,
Al Viro51bf2972007-12-22 17:42:36 +0000896 NULL)) < 0)
897 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700898 msleep(5);
899 }
900
David Hollis933a27d2006-07-29 10:12:50 -0400901 if ((ret = asix_write_rx_ctl(dev, 0x80)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000902 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700903
904 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -0400905 if ((ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID,
Al Viro51bf2972007-12-22 17:42:36 +0000906 0, 0, ETH_ALEN, buf)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -0700907 dbg("read AX_CMD_READ_NODE_ID failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +0000908 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700909 }
910 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
911
David Brownell2e55cc72005-08-31 09:53:10 -0700912 /* Initialize MII structure */
913 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -0500914 dev->mii.mdio_read = asix_mdio_read;
915 dev->mii.mdio_write = asix_mdio_write;
David Brownell2e55cc72005-08-31 09:53:10 -0700916 dev->mii.phy_id_mask = 0x3f;
917 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -0400918 dev->mii.phy_id = asix_get_phy_addr(dev);
David Brownell2e55cc72005-08-31 09:53:10 -0700919
Stephen Hemminger17033382009-03-20 19:35:55 +0000920 dev->net->netdev_ops = &ax88172_netdev_ops;
David Hollis48b1be62006-03-28 20:15:42 -0500921 dev->net->ethtool_ops = &ax88172_ethtool_ops;
David Brownell2e55cc72005-08-31 09:53:10 -0700922
David Hollis933a27d2006-07-29 10:12:50 -0400923 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
924 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -0700925 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
926 mii_nway_restart(&dev->mii);
927
928 return 0;
Al Viro51bf2972007-12-22 17:42:36 +0000929
930out:
David Brownell2e55cc72005-08-31 09:53:10 -0700931 return ret;
932}
933
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700934static const struct ethtool_ops ax88772_ethtool_ops = {
David Hollis48b1be62006-03-28 20:15:42 -0500935 .get_drvinfo = asix_get_drvinfo,
David Hollis933a27d2006-07-29 10:12:50 -0400936 .get_link = asix_get_link,
David Brownell2e55cc72005-08-31 09:53:10 -0700937 .get_msglevel = usbnet_get_msglevel,
938 .set_msglevel = usbnet_set_msglevel,
David Hollis48b1be62006-03-28 20:15:42 -0500939 .get_wol = asix_get_wol,
940 .set_wol = asix_set_wol,
941 .get_eeprom_len = asix_get_eeprom_len,
942 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +0200943 .get_settings = usbnet_get_settings,
944 .set_settings = usbnet_set_settings,
945 .nway_reset = usbnet_nway_reset,
David Brownell2e55cc72005-08-31 09:53:10 -0700946};
947
David Hollis933a27d2006-07-29 10:12:50 -0400948static int ax88772_link_reset(struct usbnet *dev)
949{
950 u16 mode;
951 struct ethtool_cmd ecmd;
952
953 mii_check_media(&dev->mii, 1, 1);
954 mii_ethtool_gset(&dev->mii, &ecmd);
955 mode = AX88772_MEDIUM_DEFAULT;
956
957 if (ecmd.speed != SPEED_100)
958 mode &= ~AX_MEDIUM_PS;
959
960 if (ecmd.duplex != DUPLEX_FULL)
961 mode &= ~AX_MEDIUM_FD;
962
Joe Perches60b86752010-02-17 10:30:23 +0000963 netdev_dbg(dev->net, "ax88772_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
964 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -0400965
966 asix_write_medium_mode(dev, mode);
967
968 return 0;
969}
970
Stephen Hemminger17033382009-03-20 19:35:55 +0000971static const struct net_device_ops ax88772_netdev_ops = {
972 .ndo_open = usbnet_open,
973 .ndo_stop = usbnet_stop,
974 .ndo_start_xmit = usbnet_start_xmit,
975 .ndo_tx_timeout = usbnet_tx_timeout,
976 .ndo_change_mtu = usbnet_change_mtu,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +0000977 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +0000978 .ndo_validate_addr = eth_validate_addr,
979 .ndo_do_ioctl = asix_ioctl,
980 .ndo_set_multicast_list = asix_set_multicast,
981};
982
David Brownell2e55cc72005-08-31 09:53:10 -0700983static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
984{
Andres Salomond0ffff82007-01-11 18:39:16 -0500985 int ret, embd_phy;
David Hollis933a27d2006-07-29 10:12:50 -0400986 u16 rx_ctl;
987 struct asix_data *data = (struct asix_data *)&dev->data;
Al Viro51bf2972007-12-22 17:42:36 +0000988 u8 buf[ETH_ALEN];
David Hollis933a27d2006-07-29 10:12:50 -0400989 u32 phyid;
990
991 data->eeprom_len = AX88772_EEPROM_LEN;
David Brownell2e55cc72005-08-31 09:53:10 -0700992
993 usbnet_get_endpoints(dev,intf);
994
David Hollis933a27d2006-07-29 10:12:50 -0400995 if ((ret = asix_write_gpio(dev,
996 AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +0000997 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -0700998
Andres Salomond0ffff82007-01-11 18:39:16 -0500999 /* 0x10 is the phy id of the embedded 10/100 ethernet phy */
1000 embd_phy = ((asix_get_phy_addr(dev) & 0x1f) == 0x10 ? 1 : 0);
David Hollis48b1be62006-03-28 20:15:42 -05001001 if ((ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT,
Al Viro51bf2972007-12-22 17:42:36 +00001002 embd_phy, 0, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001003 dbg("Select PHY #1 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001004 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001005 }
1006
Andres Salomond0ffff82007-01-11 18:39:16 -05001007 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPPD | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001008 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001009
1010 msleep(150);
David Hollis48b1be62006-03-28 20:15:42 -05001011 if ((ret = asix_sw_reset(dev, AX_SWRESET_CLEAR)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001012 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001013
1014 msleep(150);
Andres Salomond0ffff82007-01-11 18:39:16 -05001015 if (embd_phy) {
1016 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001017 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -05001018 }
1019 else {
1020 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRTE)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001021 goto out;
Andres Salomond0ffff82007-01-11 18:39:16 -05001022 }
David Brownell2e55cc72005-08-31 09:53:10 -07001023
1024 msleep(150);
David Hollis933a27d2006-07-29 10:12:50 -04001025 rx_ctl = asix_read_rx_ctl(dev);
1026 dbg("RX_CTL is 0x%04x after software reset", rx_ctl);
1027 if ((ret = asix_write_rx_ctl(dev, 0x0000)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001028 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001029
David Hollis933a27d2006-07-29 10:12:50 -04001030 rx_ctl = asix_read_rx_ctl(dev);
1031 dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl);
1032
David Brownell2e55cc72005-08-31 09:53:10 -07001033 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -04001034 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
David Brownell2e55cc72005-08-31 09:53:10 -07001035 0, 0, ETH_ALEN, buf)) < 0) {
1036 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001037 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001038 }
1039 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1040
David Brownell2e55cc72005-08-31 09:53:10 -07001041 /* Initialize MII structure */
1042 dev->mii.dev = dev->net;
David Hollis48b1be62006-03-28 20:15:42 -05001043 dev->mii.mdio_read = asix_mdio_read;
1044 dev->mii.mdio_write = asix_mdio_write;
David Hollis933a27d2006-07-29 10:12:50 -04001045 dev->mii.phy_id_mask = 0x1f;
1046 dev->mii.reg_num_mask = 0x1f;
David Hollis933a27d2006-07-29 10:12:50 -04001047 dev->mii.phy_id = asix_get_phy_addr(dev);
1048
1049 phyid = asix_get_phyid(dev);
1050 dbg("PHYID=0x%08x", phyid);
David Brownell2e55cc72005-08-31 09:53:10 -07001051
David Hollis48b1be62006-03-28 20:15:42 -05001052 if ((ret = asix_sw_reset(dev, AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001053 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001054
David Brownell2e55cc72005-08-31 09:53:10 -07001055 msleep(150);
1056
David Hollis48b1be62006-03-28 20:15:42 -05001057 if ((ret = asix_sw_reset(dev, AX_SWRESET_IPRL | AX_SWRESET_PRL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001058 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001059
David Hollis48b1be62006-03-28 20:15:42 -05001060 msleep(150);
1061
Stephen Hemminger17033382009-03-20 19:35:55 +00001062 dev->net->netdev_ops = &ax88772_netdev_ops;
David Brownell2e55cc72005-08-31 09:53:10 -07001063 dev->net->ethtool_ops = &ax88772_ethtool_ops;
1064
David Hollis933a27d2006-07-29 10:12:50 -04001065 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR, BMCR_RESET);
1066 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
David Brownell2e55cc72005-08-31 09:53:10 -07001067 ADVERTISE_ALL | ADVERTISE_CSMA);
1068 mii_nway_restart(&dev->mii);
1069
David Hollis933a27d2006-07-29 10:12:50 -04001070 if ((ret = asix_write_medium_mode(dev, AX88772_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001071 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001072
David Hollis48b1be62006-03-28 20:15:42 -05001073 if ((ret = asix_write_cmd(dev, AX_CMD_WRITE_IPG0,
David Brownell2e55cc72005-08-31 09:53:10 -07001074 AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
Al Viro51bf2972007-12-22 17:42:36 +00001075 AX88772_IPG2_DEFAULT, 0, NULL)) < 0) {
David Brownell2e55cc72005-08-31 09:53:10 -07001076 dbg("Write IPG,IPG1,IPG2 failed: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001077 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001078 }
David Brownell2e55cc72005-08-31 09:53:10 -07001079
1080 /* Set RX_CTL to default values with 2k buffer, and enable cactus */
David Hollis933a27d2006-07-29 10:12:50 -04001081 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001082 goto out;
David Brownell2e55cc72005-08-31 09:53:10 -07001083
David Hollis933a27d2006-07-29 10:12:50 -04001084 rx_ctl = asix_read_rx_ctl(dev);
1085 dbg("RX_CTL is 0x%04x after all initializations", rx_ctl);
1086
1087 rx_ctl = asix_read_medium_status(dev);
1088 dbg("Medium Status is 0x%04x after all initializations", rx_ctl);
1089
David Brownell2e55cc72005-08-31 09:53:10 -07001090 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1091 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1092 /* hard_mtu is still the default - the device does not support
1093 jumbo eth frames */
1094 dev->rx_urb_size = 2048;
1095 }
David Brownell2e55cc72005-08-31 09:53:10 -07001096 return 0;
1097
Al Viro51bf2972007-12-22 17:42:36 +00001098out:
David Brownell2e55cc72005-08-31 09:53:10 -07001099 return ret;
1100}
1101
David Hollis933a27d2006-07-29 10:12:50 -04001102static struct ethtool_ops ax88178_ethtool_ops = {
1103 .get_drvinfo = asix_get_drvinfo,
1104 .get_link = asix_get_link,
David Hollis933a27d2006-07-29 10:12:50 -04001105 .get_msglevel = usbnet_get_msglevel,
1106 .set_msglevel = usbnet_set_msglevel,
1107 .get_wol = asix_get_wol,
1108 .set_wol = asix_set_wol,
1109 .get_eeprom_len = asix_get_eeprom_len,
1110 .get_eeprom = asix_get_eeprom,
Arnd Bergmannc41286f2006-10-09 00:08:01 +02001111 .get_settings = usbnet_get_settings,
1112 .set_settings = usbnet_set_settings,
1113 .nway_reset = usbnet_nway_reset,
David Hollis933a27d2006-07-29 10:12:50 -04001114};
1115
1116static int marvell_phy_init(struct usbnet *dev)
David Brownell2e55cc72005-08-31 09:53:10 -07001117{
David Hollis933a27d2006-07-29 10:12:50 -04001118 struct asix_data *data = (struct asix_data *)&dev->data;
1119 u16 reg;
David Brownell2e55cc72005-08-31 09:53:10 -07001120
Joe Perches60b86752010-02-17 10:30:23 +00001121 netdev_dbg(dev->net, "marvell_phy_init()\n");
David Brownell2e55cc72005-08-31 09:53:10 -07001122
David Hollis933a27d2006-07-29 10:12:50 -04001123 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MII_MARVELL_STATUS);
Joe Perches60b86752010-02-17 10:30:23 +00001124 netdev_dbg(dev->net, "MII_MARVELL_STATUS = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001125
David Hollis933a27d2006-07-29 10:12:50 -04001126 asix_mdio_write(dev->net, dev->mii.phy_id, MII_MARVELL_CTRL,
1127 MARVELL_CTRL_RXDELAY | MARVELL_CTRL_TXDELAY);
David Brownell2e55cc72005-08-31 09:53:10 -07001128
David Hollis933a27d2006-07-29 10:12:50 -04001129 if (data->ledmode) {
1130 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1131 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001132 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (1) = 0x%04x\n", reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001133
David Hollis933a27d2006-07-29 10:12:50 -04001134 reg &= 0xf8ff;
1135 reg |= (1 + 0x0100);
1136 asix_mdio_write(dev->net, dev->mii.phy_id,
1137 MII_MARVELL_LED_CTRL, reg);
David Brownell2e55cc72005-08-31 09:53:10 -07001138
David Hollis933a27d2006-07-29 10:12:50 -04001139 reg = asix_mdio_read(dev->net, dev->mii.phy_id,
1140 MII_MARVELL_LED_CTRL);
Joe Perches60b86752010-02-17 10:30:23 +00001141 netdev_dbg(dev->net, "MII_MARVELL_LED_CTRL (2) = 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001142 reg &= 0xfc0f;
David Brownell2e55cc72005-08-31 09:53:10 -07001143 }
1144
David Brownell2e55cc72005-08-31 09:53:10 -07001145 return 0;
1146}
1147
David Hollis933a27d2006-07-29 10:12:50 -04001148static int marvell_led_status(struct usbnet *dev, u16 speed)
1149{
1150 u16 reg = asix_mdio_read(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL);
1151
Joe Perches60b86752010-02-17 10:30:23 +00001152 netdev_dbg(dev->net, "marvell_led_status() read 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001153
1154 /* Clear out the center LED bits - 0x03F0 */
1155 reg &= 0xfc0f;
1156
1157 switch (speed) {
1158 case SPEED_1000:
1159 reg |= 0x03e0;
1160 break;
1161 case SPEED_100:
1162 reg |= 0x03b0;
1163 break;
1164 default:
1165 reg |= 0x02f0;
1166 }
1167
Joe Perches60b86752010-02-17 10:30:23 +00001168 netdev_dbg(dev->net, "marvell_led_status() writing 0x%04x\n", reg);
David Hollis933a27d2006-07-29 10:12:50 -04001169 asix_mdio_write(dev->net, dev->mii.phy_id, MARVELL_LED_MANUAL, reg);
1170
1171 return 0;
1172}
1173
1174static int ax88178_link_reset(struct usbnet *dev)
1175{
1176 u16 mode;
1177 struct ethtool_cmd ecmd;
1178 struct asix_data *data = (struct asix_data *)&dev->data;
1179
Joe Perches60b86752010-02-17 10:30:23 +00001180 netdev_dbg(dev->net, "ax88178_link_reset()\n");
David Hollis933a27d2006-07-29 10:12:50 -04001181
1182 mii_check_media(&dev->mii, 1, 1);
1183 mii_ethtool_gset(&dev->mii, &ecmd);
1184 mode = AX88178_MEDIUM_DEFAULT;
1185
1186 if (ecmd.speed == SPEED_1000)
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001187 mode |= AX_MEDIUM_GM;
David Hollis933a27d2006-07-29 10:12:50 -04001188 else if (ecmd.speed == SPEED_100)
1189 mode |= AX_MEDIUM_PS;
1190 else
1191 mode &= ~(AX_MEDIUM_PS | AX_MEDIUM_GM);
1192
Pantelis Koukousoulasa7f75c02008-11-20 01:48:46 -08001193 mode |= AX_MEDIUM_ENCK;
1194
David Hollis933a27d2006-07-29 10:12:50 -04001195 if (ecmd.duplex == DUPLEX_FULL)
1196 mode |= AX_MEDIUM_FD;
1197 else
1198 mode &= ~AX_MEDIUM_FD;
1199
Joe Perches60b86752010-02-17 10:30:23 +00001200 netdev_dbg(dev->net, "ax88178_link_reset() speed: %d duplex: %d setting mode to 0x%04x\n",
1201 ecmd.speed, ecmd.duplex, mode);
David Hollis933a27d2006-07-29 10:12:50 -04001202
1203 asix_write_medium_mode(dev, mode);
1204
1205 if (data->phymode == PHY_MODE_MARVELL && data->ledmode)
1206 marvell_led_status(dev, ecmd.speed);
1207
1208 return 0;
1209}
1210
1211static void ax88178_set_mfb(struct usbnet *dev)
1212{
1213 u16 mfb = AX_RX_CTL_MFB_16384;
1214 u16 rxctl;
1215 u16 medium;
1216 int old_rx_urb_size = dev->rx_urb_size;
1217
1218 if (dev->hard_mtu < 2048) {
1219 dev->rx_urb_size = 2048;
1220 mfb = AX_RX_CTL_MFB_2048;
1221 } else if (dev->hard_mtu < 4096) {
1222 dev->rx_urb_size = 4096;
1223 mfb = AX_RX_CTL_MFB_4096;
1224 } else if (dev->hard_mtu < 8192) {
1225 dev->rx_urb_size = 8192;
1226 mfb = AX_RX_CTL_MFB_8192;
1227 } else if (dev->hard_mtu < 16384) {
1228 dev->rx_urb_size = 16384;
1229 mfb = AX_RX_CTL_MFB_16384;
1230 }
1231
1232 rxctl = asix_read_rx_ctl(dev);
1233 asix_write_rx_ctl(dev, (rxctl & ~AX_RX_CTL_MFB_16384) | mfb);
1234
1235 medium = asix_read_medium_status(dev);
1236 if (dev->net->mtu > 1500)
1237 medium |= AX_MEDIUM_JFE;
1238 else
1239 medium &= ~AX_MEDIUM_JFE;
1240 asix_write_medium_mode(dev, medium);
1241
1242 if (dev->rx_urb_size > old_rx_urb_size)
1243 usbnet_unlink_rx_urbs(dev);
1244}
1245
1246static int ax88178_change_mtu(struct net_device *net, int new_mtu)
1247{
1248 struct usbnet *dev = netdev_priv(net);
1249 int ll_mtu = new_mtu + net->hard_header_len + 4;
1250
Joe Perches60b86752010-02-17 10:30:23 +00001251 netdev_dbg(dev->net, "ax88178_change_mtu() new_mtu=%d\n", new_mtu);
David Hollis933a27d2006-07-29 10:12:50 -04001252
1253 if (new_mtu <= 0 || ll_mtu > 16384)
1254 return -EINVAL;
1255
1256 if ((ll_mtu % dev->maxpacket) == 0)
1257 return -EDOM;
1258
1259 net->mtu = new_mtu;
1260 dev->hard_mtu = net->mtu + net->hard_header_len;
1261 ax88178_set_mfb(dev);
1262
1263 return 0;
1264}
1265
Stephen Hemminger17033382009-03-20 19:35:55 +00001266static const struct net_device_ops ax88178_netdev_ops = {
1267 .ndo_open = usbnet_open,
1268 .ndo_stop = usbnet_stop,
1269 .ndo_start_xmit = usbnet_start_xmit,
1270 .ndo_tx_timeout = usbnet_tx_timeout,
Jussi Kivilinna7f29a3b2010-03-09 12:24:38 +00001271 .ndo_set_mac_address = asix_set_mac_address,
Stephen Hemminger17033382009-03-20 19:35:55 +00001272 .ndo_validate_addr = eth_validate_addr,
1273 .ndo_set_multicast_list = asix_set_multicast,
1274 .ndo_do_ioctl = asix_ioctl,
1275 .ndo_change_mtu = ax88178_change_mtu,
1276};
1277
David Hollis933a27d2006-07-29 10:12:50 -04001278static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
1279{
1280 struct asix_data *data = (struct asix_data *)&dev->data;
1281 int ret;
Al Viro51bf2972007-12-22 17:42:36 +00001282 u8 buf[ETH_ALEN];
1283 __le16 eeprom;
1284 u8 status;
David Hollis933a27d2006-07-29 10:12:50 -04001285 int gpio0 = 0;
1286 u32 phyid;
1287
1288 usbnet_get_endpoints(dev,intf);
1289
Al Viro51bf2972007-12-22 17:42:36 +00001290 asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
1291 dbg("GPIO Status: 0x%04x", status);
David Hollis933a27d2006-07-29 10:12:50 -04001292
1293 asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
1294 asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
1295 asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
1296
1297 dbg("EEPROM index 0x17 is 0x%04x", eeprom);
1298
Al Viro51bf2972007-12-22 17:42:36 +00001299 if (eeprom == cpu_to_le16(0xffff)) {
David Hollis933a27d2006-07-29 10:12:50 -04001300 data->phymode = PHY_MODE_MARVELL;
1301 data->ledmode = 0;
1302 gpio0 = 1;
1303 } else {
Al Viro51bf2972007-12-22 17:42:36 +00001304 data->phymode = le16_to_cpu(eeprom) & 7;
1305 data->ledmode = le16_to_cpu(eeprom) >> 8;
1306 gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
David Hollis933a27d2006-07-29 10:12:50 -04001307 }
1308 dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode);
1309
1310 asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
Al Viro51bf2972007-12-22 17:42:36 +00001311 if ((le16_to_cpu(eeprom) >> 8) != 1) {
David Hollis933a27d2006-07-29 10:12:50 -04001312 asix_write_gpio(dev, 0x003c, 30);
1313 asix_write_gpio(dev, 0x001c, 300);
1314 asix_write_gpio(dev, 0x003c, 30);
1315 } else {
1316 dbg("gpio phymode == 1 path");
1317 asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
1318 asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
1319 }
1320
1321 asix_sw_reset(dev, 0);
1322 msleep(150);
1323
1324 asix_sw_reset(dev, AX_SWRESET_PRL | AX_SWRESET_IPPD);
1325 msleep(150);
1326
1327 asix_write_rx_ctl(dev, 0);
1328
1329 /* Get the MAC address */
David Hollis933a27d2006-07-29 10:12:50 -04001330 if ((ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID,
1331 0, 0, ETH_ALEN, buf)) < 0) {
1332 dbg("Failed to read MAC address: %d", ret);
Al Viro51bf2972007-12-22 17:42:36 +00001333 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001334 }
1335 memcpy(dev->net->dev_addr, buf, ETH_ALEN);
1336
1337 /* Initialize MII structure */
1338 dev->mii.dev = dev->net;
1339 dev->mii.mdio_read = asix_mdio_read;
1340 dev->mii.mdio_write = asix_mdio_write;
1341 dev->mii.phy_id_mask = 0x1f;
1342 dev->mii.reg_num_mask = 0xff;
1343 dev->mii.supports_gmii = 1;
David Hollis933a27d2006-07-29 10:12:50 -04001344 dev->mii.phy_id = asix_get_phy_addr(dev);
Stephen Hemminger17033382009-03-20 19:35:55 +00001345
1346 dev->net->netdev_ops = &ax88178_netdev_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001347 dev->net->ethtool_ops = &ax88178_ethtool_ops;
David Hollis933a27d2006-07-29 10:12:50 -04001348
1349 phyid = asix_get_phyid(dev);
1350 dbg("PHYID=0x%08x", phyid);
1351
1352 if (data->phymode == PHY_MODE_MARVELL) {
1353 marvell_phy_init(dev);
1354 msleep(60);
1355 }
1356
1357 asix_mdio_write(dev->net, dev->mii.phy_id, MII_BMCR,
1358 BMCR_RESET | BMCR_ANENABLE);
1359 asix_mdio_write(dev->net, dev->mii.phy_id, MII_ADVERTISE,
1360 ADVERTISE_ALL | ADVERTISE_CSMA | ADVERTISE_PAUSE_CAP);
1361 asix_mdio_write(dev->net, dev->mii.phy_id, MII_CTRL1000,
1362 ADVERTISE_1000FULL);
1363
1364 mii_nway_restart(&dev->mii);
1365
1366 if ((ret = asix_write_medium_mode(dev, AX88178_MEDIUM_DEFAULT)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001367 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001368
1369 if ((ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL)) < 0)
Al Viro51bf2972007-12-22 17:42:36 +00001370 goto out;
David Hollis933a27d2006-07-29 10:12:50 -04001371
1372 /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
1373 if (dev->driver_info->flags & FLAG_FRAMING_AX) {
1374 /* hard_mtu is still the default - the device does not support
1375 jumbo eth frames */
1376 dev->rx_urb_size = 2048;
1377 }
David Hollis933a27d2006-07-29 10:12:50 -04001378 return 0;
1379
Al Viro51bf2972007-12-22 17:42:36 +00001380out:
David Hollis933a27d2006-07-29 10:12:50 -04001381 return ret;
1382}
1383
David Brownell2e55cc72005-08-31 09:53:10 -07001384static const struct driver_info ax8817x_info = {
1385 .description = "ASIX AX8817x USB 2.0 Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001386 .bind = ax88172_bind,
1387 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001388 .link_reset = ax88172_link_reset,
1389 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001390 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001391 .data = 0x00130103,
1392};
1393
1394static const struct driver_info dlink_dub_e100_info = {
1395 .description = "DLink DUB-E100 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001396 .bind = ax88172_bind,
1397 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001398 .link_reset = ax88172_link_reset,
1399 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001400 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001401 .data = 0x009f9d9f,
1402};
1403
1404static const struct driver_info netgear_fa120_info = {
1405 .description = "Netgear FA-120 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001406 .bind = ax88172_bind,
1407 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001408 .link_reset = ax88172_link_reset,
1409 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001410 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001411 .data = 0x00130103,
1412};
1413
1414static const struct driver_info hawking_uf200_info = {
1415 .description = "Hawking UF200 USB Ethernet",
David Hollis48b1be62006-03-28 20:15:42 -05001416 .bind = ax88172_bind,
1417 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001418 .link_reset = ax88172_link_reset,
1419 .reset = ax88172_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001420 .flags = FLAG_ETHER | FLAG_LINK_INTR,
David Brownell2e55cc72005-08-31 09:53:10 -07001421 .data = 0x001f1d1f,
1422};
1423
1424static const struct driver_info ax88772_info = {
1425 .description = "ASIX AX88772 USB 2.0 Ethernet",
1426 .bind = ax88772_bind,
David Hollis48b1be62006-03-28 20:15:42 -05001427 .status = asix_status,
David Brownell2e55cc72005-08-31 09:53:10 -07001428 .link_reset = ax88772_link_reset,
1429 .reset = ax88772_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001430 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001431 .rx_fixup = asix_rx_fixup,
1432 .tx_fixup = asix_tx_fixup,
1433};
1434
1435static const struct driver_info ax88178_info = {
1436 .description = "ASIX AX88178 USB 2.0 Ethernet",
1437 .bind = ax88178_bind,
1438 .status = asix_status,
1439 .link_reset = ax88178_link_reset,
1440 .reset = ax88178_link_reset,
Ben Hutchings37e82732009-11-04 15:29:52 +00001441 .flags = FLAG_ETHER | FLAG_FRAMING_AX | FLAG_LINK_INTR,
David Hollis933a27d2006-07-29 10:12:50 -04001442 .rx_fixup = asix_rx_fixup,
1443 .tx_fixup = asix_tx_fixup,
David Brownell2e55cc72005-08-31 09:53:10 -07001444};
1445
1446static const struct usb_device_id products [] = {
1447{
1448 // Linksys USB200M
1449 USB_DEVICE (0x077b, 0x2226),
1450 .driver_info = (unsigned long) &ax8817x_info,
1451}, {
1452 // Netgear FA120
1453 USB_DEVICE (0x0846, 0x1040),
1454 .driver_info = (unsigned long) &netgear_fa120_info,
1455}, {
1456 // DLink DUB-E100
1457 USB_DEVICE (0x2001, 0x1a00),
1458 .driver_info = (unsigned long) &dlink_dub_e100_info,
1459}, {
1460 // Intellinet, ST Lab USB Ethernet
1461 USB_DEVICE (0x0b95, 0x1720),
1462 .driver_info = (unsigned long) &ax8817x_info,
1463}, {
1464 // Hawking UF200, TrendNet TU2-ET100
1465 USB_DEVICE (0x07b8, 0x420a),
1466 .driver_info = (unsigned long) &hawking_uf200_info,
1467}, {
David Hollis39c4b382007-02-20 08:02:24 -05001468 // Billionton Systems, USB2AR
1469 USB_DEVICE (0x08dd, 0x90ff),
1470 .driver_info = (unsigned long) &ax8817x_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001471}, {
1472 // ATEN UC210T
1473 USB_DEVICE (0x0557, 0x2009),
1474 .driver_info = (unsigned long) &ax8817x_info,
1475}, {
1476 // Buffalo LUA-U2-KTX
1477 USB_DEVICE (0x0411, 0x003d),
1478 .driver_info = (unsigned long) &ax8817x_info,
1479}, {
Mattia Dongiliac7b77f2008-05-06 20:42:35 -07001480 // Buffalo LUA-U2-GT 10/100/1000
1481 USB_DEVICE (0x0411, 0x006e),
1482 .driver_info = (unsigned long) &ax88178_info,
1483}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001484 // Sitecom LN-029 "USB 2.0 10/100 Ethernet adapter"
1485 USB_DEVICE (0x6189, 0x182d),
1486 .driver_info = (unsigned long) &ax8817x_info,
1487}, {
1488 // corega FEther USB2-TX
1489 USB_DEVICE (0x07aa, 0x0017),
1490 .driver_info = (unsigned long) &ax8817x_info,
1491}, {
1492 // Surecom EP-1427X-2
1493 USB_DEVICE (0x1189, 0x0893),
1494 .driver_info = (unsigned long) &ax8817x_info,
1495}, {
1496 // goodway corp usb gwusb2e
1497 USB_DEVICE (0x1631, 0x6200),
1498 .driver_info = (unsigned long) &ax8817x_info,
1499}, {
David Hollis39c4b382007-02-20 08:02:24 -05001500 // JVC MP-PRX1 Port Replicator
1501 USB_DEVICE (0x04f1, 0x3008),
1502 .driver_info = (unsigned long) &ax8817x_info,
1503}, {
David Brownell2e55cc72005-08-31 09:53:10 -07001504 // ASIX AX88772 10/100
David Hollis39c4b382007-02-20 08:02:24 -05001505 USB_DEVICE (0x0b95, 0x7720),
1506 .driver_info = (unsigned long) &ax88772_info,
David Hollis5e0f76c2005-12-19 13:58:38 -05001507}, {
Eduard Warkentin73274132006-05-18 01:13:17 -07001508 // ASIX AX88178 10/100/1000
1509 USB_DEVICE (0x0b95, 0x1780),
David Hollis933a27d2006-07-29 10:12:50 -04001510 .driver_info = (unsigned long) &ax88178_info,
Eduard Warkentin73274132006-05-18 01:13:17 -07001511}, {
David Hollis5e0f76c2005-12-19 13:58:38 -05001512 // Linksys USB200M Rev 2
1513 USB_DEVICE (0x13b1, 0x0018),
1514 .driver_info = (unsigned long) &ax88772_info,
David Hollis5732ce82006-01-05 14:39:49 -05001515}, {
1516 // 0Q0 cable ethernet
1517 USB_DEVICE (0x1557, 0x7720),
1518 .driver_info = (unsigned long) &ax88772_info,
David Hollis933a27d2006-07-29 10:12:50 -04001519}, {
1520 // DLink DUB-E100 H/W Ver B1
1521 USB_DEVICE (0x07d1, 0x3c05),
1522 .driver_info = (unsigned long) &ax88772_info,
1523}, {
David Hollisb923e7f2006-09-21 08:09:29 -04001524 // DLink DUB-E100 H/W Ver B1 Alternate
1525 USB_DEVICE (0x2001, 0x3c05),
1526 .driver_info = (unsigned long) &ax88772_info,
1527}, {
David Hollis933a27d2006-07-29 10:12:50 -04001528 // Linksys USB1000
1529 USB_DEVICE (0x1737, 0x0039),
1530 .driver_info = (unsigned long) &ax88178_info,
YOSHIFUJI Hideaki / 吉藤英明b29cf312007-01-26 22:57:38 +09001531}, {
1532 // IO-DATA ETG-US2
1533 USB_DEVICE (0x04bb, 0x0930),
1534 .driver_info = (unsigned long) &ax88178_info,
David Hollis2ed22bc2007-05-23 07:33:17 -04001535}, {
1536 // Belkin F5D5055
1537 USB_DEVICE(0x050d, 0x5055),
1538 .driver_info = (unsigned long) &ax88178_info,
Aurelien Nephtali3d60efb52008-05-14 17:04:13 -07001539}, {
1540 // Apple USB Ethernet Adapter
1541 USB_DEVICE(0x05ac, 0x1402),
1542 .driver_info = (unsigned long) &ax88772_info,
Jason Cooperccf95402008-11-11 13:02:53 -05001543}, {
1544 // Cables-to-Go USB Ethernet Adapter
1545 USB_DEVICE(0x0b95, 0x772a),
1546 .driver_info = (unsigned long) &ax88772_info,
Greg Kroah-Hartmanfef7cc02009-02-24 23:52:24 -08001547}, {
1548 // ABOCOM for pci
1549 USB_DEVICE(0x14ea, 0xab11),
1550 .driver_info = (unsigned long) &ax88178_info,
1551}, {
1552 // ASIX 88772a
1553 USB_DEVICE(0x0db0, 0xa877),
1554 .driver_info = (unsigned long) &ax88772_info,
David Brownell2e55cc72005-08-31 09:53:10 -07001555},
1556 { }, // END
1557};
1558MODULE_DEVICE_TABLE(usb, products);
1559
1560static struct usb_driver asix_driver = {
David Brownell2e55cc72005-08-31 09:53:10 -07001561 .name = "asix",
1562 .id_table = products,
1563 .probe = usbnet_probe,
1564 .suspend = usbnet_suspend,
1565 .resume = usbnet_resume,
1566 .disconnect = usbnet_disconnect,
Oliver Neukuma11a6542007-08-03 13:52:19 +02001567 .supports_autosuspend = 1,
David Brownell2e55cc72005-08-31 09:53:10 -07001568};
1569
1570static int __init asix_init(void)
1571{
1572 return usb_register(&asix_driver);
1573}
1574module_init(asix_init);
1575
1576static void __exit asix_exit(void)
1577{
1578 usb_deregister(&asix_driver);
1579}
1580module_exit(asix_exit);
1581
1582MODULE_AUTHOR("David Hollis");
1583MODULE_DESCRIPTION("ASIX AX8817X based USB 2.0 Ethernet Devices");
1584MODULE_LICENSE("GPL");
1585